author | wenzelm |
Tue, 11 May 2021 20:19:07 +0200 | |
changeset 73675 | 6c56f2ebe157 |
parent 73510 | c526eb2c7ca0 |
child 73683 | 60a788467639 |
permissions | -rw-r--r-- |
13462 | 1 |
(* Title: HOL/List.thy |
68709 | 2 |
Author: Tobias Nipkow; proofs tidied by LCP |
923 | 3 |
*) |
4 |
||
60758 | 5 |
section \<open>The datatype of finite lists\<close> |
13122 | 6 |
|
15131 | 7 |
theory List |
58916 | 8 |
imports Sledgehammer Code_Numeral Lifting_Set |
15131 | 9 |
begin |
923 | 10 |
|
58310 | 11 |
datatype (set: 'a) list = |
57200
aab87ffa60cc
use 'where' clause for selector default value syntax
blanchet
parents:
57198
diff
changeset
|
12 |
Nil ("[]") |
55405
0a155051bd9d
use new selector support to define 'the', 'hd', 'tl'
blanchet
parents:
55404
diff
changeset
|
13 |
| Cons (hd: 'a) (tl: "'a list") (infixr "#" 65) |
57206
d9be905d6283
changed syntax of map: and rel: arguments to BNF-based datatypes
blanchet
parents:
57200
diff
changeset
|
14 |
for |
d9be905d6283
changed syntax of map: and rel: arguments to BNF-based datatypes
blanchet
parents:
57200
diff
changeset
|
15 |
map: map |
d9be905d6283
changed syntax of map: and rel: arguments to BNF-based datatypes
blanchet
parents:
57200
diff
changeset
|
16 |
rel: list_all2 |
62328 | 17 |
pred: list_all |
57200
aab87ffa60cc
use 'where' clause for selector default value syntax
blanchet
parents:
57198
diff
changeset
|
18 |
where |
aab87ffa60cc
use 'where' clause for selector default value syntax
blanchet
parents:
57198
diff
changeset
|
19 |
"tl [] = []" |
57123
b5324647e0f1
tuned whitespace, to make datatype definitions slightly less intimidating
blanchet
parents:
57091
diff
changeset
|
20 |
|
55531
601ca8efa000
renamed 'datatype_new_compat' to 'datatype_compat'
blanchet
parents:
55525
diff
changeset
|
21 |
datatype_compat list |
55404
5cb95b79a51f
transformed 'option' and 'list' into new-style datatypes (but register them as old-style as well)
blanchet
parents:
55148
diff
changeset
|
22 |
|
55406 | 23 |
lemma [case_names Nil Cons, cases type: list]: |
61799 | 24 |
\<comment> \<open>for backward compatibility -- names of variables differ\<close> |
55406 | 25 |
"(y = [] \<Longrightarrow> P) \<Longrightarrow> (\<And>a list. y = a # list \<Longrightarrow> P) \<Longrightarrow> P" |
26 |
by (rule list.exhaust) |
|
27 |
||
28 |
lemma [case_names Nil Cons, induct type: list]: |
|
61799 | 29 |
\<comment> \<open>for backward compatibility -- names of variables differ\<close> |
55406 | 30 |
"P [] \<Longrightarrow> (\<And>a list. P list \<Longrightarrow> P (a # list)) \<Longrightarrow> P list" |
31 |
by (rule list.induct) |
|
32 |
||
60758 | 33 |
text \<open>Compatibility:\<close> |
34 |
||
35 |
setup \<open>Sign.mandatory_path "list"\<close> |
|
55404
5cb95b79a51f
transformed 'option' and 'list' into new-style datatypes (but register them as old-style as well)
blanchet
parents:
55148
diff
changeset
|
36 |
|
5cb95b79a51f
transformed 'option' and 'list' into new-style datatypes (but register them as old-style as well)
blanchet
parents:
55148
diff
changeset
|
37 |
lemmas inducts = list.induct |
5cb95b79a51f
transformed 'option' and 'list' into new-style datatypes (but register them as old-style as well)
blanchet
parents:
55148
diff
changeset
|
38 |
lemmas recs = list.rec |
5cb95b79a51f
transformed 'option' and 'list' into new-style datatypes (but register them as old-style as well)
blanchet
parents:
55148
diff
changeset
|
39 |
lemmas cases = list.case |
5cb95b79a51f
transformed 'option' and 'list' into new-style datatypes (but register them as old-style as well)
blanchet
parents:
55148
diff
changeset
|
40 |
|
60758 | 41 |
setup \<open>Sign.parent_path\<close> |
55404
5cb95b79a51f
transformed 'option' and 'list' into new-style datatypes (but register them as old-style as well)
blanchet
parents:
55148
diff
changeset
|
42 |
|
57816
d8bbb97689d3
no need for 'set_simps' now that 'datatype_new' generates the desired 'set' property
blanchet
parents:
57599
diff
changeset
|
43 |
lemmas set_simps = list.set (* legacy *) |
d8bbb97689d3
no need for 'set_simps' now that 'datatype_new' generates the desired 'set' property
blanchet
parents:
57599
diff
changeset
|
44 |
|
34941 | 45 |
syntax |
61799 | 46 |
\<comment> \<open>list Enumeration\<close> |
35115 | 47 |
"_list" :: "args => 'a list" ("[(_)]") |
34941 | 48 |
|
49 |
translations |
|
50 |
"[x, xs]" == "x#[xs]" |
|
51 |
"[x]" == "x#[]" |
|
52 |
||
35115 | 53 |
|
60758 | 54 |
subsection \<open>Basic list processing functions\<close> |
15302 | 55 |
|
58135 | 56 |
primrec (nonexhaustive) last :: "'a list \<Rightarrow> 'a" where |
50548 | 57 |
"last (x # xs) = (if xs = [] then x else last xs)" |
58 |
||
59 |
primrec butlast :: "'a list \<Rightarrow> 'a list" where |
|
57816
d8bbb97689d3
no need for 'set_simps' now that 'datatype_new' generates the desired 'set' property
blanchet
parents:
57599
diff
changeset
|
60 |
"butlast [] = []" | |
50548 | 61 |
"butlast (x # xs) = (if xs = [] then [] else x # butlast xs)" |
62 |
||
55584 | 63 |
lemma set_rec: "set xs = rec_list {} (\<lambda>x _. insert x) xs" |
64 |
by (induct xs) auto |
|
50548 | 65 |
|
66 |
definition coset :: "'a list \<Rightarrow> 'a set" where |
|
67 |
[simp]: "coset xs = - set xs" |
|
68 |
||
69 |
primrec append :: "'a list \<Rightarrow> 'a list \<Rightarrow> 'a list" (infixr "@" 65) where |
|
70 |
append_Nil: "[] @ ys = ys" | |
|
71 |
append_Cons: "(x#xs) @ ys = x # xs @ ys" |
|
72 |
||
73 |
primrec rev :: "'a list \<Rightarrow> 'a list" where |
|
74 |
"rev [] = []" | |
|
75 |
"rev (x # xs) = rev xs @ [x]" |
|
76 |
||
77 |
primrec filter:: "('a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> 'a list" where |
|
78 |
"filter P [] = []" | |
|
79 |
"filter P (x # xs) = (if P x then x # filter P xs else filter P xs)" |
|
34941 | 80 |
|
68249
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents:
68215
diff
changeset
|
81 |
text \<open>Special input syntax for filter:\<close> |
61955
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61941
diff
changeset
|
82 |
syntax (ASCII) |
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61941
diff
changeset
|
83 |
"_filter" :: "[pttrn, 'a list, bool] => 'a list" ("(1[_<-_./ _])") |
34941 | 84 |
syntax |
61955
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61941
diff
changeset
|
85 |
"_filter" :: "[pttrn, 'a list, bool] => 'a list" ("(1[_\<leftarrow>_ ./ _])") |
34941 | 86 |
translations |
68249
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents:
68215
diff
changeset
|
87 |
"[x<-xs . P]" \<rightharpoonup> "CONST filter (\<lambda>x. P) xs" |
34941 | 88 |
|
50548 | 89 |
primrec fold :: "('a \<Rightarrow> 'b \<Rightarrow> 'b) \<Rightarrow> 'a list \<Rightarrow> 'b \<Rightarrow> 'b" where |
90 |
fold_Nil: "fold f [] = id" | |
|
91 |
fold_Cons: "fold f (x # xs) = fold f xs \<circ> f x" |
|
92 |
||
93 |
primrec foldr :: "('a \<Rightarrow> 'b \<Rightarrow> 'b) \<Rightarrow> 'a list \<Rightarrow> 'b \<Rightarrow> 'b" where |
|
94 |
foldr_Nil: "foldr f [] = id" | |
|
95 |
foldr_Cons: "foldr f (x # xs) = f x \<circ> foldr f xs" |
|
96 |
||
97 |
primrec foldl :: "('b \<Rightarrow> 'a \<Rightarrow> 'b) \<Rightarrow> 'b \<Rightarrow> 'a list \<Rightarrow> 'b" where |
|
98 |
foldl_Nil: "foldl f a [] = a" | |
|
99 |
foldl_Cons: "foldl f a (x # xs) = foldl f (f a x) xs" |
|
100 |
||
101 |
primrec concat:: "'a list list \<Rightarrow> 'a list" where |
|
102 |
"concat [] = []" | |
|
103 |
"concat (x # xs) = x @ concat xs" |
|
104 |
||
105 |
primrec drop:: "nat \<Rightarrow> 'a list \<Rightarrow> 'a list" where |
|
106 |
drop_Nil: "drop n [] = []" | |
|
107 |
drop_Cons: "drop n (x # xs) = (case n of 0 \<Rightarrow> x # xs | Suc m \<Rightarrow> drop m xs)" |
|
61799 | 108 |
\<comment> \<open>Warning: simpset does not contain this definition, but separate |
109 |
theorems for \<open>n = 0\<close> and \<open>n = Suc k\<close>\<close> |
|
34941 | 110 |
|
50548 | 111 |
primrec take:: "nat \<Rightarrow> 'a list \<Rightarrow> 'a list" where |
112 |
take_Nil:"take n [] = []" | |
|
113 |
take_Cons: "take n (x # xs) = (case n of 0 \<Rightarrow> [] | Suc m \<Rightarrow> x # take m xs)" |
|
61799 | 114 |
\<comment> \<open>Warning: simpset does not contain this definition, but separate |
115 |
theorems for \<open>n = 0\<close> and \<open>n = Suc k\<close>\<close> |
|
34941 | 116 |
|
58135 | 117 |
primrec (nonexhaustive) nth :: "'a list => nat => 'a" (infixl "!" 100) where |
50548 | 118 |
nth_Cons: "(x # xs) ! n = (case n of 0 \<Rightarrow> x | Suc k \<Rightarrow> xs ! k)" |
61799 | 119 |
\<comment> \<open>Warning: simpset does not contain this definition, but separate |
120 |
theorems for \<open>n = 0\<close> and \<open>n = Suc k\<close>\<close> |
|
34941 | 121 |
|
50548 | 122 |
primrec list_update :: "'a list \<Rightarrow> nat \<Rightarrow> 'a \<Rightarrow> 'a list" where |
123 |
"list_update [] i v = []" | |
|
124 |
"list_update (x # xs) i v = |
|
125 |
(case i of 0 \<Rightarrow> v # xs | Suc j \<Rightarrow> x # list_update xs j v)" |
|
923 | 126 |
|
41229
d797baa3d57c
replaced command 'nonterminals' by slightly modernized version 'nonterminal';
wenzelm
parents:
41075
diff
changeset
|
127 |
nonterminal lupdbinds and 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" ("_,/ _") |
|
69084 | 133 |
"_LUpdate" :: "['a, lupdbinds] => 'a" ("_/[(_)]" [1000,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 |
||
50548 | 139 |
primrec takeWhile :: "('a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> 'a list" where |
140 |
"takeWhile P [] = []" | |
|
141 |
"takeWhile P (x # xs) = (if P x then x # takeWhile P xs else [])" |
|
142 |
||
143 |
primrec dropWhile :: "('a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> 'a list" where |
|
144 |
"dropWhile P [] = []" | |
|
145 |
"dropWhile P (x # xs) = (if P x then dropWhile P xs else x # xs)" |
|
146 |
||
147 |
primrec zip :: "'a list \<Rightarrow> 'b list \<Rightarrow> ('a \<times> 'b) list" where |
|
148 |
"zip xs [] = []" | |
|
149 |
zip_Cons: "zip xs (y # ys) = |
|
67091 | 150 |
(case xs of [] \<Rightarrow> [] | z # zs \<Rightarrow> (z, y) # zip zs ys)" |
61799 | 151 |
\<comment> \<open>Warning: simpset does not contain this definition, but separate |
152 |
theorems for \<open>xs = []\<close> and \<open>xs = z # zs\<close>\<close> |
|
34941 | 153 |
|
66656 | 154 |
abbreviation map2 :: "('a \<Rightarrow> 'b \<Rightarrow> 'c) \<Rightarrow> 'a list \<Rightarrow> 'b list \<Rightarrow> 'c list" where |
155 |
"map2 f xs ys \<equiv> map (\<lambda>(x,y). f x y) (zip xs ys)" |
|
66655 | 156 |
|
50548 | 157 |
primrec product :: "'a list \<Rightarrow> 'b list \<Rightarrow> ('a \<times> 'b) list" where |
158 |
"product [] _ = []" | |
|
159 |
"product (x#xs) ys = map (Pair x) ys @ product xs ys" |
|
49948
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
160 |
|
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
161 |
hide_const (open) product |
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
162 |
|
53721
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
163 |
primrec product_lists :: "'a list list \<Rightarrow> 'a list list" where |
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
164 |
"product_lists [] = [[]]" | |
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
165 |
"product_lists (xs # xss) = concat (map (\<lambda>x. map (Cons x) (product_lists xss)) xs)" |
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
166 |
|
50548 | 167 |
primrec upt :: "nat \<Rightarrow> nat \<Rightarrow> nat list" ("(1[_..</_'])") where |
168 |
upt_0: "[i..<0] = []" | |
|
68709 | 169 |
upt_Suc: "[i..<(Suc j)] = (if i \<le> j then [i..<j] @ [j] else [])" |
50548 | 170 |
|
171 |
definition insert :: "'a \<Rightarrow> 'a list \<Rightarrow> 'a list" where |
|
172 |
"insert x xs = (if x \<in> set xs then xs else x # xs)" |
|
34978
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
173 |
|
57198 | 174 |
definition union :: "'a list \<Rightarrow> 'a list \<Rightarrow> 'a list" where |
175 |
"union = fold insert" |
|
176 |
||
177 |
hide_const (open) insert union |
|
178 |
hide_fact (open) insert_def union_def |
|
34978
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
179 |
|
47122 | 180 |
primrec find :: "('a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> 'a option" where |
50548 | 181 |
"find _ [] = None" | |
182 |
"find P (x#xs) = (if P x then Some x else find P xs)" |
|
47122 | 183 |
|
61799 | 184 |
text \<open>In the context of multisets, \<open>count_list\<close> is equivalent to |
69593 | 185 |
\<^term>\<open>count \<circ> mset\<close> and it it advisable to use the latter.\<close> |
60541 | 186 |
primrec count_list :: "'a list \<Rightarrow> 'a \<Rightarrow> nat" where |
187 |
"count_list [] y = 0" | |
|
188 |
"count_list (x#xs) y = (if x=y then count_list xs y + 1 else count_list xs y)" |
|
59728 | 189 |
|
55807 | 190 |
definition |
191 |
"extract" :: "('a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> ('a list * 'a * 'a list) option" |
|
192 |
where "extract P xs = |
|
67091 | 193 |
(case dropWhile (Not \<circ> P) xs of |
55807 | 194 |
[] \<Rightarrow> None | |
67091 | 195 |
y#ys \<Rightarrow> Some(takeWhile (Not \<circ> P) xs, y, ys))" |
55807 | 196 |
|
197 |
hide_const (open) "extract" |
|
198 |
||
51096 | 199 |
primrec those :: "'a option list \<Rightarrow> 'a list option" |
200 |
where |
|
201 |
"those [] = Some []" | |
|
202 |
"those (x # xs) = (case x of |
|
203 |
None \<Rightarrow> None |
|
55466 | 204 |
| Some y \<Rightarrow> map_option (Cons y) (those xs))" |
51096 | 205 |
|
50548 | 206 |
primrec remove1 :: "'a \<Rightarrow> 'a list \<Rightarrow> 'a list" where |
207 |
"remove1 x [] = []" | |
|
208 |
"remove1 x (y # xs) = (if x = y then xs else y # remove1 x xs)" |
|
209 |
||
210 |
primrec removeAll :: "'a \<Rightarrow> 'a list \<Rightarrow> 'a list" where |
|
211 |
"removeAll x [] = []" | |
|
212 |
"removeAll x (y # xs) = (if x = y then removeAll x xs else y # removeAll x xs)" |
|
213 |
||
214 |
primrec distinct :: "'a list \<Rightarrow> bool" where |
|
215 |
"distinct [] \<longleftrightarrow> True" | |
|
216 |
"distinct (x # xs) \<longleftrightarrow> x \<notin> set xs \<and> distinct xs" |
|
217 |
||
71779 | 218 |
fun successively :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> bool" where |
219 |
"successively P [] = True" | |
|
220 |
"successively P [x] = True" | |
|
221 |
"successively P (x # y # xs) = (P x y \<and> successively P (y#xs))" |
|
222 |
||
223 |
definition distinct_adj where |
|
224 |
"distinct_adj = successively (\<noteq>)" |
|
225 |
||
50548 | 226 |
primrec remdups :: "'a list \<Rightarrow> 'a list" where |
227 |
"remdups [] = []" | |
|
228 |
"remdups (x # xs) = (if x \<in> set xs then remdups xs else x # remdups xs)" |
|
229 |
||
53721
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
230 |
fun remdups_adj :: "'a list \<Rightarrow> 'a list" where |
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
231 |
"remdups_adj [] = []" | |
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
232 |
"remdups_adj [x] = [x]" | |
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
233 |
"remdups_adj (x # y # xs) = (if x = y then remdups_adj (x # xs) else x # remdups_adj (y # xs))" |
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
234 |
|
50548 | 235 |
primrec replicate :: "nat \<Rightarrow> 'a \<Rightarrow> 'a list" where |
236 |
replicate_0: "replicate 0 x = []" | |
|
237 |
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
|
238 |
|
60758 | 239 |
text \<open> |
61799 | 240 |
Function \<open>size\<close> is overloaded for all datatypes. Users may |
241 |
refer to the list version as \<open>length\<close>.\<close> |
|
13142 | 242 |
|
50548 | 243 |
abbreviation length :: "'a list \<Rightarrow> nat" where |
244 |
"length \<equiv> size" |
|
15307 | 245 |
|
51173 | 246 |
definition enumerate :: "nat \<Rightarrow> 'a list \<Rightarrow> (nat \<times> 'a) list" where |
247 |
enumerate_eq_zip: "enumerate n xs = zip [n..<n + length xs] xs" |
|
248 |
||
46440
d4994e2e7364
use 'primrec' to define "rotate1", for uniformity (and to help first-order tools that rely on "Spec_Rules")
blanchet
parents:
46439
diff
changeset
|
249 |
primrec rotate1 :: "'a list \<Rightarrow> 'a list" where |
50548 | 250 |
"rotate1 [] = []" | |
251 |
"rotate1 (x # xs) = xs @ [x]" |
|
252 |
||
253 |
definition rotate :: "nat \<Rightarrow> 'a list \<Rightarrow> 'a list" where |
|
254 |
"rotate n = rotate1 ^^ n" |
|
255 |
||
65956
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
256 |
definition nths :: "'a list => nat set => 'a list" where |
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
257 |
"nths xs A = map fst (filter (\<lambda>p. snd p \<in> A) (zip xs [0..<size xs]))" |
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
258 |
|
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
259 |
primrec subseqs :: "'a list \<Rightarrow> 'a list list" where |
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
260 |
"subseqs [] = [[]]" | |
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
261 |
"subseqs (x#xs) = (let xss = subseqs xs in map (Cons x) xss @ xss)" |
50548 | 262 |
|
263 |
primrec n_lists :: "nat \<Rightarrow> 'a list \<Rightarrow> 'a list list" where |
|
264 |
"n_lists 0 xs = [[]]" | |
|
265 |
"n_lists (Suc n) xs = concat (map (\<lambda>ys. map (\<lambda>y. y # ys) xs) (n_lists n xs))" |
|
49948
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
266 |
|
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
267 |
hide_const (open) n_lists |
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
268 |
|
69075 | 269 |
function splice :: "'a list \<Rightarrow> 'a list \<Rightarrow> 'a list" where |
40593
1e57b18d27b1
code eqn for slice was missing; redefined splice with fun
nipkow
parents:
40365
diff
changeset
|
270 |
"splice [] ys = ys" | |
69075 | 271 |
"splice (x#xs) ys = x # splice ys xs" |
272 |
by pat_completeness auto |
|
273 |
||
274 |
termination |
|
275 |
by(relation "measure(\<lambda>(xs,ys). size xs + size ys)") auto |
|
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
276 |
|
69107 | 277 |
function shuffles where |
278 |
"shuffles [] ys = {ys}" |
|
279 |
| "shuffles xs [] = {xs}" |
|
280 |
| "shuffles (x # xs) (y # ys) = (#) x ` shuffles xs (y # ys) \<union> (#) y ` shuffles (x # xs) ys" |
|
65350
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
281 |
by pat_completeness simp_all |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
282 |
termination by lexicographic_order |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
283 |
|
69593 | 284 |
text\<open>Use only if you cannot use \<^const>\<open>Min\<close> instead:\<close> |
67170 | 285 |
fun min_list :: "'a::ord list \<Rightarrow> 'a" where |
286 |
"min_list (x # xs) = (case xs of [] \<Rightarrow> x | _ \<Rightarrow> min x (min_list xs))" |
|
287 |
||
288 |
text\<open>Returns first minimum:\<close> |
|
289 |
fun arg_min_list :: "('a \<Rightarrow> ('b::linorder)) \<Rightarrow> 'a list \<Rightarrow> 'a" where |
|
290 |
"arg_min_list f [x] = x" | |
|
291 |
"arg_min_list f (x#y#zs) = (let m = arg_min_list f (y#zs) in if f x \<le> f m then x else m)" |
|
292 |
||
60758 | 293 |
text\<open> |
26771 | 294 |
\begin{figure}[htbp] |
295 |
\fbox{ |
|
296 |
\begin{tabular}{l} |
|
27381 | 297 |
@{lemma "[a,b]@[c,d] = [a,b,c,d]" by simp}\\ |
298 |
@{lemma "length [a,b,c] = 3" by simp}\\ |
|
299 |
@{lemma "set [a,b,c] = {a,b,c}" by simp}\\ |
|
300 |
@{lemma "map f [a,b,c] = [f a, f b, f c]" by simp}\\ |
|
301 |
@{lemma "rev [a,b,c] = [c,b,a]" by simp}\\ |
|
302 |
@{lemma "hd [a,b,c,d] = a" by simp}\\ |
|
303 |
@{lemma "tl [a,b,c,d] = [b,c,d]" by simp}\\ |
|
304 |
@{lemma "last [a,b,c,d] = d" by simp}\\ |
|
305 |
@{lemma "butlast [a,b,c,d] = [a,b,c]" by simp}\\ |
|
306 |
@{lemma[source] "filter (\<lambda>n::nat. n<2) [0,2,1] = [0,1]" by simp}\\ |
|
307 |
@{lemma "concat [[a,b],[c,d,e],[],[f]] = [a,b,c,d,e,f]" by simp}\\ |
|
46133
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
308 |
@{lemma "fold f [a,b,c] x = f c (f b (f a x))" by simp}\\ |
47397
d654c73e4b12
no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents:
47131
diff
changeset
|
309 |
@{lemma "foldr f [a,b,c] x = f a (f b (f c x))" by simp}\\ |
d654c73e4b12
no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents:
47131
diff
changeset
|
310 |
@{lemma "foldl f x [a,b,c] = f (f (f x a) b) c" by simp}\\ |
71779 | 311 |
@{lemma "successively (\<noteq>) [True,False,True,False]" by simp}\\ |
27381 | 312 |
@{lemma "zip [a,b,c] [x,y,z] = [(a,x),(b,y),(c,z)]" by simp}\\ |
313 |
@{lemma "zip [a,b] [x,y,z] = [(a,x),(b,y)]" by simp}\\ |
|
51173 | 314 |
@{lemma "enumerate 3 [a,b,c] = [(3,a),(4,b),(5,c)]" by normalization}\\ |
49948
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
315 |
@{lemma "List.product [a,b] [c,d] = [(a, c), (a, d), (b, c), (b, d)]" by simp}\\ |
53721
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
316 |
@{lemma "product_lists [[a,b], [c], [d,e]] = [[a,c,d], [a,c,e], [b,c,d], [b,c,e]]" by simp}\\ |
27381 | 317 |
@{lemma "splice [a,b,c] [x,y,z] = [a,x,b,y,c,z]" by simp}\\ |
318 |
@{lemma "splice [a,b,c,d] [x,y] = [a,x,b,y,c,d]" by simp}\\ |
|
69107 | 319 |
@{lemma "shuffles [a,b] [c,d] = {[a,b,c,d],[a,c,b,d],[a,c,d,b],[c,a,b,d],[c,a,d,b],[c,d,a,b]}" |
65350
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
320 |
by (simp add: insert_commute)}\\ |
27381 | 321 |
@{lemma "take 2 [a,b,c,d] = [a,b]" by simp}\\ |
322 |
@{lemma "take 6 [a,b,c,d] = [a,b,c,d]" by simp}\\ |
|
323 |
@{lemma "drop 2 [a,b,c,d] = [c,d]" by simp}\\ |
|
324 |
@{lemma "drop 6 [a,b,c,d] = []" by simp}\\ |
|
325 |
@{lemma "takeWhile (%n::nat. n<3) [1,2,3,0] = [1,2]" by simp}\\ |
|
326 |
@{lemma "dropWhile (%n::nat. n<3) [1,2,3,0] = [3,0]" by simp}\\ |
|
327 |
@{lemma "distinct [2,0,1::nat]" by simp}\\ |
|
328 |
@{lemma "remdups [2,0,2,1::nat,2] = [0,1,2]" by simp}\\ |
|
53721
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
329 |
@{lemma "remdups_adj [2,2,3,1,1::nat,2,1] = [2,3,1,2,1]" by simp}\\ |
34978
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
330 |
@{lemma "List.insert 2 [0::nat,1,2] = [0,1,2]" by (simp add: List.insert_def)}\\ |
35295 | 331 |
@{lemma "List.insert 3 [0::nat,1,2] = [3,0,1,2]" by (simp add: List.insert_def)}\\ |
57198 | 332 |
@{lemma "List.union [2,3,4] [0::int,1,2] = [4,3,0,1,2]" by (simp add: List.insert_def List.union_def)}\\ |
47122 | 333 |
@{lemma "List.find (%i::int. i>0) [0,0] = None" by simp}\\ |
334 |
@{lemma "List.find (%i::int. i>0) [0,1,0,2] = Some 1" by simp}\\ |
|
60541 | 335 |
@{lemma "count_list [0,1,0,2::int] 0 = 2" by (simp)}\\ |
55807 | 336 |
@{lemma "List.extract (%i::int. i>0) [0,0] = None" by(simp add: extract_def)}\\ |
337 |
@{lemma "List.extract (%i::int. i>0) [0,1,0,2] = Some([0], 1, [0,2])" by(simp add: extract_def)}\\ |
|
27381 | 338 |
@{lemma "remove1 2 [2,0,2,1::nat,2] = [0,2,1,2]" by simp}\\ |
27693 | 339 |
@{lemma "removeAll 2 [2,0,2,1::nat,2] = [0,1]" by simp}\\ |
27381 | 340 |
@{lemma "nth [a,b,c,d] 2 = c" by simp}\\ |
341 |
@{lemma "[a,b,c,d][2 := x] = [a,b,x,d]" by simp}\\ |
|
65956
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
342 |
@{lemma "nths [a,b,c,d,e] {0,2,3} = [a,c,d]" by (simp add:nths_def)}\\ |
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
343 |
@{lemma "subseqs [a,b] = [[a, b], [a], [b], []]" by simp}\\ |
49948
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
344 |
@{lemma "List.n_lists 2 [a,b,c] = [[a, a], [b, a], [c, a], [a, b], [b, b], [c, b], [a, c], [b, c], [c, c]]" by (simp add: eval_nat_numeral)}\\ |
46440
d4994e2e7364
use 'primrec' to define "rotate1", for uniformity (and to help first-order tools that rely on "Spec_Rules")
blanchet
parents:
46439
diff
changeset
|
345 |
@{lemma "rotate1 [a,b,c,d] = [b,c,d,a]" by simp}\\ |
d4994e2e7364
use 'primrec' to define "rotate1", for uniformity (and to help first-order tools that rely on "Spec_Rules")
blanchet
parents:
46439
diff
changeset
|
346 |
@{lemma "rotate 3 [a,b,c,d] = [d,a,b,c]" by (simp add:rotate_def eval_nat_numeral)}\\ |
40077 | 347 |
@{lemma "replicate 4 a = [a,a,a,a]" by (simp add:eval_nat_numeral)}\\ |
67170 | 348 |
@{lemma "[2..<5] = [2,3,4]" by (simp add:eval_nat_numeral)}\\ |
349 |
@{lemma "min_list [3,1,-2::int] = -2" by (simp)}\\ |
|
350 |
@{lemma "arg_min_list (\<lambda>i. i*i) [3,-1,1,-2::int] = -1" by (simp)} |
|
26771 | 351 |
\end{tabular}} |
352 |
\caption{Characteristic examples} |
|
353 |
\label{fig:Characteristic} |
|
354 |
\end{figure} |
|
29927 | 355 |
Figure~\ref{fig:Characteristic} shows characteristic examples |
26771 | 356 |
that should give an intuitive understanding of the above functions. |
60758 | 357 |
\<close> |
358 |
||
71779 | 359 |
text\<open>The following simple sort(ed) functions are intended for proofs, |
60758 | 360 |
not for efficient implementations.\<close> |
24616 | 361 |
|
66434
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
362 |
text \<open>A sorted predicate w.r.t. a relation:\<close> |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
363 |
|
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
364 |
fun sorted_wrt :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> bool" where |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
365 |
"sorted_wrt P [] = True" | |
68109 | 366 |
"sorted_wrt P (x # ys) = ((\<forall>y \<in> set ys. P x y) \<and> sorted_wrt P ys)" |
66434
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
367 |
|
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
368 |
text \<open>A class-based sorted predicate:\<close> |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
369 |
|
25221
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
370 |
context linorder |
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
371 |
begin |
67479 | 372 |
|
373 |
fun sorted :: "'a list \<Rightarrow> bool" where |
|
374 |
"sorted [] = True" | |
|
68109 | 375 |
"sorted (x # ys) = ((\<forall>y \<in> set ys. x \<le> y) \<and> sorted ys)" |
67479 | 376 |
|
71404
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
377 |
fun strict_sorted :: "'a list \<Rightarrow> bool" where |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
378 |
"strict_sorted [] = True" | |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
379 |
"strict_sorted (x # ys) = ((\<forall>y \<in> List.set ys. x < y) \<and> strict_sorted ys)" |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
380 |
|
67479 | 381 |
lemma sorted_sorted_wrt: "sorted = sorted_wrt (\<le>)" |
382 |
proof (rule ext) |
|
383 |
fix xs show "sorted xs = sorted_wrt (\<le>) xs" |
|
384 |
by(induction xs rule: sorted.induct) auto |
|
385 |
qed |
|
24697 | 386 |
|
71404
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
387 |
lemma strict_sorted_sorted_wrt: "strict_sorted = sorted_wrt (<)" |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
388 |
proof (rule ext) |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
389 |
fix xs show "strict_sorted xs = sorted_wrt (<) xs" |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
390 |
by(induction xs rule: strict_sorted.induct) auto |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
391 |
qed |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
392 |
|
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
|
393 |
primrec insort_key :: "('b \<Rightarrow> 'a) \<Rightarrow> 'b \<Rightarrow> 'b list \<Rightarrow> 'b list" where |
72095
cfb6c22a5636
lemmas about sets and the enumerate operator
paulson <lp15@cam.ac.uk>
parents:
71991
diff
changeset
|
394 |
"insort_key f x [] = [x]" | |
cfb6c22a5636
lemmas about sets and the enumerate operator
paulson <lp15@cam.ac.uk>
parents:
71991
diff
changeset
|
395 |
"insort_key f x (y#ys) = |
50548 | 396 |
(if f x \<le> f y then (x#y#ys) else y#(insort_key f x ys))" |
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
|
397 |
|
35195 | 398 |
definition sort_key :: "('b \<Rightarrow> 'a) \<Rightarrow> 'b list \<Rightarrow> 'b list" where |
72095
cfb6c22a5636
lemmas about sets and the enumerate operator
paulson <lp15@cam.ac.uk>
parents:
71991
diff
changeset
|
399 |
"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
|
400 |
|
40210
aee7ef725330
sorting: avoid _key suffix if lemma applies both to simple and generalized variant; generalized insort_insert to insort_insert_key; additional lemmas
haftmann
parents:
40195
diff
changeset
|
401 |
definition insort_insert_key :: "('b \<Rightarrow> 'a) \<Rightarrow> 'b \<Rightarrow> 'b list \<Rightarrow> 'b list" where |
72095
cfb6c22a5636
lemmas about sets and the enumerate operator
paulson <lp15@cam.ac.uk>
parents:
71991
diff
changeset
|
402 |
"insort_insert_key f x xs = |
50548 | 403 |
(if f x \<in> f ` set xs then xs else insort_key f x xs)" |
40210
aee7ef725330
sorting: avoid _key suffix if lemma applies both to simple and generalized variant; generalized insort_insert to insort_insert_key; additional lemmas
haftmann
parents:
40195
diff
changeset
|
404 |
|
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
|
405 |
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
|
406 |
abbreviation "insort \<equiv> insort_key (\<lambda>x. x)" |
40210
aee7ef725330
sorting: avoid _key suffix if lemma applies both to simple and generalized variant; generalized insort_insert to insort_insert_key; additional lemmas
haftmann
parents:
40195
diff
changeset
|
407 |
abbreviation "insort_insert \<equiv> insort_insert_key (\<lambda>x. x)" |
35608 | 408 |
|
67684 | 409 |
definition stable_sort_key :: "(('b \<Rightarrow> 'a) \<Rightarrow> 'b list \<Rightarrow> 'b list) \<Rightarrow> bool" where |
72095
cfb6c22a5636
lemmas about sets and the enumerate operator
paulson <lp15@cam.ac.uk>
parents:
71991
diff
changeset
|
410 |
"stable_sort_key sk = |
67684 | 411 |
(\<forall>f xs k. filter (\<lambda>y. f y = k) (sk f xs) = filter (\<lambda>y. f y = k) xs)" |
412 |
||
71860 | 413 |
lemma strict_sorted_iff: "strict_sorted l \<longleftrightarrow> sorted l \<and> distinct l" |
72095
cfb6c22a5636
lemmas about sets and the enumerate operator
paulson <lp15@cam.ac.uk>
parents:
71991
diff
changeset
|
414 |
by (induction l) (auto iff: antisym_conv1) |
cfb6c22a5636
lemmas about sets and the enumerate operator
paulson <lp15@cam.ac.uk>
parents:
71991
diff
changeset
|
415 |
|
cfb6c22a5636
lemmas about sets and the enumerate operator
paulson <lp15@cam.ac.uk>
parents:
71991
diff
changeset
|
416 |
lemma strict_sorted_imp_sorted: "strict_sorted xs \<Longrightarrow> sorted xs" |
cfb6c22a5636
lemmas about sets and the enumerate operator
paulson <lp15@cam.ac.uk>
parents:
71991
diff
changeset
|
417 |
by (auto simp: strict_sorted_iff) |
71860 | 418 |
|
25221
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
419 |
end |
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
420 |
|
24616 | 421 |
|
60758 | 422 |
subsubsection \<open>List comprehension\<close> |
423 |
||
424 |
text\<open>Input syntax for Haskell-like list comprehension notation. |
|
61799 | 425 |
Typical example: \<open>[(x,y). x \<leftarrow> xs, y \<leftarrow> ys, x \<noteq> y]\<close>, |
426 |
the list of all pairs of distinct elements from \<open>xs\<close> and \<open>ys\<close>. |
|
427 |
The syntax is as in Haskell, except that \<open>|\<close> becomes a dot |
|
428 |
(like in Isabelle's set comprehension): \<open>[e. x \<leftarrow> xs, \<dots>]\<close> rather than |
|
24349 | 429 |
\verb![e| x <- xs, ...]!. |
430 |
||
431 |
The qualifiers after the dot are |
|
432 |
\begin{description} |
|
61799 | 433 |
\item[generators] \<open>p \<leftarrow> xs\<close>, |
434 |
where \<open>p\<close> is a pattern and \<open>xs\<close> an expression of list type, or |
|
435 |
\item[guards] \<open>b\<close>, where \<open>b\<close> is a boolean expression. |
|
24476
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
436 |
%\item[local bindings] @ {text"let x = e"}. |
24349 | 437 |
\end{description} |
23240 | 438 |
|
24476
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
439 |
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
|
440 |
misunderstandings, the translation into desugared form is not reversed |
61799 | 441 |
upon output. Note that the translation of \<open>[e. x \<leftarrow> xs]\<close> is |
69593 | 442 |
optmized to \<^term>\<open>map (%x. e) xs\<close>. |
23240 | 443 |
|
24349 | 444 |
It is easy to write short list comprehensions which stand for complex |
445 |
expressions. During proofs, they may become unreadable (and |
|
446 |
mangled). In such cases it can be advisable to introduce separate |
|
60758 | 447 |
definitions for the list comprehensions in question.\<close> |
24349 | 448 |
|
46138
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents:
46133
diff
changeset
|
449 |
nonterminal lc_qual and lc_quals |
23192 | 450 |
|
451 |
syntax |
|
46138
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents:
46133
diff
changeset
|
452 |
"_listcompr" :: "'a \<Rightarrow> lc_qual \<Rightarrow> lc_quals \<Rightarrow> 'a list" ("[_ . __") |
61955
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61941
diff
changeset
|
453 |
"_lc_gen" :: "'a \<Rightarrow> 'a list \<Rightarrow> lc_qual" ("_ \<leftarrow> _") |
46138
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents:
46133
diff
changeset
|
454 |
"_lc_test" :: "bool \<Rightarrow> lc_qual" ("_") |
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents:
46133
diff
changeset
|
455 |
(*"_lc_let" :: "letbinds => lc_qual" ("let _")*) |
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents:
46133
diff
changeset
|
456 |
"_lc_end" :: "lc_quals" ("]") |
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents:
46133
diff
changeset
|
457 |
"_lc_quals" :: "lc_qual \<Rightarrow> lc_quals \<Rightarrow> lc_quals" (", __") |
23192 | 458 |
|
61955
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61941
diff
changeset
|
459 |
syntax (ASCII) |
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61941
diff
changeset
|
460 |
"_lc_gen" :: "'a \<Rightarrow> 'a list \<Rightarrow> lc_qual" ("_ <- _") |
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61941
diff
changeset
|
461 |
|
60758 | 462 |
parse_translation \<open> |
68362 | 463 |
let |
69593 | 464 |
val NilC = Syntax.const \<^const_syntax>\<open>Nil\<close>; |
465 |
val ConsC = Syntax.const \<^const_syntax>\<open>Cons\<close>; |
|
466 |
val mapC = Syntax.const \<^const_syntax>\<open>map\<close>; |
|
467 |
val concatC = Syntax.const \<^const_syntax>\<open>concat\<close>; |
|
468 |
val IfC = Syntax.const \<^const_syntax>\<open>If\<close>; |
|
469 |
val dummyC = Syntax.const \<^const_syntax>\<open>Pure.dummy_pattern\<close> |
|
68362 | 470 |
|
471 |
fun single x = ConsC $ x $ NilC; |
|
472 |
||
473 |
fun pat_tr ctxt p e opti = (* %x. case x of p => e | _ => [] *) |
|
474 |
let |
|
475 |
(* FIXME proper name context!? *) |
|
476 |
val x = |
|
477 |
Free (singleton (Name.variant_list (fold Term.add_free_names [p, e] [])) "x", dummyT); |
|
478 |
val e = if opti then single e else e; |
|
69593 | 479 |
val case1 = Syntax.const \<^syntax_const>\<open>_case1\<close> $ p $ e; |
68362 | 480 |
val case2 = |
69593 | 481 |
Syntax.const \<^syntax_const>\<open>_case1\<close> $ dummyC $ NilC; |
482 |
val cs = Syntax.const \<^syntax_const>\<open>_case2\<close> $ case1 $ case2; |
|
68362 | 483 |
in Syntax_Trans.abs_tr [x, Case_Translation.case_tr false ctxt [x, cs]] end; |
484 |
||
485 |
fun pair_pat_tr (x as Free _) e = Syntax_Trans.abs_tr [x, e] |
|
486 |
| pair_pat_tr (_ $ p1 $ p2) e = |
|
69593 | 487 |
Syntax.const \<^const_syntax>\<open>case_prod\<close> $ pair_pat_tr p1 (pair_pat_tr p2 e) |
68362 | 488 |
| pair_pat_tr dummy e = Syntax_Trans.abs_tr [Syntax.const "_idtdummy", e] |
489 |
||
69593 | 490 |
fun pair_pat ctxt (Const (\<^const_syntax>\<open>Pair\<close>,_) $ s $ t) = |
68362 | 491 |
pair_pat ctxt s andalso pair_pat ctxt t |
492 |
| pair_pat ctxt (Free (s,_)) = |
|
493 |
let |
|
494 |
val thy = Proof_Context.theory_of ctxt; |
|
495 |
val s' = Proof_Context.intern_const ctxt s; |
|
496 |
in not (Sign.declared_const thy s') end |
|
497 |
| pair_pat _ t = (t = dummyC); |
|
498 |
||
499 |
fun abs_tr ctxt p e opti = |
|
500 |
let val p = Term_Position.strip_positions p |
|
501 |
in if pair_pat ctxt p |
|
502 |
then (pair_pat_tr p e, true) |
|
503 |
else (pat_tr ctxt p e opti, false) |
|
504 |
end |
|
505 |
||
69593 | 506 |
fun lc_tr ctxt [e, Const (\<^syntax_const>\<open>_lc_test\<close>, _) $ b, qs] = |
68362 | 507 |
let |
508 |
val res = |
|
509 |
(case qs of |
|
69593 | 510 |
Const (\<^syntax_const>\<open>_lc_end\<close>, _) => single e |
511 |
| Const (\<^syntax_const>\<open>_lc_quals\<close>, _) $ q $ qs => lc_tr ctxt [e, q, qs]); |
|
68362 | 512 |
in IfC $ b $ res $ NilC end |
513 |
| lc_tr ctxt |
|
69593 | 514 |
[e, Const (\<^syntax_const>\<open>_lc_gen\<close>, _) $ p $ es, |
515 |
Const(\<^syntax_const>\<open>_lc_end\<close>, _)] = |
|
68362 | 516 |
(case abs_tr ctxt p e true of |
517 |
(f, true) => mapC $ f $ es |
|
518 |
| (f, false) => concatC $ (mapC $ f $ es)) |
|
519 |
| lc_tr ctxt |
|
69593 | 520 |
[e, Const (\<^syntax_const>\<open>_lc_gen\<close>, _) $ p $ es, |
521 |
Const (\<^syntax_const>\<open>_lc_quals\<close>, _) $ q $ qs] = |
|
68362 | 522 |
let val e' = lc_tr ctxt [e, q, qs]; |
523 |
in concatC $ (mapC $ (fst (abs_tr ctxt p e' false)) $ es) end; |
|
524 |
||
69593 | 525 |
in [(\<^syntax_const>\<open>_listcompr\<close>, lc_tr)] end |
60758 | 526 |
\<close> |
527 |
||
528 |
ML_val \<open> |
|
42167 | 529 |
let |
69593 | 530 |
val read = Syntax.read_term \<^context> o Syntax.implode_input; |
60160 | 531 |
fun check s1 s2 = |
532 |
read s1 aconv read s2 orelse |
|
533 |
error ("Check failed: " ^ |
|
69349
7cef9e386ffe
more accurate positions for "name" (quoted string) and "embedded" (cartouche): refer to content without delimiters, which is e.g. relevant for systematic selection/renaming of scope groups;
wenzelm
parents:
69312
diff
changeset
|
534 |
quote (#1 (Input.source_content s1)) ^ Position.here_list [Input.pos_of s1, Input.pos_of s2]); |
42167 | 535 |
in |
60160 | 536 |
check \<open>[(x,y,z). b]\<close> \<open>if b then [(x, y, z)] else []\<close>; |
68362 | 537 |
check \<open>[(x,y,z). (x,_,y)\<leftarrow>xs]\<close> \<open>map (\<lambda>(x,_,y). (x, y, z)) xs\<close>; |
538 |
check \<open>[e x y. (x,_)\<leftarrow>xs, y\<leftarrow>ys]\<close> \<open>concat (map (\<lambda>(x,_). map (\<lambda>y. e x y) ys) xs)\<close>; |
|
60160 | 539 |
check \<open>[(x,y,z). x<a, x>b]\<close> \<open>if x < a then if b < x then [(x, y, z)] else [] else []\<close>; |
540 |
check \<open>[(x,y,z). x\<leftarrow>xs, x>b]\<close> \<open>concat (map (\<lambda>x. if b < x then [(x, y, z)] else []) xs)\<close>; |
|
541 |
check \<open>[(x,y,z). x<a, x\<leftarrow>xs]\<close> \<open>if x < a then map (\<lambda>x. (x, y, z)) xs else []\<close>; |
|
542 |
check \<open>[(x,y). Cons True x \<leftarrow> xs]\<close> |
|
543 |
\<open>concat (map (\<lambda>xa. case xa of [] \<Rightarrow> [] | True # x \<Rightarrow> [(x, y)] | False # x \<Rightarrow> []) xs)\<close>; |
|
544 |
check \<open>[(x,y,z). Cons x [] \<leftarrow> xs]\<close> |
|
545 |
\<open>concat (map (\<lambda>xa. case xa of [] \<Rightarrow> [] | [x] \<Rightarrow> [(x, y, z)] | x # aa # lista \<Rightarrow> []) xs)\<close>; |
|
546 |
check \<open>[(x,y,z). x<a, x>b, x=d]\<close> |
|
547 |
\<open>if x < a then if b < x then if x = d then [(x, y, z)] else [] else [] else []\<close>; |
|
548 |
check \<open>[(x,y,z). x<a, x>b, y\<leftarrow>ys]\<close> |
|
549 |
\<open>if x < a then if b < x then map (\<lambda>y. (x, y, z)) ys else [] else []\<close>; |
|
68362 | 550 |
check \<open>[(x,y,z). x<a, (_,x)\<leftarrow>xs,y>b]\<close> |
551 |
\<open>if x < a then concat (map (\<lambda>(_,x). if b < y then [(x, y, z)] else []) xs) else []\<close>; |
|
60160 | 552 |
check \<open>[(x,y,z). x<a, x\<leftarrow>xs, y\<leftarrow>ys]\<close> |
553 |
\<open>if x < a then concat (map (\<lambda>x. map (\<lambda>y. (x, y, z)) ys) xs) else []\<close>; |
|
554 |
check \<open>[(x,y,z). x\<leftarrow>xs, x>b, y<a]\<close> |
|
555 |
\<open>concat (map (\<lambda>x. if b < x then if y < a then [(x, y, z)] else [] else []) xs)\<close>; |
|
556 |
check \<open>[(x,y,z). x\<leftarrow>xs, x>b, y\<leftarrow>ys]\<close> |
|
557 |
\<open>concat (map (\<lambda>x. if b < x then map (\<lambda>y. (x, y, z)) ys else []) xs)\<close>; |
|
68362 | 558 |
check \<open>[(x,y,z). x\<leftarrow>xs, (y,_)\<leftarrow>ys,y>x]\<close> |
559 |
\<open>concat (map (\<lambda>x. concat (map (\<lambda>(y,_). if x < y then [(x, y, z)] else []) ys)) xs)\<close>; |
|
60160 | 560 |
check \<open>[(x,y,z). x\<leftarrow>xs, y\<leftarrow>ys,z\<leftarrow>zs]\<close> |
561 |
\<open>concat (map (\<lambda>x. concat (map (\<lambda>y. map (\<lambda>z. (x, y, z)) zs) ys)) xs)\<close> |
|
42167 | 562 |
end; |
60758 | 563 |
\<close> |
42167 | 564 |
|
60758 | 565 |
ML \<open> |
50422
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
566 |
(* Simproc for rewriting list comprehensions applied to List.set to set |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
567 |
comprehension. *) |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
568 |
|
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
569 |
signature LIST_TO_SET_COMPREHENSION = |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
570 |
sig |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51678
diff
changeset
|
571 |
val simproc : Proof.context -> cterm -> thm option |
50422
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
572 |
end |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
573 |
|
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
574 |
structure List_to_Set_Comprehension : LIST_TO_SET_COMPREHENSION = |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
575 |
struct |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
576 |
|
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
577 |
(* conversion *) |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
578 |
|
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
579 |
fun all_exists_conv cv ctxt ct = |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
580 |
(case Thm.term_of ct of |
69593 | 581 |
Const (\<^const_name>\<open>Ex\<close>, _) $ Abs _ => |
50422
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
582 |
Conv.arg_conv (Conv.abs_conv (all_exists_conv cv o #2) ctxt) ct |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
583 |
| _ => cv ctxt ct) |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
584 |
|
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
585 |
fun all_but_last_exists_conv cv ctxt ct = |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
586 |
(case Thm.term_of ct of |
69593 | 587 |
Const (\<^const_name>\<open>Ex\<close>, _) $ Abs (_, _, Const (\<^const_name>\<open>Ex\<close>, _) $ _) => |
50422
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
588 |
Conv.arg_conv (Conv.abs_conv (all_but_last_exists_conv cv o #2) ctxt) ct |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
589 |
| _ => cv ctxt ct) |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
590 |
|
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
591 |
fun Collect_conv cv ctxt ct = |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
592 |
(case Thm.term_of ct of |
69593 | 593 |
Const (\<^const_name>\<open>Collect\<close>, _) $ Abs _ => Conv.arg_conv (Conv.abs_conv cv ctxt) ct |
50422
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
594 |
| _ => raise CTERM ("Collect_conv", [ct])) |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
595 |
|
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
596 |
fun rewr_conv' th = Conv.rewr_conv (mk_meta_eq th) |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
597 |
|
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
598 |
fun conjunct_assoc_conv ct = |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
599 |
Conv.try_conv |
51315
536a5603a138
provide common HOLogic.conj_conv and HOLogic.eq_conv;
wenzelm
parents:
51314
diff
changeset
|
600 |
(rewr_conv' @{thm conj_assoc} then_conv HOLogic.conj_conv Conv.all_conv conjunct_assoc_conv) ct |
50422
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
601 |
|
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
602 |
fun right_hand_set_comprehension_conv conv ctxt = |
51315
536a5603a138
provide common HOLogic.conj_conv and HOLogic.eq_conv;
wenzelm
parents:
51314
diff
changeset
|
603 |
HOLogic.Trueprop_conv (HOLogic.eq_conv Conv.all_conv |
50422
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
604 |
(Collect_conv (all_exists_conv conv o #2) ctxt)) |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
605 |
|
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
606 |
|
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
607 |
(* term abstraction of list comprehension patterns *) |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
608 |
|
60156 | 609 |
datatype termlets = If | Case of typ * int |
50422
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
610 |
|
60158 | 611 |
local |
612 |
||
613 |
val set_Nil_I = @{lemma "set [] = {x. False}" by (simp add: empty_def [symmetric])} |
|
614 |
val set_singleton = @{lemma "set [a] = {x. x = a}" by simp} |
|
615 |
val inst_Collect_mem_eq = @{lemma "set A = {x. x \<in> set A}" by simp} |
|
616 |
val del_refl_eq = @{lemma "(t = t \<and> P) \<equiv> P" by simp} |
|
617 |
||
69593 | 618 |
fun mk_set T = Const (\<^const_name>\<open>set\<close>, HOLogic.listT T --> HOLogic.mk_setT T) |
619 |
fun dest_set (Const (\<^const_name>\<open>set\<close>, _) $ xs) = xs |
|
620 |
||
621 |
fun dest_singleton_list (Const (\<^const_name>\<open>Cons\<close>, _) $ t $ (Const (\<^const_name>\<open>Nil\<close>, _))) = t |
|
60158 | 622 |
| dest_singleton_list t = raise TERM ("dest_singleton_list", [t]) |
623 |
||
624 |
(*We check that one case returns a singleton list and all other cases |
|
625 |
return [], and return the index of the one singleton list case.*) |
|
626 |
fun possible_index_of_singleton_case cases = |
|
50422
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
627 |
let |
60158 | 628 |
fun check (i, case_t) s = |
629 |
(case strip_abs_body case_t of |
|
69593 | 630 |
(Const (\<^const_name>\<open>Nil\<close>, _)) => s |
60158 | 631 |
| _ => (case s of SOME NONE => SOME (SOME i) | _ => NONE)) |
632 |
in |
|
633 |
fold_index check cases (SOME NONE) |> the_default NONE |
|
634 |
end |
|
635 |
||
636 |
(*returns condition continuing term option*) |
|
69593 | 637 |
fun dest_if (Const (\<^const_name>\<open>If\<close>, _) $ cond $ then_t $ Const (\<^const_name>\<open>Nil\<close>, _)) = |
60158 | 638 |
SOME (cond, then_t) |
639 |
| dest_if _ = NONE |
|
640 |
||
641 |
(*returns (case_expr type index chosen_case constr_name) option*) |
|
642 |
fun dest_case ctxt case_term = |
|
643 |
let |
|
644 |
val (case_const, args) = strip_comb case_term |
|
645 |
in |
|
646 |
(case try dest_Const case_const of |
|
647 |
SOME (c, T) => |
|
648 |
(case Ctr_Sugar.ctr_sugar_of_case ctxt c of |
|
649 |
SOME {ctrs, ...} => |
|
650 |
(case possible_index_of_singleton_case (fst (split_last args)) of |
|
651 |
SOME i => |
|
652 |
let |
|
653 |
val constr_names = map (fst o dest_Const) ctrs |
|
654 |
val (Ts, _) = strip_type T |
|
655 |
val T' = List.last Ts |
|
656 |
in SOME (List.last args, T', i, nth args i, nth constr_names i) end |
|
50422
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
657 |
| NONE => NONE) |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
658 |
| NONE => NONE) |
60158 | 659 |
| NONE => NONE) |
660 |
end |
|
661 |
||
60752 | 662 |
fun tac ctxt [] = |
663 |
resolve_tac ctxt [set_singleton] 1 ORELSE |
|
664 |
resolve_tac ctxt [inst_Collect_mem_eq] 1 |
|
60158 | 665 |
| tac ctxt (If :: cont) = |
62390 | 666 |
Splitter.split_tac ctxt @{thms if_split} 1 |
60752 | 667 |
THEN resolve_tac ctxt @{thms conjI} 1 |
668 |
THEN resolve_tac ctxt @{thms impI} 1 |
|
60159
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
wenzelm
parents:
60158
diff
changeset
|
669 |
THEN Subgoal.FOCUS (fn {prems, context = ctxt', ...} => |
60158 | 670 |
CONVERSION (right_hand_set_comprehension_conv (K |
671 |
(HOLogic.conj_conv (Conv.rewr_conv (List.last prems RS @{thm Eq_TrueI})) Conv.all_conv |
|
672 |
then_conv |
|
60159
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
wenzelm
parents:
60158
diff
changeset
|
673 |
rewr_conv' @{lemma "(True \<and> P) = P" by simp})) ctxt') 1) ctxt 1 |
60158 | 674 |
THEN tac ctxt cont |
60752 | 675 |
THEN resolve_tac ctxt @{thms impI} 1 |
60159
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
wenzelm
parents:
60158
diff
changeset
|
676 |
THEN Subgoal.FOCUS (fn {prems, context = ctxt', ...} => |
60158 | 677 |
CONVERSION (right_hand_set_comprehension_conv (K |
678 |
(HOLogic.conj_conv (Conv.rewr_conv (List.last prems RS @{thm Eq_FalseI})) Conv.all_conv |
|
60159
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
wenzelm
parents:
60158
diff
changeset
|
679 |
then_conv rewr_conv' @{lemma "(False \<and> P) = False" by simp})) ctxt') 1) ctxt 1 |
60752 | 680 |
THEN resolve_tac ctxt [set_Nil_I] 1 |
60158 | 681 |
| tac ctxt (Case (T, i) :: cont) = |
682 |
let |
|
683 |
val SOME {injects, distincts, case_thms, split, ...} = |
|
684 |
Ctr_Sugar.ctr_sugar_of ctxt (fst (dest_Type T)) |
|
685 |
in |
|
686 |
(* do case distinction *) |
|
687 |
Splitter.split_tac ctxt [split] 1 |
|
688 |
THEN EVERY (map_index (fn (i', _) => |
|
60752 | 689 |
(if i' < length case_thms - 1 then resolve_tac ctxt @{thms conjI} 1 else all_tac) |
690 |
THEN REPEAT_DETERM (resolve_tac ctxt @{thms allI} 1) |
|
691 |
THEN resolve_tac ctxt @{thms impI} 1 |
|
60158 | 692 |
THEN (if i' = i then |
693 |
(* continue recursively *) |
|
60159
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
wenzelm
parents:
60158
diff
changeset
|
694 |
Subgoal.FOCUS (fn {prems, context = ctxt', ...} => |
60158 | 695 |
CONVERSION (Thm.eta_conversion then_conv right_hand_set_comprehension_conv (K |
696 |
((HOLogic.conj_conv |
|
697 |
(HOLogic.eq_conv Conv.all_conv (rewr_conv' (List.last prems)) then_conv |
|
698 |
(Conv.try_conv (Conv.rewrs_conv (map mk_meta_eq injects)))) |
|
699 |
Conv.all_conv) |
|
700 |
then_conv (Conv.try_conv (Conv.rewr_conv del_refl_eq)) |
|
60159
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
wenzelm
parents:
60158
diff
changeset
|
701 |
then_conv conjunct_assoc_conv)) ctxt' |
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
wenzelm
parents:
60158
diff
changeset
|
702 |
then_conv |
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
wenzelm
parents:
60158
diff
changeset
|
703 |
(HOLogic.Trueprop_conv |
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
wenzelm
parents:
60158
diff
changeset
|
704 |
(HOLogic.eq_conv Conv.all_conv (Collect_conv (fn (_, ctxt'') => |
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
wenzelm
parents:
60158
diff
changeset
|
705 |
Conv.repeat_conv |
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
wenzelm
parents:
60158
diff
changeset
|
706 |
(all_but_last_exists_conv |
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
wenzelm
parents:
60158
diff
changeset
|
707 |
(K (rewr_conv' |
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
wenzelm
parents:
60158
diff
changeset
|
708 |
@{lemma "(\<exists>x. x = t \<and> P x) = P t" by simp})) ctxt'')) ctxt')))) 1) ctxt 1 |
60158 | 709 |
THEN tac ctxt cont |
710 |
else |
|
60159
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
wenzelm
parents:
60158
diff
changeset
|
711 |
Subgoal.FOCUS (fn {prems, context = ctxt', ...} => |
60158 | 712 |
CONVERSION |
713 |
(right_hand_set_comprehension_conv (K |
|
714 |
(HOLogic.conj_conv |
|
715 |
((HOLogic.eq_conv Conv.all_conv |
|
716 |
(rewr_conv' (List.last prems))) then_conv |
|
717 |
(Conv.rewrs_conv (map (fn th => th RS @{thm Eq_FalseI}) distincts))) |
|
718 |
Conv.all_conv then_conv |
|
60159
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
wenzelm
parents:
60158
diff
changeset
|
719 |
(rewr_conv' @{lemma "(False \<and> P) = False" by simp}))) ctxt' then_conv |
60158 | 720 |
HOLogic.Trueprop_conv |
721 |
(HOLogic.eq_conv Conv.all_conv |
|
60159
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
wenzelm
parents:
60158
diff
changeset
|
722 |
(Collect_conv (fn (_, ctxt'') => |
60158 | 723 |
Conv.repeat_conv |
724 |
(Conv.bottom_conv |
|
60159
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
wenzelm
parents:
60158
diff
changeset
|
725 |
(K (rewr_conv' @{lemma "(\<exists>x. P) = P" by simp})) ctxt'')) ctxt'))) 1) ctxt 1 |
60752 | 726 |
THEN resolve_tac ctxt [set_Nil_I] 1)) case_thms) |
60158 | 727 |
end |
728 |
||
729 |
in |
|
730 |
||
731 |
fun simproc ctxt redex = |
|
732 |
let |
|
50422
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
733 |
fun make_inner_eqs bound_vs Tis eqs t = |
60158 | 734 |
(case dest_case ctxt t of |
54404
9f0f1152c875
port list comprehension simproc to 'Ctr_Sugar' abstraction
blanchet
parents:
54295
diff
changeset
|
735 |
SOME (x, T, i, cont, constr_name) => |
50422
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
736 |
let |
52131 | 737 |
val (vs, body) = strip_abs (Envir.eta_long (map snd bound_vs) cont) |
50422
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
738 |
val x' = incr_boundvars (length vs) x |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
739 |
val eqs' = map (incr_boundvars (length vs)) eqs |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
740 |
val constr_t = |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
741 |
list_comb |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
742 |
(Const (constr_name, map snd vs ---> T), map Bound (((length vs) - 1) downto 0)) |
69593 | 743 |
val constr_eq = Const (\<^const_name>\<open>HOL.eq\<close>, T --> T --> \<^typ>\<open>bool\<close>) $ constr_t $ x' |
50422
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
744 |
in |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
745 |
make_inner_eqs (rev vs @ bound_vs) (Case (T, i) :: Tis) (constr_eq :: eqs') body |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
746 |
end |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
747 |
| NONE => |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
748 |
(case dest_if t of |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
749 |
SOME (condition, cont) => make_inner_eqs bound_vs (If :: Tis) (condition :: eqs) cont |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
750 |
| NONE => |
60158 | 751 |
if null eqs then NONE (*no rewriting, nothing to be done*) |
50422
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
752 |
else |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
753 |
let |
69593 | 754 |
val Type (\<^type_name>\<open>list\<close>, [rT]) = fastype_of1 (map snd bound_vs, t) |
50422
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
755 |
val pat_eq = |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
756 |
(case try dest_singleton_list t of |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
757 |
SOME t' => |
69593 | 758 |
Const (\<^const_name>\<open>HOL.eq\<close>, rT --> rT --> \<^typ>\<open>bool\<close>) $ |
50422
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
759 |
Bound (length bound_vs) $ t' |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
760 |
| NONE => |
69593 | 761 |
Const (\<^const_name>\<open>Set.member\<close>, rT --> HOLogic.mk_setT rT --> \<^typ>\<open>bool\<close>) $ |
50422
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
762 |
Bound (length bound_vs) $ (mk_set rT $ t)) |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
763 |
val reverse_bounds = curry subst_bounds |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
764 |
((map Bound ((length bound_vs - 1) downto 0)) @ [Bound (length bound_vs)]) |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
765 |
val eqs' = map reverse_bounds eqs |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
766 |
val pat_eq' = reverse_bounds pat_eq |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
767 |
val inner_t = |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
768 |
fold (fn (_, T) => fn t => HOLogic.exists_const T $ absdummy T t) |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
769 |
(rev bound_vs) (fold (curry HOLogic.mk_conj) eqs' pat_eq') |
59582 | 770 |
val lhs = Thm.term_of redex |
50422
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
771 |
val rhs = HOLogic.mk_Collect ("x", rT, inner_t) |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
772 |
val rewrite_rule_t = HOLogic.mk_Trueprop (HOLogic.mk_eq (lhs, rhs)) |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
773 |
in |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
774 |
SOME |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
775 |
((Goal.prove ctxt [] [] rewrite_rule_t |
60159
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
wenzelm
parents:
60158
diff
changeset
|
776 |
(fn {context = ctxt', ...} => tac ctxt' (rev Tis))) RS @{thm eq_reflection}) |
50422
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
777 |
end)) |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
778 |
in |
59582 | 779 |
make_inner_eqs [] [] [] (dest_set (Thm.term_of redex)) |
50422
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
780 |
end |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
781 |
|
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
782 |
end |
60158 | 783 |
|
784 |
end |
|
60758 | 785 |
\<close> |
41463
edbf0a86fb1c
adding simproc to rewrite list comprehensions to set comprehensions; adopting proofs
bulwahn
parents:
41372
diff
changeset
|
786 |
|
60159
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
wenzelm
parents:
60158
diff
changeset
|
787 |
simproc_setup list_to_set_comprehension ("set xs") = |
60758 | 788 |
\<open>K List_to_Set_Comprehension.simproc\<close> |
41463
edbf0a86fb1c
adding simproc to rewrite list comprehensions to set comprehensions; adopting proofs
bulwahn
parents:
41372
diff
changeset
|
789 |
|
46133
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
790 |
code_datatype set coset |
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
791 |
hide_const (open) coset |
35115 | 792 |
|
49948
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
793 |
|
69593 | 794 |
subsubsection \<open>\<^const>\<open>Nil\<close> and \<^const>\<open>Cons\<close>\<close> |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
795 |
|
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
796 |
lemma not_Cons_self [simp]: |
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
797 |
"xs \<noteq> x # xs" |
13145 | 798 |
by (induct xs) auto |
13114 | 799 |
|
58807 | 800 |
lemma not_Cons_self2 [simp]: "x # xs \<noteq> xs" |
41697 | 801 |
by (rule not_Cons_self [symmetric]) |
13114 | 802 |
|
13142 | 803 |
lemma neq_Nil_conv: "(xs \<noteq> []) = (\<exists>y ys. xs = y # ys)" |
13145 | 804 |
by (induct xs) auto |
13114 | 805 |
|
67091 | 806 |
lemma tl_Nil: "tl xs = [] \<longleftrightarrow> xs = [] \<or> (\<exists>x. xs = [x])" |
53689 | 807 |
by (cases xs) auto |
808 |
||
67091 | 809 |
lemma Nil_tl: "[] = tl xs \<longleftrightarrow> xs = [] \<or> (\<exists>x. xs = [x])" |
53689 | 810 |
by (cases xs) auto |
811 |
||
13142 | 812 |
lemma length_induct: |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
813 |
"(\<And>xs. \<forall>ys. length ys < length xs \<longrightarrow> P ys \<Longrightarrow> P xs) \<Longrightarrow> P xs" |
53689 | 814 |
by (fact measure_induct) |
13114 | 815 |
|
67168 | 816 |
lemma induct_list012: |
70275 | 817 |
"\<lbrakk>P []; \<And>x. P [x]; \<And>x y zs. \<lbrakk> P zs; P (y # zs) \<rbrakk> \<Longrightarrow> P (x # y # zs)\<rbrakk> \<Longrightarrow> P xs" |
67168 | 818 |
by induction_schema (pat_completeness, lexicographic_order) |
819 |
||
37289 | 820 |
lemma list_nonempty_induct [consumes 1, case_names single cons]: |
67168 | 821 |
"\<lbrakk> xs \<noteq> []; \<And>x. P [x]; \<And>x xs. xs \<noteq> [] \<Longrightarrow> P xs \<Longrightarrow> P (x # xs)\<rbrakk> \<Longrightarrow> P xs" |
822 |
by(induction xs rule: induct_list012) auto |
|
37289 | 823 |
|
45714 | 824 |
lemma inj_split_Cons: "inj_on (\<lambda>(xs, n). n#xs) X" |
825 |
by (auto intro!: inj_onI) |
|
13114 | 826 |
|
67399 | 827 |
lemma inj_on_Cons1 [simp]: "inj_on ((#) x) A" |
61630 | 828 |
by(simp add: inj_on_def) |
49948
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
829 |
|
73307 | 830 |
|
69593 | 831 |
subsubsection \<open>\<^const>\<open>length\<close>\<close> |
60758 | 832 |
|
833 |
text \<open> |
|
61799 | 834 |
Needs to come before \<open>@\<close> because of theorem \<open>append_eq_append_conv\<close>. |
60758 | 835 |
\<close> |
13114 | 836 |
|
13142 | 837 |
lemma length_append [simp]: "length (xs @ ys) = length xs + length ys" |
13145 | 838 |
by (induct xs) auto |
13114 | 839 |
|
13142 | 840 |
lemma length_map [simp]: "length (map f xs) = length xs" |
13145 | 841 |
by (induct xs) auto |
13114 | 842 |
|
13142 | 843 |
lemma length_rev [simp]: "length (rev xs) = length xs" |
13145 | 844 |
by (induct xs) auto |
13114 | 845 |
|
13142 | 846 |
lemma length_tl [simp]: "length (tl xs) = length xs - 1" |
13145 | 847 |
by (cases xs) auto |
13114 | 848 |
|
13142 | 849 |
lemma length_0_conv [iff]: "(length xs = 0) = (xs = [])" |
13145 | 850 |
by (induct xs) auto |
13114 | 851 |
|
13142 | 852 |
lemma length_greater_0_conv [iff]: "(0 < length xs) = (xs \<noteq> [])" |
13145 | 853 |
by (induct xs) auto |
13114 | 854 |
|
67613 | 855 |
lemma length_pos_if_in_set: "x \<in> set xs \<Longrightarrow> length xs > 0" |
23479 | 856 |
by auto |
857 |
||
73307 | 858 |
lemma length_Suc_conv: "(length xs = Suc n) = (\<exists>y ys. xs = y # ys \<and> length ys = n)" |
13145 | 859 |
by (induct xs) auto |
13142 | 860 |
|
14025 | 861 |
lemma Suc_length_conv: |
58807 | 862 |
"(Suc n = length xs) = (\<exists>y ys. xs = y # ys \<and> length ys = n)" |
73307 | 863 |
by (induct xs; simp; blast) |
68709 | 864 |
|
69312 | 865 |
lemma Suc_le_length_iff: |
866 |
"(Suc n \<le> length xs) = (\<exists>x ys. xs = x # ys \<and> n \<le> length ys)" |
|
867 |
by (metis Suc_le_D[of n] Suc_le_mono[of n] Suc_length_conv[of _ xs]) |
|
868 |
||
71585 | 869 |
lemma impossible_Cons: "length xs \<le> length ys \<Longrightarrow> xs = x # ys = False" |
58807 | 870 |
by (induct xs) auto |
25221
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
871 |
|
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
872 |
lemma list_induct2 [consumes 1, case_names Nil Cons]: |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
873 |
"length xs = length ys \<Longrightarrow> P [] [] \<Longrightarrow> |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
874 |
(\<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
|
875 |
\<Longrightarrow> P xs ys" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
876 |
proof (induct xs arbitrary: ys) |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
877 |
case (Cons x xs ys) then show ?case by (cases ys) simp_all |
68709 | 878 |
qed simp |
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
879 |
|
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
880 |
lemma list_induct3 [consumes 2, case_names Nil Cons]: |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
881 |
"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
|
882 |
(\<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
|
883 |
\<Longrightarrow> P xs ys zs" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
884 |
proof (induct xs arbitrary: ys zs) |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
885 |
case Nil then show ?case by simp |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
886 |
next |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
887 |
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
|
888 |
(cases zs, simp_all) |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
889 |
qed |
13114 | 890 |
|
36154
11c6106d7787
Respectfullness and preservation of list_rel
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
35828
diff
changeset
|
891 |
lemma list_induct4 [consumes 3, case_names Nil Cons]: |
11c6106d7787
Respectfullness and preservation of list_rel
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
35828
diff
changeset
|
892 |
"length xs = length ys \<Longrightarrow> length ys = length zs \<Longrightarrow> length zs = length ws \<Longrightarrow> |
11c6106d7787
Respectfullness and preservation of list_rel
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
35828
diff
changeset
|
893 |
P [] [] [] [] \<Longrightarrow> (\<And>x xs y ys z zs w ws. length xs = length ys \<Longrightarrow> |
11c6106d7787
Respectfullness and preservation of list_rel
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
35828
diff
changeset
|
894 |
length ys = length zs \<Longrightarrow> length zs = length ws \<Longrightarrow> P xs ys zs ws \<Longrightarrow> |
11c6106d7787
Respectfullness and preservation of list_rel
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
35828
diff
changeset
|
895 |
P (x#xs) (y#ys) (z#zs) (w#ws)) \<Longrightarrow> P xs ys zs ws" |
11c6106d7787
Respectfullness and preservation of list_rel
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
35828
diff
changeset
|
896 |
proof (induct xs arbitrary: ys zs ws) |
11c6106d7787
Respectfullness and preservation of list_rel
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
35828
diff
changeset
|
897 |
case Nil then show ?case by simp |
11c6106d7787
Respectfullness and preservation of list_rel
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
35828
diff
changeset
|
898 |
next |
11c6106d7787
Respectfullness and preservation of list_rel
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
35828
diff
changeset
|
899 |
case (Cons x xs ys zs ws) then show ?case by ((cases ys, simp_all), (cases zs,simp_all)) (cases ws, simp_all) |
11c6106d7787
Respectfullness and preservation of list_rel
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
35828
diff
changeset
|
900 |
qed |
11c6106d7787
Respectfullness and preservation of list_rel
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents:
35828
diff
changeset
|
901 |
|
64963 | 902 |
lemma list_induct2': |
22493
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
krauss
parents:
22422
diff
changeset
|
903 |
"\<lbrakk> P [] []; |
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
krauss
parents:
22422
diff
changeset
|
904 |
\<And>x xs. P (x#xs) []; |
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
krauss
parents:
22422
diff
changeset
|
905 |
\<And>y ys. P [] (y#ys); |
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
krauss
parents:
22422
diff
changeset
|
906 |
\<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
|
907 |
\<Longrightarrow> P xs ys" |
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
krauss
parents:
22422
diff
changeset
|
908 |
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
|
909 |
|
55524
f41ef840f09d
folded 'list_all2' with the relator generated by 'datatype_new'
blanchet
parents:
55473
diff
changeset
|
910 |
lemma list_all2_iff: |
f41ef840f09d
folded 'list_all2' with the relator generated by 'datatype_new'
blanchet
parents:
55473
diff
changeset
|
911 |
"list_all2 P xs ys \<longleftrightarrow> length xs = length ys \<and> (\<forall>(x, y) \<in> set (zip xs ys). P x y)" |
f41ef840f09d
folded 'list_all2' with the relator generated by 'datatype_new'
blanchet
parents:
55473
diff
changeset
|
912 |
by (induct xs ys rule: list_induct2') auto |
f41ef840f09d
folded 'list_all2' with the relator generated by 'datatype_new'
blanchet
parents:
55473
diff
changeset
|
913 |
|
22143
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
914 |
lemma neq_if_length_neq: "length xs \<noteq> length ys \<Longrightarrow> (xs = ys) == False" |
24349 | 915 |
by (rule Eq_FalseI) auto |
24037 | 916 |
|
60758 | 917 |
|
61799 | 918 |
subsubsection \<open>\<open>@\<close> -- append\<close> |
13114 | 919 |
|
63662 | 920 |
global_interpretation append: monoid append Nil |
921 |
proof |
|
922 |
fix xs ys zs :: "'a list" |
|
923 |
show "(xs @ ys) @ zs = xs @ (ys @ zs)" |
|
924 |
by (induct xs) simp_all |
|
925 |
show "xs @ [] = xs" |
|
926 |
by (induct xs) simp_all |
|
927 |
qed simp |
|
928 |
||
13142 | 929 |
lemma append_assoc [simp]: "(xs @ ys) @ zs = xs @ (ys @ zs)" |
63662 | 930 |
by (fact append.assoc) |
931 |
||
932 |
lemma append_Nil2: "xs @ [] = xs" |
|
933 |
by (fact append.right_neutral) |
|
3507 | 934 |
|
13142 | 935 |
lemma append_is_Nil_conv [iff]: "(xs @ ys = []) = (xs = [] \<and> ys = [])" |
13145 | 936 |
by (induct xs) auto |
13114 | 937 |
|
13142 | 938 |
lemma Nil_is_append_conv [iff]: "([] = xs @ ys) = (xs = [] \<and> ys = [])" |
13145 | 939 |
by (induct xs) auto |
13114 | 940 |
|
13142 | 941 |
lemma append_self_conv [iff]: "(xs @ ys = xs) = (ys = [])" |
13145 | 942 |
by (induct xs) auto |
13114 | 943 |
|
13142 | 944 |
lemma self_append_conv [iff]: "(xs = xs @ ys) = (ys = [])" |
13145 | 945 |
by (induct xs) auto |
13114 | 946 |
|
54147
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
blanchet
parents:
53954
diff
changeset
|
947 |
lemma append_eq_append_conv [simp]: |
58807 | 948 |
"length xs = length ys \<or> length us = length vs |
71585 | 949 |
\<Longrightarrow> (xs@us = ys@vs) = (xs=ys \<and> us=vs)" |
68709 | 950 |
by (induct xs arbitrary: ys; case_tac ys; force) |
13142 | 951 |
|
24526 | 952 |
lemma append_eq_append_conv2: "(xs @ ys = zs @ ts) = |
67091 | 953 |
(\<exists>us. xs = zs @ us \<and> us @ ys = ts \<or> xs @ us = zs \<and> ys = us @ ts)" |
68709 | 954 |
proof (induct xs arbitrary: ys zs ts) |
955 |
case (Cons x xs) |
|
956 |
then show ?case |
|
69850 | 957 |
by (cases zs) auto |
68709 | 958 |
qed fastforce |
14495 | 959 |
|
34910
b23bd3ee4813
same_append_eq / append_same_eq are now used for simplifying induction rules.
berghofe
parents:
34064
diff
changeset
|
960 |
lemma same_append_eq [iff, induct_simp]: "(xs @ ys = xs @ zs) = (ys = zs)" |
13145 | 961 |
by simp |
13142 | 962 |
|
963 |
lemma append1_eq_conv [iff]: "(xs @ [x] = ys @ [y]) = (xs = ys \<and> x = y)" |
|
13145 | 964 |
by simp |
13114 | 965 |
|
34910
b23bd3ee4813
same_append_eq / append_same_eq are now used for simplifying induction rules.
berghofe
parents:
34064
diff
changeset
|
966 |
lemma append_same_eq [iff, induct_simp]: "(ys @ xs = zs @ xs) = (ys = zs)" |
13145 | 967 |
by simp |
13114 | 968 |
|
13142 | 969 |
lemma append_self_conv2 [iff]: "(xs @ ys = ys) = (xs = [])" |
13145 | 970 |
using append_same_eq [of _ _ "[]"] by auto |
3507 | 971 |
|
13142 | 972 |
lemma self_append_conv2 [iff]: "(ys = xs @ ys) = (xs = [])" |
13145 | 973 |
using append_same_eq [of "[]"] by auto |
13114 | 974 |
|
71585 | 975 |
lemma hd_Cons_tl: "xs \<noteq> [] \<Longrightarrow> hd xs # tl xs = xs" |
63662 | 976 |
by (fact list.collapse) |
13114 | 977 |
|
13142 | 978 |
lemma hd_append: "hd (xs @ ys) = (if xs = [] then hd ys else hd xs)" |
13145 | 979 |
by (induct xs) auto |
13114 | 980 |
|
71585 | 981 |
lemma hd_append2 [simp]: "xs \<noteq> [] \<Longrightarrow> hd (xs @ ys) = hd xs" |
13145 | 982 |
by (simp add: hd_append split: list.split) |
13114 | 983 |
|
67091 | 984 |
lemma tl_append: "tl (xs @ ys) = (case xs of [] \<Rightarrow> tl ys | z#zs \<Rightarrow> zs @ ys)" |
13145 | 985 |
by (simp split: list.split) |
13114 | 986 |
|
71585 | 987 |
lemma tl_append2 [simp]: "xs \<noteq> [] \<Longrightarrow> tl (xs @ ys) = tl xs @ ys" |
13145 | 988 |
by (simp add: tl_append split: list.split) |
13114 | 989 |
|
990 |
||
14300 | 991 |
lemma Cons_eq_append_conv: "x#xs = ys@zs = |
67091 | 992 |
(ys = [] \<and> x#xs = zs \<or> (\<exists>ys'. x#ys' = ys \<and> xs = ys'@zs))" |
14300 | 993 |
by(cases ys) auto |
994 |
||
15281 | 995 |
lemma append_eq_Cons_conv: "(ys@zs = x#xs) = |
67091 | 996 |
(ys = [] \<and> zs = x#xs \<or> (\<exists>ys'. ys = x#ys' \<and> ys'@zs = xs))" |
15281 | 997 |
by(cases ys) auto |
998 |
||
63173 | 999 |
lemma longest_common_prefix: |
1000 |
"\<exists>ps xs' ys'. xs = ps @ xs' \<and> ys = ps @ ys' |
|
1001 |
\<and> (xs' = [] \<or> ys' = [] \<or> hd xs' \<noteq> hd ys')" |
|
1002 |
by (induct xs ys rule: list_induct2') |
|
1003 |
(blast, blast, blast, |
|
1004 |
metis (no_types, hide_lams) append_Cons append_Nil list.sel(1)) |
|
14300 | 1005 |
|
61799 | 1006 |
text \<open>Trivial rules for solving \<open>@\<close>-equations automatically.\<close> |
13114 | 1007 |
|
71585 | 1008 |
lemma eq_Nil_appendI: "xs = ys \<Longrightarrow> xs = [] @ ys" |
1009 |
by simp |
|
1010 |
||
1011 |
lemma Cons_eq_appendI: "\<lbrakk>x # xs1 = ys; xs = xs1 @ zs\<rbrakk> \<Longrightarrow> x # xs = ys @ zs" |
|
1012 |
by auto |
|
1013 |
||
1014 |
lemma append_eq_appendI: "\<lbrakk>xs @ xs1 = zs; ys = xs1 @ us\<rbrakk> \<Longrightarrow> xs @ ys = zs @ us" |
|
1015 |
by auto |
|
13114 | 1016 |
|
1017 |
||
60758 | 1018 |
text \<open> |
13145 | 1019 |
Simplification procedure for all list equalities. |
61799 | 1020 |
Currently only tries to rearrange \<open>@\<close> to see if |
13145 | 1021 |
- both lists end in a singleton list, |
1022 |
- or both lists end in the same list. |
|
60758 | 1023 |
\<close> |
1024 |
||
1025 |
simproc_setup list_eq ("(xs::'a list) = ys") = \<open> |
|
13462 | 1026 |
let |
69593 | 1027 |
fun last (cons as Const (\<^const_name>\<open>Cons\<close>, _) $ _ $ xs) = |
1028 |
(case xs of Const (\<^const_name>\<open>Nil\<close>, _) => cons | _ => last xs) |
|
1029 |
| last (Const(\<^const_name>\<open>append\<close>,_) $ _ $ ys) = last ys |
|
43594 | 1030 |
| last t = t; |
64963 | 1031 |
|
69593 | 1032 |
fun list1 (Const(\<^const_name>\<open>Cons\<close>,_) $ _ $ Const(\<^const_name>\<open>Nil\<close>,_)) = true |
43594 | 1033 |
| list1 _ = false; |
64963 | 1034 |
|
69593 | 1035 |
fun butlast ((cons as Const(\<^const_name>\<open>Cons\<close>,_) $ x) $ xs) = |
1036 |
(case xs of Const (\<^const_name>\<open>Nil\<close>, _) => xs | _ => cons $ butlast xs) |
|
1037 |
| butlast ((app as Const (\<^const_name>\<open>append\<close>, _) $ xs) $ ys) = app $ butlast ys |
|
1038 |
| butlast xs = Const(\<^const_name>\<open>Nil\<close>, fastype_of xs); |
|
64963 | 1039 |
|
43594 | 1040 |
val rearr_ss = |
69593 | 1041 |
simpset_of (put_simpset HOL_basic_ss \<^context> |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51678
diff
changeset
|
1042 |
addsimps [@{thm append_assoc}, @{thm append_Nil}, @{thm append_Cons}]); |
64963 | 1043 |
|
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51678
diff
changeset
|
1044 |
fun list_eq ctxt (F as (eq as Const(_,eqT)) $ lhs $ rhs) = |
13462 | 1045 |
let |
43594 | 1046 |
val lastl = last lhs and lastr = last rhs; |
1047 |
fun rearr conv = |
|
1048 |
let |
|
1049 |
val lhs1 = butlast lhs and rhs1 = butlast rhs; |
|
1050 |
val Type(_,listT::_) = eqT |
|
1051 |
val appT = [listT,listT] ---> listT |
|
69593 | 1052 |
val app = Const(\<^const_name>\<open>append\<close>,appT) |
43594 | 1053 |
val F2 = eq $ (app$lhs1$lastl) $ (app$rhs1$lastr) |
1054 |
val eq = HOLogic.mk_Trueprop (HOLogic.mk_eq (F,F2)); |
|
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51678
diff
changeset
|
1055 |
val thm = Goal.prove ctxt [] [] eq |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
51678
diff
changeset
|
1056 |
(K (simp_tac (put_simpset rearr_ss ctxt) 1)); |
43594 | 1057 |
in SOME ((conv RS (thm RS trans)) RS eq_reflection) end; |
1058 |
in |
|
1059 |
if list1 lastl andalso list1 lastr then rearr @{thm append1_eq_conv} |
|
1060 |
else if lastl aconv lastr then rearr @{thm append_same_eq} |
|
1061 |
else NONE |
|
1062 |
end; |
|
69215 | 1063 |
in fn _ => fn ctxt => fn ct => list_eq ctxt (Thm.term_of ct) end |
60758 | 1064 |
\<close> |
1065 |
||
1066 |
||
69593 | 1067 |
subsubsection \<open>\<^const>\<open>map\<close>\<close> |
13114 | 1068 |
|
58807 | 1069 |
lemma hd_map: "xs \<noteq> [] \<Longrightarrow> hd (map f xs) = f (hd xs)" |
1070 |
by (cases xs) simp_all |
|
1071 |
||
1072 |
lemma map_tl: "map f (tl xs) = tl (map f xs)" |
|
1073 |
by (cases xs) simp_all |
|
40210
aee7ef725330
sorting: avoid _key suffix if lemma applies both to simple and generalized variant; generalized insort_insert to insort_insert_key; additional lemmas
haftmann
parents:
40195
diff
changeset
|
1074 |
|
71585 | 1075 |
lemma map_ext: "(\<And>x. x \<in> set xs \<longrightarrow> f x = g x) \<Longrightarrow> map f xs = map g xs" |
13145 | 1076 |
by (induct xs) simp_all |
13114 | 1077 |
|
13142 | 1078 |
lemma map_ident [simp]: "map (\<lambda>x. x) = (\<lambda>xs. xs)" |
13145 | 1079 |
by (rule ext, induct_tac xs) auto |
13114 | 1080 |
|
13142 | 1081 |
lemma map_append [simp]: "map f (xs @ ys) = map f xs @ map f ys" |
13145 | 1082 |
by (induct xs) auto |
13114 | 1083 |
|
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
|
1084 |
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
|
1085 |
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
|
1086 |
|
67091 | 1087 |
lemma map_comp_map[simp]: "((map f) \<circ> (map g)) = map(f \<circ> g)" |
58807 | 1088 |
by (rule ext) simp |
35208 | 1089 |
|
13142 | 1090 |
lemma rev_map: "rev (map f xs) = map f (rev xs)" |
13145 | 1091 |
by (induct xs) auto |
13114 | 1092 |
|
67613 | 1093 |
lemma map_eq_conv[simp]: "(map f xs = map g xs) = (\<forall>x \<in> set xs. f x = g x)" |
13737 | 1094 |
by (induct xs) auto |
1095 |
||
44013
5cfc1c36ae97
moved recdef package to HOL/Library/Old_Recdef.thy
krauss
parents:
43594
diff
changeset
|
1096 |
lemma map_cong [fundef_cong]: |
40122
1d8ad2ff3e01
dropped (almost) redundant distinct.induct rule; distinct_simps again named distinct.simps
haftmann
parents:
40077
diff
changeset
|
1097 |
"xs = ys \<Longrightarrow> (\<And>x. x \<in> set ys \<Longrightarrow> f x = g x) \<Longrightarrow> map f xs = map g ys" |
58807 | 1098 |
by simp |
13114 | 1099 |
|
13142 | 1100 |
lemma map_is_Nil_conv [iff]: "(map f xs = []) = (xs = [])" |
13145 | 1101 |
by (cases xs) auto |
13114 | 1102 |
|
13142 | 1103 |
lemma Nil_is_map_conv [iff]: "([] = map f xs) = (xs = [])" |
13145 | 1104 |
by (cases xs) auto |
13114 | 1105 |
|
18447 | 1106 |
lemma map_eq_Cons_conv: |
58807 | 1107 |
"(map f xs = y#ys) = (\<exists>z zs. xs = z#zs \<and> f z = y \<and> map f zs = ys)" |
13145 | 1108 |
by (cases xs) auto |
13114 | 1109 |
|
18447 | 1110 |
lemma Cons_eq_map_conv: |
58807 | 1111 |
"(x#xs = map f ys) = (\<exists>z zs. ys = z#zs \<and> x = f z \<and> xs = map f zs)" |
14025 | 1112 |
by (cases ys) auto |
1113 |
||
18447 | 1114 |
lemmas map_eq_Cons_D = map_eq_Cons_conv [THEN iffD1] |
1115 |
lemmas Cons_eq_map_D = Cons_eq_map_conv [THEN iffD1] |
|
1116 |
declare map_eq_Cons_D [dest!] Cons_eq_map_D [dest!] |
|
1117 |
||
14111 | 1118 |
lemma ex_map_conv: |
67091 | 1119 |
"(\<exists>xs. ys = map f xs) = (\<forall>y \<in> set ys. \<exists>x. y = f x)" |
18447 | 1120 |
by(induct ys, auto simp add: Cons_eq_map_conv) |
14111 | 1121 |
|
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1122 |
lemma map_eq_imp_length_eq: |
35510 | 1123 |
assumes "map f xs = map g ys" |
26734 | 1124 |
shows "length xs = length ys" |
53374
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents:
53017
diff
changeset
|
1125 |
using assms |
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents:
53017
diff
changeset
|
1126 |
proof (induct ys arbitrary: xs) |
26734 | 1127 |
case Nil then show ?case by simp |
1128 |
next |
|
1129 |
case (Cons y ys) then obtain z zs where xs: "xs = z # zs" by auto |
|
35510 | 1130 |
from Cons xs have "map f zs = map g ys" by simp |
53374
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents:
53017
diff
changeset
|
1131 |
with Cons have "length zs = length ys" by blast |
26734 | 1132 |
with xs show ?case by simp |
1133 |
qed |
|
64963 | 1134 |
|
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1135 |
lemma map_inj_on: |
68709 | 1136 |
assumes map: "map f xs = map f ys" and inj: "inj_on f (set xs Un set ys)" |
1137 |
shows "xs = ys" |
|
1138 |
using map_eq_imp_length_eq [OF map] assms |
|
1139 |
proof (induct rule: list_induct2) |
|
1140 |
case (Cons x xs y ys) |
|
1141 |
then show ?case |
|
1142 |
by (auto intro: sym) |
|
1143 |
qed auto |
|
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1144 |
|
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1145 |
lemma inj_on_map_eq_map: |
58807 | 1146 |
"inj_on f (set xs Un set ys) \<Longrightarrow> (map f xs = map f ys) = (xs = ys)" |
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1147 |
by(blast dest:map_inj_on) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1148 |
|
13114 | 1149 |
lemma map_injective: |
71585 | 1150 |
"map f xs = map f ys \<Longrightarrow> inj f \<Longrightarrow> xs = ys" |
24526 | 1151 |
by (induct ys arbitrary: xs) (auto dest!:injD) |
13114 | 1152 |
|
14339 | 1153 |
lemma inj_map_eq_map[simp]: "inj f \<Longrightarrow> (map f xs = map f ys) = (xs = ys)" |
1154 |
by(blast dest:map_injective) |
|
1155 |
||
71585 | 1156 |
lemma inj_mapI: "inj f \<Longrightarrow> inj (map f)" |
17589 | 1157 |
by (iprover dest: map_injective injD intro: inj_onI) |
13114 | 1158 |
|
71585 | 1159 |
lemma inj_mapD: "inj (map f) \<Longrightarrow> inj f" |
68709 | 1160 |
by (metis (no_types, hide_lams) injI list.inject list.simps(9) the_inv_f_f) |
13114 | 1161 |
|
14339 | 1162 |
lemma inj_map[iff]: "inj (map f) = inj f" |
13145 | 1163 |
by (blast dest: inj_mapD intro: inj_mapI) |
13114 | 1164 |
|
15303 | 1165 |
lemma inj_on_mapI: "inj_on f (\<Union>(set ` A)) \<Longrightarrow> inj_on (map f) A" |
68709 | 1166 |
by (blast intro:inj_onI dest:inj_onD map_inj_on) |
15303 | 1167 |
|
14343 | 1168 |
lemma map_idI: "(\<And>x. x \<in> set xs \<Longrightarrow> f x = x) \<Longrightarrow> map f xs = xs" |
1169 |
by (induct xs, auto) |
|
13114 | 1170 |
|
14402
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
1171 |
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
|
1172 |
by (induct xs) auto |
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
1173 |
|
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1174 |
lemma map_fst_zip[simp]: |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1175 |
"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
|
1176 |
by (induct rule:list_induct2, simp_all) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1177 |
|
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1178 |
lemma map_snd_zip[simp]: |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1179 |
"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
|
1180 |
by (induct rule:list_induct2, simp_all) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1181 |
|
68215 | 1182 |
lemma map_fst_zip_take: |
1183 |
"map fst (zip xs ys) = take (min (length xs) (length ys)) xs" |
|
1184 |
by (induct xs ys rule: list_induct2') simp_all |
|
1185 |
||
1186 |
lemma map_snd_zip_take: |
|
1187 |
"map snd (zip xs ys) = take (min (length xs) (length ys)) ys" |
|
1188 |
by (induct xs ys rule: list_induct2') simp_all |
|
1189 |
||
66853 | 1190 |
lemma map2_map_map: "map2 h (map f xs) (map g xs) = map (\<lambda>x. h (f x) (g x)) xs" |
1191 |
by (induction xs) (auto) |
|
1192 |
||
55467
a5c9002bc54d
renamed 'enriched_type' to more informative 'functor' (following the renaming of enriched type constructors to bounded natural functors)
blanchet
parents:
55466
diff
changeset
|
1193 |
functor map: map |
47122 | 1194 |
by (simp_all add: id_def) |
1195 |
||
49948
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
1196 |
declare map.id [simp] |
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
1197 |
|
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
1198 |
|
69593 | 1199 |
subsubsection \<open>\<^const>\<open>rev\<close>\<close> |
13114 | 1200 |
|
13142 | 1201 |
lemma rev_append [simp]: "rev (xs @ ys) = rev ys @ rev xs" |
13145 | 1202 |
by (induct xs) auto |
13114 | 1203 |
|
13142 | 1204 |
lemma rev_rev_ident [simp]: "rev (rev xs) = xs" |
13145 | 1205 |
by (induct xs) auto |
13114 | 1206 |
|
15870 | 1207 |
lemma rev_swap: "(rev xs = ys) = (xs = rev ys)" |
1208 |
by auto |
|
1209 |
||
13142 | 1210 |
lemma rev_is_Nil_conv [iff]: "(rev xs = []) = (xs = [])" |
13145 | 1211 |
by (induct xs) auto |
13114 | 1212 |
|
13142 | 1213 |
lemma Nil_is_rev_conv [iff]: "([] = rev xs) = (xs = [])" |
13145 | 1214 |
by (induct xs) auto |
13114 | 1215 |
|
15870 | 1216 |
lemma rev_singleton_conv [simp]: "(rev xs = [x]) = (xs = [x])" |
1217 |
by (cases xs) auto |
|
1218 |
||
1219 |
lemma singleton_rev_conv [simp]: "([x] = rev xs) = (xs = [x])" |
|
1220 |
by (cases xs) auto |
|
1221 |
||
54147
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
blanchet
parents:
53954
diff
changeset
|
1222 |
lemma rev_is_rev_conv [iff]: "(rev xs = rev ys) = (xs = ys)" |
69850 | 1223 |
proof (induct xs arbitrary: ys) |
1224 |
case Nil |
|
1225 |
then show ?case by force |
|
1226 |
next |
|
1227 |
case Cons |
|
1228 |
then show ?case by (cases ys) auto |
|
1229 |
qed |
|
13114 | 1230 |
|
15439 | 1231 |
lemma inj_on_rev[iff]: "inj_on rev A" |
1232 |
by(simp add:inj_on_def) |
|
1233 |
||
13366 | 1234 |
lemma rev_induct [case_names Nil snoc]: |
71585 | 1235 |
assumes "P []" and "\<And>x xs. P xs \<Longrightarrow> P (xs @ [x])" |
1236 |
shows "P xs" |
|
1237 |
proof - |
|
1238 |
have "P (rev (rev xs))" |
|
1239 |
by (rule_tac list = "rev xs" in list.induct, simp_all add: assms) |
|
1240 |
then show ?thesis by simp |
|
1241 |
qed |
|
13114 | 1242 |
|
13366 | 1243 |
lemma rev_exhaust [case_names Nil snoc]: |
71585 | 1244 |
"(xs = [] \<Longrightarrow> P) \<Longrightarrow>(\<And>ys y. xs = ys @ [y] \<Longrightarrow> P) \<Longrightarrow> P" |
13145 | 1245 |
by (induct xs rule: rev_induct) auto |
13114 | 1246 |
|
13366 | 1247 |
lemmas rev_cases = rev_exhaust |
1248 |
||
57577 | 1249 |
lemma rev_nonempty_induct [consumes 1, case_names single snoc]: |
1250 |
assumes "xs \<noteq> []" |
|
1251 |
and single: "\<And>x. P [x]" |
|
1252 |
and snoc': "\<And>x xs. xs \<noteq> [] \<Longrightarrow> P xs \<Longrightarrow> P (xs@[x])" |
|
1253 |
shows "P xs" |
|
60758 | 1254 |
using \<open>xs \<noteq> []\<close> proof (induct xs rule: rev_induct) |
57577 | 1255 |
case (snoc x xs) then show ?case |
1256 |
proof (cases xs) |
|
1257 |
case Nil thus ?thesis by (simp add: single) |
|
1258 |
next |
|
1259 |
case Cons with snoc show ?thesis by (fastforce intro!: snoc') |
|
1260 |
qed |
|
1261 |
qed simp |
|
1262 |
||
18423 | 1263 |
lemma rev_eq_Cons_iff[iff]: "(rev xs = y#ys) = (xs = rev ys @ [y])" |
1264 |
by(rule rev_cases[of xs]) auto |
|
1265 |
||
13114 | 1266 |
|
69593 | 1267 |
subsubsection \<open>\<^const>\<open>set\<close>\<close> |
13114 | 1268 |
|
67443
3abf6a722518
standardized towards new-style formal comments: isabelle update_comments;
wenzelm
parents:
67399
diff
changeset
|
1269 |
declare list.set[code_post] \<comment> \<open>pretty output\<close> |
57816
d8bbb97689d3
no need for 'set_simps' now that 'datatype_new' generates the desired 'set' property
blanchet
parents:
57599
diff
changeset
|
1270 |
|
13142 | 1271 |
lemma finite_set [iff]: "finite (set xs)" |
13145 | 1272 |
by (induct xs) auto |
13114 | 1273 |
|
13142 | 1274 |
lemma set_append [simp]: "set (xs @ ys) = (set xs \<union> set ys)" |
13145 | 1275 |
by (induct xs) auto |
13114 | 1276 |
|
67613 | 1277 |
lemma hd_in_set[simp]: "xs \<noteq> [] \<Longrightarrow> hd xs \<in> set xs" |
17830 | 1278 |
by(cases xs) auto |
14099 | 1279 |
|
13142 | 1280 |
lemma set_subset_Cons: "set xs \<subseteq> set (x # xs)" |
13145 | 1281 |
by auto |
13114 | 1282 |
|
64963 | 1283 |
lemma set_ConsD: "y \<in> set (x # xs) \<Longrightarrow> y=x \<or> y \<in> set xs" |
14099 | 1284 |
by auto |
1285 |
||
13142 | 1286 |
lemma set_empty [iff]: "(set xs = {}) = (xs = [])" |
13145 | 1287 |
by (induct xs) auto |
13114 | 1288 |
|
15245 | 1289 |
lemma set_empty2[iff]: "({} = set xs) = (xs = [])" |
1290 |
by(induct xs) auto |
|
1291 |
||
13142 | 1292 |
lemma set_rev [simp]: "set (rev xs) = set xs" |
13145 | 1293 |
by (induct xs) auto |
13114 | 1294 |
|
13142 | 1295 |
lemma set_map [simp]: "set (map f xs) = f`(set xs)" |
13145 | 1296 |
by (induct xs) auto |
13114 | 1297 |
|
67613 | 1298 |
lemma set_filter [simp]: "set (filter P xs) = {x. x \<in> set xs \<and> P x}" |
13145 | 1299 |
by (induct xs) auto |
13114 | 1300 |
|
32417 | 1301 |
lemma set_upt [simp]: "set[i..<j] = {i..<j}" |
41463
edbf0a86fb1c
adding simproc to rewrite list comprehensions to set comprehensions; adopting proofs
bulwahn
parents:
41372
diff
changeset
|
1302 |
by (induct j) auto |
13114 | 1303 |
|
13142 | 1304 |
|
67613 | 1305 |
lemma split_list: "x \<in> set xs \<Longrightarrow> \<exists>ys zs. xs = ys @ x # zs" |
18049 | 1306 |
proof (induct xs) |
26073 | 1307 |
case Nil thus ?case by simp |
1308 |
next |
|
1309 |
case Cons thus ?case by (auto intro: Cons_eq_appendI) |
|
1310 |
qed |
|
1311 |
||
26734 | 1312 |
lemma in_set_conv_decomp: "x \<in> set xs \<longleftrightarrow> (\<exists>ys zs. xs = ys @ x # zs)" |
1313 |
by (auto elim: split_list) |
|
26073 | 1314 |
|
67613 | 1315 |
lemma split_list_first: "x \<in> set xs \<Longrightarrow> \<exists>ys zs. xs = ys @ x # zs \<and> x \<notin> set ys" |
26073 | 1316 |
proof (induct xs) |
1317 |
case Nil thus ?case by simp |
|
18049 | 1318 |
next |
1319 |
case (Cons a xs) |
|
1320 |
show ?case |
|
1321 |
proof cases |
|
44890
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
nipkow
parents:
44635
diff
changeset
|
1322 |
assume "x = a" thus ?case using Cons by fastforce |
18049 | 1323 |
next |
44890
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
nipkow
parents:
44635
diff
changeset
|
1324 |
assume "x \<noteq> a" thus ?case using Cons by(fastforce intro!: Cons_eq_appendI) |
26073 | 1325 |
qed |
1326 |
qed |
|
1327 |
||
1328 |
lemma in_set_conv_decomp_first: |
|
67613 | 1329 |
"(x \<in> set xs) = (\<exists>ys zs. xs = ys @ x # zs \<and> x \<notin> set ys)" |
26734 | 1330 |
by (auto dest!: split_list_first) |
26073 | 1331 |
|
40122
1d8ad2ff3e01
dropped (almost) redundant distinct.induct rule; distinct_simps again named distinct.simps
haftmann
parents:
40077
diff
changeset
|
1332 |
lemma split_list_last: "x \<in> set xs \<Longrightarrow> \<exists>ys zs. xs = ys @ x # zs \<and> x \<notin> set zs" |
1d8ad2ff3e01
dropped (almost) redundant distinct.induct rule; distinct_simps again named distinct.simps
haftmann
parents:
40077
diff
changeset
|
1333 |
proof (induct xs rule: rev_induct) |
26073 | 1334 |
case Nil thus ?case by simp |
1335 |
next |
|
1336 |
case (snoc a xs) |
|
1337 |
show ?case |
|
1338 |
proof cases |
|
56085 | 1339 |
assume "x = a" thus ?case using snoc by (auto intro!: exI) |
26073 | 1340 |
next |
44890
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
nipkow
parents:
44635
diff
changeset
|
1341 |
assume "x \<noteq> a" thus ?case using snoc by fastforce |
18049 | 1342 |
qed |
1343 |
qed |
|
1344 |
||
26073 | 1345 |
lemma in_set_conv_decomp_last: |
67613 | 1346 |
"(x \<in> set xs) = (\<exists>ys zs. xs = ys @ x # zs \<and> x \<notin> set zs)" |
26734 | 1347 |
by (auto dest!: split_list_last) |
26073 | 1348 |
|
67091 | 1349 |
lemma split_list_prop: "\<exists>x \<in> set xs. P x \<Longrightarrow> \<exists>ys x zs. xs = ys @ x # zs \<and> P x" |
26073 | 1350 |
proof (induct xs) |
1351 |
case Nil thus ?case by simp |
|
1352 |
next |
|
1353 |
case Cons thus ?case |
|
1354 |
by(simp add:Bex_def)(metis append_Cons append.simps(1)) |
|
1355 |
qed |
|
1356 |
||
1357 |
lemma split_list_propE: |
|
26734 | 1358 |
assumes "\<exists>x \<in> set xs. P x" |
1359 |
obtains ys x zs where "xs = ys @ x # zs" and "P x" |
|
1360 |
using split_list_prop [OF assms] by blast |
|
26073 | 1361 |
|
1362 |
lemma split_list_first_prop: |
|
1363 |
"\<exists>x \<in> set xs. P x \<Longrightarrow> |
|
1364 |
\<exists>ys x zs. xs = ys@x#zs \<and> P x \<and> (\<forall>y \<in> set ys. \<not> P y)" |
|
26734 | 1365 |
proof (induct xs) |
26073 | 1366 |
case Nil thus ?case by simp |
1367 |
next |
|
1368 |
case (Cons x xs) |
|
1369 |
show ?case |
|
1370 |
proof cases |
|
1371 |
assume "P x" |
|
56085 | 1372 |
hence "x # xs = [] @ x # xs \<and> P x \<and> (\<forall>y\<in>set []. \<not> P y)" by simp |
1373 |
thus ?thesis by fast |
|
26073 | 1374 |
next |
1375 |
assume "\<not> P x" |
|
1376 |
hence "\<exists>x\<in>set xs. P x" using Cons(2) by simp |
|
60758 | 1377 |
thus ?thesis using \<open>\<not> P x\<close> Cons(1) by (metis append_Cons set_ConsD) |
26073 | 1378 |
qed |
1379 |
qed |
|
1380 |
||
1381 |
lemma split_list_first_propE: |
|
26734 | 1382 |
assumes "\<exists>x \<in> set xs. P x" |
1383 |
obtains ys x zs where "xs = ys @ x # zs" and "P x" and "\<forall>y \<in> set ys. \<not> P y" |
|
1384 |
using split_list_first_prop [OF assms] by blast |
|
26073 | 1385 |
|
1386 |
lemma split_list_first_prop_iff: |
|
1387 |
"(\<exists>x \<in> set xs. P x) \<longleftrightarrow> |
|
1388 |
(\<exists>ys x zs. xs = ys@x#zs \<and> P x \<and> (\<forall>y \<in> set ys. \<not> P y))" |
|
26734 | 1389 |
by (rule, erule split_list_first_prop) auto |
26073 | 1390 |
|
1391 |
lemma split_list_last_prop: |
|
1392 |
"\<exists>x \<in> set xs. P x \<Longrightarrow> |
|
1393 |
\<exists>ys x zs. xs = ys@x#zs \<and> P x \<and> (\<forall>z \<in> set zs. \<not> P z)" |
|
1394 |
proof(induct xs rule:rev_induct) |
|
1395 |
case Nil thus ?case by simp |
|
1396 |
next |
|
1397 |
case (snoc x xs) |
|
1398 |
show ?case |
|
1399 |
proof cases |
|
56085 | 1400 |
assume "P x" thus ?thesis by (auto intro!: exI) |
26073 | 1401 |
next |
1402 |
assume "\<not> P x" |
|
1403 |
hence "\<exists>x\<in>set xs. P x" using snoc(2) by simp |
|
60758 | 1404 |
thus ?thesis using \<open>\<not> P x\<close> snoc(1) by fastforce |
26073 | 1405 |
qed |
1406 |
qed |
|
1407 |
||
1408 |
lemma split_list_last_propE: |
|
26734 | 1409 |
assumes "\<exists>x \<in> set xs. P x" |
1410 |
obtains ys x zs where "xs = ys @ x # zs" and "P x" and "\<forall>z \<in> set zs. \<not> P z" |
|
1411 |
using split_list_last_prop [OF assms] by blast |
|
26073 | 1412 |
|
1413 |
lemma split_list_last_prop_iff: |
|
1414 |
"(\<exists>x \<in> set xs. P x) \<longleftrightarrow> |
|
1415 |
(\<exists>ys x zs. xs = ys@x#zs \<and> P x \<and> (\<forall>z \<in> set zs. \<not> P z))" |
|
56085 | 1416 |
by rule (erule split_list_last_prop, auto) |
1417 |
||
26073 | 1418 |
|
67091 | 1419 |
lemma finite_list: "finite A \<Longrightarrow> \<exists>xs. set xs = A" |
57816
d8bbb97689d3
no need for 'set_simps' now that 'datatype_new' generates the desired 'set' property
blanchet
parents:
57599
diff
changeset
|
1420 |
by (erule finite_induct) (auto simp add: list.set(2)[symmetric] simp del: list.set(2)) |
13508 | 1421 |
|
14388 | 1422 |
lemma card_length: "card (set xs) \<le> length xs" |
1423 |
by (induct xs) (auto simp add: card_insert_if) |
|
13114 | 1424 |
|
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1425 |
lemma set_minus_filter_out: |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1426 |
"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
|
1427 |
by (induct xs) auto |
15168 | 1428 |
|
66257 | 1429 |
lemma append_Cons_eq_iff: |
1430 |
"\<lbrakk> x \<notin> set xs; x \<notin> set ys \<rbrakk> \<Longrightarrow> |
|
1431 |
xs @ x # ys = xs' @ x # ys' \<longleftrightarrow> (xs = xs' \<and> ys = ys')" |
|
1432 |
by(auto simp: append_eq_Cons_conv Cons_eq_append_conv append_eq_append_conv2) |
|
1433 |
||
35115 | 1434 |
|
73307 | 1435 |
subsubsection \<open>\<^const>\<open>concat\<close>\<close> |
1436 |
||
1437 |
lemma concat_append [simp]: "concat (xs @ ys) = concat xs @ concat ys" |
|
1438 |
by (induct xs) auto |
|
1439 |
||
1440 |
lemma concat_eq_Nil_conv [simp]: "(concat xss = []) = (\<forall>xs \<in> set xss. xs = [])" |
|
1441 |
by (induct xss) auto |
|
1442 |
||
1443 |
lemma Nil_eq_concat_conv [simp]: "([] = concat xss) = (\<forall>xs \<in> set xss. xs = [])" |
|
1444 |
by (induct xss) auto |
|
1445 |
||
1446 |
lemma set_concat [simp]: "set (concat xs) = (\<Union>x\<in>set xs. set x)" |
|
1447 |
by (induct xs) auto |
|
1448 |
||
1449 |
lemma concat_map_singleton[simp]: "concat(map (%x. [f x]) xs) = map f xs" |
|
1450 |
by (induct xs) auto |
|
1451 |
||
1452 |
lemma map_concat: "map f (concat xs) = concat (map (map f) xs)" |
|
1453 |
by (induct xs) auto |
|
1454 |
||
1455 |
lemma rev_concat: "rev (concat xs) = concat (map rev (rev xs))" |
|
1456 |
by (induct xs) auto |
|
1457 |
||
1458 |
lemma length_concat_rev[simp]: "length (concat (rev xs)) = length (concat xs)" |
|
1459 |
by (induction xs) auto |
|
1460 |
||
1461 |
lemma concat_eq_concat_iff: "\<forall>(x, y) \<in> set (zip xs ys). length x = length y \<Longrightarrow> length xs = length ys \<Longrightarrow> (concat xs = concat ys) = (xs = ys)" |
|
1462 |
proof (induct xs arbitrary: ys) |
|
1463 |
case (Cons x xs ys) |
|
1464 |
thus ?case by (cases ys) auto |
|
1465 |
qed (auto) |
|
1466 |
||
1467 |
lemma concat_injective: "concat xs = concat ys \<Longrightarrow> length xs = length ys \<Longrightarrow> \<forall>(x, y) \<in> set (zip xs ys). length x = length y \<Longrightarrow> xs = ys" |
|
1468 |
by (simp add: concat_eq_concat_iff) |
|
1469 |
||
1470 |
lemma concat_eq_appendD: |
|
1471 |
assumes "concat xss = ys @ zs" "xss \<noteq> []" |
|
1472 |
shows "\<exists>xss1 xs xs' xss2. xss = xss1 @ (xs @ xs') # xss2 \<and> ys = concat xss1 @ xs \<and> zs = xs' @ concat xss2" |
|
1473 |
using assms |
|
1474 |
proof(induction xss arbitrary: ys) |
|
1475 |
case (Cons xs xss) |
|
1476 |
from Cons.prems consider |
|
1477 |
us where "xs @ us = ys" "concat xss = us @ zs" | |
|
1478 |
us where "xs = ys @ us" "us @ concat xss = zs" |
|
1479 |
by(auto simp add: append_eq_append_conv2) |
|
1480 |
then show ?case |
|
1481 |
proof cases |
|
1482 |
case 1 |
|
1483 |
then show ?thesis using Cons.IH[OF 1(2)] |
|
1484 |
by(cases xss)(auto intro: exI[where x="[]"], metis append.assoc append_Cons concat.simps(2)) |
|
1485 |
qed(auto intro: exI[where x="[]"]) |
|
1486 |
qed simp |
|
1487 |
||
1488 |
lemma concat_eq_append_conv: |
|
1489 |
"concat xss = ys @ zs \<longleftrightarrow> |
|
1490 |
(if xss = [] then ys = [] \<and> zs = [] |
|
1491 |
else \<exists>xss1 xs xs' xss2. xss = xss1 @ (xs @ xs') # xss2 \<and> ys = concat xss1 @ xs \<and> zs = xs' @ concat xss2)" |
|
1492 |
by(auto dest: concat_eq_appendD) |
|
1493 |
||
1494 |
lemma hd_concat: "\<lbrakk>xs \<noteq> []; hd xs \<noteq> []\<rbrakk> \<Longrightarrow> hd (concat xs) = hd (hd xs)" |
|
1495 |
by (metis concat.simps(2) hd_Cons_tl hd_append2) |
|
1496 |
||
1497 |
||
1498 |
simproc_setup list_neq ("(xs::'a list) = ys") = \<open> |
|
1499 |
(* |
|
1500 |
Reduces xs=ys to False if xs and ys cannot be of the same length. |
|
1501 |
This is the case if the atomic sublists of one are a submultiset |
|
1502 |
of those of the other list and there are fewer Cons's in one than the other. |
|
1503 |
*) |
|
1504 |
||
1505 |
let |
|
1506 |
||
1507 |
fun len (Const(\<^const_name>\<open>Nil\<close>,_)) acc = acc |
|
1508 |
| len (Const(\<^const_name>\<open>Cons\<close>,_) $ _ $ xs) (ts,n) = len xs (ts,n+1) |
|
1509 |
| len (Const(\<^const_name>\<open>append\<close>,_) $ xs $ ys) acc = len xs (len ys acc) |
|
1510 |
| len (Const(\<^const_name>\<open>rev\<close>,_) $ xs) acc = len xs acc |
|
1511 |
| len (Const(\<^const_name>\<open>map\<close>,_) $ _ $ xs) acc = len xs acc |
|
1512 |
| len (Const(\<^const_name>\<open>concat\<close>,T) $ (Const(\<^const_name>\<open>rev\<close>,_) $ xss)) acc |
|
1513 |
= len (Const(\<^const_name>\<open>concat\<close>,T) $ xss) acc |
|
1514 |
| len t (ts,n) = (t::ts,n); |
|
1515 |
||
1516 |
val ss = simpset_of \<^context>; |
|
1517 |
||
1518 |
fun list_neq ctxt ct = |
|
1519 |
let |
|
1520 |
val (Const(_,eqT) $ lhs $ rhs) = Thm.term_of ct; |
|
1521 |
val (ls,m) = len lhs ([],0) and (rs,n) = len rhs ([],0); |
|
1522 |
fun prove_neq() = |
|
1523 |
let |
|
1524 |
val Type(_,listT::_) = eqT; |
|
1525 |
val size = HOLogic.size_const listT; |
|
1526 |
val eq_len = HOLogic.mk_eq (size $ lhs, size $ rhs); |
|
1527 |
val neq_len = HOLogic.mk_Trueprop (HOLogic.Not $ eq_len); |
|
1528 |
val thm = Goal.prove ctxt [] [] neq_len |
|
1529 |
(K (simp_tac (put_simpset ss ctxt) 1)); |
|
1530 |
in SOME (thm RS @{thm neq_if_length_neq}) end |
|
1531 |
in |
|
1532 |
if m < n andalso submultiset (op aconv) (ls,rs) orelse |
|
1533 |
n < m andalso submultiset (op aconv) (rs,ls) |
|
1534 |
then prove_neq() else NONE |
|
1535 |
end; |
|
1536 |
in K list_neq end |
|
1537 |
\<close> |
|
1538 |
||
69593 | 1539 |
subsubsection \<open>\<^const>\<open>filter\<close>\<close> |
13114 | 1540 |
|
13142 | 1541 |
lemma filter_append [simp]: "filter P (xs @ ys) = filter P xs @ filter P ys" |
13145 | 1542 |
by (induct xs) auto |
13114 | 1543 |
|
15305 | 1544 |
lemma rev_filter: "rev (filter P xs) = filter P (rev xs)" |
1545 |
by (induct xs) simp_all |
|
1546 |
||
13142 | 1547 |
lemma filter_filter [simp]: "filter P (filter Q xs) = filter (\<lambda>x. Q x \<and> P x) xs" |
13145 | 1548 |
by (induct xs) auto |
13114 | 1549 |
|
73307 | 1550 |
lemma filter_concat: "filter p (concat xs) = concat (map (filter p) xs)" |
1551 |
by (induct xs) auto |
|
1552 |
||
16998 | 1553 |
lemma length_filter_le [simp]: "length (filter P xs) \<le> length xs" |
1554 |
by (induct xs) (auto simp add: le_SucI) |
|
1555 |
||
18423 | 1556 |
lemma sum_length_filter_compl: |
67091 | 1557 |
"length(filter P xs) + length(filter (\<lambda>x. \<not>P x) xs) = length xs" |
18423 | 1558 |
by(induct xs) simp_all |
1559 |
||
71585 | 1560 |
lemma filter_True [simp]: "\<forall>x \<in> set xs. P x \<Longrightarrow> filter P xs = xs" |
13145 | 1561 |
by (induct xs) auto |
13114 | 1562 |
|
71585 | 1563 |
lemma filter_False [simp]: "\<forall>x \<in> set xs. \<not> P x \<Longrightarrow> filter P xs = []" |
13145 | 1564 |
by (induct xs) auto |
13114 | 1565 |
|
64963 | 1566 |
lemma filter_empty_conv: "(filter P xs = []) = (\<forall>x\<in>set xs. \<not> P x)" |
24349 | 1567 |
by (induct xs) simp_all |
16998 | 1568 |
|
1569 |
lemma filter_id_conv: "(filter P xs = xs) = (\<forall>x\<in>set xs. P x)" |
|
68709 | 1570 |
proof (induct xs) |
1571 |
case (Cons x xs) |
|
1572 |
then show ?case |
|
1573 |
using length_filter_le |
|
1574 |
by (simp add: impossible_Cons) |
|
1575 |
qed auto |
|
13114 | 1576 |
|
67091 | 1577 |
lemma filter_map: "filter P (map f xs) = map f (filter (P \<circ> f) xs)" |
16965 | 1578 |
by (induct xs) simp_all |
1579 |
||
1580 |
lemma length_filter_map[simp]: |
|
67091 | 1581 |
"length (filter P (map f xs)) = length(filter (P \<circ> f) xs)" |
16965 | 1582 |
by (simp add:filter_map) |
1583 |
||
13142 | 1584 |
lemma filter_is_subset [simp]: "set (filter P xs) \<le> set xs" |
13145 | 1585 |
by auto |
13114 | 1586 |
|
15246 | 1587 |
lemma length_filter_less: |
67091 | 1588 |
"\<lbrakk> x \<in> set xs; \<not> P x \<rbrakk> \<Longrightarrow> length(filter P xs) < length xs" |
15246 | 1589 |
proof (induct xs) |
1590 |
case Nil thus ?case by simp |
|
1591 |
next |
|
1592 |
case (Cons x xs) thus ?case |
|
68719 | 1593 |
using Suc_le_eq by fastforce |
15246 | 1594 |
qed |
13114 | 1595 |
|
15281 | 1596 |
lemma length_filter_conv_card: |
67091 | 1597 |
"length(filter p xs) = card{i. i < length xs \<and> p(xs!i)}" |
15281 | 1598 |
proof (induct xs) |
1599 |
case Nil thus ?case by simp |
|
1600 |
next |
|
1601 |
case (Cons x xs) |
|
67091 | 1602 |
let ?S = "{i. i < length xs \<and> p(xs!i)}" |
15281 | 1603 |
have fin: "finite ?S" by(fast intro: bounded_nat_set_is_finite) |
1604 |
show ?case (is "?l = card ?S'") |
|
1605 |
proof (cases) |
|
1606 |
assume "p x" |
|
1607 |
hence eq: "?S' = insert 0 (Suc ` ?S)" |
|
25162 | 1608 |
by(auto simp: image_def split:nat.split dest:gr0_implies_Suc) |
15281 | 1609 |
have "length (filter p (x # xs)) = Suc(card ?S)" |
60758 | 1610 |
using Cons \<open>p x\<close> by simp |
15281 | 1611 |
also have "\<dots> = Suc(card(Suc ` ?S))" using fin |
44921 | 1612 |
by (simp add: card_image) |
15281 | 1613 |
also have "\<dots> = card ?S'" using eq fin |
71393
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70911
diff
changeset
|
1614 |
by (simp add:card_insert_if) |
15281 | 1615 |
finally show ?thesis . |
1616 |
next |
|
1617 |
assume "\<not> p x" |
|
1618 |
hence eq: "?S' = Suc ` ?S" |
|
25162 | 1619 |
by(auto simp add: image_def split:nat.split elim:lessE) |
15281 | 1620 |
have "length (filter p (x # xs)) = card ?S" |
60758 | 1621 |
using Cons \<open>\<not> p x\<close> by simp |
15281 | 1622 |
also have "\<dots> = card(Suc ` ?S)" using fin |
44921 | 1623 |
by (simp add: card_image) |
15281 | 1624 |
also have "\<dots> = card ?S'" using eq fin |
1625 |
by (simp add:card_insert_if) |
|
1626 |
finally show ?thesis . |
|
1627 |
qed |
|
1628 |
qed |
|
1629 |
||
17629 | 1630 |
lemma Cons_eq_filterD: |
58807 | 1631 |
"x#xs = filter P ys \<Longrightarrow> |
17629 | 1632 |
\<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 | 1633 |
(is "_ \<Longrightarrow> \<exists>us vs. ?P ys us vs") |
17629 | 1634 |
proof(induct ys) |
1635 |
case Nil thus ?case by simp |
|
1636 |
next |
|
1637 |
case (Cons y ys) |
|
1638 |
show ?case (is "\<exists>x. ?Q x") |
|
1639 |
proof cases |
|
1640 |
assume Py: "P y" |
|
1641 |
show ?thesis |
|
1642 |
proof cases |
|
25221
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
1643 |
assume "x = y" |
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
1644 |
with Py Cons.prems have "?Q []" by simp |
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
1645 |
then show ?thesis .. |
17629 | 1646 |
next |
25221
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
1647 |
assume "x \<noteq> y" |
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
1648 |
with Py Cons.prems show ?thesis by simp |
17629 | 1649 |
qed |
1650 |
next |
|
25221
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
1651 |
assume "\<not> P y" |
44890
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
nipkow
parents:
44635
diff
changeset
|
1652 |
with Cons obtain us vs where "?P (y#ys) (y#us) vs" by fastforce |
25221
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
1653 |
then have "?Q (y#us)" by simp |
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
1654 |
then show ?thesis .. |
17629 | 1655 |
qed |
1656 |
qed |
|
1657 |
||
1658 |
lemma filter_eq_ConsD: |
|
58807 | 1659 |
"filter P ys = x#xs \<Longrightarrow> |
17629 | 1660 |
\<exists>us vs. ys = us @ x # vs \<and> (\<forall>u\<in>set us. \<not> P u) \<and> P x \<and> xs = filter P vs" |
68719 | 1661 |
by(rule Cons_eq_filterD) simp |
17629 | 1662 |
|
1663 |
lemma filter_eq_Cons_iff: |
|
58807 | 1664 |
"(filter P ys = x#xs) = |
17629 | 1665 |
(\<exists>us vs. ys = us @ x # vs \<and> (\<forall>u\<in>set us. \<not> P u) \<and> P x \<and> xs = filter P vs)" |
68719 | 1666 |
by(auto dest:filter_eq_ConsD) |
17629 | 1667 |
|
1668 |
lemma Cons_eq_filter_iff: |
|
58807 | 1669 |
"(x#xs = filter P ys) = |
17629 | 1670 |
(\<exists>us vs. ys = us @ x # vs \<and> (\<forall>u\<in>set us. \<not> P u) \<and> P x \<and> xs = filter P vs)" |
68719 | 1671 |
by(auto dest:Cons_eq_filterD) |
17629 | 1672 |
|
61031
162bd20dae23
more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents:
60758
diff
changeset
|
1673 |
lemma inj_on_filter_key_eq: |
162bd20dae23
more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents:
60758
diff
changeset
|
1674 |
assumes "inj_on f (insert y (set xs))" |
68249
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents:
68215
diff
changeset
|
1675 |
shows "filter (\<lambda>x. f y = f x) xs = filter (HOL.eq y) xs" |
61031
162bd20dae23
more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents:
60758
diff
changeset
|
1676 |
using assms by (induct xs) auto |
162bd20dae23
more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents:
60758
diff
changeset
|
1677 |
|
44013
5cfc1c36ae97
moved recdef package to HOL/Library/Old_Recdef.thy
krauss
parents:
43594
diff
changeset
|
1678 |
lemma filter_cong[fundef_cong]: |
58807 | 1679 |
"xs = ys \<Longrightarrow> (\<And>x. x \<in> set ys \<Longrightarrow> P x = Q x) \<Longrightarrow> filter P xs = filter Q ys" |
68709 | 1680 |
by (induct ys arbitrary: xs) auto |
17501 | 1681 |
|
15281 | 1682 |
|
60758 | 1683 |
subsubsection \<open>List partitioning\<close> |
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1684 |
|
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1685 |
primrec partition :: "('a \<Rightarrow> bool) \<Rightarrow>'a list \<Rightarrow> 'a list \<times> 'a list" where |
68719 | 1686 |
"partition P [] = ([], [])" | |
1687 |
"partition P (x # xs) = |
|
50548 | 1688 |
(let (yes, no) = partition P xs |
1689 |
in if P x then (x # yes, no) else (yes, x # no))" |
|
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1690 |
|
58807 | 1691 |
lemma partition_filter1: "fst (partition P xs) = filter P xs" |
68719 | 1692 |
by (induct xs) (auto simp add: Let_def split_def) |
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1693 |
|
67091 | 1694 |
lemma partition_filter2: "snd (partition P xs) = filter (Not \<circ> P) xs" |
68719 | 1695 |
by (induct xs) (auto simp add: Let_def split_def) |
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1696 |
|
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1697 |
lemma partition_P: |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1698 |
assumes "partition P xs = (yes, no)" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1699 |
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
|
1700 |
proof - |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1701 |
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
|
1702 |
by simp_all |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1703 |
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
|
1704 |
qed |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1705 |
|
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1706 |
lemma partition_set: |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1707 |
assumes "partition P xs = (yes, no)" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1708 |
shows "set yes \<union> set no = set xs" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1709 |
proof - |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1710 |
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
|
1711 |
by simp_all |
64963 | 1712 |
then show ?thesis by (auto simp add: partition_filter1 partition_filter2) |
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1713 |
qed |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1714 |
|
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
|
1715 |
lemma partition_filter_conv[simp]: |
67091 | 1716 |
"partition f xs = (filter f xs,filter (Not \<circ> f) xs)" |
68719 | 1717 |
unfolding partition_filter2[symmetric] |
1718 |
unfolding partition_filter1[symmetric] by simp |
|
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
|
1719 |
|
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1720 |
declare partition.simps[simp del] |
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1721 |
|
35115 | 1722 |
|
69593 | 1723 |
subsubsection \<open>\<^const>\<open>nth\<close>\<close> |
13114 | 1724 |
|
29827 | 1725 |
lemma nth_Cons_0 [simp, code]: "(x # xs)!0 = x" |
68719 | 1726 |
by auto |
13114 | 1727 |
|
29827 | 1728 |
lemma nth_Cons_Suc [simp, code]: "(x # xs)!(Suc n) = xs!n" |
68719 | 1729 |
by auto |
13114 | 1730 |
|
13142 | 1731 |
declare nth.simps [simp del] |
13114 | 1732 |
|
41842 | 1733 |
lemma nth_Cons_pos[simp]: "0 < n \<Longrightarrow> (x#xs) ! n = xs ! (n - 1)" |
68719 | 1734 |
by(auto simp: Nat.gr0_conv_Suc) |
41842 | 1735 |
|
13114 | 1736 |
lemma nth_append: |
24526 | 1737 |
"(xs @ ys)!n = (if n < length xs then xs!n else ys!(n - length xs))" |
68709 | 1738 |
proof (induct xs arbitrary: n) |
1739 |
case (Cons x xs) |
|
1740 |
then show ?case |
|
1741 |
using less_Suc_eq_0_disj by auto |
|
1742 |
qed simp |
|
13114 | 1743 |
|
14402
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
1744 |
lemma nth_append_length [simp]: "(xs @ x # ys) ! length xs = x" |
68719 | 1745 |
by (induct xs) auto |
14402
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
1746 |
|
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
1747 |
lemma nth_append_length_plus[simp]: "(xs @ ys) ! (length xs + n) = ys ! n" |
68719 | 1748 |
by (induct xs) auto |
14402
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
1749 |
|
71585 | 1750 |
lemma nth_map [simp]: "n < length xs \<Longrightarrow> (map f xs)!n = f(xs!n)" |
68709 | 1751 |
proof (induct xs arbitrary: n) |
1752 |
case (Cons x xs) |
|
1753 |
then show ?case |
|
1754 |
using less_Suc_eq_0_disj by auto |
|
1755 |
qed simp |
|
13114 | 1756 |
|
66847 | 1757 |
lemma nth_tl: "n < length (tl xs) \<Longrightarrow> tl xs ! n = xs ! Suc n" |
68719 | 1758 |
by (induction xs) auto |
45841 | 1759 |
|
18423 | 1760 |
lemma hd_conv_nth: "xs \<noteq> [] \<Longrightarrow> hd xs = xs!0" |
68719 | 1761 |
by(cases xs) simp_all |
18423 | 1762 |
|
18049 | 1763 |
|
1764 |
lemma list_eq_iff_nth_eq: |
|
67717 | 1765 |
"(xs = ys) = (length xs = length ys \<and> (\<forall>i<length xs. xs!i = ys!i))" |
68709 | 1766 |
proof (induct xs arbitrary: ys) |
1767 |
case (Cons x xs ys) |
|
71393
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70911
diff
changeset
|
1768 |
show ?case |
68709 | 1769 |
proof (cases ys) |
1770 |
case (Cons y ys) |
|
1771 |
then show ?thesis |
|
1772 |
using Cons.hyps by fastforce |
|
1773 |
qed simp |
|
1774 |
qed force |
|
18049 | 1775 |
|
13142 | 1776 |
lemma set_conv_nth: "set xs = {xs!i | i. i < length xs}" |
68709 | 1777 |
proof (induct xs) |
1778 |
case (Cons x xs) |
|
1779 |
have "insert x {xs ! i |i. i < length xs} = {(x # xs) ! i |i. i < Suc (length xs)}" (is "?L=?R") |
|
1780 |
proof |
|
1781 |
show "?L \<subseteq> ?R" |
|
1782 |
by force |
|
1783 |
show "?R \<subseteq> ?L" |
|
1784 |
using less_Suc_eq_0_disj by auto |
|
1785 |
qed |
|
1786 |
with Cons show ?case |
|
1787 |
by simp |
|
1788 |
qed simp |
|
13114 | 1789 |
|
17501 | 1790 |
lemma in_set_conv_nth: "(x \<in> set xs) = (\<exists>i < length xs. xs!i = x)" |
68719 | 1791 |
by(auto simp:set_conv_nth) |
17501 | 1792 |
|
51160
599ff65b85e2
systematic conversions between nat and nibble/char;
haftmann
parents:
51112
diff
changeset
|
1793 |
lemma nth_equal_first_eq: |
599ff65b85e2
systematic conversions between nat and nibble/char;
haftmann
parents:
51112
diff
changeset
|
1794 |
assumes "x \<notin> set xs" |
599ff65b85e2
systematic conversions between nat and nibble/char;
haftmann
parents:
51112
diff
changeset
|
1795 |
assumes "n \<le> length xs" |
599ff65b85e2
systematic conversions between nat and nibble/char;
haftmann
parents:
51112
diff
changeset
|
1796 |
shows "(x # xs) ! n = x \<longleftrightarrow> n = 0" (is "?lhs \<longleftrightarrow> ?rhs") |
599ff65b85e2
systematic conversions between nat and nibble/char;
haftmann
parents:
51112
diff
changeset
|
1797 |
proof |
599ff65b85e2
systematic conversions between nat and nibble/char;
haftmann
parents:
51112
diff
changeset
|
1798 |
assume ?lhs |
599ff65b85e2
systematic conversions between nat and nibble/char;
haftmann
parents:
51112
diff
changeset
|
1799 |
show ?rhs |
599ff65b85e2
systematic conversions between nat and nibble/char;
haftmann
parents:
51112
diff
changeset
|
1800 |
proof (rule ccontr) |
599ff65b85e2
systematic conversions between nat and nibble/char;
haftmann
parents:
51112
diff
changeset
|
1801 |
assume "n \<noteq> 0" |
599ff65b85e2
systematic conversions between nat and nibble/char;
haftmann
parents:
51112
diff
changeset
|
1802 |
then have "n > 0" by simp |
60758 | 1803 |
with \<open>?lhs\<close> have "xs ! (n - 1) = x" by simp |
1804 |
moreover from \<open>n > 0\<close> \<open>n \<le> length xs\<close> have "n - 1 < length xs" by simp |
|
51160
599ff65b85e2
systematic conversions between nat and nibble/char;
haftmann
parents:
51112
diff
changeset
|
1805 |
ultimately have "\<exists>i<length xs. xs ! i = x" by auto |
60758 | 1806 |
with \<open>x \<notin> set xs\<close> in_set_conv_nth [of x xs] show False by simp |
51160
599ff65b85e2
systematic conversions between nat and nibble/char;
haftmann
parents:
51112
diff
changeset
|
1807 |
qed |
599ff65b85e2
systematic conversions between nat and nibble/char;
haftmann
parents:
51112
diff
changeset
|
1808 |
next |
599ff65b85e2
systematic conversions between nat and nibble/char;
haftmann
parents:
51112
diff
changeset
|
1809 |
assume ?rhs then show ?lhs by simp |
599ff65b85e2
systematic conversions between nat and nibble/char;
haftmann
parents:
51112
diff
changeset
|
1810 |
qed |
599ff65b85e2
systematic conversions between nat and nibble/char;
haftmann
parents:
51112
diff
changeset
|
1811 |
|
599ff65b85e2
systematic conversions between nat and nibble/char;
haftmann
parents:
51112
diff
changeset
|
1812 |
lemma nth_non_equal_first_eq: |
599ff65b85e2
systematic conversions between nat and nibble/char;
haftmann
parents:
51112
diff
changeset
|
1813 |
assumes "x \<noteq> y" |
599ff65b85e2
systematic conversions between nat and nibble/char;
haftmann
parents:
51112
diff
changeset
|
1814 |
shows "(x # xs) ! n = y \<longleftrightarrow> xs ! (n - 1) = y \<and> n > 0" (is "?lhs \<longleftrightarrow> ?rhs") |
599ff65b85e2
systematic conversions between nat and nibble/char;
haftmann
parents:
51112
diff
changeset
|
1815 |
proof |
599ff65b85e2
systematic conversions between nat and nibble/char;
haftmann
parents:
51112
diff
changeset
|
1816 |
assume "?lhs" with assms have "n > 0" by (cases n) simp_all |
60758 | 1817 |
with \<open>?lhs\<close> show ?rhs by simp |
51160
599ff65b85e2
systematic conversions between nat and nibble/char;
haftmann
parents:
51112
diff
changeset
|
1818 |
next |
599ff65b85e2
systematic conversions between nat and nibble/char;
haftmann
parents:
51112
diff
changeset
|
1819 |
assume "?rhs" then show "?lhs" by simp |
599ff65b85e2
systematic conversions between nat and nibble/char;
haftmann
parents:
51112
diff
changeset
|
1820 |
qed |
599ff65b85e2
systematic conversions between nat and nibble/char;
haftmann
parents:
51112
diff
changeset
|
1821 |
|
67613 | 1822 |
lemma list_ball_nth: "\<lbrakk>n < length xs; \<forall>x \<in> set xs. P x\<rbrakk> \<Longrightarrow> P(xs!n)" |
68719 | 1823 |
by (auto simp add: set_conv_nth) |
13114 | 1824 |
|
67613 | 1825 |
lemma nth_mem [simp]: "n < length xs \<Longrightarrow> xs!n \<in> set xs" |
68719 | 1826 |
by (auto simp add: set_conv_nth) |
13114 | 1827 |
|
1828 |
lemma all_nth_imp_all_set: |
|
67717 | 1829 |
"\<lbrakk>\<forall>i < length xs. P(xs!i); x \<in> set xs\<rbrakk> \<Longrightarrow> P x" |
68719 | 1830 |
by (auto simp add: set_conv_nth) |
13114 | 1831 |
|
1832 |
lemma all_set_conv_all_nth: |
|
67091 | 1833 |
"(\<forall>x \<in> set xs. P x) = (\<forall>i. i < length xs \<longrightarrow> P (xs ! i))" |
68719 | 1834 |
by (auto simp add: set_conv_nth) |
13114 | 1835 |
|
25296 | 1836 |
lemma rev_nth: |
1837 |
"n < size xs \<Longrightarrow> rev xs ! n = xs ! (length xs - Suc n)" |
|
1838 |
proof (induct xs arbitrary: n) |
|
1839 |
case Nil thus ?case by simp |
|
1840 |
next |
|
1841 |
case (Cons x xs) |
|
1842 |
hence n: "n < Suc (length xs)" by simp |
|
1843 |
moreover |
|
1844 |
{ assume "n < length xs" |
|
53374
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents:
53017
diff
changeset
|
1845 |
with n obtain n' where n': "length xs - n = Suc n'" |
25296 | 1846 |
by (cases "length xs - n", auto) |
1847 |
moreover |
|
53374
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents:
53017
diff
changeset
|
1848 |
from n' have "length xs - Suc n = n'" by simp |
25296 | 1849 |
ultimately |
1850 |
have "xs ! (length xs - Suc n) = (x # xs) ! (length xs - n)" by simp |
|
1851 |
} |
|
1852 |
ultimately |
|
1853 |
show ?case by (clarsimp simp add: Cons nth_append) |
|
1854 |
qed |
|
13114 | 1855 |
|
31159 | 1856 |
lemma Skolem_list_nth: |
67091 | 1857 |
"(\<forall>i<k. \<exists>x. P i x) = (\<exists>xs. size xs = k \<and> (\<forall>i<k. P i (xs!i)))" |
1858 |
(is "_ = (\<exists>xs. ?P k xs)") |
|
31159 | 1859 |
proof(induct k) |
1860 |
case 0 show ?case by simp |
|
1861 |
next |
|
1862 |
case (Suc k) |
|
67091 | 1863 |
show ?case (is "?L = ?R" is "_ = (\<exists>xs. ?P' xs)") |
31159 | 1864 |
proof |
1865 |
assume "?R" thus "?L" using Suc by auto |
|
1866 |
next |
|
1867 |
assume "?L" |
|
67091 | 1868 |
with Suc obtain x xs where "?P k xs \<and> P k x" by (metis less_Suc_eq) |
31159 | 1869 |
hence "?P'(xs@[x])" by(simp add:nth_append less_Suc_eq) |
1870 |
thus "?R" .. |
|
1871 |
qed |
|
1872 |
qed |
|
1873 |
||
1874 |
||
69593 | 1875 |
subsubsection \<open>\<^const>\<open>list_update\<close>\<close> |
13114 | 1876 |
|
24526 | 1877 |
lemma length_list_update [simp]: "length(xs[i:=x]) = length xs" |
68719 | 1878 |
by (induct xs arbitrary: i) (auto split: nat.split) |
13114 | 1879 |
|
1880 |
lemma nth_list_update: |
|
71585 | 1881 |
"i < length xs\<Longrightarrow> (xs[i:=x])!j = (if i = j then x else xs!j)" |
68719 | 1882 |
by (induct xs arbitrary: i j) (auto simp add: nth_Cons split: nat.split) |
13114 | 1883 |
|
71585 | 1884 |
lemma nth_list_update_eq [simp]: "i < length xs \<Longrightarrow> (xs[i:=x])!i = x" |
68719 | 1885 |
by (simp add: nth_list_update) |
13114 | 1886 |
|
71585 | 1887 |
lemma nth_list_update_neq [simp]: "i \<noteq> j \<Longrightarrow> xs[i:=x]!j = xs!j" |
68719 | 1888 |
by (induct xs arbitrary: i j) (auto simp add: nth_Cons split: nat.split) |
13114 | 1889 |
|
24526 | 1890 |
lemma list_update_id[simp]: "xs[i := xs!i] = xs" |
68719 | 1891 |
by (induct xs arbitrary: i) (simp_all split:nat.splits) |
24526 | 1892 |
|
1893 |
lemma list_update_beyond[simp]: "length xs \<le> i \<Longrightarrow> xs[i:=x] = xs" |
|
68709 | 1894 |
proof (induct xs arbitrary: i) |
1895 |
case (Cons x xs i) |
|
1896 |
then show ?case |
|
1897 |
by (metis leD length_list_update list_eq_iff_nth_eq nth_list_update_neq) |
|
1898 |
qed simp |
|
17501 | 1899 |
|
31077 | 1900 |
lemma list_update_nonempty[simp]: "xs[k:=x] = [] \<longleftrightarrow> xs=[]" |
68719 | 1901 |
by (simp only: length_0_conv[symmetric] length_list_update) |
31077 | 1902 |
|
13114 | 1903 |
lemma list_update_same_conv: |
71585 | 1904 |
"i < length xs \<Longrightarrow> (xs[i := x] = xs) = (xs!i = x)" |
68719 | 1905 |
by (induct xs arbitrary: i) (auto split: nat.split) |
13114 | 1906 |
|
14187 | 1907 |
lemma list_update_append1: |
58807 | 1908 |
"i < size xs \<Longrightarrow> (xs @ ys)[i:=x] = xs[i:=x] @ ys" |
68719 | 1909 |
by (induct xs arbitrary: i)(auto split:nat.split) |
14187 | 1910 |
|
15868 | 1911 |
lemma list_update_append: |
64963 | 1912 |
"(xs @ ys) [n:= x] = |
15868 | 1913 |
(if n < length xs then xs[n:= x] @ ys else xs @ (ys [n-length xs:= x]))" |
68719 | 1914 |
by (induct xs arbitrary: n) (auto split:nat.splits) |
15868 | 1915 |
|
14402
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
1916 |
lemma list_update_length [simp]: |
58807 | 1917 |
"(xs @ x # ys)[length xs := y] = (xs @ y # ys)" |
68719 | 1918 |
by (induct xs, auto) |
14402
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
1919 |
|
31264 | 1920 |
lemma map_update: "map f (xs[k:= y]) = (map f xs)[k := f y]" |
68719 | 1921 |
by(induct xs arbitrary: k)(auto split:nat.splits) |
31264 | 1922 |
|
1923 |
lemma rev_update: |
|
1924 |
"k < length xs \<Longrightarrow> rev (xs[k:= y]) = (rev xs)[length xs - k - 1 := y]" |
|
68719 | 1925 |
by (induct xs arbitrary: k) (auto simp: list_update_append split:nat.splits) |
31264 | 1926 |
|
13114 | 1927 |
lemma update_zip: |
31080 | 1928 |
"(zip xs ys)[i:=xy] = zip (xs[i:=fst xy]) (ys[i:=snd xy])" |
68719 | 1929 |
by (induct ys arbitrary: i xy xs) (auto, case_tac xs, auto split: nat.split) |
24526 | 1930 |
|
68709 | 1931 |
lemma set_update_subset_insert: "set(xs[i:=x]) \<le> insert x (set xs)" |
68719 | 1932 |
by (induct xs arbitrary: i) (auto split: nat.split) |
13114 | 1933 |
|
67613 | 1934 |
lemma set_update_subsetI: "\<lbrakk>set xs \<subseteq> A; x \<in> A\<rbrakk> \<Longrightarrow> set(xs[i := x]) \<subseteq> A" |
68719 | 1935 |
by (blast dest!: set_update_subset_insert [THEN subsetD]) |
13114 | 1936 |
|
24526 | 1937 |
lemma set_update_memI: "n < length xs \<Longrightarrow> x \<in> set (xs[n := x])" |
68719 | 1938 |
by (induct xs arbitrary: n) (auto split:nat.splits) |
15868 | 1939 |
|
31077 | 1940 |
lemma list_update_overwrite[simp]: |
24796 | 1941 |
"xs [i := x, i := y] = xs [i := y]" |
68709 | 1942 |
by (induct xs arbitrary: i) (simp_all split: nat.split) |
24796 | 1943 |
|
1944 |
lemma list_update_swap: |
|
1945 |
"i \<noteq> i' \<Longrightarrow> xs [i := x, i' := x'] = xs [i' := x', i := x]" |
|
68709 | 1946 |
by (induct xs arbitrary: i i') (simp_all split: nat.split) |
24796 | 1947 |
|
29827 | 1948 |
lemma list_update_code [code]: |
1949 |
"[][i := y] = []" |
|
1950 |
"(x # xs)[0 := y] = y # xs" |
|
1951 |
"(x # xs)[Suc i := y] = x # xs[i := y]" |
|
68719 | 1952 |
by simp_all |
29827 | 1953 |
|
13114 | 1954 |
|
69593 | 1955 |
subsubsection \<open>\<^const>\<open>last\<close> and \<^const>\<open>butlast\<close>\<close> |
13114 | 1956 |
|
73510
c526eb2c7ca0
removal of needless hypothesis in hd_rev and last_rev
paulson <lp15@cam.ac.uk>
parents:
73443
diff
changeset
|
1957 |
lemma hd_Nil_eq_last: "hd Nil = last Nil" |
c526eb2c7ca0
removal of needless hypothesis in hd_rev and last_rev
paulson <lp15@cam.ac.uk>
parents:
73443
diff
changeset
|
1958 |
unfolding hd_def last_def by simp |
c526eb2c7ca0
removal of needless hypothesis in hd_rev and last_rev
paulson <lp15@cam.ac.uk>
parents:
73443
diff
changeset
|
1959 |
|
13142 | 1960 |
lemma last_snoc [simp]: "last (xs @ [x]) = x" |
68719 | 1961 |
by (induct xs) auto |
13114 | 1962 |
|
13142 | 1963 |
lemma butlast_snoc [simp]: "butlast (xs @ [x]) = xs" |
68719 | 1964 |
by (induct xs) auto |
13114 | 1965 |
|
14302 | 1966 |
lemma last_ConsL: "xs = [] \<Longrightarrow> last(x#xs) = x" |
68719 | 1967 |
by simp |
14302 | 1968 |
|
1969 |
lemma last_ConsR: "xs \<noteq> [] \<Longrightarrow> last(x#xs) = last xs" |
|
68719 | 1970 |
by simp |
14302 | 1971 |
|
1972 |
lemma last_append: "last(xs @ ys) = (if ys = [] then last xs else last ys)" |
|
68719 | 1973 |
by (induct xs) (auto) |
14302 | 1974 |
|
1975 |
lemma last_appendL[simp]: "ys = [] \<Longrightarrow> last(xs @ ys) = last xs" |
|
68719 | 1976 |
by(simp add:last_append) |
14302 | 1977 |
|
1978 |
lemma last_appendR[simp]: "ys \<noteq> [] \<Longrightarrow> last(xs @ ys) = last ys" |
|
68719 | 1979 |
by(simp add:last_append) |
14302 | 1980 |
|
45841 | 1981 |
lemma last_tl: "xs = [] \<or> tl xs \<noteq> [] \<Longrightarrow>last (tl xs) = last xs" |
68719 | 1982 |
by (induct xs) simp_all |
45841 | 1983 |
|
1984 |
lemma butlast_tl: "butlast (tl xs) = tl (butlast xs)" |
|
68719 | 1985 |
by (induct xs) simp_all |
45841 | 1986 |
|
73510
c526eb2c7ca0
removal of needless hypothesis in hd_rev and last_rev
paulson <lp15@cam.ac.uk>
parents:
73443
diff
changeset
|
1987 |
lemma hd_rev: "hd(rev xs) = last xs" |
c526eb2c7ca0
removal of needless hypothesis in hd_rev and last_rev
paulson <lp15@cam.ac.uk>
parents:
73443
diff
changeset
|
1988 |
by (metis hd_Cons_tl hd_Nil_eq_last last_snoc rev_eq_Cons_iff rev_is_Nil_conv) |
c526eb2c7ca0
removal of needless hypothesis in hd_rev and last_rev
paulson <lp15@cam.ac.uk>
parents:
73443
diff
changeset
|
1989 |
|
c526eb2c7ca0
removal of needless hypothesis in hd_rev and last_rev
paulson <lp15@cam.ac.uk>
parents:
73443
diff
changeset
|
1990 |
lemma last_rev: "last(rev xs) = hd xs" |
c526eb2c7ca0
removal of needless hypothesis in hd_rev and last_rev
paulson <lp15@cam.ac.uk>
parents:
73443
diff
changeset
|
1991 |
by (metis hd_rev rev_swap) |
17762 | 1992 |
|
17765 | 1993 |
lemma last_in_set[simp]: "as \<noteq> [] \<Longrightarrow> last as \<in> set as" |
68719 | 1994 |
by (induct as) auto |
17762 | 1995 |
|
13142 | 1996 |
lemma length_butlast [simp]: "length (butlast xs) = length xs - 1" |
68719 | 1997 |
by (induct xs rule: rev_induct) auto |
13114 | 1998 |
|
1999 |
lemma butlast_append: |
|
24526 | 2000 |
"butlast (xs @ ys) = (if ys = [] then butlast xs else xs @ butlast ys)" |
68719 | 2001 |
by (induct xs arbitrary: ys) auto |
13114 | 2002 |
|
13142 | 2003 |
lemma append_butlast_last_id [simp]: |
67613 | 2004 |
"xs \<noteq> [] \<Longrightarrow> butlast xs @ [last xs] = xs" |
68719 | 2005 |
by (induct xs) auto |
13114 | 2006 |
|
67613 | 2007 |
lemma in_set_butlastD: "x \<in> set (butlast xs) \<Longrightarrow> x \<in> set xs" |
68719 | 2008 |
by (induct xs) (auto split: if_split_asm) |
13114 | 2009 |
|
2010 |
lemma in_set_butlast_appendI: |
|
67091 | 2011 |
"x \<in> set (butlast xs) \<or> x \<in> set (butlast ys) \<Longrightarrow> x \<in> set (butlast (xs @ ys))" |
68719 | 2012 |
by (auto dest: in_set_butlastD simp add: butlast_append) |
13114 | 2013 |
|
24526 | 2014 |
lemma last_drop[simp]: "n < length xs \<Longrightarrow> last (drop n xs) = last xs" |
68719 | 2015 |
by (induct xs arbitrary: n)(auto split:nat.split) |
17501 | 2016 |
|
45841 | 2017 |
lemma nth_butlast: |
2018 |
assumes "n < length (butlast xs)" shows "butlast xs ! n = xs ! n" |
|
2019 |
proof (cases xs) |
|
2020 |
case (Cons y ys) |
|
2021 |
moreover from assms have "butlast xs ! n = (butlast xs @ [last xs]) ! n" |
|
2022 |
by (simp add: nth_append) |
|
2023 |
ultimately show ?thesis using append_butlast_last_id by simp |
|
2024 |
qed simp |
|
2025 |
||
30128
365ee7319b86
revert some Suc 0 lemmas back to their original forms; added some simp rules for (1::nat)
huffman
parents:
30079
diff
changeset
|
2026 |
lemma last_conv_nth: "xs\<noteq>[] \<Longrightarrow> last xs = xs!(length xs - 1)" |
68719 | 2027 |
by(induct xs)(auto simp:neq_Nil_conv) |
17589 | 2028 |
|
30128
365ee7319b86
revert some Suc 0 lemmas back to their original forms; added some simp rules for (1::nat)
huffman
parents:
30079
diff
changeset
|
2029 |
lemma butlast_conv_take: "butlast xs = take (length xs - 1) xs" |
68719 | 2030 |
by (induction xs rule: induct_list012) simp_all |
26584
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
2031 |
|
31077 | 2032 |
lemma last_list_update: |
2033 |
"xs \<noteq> [] \<Longrightarrow> last(xs[k:=x]) = (if k = size xs - 1 then x else last xs)" |
|
68719 | 2034 |
by (auto simp: last_conv_nth) |
31077 | 2035 |
|
2036 |
lemma butlast_list_update: |
|
2037 |
"butlast(xs[k:=x]) = |
|
58807 | 2038 |
(if k = size xs - 1 then butlast xs else (butlast xs)[k:=x])" |
68719 | 2039 |
by(cases xs rule:rev_cases)(auto simp: list_update_append split: nat.splits) |
58807 | 2040 |
|
2041 |
lemma last_map: "xs \<noteq> [] \<Longrightarrow> last (map f xs) = f (last xs)" |
|
68719 | 2042 |
by (cases xs rule: rev_cases) simp_all |
58807 | 2043 |
|
2044 |
lemma map_butlast: "map f (butlast xs) = butlast (map f xs)" |
|
68719 | 2045 |
by (induct xs) simp_all |
36851 | 2046 |
|
40230 | 2047 |
lemma snoc_eq_iff_butlast: |
67091 | 2048 |
"xs @ [x] = ys \<longleftrightarrow> (ys \<noteq> [] \<and> butlast ys = xs \<and> last ys = x)" |
68719 | 2049 |
by fastforce |
40230 | 2050 |
|
63173 | 2051 |
corollary longest_common_suffix: |
2052 |
"\<exists>ss xs' ys'. xs = xs' @ ss \<and> ys = ys' @ ss |
|
2053 |
\<and> (xs' = [] \<or> ys' = [] \<or> last xs' \<noteq> last ys')" |
|
68719 | 2054 |
using longest_common_prefix[of "rev xs" "rev ys"] |
2055 |
unfolding rev_swap rev_append by (metis last_rev rev_is_Nil_conv) |
|
63173 | 2056 |
|
70183
3ea80c950023
incorporated various material from the AFP into the distribution
haftmann
parents:
69850
diff
changeset
|
2057 |
lemma butlast_rev [simp]: "butlast (rev xs) = rev (tl xs)" |
3ea80c950023
incorporated various material from the AFP into the distribution
haftmann
parents:
69850
diff
changeset
|
2058 |
by (cases xs) simp_all |
3ea80c950023
incorporated various material from the AFP into the distribution
haftmann
parents:
69850
diff
changeset
|
2059 |
|
24796 | 2060 |
|
69593 | 2061 |
subsubsection \<open>\<^const>\<open>take\<close> and \<^const>\<open>drop\<close>\<close> |
13114 | 2062 |
|
66658 | 2063 |
lemma take_0: "take 0 xs = []" |
68719 | 2064 |
by (induct xs) auto |
66658 | 2065 |
|
2066 |
lemma drop_0: "drop 0 xs = xs" |
|
68719 | 2067 |
by (induct xs) auto |
13114 | 2068 |
|
66658 | 2069 |
lemma take0[simp]: "take 0 = (\<lambda>xs. [])" |
68719 | 2070 |
by(rule ext) (rule take_0) |
66658 | 2071 |
|
2072 |
lemma drop0[simp]: "drop 0 = (\<lambda>x. x)" |
|
68719 | 2073 |
by(rule ext) (rule drop_0) |
13114 | 2074 |
|
13142 | 2075 |
lemma take_Suc_Cons [simp]: "take (Suc n) (x # xs) = x # take n xs" |
68719 | 2076 |
by simp |
13114 | 2077 |
|
13142 | 2078 |
lemma drop_Suc_Cons [simp]: "drop (Suc n) (x # xs) = drop n xs" |
68719 | 2079 |
by simp |
13114 | 2080 |
|
13142 | 2081 |
declare take_Cons [simp del] and drop_Cons [simp del] |
13114 | 2082 |
|
67091 | 2083 |
lemma take_Suc: "xs \<noteq> [] \<Longrightarrow> take (Suc n) xs = hd xs # take n (tl xs)" |
68719 | 2084 |
by(clarsimp simp add:neq_Nil_conv) |
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2085 |
|
14187 | 2086 |
lemma drop_Suc: "drop (Suc n) xs = drop n (tl xs)" |
68719 | 2087 |
by(cases xs, simp_all) |
14187 | 2088 |
|
66870 | 2089 |
lemma hd_take[simp]: "j > 0 \<Longrightarrow> hd (take j xs) = hd xs" |
68719 | 2090 |
by (metis gr0_conv_Suc list.sel(1) take.simps(1) take_Suc) |
66657 | 2091 |
|
26584
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
2092 |
lemma take_tl: "take n (tl xs) = tl (take (Suc n) xs)" |
68719 | 2093 |
by (induct xs arbitrary: n) simp_all |
26584
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
2094 |
|
24526 | 2095 |
lemma drop_tl: "drop n (tl xs) = tl(drop n xs)" |
68719 | 2096 |
by(induct xs arbitrary: n, simp_all add:drop_Cons drop_Suc split:nat.split) |
24526 | 2097 |
|
26584
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
2098 |
lemma tl_take: "tl (take n xs) = take (n - 1) (tl xs)" |
68719 | 2099 |
by (cases n, simp, cases xs, auto) |
26584
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
2100 |
|
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
2101 |
lemma tl_drop: "tl (drop n xs) = drop n (tl xs)" |
68719 | 2102 |
by (simp only: drop_tl) |
26584
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
2103 |
|
24526 | 2104 |
lemma nth_via_drop: "drop n xs = y#ys \<Longrightarrow> xs!n = y" |
68719 | 2105 |
by (induct xs arbitrary: n, simp)(auto simp: drop_Cons nth_Cons split: nat.splits) |
14187 | 2106 |
|
13913 | 2107 |
lemma take_Suc_conv_app_nth: |
24526 | 2108 |
"i < length xs \<Longrightarrow> take (Suc i) xs = take i xs @ [xs!i]" |
68709 | 2109 |
proof (induct xs arbitrary: i) |
69850 | 2110 |
case Nil |
2111 |
then show ?case by simp |
|
2112 |
next |
|
2113 |
case Cons |
|
2114 |
then show ?case by (cases i) auto |
|
2115 |
qed |
|
13913 | 2116 |
|
58247
98d0f85d247f
enamed drop_Suc_conv_tl and nth_drop' to Cons_nth_drop_Suc
nipkow
parents:
58195
diff
changeset
|
2117 |
lemma Cons_nth_drop_Suc: |
24526 | 2118 |
"i < length xs \<Longrightarrow> (xs!i) # (drop (Suc i) xs) = drop i xs" |
68709 | 2119 |
proof (induct xs arbitrary: i) |
69850 | 2120 |
case Nil |
2121 |
then show ?case by simp |
|
2122 |
next |
|
2123 |
case Cons |
|
2124 |
then show ?case by (cases i) auto |
|
2125 |
qed |
|
14591 | 2126 |
|
24526 | 2127 |
lemma length_take [simp]: "length (take n xs) = min (length xs) n" |
68719 | 2128 |
by (induct n arbitrary: xs) (auto, case_tac xs, auto) |
24526 | 2129 |
|
2130 |
lemma length_drop [simp]: "length (drop n xs) = (length xs - n)" |
|
68719 | 2131 |
by (induct n arbitrary: xs) (auto, case_tac xs, auto) |
24526 | 2132 |
|
71585 | 2133 |
lemma take_all [simp]: "length xs \<le> n \<Longrightarrow> take n xs = xs" |
68719 | 2134 |
by (induct n arbitrary: xs) (auto, case_tac xs, auto) |
24526 | 2135 |
|
71585 | 2136 |
lemma drop_all [simp]: "length xs \<le> n \<Longrightarrow> drop n xs = []" |
68719 | 2137 |
by (induct n arbitrary: xs) (auto, case_tac xs, auto) |
13114 | 2138 |
|
72852 | 2139 |
lemma take_all_iff [simp]: "take n xs = xs \<longleftrightarrow> length xs \<le> n" |
2140 |
by (metis length_take min.order_iff take_all) |
|
2141 |
||
2142 |
lemma drop_all_iff [simp]: "drop n xs = [] \<longleftrightarrow> length xs \<le> n" |
|
2143 |
by (metis diff_is_0_eq drop_all length_drop list.size(3)) |
|
2144 |
||
13142 | 2145 |
lemma take_append [simp]: |
24526 | 2146 |
"take n (xs @ ys) = (take n xs @ take (n - length xs) ys)" |
68719 | 2147 |
by (induct n arbitrary: xs) (auto, case_tac xs, auto) |
13114 | 2148 |
|
13142 | 2149 |
lemma drop_append [simp]: |
24526 | 2150 |
"drop n (xs @ ys) = drop n xs @ drop (n - length xs) ys" |
68719 | 2151 |
by (induct n arbitrary: xs) (auto, case_tac xs, auto) |
24526 | 2152 |
|
2153 |
lemma take_take [simp]: "take n (take m xs) = take (min n m) xs" |
|
68709 | 2154 |
proof (induct m arbitrary: xs n) |
69850 | 2155 |
case 0 |
2156 |
then show ?case by simp |
|
2157 |
next |
|
2158 |
case Suc |
|
2159 |
then show ?case by (cases xs; cases n) simp_all |
|
2160 |
qed |
|
13114 | 2161 |
|
24526 | 2162 |
lemma drop_drop [simp]: "drop n (drop m xs) = drop (n + m) xs" |
68709 | 2163 |
proof (induct m arbitrary: xs) |
69850 | 2164 |
case 0 |
2165 |
then show ?case by simp |
|
2166 |
next |
|
2167 |
case Suc |
|
2168 |
then show ?case by (cases xs) simp_all |
|
2169 |
qed |
|
13114 | 2170 |
|
24526 | 2171 |
lemma take_drop: "take n (drop m xs) = drop m (take (n + m) xs)" |
68709 | 2172 |
proof (induct m arbitrary: xs n) |
69850 | 2173 |
case 0 |
2174 |
then show ?case by simp |
|
2175 |
next |
|
2176 |
case Suc |
|
2177 |
then show ?case by (cases xs; cases n) simp_all |
|
2178 |
qed |
|
13114 | 2179 |
|
24526 | 2180 |
lemma drop_take: "drop n (take m xs) = take (m-n) (drop n xs)" |
68719 | 2181 |
by(induct xs arbitrary: m n)(auto simp: take_Cons drop_Cons split: nat.split) |
14802 | 2182 |
|
24526 | 2183 |
lemma append_take_drop_id [simp]: "take n xs @ drop n xs = xs" |
68709 | 2184 |
proof (induct n arbitrary: xs) |
69850 | 2185 |
case 0 |
2186 |
then show ?case by simp |
|
2187 |
next |
|
2188 |
case Suc |
|
2189 |
then show ?case by (cases xs) simp_all |
|
2190 |
qed |
|
13114 | 2191 |
|
24526 | 2192 |
lemma take_eq_Nil[simp]: "(take n xs = []) = (n = 0 \<or> xs = [])" |
68719 | 2193 |
by(induct xs arbitrary: n)(auto simp: take_Cons split:nat.split) |
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2194 |
|
68709 | 2195 |
lemma drop_eq_Nil[simp]: "(drop n xs = []) = (length xs \<le> n)" |
68719 | 2196 |
by (induct xs arbitrary: n) (auto simp: drop_Cons split:nat.split) |
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2197 |
|
24526 | 2198 |
lemma take_map: "take n (map f xs) = map f (take n xs)" |
68709 | 2199 |
proof (induct n arbitrary: xs) |
69850 | 2200 |
case 0 |
2201 |
then show ?case by simp |
|
2202 |
next |
|
2203 |
case Suc |
|
2204 |
then show ?case by (cases xs) simp_all |
|
2205 |
qed |
|
13114 | 2206 |
|
24526 | 2207 |
lemma drop_map: "drop n (map f xs) = map f (drop n xs)" |
68709 | 2208 |
proof (induct n arbitrary: xs) |
69850 | 2209 |
case 0 |
2210 |
then show ?case by simp |
|
2211 |
next |
|
2212 |
case Suc |
|
2213 |
then show ?case by (cases xs) simp_all |
|
2214 |
qed |
|
13114 | 2215 |
|
24526 | 2216 |
lemma rev_take: "rev (take i xs) = drop (length xs - i) (rev xs)" |
68709 | 2217 |
proof (induct xs arbitrary: i) |
69850 | 2218 |
case Nil |
2219 |
then show ?case by simp |
|
2220 |
next |
|
2221 |
case Cons |
|
2222 |
then show ?case by (cases i) auto |
|
2223 |
qed |
|
13114 | 2224 |
|
24526 | 2225 |
lemma rev_drop: "rev (drop i xs) = take (length xs - i) (rev xs)" |
68709 | 2226 |
proof (induct xs arbitrary: i) |
69850 | 2227 |
case Nil |
2228 |
then show ?case by simp |
|
2229 |
next |
|
2230 |
case Cons |
|
2231 |
then show ?case by (cases i) auto |
|
2232 |
qed |
|
13114 | 2233 |
|
61699
a81dc5c4d6a9
New theorems mostly from Peter Gammie
paulson <lp15@cam.ac.uk>
parents:
61682
diff
changeset
|
2234 |
lemma drop_rev: "drop n (rev xs) = rev (take (length xs - n) xs)" |
a81dc5c4d6a9
New theorems mostly from Peter Gammie
paulson <lp15@cam.ac.uk>
parents:
61682
diff
changeset
|
2235 |
by (cases "length xs < n") (auto simp: rev_take) |
a81dc5c4d6a9
New theorems mostly from Peter Gammie
paulson <lp15@cam.ac.uk>
parents:
61682
diff
changeset
|
2236 |
|
a81dc5c4d6a9
New theorems mostly from Peter Gammie
paulson <lp15@cam.ac.uk>
parents:
61682
diff
changeset
|
2237 |
lemma take_rev: "take n (rev xs) = rev (drop (length xs - n) xs)" |
a81dc5c4d6a9
New theorems mostly from Peter Gammie
paulson <lp15@cam.ac.uk>
parents:
61682
diff
changeset
|
2238 |
by (cases "length xs < n") (auto simp: rev_drop) |
a81dc5c4d6a9
New theorems mostly from Peter Gammie
paulson <lp15@cam.ac.uk>
parents:
61682
diff
changeset
|
2239 |
|
71585 | 2240 |
lemma nth_take [simp]: "i < n \<Longrightarrow> (take n xs)!i = xs!i" |
68709 | 2241 |
proof (induct xs arbitrary: i n) |
69850 | 2242 |
case Nil |
2243 |
then show ?case by simp |
|
2244 |
next |
|
2245 |
case Cons |
|
2246 |
then show ?case by (cases n; cases i) simp_all |
|
2247 |
qed |
|
13114 | 2248 |
|
13142 | 2249 |
lemma nth_drop [simp]: |
71585 | 2250 |
"n \<le> length xs \<Longrightarrow> (drop n xs)!i = xs!(n + i)" |
68709 | 2251 |
proof (induct n arbitrary: xs) |
69850 | 2252 |
case 0 |
2253 |
then show ?case by simp |
|
2254 |
next |
|
2255 |
case Suc |
|
2256 |
then show ?case by (cases xs) simp_all |
|
2257 |
qed |
|
3507 | 2258 |
|
26584
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
2259 |
lemma butlast_take: |
71585 | 2260 |
"n \<le> length xs \<Longrightarrow> butlast (take n xs) = take (n - 1) xs" |
68719 | 2261 |
by (simp add: butlast_conv_take min.absorb1 min.absorb2) |
26584
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
2262 |
|
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
2263 |
lemma butlast_drop: "butlast (drop n xs) = drop n (butlast xs)" |
68719 | 2264 |
by (simp add: butlast_conv_take drop_take ac_simps) |
26584
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
2265 |
|
71585 | 2266 |
lemma take_butlast: "n < length xs \<Longrightarrow> take n (butlast xs) = take n xs" |
68719 | 2267 |
by (simp add: butlast_conv_take min.absorb1) |
26584
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
2268 |
|
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
2269 |
lemma drop_butlast: "drop n (butlast xs) = butlast (drop n xs)" |
68719 | 2270 |
by (simp add: butlast_conv_take drop_take ac_simps) |
26584
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
2271 |
|
72555 | 2272 |
lemma butlast_power: "(butlast ^^ n) xs = take (length xs - n) xs" |
2273 |
by (induct n) (auto simp: butlast_take) |
|
2274 |
||
46500
0196966d6d2d
removing unnecessary premises in theorems of List theory
bulwahn
parents:
46448
diff
changeset
|
2275 |
lemma hd_drop_conv_nth: "n < length xs \<Longrightarrow> hd(drop n xs) = xs!n" |
68719 | 2276 |
by(simp add: hd_conv_nth) |
18423 | 2277 |
|
35248 | 2278 |
lemma set_take_subset_set_take: |
68709 | 2279 |
"m \<le> n \<Longrightarrow> set(take m xs) \<le> set(take n xs)" |
2280 |
proof (induct xs arbitrary: m n) |
|
2281 |
case (Cons x xs m n) then show ?case |
|
2282 |
by (cases n) (auto simp: take_Cons) |
|
2283 |
qed simp |
|
35248 | 2284 |
|
24526 | 2285 |
lemma set_take_subset: "set(take n xs) \<subseteq> set xs" |
68719 | 2286 |
by(induct xs arbitrary: n)(auto simp:take_Cons split:nat.split) |
24526 | 2287 |
|
2288 |
lemma set_drop_subset: "set(drop n xs) \<subseteq> set xs" |
|
68719 | 2289 |
by(induct xs arbitrary: n)(auto simp:drop_Cons split:nat.split) |
14025 | 2290 |
|
35248 | 2291 |
lemma set_drop_subset_set_drop: |
68709 | 2292 |
"m \<ge> n \<Longrightarrow> set(drop m xs) \<le> set(drop n xs)" |
2293 |
proof (induct xs arbitrary: m n) |
|
2294 |
case (Cons x xs m n) |
|
2295 |
then show ?case |
|
2296 |
by (clarsimp simp: drop_Cons split: nat.split) (metis set_drop_subset subset_iff) |
|
2297 |
qed simp |
|
35248 | 2298 |
|
67613 | 2299 |
lemma in_set_takeD: "x \<in> set(take n xs) \<Longrightarrow> x \<in> set xs" |
68719 | 2300 |
using set_take_subset by fast |
14187 | 2301 |
|
67613 | 2302 |
lemma in_set_dropD: "x \<in> set(drop n xs) \<Longrightarrow> x \<in> set xs" |
68719 | 2303 |
using set_drop_subset by fast |
14187 | 2304 |
|
13114 | 2305 |
lemma append_eq_conv_conj: |
24526 | 2306 |
"(xs @ ys = zs) = (xs = take (length xs) zs \<and> ys = drop (length xs) zs)" |
68709 | 2307 |
proof (induct xs arbitrary: zs) |
2308 |
case (Cons x xs zs) then show ?case |
|
2309 |
by (cases zs, auto) |
|
2310 |
qed auto |
|
13142 | 2311 |
|
71393
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70911
diff
changeset
|
2312 |
lemma map_eq_append_conv: |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70911
diff
changeset
|
2313 |
"map f xs = ys @ zs \<longleftrightarrow> (\<exists>us vs. xs = us @ vs \<and> ys = map f us \<and> zs = map f vs)" |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70911
diff
changeset
|
2314 |
proof - |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70911
diff
changeset
|
2315 |
have "map f xs \<noteq> ys @ zs \<and> map f xs \<noteq> ys @ zs \<or> map f xs \<noteq> ys @ zs \<or> map f xs = ys @ zs \<and> |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70911
diff
changeset
|
2316 |
(\<exists>bs bsa. xs = bs @ bsa \<and> ys = map f bs \<and> zs = map f bsa)" |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70911
diff
changeset
|
2317 |
by (metis append_eq_conv_conj append_take_drop_id drop_map take_map) |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70911
diff
changeset
|
2318 |
then show ?thesis |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70911
diff
changeset
|
2319 |
using map_append by blast |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70911
diff
changeset
|
2320 |
qed |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70911
diff
changeset
|
2321 |
|
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70911
diff
changeset
|
2322 |
lemma append_eq_map_conv: |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70911
diff
changeset
|
2323 |
"ys @ zs = map f xs \<longleftrightarrow> (\<exists>us vs. xs = us @ vs \<and> ys = map f us \<and> zs = map f vs)" |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70911
diff
changeset
|
2324 |
by (metis map_eq_append_conv) |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70911
diff
changeset
|
2325 |
|
58807 | 2326 |
lemma take_add: "take (i+j) xs = take i xs @ take j (drop i xs)" |
68709 | 2327 |
proof (induct xs arbitrary: i) |
2328 |
case (Cons x xs i) then show ?case |
|
2329 |
by (cases i, auto) |
|
2330 |
qed auto |
|
14050 | 2331 |
|
14300 | 2332 |
lemma append_eq_append_conv_if: |
58807 | 2333 |
"(xs\<^sub>1 @ xs\<^sub>2 = ys\<^sub>1 @ ys\<^sub>2) = |
53015
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents:
52435
diff
changeset
|
2334 |
(if size xs\<^sub>1 \<le> size ys\<^sub>1 |
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents:
52435
diff
changeset
|
2335 |
then xs\<^sub>1 = take (size xs\<^sub>1) ys\<^sub>1 \<and> xs\<^sub>2 = drop (size xs\<^sub>1) ys\<^sub>1 @ ys\<^sub>2 |
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents:
52435
diff
changeset
|
2336 |
else take (size ys\<^sub>1) xs\<^sub>1 = ys\<^sub>1 \<and> drop (size ys\<^sub>1) xs\<^sub>1 @ xs\<^sub>2 = ys\<^sub>2)" |
68709 | 2337 |
proof (induct xs\<^sub>1 arbitrary: ys\<^sub>1) |
2338 |
case (Cons a xs\<^sub>1 ys\<^sub>1) then show ?case |
|
2339 |
by (cases ys\<^sub>1, auto) |
|
2340 |
qed auto |
|
14300 | 2341 |
|
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2342 |
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
|
2343 |
"n < length xs \<Longrightarrow> take n xs @ [hd (drop n xs)] = take (Suc n) xs" |
68709 | 2344 |
by (induct xs arbitrary: n) (simp_all add:drop_Cons split:nat.split) |
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2345 |
|
17501 | 2346 |
lemma id_take_nth_drop: |
64963 | 2347 |
"i < length xs \<Longrightarrow> xs = take i xs @ xs!i # drop (Suc i) xs" |
17501 | 2348 |
proof - |
2349 |
assume si: "i < length xs" |
|
2350 |
hence "xs = take (Suc i) xs @ drop (Suc i) xs" by auto |
|
2351 |
moreover |
|
2352 |
from si have "take (Suc i) xs = take i xs @ [xs!i]" |
|
68709 | 2353 |
using take_Suc_conv_app_nth by blast |
17501 | 2354 |
ultimately show ?thesis by auto |
2355 |
qed |
|
64963 | 2356 |
|
59728 | 2357 |
lemma take_update_cancel[simp]: "n \<le> m \<Longrightarrow> take n (xs[m := y]) = take n xs" |
68719 | 2358 |
by(simp add: list_eq_iff_nth_eq) |
59728 | 2359 |
|
2360 |
lemma drop_update_cancel[simp]: "n < m \<Longrightarrow> drop m (xs[n := x]) = drop m xs" |
|
68719 | 2361 |
by(simp add: list_eq_iff_nth_eq) |
59728 | 2362 |
|
17501 | 2363 |
lemma upd_conv_take_nth_drop: |
58807 | 2364 |
"i < length xs \<Longrightarrow> xs[i:=a] = take i xs @ a # drop (Suc i) xs" |
17501 | 2365 |
proof - |
2366 |
assume i: "i < length xs" |
|
2367 |
have "xs[i:=a] = (take i xs @ xs!i # drop (Suc i) xs)[i:=a]" |
|
2368 |
by(rule arg_cong[OF id_take_nth_drop[OF i]]) |
|
2369 |
also have "\<dots> = take i xs @ a # drop (Suc i) xs" |
|
2370 |
using i by (simp add: list_update_append) |
|
2371 |
finally show ?thesis . |
|
2372 |
qed |
|
2373 |
||
66891
5ec8cd4db7e2
drop a superfluous assumption that was found by the find_unused_assms command
bulwahn
parents:
66890
diff
changeset
|
2374 |
lemma take_update_swap: "take m (xs[n := x]) = (take m xs)[n := x]" |
68709 | 2375 |
proof (cases "n \<ge> length xs") |
2376 |
case False |
|
2377 |
then show ?thesis |
|
2378 |
by (simp add: upd_conv_take_nth_drop take_Cons drop_take min_def diff_Suc split: nat.split) |
|
2379 |
qed auto |
|
2380 |
||
71393
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70911
diff
changeset
|
2381 |
lemma drop_update_swap: |
68709 | 2382 |
assumes "m \<le> n" shows "drop m (xs[n := x]) = (drop m xs)[n-m := x]" |
2383 |
proof (cases "n \<ge> length xs") |
|
2384 |
case False |
|
2385 |
with assms show ?thesis |
|
2386 |
by (simp add: upd_conv_take_nth_drop drop_take) |
|
2387 |
qed auto |
|
59728 | 2388 |
|
2389 |
lemma nth_image: "l \<le> size xs \<Longrightarrow> nth xs ` {0..<l} = set(take l xs)" |
|
68719 | 2390 |
by(auto simp: set_conv_nth image_def) (metis Suc_le_eq nth_take order_trans) |
59728 | 2391 |
|
13114 | 2392 |
|
69593 | 2393 |
subsubsection \<open>\<^const>\<open>takeWhile\<close> and \<^const>\<open>dropWhile\<close>\<close> |
13114 | 2394 |
|
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
|
2395 |
lemma length_takeWhile_le: "length (takeWhile P xs) \<le> length xs" |
68719 | 2396 |
by (induct xs) auto |
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
|
2397 |
|
13142 | 2398 |
lemma takeWhile_dropWhile_id [simp]: "takeWhile P xs @ dropWhile P xs = xs" |
68719 | 2399 |
by (induct xs) auto |
13114 | 2400 |
|
13142 | 2401 |
lemma takeWhile_append1 [simp]: |
67091 | 2402 |
"\<lbrakk>x \<in> set xs; \<not>P(x)\<rbrakk> \<Longrightarrow> takeWhile P (xs @ ys) = takeWhile P xs" |
68719 | 2403 |
by (induct xs) auto |
13114 | 2404 |
|
13142 | 2405 |
lemma takeWhile_append2 [simp]: |
67613 | 2406 |
"(\<And>x. x \<in> set xs \<Longrightarrow> P x) \<Longrightarrow> takeWhile P (xs @ ys) = xs @ takeWhile P ys" |
68719 | 2407 |
by (induct xs) auto |
13114 | 2408 |
|
71778 | 2409 |
lemma takeWhile_append: |
2410 |
"takeWhile P (xs @ ys) = (if \<forall>x\<in>set xs. P x then xs @ takeWhile P ys else takeWhile P xs)" |
|
2411 |
using takeWhile_append1[of _ xs P ys] takeWhile_append2[of xs P ys] by auto |
|
2412 |
||
67613 | 2413 |
lemma takeWhile_tail: "\<not> P x \<Longrightarrow> takeWhile P (xs @ (x#l)) = takeWhile P xs" |
68719 | 2414 |
by (induct xs) auto |
13114 | 2415 |
|
71778 | 2416 |
lemma takeWhile_eq_Nil_iff: "takeWhile P xs = [] \<longleftrightarrow> xs = [] \<or> \<not>P (hd xs)" |
2417 |
by (cases xs) auto |
|
2418 |
||
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
|
2419 |
lemma takeWhile_nth: "j < length (takeWhile P xs) \<Longrightarrow> takeWhile P xs ! j = xs ! j" |
68709 | 2420 |
by (metis nth_append takeWhile_dropWhile_id) |
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
|
2421 |
|
58807 | 2422 |
lemma dropWhile_nth: "j < length (dropWhile P xs) \<Longrightarrow> |
2423 |
dropWhile P xs ! j = xs ! (j + length (takeWhile P xs))" |
|
68709 | 2424 |
by (metis add.commute nth_append_length_plus takeWhile_dropWhile_id) |
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
|
2425 |
|
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2426 |
lemma length_dropWhile_le: "length (dropWhile P xs) \<le> length xs" |
68719 | 2427 |
by (induct xs) auto |
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
|
2428 |
|
13142 | 2429 |
lemma dropWhile_append1 [simp]: |
67091 | 2430 |
"\<lbrakk>x \<in> set xs; \<not>P(x)\<rbrakk> \<Longrightarrow> dropWhile P (xs @ ys) = (dropWhile P xs)@ys" |
68719 | 2431 |
by (induct xs) auto |
13114 | 2432 |
|
13142 | 2433 |
lemma dropWhile_append2 [simp]: |
71585 | 2434 |
"(\<And>x. x \<in> set xs \<Longrightarrow> P(x)) \<Longrightarrow> dropWhile P (xs @ ys) = dropWhile P ys" |
68719 | 2435 |
by (induct xs) auto |
13114 | 2436 |
|
45841 | 2437 |
lemma dropWhile_append3: |
2438 |
"\<not> P y \<Longrightarrow>dropWhile P (xs @ y # ys) = dropWhile P xs @ y # ys" |
|
68719 | 2439 |
by (induct xs) auto |
45841 | 2440 |
|
71778 | 2441 |
lemma dropWhile_append: |
2442 |
"dropWhile P (xs @ ys) = (if \<forall>x\<in>set xs. P x then dropWhile P ys else dropWhile P xs @ ys)" |
|
2443 |
using dropWhile_append1[of _ xs P ys] dropWhile_append2[of xs P ys] by auto |
|
2444 |
||
45841 | 2445 |
lemma dropWhile_last: |
2446 |
"x \<in> set xs \<Longrightarrow> \<not> P x \<Longrightarrow> last (dropWhile P xs) = last xs" |
|
68719 | 2447 |
by (auto simp add: dropWhile_append3 in_set_conv_decomp) |
45841 | 2448 |
|
2449 |
lemma set_dropWhileD: "x \<in> set (dropWhile P xs) \<Longrightarrow> x \<in> set xs" |
|
68719 | 2450 |
by (induct xs) (auto split: if_split_asm) |
45841 | 2451 |
|
67613 | 2452 |
lemma set_takeWhileD: "x \<in> set (takeWhile P xs) \<Longrightarrow> x \<in> set xs \<and> P x" |
68719 | 2453 |
by (induct xs) (auto split: if_split_asm) |
13114 | 2454 |
|
13913 | 2455 |
lemma takeWhile_eq_all_conv[simp]: |
58807 | 2456 |
"(takeWhile P xs = xs) = (\<forall>x \<in> set xs. P x)" |
68719 | 2457 |
by(induct xs, auto) |
13913 | 2458 |
|
2459 |
lemma dropWhile_eq_Nil_conv[simp]: |
|
58807 | 2460 |
"(dropWhile P xs = []) = (\<forall>x \<in> set xs. P x)" |
68719 | 2461 |
by(induct xs, auto) |
13913 | 2462 |
|
2463 |
lemma dropWhile_eq_Cons_conv: |
|
67091 | 2464 |
"(dropWhile P xs = y#ys) = (xs = takeWhile P xs @ y # ys \<and> \<not> P y)" |
68719 | 2465 |
by(induct xs, auto) |
13913 | 2466 |
|
71778 | 2467 |
lemma dropWhile_eq_self_iff: "dropWhile P xs = xs \<longleftrightarrow> xs = [] \<or> \<not>P (hd xs)" |
2468 |
by (cases xs) (auto simp: dropWhile_eq_Cons_conv) |
|
2469 |
||
71585 | 2470 |
lemma distinct_takeWhile[simp]: "distinct xs \<Longrightarrow> distinct (takeWhile P xs)" |
68719 | 2471 |
by (induct xs) (auto dest: set_takeWhileD) |
31077 | 2472 |
|
71585 | 2473 |
lemma distinct_dropWhile[simp]: "distinct xs \<Longrightarrow> distinct (dropWhile P xs)" |
68719 | 2474 |
by (induct xs) auto |
31077 | 2475 |
|
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
|
2476 |
lemma takeWhile_map: "takeWhile P (map f xs) = map f (takeWhile (P \<circ> f) xs)" |
68719 | 2477 |
by (induct xs) auto |
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
|
2478 |
|
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2479 |
lemma dropWhile_map: "dropWhile P (map f xs) = map f (dropWhile (P \<circ> f) xs)" |
68719 | 2480 |
by (induct xs) auto |
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
|
2481 |
|
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2482 |
lemma takeWhile_eq_take: "takeWhile P xs = take (length (takeWhile P xs)) xs" |
68719 | 2483 |
by (induct xs) auto |
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
|
2484 |
|
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2485 |
lemma dropWhile_eq_drop: "dropWhile P xs = drop (length (takeWhile P xs)) xs" |
68719 | 2486 |
by (induct xs) auto |
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
|
2487 |
|
58807 | 2488 |
lemma hd_dropWhile: "dropWhile P xs \<noteq> [] \<Longrightarrow> \<not> P (hd (dropWhile P xs))" |
68719 | 2489 |
by (induct xs) auto |
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
|
2490 |
|
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 |
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
|
2492 |
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
|
2493 |
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
|
2494 |
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
|
2495 |
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
|
2496 |
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
|
2497 |
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
|
2498 |
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
|
2499 |
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
|
2500 |
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
|
2501 |
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
|
2502 |
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
|
2503 |
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
|
2504 |
|
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2505 |
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
|
2506 |
"\<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
|
2507 |
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
|
2508 |
proof (induct xs arbitrary: n) |
60580 | 2509 |
case Nil |
2510 |
thus ?case by simp |
|
2511 |
next |
|
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
|
2512 |
case (Cons x xs) |
60580 | 2513 |
show ?case |
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
|
2514 |
proof (cases n) |
60580 | 2515 |
case 0 |
2516 |
with Cons show ?thesis by simp |
|
2517 |
next |
|
2518 |
case [simp]: (Suc n') |
|
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
|
2519 |
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
|
2520 |
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
|
2521 |
proof (rule Cons.hyps) |
60580 | 2522 |
fix i |
2523 |
assume "i < n'" "i < length xs" |
|
2524 |
thus "P (xs ! i)" using Cons.prems(1)[of "Suc i"] by simp |
|
2525 |
next |
|
2526 |
assume "n' < length xs" |
|
2527 |
thus "\<not> P (xs ! n')" using Cons by auto |
|
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
|
2528 |
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
|
2529 |
ultimately show ?thesis by simp |
68719 | 2530 |
qed |
60580 | 2531 |
qed |
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
|
2532 |
|
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2533 |
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
|
2534 |
"length (takeWhile P xs) < length xs \<Longrightarrow> \<not> P (xs ! length (takeWhile P xs))" |
68719 | 2535 |
by (induct xs) auto |
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
|
2536 |
|
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2537 |
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
|
2538 |
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
|
2539 |
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
|
2540 |
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
|
2541 |
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
|
2542 |
hence "length (takeWhile P xs) < length xs" using assms by simp |
60758 | 2543 |
thus ?thesis using all \<open>\<not> ?thesis\<close> nth_length_takeWhile[of P xs] by auto |
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
|
2544 |
qed |
31077 | 2545 |
|
17501 | 2546 |
lemma takeWhile_neq_rev: "\<lbrakk>distinct xs; x \<in> set xs\<rbrakk> \<Longrightarrow> |
58807 | 2547 |
takeWhile (\<lambda>y. y \<noteq> x) (rev xs) = rev (tl (dropWhile (\<lambda>y. y \<noteq> x) xs))" |
68719 | 2548 |
by(induct xs) (auto simp: takeWhile_tail[where l="[]"]) |
17501 | 2549 |
|
2550 |
lemma dropWhile_neq_rev: "\<lbrakk>distinct xs; x \<in> set xs\<rbrakk> \<Longrightarrow> |
|
2551 |
dropWhile (\<lambda>y. y \<noteq> x) (rev xs) = x # rev (takeWhile (\<lambda>y. y \<noteq> x) xs)" |
|
68709 | 2552 |
proof (induct xs) |
2553 |
case (Cons a xs) |
|
2554 |
then show ?case |
|
2555 |
by(auto, subst dropWhile_append2, auto) |
|
2556 |
qed simp |
|
17501 | 2557 |
|
18423 | 2558 |
lemma takeWhile_not_last: |
58807 | 2559 |
"distinct xs \<Longrightarrow> takeWhile (\<lambda>y. y \<noteq> last xs) xs = butlast xs" |
68719 | 2560 |
by(induction xs rule: induct_list012) auto |
18423 | 2561 |
|
44013
5cfc1c36ae97
moved recdef package to HOL/Library/Old_Recdef.thy
krauss
parents:
43594
diff
changeset
|
2562 |
lemma takeWhile_cong [fundef_cong]: |
67613 | 2563 |
"\<lbrakk>l = k; \<And>x. x \<in> set l \<Longrightarrow> P x = Q x\<rbrakk> |
2564 |
\<Longrightarrow> takeWhile P l = takeWhile Q k" |
|
68719 | 2565 |
by (induct k arbitrary: l) (simp_all) |
18336
1a2e30b37ed3
Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents:
18049
diff
changeset
|
2566 |
|
44013
5cfc1c36ae97
moved recdef package to HOL/Library/Old_Recdef.thy
krauss
parents:
43594
diff
changeset
|
2567 |
lemma dropWhile_cong [fundef_cong]: |
67613 | 2568 |
"\<lbrakk>l = k; \<And>x. x \<in> set l \<Longrightarrow> P x = Q x\<rbrakk> |
2569 |
\<Longrightarrow> dropWhile P l = dropWhile Q k" |
|
68719 | 2570 |
by (induct k arbitrary: l, simp_all) |
18336
1a2e30b37ed3
Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents:
18049
diff
changeset
|
2571 |
|
52380 | 2572 |
lemma takeWhile_idem [simp]: |
2573 |
"takeWhile P (takeWhile P xs) = takeWhile P xs" |
|
68719 | 2574 |
by (induct xs) auto |
52380 | 2575 |
|
2576 |
lemma dropWhile_idem [simp]: |
|
2577 |
"dropWhile P (dropWhile P xs) = dropWhile P xs" |
|
68719 | 2578 |
by (induct xs) auto |
52380 | 2579 |
|
13114 | 2580 |
|
69593 | 2581 |
subsubsection \<open>\<^const>\<open>zip\<close>\<close> |
13114 | 2582 |
|
13142 | 2583 |
lemma zip_Nil [simp]: "zip [] ys = []" |
68719 | 2584 |
by (induct ys) auto |
13114 | 2585 |
|
13142 | 2586 |
lemma zip_Cons_Cons [simp]: "zip (x # xs) (y # ys) = (x, y) # zip xs ys" |
68719 | 2587 |
by simp |
13114 | 2588 |
|
13142 | 2589 |
declare zip_Cons [simp del] |
13114 | 2590 |
|
36198 | 2591 |
lemma [code]: |
2592 |
"zip [] ys = []" |
|
2593 |
"zip xs [] = []" |
|
2594 |
"zip (x # xs) (y # ys) = (x, y) # zip xs ys" |
|
68719 | 2595 |
by (fact zip_Nil zip.simps(1) zip_Cons_Cons)+ |
36198 | 2596 |
|
15281 | 2597 |
lemma zip_Cons1: |
58807 | 2598 |
"zip (x#xs) ys = (case ys of [] \<Rightarrow> [] | y#ys \<Rightarrow> (x,y)#zip xs ys)" |
68719 | 2599 |
by(auto split:list.split) |
15281 | 2600 |
|
13142 | 2601 |
lemma length_zip [simp]: |
58807 | 2602 |
"length (zip xs ys) = min (length xs) (length ys)" |
68719 | 2603 |
by (induct xs ys rule:list_induct2') auto |
13114 | 2604 |
|
34978
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2605 |
lemma zip_obtain_same_length: |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2606 |
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
|
2607 |
\<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
|
2608 |
shows "P (zip xs ys)" |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2609 |
proof - |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2610 |
let ?n = "min (length xs) (length ys)" |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2611 |
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
|
2612 |
by (rule assms) simp_all |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2613 |
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
|
2614 |
proof (induct xs arbitrary: ys) |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2615 |
case Nil then show ?case by simp |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2616 |
next |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2617 |
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
|
2618 |
qed |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2619 |
ultimately show ?thesis by simp |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2620 |
qed |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2621 |
|
13114 | 2622 |
lemma zip_append1: |
58807 | 2623 |
"zip (xs @ ys) zs = |
2624 |
zip xs (take (length xs) zs) @ zip ys (drop (length xs) zs)" |
|
68719 | 2625 |
by (induct xs zs rule:list_induct2') auto |
13114 | 2626 |
|
2627 |
lemma zip_append2: |
|
58807 | 2628 |
"zip xs (ys @ zs) = |
2629 |
zip (take (length ys) xs) ys @ zip (drop (length ys) xs) zs" |
|
68719 | 2630 |
by (induct xs ys rule:list_induct2') auto |
13114 | 2631 |
|
13142 | 2632 |
lemma zip_append [simp]: |
71585 | 2633 |
"\<lbrakk>length xs = length us\<rbrakk> \<Longrightarrow> |
58807 | 2634 |
zip (xs@ys) (us@vs) = zip xs us @ zip ys vs" |
68719 | 2635 |
by (simp add: zip_append1) |
13114 | 2636 |
|
2637 |
lemma zip_rev: |
|
71585 | 2638 |
"length xs = length ys \<Longrightarrow> zip (rev xs) (rev ys) = rev (zip xs ys)" |
68719 | 2639 |
by (induct rule:list_induct2, simp_all) |
13114 | 2640 |
|
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
|
2641 |
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
|
2642 |
"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
|
2643 |
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
|
2644 |
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
|
2645 |
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
|
2646 |
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
|
2647 |
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
|
2648 |
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
|
2649 |
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
|
2650 |
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
|
2651 |
|
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2652 |
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
|
2653 |
"zip (map f xs) ys = map (\<lambda>(x, y). (f x, y)) (zip xs ys)" |
68719 | 2654 |
using zip_map_map[of f xs "\<lambda>x. x" ys] by simp |
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
|
2655 |
|
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2656 |
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
|
2657 |
"zip xs (map f ys) = map (\<lambda>(x, y). (x, f y)) (zip xs ys)" |
68719 | 2658 |
using zip_map_map[of "\<lambda>x. x" xs f ys] by simp |
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
|
2659 |
|
23096 | 2660 |
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
|
2661 |
"map f (zip (map g xs) ys) = map (%(x,y). f(g x, y)) (zip xs ys)" |
68719 | 2662 |
by (auto simp: zip_map1) |
23096 | 2663 |
|
2664 |
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
|
2665 |
"map f (zip xs (map g ys)) = map (%(x,y). f(x, g y)) (zip xs ys)" |
68719 | 2666 |
by (auto simp: zip_map2) |
23096 | 2667 |
|
60758 | 2668 |
text\<open>Courtesy of Andreas Lochbihler:\<close> |
31080 | 2669 |
lemma zip_same_conv_map: "zip xs xs = map (\<lambda>x. (x, x)) xs" |
68719 | 2670 |
by(induct xs) auto |
31080 | 2671 |
|
13142 | 2672 |
lemma nth_zip [simp]: |
71585 | 2673 |
"\<lbrakk>i < length xs; i < length ys\<rbrakk> \<Longrightarrow> (zip xs ys)!i = (xs!i, ys!i)" |
68709 | 2674 |
proof (induct ys arbitrary: i xs) |
2675 |
case (Cons y ys) |
|
2676 |
then show ?case |
|
2677 |
by (cases xs) (simp_all add: nth.simps split: nat.split) |
|
2678 |
qed auto |
|
13114 | 2679 |
|
2680 |
lemma set_zip: |
|
58807 | 2681 |
"set (zip xs ys) = {(xs!i, ys!i) | i. i < min (length xs) (length ys)}" |
68719 | 2682 |
by(simp add: set_conv_nth cong: rev_conj_cong) |
13114 | 2683 |
|
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
|
2684 |
lemma zip_same: "((a,b) \<in> set (zip xs xs)) = (a \<in> set xs \<and> a = b)" |
68719 | 2685 |
by(induct xs) auto |
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
|
2686 |
|
68709 | 2687 |
lemma zip_update: "zip (xs[i:=x]) (ys[i:=y]) = (zip xs ys)[i:=(x,y)]" |
2688 |
by (simp add: update_zip) |
|
13114 | 2689 |
|
13142 | 2690 |
lemma zip_replicate [simp]: |
24526 | 2691 |
"zip (replicate i x) (replicate j y) = replicate (min i j) (x,y)" |
68709 | 2692 |
proof (induct i arbitrary: j) |
2693 |
case (Suc i) |
|
2694 |
then show ?case |
|
2695 |
by (cases j, auto) |
|
2696 |
qed auto |
|
13114 | 2697 |
|
61630 | 2698 |
lemma zip_replicate1: "zip (replicate n x) ys = map (Pair x) (take n ys)" |
68719 | 2699 |
by(induction ys arbitrary: n)(case_tac [2] n, simp_all) |
61630 | 2700 |
|
68709 | 2701 |
lemma take_zip: "take n (zip xs ys) = zip (take n xs) (take n ys)" |
2702 |
proof (induct n arbitrary: xs ys) |
|
69850 | 2703 |
case 0 |
2704 |
then show ?case by simp |
|
2705 |
next |
|
2706 |
case Suc |
|
2707 |
then show ?case by (cases xs; cases ys) simp_all |
|
2708 |
qed |
|
68709 | 2709 |
|
2710 |
lemma drop_zip: "drop n (zip xs ys) = zip (drop n xs) (drop n ys)" |
|
2711 |
proof (induct n arbitrary: xs ys) |
|
69850 | 2712 |
case 0 |
2713 |
then show ?case by simp |
|
2714 |
next |
|
2715 |
case Suc |
|
2716 |
then show ?case by (cases xs; cases ys) simp_all |
|
2717 |
qed |
|
19487 | 2718 |
|
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
|
2719 |
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
|
2720 |
proof (induct xs arbitrary: ys) |
69850 | 2721 |
case Nil |
2722 |
then show ?case by simp |
|
2723 |
next |
|
2724 |
case Cons |
|
2725 |
then show ?case by (cases ys) auto |
|
2726 |
qed |
|
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
|
2727 |
|
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2728 |
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
|
2729 |
proof (induct xs arbitrary: ys) |
69850 | 2730 |
case Nil |
2731 |
then show ?case by simp |
|
2732 |
next |
|
2733 |
case Cons |
|
2734 |
then show ?case by (cases ys) auto |
|
2735 |
qed |
|
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
|
2736 |
|
58807 | 2737 |
lemma set_zip_leftD: "(x,y)\<in> set (zip xs ys) \<Longrightarrow> x \<in> set xs" |
68719 | 2738 |
by (induct xs ys rule:list_induct2') auto |
22493
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
krauss
parents:
22422
diff
changeset
|
2739 |
|
58807 | 2740 |
lemma set_zip_rightD: "(x,y)\<in> set (zip xs ys) \<Longrightarrow> y \<in> set ys" |
68719 | 2741 |
by (induct xs ys rule:list_induct2') auto |
13142 | 2742 |
|
23983 | 2743 |
lemma in_set_zipE: |
67613 | 2744 |
"(x,y) \<in> set(zip xs ys) \<Longrightarrow> (\<lbrakk> x \<in> set xs; y \<in> set ys \<rbrakk> \<Longrightarrow> R) \<Longrightarrow> R" |
68719 | 2745 |
by(blast dest: set_zip_leftD set_zip_rightD) |
23983 | 2746 |
|
58807 | 2747 |
lemma zip_map_fst_snd: "zip (map fst zs) (map snd zs) = zs" |
68719 | 2748 |
by (induct zs) simp_all |
29829 | 2749 |
|
2750 |
lemma zip_eq_conv: |
|
2751 |
"length xs = length ys \<Longrightarrow> zip xs ys = zs \<longleftrightarrow> map fst zs = xs \<and> map snd zs = ys" |
|
68719 | 2752 |
by (auto simp add: zip_map_fst_snd) |
29829 | 2753 |
|
51173 | 2754 |
lemma in_set_zip: |
2755 |
"p \<in> set (zip xs ys) \<longleftrightarrow> (\<exists>n. xs ! n = fst p \<and> ys ! n = snd p |
|
58807 | 2756 |
\<and> n < length xs \<and> n < length ys)" |
68719 | 2757 |
by (cases p) (auto simp add: set_zip) |
51173 | 2758 |
|
66584 | 2759 |
lemma in_set_impl_in_set_zip1: |
2760 |
assumes "length xs = length ys" |
|
2761 |
assumes "x \<in> set xs" |
|
2762 |
obtains y where "(x, y) \<in> set (zip xs ys)" |
|
2763 |
proof - |
|
2764 |
from assms have "x \<in> set (map fst (zip xs ys))" by simp |
|
2765 |
from this that show ?thesis by fastforce |
|
2766 |
qed |
|
2767 |
||
2768 |
lemma in_set_impl_in_set_zip2: |
|
2769 |
assumes "length xs = length ys" |
|
2770 |
assumes "y \<in> set ys" |
|
2771 |
obtains x where "(x, y) \<in> set (zip xs ys)" |
|
2772 |
proof - |
|
2773 |
from assms have "y \<in> set (map snd (zip xs ys))" by simp |
|
2774 |
from this that show ?thesis by fastforce |
|
2775 |
qed |
|
2776 |
||
70226 | 2777 |
lemma zip_eq_Nil_iff: |
2778 |
"zip xs ys = [] \<longleftrightarrow> xs = [] \<or> ys = []" |
|
2779 |
by (cases xs; cases ys) simp_all |
|
2780 |
||
2781 |
lemma zip_eq_ConsE: |
|
2782 |
assumes "zip xs ys = xy # xys" |
|
2783 |
obtains x xs' y ys' where "xs = x # xs'" |
|
2784 |
and "ys = y # ys'" and "xy = (x, y)" |
|
2785 |
and "xys = zip xs' ys'" |
|
2786 |
proof - |
|
2787 |
from assms have "xs \<noteq> []" and "ys \<noteq> []" |
|
2788 |
using zip_eq_Nil_iff [of xs ys] by simp_all |
|
2789 |
then obtain x xs' y ys' where xs: "xs = x # xs'" |
|
2790 |
and ys: "ys = y # ys'" |
|
2791 |
by (cases xs; cases ys) auto |
|
2792 |
with assms have "xy = (x, y)" and "xys = zip xs' ys'" |
|
2793 |
by simp_all |
|
2794 |
with xs ys show ?thesis .. |
|
2795 |
qed |
|
2796 |
||
70911 | 2797 |
lemma semilattice_map2: |
2798 |
"semilattice (map2 (\<^bold>*))" if "semilattice (\<^bold>*)" |
|
2799 |
for f (infixl "\<^bold>*" 70) |
|
2800 |
proof - |
|
2801 |
from that interpret semilattice f . |
|
2802 |
show ?thesis |
|
2803 |
proof |
|
2804 |
show "map2 (\<^bold>*) (map2 (\<^bold>*) xs ys) zs = map2 (\<^bold>*) xs (map2 (\<^bold>*) ys zs)" |
|
2805 |
for xs ys zs :: "'a list" |
|
2806 |
proof (induction "zip xs (zip ys zs)" arbitrary: xs ys zs) |
|
2807 |
case Nil |
|
2808 |
from Nil [symmetric] show ?case |
|
2809 |
by (auto simp add: zip_eq_Nil_iff) |
|
2810 |
next |
|
2811 |
case (Cons xyz xyzs) |
|
2812 |
from Cons.hyps(2) [symmetric] show ?case |
|
2813 |
by (rule zip_eq_ConsE) (erule zip_eq_ConsE, |
|
2814 |
auto intro: Cons.hyps(1) simp add: ac_simps) |
|
2815 |
qed |
|
2816 |
show "map2 (\<^bold>*) xs ys = map2 (\<^bold>*) ys xs" |
|
2817 |
for xs ys :: "'a list" |
|
2818 |
proof (induction "zip xs ys" arbitrary: xs ys) |
|
2819 |
case Nil |
|
2820 |
then show ?case |
|
2821 |
by (auto simp add: zip_eq_Nil_iff dest: sym) |
|
2822 |
next |
|
2823 |
case (Cons xy xys) |
|
2824 |
from Cons.hyps(2) [symmetric] show ?case |
|
2825 |
by (rule zip_eq_ConsE) (auto intro: Cons.hyps(1) simp add: ac_simps) |
|
2826 |
qed |
|
2827 |
show "map2 (\<^bold>*) xs xs = xs" |
|
2828 |
for xs :: "'a list" |
|
2829 |
by (induction xs) simp_all |
|
2830 |
qed |
|
2831 |
qed |
|
2832 |
||
51173 | 2833 |
lemma pair_list_eqI: |
2834 |
assumes "map fst xs = map fst ys" and "map snd xs = map snd ys" |
|
2835 |
shows "xs = ys" |
|
2836 |
proof - |
|
2837 |
from assms(1) have "length xs = length ys" by (rule map_eq_imp_length_eq) |
|
2838 |
from this assms show ?thesis |
|
2839 |
by (induct xs ys rule: list_induct2) (simp_all add: prod_eqI) |
|
2840 |
qed |
|
2841 |
||
71423 | 2842 |
lemma hd_zip: |
2843 |
\<open>hd (zip xs ys) = (hd xs, hd ys)\<close> if \<open>xs \<noteq> []\<close> and \<open>ys \<noteq> []\<close> |
|
2844 |
using that by (cases xs; cases ys) simp_all |
|
2845 |
||
2846 |
lemma last_zip: |
|
2847 |
\<open>last (zip xs ys) = (last xs, last ys)\<close> if \<open>xs \<noteq> []\<close> and \<open>ys \<noteq> []\<close> |
|
2848 |
and \<open>length xs = length ys\<close> |
|
2849 |
using that by (cases xs rule: rev_cases; cases ys rule: rev_cases) simp_all |
|
2850 |
||
35115 | 2851 |
|
69593 | 2852 |
subsubsection \<open>\<^const>\<open>list_all2\<close>\<close> |
13114 | 2853 |
|
64963 | 2854 |
lemma list_all2_lengthD [intro?]: |
71585 | 2855 |
"list_all2 P xs ys \<Longrightarrow> length xs = length ys" |
68719 | 2856 |
by (simp add: list_all2_iff) |
19607
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
2857 |
|
19787 | 2858 |
lemma list_all2_Nil [iff, code]: "list_all2 P [] ys = (ys = [])" |
68719 | 2859 |
by (simp add: list_all2_iff) |
19607
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
2860 |
|
19787 | 2861 |
lemma list_all2_Nil2 [iff, code]: "list_all2 P xs [] = (xs = [])" |
68719 | 2862 |
by (simp add: list_all2_iff) |
19607
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
2863 |
|
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
2864 |
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
|
2865 |
"list_all2 P (x # xs) (y # ys) = (P x y \<and> list_all2 P xs ys)" |
68719 | 2866 |
by (auto simp add: list_all2_iff) |
13114 | 2867 |
|
2868 |
lemma list_all2_Cons1: |
|
58807 | 2869 |
"list_all2 P (x # xs) ys = (\<exists>z zs. ys = z # zs \<and> P x z \<and> list_all2 P xs zs)" |
68719 | 2870 |
by (cases ys) auto |
13114 | 2871 |
|
2872 |
lemma list_all2_Cons2: |
|
58807 | 2873 |
"list_all2 P xs (y # ys) = (\<exists>z zs. xs = z # zs \<and> P z y \<and> list_all2 P zs ys)" |
68719 | 2874 |
by (cases xs) auto |
13114 | 2875 |
|
45794 | 2876 |
lemma list_all2_induct |
2877 |
[consumes 1, case_names Nil Cons, induct set: list_all2]: |
|
2878 |
assumes P: "list_all2 P xs ys" |
|
2879 |
assumes Nil: "R [] []" |
|
47640 | 2880 |
assumes Cons: "\<And>x xs y ys. |
2881 |
\<lbrakk>P x y; list_all2 P xs ys; R xs ys\<rbrakk> \<Longrightarrow> R (x # xs) (y # ys)" |
|
45794 | 2882 |
shows "R xs ys" |
68719 | 2883 |
using P |
2884 |
by (induct xs arbitrary: ys) (auto simp add: list_all2_Cons1 Nil Cons) |
|
45794 | 2885 |
|
13142 | 2886 |
lemma list_all2_rev [iff]: |
58807 | 2887 |
"list_all2 P (rev xs) (rev ys) = list_all2 P xs ys" |
68719 | 2888 |
by (simp add: list_all2_iff zip_rev cong: conj_cong) |
13114 | 2889 |
|
13863 | 2890 |
lemma list_all2_rev1: |
58807 | 2891 |
"list_all2 P (rev xs) ys = list_all2 P xs (rev ys)" |
68719 | 2892 |
by (subst list_all2_rev [symmetric]) simp |
13863 | 2893 |
|
13114 | 2894 |
lemma list_all2_append1: |
58807 | 2895 |
"list_all2 P (xs @ ys) zs = |
67091 | 2896 |
(\<exists>us vs. zs = us @ vs \<and> length us = length xs \<and> length vs = length ys \<and> |
68709 | 2897 |
list_all2 P xs us \<and> list_all2 P ys vs)" (is "?lhs = ?rhs") |
2898 |
proof |
|
2899 |
assume ?lhs |
|
2900 |
then show ?rhs |
|
2901 |
apply (rule_tac x = "take (length xs) zs" in exI) |
|
2902 |
apply (rule_tac x = "drop (length xs) zs" in exI) |
|
2903 |
apply (force split: nat_diff_split simp add: list_all2_iff zip_append1) |
|
2904 |
done |
|
2905 |
next |
|
2906 |
assume ?rhs |
|
2907 |
then show ?lhs |
|
2908 |
by (auto simp add: list_all2_iff) |
|
2909 |
qed |
|
13114 | 2910 |
|
2911 |
lemma list_all2_append2: |
|
58807 | 2912 |
"list_all2 P xs (ys @ zs) = |
67091 | 2913 |
(\<exists>us vs. xs = us @ vs \<and> length us = length ys \<and> length vs = length zs \<and> |
68709 | 2914 |
list_all2 P us ys \<and> list_all2 P vs zs)" (is "?lhs = ?rhs") |
2915 |
proof |
|
2916 |
assume ?lhs |
|
2917 |
then show ?rhs |
|
2918 |
apply (rule_tac x = "take (length ys) xs" in exI) |
|
2919 |
apply (rule_tac x = "drop (length ys) xs" in exI) |
|
2920 |
apply (force split: nat_diff_split simp add: list_all2_iff zip_append2) |
|
2921 |
done |
|
2922 |
next |
|
2923 |
assume ?rhs |
|
2924 |
then show ?lhs |
|
2925 |
by (auto simp add: list_all2_iff) |
|
2926 |
qed |
|
13114 | 2927 |
|
13863 | 2928 |
lemma list_all2_append: |
14247 | 2929 |
"length xs = length ys \<Longrightarrow> |
2930 |
list_all2 P (xs@us) (ys@vs) = (list_all2 P xs ys \<and> list_all2 P us vs)" |
|
68719 | 2931 |
by (induct rule:list_induct2, simp_all) |
13863 | 2932 |
|
2933 |
lemma list_all2_appendI [intro?, trans]: |
|
2934 |
"\<lbrakk> list_all2 P a b; list_all2 P c d \<rbrakk> \<Longrightarrow> list_all2 P (a@c) (b@d)" |
|
68719 | 2935 |
by (simp add: list_all2_append list_all2_lengthD) |
13863 | 2936 |
|
13114 | 2937 |
lemma list_all2_conv_all_nth: |
58807 | 2938 |
"list_all2 P xs ys = |
2939 |
(length xs = length ys \<and> (\<forall>i < length xs. P (xs!i) (ys!i)))" |
|
68719 | 2940 |
by (force simp add: list_all2_iff set_zip) |
13114 | 2941 |
|
13883
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
2942 |
lemma list_all2_trans: |
71585 | 2943 |
assumes tr: "!!a b c. P1 a b \<Longrightarrow> P2 b c \<Longrightarrow> P3 a c" |
2944 |
shows "!!bs cs. list_all2 P1 as bs \<Longrightarrow> list_all2 P2 bs cs \<Longrightarrow> list_all2 P3 as cs" |
|
68719 | 2945 |
(is "!!bs cs. PROP ?Q as bs cs") |
13883
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
2946 |
proof (induct as) |
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
2947 |
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
|
2948 |
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
|
2949 |
proof (induct bs) |
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
2950 |
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
|
2951 |
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
|
2952 |
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
|
2953 |
qed simp |
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
2954 |
qed simp |
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
2955 |
|
13863 | 2956 |
lemma list_all2_all_nthI [intro?]: |
2957 |
"length a = length b \<Longrightarrow> (\<And>n. n < length a \<Longrightarrow> P (a!n) (b!n)) \<Longrightarrow> list_all2 P a b" |
|
68719 | 2958 |
by (simp add: list_all2_conv_all_nth) |
13863 | 2959 |
|
14395 | 2960 |
lemma list_all2I: |
61032
b57df8eecad6
standardized some occurences of ancient "split" alias
haftmann
parents:
61031
diff
changeset
|
2961 |
"\<forall>x \<in> set (zip a b). case_prod P x \<Longrightarrow> length a = length b \<Longrightarrow> list_all2 P a b" |
68719 | 2962 |
by (simp add: list_all2_iff) |
14395 | 2963 |
|
14328 | 2964 |
lemma list_all2_nthD: |
13863 | 2965 |
"\<lbrakk> list_all2 P xs ys; p < size xs \<rbrakk> \<Longrightarrow> P (xs!p) (ys!p)" |
68719 | 2966 |
by (simp add: list_all2_conv_all_nth) |
13863 | 2967 |
|
14302 | 2968 |
lemma list_all2_nthD2: |
2969 |
"\<lbrakk>list_all2 P xs ys; p < size ys\<rbrakk> \<Longrightarrow> P (xs!p) (ys!p)" |
|
68719 | 2970 |
by (frule list_all2_lengthD) (auto intro: list_all2_nthD) |
14302 | 2971 |
|
64963 | 2972 |
lemma list_all2_map1: |
13863 | 2973 |
"list_all2 P (map f as) bs = list_all2 (\<lambda>x y. P (f x) y) as bs" |
68719 | 2974 |
by (simp add: list_all2_conv_all_nth) |
13863 | 2975 |
|
64963 | 2976 |
lemma list_all2_map2: |
13863 | 2977 |
"list_all2 P as (map f bs) = list_all2 (\<lambda>x y. P x (f y)) as bs" |
68719 | 2978 |
by (auto simp add: list_all2_conv_all_nth) |
13863 | 2979 |
|
14316
91b897b9a2dc
added some [intro?] and [trans] for list_all2 lemmas
kleing
parents:
14302
diff
changeset
|
2980 |
lemma list_all2_refl [intro?]: |
13863 | 2981 |
"(\<And>x. P x x) \<Longrightarrow> list_all2 P xs xs" |
68719 | 2982 |
by (simp add: list_all2_conv_all_nth) |
13863 | 2983 |
|
2984 |
lemma list_all2_update_cong: |
|
46669
c1d2ab32174a
one general list_all2_update_cong instead of two special ones
bulwahn
parents:
46664
diff
changeset
|
2985 |
"\<lbrakk> list_all2 P xs ys; P x y \<rbrakk> \<Longrightarrow> list_all2 P (xs[i:=x]) (ys[i:=y])" |
68719 | 2986 |
by (cases "i < length ys") (auto simp add: list_all2_conv_all_nth nth_list_update) |
13863 | 2987 |
|
14302 | 2988 |
lemma list_all2_takeI [simp,intro?]: |
24526 | 2989 |
"list_all2 P xs ys \<Longrightarrow> list_all2 P (take n xs) (take n ys)" |
68709 | 2990 |
proof (induct xs arbitrary: n ys) |
2991 |
case (Cons x xs) |
|
2992 |
then show ?case |
|
2993 |
by (cases n) (auto simp: list_all2_Cons1) |
|
2994 |
qed auto |
|
14302 | 2995 |
|
2996 |
lemma list_all2_dropI [simp,intro?]: |
|
68709 | 2997 |
"list_all2 P xs ys \<Longrightarrow> list_all2 P (drop n xs) (drop n ys)" |
2998 |
proof (induct xs arbitrary: n ys) |
|
2999 |
case (Cons x xs) |
|
3000 |
then show ?case |
|
3001 |
by (cases n) (auto simp: list_all2_Cons1) |
|
3002 |
qed auto |
|
13863 | 3003 |
|
14327 | 3004 |
lemma list_all2_mono [intro?]: |
24526 | 3005 |
"list_all2 P xs ys \<Longrightarrow> (\<And>xs ys. P xs ys \<Longrightarrow> Q xs ys) \<Longrightarrow> list_all2 Q xs ys" |
68709 | 3006 |
by (rule list.rel_mono_strong) |
13863 | 3007 |
|
22551 | 3008 |
lemma list_all2_eq: |
67399 | 3009 |
"xs = ys \<longleftrightarrow> list_all2 (=) xs ys" |
68719 | 3010 |
by (induct xs ys rule: list_induct2') auto |
22551 | 3011 |
|
40230 | 3012 |
lemma list_eq_iff_zip_eq: |
3013 |
"xs = ys \<longleftrightarrow> length xs = length ys \<and> (\<forall>(x,y) \<in> set (zip xs ys). x = y)" |
|
68719 | 3014 |
by(auto simp add: set_zip list_all2_eq list_all2_conv_all_nth cong: conj_cong) |
40230 | 3015 |
|
57308 | 3016 |
lemma list_all2_same: "list_all2 P xs xs \<longleftrightarrow> (\<forall>x\<in>set xs. P x x)" |
68719 | 3017 |
by(auto simp add: list_all2_conv_all_nth set_conv_nth) |
13142 | 3018 |
|
61630 | 3019 |
lemma zip_assoc: |
3020 |
"zip xs (zip ys zs) = map (\<lambda>((x, y), z). (x, y, z)) (zip (zip xs ys) zs)" |
|
68719 | 3021 |
by(rule list_all2_all_nthI[where P="(=)", unfolded list.rel_eq]) simp_all |
61630 | 3022 |
|
3023 |
lemma zip_commute: "zip xs ys = map (\<lambda>(x, y). (y, x)) (zip ys xs)" |
|
68719 | 3024 |
by(rule list_all2_all_nthI[where P="(=)", unfolded list.rel_eq]) simp_all |
61630 | 3025 |
|
3026 |
lemma zip_left_commute: |
|
3027 |
"zip xs (zip ys zs) = map (\<lambda>(y, (x, z)). (x, y, z)) (zip ys (zip xs zs))" |
|
68719 | 3028 |
by(rule list_all2_all_nthI[where P="(=)", unfolded list.rel_eq]) simp_all |
61630 | 3029 |
|
3030 |
lemma zip_replicate2: "zip xs (replicate n y) = map (\<lambda>x. (x, y)) (take n xs)" |
|
68719 | 3031 |
by(subst zip_commute)(simp add: zip_replicate1) |
61630 | 3032 |
|
69593 | 3033 |
subsubsection \<open>\<^const>\<open>List.product\<close> and \<^const>\<open>product_lists\<close>\<close> |
49948
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
3034 |
|
63720 | 3035 |
lemma product_concat_map: |
3036 |
"List.product xs ys = concat (map (\<lambda>x. map (\<lambda>y. (x,y)) ys) xs)" |
|
68719 | 3037 |
by(induction xs) (simp)+ |
63720 | 3038 |
|
58807 | 3039 |
lemma set_product[simp]: "set (List.product xs ys) = set xs \<times> set ys" |
68719 | 3040 |
by (induct xs) auto |
49948
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
3041 |
|
51160
599ff65b85e2
systematic conversions between nat and nibble/char;
haftmann
parents:
51112
diff
changeset
|
3042 |
lemma length_product [simp]: |
599ff65b85e2
systematic conversions between nat and nibble/char;
haftmann
parents:
51112
diff
changeset
|
3043 |
"length (List.product xs ys) = length xs * length ys" |
68719 | 3044 |
by (induct xs) simp_all |
51160
599ff65b85e2
systematic conversions between nat and nibble/char;
haftmann
parents:
51112
diff
changeset
|
3045 |
|
599ff65b85e2
systematic conversions between nat and nibble/char;
haftmann
parents:
51112
diff
changeset
|
3046 |
lemma product_nth: |
599ff65b85e2
systematic conversions between nat and nibble/char;
haftmann
parents:
51112
diff
changeset
|
3047 |
assumes "n < length xs * length ys" |
599ff65b85e2
systematic conversions between nat and nibble/char;
haftmann
parents:
51112
diff
changeset
|
3048 |
shows "List.product xs ys ! n = (xs ! (n div length ys), ys ! (n mod length ys))" |
68719 | 3049 |
using assms proof (induct xs arbitrary: n) |
51160
599ff65b85e2
systematic conversions between nat and nibble/char;
haftmann
parents:
51112
diff
changeset
|
3050 |
case Nil then show ?case by simp |
599ff65b85e2
systematic conversions between nat and nibble/char;
haftmann
parents:
51112
diff
changeset
|
3051 |
next |
599ff65b85e2
systematic conversions between nat and nibble/char;
haftmann
parents:
51112
diff
changeset
|
3052 |
case (Cons x xs n) |
599ff65b85e2
systematic conversions between nat and nibble/char;
haftmann
parents:
51112
diff
changeset
|
3053 |
then have "length ys > 0" by auto |
599ff65b85e2
systematic conversions between nat and nibble/char;
haftmann
parents:
51112
diff
changeset
|
3054 |
with Cons show ?case |
599ff65b85e2
systematic conversions between nat and nibble/char;
haftmann
parents:
51112
diff
changeset
|
3055 |
by (auto simp add: nth_append not_less le_mod_geq le_div_geq) |
599ff65b85e2
systematic conversions between nat and nibble/char;
haftmann
parents:
51112
diff
changeset
|
3056 |
qed |
599ff65b85e2
systematic conversions between nat and nibble/char;
haftmann
parents:
51112
diff
changeset
|
3057 |
|
64963 | 3058 |
lemma in_set_product_lists_length: |
53721
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
3059 |
"xs \<in> set (product_lists xss) \<Longrightarrow> length xs = length xss" |
68719 | 3060 |
by (induct xss arbitrary: xs) auto |
53721
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
3061 |
|
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
3062 |
lemma product_lists_set: |
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
3063 |
"set (product_lists xss) = {xs. list_all2 (\<lambda>x ys. x \<in> set ys) xs xss}" (is "?L = Collect ?R") |
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
3064 |
proof (intro equalityI subsetI, unfold mem_Collect_eq) |
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
3065 |
fix xs assume "xs \<in> ?L" |
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
3066 |
then have "length xs = length xss" by (rule in_set_product_lists_length) |
60758 | 3067 |
from this \<open>xs \<in> ?L\<close> show "?R xs" by (induct xs xss rule: list_induct2) auto |
53721
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
3068 |
next |
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
3069 |
fix xs assume "?R xs" |
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
3070 |
then show "xs \<in> ?L" by induct auto |
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
3071 |
qed |
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
3072 |
|
49948
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
3073 |
|
69593 | 3074 |
subsubsection \<open>\<^const>\<open>fold\<close> with natural argument order\<close> |
60758 | 3075 |
|
61799 | 3076 |
lemma fold_simps [code]: \<comment> \<open>eta-expanded variant for generated code -- enables tail-recursion optimisation in Scala\<close> |
48828
441a4eed7823
prefer eta-expanded code equations for fold, to accomodate tail recursion optimisation in Scala
haftmann
parents:
48619
diff
changeset
|
3077 |
"fold f [] s = s" |
64963 | 3078 |
"fold f (x # xs) s = fold f xs (f x s)" |
68719 | 3079 |
by simp_all |
48828
441a4eed7823
prefer eta-expanded code equations for fold, to accomodate tail recursion optimisation in Scala
haftmann
parents:
48619
diff
changeset
|
3080 |
|
46133
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3081 |
lemma fold_remove1_split: |
58807 | 3082 |
"\<lbrakk> \<And>x y. x \<in> set xs \<Longrightarrow> y \<in> set xs \<Longrightarrow> f x \<circ> f y = f y \<circ> f x; |
3083 |
x \<in> set xs \<rbrakk> |
|
3084 |
\<Longrightarrow> fold f xs = fold f (remove1 x xs) \<circ> f x" |
|
68719 | 3085 |
by (induct xs) (auto simp add: comp_assoc) |
46133
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3086 |
|
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3087 |
lemma fold_cong [fundef_cong]: |
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3088 |
"a = b \<Longrightarrow> xs = ys \<Longrightarrow> (\<And>x. x \<in> set xs \<Longrightarrow> f x = g x) |
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3089 |
\<Longrightarrow> fold f xs a = fold g ys b" |
68719 | 3090 |
by (induct ys arbitrary: a b xs) simp_all |
58807 | 3091 |
|
3092 |
lemma fold_id: "(\<And>x. x \<in> set xs \<Longrightarrow> f x = id) \<Longrightarrow> fold f xs = id" |
|
68719 | 3093 |
by (induct xs) simp_all |
46133
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3094 |
|
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3095 |
lemma fold_commute: |
58807 | 3096 |
"(\<And>x. x \<in> set xs \<Longrightarrow> h \<circ> g x = f x \<circ> h) \<Longrightarrow> h \<circ> fold g xs = fold f xs \<circ> h" |
68719 | 3097 |
by (induct xs) (simp_all add: fun_eq_iff) |
46133
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3098 |
|
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3099 |
lemma fold_commute_apply: |
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3100 |
assumes "\<And>x. x \<in> set xs \<Longrightarrow> h \<circ> g x = f x \<circ> h" |
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3101 |
shows "h (fold g xs s) = fold f xs (h s)" |
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3102 |
proof - |
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3103 |
from assms have "h \<circ> fold g xs = fold f xs \<circ> h" by (rule fold_commute) |
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3104 |
then show ?thesis by (simp add: fun_eq_iff) |
37605
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
3105 |
qed |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
3106 |
|
64963 | 3107 |
lemma fold_invariant: |
58807 | 3108 |
"\<lbrakk> \<And>x. x \<in> set xs \<Longrightarrow> Q x; P s; \<And>x s. Q x \<Longrightarrow> P s \<Longrightarrow> P (f x s) \<rbrakk> |
3109 |
\<Longrightarrow> P (fold f xs s)" |
|
68719 | 3110 |
by (induct xs arbitrary: s) simp_all |
58807 | 3111 |
|
3112 |
lemma fold_append [simp]: "fold f (xs @ ys) = fold f ys \<circ> fold f xs" |
|
68719 | 3113 |
by (induct xs) simp_all |
58807 | 3114 |
|
67091 | 3115 |
lemma fold_map [code_unfold]: "fold g (map f xs) = fold (g \<circ> f) xs" |
68719 | 3116 |
by (induct xs) simp_all |
46133
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3117 |
|
58437 | 3118 |
lemma fold_filter: |
3119 |
"fold f (filter P xs) = fold (\<lambda>x. if P x then f x else id) xs" |
|
68719 | 3120 |
by (induct xs) simp_all |
58437 | 3121 |
|
46133
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3122 |
lemma fold_rev: |
58807 | 3123 |
"(\<And>x y. x \<in> set xs \<Longrightarrow> y \<in> set xs \<Longrightarrow> f y \<circ> f x = f x \<circ> f y) |
3124 |
\<Longrightarrow> fold f (rev xs) = fold f xs" |
|
68719 | 3125 |
by (induct xs) (simp_all add: fold_commute_apply fun_eq_iff) |
58807 | 3126 |
|
3127 |
lemma fold_Cons_rev: "fold Cons xs = append (rev xs)" |
|
68719 | 3128 |
by (induct xs) simp_all |
58807 | 3129 |
|
3130 |
lemma rev_conv_fold [code]: "rev xs = fold Cons xs []" |
|
68719 | 3131 |
by (simp add: fold_Cons_rev) |
58807 | 3132 |
|
3133 |
lemma fold_append_concat_rev: "fold append xss = append (concat (rev xss))" |
|
68719 | 3134 |
by (induct xss) simp_all |
46133
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3135 |
|
69593 | 3136 |
text \<open>\<^const>\<open>Finite_Set.fold\<close> and \<^const>\<open>fold\<close>\<close> |
46133
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3137 |
|
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3138 |
lemma (in comp_fun_commute) fold_set_fold_remdups: |
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3139 |
"Finite_Set.fold f y (set xs) = fold f (remdups xs) y" |
68719 | 3140 |
by (rule sym, induct xs arbitrary: y) (simp_all add: fold_fun_left_comm insert_absorb) |
48619 | 3141 |
|
46133
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3142 |
lemma (in comp_fun_idem) fold_set_fold: |
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3143 |
"Finite_Set.fold f y (set xs) = fold f xs y" |
68719 | 3144 |
by (rule sym, induct xs arbitrary: y) (simp_all add: fold_fun_left_comm) |
58807 | 3145 |
|
3146 |
lemma union_set_fold [code]: "set xs \<union> A = fold Set.insert xs A" |
|
46147
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
3147 |
proof - |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
3148 |
interpret comp_fun_idem Set.insert |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
3149 |
by (fact comp_fun_idem_insert) |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
3150 |
show ?thesis by (simp add: union_fold_insert fold_set_fold) |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
3151 |
qed |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
3152 |
|
47397
d654c73e4b12
no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents:
47131
diff
changeset
|
3153 |
lemma union_coset_filter [code]: |
d654c73e4b12
no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents:
47131
diff
changeset
|
3154 |
"List.coset xs \<union> A = List.coset (List.filter (\<lambda>x. x \<notin> A) xs)" |
68719 | 3155 |
by auto |
58807 | 3156 |
|
3157 |
lemma minus_set_fold [code]: "A - set xs = fold Set.remove xs A" |
|
46147
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
3158 |
proof - |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
3159 |
interpret comp_fun_idem Set.remove |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
3160 |
by (fact comp_fun_idem_remove) |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
3161 |
show ?thesis |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
3162 |
by (simp add: minus_fold_remove [of _ A] fold_set_fold) |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
3163 |
qed |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
3164 |
|
47397
d654c73e4b12
no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents:
47131
diff
changeset
|
3165 |
lemma minus_coset_filter [code]: |
d654c73e4b12
no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents:
47131
diff
changeset
|
3166 |
"A - List.coset xs = set (List.filter (\<lambda>x. x \<in> A) xs)" |
68719 | 3167 |
by auto |
47397
d654c73e4b12
no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents:
47131
diff
changeset
|
3168 |
|
d654c73e4b12
no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents:
47131
diff
changeset
|
3169 |
lemma inter_set_filter [code]: |
d654c73e4b12
no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents:
47131
diff
changeset
|
3170 |
"A \<inter> set xs = set (List.filter (\<lambda>x. x \<in> A) xs)" |
68719 | 3171 |
by auto |
47397
d654c73e4b12
no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents:
47131
diff
changeset
|
3172 |
|
d654c73e4b12
no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents:
47131
diff
changeset
|
3173 |
lemma inter_coset_fold [code]: |
d654c73e4b12
no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents:
47131
diff
changeset
|
3174 |
"A \<inter> List.coset xs = fold Set.remove xs A" |
68719 | 3175 |
by (simp add: Diff_eq [symmetric] minus_set_fold) |
47397
d654c73e4b12
no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents:
47131
diff
changeset
|
3176 |
|
54885 | 3177 |
lemma (in semilattice_set) set_eq_fold [code]: |
51489 | 3178 |
"F (set (x # xs)) = fold f xs x" |
46133
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3179 |
proof - |
51489 | 3180 |
interpret comp_fun_idem f |
61169 | 3181 |
by standard (simp_all add: fun_eq_iff left_commute) |
51489 | 3182 |
show ?thesis by (simp add: eq_fold fold_set_fold) |
46133
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3183 |
qed |
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3184 |
|
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3185 |
lemma (in complete_lattice) Inf_set_fold: |
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3186 |
"Inf (set xs) = fold inf xs top" |
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3187 |
proof - |
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3188 |
interpret comp_fun_idem "inf :: 'a \<Rightarrow> 'a \<Rightarrow> 'a" |
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3189 |
by (fact comp_fun_idem_inf) |
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3190 |
show ?thesis by (simp add: Inf_fold_inf fold_set_fold inf_commute) |
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3191 |
qed |
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3192 |
|
47397
d654c73e4b12
no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents:
47131
diff
changeset
|
3193 |
declare Inf_set_fold [where 'a = "'a set", code] |
d654c73e4b12
no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents:
47131
diff
changeset
|
3194 |
|
46133
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3195 |
lemma (in complete_lattice) Sup_set_fold: |
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3196 |
"Sup (set xs) = fold sup xs bot" |
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3197 |
proof - |
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3198 |
interpret comp_fun_idem "sup :: 'a \<Rightarrow> 'a \<Rightarrow> 'a" |
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3199 |
by (fact comp_fun_idem_sup) |
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3200 |
show ?thesis by (simp add: Sup_fold_sup fold_set_fold sup_commute) |
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3201 |
qed |
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3202 |
|
47397
d654c73e4b12
no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents:
47131
diff
changeset
|
3203 |
declare Sup_set_fold [where 'a = "'a set", code] |
d654c73e4b12
no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents:
47131
diff
changeset
|
3204 |
|
46133
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3205 |
lemma (in complete_lattice) INF_set_fold: |
69275 | 3206 |
"\<Sqinter>(f ` set xs) = fold (inf \<circ> f) xs top" |
68781 | 3207 |
using Inf_set_fold [of "map f xs"] by (simp add: fold_map) |
46133
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3208 |
|
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3209 |
lemma (in complete_lattice) SUP_set_fold: |
69275 | 3210 |
"\<Squnion>(f ` set xs) = fold (sup \<circ> f) xs bot" |
68781 | 3211 |
using Sup_set_fold [of "map f xs"] by (simp add: fold_map) |
46133
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3212 |
|
49948
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
3213 |
|
69593 | 3214 |
subsubsection \<open>Fold variants: \<^const>\<open>foldr\<close> and \<^const>\<open>foldl\<close>\<close> |
60758 | 3215 |
|
3216 |
text \<open>Correspondence\<close> |
|
46133
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3217 |
|
58807 | 3218 |
lemma foldr_conv_fold [code_abbrev]: "foldr f xs = fold f (rev xs)" |
68719 | 3219 |
by (induct xs) simp_all |
58807 | 3220 |
|
3221 |
lemma foldl_conv_fold: "foldl f s xs = fold (\<lambda>x s. f s x) xs s" |
|
68719 | 3222 |
by (induct xs arbitrary: s) simp_all |
47397
d654c73e4b12
no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents:
47131
diff
changeset
|
3223 |
|
61799 | 3224 |
lemma foldr_conv_foldl: \<comment> \<open>The ``Third Duality Theorem'' in Bird \& Wadler:\<close> |
46133
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3225 |
"foldr f xs a = foldl (\<lambda>x y. f y x) a (rev xs)" |
68719 | 3226 |
by (simp add: foldr_conv_fold foldl_conv_fold) |
47397
d654c73e4b12
no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents:
47131
diff
changeset
|
3227 |
|
d654c73e4b12
no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents:
47131
diff
changeset
|
3228 |
lemma foldl_conv_foldr: |
46133
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3229 |
"foldl f a xs = foldr (\<lambda>x y. f y x) (rev xs) a" |
68719 | 3230 |
by (simp add: foldr_conv_fold foldl_conv_fold) |
46133
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3231 |
|
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3232 |
lemma foldr_fold: |
58807 | 3233 |
"(\<And>x y. x \<in> set xs \<Longrightarrow> y \<in> set xs \<Longrightarrow> f y \<circ> f x = f x \<circ> f y) |
3234 |
\<Longrightarrow> foldr f xs = fold f xs" |
|
68719 | 3235 |
unfolding foldr_conv_fold by (rule fold_rev) |
46133
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3236 |
|
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3237 |
lemma foldr_cong [fundef_cong]: |
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3238 |
"a = b \<Longrightarrow> l = k \<Longrightarrow> (\<And>a x. x \<in> set l \<Longrightarrow> f x a = g x a) \<Longrightarrow> foldr f l a = foldr g k b" |
68719 | 3239 |
by (auto simp add: foldr_conv_fold intro!: fold_cong) |
46133
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3240 |
|
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3241 |
lemma foldl_cong [fundef_cong]: |
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3242 |
"a = b \<Longrightarrow> l = k \<Longrightarrow> (\<And>a x. x \<in> set l \<Longrightarrow> f a x = g a x) \<Longrightarrow> foldl f a l = foldl g b k" |
68719 | 3243 |
by (auto simp add: foldl_conv_fold intro!: fold_cong) |
58807 | 3244 |
|
3245 |
lemma foldr_append [simp]: "foldr f (xs @ ys) a = foldr f xs (foldr f ys a)" |
|
68719 | 3246 |
by (simp add: foldr_conv_fold) |
58807 | 3247 |
|
3248 |
lemma foldl_append [simp]: "foldl f a (xs @ ys) = foldl f (foldl f a xs) ys" |
|
68719 | 3249 |
by (simp add: foldl_conv_fold) |
58807 | 3250 |
|
67091 | 3251 |
lemma foldr_map [code_unfold]: "foldr g (map f xs) a = foldr (g \<circ> f) xs a" |
68719 | 3252 |
by (simp add: foldr_conv_fold fold_map rev_map) |
46133
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3253 |
|
58437 | 3254 |
lemma foldr_filter: |
3255 |
"foldr f (filter P xs) = foldr (\<lambda>x. if P x then f x else id) xs" |
|
68719 | 3256 |
by (simp add: foldr_conv_fold rev_filter fold_filter) |
64963 | 3257 |
|
46133
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3258 |
lemma foldl_map [code_unfold]: |
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3259 |
"foldl g a (map f xs) = foldl (\<lambda>a x. g a (f x)) a xs" |
68719 | 3260 |
by (simp add: foldl_conv_fold fold_map comp_def) |
46133
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3261 |
|
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3262 |
lemma concat_conv_foldr [code]: |
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3263 |
"concat xss = foldr append xss []" |
68719 | 3264 |
by (simp add: fold_append_concat_rev foldr_conv_fold) |
46133
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
46125
diff
changeset
|
3265 |
|
35115 | 3266 |
|
69593 | 3267 |
subsubsection \<open>\<^const>\<open>upt\<close>\<close> |
13114 | 3268 |
|
17090 | 3269 |
lemma upt_rec[code]: "[i..<j] = (if i<j then i#[Suc i..<j] else [])" |
68719 | 3270 |
\<comment> \<open>simp does not terminate!\<close> |
3271 |
by (induct j) auto |
|
13142 | 3272 |
|
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46898
diff
changeset
|
3273 |
lemmas upt_rec_numeral[simp] = upt_rec[of "numeral m" "numeral n"] for m n |
32005 | 3274 |
|
71585 | 3275 |
lemma upt_conv_Nil [simp]: "j \<le> i \<Longrightarrow> [i..<j] = []" |
68719 | 3276 |
by (subst upt_rec) simp |
13114 | 3277 |
|
68709 | 3278 |
lemma upt_eq_Nil_conv[simp]: "([i..<j] = []) = (j = 0 \<or> j \<le> i)" |
68719 | 3279 |
by(induct j)simp_all |
15281 | 3280 |
|
3281 |
lemma upt_eq_Cons_conv: |
|
68719 | 3282 |
"([i..<j] = x#xs) = (i < j \<and> i = x \<and> [i+1..<j] = xs)" |
68709 | 3283 |
proof (induct j arbitrary: x xs) |
3284 |
case (Suc j) |
|
3285 |
then show ?case |
|
3286 |
by (simp add: upt_rec) |
|
3287 |
qed simp |
|
3288 |
||
71585 | 3289 |
lemma upt_Suc_append: "i \<le> j \<Longrightarrow> [i..<(Suc j)] = [i..<j]@[j]" |
68719 | 3290 |
\<comment> \<open>Only needed if \<open>upt_Suc\<close> is deleted from the simpset.\<close> |
3291 |
by simp |
|
13114 | 3292 |
|
71585 | 3293 |
lemma upt_conv_Cons: "i < j \<Longrightarrow> [i..<j] = i # [Suc i..<j]" |
68719 | 3294 |
by (simp add: upt_rec) |
13114 | 3295 |
|
63145 | 3296 |
lemma upt_conv_Cons_Cons: \<comment> \<open>no precondition\<close> |
62580 | 3297 |
"m # n # ns = [m..<q] \<longleftrightarrow> n # ns = [Suc m..<q]" |
3298 |
proof (cases "m < q") |
|
3299 |
case False then show ?thesis by simp |
|
3300 |
next |
|
3301 |
case True then show ?thesis by (simp add: upt_conv_Cons) |
|
3302 |
qed |
|
3303 |
||
71585 | 3304 |
lemma upt_add_eq_append: "i<=j \<Longrightarrow> [i..<j+k] = [i..<j]@[j..<j+k]" |
68719 | 3305 |
\<comment> \<open>LOOPS as a simprule, since \<open>j \<le> j\<close>.\<close> |
3306 |
by (induct k) auto |
|
13114 | 3307 |
|
15425 | 3308 |
lemma length_upt [simp]: "length [i..<j] = j - i" |
68719 | 3309 |
by (induct j) (auto simp add: Suc_diff_le) |
13114 | 3310 |
|
71585 | 3311 |
lemma nth_upt [simp]: "i + k < j \<Longrightarrow> [i..<j] ! k = i + k" |
68719 | 3312 |
by (induct j) (auto simp add: less_Suc_eq nth_append split: nat_diff_split) |
17906 | 3313 |
|
3314 |
lemma hd_upt[simp]: "i < j \<Longrightarrow> hd[i..<j] = i" |
|
68719 | 3315 |
by(simp add:upt_conv_Cons) |
17906 | 3316 |
|
70183
3ea80c950023
incorporated various material from the AFP into the distribution
haftmann
parents:
69850
diff
changeset
|
3317 |
lemma tl_upt [simp]: "tl [m..<n] = [Suc m..<n]" |
68719 | 3318 |
by (simp add: upt_rec) |
63317
ca187a9f66da
Various additions to polynomials, FPSs, Gamma function
eberlm
parents:
63173
diff
changeset
|
3319 |
|
17906 | 3320 |
lemma last_upt[simp]: "i < j \<Longrightarrow> last[i..<j] = j - 1" |
68719 | 3321 |
by(cases j)(auto simp: upt_Suc_append) |
17906 | 3322 |
|
71585 | 3323 |
lemma take_upt [simp]: "i+m \<le> n \<Longrightarrow> take m [i..<n] = [i..<i+m]" |
68709 | 3324 |
proof (induct m arbitrary: i) |
3325 |
case (Suc m) |
|
3326 |
then show ?case |
|
3327 |
by (subst take_Suc_conv_app_nth) auto |
|
3328 |
qed simp |
|
3507 | 3329 |
|
17501 | 3330 |
lemma drop_upt[simp]: "drop m [i..<j] = [i+m..<j]" |
68719 | 3331 |
by(induct j) auto |
17501 | 3332 |
|
24645 | 3333 |
lemma map_Suc_upt: "map Suc [m..<n] = [Suc m..<Suc n]" |
68719 | 3334 |
by (induct n) auto |
13114 | 3335 |
|
54496
178922b63b58
add lemmas Suc_funpow and id_funpow to simpset; add lemma map_add_upt
hoelzl
parents:
54404
diff
changeset
|
3336 |
lemma map_add_upt: "map (\<lambda>i. i + n) [0..<m] = [n..<m + n]" |
68719 | 3337 |
by (induct m) simp_all |
54496
178922b63b58
add lemmas Suc_funpow and id_funpow to simpset; add lemma map_add_upt
hoelzl
parents:
54404
diff
changeset
|
3338 |
|
71585 | 3339 |
lemma nth_map_upt: "i < n-m \<Longrightarrow> (map f [m..<n]) ! i = f(m+i)" |
68709 | 3340 |
proof (induct n m arbitrary: i rule: diff_induct) |
68719 | 3341 |
case (3 x y) |
68709 | 3342 |
then show ?case |
3343 |
by (metis add.commute length_upt less_diff_conv nth_map nth_upt) |
|
3344 |
qed auto |
|
13114 | 3345 |
|
58807 | 3346 |
lemma map_decr_upt: "map (\<lambda>n. n - Suc 0) [Suc m..<Suc n] = [m..<n]" |
68719 | 3347 |
by (induct n) simp_all |
66550
e5d82cf3c387
Some small lemmas about polynomials and FPSs
eberlm <eberlm@in.tum.de>
parents:
66502
diff
changeset
|
3348 |
|
e5d82cf3c387
Some small lemmas about polynomials and FPSs
eberlm <eberlm@in.tum.de>
parents:
66502
diff
changeset
|
3349 |
lemma map_upt_Suc: "map f [0 ..< Suc n] = f 0 # map (\<lambda>i. f (Suc i)) [0 ..< n]" |
68719 | 3350 |
by (induct n arbitrary: f) auto |
52380 | 3351 |
|
13883
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
3352 |
lemma nth_take_lemma: |
67091 | 3353 |
"k \<le> length xs \<Longrightarrow> k \<le> length ys \<Longrightarrow> |
3354 |
(\<And>i. i < k \<longrightarrow> xs!i = ys!i) \<Longrightarrow> take k xs = take k ys" |
|
68709 | 3355 |
proof (induct k arbitrary: xs ys) |
3356 |
case (Suc k) |
|
3357 |
then show ?case |
|
3358 |
apply (simp add: less_Suc_eq_0_disj) |
|
3359 |
by (simp add: Suc.prems(3) take_Suc_conv_app_nth) |
|
3360 |
qed simp |
|
13114 | 3361 |
|
3362 |
lemma nth_equalityI: |
|
68975
5ce4d117cea7
A few new results, elimination of duplicates and more use of "pairwise"
paulson <lp15@cam.ac.uk>
parents:
68781
diff
changeset
|
3363 |
"\<lbrakk>length xs = length ys; \<And>i. i < length xs \<Longrightarrow> xs!i = ys!i\<rbrakk> \<Longrightarrow> xs = ys" |
68719 | 3364 |
by (frule nth_take_lemma [OF le_refl eq_imp_le]) simp_all |
13142 | 3365 |
|
24796 | 3366 |
lemma map_nth: |
3367 |
"map (\<lambda>i. xs ! i) [0..<length xs] = xs" |
|
68719 | 3368 |
by (rule nth_equalityI, auto) |
58807 | 3369 |
|
13863 | 3370 |
lemma list_all2_antisym: |
64963 | 3371 |
"\<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> |
13863 | 3372 |
\<Longrightarrow> xs = ys" |
68719 | 3373 |
by (simp add: list_all2_conv_all_nth nth_equalityI) |
13863 | 3374 |
|
71585 | 3375 |
lemma take_equalityI: "(\<forall>i. take i xs = take i ys) \<Longrightarrow> xs = ys" |
61799 | 3376 |
\<comment> \<open>The famous take-lemma.\<close> |
68719 | 3377 |
by (metis length_take min.commute order_refl take_all) |
13142 | 3378 |
|
15302 | 3379 |
lemma take_Cons': |
58807 | 3380 |
"take n (x # xs) = (if n = 0 then [] else x # take (n - 1) xs)" |
15302 | 3381 |
by (cases n) simp_all |
3382 |
||
3383 |
lemma drop_Cons': |
|
58807 | 3384 |
"drop n (x # xs) = (if n = 0 then x # xs else drop (n - 1) xs)" |
15302 | 3385 |
by (cases n) simp_all |
3386 |
||
3387 |
lemma nth_Cons': "(x # xs)!n = (if n = 0 then x else xs!(n - 1))" |
|
3388 |
by (cases n) simp_all |
|
3389 |
||
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46898
diff
changeset
|
3390 |
lemma take_Cons_numeral [simp]: |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46898
diff
changeset
|
3391 |
"take (numeral v) (x # xs) = x # take (numeral v - 1) xs" |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46898
diff
changeset
|
3392 |
by (simp add: take_Cons') |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46898
diff
changeset
|
3393 |
|
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46898
diff
changeset
|
3394 |
lemma drop_Cons_numeral [simp]: |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46898
diff
changeset
|
3395 |
"drop (numeral v) (x # xs) = drop (numeral v - 1) xs" |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46898
diff
changeset
|
3396 |
by (simp add: drop_Cons') |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46898
diff
changeset
|
3397 |
|
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46898
diff
changeset
|
3398 |
lemma nth_Cons_numeral [simp]: |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46898
diff
changeset
|
3399 |
"(x # xs) ! numeral v = xs ! (numeral v - 1)" |
73301 | 3400 |
by (simp add: nth_Cons') |
3401 |
||
3402 |
lemma map_upt_eqI: |
|
3403 |
\<open>map f [m..<n] = xs\<close> if \<open>length xs = n - m\<close> |
|
3404 |
\<open>\<And>i. i < length xs \<Longrightarrow> xs ! i = f (m + i)\<close> |
|
3405 |
proof (rule nth_equalityI) |
|
3406 |
from \<open>length xs = n - m\<close> show \<open>length (map f [m..<n]) = length xs\<close> |
|
3407 |
by simp |
|
3408 |
next |
|
3409 |
fix i |
|
3410 |
assume \<open>i < length (map f [m..<n])\<close> |
|
3411 |
then have \<open>i < n - m\<close> |
|
3412 |
by simp |
|
3413 |
with that have \<open>xs ! i = f (m + i)\<close> |
|
3414 |
by simp |
|
3415 |
with \<open>i < n - m\<close> show \<open>map f [m..<n] ! i = xs ! i\<close> |
|
3416 |
by simp |
|
3417 |
qed |
|
15302 | 3418 |
|
3419 |
||
69593 | 3420 |
subsubsection \<open>\<open>upto\<close>: interval-list on \<^typ>\<open>int\<close>\<close> |
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
|
3421 |
|
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
|
3422 |
function upto :: "int \<Rightarrow> int \<Rightarrow> int list" ("(1[_../_])") where |
51166 | 3423 |
"upto i j = (if i \<le> j then i # [i+1..j] else [])" |
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
|
3424 |
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
|
3425 |
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
|
3426 |
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
|
3427 |
|
51166 | 3428 |
declare upto.simps[simp del] |
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
|
3429 |
|
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46898
diff
changeset
|
3430 |
lemmas upto_rec_numeral [simp] = |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46898
diff
changeset
|
3431 |
upto.simps[of "numeral m" "numeral n"] |
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54404
diff
changeset
|
3432 |
upto.simps[of "numeral m" "- numeral n"] |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54404
diff
changeset
|
3433 |
upto.simps[of "- numeral m" "numeral n"] |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54404
diff
changeset
|
3434 |
upto.simps[of "- numeral m" "- numeral n"] for m n |
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
|
3435 |
|
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
|
3436 |
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
|
3437 |
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
|
3438 |
|
67942 | 3439 |
lemma upto_single[simp]: "[i..i] = [i]" |
3440 |
by(simp add: upto.simps) |
|
3441 |
||
67124 | 3442 |
lemma upto_Nil[simp]: "[i..j] = [] \<longleftrightarrow> j < i" |
3443 |
by (simp add: upto.simps) |
|
3444 |
||
67168 | 3445 |
lemma upto_Nil2[simp]: "[] = [i..j] \<longleftrightarrow> j < i" |
3446 |
by (simp add: upto.simps) |
|
3447 |
||
51166 | 3448 |
lemma upto_rec1: "i \<le> j \<Longrightarrow> [i..j] = i#[i+1..j]" |
3449 |
by(simp add: upto.simps) |
|
3450 |
||
3451 |
lemma upto_rec2: "i \<le> j \<Longrightarrow> [i..j] = [i..j - 1]@[j]" |
|
3452 |
proof(induct "nat(j-i)" arbitrary: i j) |
|
3453 |
case 0 thus ?case by(simp add: upto.simps) |
|
3454 |
next |
|
3455 |
case (Suc n) |
|
3456 |
hence "n = nat (j - (i + 1))" "i < j" by linarith+ |
|
3457 |
from this(2) Suc.hyps(1)[OF this(1)] Suc(2,3) upto_rec1 show ?case by simp |
|
3458 |
qed |
|
3459 |
||
67949 | 3460 |
lemma length_upto[simp]: "length [i..j] = nat(j - i + 1)" |
3461 |
by(induction i j rule: upto.induct) (auto simp: upto.simps) |
|
3462 |
||
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
|
3463 |
lemma set_upto[simp]: "set[i..j] = {i..j}" |
41463
edbf0a86fb1c
adding simproc to rewrite list comprehensions to set comprehensions; adopting proofs
bulwahn
parents:
41372
diff
changeset
|
3464 |
proof(induct i j rule:upto.induct) |
edbf0a86fb1c
adding simproc to rewrite list comprehensions to set comprehensions; adopting proofs
bulwahn
parents:
41372
diff
changeset
|
3465 |
case (1 i j) |
edbf0a86fb1c
adding simproc to rewrite list comprehensions to set comprehensions; adopting proofs
bulwahn
parents:
41372
diff
changeset
|
3466 |
from this show ?case |
55811 | 3467 |
unfolding upto.simps[of i j] by auto |
41463
edbf0a86fb1c
adding simproc to rewrite list comprehensions to set comprehensions; adopting proofs
bulwahn
parents:
41372
diff
changeset
|
3468 |
qed |
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
|
3469 |
|
69125 | 3470 |
lemma nth_upto[simp]: "i + int k \<le> j \<Longrightarrow> [i..j] ! k = i + int k" |
71585 | 3471 |
proof(induction i j arbitrary: k rule: upto.induct) |
3472 |
case (1 i j) |
|
3473 |
then show ?case |
|
3474 |
by (auto simp add: upto_rec1 [of i j] nth_Cons') |
|
3475 |
qed |
|
67949 | 3476 |
|
71393
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70911
diff
changeset
|
3477 |
lemma upto_split1: |
67081 | 3478 |
"i \<le> j \<Longrightarrow> j \<le> k \<Longrightarrow> [i..k] = [i..j-1] @ [j..k]" |
3479 |
proof (induction j rule: int_ge_induct) |
|
3480 |
case base thus ?case by (simp add: upto_rec1) |
|
3481 |
next |
|
3482 |
case step thus ?case using upto_rec1 upto_rec2 by simp |
|
3483 |
qed |
|
3484 |
||
71393
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70911
diff
changeset
|
3485 |
lemma upto_split2: |
67081 | 3486 |
"i \<le> j \<Longrightarrow> j \<le> k \<Longrightarrow> [i..k] = [i..j] @ [j+1..k]" |
3487 |
using upto_rec1 upto_rec2 upto_split1 by auto |
|
3488 |
||
67124 | 3489 |
lemma upto_split3: "\<lbrakk> i \<le> j; j \<le> k \<rbrakk> \<Longrightarrow> [i..k] = [i..j-1] @ j # [j+1..k]" |
3490 |
using upto_rec1 upto_split1 by auto |
|
3491 |
||
60758 | 3492 |
text\<open>Tail recursive version for code generation:\<close> |
51166 | 3493 |
|
51170 | 3494 |
definition upto_aux :: "int \<Rightarrow> int \<Rightarrow> int list \<Rightarrow> int list" where |
3495 |
"upto_aux i j js = [i..j] @ js" |
|
3496 |
||
3497 |
lemma upto_aux_rec [code]: |
|
51166 | 3498 |
"upto_aux i j js = (if j<i then js else upto_aux i (j - 1) (j#js))" |
58807 | 3499 |
by (simp add: upto_aux_def upto_rec2) |
51166 | 3500 |
|
3501 |
lemma upto_code[code]: "[i..j] = upto_aux i j []" |
|
51170 | 3502 |
by(simp add: upto_aux_def) |
51166 | 3503 |
|
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
|
3504 |
|
71779 | 3505 |
|
3506 |
subsubsection \<open>\<^const>\<open>successively\<close>\<close> |
|
3507 |
||
3508 |
lemma successively_Cons: |
|
3509 |
"successively P (x # xs) \<longleftrightarrow> xs = [] \<or> P x (hd xs) \<and> successively P xs" |
|
3510 |
by (cases xs) auto |
|
3511 |
||
3512 |
lemma successively_cong [cong]: |
|
3513 |
assumes "\<And>x y. x \<in> set xs \<Longrightarrow> y \<in> set xs \<Longrightarrow> P x y \<longleftrightarrow> Q x y" "xs = ys" |
|
3514 |
shows "successively P xs \<longleftrightarrow> successively Q ys" |
|
3515 |
unfolding assms(2) [symmetric] using assms(1) |
|
3516 |
by (induction xs) (auto simp: successively_Cons) |
|
3517 |
||
3518 |
||
3519 |
lemma successively_append_iff: |
|
3520 |
"successively P (xs @ ys) \<longleftrightarrow> |
|
3521 |
successively P xs \<and> successively P ys \<and> |
|
3522 |
(xs = [] \<or> ys = [] \<or> P (last xs) (hd ys))" |
|
3523 |
by (induction xs) (auto simp: successively_Cons) |
|
3524 |
||
3525 |
lemma successively_if_sorted_wrt: "sorted_wrt P xs \<Longrightarrow> successively P xs" |
|
3526 |
by (induction xs rule: induct_list012) auto |
|
3527 |
||
3528 |
||
3529 |
lemma successively_iff_sorted_wrt_strong: |
|
3530 |
assumes "\<And>x y z. x \<in> set xs \<Longrightarrow> y \<in> set xs \<Longrightarrow> z \<in> set xs \<Longrightarrow> |
|
3531 |
P x y \<Longrightarrow> P y z \<Longrightarrow> P x z" |
|
3532 |
shows "successively P xs \<longleftrightarrow> sorted_wrt P xs" |
|
3533 |
proof |
|
3534 |
assume "successively P xs" |
|
3535 |
from this and assms show "sorted_wrt P xs" |
|
3536 |
proof (induction xs rule: induct_list012) |
|
3537 |
case (3 x y xs) |
|
3538 |
from "3.prems" have "P x y" |
|
3539 |
by auto |
|
3540 |
have IH: "sorted_wrt P (y # xs)" |
|
3541 |
using "3.prems" |
|
3542 |
by(intro "3.IH"(2) list.set_intros(2))(simp, blast intro: list.set_intros(2)) |
|
3543 |
have "P x z" if asm: "z \<in> set xs" for z |
|
3544 |
proof - |
|
3545 |
from IH and asm have "P y z" |
|
3546 |
by auto |
|
3547 |
with \<open>P x y\<close> show "P x z" |
|
3548 |
using "3.prems" asm by auto |
|
3549 |
qed |
|
3550 |
with IH and \<open>P x y\<close> show ?case by auto |
|
3551 |
qed auto |
|
3552 |
qed (use successively_if_sorted_wrt in blast) |
|
3553 |
||
3554 |
lemma successively_conv_sorted_wrt: |
|
3555 |
assumes "transp P" |
|
3556 |
shows "successively P xs \<longleftrightarrow> sorted_wrt P xs" |
|
3557 |
using assms unfolding transp_def |
|
3558 |
by (intro successively_iff_sorted_wrt_strong) blast |
|
3559 |
||
3560 |
lemma successively_rev [simp]: "successively P (rev xs) \<longleftrightarrow> successively (\<lambda>x y. P y x) xs" |
|
3561 |
by (induction xs rule: remdups_adj.induct) |
|
3562 |
(auto simp: successively_append_iff successively_Cons) |
|
3563 |
||
3564 |
lemma successively_map: "successively P (map f xs) \<longleftrightarrow> successively (\<lambda>x y. P (f x) (f y)) xs" |
|
3565 |
by (induction xs rule: induct_list012) auto |
|
3566 |
||
3567 |
lemma successively_mono: |
|
3568 |
assumes "successively P xs" |
|
3569 |
assumes "\<And>x y. x \<in> set xs \<Longrightarrow> y \<in> set xs \<Longrightarrow> P x y \<Longrightarrow> Q x y" |
|
3570 |
shows "successively Q xs" |
|
3571 |
using assms by (induction Q xs rule: successively.induct) auto |
|
3572 |
||
3573 |
lemma successively_altdef: |
|
3574 |
"successively = (\<lambda>P. rec_list True (\<lambda>x xs b. case xs of [] \<Rightarrow> True | y # _ \<Rightarrow> P x y \<and> b))" |
|
3575 |
proof (intro ext) |
|
3576 |
fix P and xs :: "'a list" |
|
3577 |
show "successively P xs = rec_list True (\<lambda>x xs b. case xs of [] \<Rightarrow> True | y # _ \<Rightarrow> P x y \<and> b) xs" |
|
3578 |
by (induction xs) (auto simp: successively_Cons split: list.splits) |
|
3579 |
qed |
|
3580 |
||
3581 |
||
69593 | 3582 |
subsubsection \<open>\<^const>\<open>distinct\<close> and \<^const>\<open>remdups\<close> and \<^const>\<open>remdups_adj\<close>\<close> |
13142 | 3583 |
|
58807 | 3584 |
lemma distinct_tl: "distinct xs \<Longrightarrow> distinct (tl xs)" |
3585 |
by (cases xs) simp_all |
|
40210
aee7ef725330
sorting: avoid _key suffix if lemma applies both to simple and generalized variant; generalized insort_insert to insort_insert_key; additional lemmas
haftmann
parents:
40195
diff
changeset
|
3586 |
|
13142 | 3587 |
lemma distinct_append [simp]: |
58807 | 3588 |
"distinct (xs @ ys) = (distinct xs \<and> distinct ys \<and> set xs \<inter> set ys = {})" |
13145 | 3589 |
by (induct xs) auto |
13142 | 3590 |
|
15305 | 3591 |
lemma distinct_rev[simp]: "distinct(rev xs) = distinct xs" |
3592 |
by(induct xs) auto |
|
3593 |
||
13142 | 3594 |
lemma set_remdups [simp]: "set (remdups xs) = set xs" |
13145 | 3595 |
by (induct xs) (auto simp add: insert_absorb) |
13142 | 3596 |
|
3597 |
lemma distinct_remdups [iff]: "distinct (remdups xs)" |
|
13145 | 3598 |
by (induct xs) auto |
13142 | 3599 |
|
71585 | 3600 |
lemma distinct_remdups_id: "distinct xs \<Longrightarrow> remdups xs = xs" |
25287 | 3601 |
by (induct xs, auto) |
3602 |
||
26734 | 3603 |
lemma remdups_id_iff_distinct [simp]: "remdups xs = xs \<longleftrightarrow> distinct xs" |
3604 |
by (metis distinct_remdups distinct_remdups_id) |
|
25287 | 3605 |
|
67091 | 3606 |
lemma finite_distinct_list: "finite A \<Longrightarrow> \<exists>xs. set xs = A \<and> distinct xs" |
24632 | 3607 |
by (metis distinct_remdups finite_list set_remdups) |
24566 | 3608 |
|
15072 | 3609 |
lemma remdups_eq_nil_iff [simp]: "(remdups x = []) = (x = [])" |
46440
d4994e2e7364
use 'primrec' to define "rotate1", for uniformity (and to help first-order tools that rely on "Spec_Rules")
blanchet
parents:
46439
diff
changeset
|
3610 |
by (induct x, auto) |
15072 | 3611 |
|
3612 |
lemma remdups_eq_nil_right_iff [simp]: "([] = remdups x) = (x = [])" |
|
24349 | 3613 |
by (induct x, auto) |
15072 | 3614 |
|
68709 | 3615 |
lemma length_remdups_leq[iff]: "length(remdups xs) \<le> length xs" |
15245 | 3616 |
by (induct xs) auto |
3617 |
||
3618 |
lemma length_remdups_eq[iff]: |
|
3619 |
"(length (remdups xs) = length xs) = (remdups xs = xs)" |
|
68719 | 3620 |
proof (induct xs) |
3621 |
case (Cons a xs) |
|
3622 |
then show ?case |
|
3623 |
by simp (metis Suc_n_not_le_n impossible_Cons length_remdups_leq) |
|
3624 |
qed auto |
|
15245 | 3625 |
|
33945 | 3626 |
lemma remdups_filter: "remdups(filter P xs) = filter P (remdups xs)" |
58807 | 3627 |
by (induct xs) auto |
18490 | 3628 |
|
3629 |
lemma distinct_map: |
|
67091 | 3630 |
"distinct(map f xs) = (distinct xs \<and> inj_on f (set xs))" |
18490 | 3631 |
by (induct xs) auto |
3632 |
||
58195 | 3633 |
lemma distinct_map_filter: |
3634 |
"distinct (map f xs) \<Longrightarrow> distinct (map f (filter P xs))" |
|
58807 | 3635 |
by (induct xs) auto |
58195 | 3636 |
|
71585 | 3637 |
lemma distinct_filter [simp]: "distinct xs \<Longrightarrow> distinct (filter P xs)" |
13145 | 3638 |
by (induct xs) auto |
13114 | 3639 |
|
17501 | 3640 |
lemma distinct_upt[simp]: "distinct[i..<j]" |
3641 |
by (induct j) auto |
|
3642 |
||
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
|
3643 |
lemma distinct_upto[simp]: "distinct[i..j]" |
71585 | 3644 |
proof (induction i j rule: upto.induct) |
3645 |
case (1 i j) |
|
3646 |
then show ?case |
|
3647 |
by (simp add: upto.simps [of i]) |
|
3648 |
qed |
|
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
|
3649 |
|
24526 | 3650 |
lemma distinct_take[simp]: "distinct xs \<Longrightarrow> distinct (take i xs)" |
68719 | 3651 |
proof (induct xs arbitrary: i) |
3652 |
case (Cons a xs) |
|
3653 |
then show ?case |
|
3654 |
by (metis Cons.prems append_take_drop_id distinct_append) |
|
3655 |
qed auto |
|
17501 | 3656 |
|
24526 | 3657 |
lemma distinct_drop[simp]: "distinct xs \<Longrightarrow> distinct (drop i xs)" |
68719 | 3658 |
proof (induct xs arbitrary: i) |
3659 |
case (Cons a xs) |
|
3660 |
then show ?case |
|
3661 |
by (metis Cons.prems append_take_drop_id distinct_append) |
|
3662 |
qed auto |
|
17501 | 3663 |
|
3664 |
lemma distinct_list_update: |
|
68719 | 3665 |
assumes d: "distinct xs" and a: "a \<notin> set xs - {xs!i}" |
3666 |
shows "distinct (xs[i:=a])" |
|
17501 | 3667 |
proof (cases "i < length xs") |
3668 |
case True |
|
68719 | 3669 |
with a have anot: "a \<notin> set (take i xs @ xs ! i # drop (Suc i) xs) - {xs!i}" |
3670 |
by simp (metis in_set_dropD in_set_takeD) |
|
3671 |
show ?thesis |
|
3672 |
proof (cases "a = xs!i") |
|
3673 |
case True |
|
3674 |
with d show ?thesis |
|
3675 |
by auto |
|
3676 |
next |
|
3677 |
case False |
|
71585 | 3678 |
have "set (take i xs) \<inter> set (drop (Suc i) xs) = {}" |
3679 |
by (metis True d disjoint_insert(1) distinct_append id_take_nth_drop list.set(2)) |
|
68719 | 3680 |
then show ?thesis |
71585 | 3681 |
using d False anot \<open>i < length xs\<close> by (simp add: upd_conv_take_nth_drop) |
68719 | 3682 |
qed |
17501 | 3683 |
next |
3684 |
case False with d show ?thesis by auto |
|
3685 |
qed |
|
3686 |
||
31363
7493b571b37d
Added theorems about distinct & concat, map & replicate and concat & replicate
hoelzl
parents:
31264
diff
changeset
|
3687 |
lemma distinct_concat: |
58807 | 3688 |
"\<lbrakk> distinct xs; |
3689 |
\<And> ys. ys \<in> set xs \<Longrightarrow> distinct ys; |
|
3690 |
\<And> ys zs. \<lbrakk> ys \<in> set xs ; zs \<in> set xs ; ys \<noteq> zs \<rbrakk> \<Longrightarrow> set ys \<inter> set zs = {} |
|
3691 |
\<rbrakk> \<Longrightarrow> distinct (concat xs)" |
|
3692 |
by (induct xs) auto |
|
17501 | 3693 |
|
71593 | 3694 |
text \<open>An iff-version of @{thm distinct_concat} is available further down as \<open>distinct_concat_iff\<close>.\<close> |
3695 |
||
3696 |
text \<open>It is best to avoid the following indexed version of distinct, but sometimes it is useful.\<close> |
|
17501 | 3697 |
|
68719 | 3698 |
lemma distinct_conv_nth: "distinct xs = (\<forall>i < size xs. \<forall>j < size xs. i \<noteq> j \<longrightarrow> xs!i \<noteq> xs!j)" |
3699 |
proof (induct xs) |
|
3700 |
case (Cons x xs) |
|
3701 |
show ?case |
|
3702 |
apply (auto simp add: Cons nth_Cons split: nat.split_asm) |
|
3703 |
apply (metis Suc_less_eq2 in_set_conv_nth less_not_refl zero_less_Suc)+ |
|
3704 |
done |
|
3705 |
qed auto |
|
13114 | 3706 |
|
18490 | 3707 |
lemma nth_eq_iff_index_eq: |
58807 | 3708 |
"\<lbrakk> distinct xs; i < length xs; j < length xs \<rbrakk> \<Longrightarrow> (xs!i = xs!j) = (i = j)" |
18490 | 3709 |
by(auto simp: distinct_conv_nth) |
3710 |
||
64963 | 3711 |
lemma distinct_Ex1: |
63099
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents:
63092
diff
changeset
|
3712 |
"distinct xs \<Longrightarrow> x \<in> set xs \<Longrightarrow> (\<exists>!i. i < length xs \<and> xs ! i = x)" |
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents:
63092
diff
changeset
|
3713 |
by (auto simp: in_set_conv_nth nth_eq_iff_index_eq) |
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents:
63092
diff
changeset
|
3714 |
|
59728 | 3715 |
lemma inj_on_nth: "distinct xs \<Longrightarrow> \<forall>i \<in> I. i < length xs \<Longrightarrow> inj_on (nth xs) I" |
3716 |
by (rule inj_onI) (simp add: nth_eq_iff_index_eq) |
|
3717 |
||
63099
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents:
63092
diff
changeset
|
3718 |
lemma bij_betw_nth: |
64963 | 3719 |
assumes "distinct xs" "A = {..<length xs}" "B = set xs" |
67399 | 3720 |
shows "bij_betw ((!) xs) A B" |
63099
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents:
63092
diff
changeset
|
3721 |
using assms unfolding bij_betw_def |
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents:
63092
diff
changeset
|
3722 |
by (auto intro!: inj_on_nth simp: set_conv_nth) |
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents:
63092
diff
changeset
|
3723 |
|
56953 | 3724 |
lemma set_update_distinct: "\<lbrakk> distinct xs; n < length xs \<rbrakk> \<Longrightarrow> |
3725 |
set(xs[n := x]) = insert x (set xs - {xs!n})" |
|
3726 |
by(auto simp: set_eq_iff in_set_conv_nth nth_list_update nth_eq_iff_index_eq) |
|
3727 |
||
71585 | 3728 |
lemma distinct_swap[simp]: "\<lbrakk> i < size xs; j < size xs\<rbrakk> \<Longrightarrow> |
57537 | 3729 |
distinct(xs[i := xs!j, j := xs!i]) = distinct xs" |
68719 | 3730 |
apply (simp add: distinct_conv_nth nth_list_update) |
71585 | 3731 |
apply (safe; metis) |
3732 |
done |
|
57537 | 3733 |
|
3734 |
lemma set_swap[simp]: |
|
3735 |
"\<lbrakk> i < size xs; j < size xs \<rbrakk> \<Longrightarrow> set(xs[i := xs!j, j := xs!i]) = set xs" |
|
3736 |
by(simp add: set_conv_nth nth_list_update) metis |
|
3737 |
||
71585 | 3738 |
lemma distinct_card: "distinct xs \<Longrightarrow> card (set xs) = size xs" |
24349 | 3739 |
by (induct xs) auto |
14388 | 3740 |
|
71585 | 3741 |
lemma card_distinct: "card (set xs) = size xs \<Longrightarrow> distinct xs" |
14388 | 3742 |
proof (induct xs) |
3743 |
case (Cons x xs) |
|
3744 |
show ?case |
|
3745 |
proof (cases "x \<in> set xs") |
|
3746 |
case False with Cons show ?thesis by simp |
|
3747 |
next |
|
3748 |
case True with Cons.prems |
|
46440
d4994e2e7364
use 'primrec' to define "rotate1", for uniformity (and to help first-order tools that rely on "Spec_Rules")
blanchet
parents:
46439
diff
changeset
|
3749 |
have "card (set xs) = Suc (length xs)" |
62390 | 3750 |
by (simp add: card_insert_if split: if_split_asm) |
14388 | 3751 |
moreover have "card (set xs) \<le> length xs" by (rule card_length) |
3752 |
ultimately have False by simp |
|
3753 |
thus ?thesis .. |
|
3754 |
qed |
|
68719 | 3755 |
qed simp |
14388 | 3756 |
|
45115
93c1ac6727a3
adding lemma to List library for executable equation of the (refl) transitive closure
bulwahn
parents:
44928
diff
changeset
|
3757 |
lemma distinct_length_filter: "distinct xs \<Longrightarrow> length (filter P xs) = card ({x. P x} Int set xs)" |
93c1ac6727a3
adding lemma to List library for executable equation of the (refl) transitive closure
bulwahn
parents:
44928
diff
changeset
|
3758 |
by (induct xs) (auto) |
93c1ac6727a3
adding lemma to List library for executable equation of the (refl) transitive closure
bulwahn
parents:
44928
diff
changeset
|
3759 |
|
67091 | 3760 |
lemma not_distinct_decomp: "\<not> distinct ws \<Longrightarrow> \<exists>xs ys zs y. ws = xs@[y]@ys@[y]@zs" |
68719 | 3761 |
proof (induct n == "length ws" arbitrary:ws) |
3762 |
case (Suc n ws) |
|
3763 |
then show ?case |
|
3764 |
using length_Suc_conv [of ws n] |
|
3765 |
apply (auto simp: eq_commute) |
|
3766 |
apply (metis append_Nil in_set_conv_decomp_first) |
|
3767 |
by (metis append_Cons) |
|
3768 |
qed simp |
|
18490 | 3769 |
|
45841 | 3770 |
lemma not_distinct_conv_prefix: |
3771 |
defines "dec as xs y ys \<equiv> y \<in> set xs \<and> distinct xs \<and> as = xs @ y # ys" |
|
3772 |
shows "\<not>distinct as \<longleftrightarrow> (\<exists>xs y ys. dec as xs y ys)" (is "?L = ?R") |
|
3773 |
proof |
|
3774 |
assume "?L" then show "?R" |
|
3775 |
proof (induct "length as" arbitrary: as rule: less_induct) |
|
3776 |
case less |
|
3777 |
obtain xs ys zs y where decomp: "as = (xs @ y # ys) @ y # zs" |
|
3778 |
using not_distinct_decomp[OF less.prems] by auto |
|
3779 |
show ?case |
|
3780 |
proof (cases "distinct (xs @ y # ys)") |
|
3781 |
case True |
|
3782 |
with decomp have "dec as (xs @ y # ys) y zs" by (simp add: dec_def) |
|
3783 |
then show ?thesis by blast |
|
3784 |
next |
|
3785 |
case False |
|
3786 |
with less decomp obtain xs' y' ys' where "dec (xs @ y # ys) xs' y' ys'" |
|
3787 |
by atomize_elim auto |
|
3788 |
with decomp have "dec as xs' y' (ys' @ y # zs)" by (simp add: dec_def) |
|
3789 |
then show ?thesis by blast |
|
3790 |
qed |
|
3791 |
qed |
|
3792 |
qed (auto simp: dec_def) |
|
3793 |
||
49948
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
3794 |
lemma distinct_product: |
57247 | 3795 |
"distinct xs \<Longrightarrow> distinct ys \<Longrightarrow> distinct (List.product xs ys)" |
3796 |
by (induct xs) (auto intro: inj_onI simp add: distinct_map) |
|
49948
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
3797 |
|
53721
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
3798 |
lemma distinct_product_lists: |
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
3799 |
assumes "\<forall>xs \<in> set xss. distinct xs" |
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
3800 |
shows "distinct (product_lists xss)" |
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
3801 |
using assms proof (induction xss) |
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
3802 |
case (Cons xs xss) note * = this |
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
3803 |
then show ?case |
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
3804 |
proof (cases "product_lists xss") |
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
3805 |
case Nil then show ?thesis by (induct xs) simp_all |
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
3806 |
next |
64963 | 3807 |
case (Cons ps pss) with * show ?thesis |
53721
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
3808 |
by (auto intro!: inj_onI distinct_concat simp add: distinct_map) |
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
3809 |
qed |
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
3810 |
qed simp |
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
3811 |
|
18490 | 3812 |
lemma length_remdups_concat: |
44921 | 3813 |
"length (remdups (concat xss)) = card (\<Union>xs\<in>set xss. set xs)" |
58807 | 3814 |
by (simp add: distinct_card [symmetric]) |
17906 | 3815 |
|
71393
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70911
diff
changeset
|
3816 |
lemma remdups_append2: |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70911
diff
changeset
|
3817 |
"remdups (xs @ remdups ys) = remdups (xs @ ys)" |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70911
diff
changeset
|
3818 |
by(induction xs) auto |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70911
diff
changeset
|
3819 |
|
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
|
3820 |
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
|
3821 |
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
|
3822 |
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
|
3823 |
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
|
3824 |
qed |
17906 | 3825 |
|
58807 | 3826 |
lemma remdups_remdups: "remdups (remdups xs) = remdups xs" |
3827 |
by (induct xs) simp_all |
|
36275 | 3828 |
|
36851 | 3829 |
lemma distinct_butlast: |
46500
0196966d6d2d
removing unnecessary premises in theorems of List theory
bulwahn
parents:
46448
diff
changeset
|
3830 |
assumes "distinct xs" |
36851 | 3831 |
shows "distinct (butlast xs)" |
46500
0196966d6d2d
removing unnecessary premises in theorems of List theory
bulwahn
parents:
46448
diff
changeset
|
3832 |
proof (cases "xs = []") |
0196966d6d2d
removing unnecessary premises in theorems of List theory
bulwahn
parents:
46448
diff
changeset
|
3833 |
case False |
60758 | 3834 |
from \<open>xs \<noteq> []\<close> obtain ys y where "xs = ys @ [y]" by (cases xs rule: rev_cases) auto |
3835 |
with \<open>distinct xs\<close> show ?thesis by simp |
|
46500
0196966d6d2d
removing unnecessary premises in theorems of List theory
bulwahn
parents:
46448
diff
changeset
|
3836 |
qed (auto) |
36851 | 3837 |
|
39728 | 3838 |
lemma remdups_map_remdups: |
3839 |
"remdups (map f (remdups xs)) = remdups (map f xs)" |
|
58807 | 3840 |
by (induct xs) simp_all |
39728 | 3841 |
|
39915
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents:
39774
diff
changeset
|
3842 |
lemma distinct_zipI1: |
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents:
39774
diff
changeset
|
3843 |
assumes "distinct xs" |
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents:
39774
diff
changeset
|
3844 |
shows "distinct (zip xs ys)" |
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents:
39774
diff
changeset
|
3845 |
proof (rule zip_obtain_same_length) |
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents:
39774
diff
changeset
|
3846 |
fix xs' :: "'a list" and ys' :: "'b list" and n |
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents:
39774
diff
changeset
|
3847 |
assume "length xs' = length ys'" |
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents:
39774
diff
changeset
|
3848 |
assume "xs' = take n xs" |
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents:
39774
diff
changeset
|
3849 |
with assms have "distinct xs'" by simp |
60758 | 3850 |
with \<open>length xs' = length ys'\<close> show "distinct (zip xs' ys')" |
39915
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents:
39774
diff
changeset
|
3851 |
by (induct xs' ys' rule: list_induct2) (auto elim: in_set_zipE) |
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents:
39774
diff
changeset
|
3852 |
qed |
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents:
39774
diff
changeset
|
3853 |
|
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents:
39774
diff
changeset
|
3854 |
lemma distinct_zipI2: |
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents:
39774
diff
changeset
|
3855 |
assumes "distinct ys" |
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents:
39774
diff
changeset
|
3856 |
shows "distinct (zip xs ys)" |
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents:
39774
diff
changeset
|
3857 |
proof (rule zip_obtain_same_length) |
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents:
39774
diff
changeset
|
3858 |
fix xs' :: "'b list" and ys' :: "'a list" and n |
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents:
39774
diff
changeset
|
3859 |
assume "length xs' = length ys'" |
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents:
39774
diff
changeset
|
3860 |
assume "ys' = take n ys" |
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents:
39774
diff
changeset
|
3861 |
with assms have "distinct ys'" by simp |
60758 | 3862 |
with \<open>length xs' = length ys'\<close> show "distinct (zip xs' ys')" |
39915
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents:
39774
diff
changeset
|
3863 |
by (induct xs' ys' rule: list_induct2) (auto elim: in_set_zipE) |
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents:
39774
diff
changeset
|
3864 |
qed |
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents:
39774
diff
changeset
|
3865 |
|
47122 | 3866 |
lemma set_take_disj_set_drop_if_distinct: |
3867 |
"distinct vs \<Longrightarrow> i \<le> j \<Longrightarrow> set (take i vs) \<inter> set (drop j vs) = {}" |
|
3868 |
by (auto simp: in_set_conv_nth distinct_conv_nth) |
|
3869 |
||
44635
3d046864ebe6
added two lemmas about "distinct" to help Sledgehammer
blanchet
parents:
44619
diff
changeset
|
3870 |
(* The next two lemmas help Sledgehammer. *) |
3d046864ebe6
added two lemmas about "distinct" to help Sledgehammer
blanchet
parents:
44619
diff
changeset
|
3871 |
|
3d046864ebe6
added two lemmas about "distinct" to help Sledgehammer
blanchet
parents:
44619
diff
changeset
|
3872 |
lemma distinct_singleton: "distinct [x]" by simp |
3d046864ebe6
added two lemmas about "distinct" to help Sledgehammer
blanchet
parents:
44619
diff
changeset
|
3873 |
|
3d046864ebe6
added two lemmas about "distinct" to help Sledgehammer
blanchet
parents:
44619
diff
changeset
|
3874 |
lemma distinct_length_2_or_more: |
58807 | 3875 |
"distinct (a # b # xs) \<longleftrightarrow> (a \<noteq> b \<and> distinct (a # xs) \<and> distinct (b # xs))" |
56085 | 3876 |
by force |
44635
3d046864ebe6
added two lemmas about "distinct" to help Sledgehammer
blanchet
parents:
44619
diff
changeset
|
3877 |
|
58969 | 3878 |
lemma remdups_adj_altdef: "(remdups_adj xs = ys) \<longleftrightarrow> |
67091 | 3879 |
(\<exists>f::nat => nat. mono f \<and> f ` {0 ..< size xs} = {0 ..< size ys} |
58969 | 3880 |
\<and> (\<forall>i < size xs. xs!i = ys!(f i)) |
61941 | 3881 |
\<and> (\<forall>i. i + 1 < size xs \<longrightarrow> (xs!i = xs!(i+1) \<longleftrightarrow> f i = f(i+1))))" (is "?L \<longleftrightarrow> (\<exists>f. ?p f xs ys)") |
58969 | 3882 |
proof |
3883 |
assume ?L |
|
3884 |
then show "\<exists>f. ?p f xs ys" |
|
3885 |
proof (induct xs arbitrary: ys rule: remdups_adj.induct) |
|
3886 |
case (1 ys) |
|
3887 |
thus ?case by (intro exI[of _ id]) (auto simp: mono_def) |
|
3888 |
next |
|
3889 |
case (2 x ys) |
|
3890 |
thus ?case by (intro exI[of _ id]) (auto simp: mono_def) |
|
3891 |
next |
|
3892 |
case (3 x1 x2 xs ys) |
|
3893 |
let ?xs = "x1 # x2 # xs" |
|
3894 |
let ?cond = "x1 = x2" |
|
63040 | 3895 |
define zs where "zs = remdups_adj (x2 # xs)" |
58969 | 3896 |
from 3(1-2)[of zs] |
3897 |
obtain f where p: "?p f (x2 # xs) zs" unfolding zs_def by (cases ?cond) auto |
|
3898 |
then have f0: "f 0 = 0" |
|
3899 |
by (intro mono_image_least[where f=f]) blast+ |
|
3900 |
from p have mono: "mono f" and f_xs_zs: "f ` {0..<length (x2 # xs)} = {0..<length zs}" by auto |
|
3901 |
have ys: "ys = (if x1 = x2 then zs else x1 # zs)" |
|
3902 |
unfolding 3(3)[symmetric] zs_def by auto |
|
3903 |
have zs0: "zs ! 0 = x2" unfolding zs_def by (induct xs) auto |
|
3904 |
have zsne: "zs \<noteq> []" unfolding zs_def by (induct xs) auto |
|
3905 |
let ?Succ = "if ?cond then id else Suc" |
|
3906 |
let ?x1 = "if ?cond then id else Cons x1" |
|
3907 |
let ?f = "\<lambda> i. if i = 0 then 0 else ?Succ (f (i - 1))" |
|
3908 |
have ys: "ys = ?x1 zs" unfolding ys by (cases ?cond, auto) |
|
60758 | 3909 |
have mono: "mono ?f" using \<open>mono f\<close> unfolding mono_def by auto |
58969 | 3910 |
show ?case unfolding ys |
3911 |
proof (intro exI[of _ ?f] conjI allI impI) |
|
3912 |
show "mono ?f" by fact |
|
3913 |
next |
|
3914 |
fix i assume i: "i < length ?xs" |
|
3915 |
with p show "?xs ! i = ?x1 zs ! (?f i)" using zs0 by auto |
|
3916 |
next |
|
3917 |
fix i assume i: "i + 1 < length ?xs" |
|
3918 |
with p show "(?xs ! i = ?xs ! (i + 1)) = (?f i = ?f (i + 1))" |
|
3919 |
by (cases i) (auto simp: f0) |
|
3920 |
next |
|
3921 |
have id: "{0 ..< length (?x1 zs)} = insert 0 (?Succ ` {0 ..< length zs})" |
|
3922 |
using zsne by (cases ?cond, auto) |
|
3923 |
{ fix i assume "i < Suc (length xs)" |
|
67399 | 3924 |
hence "Suc i \<in> {0..<Suc (Suc (length xs))} \<inter> Collect ((<) 0)" by auto |
58969 | 3925 |
from imageI[OF this, of "\<lambda>i. ?Succ (f (i - Suc 0))"] |
67399 | 3926 |
have "?Succ (f i) \<in> (\<lambda>i. ?Succ (f (i - Suc 0))) ` ({0..<Suc (Suc (length xs))} \<inter> Collect ((<) 0))" by auto |
58969 | 3927 |
} |
3928 |
then show "?f ` {0 ..< length ?xs} = {0 ..< length (?x1 zs)}" |
|
3929 |
unfolding id f_xs_zs[symmetric] by auto |
|
3930 |
qed |
|
3931 |
qed |
|
3932 |
next |
|
3933 |
assume "\<exists> f. ?p f xs ys" |
|
3934 |
then show ?L |
|
3935 |
proof (induct xs arbitrary: ys rule: remdups_adj.induct) |
|
3936 |
case 1 then show ?case by auto |
|
3937 |
next |
|
3938 |
case (2 x) then obtain f where f_img: "f ` {0 ..< size [x]} = {0 ..< size ys}" |
|
3939 |
and f_nth: "\<And>i. i < size [x] \<Longrightarrow> [x]!i = ys!(f i)" |
|
3940 |
by blast |
|
3941 |
||
3942 |
have "length ys = card (f ` {0 ..< size [x]})" |
|
3943 |
using f_img by auto |
|
63540 | 3944 |
then have *: "length ys = 1" by auto |
58969 | 3945 |
then have "f 0 = 0" using f_img by auto |
63540 | 3946 |
with * show ?case using f_nth by (cases ys) auto |
58969 | 3947 |
next |
3948 |
case (3 x1 x2 xs) |
|
3949 |
from "3.prems" obtain f where f_mono: "mono f" |
|
3950 |
and f_img: "f ` {0..<length (x1 # x2 # xs)} = {0..<length ys}" |
|
3951 |
and f_nth: |
|
3952 |
"\<And>i. i < length (x1 # x2 # xs) \<Longrightarrow> (x1 # x2 # xs) ! i = ys ! f i" |
|
3953 |
"\<And>i. i + 1 < length (x1 # x2 #xs) \<Longrightarrow> |
|
3954 |
((x1 # x2 # xs) ! i = (x1 # x2 # xs) ! (i + 1)) = (f i = f (i + 1))" |
|
3955 |
by blast |
|
3956 |
||
3957 |
show ?case |
|
3958 |
proof cases |
|
3959 |
assume "x1 = x2" |
|
3960 |
||
67091 | 3961 |
let ?f' = "f \<circ> Suc" |
58969 | 3962 |
|
3963 |
have "remdups_adj (x1 # xs) = ys" |
|
3964 |
proof (intro "3.hyps" exI conjI impI allI) |
|
3965 |
show "mono ?f'" |
|
3966 |
using f_mono by (simp add: mono_iff_le_Suc) |
|
3967 |
next |
|
3968 |
have "?f' ` {0 ..< length (x1 # xs)} = f ` {Suc 0 ..< length (x1 # x2 # xs)}" |
|
71585 | 3969 |
using less_Suc_eq_0_disj by auto |
58969 | 3970 |
also have "\<dots> = f ` {0 ..< length (x1 # x2 # xs)}" |
3971 |
proof - |
|
3972 |
have "f 0 = f (Suc 0)" using \<open>x1 = x2\<close> f_nth[of 0] by simp |
|
69850 | 3973 |
then show ?thesis |
71585 | 3974 |
using less_Suc_eq_0_disj by auto |
58969 | 3975 |
qed |
3976 |
also have "\<dots> = {0 ..< length ys}" by fact |
|
3977 |
finally show "?f' ` {0 ..< length (x1 # xs)} = {0 ..< length ys}" . |
|
3978 |
qed (insert f_nth[of "Suc i" for i], auto simp: \<open>x1 = x2\<close>) |
|
3979 |
then show ?thesis using \<open>x1 = x2\<close> by simp |
|
3980 |
next |
|
3981 |
assume "x1 \<noteq> x2" |
|
3982 |
||
71585 | 3983 |
have two: "Suc (Suc 0) \<le> length ys" |
58969 | 3984 |
proof - |
3985 |
have "2 = card {f 0, f 1}" using \<open>x1 \<noteq> x2\<close> f_nth[of 0] by auto |
|
3986 |
also have "\<dots> \<le> card (f ` {0..< length (x1 # x2 # xs)})" |
|
3987 |
by (rule card_mono) auto |
|
3988 |
finally show ?thesis using f_img by simp |
|
3989 |
qed |
|
3990 |
||
3991 |
have "f 0 = 0" using f_mono f_img by (rule mono_image_least) simp |
|
3992 |
||
3993 |
have "f (Suc 0) = Suc 0" |
|
3994 |
proof (rule ccontr) |
|
3995 |
assume "f (Suc 0) \<noteq> Suc 0" |
|
3996 |
then have "Suc 0 < f (Suc 0)" using f_nth[of 0] \<open>x1 \<noteq> x2\<close> \<open>f 0 = 0\<close> by auto |
|
3997 |
then have "\<And>i. Suc 0 < f (Suc i)" |
|
3998 |
using f_mono |
|
3999 |
by (meson Suc_le_mono le0 less_le_trans monoD) |
|
69850 | 4000 |
then have "Suc 0 \<noteq> f i" for i using \<open>f 0 = 0\<close> |
4001 |
by (cases i) fastforce+ |
|
58969 | 4002 |
then have "Suc 0 \<notin> f ` {0 ..< length (x1 # x2 # xs)}" by auto |
71585 | 4003 |
then show False using f_img two by auto |
58969 | 4004 |
qed |
4005 |
obtain ys' where "ys = x1 # x2 # ys'" |
|
71585 | 4006 |
using two f_nth[of 0] f_nth[of 1] |
4007 |
by (auto simp: Suc_le_length_iff \<open>f 0 = 0\<close> \<open>f (Suc 0) = Suc 0\<close>) |
|
4008 |
||
4009 |
have Suc0_le_f_Suc: "Suc 0 \<le> f (Suc i)" for i |
|
4010 |
by (metis Suc_le_mono \<open>f (Suc 0) = Suc 0\<close> f_mono le0 mono_def) |
|
58969 | 4011 |
|
63040 | 4012 |
define f' where "f' x = f (Suc x) - 1" for x |
71585 | 4013 |
have f_Suc: "f (Suc i) = Suc (f' i)" for i |
58969 | 4014 |
using Suc0_le_f_Suc[of i] by (auto simp: f'_def) |
4015 |
||
4016 |
have "remdups_adj (x2 # xs) = (x2 # ys')" |
|
4017 |
proof (intro "3.hyps" exI conjI impI allI) |
|
4018 |
show "mono f'" |
|
4019 |
using Suc0_le_f_Suc f_mono by (auto simp: f'_def mono_iff_le_Suc le_diff_iff) |
|
4020 |
next |
|
4021 |
have "f' ` {0 ..< length (x2 # xs)} = (\<lambda>x. f x - 1) ` {0 ..< length (x1 # x2 #xs)}" |
|
68719 | 4022 |
by (auto simp: f'_def \<open>f 0 = 0\<close> \<open>f (Suc 0) = Suc 0\<close> image_def Bex_def less_Suc_eq_0_disj) |
58969 | 4023 |
also have "\<dots> = (\<lambda>x. x - 1) ` f ` {0 ..< length (x1 # x2 #xs)}" |
4024 |
by (auto simp: image_comp) |
|
4025 |
also have "\<dots> = (\<lambda>x. x - 1) ` {0 ..< length ys}" |
|
4026 |
by (simp only: f_img) |
|
4027 |
also have "\<dots> = {0 ..< length (x2 # ys')}" |
|
4028 |
using \<open>ys = _\<close> by (fastforce intro: rev_image_eqI) |
|
4029 |
finally show "f' ` {0 ..< length (x2 # xs)} = {0 ..< length (x2 # ys')}" . |
|
4030 |
qed (insert f_nth[of "Suc i" for i] \<open>x1 \<noteq> x2\<close>, auto simp add: f_Suc \<open>ys = _\<close>) |
|
4031 |
then show ?case using \<open>ys = _\<close> \<open>x1 \<noteq> x2\<close> by simp |
|
4032 |
qed |
|
4033 |
qed |
|
4034 |
qed |
|
4035 |
||
58041 | 4036 |
lemma hd_remdups_adj[simp]: "hd (remdups_adj xs) = hd xs" |
71585 | 4037 |
by (induction xs rule: remdups_adj.induct) simp_all |
58041 | 4038 |
|
53721
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
4039 |
lemma remdups_adj_Cons: "remdups_adj (x # xs) = |
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
4040 |
(case remdups_adj xs of [] \<Rightarrow> [x] | y # xs \<Rightarrow> if x = y then y # xs else x # y # xs)" |
71585 | 4041 |
by (induct xs arbitrary: x) (auto split: list.splits) |
53721
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
4042 |
|
64963 | 4043 |
lemma remdups_adj_append_two: |
53721
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
4044 |
"remdups_adj (xs @ [x,y]) = remdups_adj (xs @ [x]) @ (if x = y then [] else [y])" |
71585 | 4045 |
by (induct xs rule: remdups_adj.induct, simp_all) |
53721
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
4046 |
|
58041 | 4047 |
lemma remdups_adj_adjacent: |
4048 |
"Suc i < length (remdups_adj xs) \<Longrightarrow> remdups_adj xs ! i \<noteq> remdups_adj xs ! Suc i" |
|
4049 |
proof (induction xs arbitrary: i rule: remdups_adj.induct) |
|
4050 |
case (3 x y xs i) |
|
4051 |
thus ?case by (cases i, cases "x = y") (simp, auto simp: hd_conv_nth[symmetric]) |
|
4052 |
qed simp_all |
|
4053 |
||
53721
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
4054 |
lemma remdups_adj_rev[simp]: "remdups_adj (rev xs) = rev (remdups_adj xs)" |
58807 | 4055 |
by (induct xs rule: remdups_adj.induct, simp_all add: remdups_adj_append_two) |
53721
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
4056 |
|
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
4057 |
lemma remdups_adj_length[simp]: "length (remdups_adj xs) \<le> length xs" |
58807 | 4058 |
by (induct xs rule: remdups_adj.induct, auto) |
53721
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
4059 |
|
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
4060 |
lemma remdups_adj_length_ge1[simp]: "xs \<noteq> [] \<Longrightarrow> length (remdups_adj xs) \<ge> Suc 0" |
58807 | 4061 |
by (induct xs rule: remdups_adj.induct, simp_all) |
53721
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
4062 |
|
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
4063 |
lemma remdups_adj_Nil_iff[simp]: "remdups_adj xs = [] \<longleftrightarrow> xs = []" |
58807 | 4064 |
by (induct xs rule: remdups_adj.induct, simp_all) |
53721
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
4065 |
|
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
4066 |
lemma remdups_adj_set[simp]: "set (remdups_adj xs) = set xs" |
58807 | 4067 |
by (induct xs rule: remdups_adj.induct, simp_all) |
53721
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
4068 |
|
71778 | 4069 |
lemma last_remdups_adj [simp]: "last (remdups_adj xs) = last xs" |
4070 |
by (induction xs rule: remdups_adj.induct) auto |
|
4071 |
||
53721
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
4072 |
lemma remdups_adj_Cons_alt[simp]: "x # tl (remdups_adj (x # xs)) = remdups_adj (x # xs)" |
58807 | 4073 |
by (induct xs rule: remdups_adj.induct, auto) |
53721
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
4074 |
|
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
4075 |
lemma remdups_adj_distinct: "distinct xs \<Longrightarrow> remdups_adj xs = xs" |
58807 | 4076 |
by (induct xs rule: remdups_adj.induct, simp_all) |
53721
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
4077 |
|
64963 | 4078 |
lemma remdups_adj_append: |
53721
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
4079 |
"remdups_adj (xs\<^sub>1 @ x # xs\<^sub>2) = remdups_adj (xs\<^sub>1 @ [x]) @ tl (remdups_adj (x # xs\<^sub>2))" |
58807 | 4080 |
by (induct xs\<^sub>1 rule: remdups_adj.induct, simp_all) |
53721
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
4081 |
|
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
4082 |
lemma remdups_adj_singleton: |
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
4083 |
"remdups_adj xs = [x] \<Longrightarrow> xs = replicate (length xs) x" |
62390 | 4084 |
by (induct xs rule: remdups_adj.induct, auto split: if_split_asm) |
53721
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
4085 |
|
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
4086 |
lemma remdups_adj_map_injective: |
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
4087 |
assumes "inj f" |
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
4088 |
shows "remdups_adj (map f xs) = map f (remdups_adj xs)" |
58807 | 4089 |
by (induct xs rule: remdups_adj.induct) (auto simp add: injD[OF assms]) |
4090 |
||
62065 | 4091 |
lemma remdups_adj_replicate: |
4092 |
"remdups_adj (replicate n x) = (if n = 0 then [] else [x])" |
|
4093 |
by (induction n) (auto simp: remdups_adj_Cons) |
|
4094 |
||
58807 | 4095 |
lemma remdups_upt [simp]: "remdups [m..<n] = [m..<n]" |
58437 | 4096 |
proof (cases "m \<le> n") |
4097 |
case False then show ?thesis by simp |
|
4098 |
next |
|
4099 |
case True then obtain q where "n = m + q" |
|
4100 |
by (auto simp add: le_iff_add) |
|
4101 |
moreover have "remdups [m..<m + q] = [m..<m + q]" |
|
4102 |
by (induct q) simp_all |
|
4103 |
ultimately show ?thesis by simp |
|
4104 |
qed |
|
4105 |
||
71779 | 4106 |
lemma successively_remdups_adjI: |
4107 |
"successively P xs \<Longrightarrow> successively P (remdups_adj xs)" |
|
4108 |
by (induction xs rule: remdups_adj.induct) (auto simp: successively_Cons) |
|
4109 |
||
4110 |
lemma successively_remdups_adj_iff: |
|
4111 |
"(\<And>x. x \<in> set xs \<Longrightarrow> P x x) \<Longrightarrow> |
|
4112 |
successively P (remdups_adj xs) \<longleftrightarrow> successively P xs" |
|
4113 |
by (induction xs rule: remdups_adj.induct)(auto simp: successively_Cons) |
|
4114 |
||
71789 | 4115 |
lemma remdups_adj_Cons': |
4116 |
"remdups_adj (x # xs) = x # remdups_adj (dropWhile (\<lambda>y. y = x) xs)" |
|
4117 |
by (induction xs) auto |
|
4118 |
||
4119 |
lemma remdups_adj_singleton_iff: |
|
4120 |
"length (remdups_adj xs) = Suc 0 \<longleftrightarrow> xs \<noteq> [] \<and> xs = replicate (length xs) (hd xs)" |
|
4121 |
proof safe |
|
4122 |
assume *: "xs = replicate (length xs) (hd xs)" and [simp]: "xs \<noteq> []" |
|
4123 |
show "length (remdups_adj xs) = Suc 0" |
|
4124 |
by (subst *) (auto simp: remdups_adj_replicate) |
|
4125 |
next |
|
4126 |
assume "length (remdups_adj xs) = Suc 0" |
|
4127 |
thus "xs = replicate (length xs) (hd xs)" |
|
4128 |
by (induction xs rule: remdups_adj.induct) (auto split: if_splits) |
|
4129 |
qed auto |
|
4130 |
||
4131 |
lemma tl_remdups_adj: |
|
4132 |
"ys \<noteq> [] \<Longrightarrow> tl (remdups_adj ys) = remdups_adj (dropWhile (\<lambda>x. x = hd ys) (tl ys))" |
|
4133 |
by (cases ys) (simp_all add: remdups_adj_Cons') |
|
4134 |
||
4135 |
lemma remdups_adj_append_dropWhile: |
|
4136 |
"remdups_adj (xs @ y # ys) = remdups_adj (xs @ [y]) @ remdups_adj (dropWhile (\<lambda>x. x = y) ys)" |
|
4137 |
by (subst remdups_adj_append) (simp add: tl_remdups_adj) |
|
4138 |
||
4139 |
lemma remdups_adj_append': |
|
4140 |
assumes "xs = [] \<or> ys = [] \<or> last xs \<noteq> hd ys" |
|
4141 |
shows "remdups_adj (xs @ ys) = remdups_adj xs @ remdups_adj ys" |
|
4142 |
proof - |
|
4143 |
have ?thesis if [simp]: "xs \<noteq> []" "ys \<noteq> []" and "last xs \<noteq> hd ys" |
|
4144 |
proof - |
|
4145 |
obtain x xs' where xs: "xs = xs' @ [x]" |
|
4146 |
by (cases xs rule: rev_cases) auto |
|
4147 |
have "remdups_adj (xs' @ x # ys) = remdups_adj (xs' @ [x]) @ remdups_adj ys" |
|
4148 |
using \<open>last xs \<noteq> hd ys\<close> unfolding xs |
|
4149 |
by (metis (full_types) dropWhile_eq_self_iff last_snoc remdups_adj_append_dropWhile) |
|
4150 |
thus ?thesis by (simp add: xs) |
|
4151 |
qed |
|
4152 |
thus ?thesis using assms |
|
4153 |
by (cases "xs = []"; cases "ys = []") auto |
|
4154 |
qed |
|
4155 |
||
4156 |
lemma remdups_adj_append'': "xs \<noteq> [] |
|
4157 |
\<Longrightarrow> remdups_adj (xs @ ys) = remdups_adj xs @ remdups_adj (dropWhile (\<lambda>y. y = last xs) ys)" |
|
4158 |
by (induction xs rule: remdups_adj.induct) (auto simp: remdups_adj_Cons') |
|
4159 |
||
71779 | 4160 |
|
4161 |
subsection \<open>@{const distinct_adj}\<close> |
|
4162 |
||
4163 |
lemma distinct_adj_Nil [simp]: "distinct_adj []" |
|
4164 |
and distinct_adj_singleton [simp]: "distinct_adj [x]" |
|
4165 |
and distinct_adj_Cons_Cons [simp]: "distinct_adj (x # y # xs) \<longleftrightarrow> x \<noteq> y \<and> distinct_adj (y # xs)" |
|
4166 |
by (auto simp: distinct_adj_def) |
|
4167 |
||
4168 |
lemma distinct_adj_Cons: "distinct_adj (x # xs) \<longleftrightarrow> xs = [] \<or> x \<noteq> hd xs \<and> distinct_adj xs" |
|
4169 |
by (cases xs) auto |
|
4170 |
||
4171 |
lemma distinct_adj_ConsD: "distinct_adj (x # xs) \<Longrightarrow> distinct_adj xs" |
|
4172 |
by (cases xs) auto |
|
4173 |
||
4174 |
lemma distinct_adj_remdups_adj[simp]: "distinct_adj (remdups_adj xs)" |
|
4175 |
by (induction xs rule: remdups_adj.induct) (auto simp: distinct_adj_Cons) |
|
4176 |
||
4177 |
lemma distinct_adj_altdef: "distinct_adj xs \<longleftrightarrow> remdups_adj xs = xs" |
|
4178 |
proof |
|
4179 |
assume "remdups_adj xs = xs" |
|
4180 |
with distinct_adj_remdups_adj[of xs] show "distinct_adj xs" |
|
4181 |
by simp |
|
4182 |
next |
|
4183 |
assume "distinct_adj xs" |
|
4184 |
thus "remdups_adj xs = xs" |
|
4185 |
by (induction xs rule: induct_list012) auto |
|
4186 |
qed |
|
4187 |
||
4188 |
lemma distinct_adj_rev [simp]: "distinct_adj (rev xs) \<longleftrightarrow> distinct_adj xs" |
|
4189 |
by (simp add: distinct_adj_def eq_commute) |
|
4190 |
||
4191 |
lemma distinct_adj_append_iff: |
|
4192 |
"distinct_adj (xs @ ys) \<longleftrightarrow> |
|
4193 |
distinct_adj xs \<and> distinct_adj ys \<and> (xs = [] \<or> ys = [] \<or> last xs \<noteq> hd ys)" |
|
4194 |
by (auto simp: distinct_adj_def successively_append_iff) |
|
4195 |
||
4196 |
lemma distinct_adj_appendD1 [dest]: "distinct_adj (xs @ ys) \<Longrightarrow> distinct_adj xs" |
|
4197 |
and distinct_adj_appendD2 [dest]: "distinct_adj (xs @ ys) \<Longrightarrow> distinct_adj ys" |
|
4198 |
by (auto simp: distinct_adj_append_iff) |
|
4199 |
||
4200 |
lemma distinct_adj_mapI: "distinct_adj xs \<Longrightarrow> inj_on f (set xs) \<Longrightarrow> distinct_adj (map f xs)" |
|
4201 |
unfolding distinct_adj_def successively_map |
|
4202 |
by (erule successively_mono) (auto simp: inj_on_def) |
|
4203 |
||
4204 |
lemma distinct_adj_mapD: "distinct_adj (map f xs) \<Longrightarrow> distinct_adj xs" |
|
4205 |
unfolding distinct_adj_def successively_map by (erule successively_mono) auto |
|
4206 |
||
4207 |
lemma distinct_adj_map_iff: "inj_on f (set xs) \<Longrightarrow> distinct_adj (map f xs) \<longleftrightarrow> distinct_adj xs" |
|
4208 |
using distinct_adj_mapD distinct_adj_mapI by blast |
|
4209 |
||
49948
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
4210 |
|
69593 | 4211 |
subsubsection \<open>\<^const>\<open>insert\<close>\<close> |
34978
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
4212 |
|
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
4213 |
lemma in_set_insert [simp]: |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
4214 |
"x \<in> set xs \<Longrightarrow> List.insert x xs = xs" |
58807 | 4215 |
by (simp add: List.insert_def) |
34978
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
4216 |
|
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
4217 |
lemma not_in_set_insert [simp]: |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
4218 |
"x \<notin> set xs \<Longrightarrow> List.insert x xs = x # xs" |
58807 | 4219 |
by (simp add: List.insert_def) |
4220 |
||
4221 |
lemma insert_Nil [simp]: "List.insert x [] = [x]" |
|
4222 |
by simp |
|
4223 |
||
4224 |
lemma set_insert [simp]: "set (List.insert x xs) = insert x (set xs)" |
|
4225 |
by (auto simp add: List.insert_def) |
|
4226 |
||
4227 |
lemma distinct_insert [simp]: "distinct (List.insert x xs) = distinct xs" |
|
4228 |
by (simp add: List.insert_def) |
|
35295 | 4229 |
|
36275 | 4230 |
lemma insert_remdups: |
4231 |
"List.insert x (remdups xs) = remdups (List.insert x xs)" |
|
58807 | 4232 |
by (simp add: List.insert_def) |
36275 | 4233 |
|
34978
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
4234 |
|
69593 | 4235 |
subsubsection \<open>\<^const>\<open>List.union\<close>\<close> |
60758 | 4236 |
|
4237 |
text\<open>This is all one should need to know about union:\<close> |
|
57198 | 4238 |
lemma set_union[simp]: "set (List.union xs ys) = set xs \<union> set ys" |
4239 |
unfolding List.union_def |
|
4240 |
by(induct xs arbitrary: ys) simp_all |
|
4241 |
||
4242 |
lemma distinct_union[simp]: "distinct(List.union xs ys) = distinct ys" |
|
4243 |
unfolding List.union_def |
|
4244 |
by(induct xs arbitrary: ys) simp_all |
|
4245 |
||
4246 |
||
69593 | 4247 |
subsubsection \<open>\<^const>\<open>List.find\<close>\<close> |
47122 | 4248 |
|
4249 |
lemma find_None_iff: "List.find P xs = None \<longleftrightarrow> \<not> (\<exists>x. x \<in> set xs \<and> P x)" |
|
4250 |
proof (induction xs) |
|
4251 |
case Nil thus ?case by simp |
|
4252 |
next |
|
4253 |
case (Cons x xs) thus ?case by (fastforce split: if_splits) |
|
4254 |
qed |
|
4255 |
||
4256 |
lemma find_Some_iff: |
|
4257 |
"List.find P xs = Some x \<longleftrightarrow> |
|
4258 |
(\<exists>i<length xs. P (xs!i) \<and> x = xs!i \<and> (\<forall>j<i. \<not> P (xs!j)))" |
|
4259 |
proof (induction xs) |
|
4260 |
case Nil thus ?case by simp |
|
4261 |
next |
|
4262 |
case (Cons x xs) thus ?case |
|
56085 | 4263 |
apply(auto simp: nth_Cons' split: if_splits) |
4264 |
using diff_Suc_1[unfolded One_nat_def] less_Suc_eq_0_disj by fastforce |
|
47122 | 4265 |
qed |
4266 |
||
4267 |
lemma find_cong[fundef_cong]: |
|
64963 | 4268 |
assumes "xs = ys" and "\<And>x. x \<in> set ys \<Longrightarrow> P x = Q x" |
47122 | 4269 |
shows "List.find P xs = List.find Q ys" |
4270 |
proof (cases "List.find P xs") |
|
4271 |
case None thus ?thesis by (metis find_None_iff assms) |
|
4272 |
next |
|
4273 |
case (Some x) |
|
4274 |
hence "List.find Q ys = Some x" using assms |
|
4275 |
by (auto simp add: find_Some_iff) |
|
4276 |
thus ?thesis using Some by auto |
|
4277 |
qed |
|
4278 |
||
52379 | 4279 |
lemma find_dropWhile: |
4280 |
"List.find P xs = (case dropWhile (Not \<circ> P) xs |
|
4281 |
of [] \<Rightarrow> None |
|
4282 |
| x # _ \<Rightarrow> Some x)" |
|
58807 | 4283 |
by (induct xs) simp_all |
52379 | 4284 |
|
47122 | 4285 |
|
69593 | 4286 |
subsubsection \<open>\<^const>\<open>count_list\<close>\<close> |
60541 | 4287 |
|
4288 |
lemma count_notin[simp]: "x \<notin> set xs \<Longrightarrow> count_list xs x = 0" |
|
59728 | 4289 |
by (induction xs) auto |
4290 |
||
60541 | 4291 |
lemma count_le_length: "count_list xs x \<le> length xs" |
59728 | 4292 |
by (induction xs) auto |
4293 |
||
64267 | 4294 |
lemma sum_count_set: |
4295 |
"set xs \<subseteq> X \<Longrightarrow> finite X \<Longrightarrow> sum (count_list xs) X = length xs" |
|
68719 | 4296 |
proof (induction xs arbitrary: X) |
4297 |
case (Cons x xs) |
|
4298 |
then show ?case |
|
71585 | 4299 |
using sum.remove [of X x "count_list xs"] |
4300 |
by (auto simp: sum.If_cases simp flip: diff_eq) |
|
68719 | 4301 |
qed simp |
59728 | 4302 |
|
4303 |
||
69593 | 4304 |
subsubsection \<open>\<^const>\<open>List.extract\<close>\<close> |
55807 | 4305 |
|
4306 |
lemma extract_None_iff: "List.extract P xs = None \<longleftrightarrow> \<not> (\<exists> x\<in>set xs. P x)" |
|
4307 |
by(auto simp: extract_def dropWhile_eq_Cons_conv split: list.splits) |
|
4308 |
(metis in_set_conv_decomp) |
|
4309 |
||
4310 |
lemma extract_SomeE: |
|
4311 |
"List.extract P xs = Some (ys, y, zs) \<Longrightarrow> |
|
64963 | 4312 |
xs = ys @ y # zs \<and> P y \<and> \<not> (\<exists> y \<in> set ys. P y)" |
55807 | 4313 |
by(auto simp: extract_def dropWhile_eq_Cons_conv split: list.splits) |
4314 |
||
4315 |
lemma extract_Some_iff: |
|
4316 |
"List.extract P xs = Some (ys, y, zs) \<longleftrightarrow> |
|
64963 | 4317 |
xs = ys @ y # zs \<and> P y \<and> \<not> (\<exists> y \<in> set ys. P y)" |
55807 | 4318 |
by(auto simp: extract_def dropWhile_eq_Cons_conv dest: set_takeWhileD split: list.splits) |
4319 |
||
4320 |
lemma extract_Nil_code[code]: "List.extract P [] = None" |
|
4321 |
by(simp add: extract_def) |
|
4322 |
||
4323 |
lemma extract_Cons_code[code]: |
|
4324 |
"List.extract P (x # xs) = (if P x then Some ([], x, xs) else |
|
4325 |
(case List.extract P xs of |
|
4326 |
None \<Rightarrow> None | |
|
4327 |
Some (ys, y, zs) \<Rightarrow> Some (x#ys, y, zs)))" |
|
56085 | 4328 |
by(auto simp add: extract_def comp_def split: list.splits) |
4329 |
(metis dropWhile_eq_Nil_conv list.distinct(1)) |
|
55807 | 4330 |
|
4331 |
||
69593 | 4332 |
subsubsection \<open>\<^const>\<open>remove1\<close>\<close> |
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
4333 |
|
18049 | 4334 |
lemma remove1_append: |
4335 |
"remove1 x (xs @ ys) = |
|
4336 |
(if x \<in> set xs then remove1 x xs @ ys else xs @ remove1 x ys)" |
|
4337 |
by (induct xs) auto |
|
4338 |
||
36903 | 4339 |
lemma remove1_commute: "remove1 x (remove1 y zs) = remove1 y (remove1 x zs)" |
4340 |
by (induct zs) auto |
|
4341 |
||
23479 | 4342 |
lemma in_set_remove1[simp]: |
67613 | 4343 |
"a \<noteq> b \<Longrightarrow> a \<in> set(remove1 b xs) = (a \<in> set xs)" |
68719 | 4344 |
by (induct xs) auto |
23479 | 4345 |
|
67613 | 4346 |
lemma set_remove1_subset: "set(remove1 x xs) \<subseteq> set xs" |
68719 | 4347 |
by (induct xs) auto |
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
4348 |
|
67613 | 4349 |
lemma set_remove1_eq [simp]: "distinct xs \<Longrightarrow> set(remove1 x xs) = set xs - {x}" |
68719 | 4350 |
by (induct xs) auto |
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
4351 |
|
23479 | 4352 |
lemma length_remove1: |
67613 | 4353 |
"length(remove1 x xs) = (if x \<in> set xs then length xs - 1 else length xs)" |
58807 | 4354 |
by (induct xs) (auto dest!:length_pos_if_in_set) |
23479 | 4355 |
|
18049 | 4356 |
lemma remove1_filter_not[simp]: |
4357 |
"\<not> P x \<Longrightarrow> remove1 x (filter P xs) = filter P xs" |
|
4358 |
by(induct xs) auto |
|
4359 |
||
39073 | 4360 |
lemma filter_remove1: |
4361 |
"filter Q (remove1 x xs) = remove1 x (filter Q xs)" |
|
4362 |
by (induct xs) auto |
|
4363 |
||
67613 | 4364 |
lemma notin_set_remove1[simp]: "x \<notin> set xs \<Longrightarrow> x \<notin> set(remove1 y xs)" |
58807 | 4365 |
by(insert set_remove1_subset) fast |
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
4366 |
|
67613 | 4367 |
lemma distinct_remove1[simp]: "distinct xs \<Longrightarrow> distinct(remove1 x xs)" |
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
4368 |
by (induct xs) simp_all |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
4369 |
|
36275 | 4370 |
lemma remove1_remdups: |
4371 |
"distinct xs \<Longrightarrow> remove1 x (remdups xs) = remdups (remove1 x xs)" |
|
58807 | 4372 |
by (induct xs) simp_all |
4373 |
||
4374 |
lemma remove1_idem: "x \<notin> set xs \<Longrightarrow> remove1 x xs = xs" |
|
4375 |
by (induct xs) simp_all |
|
37107 | 4376 |
|
73442 | 4377 |
lemma remove1_split: |
73443 | 4378 |
"a \<in> set xs \<Longrightarrow> remove1 a xs = ys \<longleftrightarrow> (\<exists>ls rs. xs = ls @ a # rs \<and> a \<notin> set ls \<and> ys = ls @ rs)" |
73442 | 4379 |
by (metis remove1.simps(2) remove1_append split_list_first) |
4380 |
||
13114 | 4381 |
|
69593 | 4382 |
subsubsection \<open>\<^const>\<open>removeAll\<close>\<close> |
27693 | 4383 |
|
34978
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
4384 |
lemma removeAll_filter_not_eq: |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
4385 |
"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
|
4386 |
proof |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
4387 |
fix xs |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
4388 |
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
|
4389 |
by (induct xs) auto |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
4390 |
qed |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
4391 |
|
27693 | 4392 |
lemma removeAll_append[simp]: |
4393 |
"removeAll x (xs @ ys) = removeAll x xs @ removeAll x ys" |
|
4394 |
by (induct xs) auto |
|
4395 |
||
4396 |
lemma set_removeAll[simp]: "set(removeAll x xs) = set xs - {x}" |
|
4397 |
by (induct xs) auto |
|
4398 |
||
4399 |
lemma removeAll_id[simp]: "x \<notin> set xs \<Longrightarrow> removeAll x xs = xs" |
|
4400 |
by (induct xs) auto |
|
4401 |
||
46448
f1201fac7398
more specification of the quotient package in IsarRef
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents:
46440
diff
changeset
|
4402 |
(* Needs count:: 'a \<Rightarrow> 'a list \<Rightarrow> nat |
27693 | 4403 |
lemma length_removeAll: |
4404 |
"length(removeAll x xs) = length xs - count x xs" |
|
4405 |
*) |
|
4406 |
||
4407 |
lemma removeAll_filter_not[simp]: |
|
4408 |
"\<not> P x \<Longrightarrow> removeAll x (filter P xs) = filter P xs" |
|
4409 |
by(induct xs) auto |
|
4410 |
||
34978
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
4411 |
lemma distinct_removeAll: |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
4412 |
"distinct xs \<Longrightarrow> distinct (removeAll x xs)" |
58807 | 4413 |
by (simp add: removeAll_filter_not_eq) |
27693 | 4414 |
|
4415 |
lemma distinct_remove1_removeAll: |
|
67613 | 4416 |
"distinct xs \<Longrightarrow> remove1 x xs = removeAll x xs" |
27693 | 4417 |
by (induct xs) simp_all |
4418 |
||
4419 |
lemma map_removeAll_inj_on: "inj_on f (insert x (set xs)) \<Longrightarrow> |
|
4420 |
map f (removeAll x xs) = removeAll (f x) (map f xs)" |
|
4421 |
by (induct xs) (simp_all add:inj_on_def) |
|
4422 |
||
4423 |
lemma map_removeAll_inj: "inj f \<Longrightarrow> |
|
4424 |
map f (removeAll x xs) = removeAll (f x) (map f xs)" |
|
56085 | 4425 |
by (rule map_removeAll_inj_on, erule subset_inj_on, rule subset_UNIV) |
27693 | 4426 |
|
63365 | 4427 |
lemma length_removeAll_less_eq [simp]: |
4428 |
"length (removeAll x xs) \<le> length xs" |
|
4429 |
by (simp add: removeAll_filter_not_eq) |
|
4430 |
||
4431 |
lemma length_removeAll_less [termination_simp]: |
|
4432 |
"x \<in> set xs \<Longrightarrow> length (removeAll x xs) < length xs" |
|
4433 |
by (auto dest: length_filter_less simp add: removeAll_filter_not_eq) |
|
4434 |
||
71593 | 4435 |
lemma distinct_concat_iff: "distinct (concat xs) \<longleftrightarrow> |
4436 |
distinct (removeAll [] xs) \<and> |
|
4437 |
(\<forall>ys. ys \<in> set xs \<longrightarrow> distinct ys) \<and> |
|
4438 |
(\<forall>ys zs. ys \<in> set xs \<and> zs \<in> set xs \<and> ys \<noteq> zs \<longrightarrow> set ys \<inter> set zs = {})" |
|
4439 |
apply (induct xs) |
|
4440 |
apply(simp_all, safe, auto) |
|
4441 |
by (metis Int_iff UN_I empty_iff equals0I set_empty) |
|
4442 |
||
27693 | 4443 |
|
69593 | 4444 |
subsubsection \<open>\<^const>\<open>replicate\<close>\<close> |
13114 | 4445 |
|
13142 | 4446 |
lemma length_replicate [simp]: "length (replicate n x) = n" |
13145 | 4447 |
by (induct n) auto |
13124 | 4448 |
|
58437 | 4449 |
lemma replicate_eqI: |
4450 |
assumes "length xs = n" and "\<And>y. y \<in> set xs \<Longrightarrow> y = x" |
|
4451 |
shows "xs = replicate n x" |
|
67613 | 4452 |
using assms |
4453 |
proof (induct xs arbitrary: n) |
|
58437 | 4454 |
case Nil then show ?case by simp |
4455 |
next |
|
4456 |
case (Cons x xs) then show ?case by (cases n) simp_all |
|
4457 |
qed |
|
4458 |
||
36622
e393a91f86df
Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents:
36275
diff
changeset
|
4459 |
lemma Ex_list_of_length: "\<exists>xs. length xs = n" |
e393a91f86df
Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents:
36275
diff
changeset
|
4460 |
by (rule exI[of _ "replicate n undefined"]) simp |
e393a91f86df
Generalize swap_inj_on; add simps for Times; add Ex_list_of_length, log_inj; Added missing locale edges for linordered semiring with 1.
hoelzl
parents:
36275
diff
changeset
|
4461 |
|
13142 | 4462 |
lemma map_replicate [simp]: "map f (replicate n x) = replicate n (f x)" |
13145 | 4463 |
by (induct n) auto |
13114 | 4464 |
|
31363
7493b571b37d
Added theorems about distinct & concat, map & replicate and concat & replicate
hoelzl
parents:
31264
diff
changeset
|
4465 |
lemma map_replicate_const: |
7493b571b37d
Added theorems about distinct & concat, map & replicate and concat & replicate
hoelzl
parents:
31264
diff
changeset
|
4466 |
"map (\<lambda> x. k) lst = replicate (length lst) k" |
66853 | 4467 |
by (induct lst) auto |
31363
7493b571b37d
Added theorems about distinct & concat, map & replicate and concat & replicate
hoelzl
parents:
31264
diff
changeset
|
4468 |
|
13114 | 4469 |
lemma replicate_app_Cons_same: |
13145 | 4470 |
"(replicate n x) @ (x # xs) = x # replicate n x @ xs" |
4471 |
by (induct n) auto |
|
13114 | 4472 |
|
13142 | 4473 |
lemma rev_replicate [simp]: "rev (replicate n x) = replicate n x" |
58807 | 4474 |
by (induct n) (auto simp: replicate_app_Cons_same) |
13114 | 4475 |
|
13142 | 4476 |
lemma replicate_add: "replicate (n + m) x = replicate n x @ replicate m x" |
13145 | 4477 |
by (induct n) auto |
13114 | 4478 |
|
60758 | 4479 |
text\<open>Courtesy of Matthias Daum:\<close> |
16397 | 4480 |
lemma append_replicate_commute: |
4481 |
"replicate n x @ replicate k x = replicate k x @ replicate n x" |
|
68719 | 4482 |
by (metis add.commute replicate_add) |
16397 | 4483 |
|
60758 | 4484 |
text\<open>Courtesy of Andreas Lochbihler:\<close> |
31080 | 4485 |
lemma filter_replicate: |
4486 |
"filter P (replicate n x) = (if P x then replicate n x else [])" |
|
4487 |
by(induct n) auto |
|
4488 |
||
71585 | 4489 |
lemma hd_replicate [simp]: "n \<noteq> 0 \<Longrightarrow> hd (replicate n x) = x" |
13145 | 4490 |
by (induct n) auto |
13114 | 4491 |
|
46500
0196966d6d2d
removing unnecessary premises in theorems of List theory
bulwahn
parents:
46448
diff
changeset
|
4492 |
lemma tl_replicate [simp]: "tl (replicate n x) = replicate (n - 1) x" |
13145 | 4493 |
by (induct n) auto |
13114 | 4494 |
|
71585 | 4495 |
lemma last_replicate [simp]: "n \<noteq> 0 \<Longrightarrow> last (replicate n x) = x" |
13145 | 4496 |
by (atomize (full), induct n) auto |
13114 | 4497 |
|
71585 | 4498 |
lemma nth_replicate[simp]: "i < n \<Longrightarrow> (replicate n x)!i = x" |
58807 | 4499 |
by (induct n arbitrary: i)(auto simp: nth_Cons split: nat.split) |
13114 | 4500 |
|
60758 | 4501 |
text\<open>Courtesy of Matthias Daum (2 lemmas):\<close> |
16397 | 4502 |
lemma take_replicate[simp]: "take i (replicate k x) = replicate (min i k) x" |
68719 | 4503 |
proof (cases "k \<le> i") |
4504 |
case True |
|
4505 |
then show ?thesis |
|
4506 |
by (simp add: min_def) |
|
4507 |
next |
|
4508 |
case False |
|
4509 |
then have "replicate k x = replicate i x @ replicate (k - i) x" |
|
4510 |
by (simp add: replicate_add [symmetric]) |
|
4511 |
then show ?thesis |
|
4512 |
by (simp add: min_def) |
|
4513 |
qed |
|
16397 | 4514 |
|
24526 | 4515 |
lemma drop_replicate[simp]: "drop i (replicate k x) = replicate (k-i) x" |
68719 | 4516 |
proof (induct k arbitrary: i) |
4517 |
case (Suc k) |
|
4518 |
then show ?case |
|
4519 |
by (simp add: drop_Cons') |
|
4520 |
qed simp |
|
16397 | 4521 |
|
13142 | 4522 |
lemma set_replicate_Suc: "set (replicate (Suc n) x) = {x}" |
13145 | 4523 |
by (induct n) auto |
13114 | 4524 |
|
71585 | 4525 |
lemma set_replicate [simp]: "n \<noteq> 0 \<Longrightarrow> set (replicate n x) = {x}" |
13145 | 4526 |
by (fast dest!: not0_implies_Suc intro!: set_replicate_Suc) |
13114 | 4527 |
|
13142 | 4528 |
lemma set_replicate_conv_if: "set (replicate n x) = (if n = 0 then {} else {x})" |
13145 | 4529 |
by auto |
13114 | 4530 |
|
67091 | 4531 |
lemma in_set_replicate[simp]: "(x \<in> set (replicate n y)) = (x = y \<and> n \<noteq> 0)" |
37456 | 4532 |
by (simp add: set_replicate_conv_if) |
4533 |
||
37454 | 4534 |
lemma Ball_set_replicate[simp]: |
67091 | 4535 |
"(\<forall>x \<in> set(replicate n a). P x) = (P a \<or> n=0)" |
37454 | 4536 |
by(simp add: set_replicate_conv_if) |
4537 |
||
4538 |
lemma Bex_set_replicate[simp]: |
|
67091 | 4539 |
"(\<exists>x \<in> set(replicate n a). P x) = (P a \<and> n\<noteq>0)" |
37454 | 4540 |
by(simp add: set_replicate_conv_if) |
13114 | 4541 |
|
24796 | 4542 |
lemma replicate_append_same: |
4543 |
"replicate i x @ [x] = x # replicate i x" |
|
4544 |
by (induct i) simp_all |
|
4545 |
||
4546 |
lemma map_replicate_trivial: |
|
4547 |
"map (\<lambda>i. x) [0..<i] = replicate i x" |
|
66853 | 4548 |
by (induct i) (simp_all add: replicate_append_same) |
24796 | 4549 |
|
31363
7493b571b37d
Added theorems about distinct & concat, map & replicate and concat & replicate
hoelzl
parents:
31264
diff
changeset
|
4550 |
lemma concat_replicate_trivial[simp]: |
7493b571b37d
Added theorems about distinct & concat, map & replicate and concat & replicate
hoelzl
parents:
31264
diff
changeset
|
4551 |
"concat (replicate i []) = []" |
7493b571b37d
Added theorems about distinct & concat, map & replicate and concat & replicate
hoelzl
parents:
31264
diff
changeset
|
4552 |
by (induct i) (auto simp add: map_replicate_const) |
13114 | 4553 |
|
28642 | 4554 |
lemma replicate_empty[simp]: "(replicate n x = []) \<longleftrightarrow> n=0" |
4555 |
by (induct n) auto |
|
4556 |
||
4557 |
lemma empty_replicate[simp]: "([] = replicate n x) \<longleftrightarrow> n=0" |
|
4558 |
by (induct n) auto |
|
4559 |
||
4560 |
lemma replicate_eq_replicate[simp]: |
|
67091 | 4561 |
"(replicate m x = replicate n y) \<longleftrightarrow> (m=n \<and> (m\<noteq>0 \<longrightarrow> x=y))" |
68719 | 4562 |
proof (induct m arbitrary: n) |
4563 |
case (Suc m n) |
|
4564 |
then show ?case |
|
4565 |
by (induct n) auto |
|
4566 |
qed simp |
|
28642 | 4567 |
|
71778 | 4568 |
lemma takeWhile_replicate[simp]: |
4569 |
"takeWhile P (replicate n x) = (if P x then replicate n x else [])" |
|
4570 |
using takeWhile_eq_Nil_iff by fastforce |
|
4571 |
||
4572 |
lemma dropWhile_replicate[simp]: |
|
4573 |
"dropWhile P (replicate n x) = (if P x then [] else replicate n x)" |
|
4574 |
using dropWhile_eq_self_iff by fastforce |
|
4575 |
||
39534
c798d4f1b682
generalized lemma insort_remove1 to insort_key_remove1
haftmann
parents:
39302
diff
changeset
|
4576 |
lemma replicate_length_filter: |
c798d4f1b682
generalized lemma insort_remove1 to insort_key_remove1
haftmann
parents:
39302
diff
changeset
|
4577 |
"replicate (length (filter (\<lambda>y. x = y) xs)) x = filter (\<lambda>y. x = y) xs" |
c798d4f1b682
generalized lemma insort_remove1 to insort_key_remove1
haftmann
parents:
39302
diff
changeset
|
4578 |
by (induct xs) auto |
c798d4f1b682
generalized lemma insort_remove1 to insort_key_remove1
haftmann
parents:
39302
diff
changeset
|
4579 |
|
42714
fcba668b0839
add a lemma about commutative append to List.thy
noschinl
parents:
42713
diff
changeset
|
4580 |
lemma comm_append_are_replicate: |
72732 | 4581 |
"xs @ ys = ys @ xs \<Longrightarrow> \<exists>m n zs. concat (replicate m zs) = xs \<and> concat (replicate n zs) = ys" |
72735
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
paulson <lp15@cam.ac.uk>
parents:
72555
diff
changeset
|
4582 |
proof (induction "length (xs @ ys) + length xs" arbitrary: xs ys rule: less_induct) |
42714
fcba668b0839
add a lemma about commutative append to List.thy
noschinl
parents:
42713
diff
changeset
|
4583 |
case less |
72732 | 4584 |
consider (1) "length ys < length xs" | (2) "xs = []" | (3) "length xs \<le> length ys \<and> xs \<noteq> []" |
72735
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
paulson <lp15@cam.ac.uk>
parents:
72555
diff
changeset
|
4585 |
by linarith |
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
paulson <lp15@cam.ac.uk>
parents:
72555
diff
changeset
|
4586 |
then show ?case |
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
paulson <lp15@cam.ac.uk>
parents:
72555
diff
changeset
|
4587 |
proof (cases) |
72732 | 4588 |
case 1 |
72735
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
paulson <lp15@cam.ac.uk>
parents:
72555
diff
changeset
|
4589 |
then show ?thesis |
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
paulson <lp15@cam.ac.uk>
parents:
72555
diff
changeset
|
4590 |
using less.hyps[OF _ less.prems[symmetric]] nat_add_left_cancel_less by auto |
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
paulson <lp15@cam.ac.uk>
parents:
72555
diff
changeset
|
4591 |
next |
72732 | 4592 |
case 2 |
72735
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
paulson <lp15@cam.ac.uk>
parents:
72555
diff
changeset
|
4593 |
then have "concat (replicate 0 ys) = xs \<and> concat (replicate 1 ys) = ys" |
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
paulson <lp15@cam.ac.uk>
parents:
72555
diff
changeset
|
4594 |
by simp |
72732 | 4595 |
then show ?thesis |
72735
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
paulson <lp15@cam.ac.uk>
parents:
72555
diff
changeset
|
4596 |
by blast |
42714
fcba668b0839
add a lemma about commutative append to List.thy
noschinl
parents:
42713
diff
changeset
|
4597 |
next |
72732 | 4598 |
case 3 |
72735
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
paulson <lp15@cam.ac.uk>
parents:
72555
diff
changeset
|
4599 |
then have "length xs \<le> length ys" and "xs \<noteq> []" |
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
paulson <lp15@cam.ac.uk>
parents:
72555
diff
changeset
|
4600 |
by blast+ |
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
paulson <lp15@cam.ac.uk>
parents:
72555
diff
changeset
|
4601 |
from \<open>length xs \<le> length ys\<close> and \<open>xs @ ys = ys @ xs\<close> |
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
paulson <lp15@cam.ac.uk>
parents:
72555
diff
changeset
|
4602 |
obtain ws where "ys = xs @ ws" |
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
paulson <lp15@cam.ac.uk>
parents:
72555
diff
changeset
|
4603 |
by (auto simp: append_eq_append_conv2) |
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
paulson <lp15@cam.ac.uk>
parents:
72555
diff
changeset
|
4604 |
from this and \<open>xs \<noteq> []\<close> |
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
paulson <lp15@cam.ac.uk>
parents:
72555
diff
changeset
|
4605 |
have "length ws < length ys" |
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
paulson <lp15@cam.ac.uk>
parents:
72555
diff
changeset
|
4606 |
by simp |
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
paulson <lp15@cam.ac.uk>
parents:
72555
diff
changeset
|
4607 |
from \<open>xs @ ys = ys @ xs\<close>[unfolded \<open>ys = xs @ ws\<close>] |
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
paulson <lp15@cam.ac.uk>
parents:
72555
diff
changeset
|
4608 |
have "xs @ ws = ws @ xs" |
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
paulson <lp15@cam.ac.uk>
parents:
72555
diff
changeset
|
4609 |
by simp |
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
paulson <lp15@cam.ac.uk>
parents:
72555
diff
changeset
|
4610 |
from less.hyps[OF _ this] \<open>length ws < length ys\<close> |
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
paulson <lp15@cam.ac.uk>
parents:
72555
diff
changeset
|
4611 |
obtain m n' zs where "concat (replicate m zs) = xs" and "concat (replicate n' zs) = ws" |
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
paulson <lp15@cam.ac.uk>
parents:
72555
diff
changeset
|
4612 |
by auto |
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
paulson <lp15@cam.ac.uk>
parents:
72555
diff
changeset
|
4613 |
then have "concat (replicate (m+n') zs) = ys" |
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
paulson <lp15@cam.ac.uk>
parents:
72555
diff
changeset
|
4614 |
using \<open>ys = xs @ ws\<close> |
42714
fcba668b0839
add a lemma about commutative append to List.thy
noschinl
parents:
42713
diff
changeset
|
4615 |
by (simp add: replicate_add) |
72732 | 4616 |
then show ?thesis |
72735
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
paulson <lp15@cam.ac.uk>
parents:
72555
diff
changeset
|
4617 |
using \<open>concat (replicate m zs) = xs\<close> by blast |
42714
fcba668b0839
add a lemma about commutative append to List.thy
noschinl
parents:
42713
diff
changeset
|
4618 |
qed |
fcba668b0839
add a lemma about commutative append to List.thy
noschinl
parents:
42713
diff
changeset
|
4619 |
qed |
fcba668b0839
add a lemma about commutative append to List.thy
noschinl
parents:
42713
diff
changeset
|
4620 |
|
fcba668b0839
add a lemma about commutative append to List.thy
noschinl
parents:
42713
diff
changeset
|
4621 |
lemma comm_append_is_replicate: |
fcba668b0839
add a lemma about commutative append to List.thy
noschinl
parents:
42713
diff
changeset
|
4622 |
fixes xs ys :: "'a list" |
fcba668b0839
add a lemma about commutative append to List.thy
noschinl
parents:
42713
diff
changeset
|
4623 |
assumes "xs \<noteq> []" "ys \<noteq> []" |
fcba668b0839
add a lemma about commutative append to List.thy
noschinl
parents:
42713
diff
changeset
|
4624 |
assumes "xs @ ys = ys @ xs" |
fcba668b0839
add a lemma about commutative append to List.thy
noschinl
parents:
42713
diff
changeset
|
4625 |
shows "\<exists>n zs. n > 1 \<and> concat (replicate n zs) = xs @ ys" |
fcba668b0839
add a lemma about commutative append to List.thy
noschinl
parents:
42713
diff
changeset
|
4626 |
proof - |
fcba668b0839
add a lemma about commutative append to List.thy
noschinl
parents:
42713
diff
changeset
|
4627 |
obtain m n zs where "concat (replicate m zs) = xs" |
fcba668b0839
add a lemma about commutative append to List.thy
noschinl
parents:
42713
diff
changeset
|
4628 |
and "concat (replicate n zs) = ys" |
72732 | 4629 |
using comm_append_are_replicate[OF assms(3)] by blast |
42714
fcba668b0839
add a lemma about commutative append to List.thy
noschinl
parents:
42713
diff
changeset
|
4630 |
then have "m + n > 1" and "concat (replicate (m+n) zs) = xs @ ys" |
60758 | 4631 |
using \<open>xs \<noteq> []\<close> and \<open>ys \<noteq> []\<close> |
42714
fcba668b0839
add a lemma about commutative append to List.thy
noschinl
parents:
42713
diff
changeset
|
4632 |
by (auto simp: replicate_add) |
fcba668b0839
add a lemma about commutative append to List.thy
noschinl
parents:
42713
diff
changeset
|
4633 |
then show ?thesis by blast |
fcba668b0839
add a lemma about commutative append to List.thy
noschinl
parents:
42713
diff
changeset
|
4634 |
qed |
fcba668b0839
add a lemma about commutative append to List.thy
noschinl
parents:
42713
diff
changeset
|
4635 |
|
52380 | 4636 |
lemma Cons_replicate_eq: |
4637 |
"x # xs = replicate n y \<longleftrightarrow> x = y \<and> n > 0 \<and> xs = replicate (n - 1) x" |
|
66853 | 4638 |
by (induct n) auto |
52380 | 4639 |
|
4640 |
lemma replicate_length_same: |
|
4641 |
"(\<forall>y\<in>set xs. y = x) \<Longrightarrow> replicate (length xs) x = xs" |
|
66853 | 4642 |
by (induct xs) simp_all |
52380 | 4643 |
|
4644 |
lemma foldr_replicate [simp]: |
|
4645 |
"foldr f (replicate n x) = f x ^^ n" |
|
66853 | 4646 |
by (induct n) (simp_all) |
52380 | 4647 |
|
4648 |
lemma fold_replicate [simp]: |
|
4649 |
"fold f (replicate n x) = f x ^^ n" |
|
66853 | 4650 |
by (subst foldr_fold [symmetric]) simp_all |
52380 | 4651 |
|
28642 | 4652 |
|
69593 | 4653 |
subsubsection \<open>\<^const>\<open>enumerate\<close>\<close> |
51173 | 4654 |
|
4655 |
lemma enumerate_simps [simp, code]: |
|
4656 |
"enumerate n [] = []" |
|
4657 |
"enumerate n (x # xs) = (n, x) # enumerate (Suc n) xs" |
|
68719 | 4658 |
by (simp_all add: enumerate_eq_zip upt_rec) |
51173 | 4659 |
|
4660 |
lemma length_enumerate [simp]: |
|
4661 |
"length (enumerate n xs) = length xs" |
|
66853 | 4662 |
by (simp add: enumerate_eq_zip) |
51173 | 4663 |
|
4664 |
lemma map_fst_enumerate [simp]: |
|
4665 |
"map fst (enumerate n xs) = [n..<n + length xs]" |
|
66853 | 4666 |
by (simp add: enumerate_eq_zip) |
51173 | 4667 |
|
4668 |
lemma map_snd_enumerate [simp]: |
|
4669 |
"map snd (enumerate n xs) = xs" |
|
66853 | 4670 |
by (simp add: enumerate_eq_zip) |
64963 | 4671 |
|
51173 | 4672 |
lemma in_set_enumerate_eq: |
4673 |
"p \<in> set (enumerate n xs) \<longleftrightarrow> n \<le> fst p \<and> fst p < length xs + n \<and> nth xs (fst p - n) = snd p" |
|
4674 |
proof - |
|
4675 |
{ fix m |
|
4676 |
assume "n \<le> m" |
|
4677 |
moreover assume "m < length xs + n" |
|
4678 |
ultimately have "[n..<n + length xs] ! (m - n) = m \<and> |
|
4679 |
xs ! (m - n) = xs ! (m - n) \<and> m - n < length xs" by auto |
|
4680 |
then have "\<exists>q. [n..<n + length xs] ! q = m \<and> |
|
4681 |
xs ! q = xs ! (m - n) \<and> q < length xs" .. |
|
4682 |
} then show ?thesis by (cases p) (auto simp add: enumerate_eq_zip in_set_zip) |
|
4683 |
qed |
|
4684 |
||
66853 | 4685 |
lemma nth_enumerate_eq: "m < length xs \<Longrightarrow> enumerate n xs ! m = (n + m, xs ! m)" |
4686 |
by (simp add: enumerate_eq_zip) |
|
51173 | 4687 |
|
4688 |
lemma enumerate_replicate_eq: |
|
4689 |
"enumerate n (replicate m a) = map (\<lambda>q. (q, a)) [n..<n + m]" |
|
66853 | 4690 |
by (rule pair_list_eqI) |
4691 |
(simp_all add: enumerate_eq_zip comp_def map_replicate_const) |
|
51173 | 4692 |
|
4693 |
lemma enumerate_Suc_eq: |
|
4694 |
"enumerate (Suc n) xs = map (apfst Suc) (enumerate n xs)" |
|
66853 | 4695 |
by (rule pair_list_eqI) |
4696 |
(simp_all add: not_le, simp del: map_map add: map_Suc_upt map_map [symmetric]) |
|
51173 | 4697 |
|
52379 | 4698 |
lemma distinct_enumerate [simp]: |
4699 |
"distinct (enumerate n xs)" |
|
66853 | 4700 |
by (simp add: enumerate_eq_zip distinct_zipI1) |
52379 | 4701 |
|
58437 | 4702 |
lemma enumerate_append_eq: |
4703 |
"enumerate n (xs @ ys) = enumerate n xs @ enumerate (n + length xs) ys" |
|
68719 | 4704 |
by (simp add: enumerate_eq_zip add.assoc zip_append2) |
58437 | 4705 |
|
4706 |
lemma enumerate_map_upt: |
|
4707 |
"enumerate n (map f [n..<m]) = map (\<lambda>k. (k, f k)) [n..<m]" |
|
66853 | 4708 |
by (cases "n \<le> m") (simp_all add: zip_map2 zip_same_conv_map enumerate_eq_zip) |
64963 | 4709 |
|
51173 | 4710 |
|
69593 | 4711 |
subsubsection \<open>\<^const>\<open>rotate1\<close> and \<^const>\<open>rotate\<close>\<close> |
15302 | 4712 |
|
4713 |
lemma rotate0[simp]: "rotate 0 = id" |
|
4714 |
by(simp add:rotate_def) |
|
4715 |
||
4716 |
lemma rotate_Suc[simp]: "rotate (Suc n) xs = rotate1(rotate n xs)" |
|
4717 |
by(simp add:rotate_def) |
|
4718 |
||
4719 |
lemma rotate_add: |
|
67091 | 4720 |
"rotate (m+n) = rotate m \<circ> rotate n" |
15302 | 4721 |
by(simp add:rotate_def funpow_add) |
4722 |
||
4723 |
lemma rotate_rotate: "rotate m (rotate n xs) = rotate (m+n) xs" |
|
4724 |
by(simp add:rotate_add) |
|
4725 |
||
71393
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70911
diff
changeset
|
4726 |
lemma rotate1_map: "rotate1 (map f xs) = map f (rotate1 xs)" |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70911
diff
changeset
|
4727 |
by(cases xs) simp_all |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70911
diff
changeset
|
4728 |
|
18049 | 4729 |
lemma rotate1_rotate_swap: "rotate1 (rotate n xs) = rotate n (rotate1 xs)" |
4730 |
by(simp add:rotate_def funpow_swap1) |
|
4731 |
||
68709 | 4732 |
lemma rotate1_length01[simp]: "length xs \<le> 1 \<Longrightarrow> rotate1 xs = xs" |
15302 | 4733 |
by(cases xs) simp_all |
4734 |
||
68709 | 4735 |
lemma rotate_length01[simp]: "length xs \<le> 1 \<Longrightarrow> rotate n xs = xs" |
68719 | 4736 |
by (induct n) (simp_all add:rotate_def) |
13114 | 4737 |
|
15302 | 4738 |
lemma rotate1_hd_tl: "xs \<noteq> [] \<Longrightarrow> rotate1 xs = tl xs @ [hd xs]" |
46440
d4994e2e7364
use 'primrec' to define "rotate1", for uniformity (and to help first-order tools that rely on "Spec_Rules")
blanchet
parents:
46439
diff
changeset
|
4739 |
by (cases xs) simp_all |
15302 | 4740 |
|
4741 |
lemma rotate_drop_take: |
|
4742 |
"rotate n xs = drop (n mod length xs) xs @ take (n mod length xs) xs" |
|
68719 | 4743 |
proof (induct n) |
4744 |
case (Suc n) |
|
4745 |
show ?case |
|
4746 |
proof (cases "xs = []") |
|
4747 |
case False |
|
4748 |
then show ?thesis |
|
4749 |
proof (cases "n mod length xs = 0") |
|
4750 |
case True |
|
4751 |
then show ?thesis |
|
71585 | 4752 |
by (auto simp add: mod_Suc False Suc.hyps drop_Suc rotate1_hd_tl take_Suc Suc_length_conv) |
68719 | 4753 |
next |
4754 |
case False |
|
4755 |
with \<open>xs \<noteq> []\<close> Suc |
|
4756 |
show ?thesis |
|
4757 |
by (simp add: rotate_def mod_Suc rotate1_hd_tl drop_Suc[symmetric] drop_tl[symmetric] |
|
4758 |
take_hd_drop linorder_not_le) |
|
4759 |
qed |
|
4760 |
qed simp |
|
4761 |
qed simp |
|
13114 | 4762 |
|
15302 | 4763 |
lemma rotate_conv_mod: "rotate n xs = rotate (n mod length xs) xs" |
71585 | 4764 |
by(simp add:rotate_drop_take) |
15302 | 4765 |
|
4766 |
lemma rotate_id[simp]: "n mod length xs = 0 \<Longrightarrow> rotate n xs = xs" |
|
71585 | 4767 |
by(simp add:rotate_drop_take) |
15302 | 4768 |
|
4769 |
lemma length_rotate1[simp]: "length(rotate1 xs) = length xs" |
|
71585 | 4770 |
by (cases xs) simp_all |
15302 | 4771 |
|
24526 | 4772 |
lemma length_rotate[simp]: "length(rotate n xs) = length xs" |
71585 | 4773 |
by (induct n arbitrary: xs) (simp_all add:rotate_def) |
15302 | 4774 |
|
4775 |
lemma distinct1_rotate[simp]: "distinct(rotate1 xs) = distinct xs" |
|
71585 | 4776 |
by (cases xs) auto |
15302 | 4777 |
|
4778 |
lemma distinct_rotate[simp]: "distinct(rotate n xs) = distinct xs" |
|
71585 | 4779 |
by (induct n) (simp_all add:rotate_def) |
15302 | 4780 |
|
4781 |
lemma rotate_map: "rotate n (map f xs) = map f (rotate n xs)" |
|
71585 | 4782 |
by(simp add:rotate_drop_take take_map drop_map) |
15302 | 4783 |
|
4784 |
lemma set_rotate1[simp]: "set(rotate1 xs) = set xs" |
|
71585 | 4785 |
by (cases xs) auto |
15302 | 4786 |
|
4787 |
lemma set_rotate[simp]: "set(rotate n xs) = set xs" |
|
71585 | 4788 |
by (induct n) (simp_all add:rotate_def) |
15302 | 4789 |
|
4790 |
lemma rotate1_is_Nil_conv[simp]: "(rotate1 xs = []) = (xs = [])" |
|
71585 | 4791 |
by (cases xs) auto |
15302 | 4792 |
|
4793 |
lemma rotate_is_Nil_conv[simp]: "(rotate n xs = []) = (xs = [])" |
|
71585 | 4794 |
by (induct n) (simp_all add:rotate_def) |
13114 | 4795 |
|
15439 | 4796 |
lemma rotate_rev: |
4797 |
"rotate n (rev xs) = rev(rotate (length xs - (n mod length xs)) xs)" |
|
68527
2f4e2aab190a
Generalising and renaming some basic results
paulson <lp15@cam.ac.uk>
parents:
68362
diff
changeset
|
4798 |
proof (cases "length xs = 0 \<or> n mod length xs = 0") |
2f4e2aab190a
Generalising and renaming some basic results
paulson <lp15@cam.ac.uk>
parents:
68362
diff
changeset
|
4799 |
case False |
2f4e2aab190a
Generalising and renaming some basic results
paulson <lp15@cam.ac.uk>
parents:
68362
diff
changeset
|
4800 |
then show ?thesis |
2f4e2aab190a
Generalising and renaming some basic results
paulson <lp15@cam.ac.uk>
parents:
68362
diff
changeset
|
4801 |
by(simp add:rotate_drop_take rev_drop rev_take) |
2f4e2aab190a
Generalising and renaming some basic results
paulson <lp15@cam.ac.uk>
parents:
68362
diff
changeset
|
4802 |
qed force |
15439 | 4803 |
|
68719 | 4804 |
lemma hd_rotate_conv_nth: |
4805 |
assumes "xs \<noteq> []" shows "hd(rotate n xs) = xs!(n mod length xs)" |
|
4806 |
proof - |
|
4807 |
have "n mod length xs < length xs" |
|
4808 |
using assms by simp |
|
4809 |
then show ?thesis |
|
4810 |
by (metis drop_eq_Nil hd_append2 hd_drop_conv_nth leD rotate_drop_take) |
|
4811 |
qed |
|
18423 | 4812 |
|
68527
2f4e2aab190a
Generalising and renaming some basic results
paulson <lp15@cam.ac.uk>
parents:
68362
diff
changeset
|
4813 |
lemma rotate_append: "rotate (length l) (l @ q) = q @ l" |
2f4e2aab190a
Generalising and renaming some basic results
paulson <lp15@cam.ac.uk>
parents:
68362
diff
changeset
|
4814 |
by (induct l arbitrary: q) (auto simp add: rotate1_rotate_swap) |
2f4e2aab190a
Generalising and renaming some basic results
paulson <lp15@cam.ac.uk>
parents:
68362
diff
changeset
|
4815 |
|
71991 | 4816 |
lemma nth_rotate: |
4817 |
\<open>rotate m xs ! n = xs ! ((m + n) mod length xs)\<close> if \<open>n < length xs\<close> |
|
4818 |
using that apply (auto simp add: rotate_drop_take nth_append not_less less_diff_conv ac_simps dest!: le_Suc_ex) |
|
4819 |
apply (metis add.commute mod_add_right_eq mod_less) |
|
4820 |
apply (metis (no_types, lifting) Nat.diff_diff_right add.commute add_diff_cancel_right' diff_le_self dual_order.strict_trans2 length_greater_0_conv less_nat_zero_code list.size(3) mod_add_right_eq mod_add_self2 mod_le_divisor mod_less) |
|
4821 |
done |
|
4822 |
||
4823 |
lemma nth_rotate1: |
|
4824 |
\<open>rotate1 xs ! n = xs ! (Suc n mod length xs)\<close> if \<open>n < length xs\<close> |
|
4825 |
using that nth_rotate [of n xs 1] by simp |
|
4826 |
||
13114 | 4827 |
|
69593 | 4828 |
subsubsection \<open>\<^const>\<open>nths\<close> --- a generalization of \<^const>\<open>nth\<close> to sets\<close> |
65956
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
4829 |
|
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
4830 |
lemma nths_empty [simp]: "nths xs {} = []" |
71585 | 4831 |
by (auto simp add: nths_def) |
65956
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
4832 |
|
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
4833 |
lemma nths_nil [simp]: "nths [] A = []" |
71585 | 4834 |
by (auto simp add: nths_def) |
65956
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
4835 |
|
69203 | 4836 |
lemma nths_all: "\<forall>i < length xs. i \<in> I \<Longrightarrow> nths xs I = xs" |
4837 |
apply (simp add: nths_def) |
|
4838 |
apply (subst filter_True) |
|
71585 | 4839 |
apply (auto simp: in_set_zip subset_iff) |
69203 | 4840 |
done |
4841 |
||
65956
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
4842 |
lemma length_nths: |
67613 | 4843 |
"length (nths xs I) = card{i. i < length xs \<and> i \<in> I}" |
71585 | 4844 |
by(simp add: nths_def length_filter_conv_card cong:conj_cong) |
65956
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
4845 |
|
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
4846 |
lemma nths_shift_lemma_Suc: |
68719 | 4847 |
"map fst (filter (\<lambda>p. P(Suc(snd p))) (zip xs is)) = |
4848 |
map fst (filter (\<lambda>p. P(snd p)) (zip xs (map Suc is)))" |
|
4849 |
proof (induct xs arbitrary: "is") |
|
4850 |
case (Cons x xs "is") |
|
4851 |
show ?case |
|
4852 |
by (cases "is") (auto simp add: Cons.hyps) |
|
4853 |
qed simp |
|
15281 | 4854 |
|
65956
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
4855 |
lemma nths_shift_lemma: |
68249
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents:
68215
diff
changeset
|
4856 |
"map fst (filter (\<lambda>p. snd p \<in> A) (zip xs [i..<i + length xs])) = |
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents:
68215
diff
changeset
|
4857 |
map fst (filter (\<lambda>p. snd p + i \<in> A) (zip xs [0..<length xs]))" |
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
57418
diff
changeset
|
4858 |
by (induct xs rule: rev_induct) (simp_all add: add.commute) |
13114 | 4859 |
|
65956
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
4860 |
lemma nths_append: |
67613 | 4861 |
"nths (l @ l') A = nths l A @ nths l' {j. j + length l \<in> A}" |
68719 | 4862 |
unfolding nths_def |
4863 |
proof (induct l' rule: rev_induct) |
|
4864 |
case (snoc x xs) |
|
4865 |
then show ?case |
|
4866 |
by (simp add: upt_add_eq_append[of 0] nths_shift_lemma add.commute) |
|
4867 |
qed auto |
|
13114 | 4868 |
|
65956
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
4869 |
lemma nths_Cons: |
67613 | 4870 |
"nths (x # l) A = (if 0 \<in> A then [x] else []) @ nths l {j. Suc j \<in> A}" |
68719 | 4871 |
proof (induct l rule: rev_induct) |
4872 |
case (snoc x xs) |
|
4873 |
then show ?case |
|
4874 |
by (simp flip: append_Cons add: nths_append) |
|
4875 |
qed (auto simp: nths_def) |
|
13114 | 4876 |
|
66853 | 4877 |
lemma nths_map: "nths (map f xs) I = map f (nths xs I)" |
71585 | 4878 |
by(induction xs arbitrary: I) (simp_all add: nths_Cons) |
66853 | 4879 |
|
65956
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
4880 |
lemma set_nths: "set(nths xs I) = {xs!i|i. i<size xs \<and> i \<in> I}" |
71585 | 4881 |
by (induct xs arbitrary: I) (auto simp: nths_Cons nth_Cons split:nat.split dest!: gr0_implies_Suc) |
15281 | 4882 |
|
65956
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
4883 |
lemma set_nths_subset: "set(nths xs I) \<subseteq> set xs" |
71585 | 4884 |
by(auto simp add:set_nths) |
65956
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
4885 |
|
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
4886 |
lemma notin_set_nthsI[simp]: "x \<notin> set xs \<Longrightarrow> x \<notin> set(nths xs I)" |
71585 | 4887 |
by(auto simp add:set_nths) |
65956
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
4888 |
|
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
4889 |
lemma in_set_nthsD: "x \<in> set(nths xs I) \<Longrightarrow> x \<in> set xs" |
71585 | 4890 |
by(auto simp add:set_nths) |
65956
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
4891 |
|
67613 | 4892 |
lemma nths_singleton [simp]: "nths [x] A = (if 0 \<in> A then [x] else [])" |
71585 | 4893 |
by (simp add: nths_Cons) |
65956
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
4894 |
|
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
4895 |
lemma distinct_nthsI[simp]: "distinct xs \<Longrightarrow> distinct (nths xs I)" |
71585 | 4896 |
by (induct xs arbitrary: I) (auto simp: nths_Cons) |
65956
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
4897 |
|
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
4898 |
lemma nths_upt_eq_take [simp]: "nths l {..<n} = take n l" |
71585 | 4899 |
by (induct l rule: rev_induct) (simp_all split: nat_diff_split add: nths_append) |
66656 | 4900 |
|
69203 | 4901 |
lemma nths_nths: "nths (nths xs A) B = nths xs {i \<in> A. \<exists>j \<in> B. card {i' \<in> A. i' < i} = j}" |
71585 | 4902 |
by (induction xs arbitrary: A B) (auto simp add: nths_Cons card_less_Suc card_less_Suc2) |
69203 | 4903 |
|
4904 |
lemma drop_eq_nths: "drop n xs = nths xs {i. i \<ge> n}" |
|
71585 | 4905 |
by (induction xs arbitrary: n) (auto simp add: nths_Cons nths_all drop_Cons' intro: arg_cong2[where f=nths, OF refl]) |
69203 | 4906 |
|
4907 |
lemma nths_drop: "nths (drop n xs) I = nths xs ((+) n ` I)" |
|
4908 |
by(force simp: drop_eq_nths nths_nths simp flip: atLeastLessThan_iff |
|
4909 |
intro: arg_cong2[where f=nths, OF refl]) |
|
4910 |
||
66656 | 4911 |
lemma filter_eq_nths: "filter P xs = nths xs {i. i<length xs \<and> P(xs!i)}" |
71585 | 4912 |
by(induction xs) (auto simp: nths_Cons) |
65956
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
4913 |
|
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
4914 |
lemma filter_in_nths: |
66656 | 4915 |
"distinct xs \<Longrightarrow> filter (%x. x \<in> set (nths xs s)) xs = nths xs s" |
24526 | 4916 |
proof (induct xs arbitrary: s) |
17501 | 4917 |
case Nil thus ?case by simp |
4918 |
next |
|
4919 |
case (Cons a xs) |
|
67091 | 4920 |
then have "\<forall>x. x \<in> set xs \<longrightarrow> x \<noteq> a" by auto |
65956
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
4921 |
with Cons show ?case by(simp add: nths_Cons cong:filter_cong) |
17501 | 4922 |
qed |
4923 |
||
13114 | 4924 |
|
69593 | 4925 |
subsubsection \<open>\<^const>\<open>subseqs\<close> and \<^const>\<open>List.n_lists\<close>\<close> |
65956
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
4926 |
|
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
4927 |
lemma length_subseqs: "length (subseqs xs) = 2 ^ length xs" |
49948
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
4928 |
by (induct xs) (simp_all add: Let_def) |
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
4929 |
|
65956
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
4930 |
lemma subseqs_powset: "set ` set (subseqs xs) = Pow (set xs)" |
49948
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
4931 |
proof - |
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
4932 |
have aux: "\<And>x A. set ` Cons x ` A = insert x ` set ` A" |
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
4933 |
by (auto simp add: image_def) |
65956
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
4934 |
have "set (map set (subseqs xs)) = Pow (set xs)" |
64963 | 4935 |
by (induct xs) (simp_all add: aux Let_def Pow_insert Un_commute comp_def del: map_map) |
49948
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
4936 |
then show ?thesis by simp |
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
4937 |
qed |
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
4938 |
|
65956
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
4939 |
lemma distinct_set_subseqs: |
49948
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
4940 |
assumes "distinct xs" |
65956
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
4941 |
shows "distinct (map set (subseqs xs))" |
49948
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
4942 |
proof (rule card_distinct) |
64963 | 4943 |
have "finite (set xs)" .. |
4944 |
then have "card (Pow (set xs)) = 2 ^ card (set xs)" |
|
4945 |
by (rule card_Pow) |
|
4946 |
with assms distinct_card [of xs] have "card (Pow (set xs)) = 2 ^ length xs" |
|
4947 |
by simp |
|
65956
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
4948 |
then show "card (set (map set (subseqs xs))) = length (map set (subseqs xs))" |
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
4949 |
by (simp add: subseqs_powset length_subseqs) |
49948
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
4950 |
qed |
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
4951 |
|
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
4952 |
lemma n_lists_Nil [simp]: "List.n_lists n [] = (if n = 0 then [[]] else [])" |
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
4953 |
by (induct n) simp_all |
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
4954 |
|
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
4955 |
lemma length_n_lists_elem: "ys \<in> set (List.n_lists n xs) \<Longrightarrow> length ys = n" |
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
4956 |
by (induct n arbitrary: ys) auto |
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
4957 |
|
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
4958 |
lemma set_n_lists: "set (List.n_lists n xs) = {ys. length ys = n \<and> set ys \<subseteq> set xs}" |
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
4959 |
proof (rule set_eqI) |
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
4960 |
fix ys :: "'a list" |
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
4961 |
show "ys \<in> set (List.n_lists n xs) \<longleftrightarrow> ys \<in> {ys. length ys = n \<and> set ys \<subseteq> set xs}" |
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
4962 |
proof - |
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
4963 |
have "ys \<in> set (List.n_lists n xs) \<Longrightarrow> length ys = n" |
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
4964 |
by (induct n arbitrary: ys) auto |
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
4965 |
moreover have "\<And>x. ys \<in> set (List.n_lists n xs) \<Longrightarrow> x \<in> set ys \<Longrightarrow> x \<in> set xs" |
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
4966 |
by (induct n arbitrary: ys) auto |
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
4967 |
moreover have "set ys \<subseteq> set xs \<Longrightarrow> ys \<in> set (List.n_lists (length ys) xs)" |
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
4968 |
by (induct ys) auto |
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
4969 |
ultimately show ?thesis by auto |
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
4970 |
qed |
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
4971 |
qed |
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
4972 |
|
65956
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
4973 |
lemma subseqs_refl: "xs \<in> set (subseqs xs)" |
64963 | 4974 |
by (induct xs) (simp_all add: Let_def) |
63561
fba08009ff3e
add lemmas contributed by Peter Gammie
Andreas Lochbihler
parents:
63540
diff
changeset
|
4975 |
|
65956
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
4976 |
lemma subset_subseqs: "X \<subseteq> set xs \<Longrightarrow> X \<in> set ` set (subseqs xs)" |
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
4977 |
unfolding subseqs_powset by simp |
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
4978 |
|
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
4979 |
lemma Cons_in_subseqsD: "y # ys \<in> set (subseqs xs) \<Longrightarrow> ys \<in> set (subseqs xs)" |
64963 | 4980 |
by (induct xs) (auto simp: Let_def) |
63561
fba08009ff3e
add lemmas contributed by Peter Gammie
Andreas Lochbihler
parents:
63540
diff
changeset
|
4981 |
|
65956
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
4982 |
lemma subseqs_distinctD: "\<lbrakk> ys \<in> set (subseqs xs); distinct xs \<rbrakk> \<Longrightarrow> distinct ys" |
64963 | 4983 |
proof (induct xs arbitrary: ys) |
63561
fba08009ff3e
add lemmas contributed by Peter Gammie
Andreas Lochbihler
parents:
63540
diff
changeset
|
4984 |
case (Cons x xs ys) |
fba08009ff3e
add lemmas contributed by Peter Gammie
Andreas Lochbihler
parents:
63540
diff
changeset
|
4985 |
then show ?case |
65956
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
4986 |
by (auto simp: Let_def) (metis Pow_iff contra_subsetD image_eqI subseqs_powset) |
63561
fba08009ff3e
add lemmas contributed by Peter Gammie
Andreas Lochbihler
parents:
63540
diff
changeset
|
4987 |
qed simp |
fba08009ff3e
add lemmas contributed by Peter Gammie
Andreas Lochbihler
parents:
63540
diff
changeset
|
4988 |
|
49948
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
4989 |
|
69593 | 4990 |
subsubsection \<open>\<^const>\<open>splice\<close>\<close> |
19390 | 4991 |
|
69075 | 4992 |
lemma splice_Nil2 [simp]: "splice xs [] = xs" |
71585 | 4993 |
by (cases xs) simp_all |
19390 | 4994 |
|
24526 | 4995 |
lemma length_splice[simp]: "length(splice xs ys) = length xs + length ys" |
71585 | 4996 |
by (induct xs ys rule: splice.induct) auto |
69136 | 4997 |
|
4998 |
lemma split_Nil_iff[simp]: "splice xs ys = [] \<longleftrightarrow> xs = [] \<and> ys = []" |
|
71585 | 4999 |
by (induct xs ys rule: splice.induct) auto |
65350
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5000 |
|
69140 | 5001 |
lemma splice_replicate[simp]: "splice (replicate m x) (replicate n x) = replicate (m+n) x" |
71585 | 5002 |
proof (induction "replicate m x" "replicate n x" arbitrary: m n rule: splice.induct) |
5003 |
case (2 x xs) |
|
5004 |
then show ?case |
|
5005 |
by (auto simp add: Cons_replicate_eq dest: gr0_implies_Suc) |
|
5006 |
qed auto |
|
65350
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5007 |
|
69593 | 5008 |
subsubsection \<open>\<^const>\<open>shuffles\<close>\<close> |
69107 | 5009 |
|
5010 |
lemma shuffles_commutes: "shuffles xs ys = shuffles ys xs" |
|
5011 |
by (induction xs ys rule: shuffles.induct) (simp_all add: Un_commute) |
|
5012 |
||
5013 |
lemma Nil_in_shuffles[simp]: "[] \<in> shuffles xs ys \<longleftrightarrow> xs = [] \<and> ys = []" |
|
5014 |
by (induct xs ys rule: shuffles.induct) auto |
|
5015 |
||
5016 |
lemma shufflesE: |
|
5017 |
"zs \<in> shuffles xs ys \<Longrightarrow> |
|
65350
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5018 |
(zs = xs \<Longrightarrow> ys = [] \<Longrightarrow> P) \<Longrightarrow> |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5019 |
(zs = ys \<Longrightarrow> xs = [] \<Longrightarrow> P) \<Longrightarrow> |
69107 | 5020 |
(\<And>x xs' z zs'. xs = x # xs' \<Longrightarrow> zs = z # zs' \<Longrightarrow> x = z \<Longrightarrow> zs' \<in> shuffles xs' ys \<Longrightarrow> P) \<Longrightarrow> |
5021 |
(\<And>y ys' z zs'. ys = y # ys' \<Longrightarrow> zs = z # zs' \<Longrightarrow> y = z \<Longrightarrow> zs' \<in> shuffles xs ys' \<Longrightarrow> P) \<Longrightarrow> P" |
|
5022 |
by (induct xs ys rule: shuffles.induct) auto |
|
5023 |
||
5024 |
lemma Cons_in_shuffles_iff: |
|
5025 |
"z # zs \<in> shuffles xs ys \<longleftrightarrow> |
|
5026 |
(xs \<noteq> [] \<and> hd xs = z \<and> zs \<in> shuffles (tl xs) ys \<or> |
|
5027 |
ys \<noteq> [] \<and> hd ys = z \<and> zs \<in> shuffles xs (tl ys))" |
|
5028 |
by (induct xs ys rule: shuffles.induct) auto |
|
5029 |
||
5030 |
lemma splice_in_shuffles [simp, intro]: "splice xs ys \<in> shuffles xs ys" |
|
71585 | 5031 |
by (induction xs ys rule: splice.induct) (simp_all add: Cons_in_shuffles_iff shuffles_commutes) |
69107 | 5032 |
|
5033 |
lemma Nil_in_shufflesI: "xs = [] \<Longrightarrow> ys = [] \<Longrightarrow> [] \<in> shuffles xs ys" |
|
65350
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5034 |
by simp |
66892 | 5035 |
|
69107 | 5036 |
lemma Cons_in_shuffles_leftI: "zs \<in> shuffles xs ys \<Longrightarrow> z # zs \<in> shuffles (z # xs) ys" |
65350
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5037 |
by (cases ys) auto |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5038 |
|
69107 | 5039 |
lemma Cons_in_shuffles_rightI: "zs \<in> shuffles xs ys \<Longrightarrow> z # zs \<in> shuffles xs (z # ys)" |
65350
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5040 |
by (cases xs) auto |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5041 |
|
69107 | 5042 |
lemma finite_shuffles [simp, intro]: "finite (shuffles xs ys)" |
5043 |
by (induction xs ys rule: shuffles.induct) simp_all |
|
5044 |
||
5045 |
lemma length_shuffles: "zs \<in> shuffles xs ys \<Longrightarrow> length zs = length xs + length ys" |
|
5046 |
by (induction xs ys arbitrary: zs rule: shuffles.induct) auto |
|
5047 |
||
5048 |
lemma set_shuffles: "zs \<in> shuffles xs ys \<Longrightarrow> set zs = set xs \<union> set ys" |
|
5049 |
by (induction xs ys arbitrary: zs rule: shuffles.induct) auto |
|
5050 |
||
5051 |
lemma distinct_disjoint_shuffles: |
|
5052 |
assumes "distinct xs" "distinct ys" "set xs \<inter> set ys = {}" "zs \<in> shuffles xs ys" |
|
65350
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5053 |
shows "distinct zs" |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5054 |
using assms |
69107 | 5055 |
proof (induction xs ys arbitrary: zs rule: shuffles.induct) |
65350
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5056 |
case (3 x xs y ys) |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5057 |
show ?case |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5058 |
proof (cases zs) |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5059 |
case (Cons z zs') |
69107 | 5060 |
with "3.prems" and "3.IH"[of zs'] show ?thesis by (force dest: set_shuffles) |
65350
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5061 |
qed simp_all |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5062 |
qed simp_all |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5063 |
|
69107 | 5064 |
lemma Cons_shuffles_subset1: "(#) x ` shuffles xs ys \<subseteq> shuffles (x # xs) ys" |
65350
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5065 |
by (cases ys) auto |
66892 | 5066 |
|
69107 | 5067 |
lemma Cons_shuffles_subset2: "(#) y ` shuffles xs ys \<subseteq> shuffles xs (y # ys)" |
65350
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5068 |
by (cases xs) auto |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5069 |
|
69107 | 5070 |
lemma filter_shuffles: |
5071 |
"filter P ` shuffles xs ys = shuffles (filter P xs) (filter P ys)" |
|
65350
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5072 |
proof - |
67399 | 5073 |
have *: "filter P ` (#) x ` A = (if P x then (#) x ` filter P ` A else filter P ` A)" for x A |
65350
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5074 |
by (auto simp: image_image) |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5075 |
show ?thesis |
69107 | 5076 |
by (induction xs ys rule: shuffles.induct) |
66892 | 5077 |
(simp_all split: if_splits add: image_Un * Un_absorb1 Un_absorb2 |
69107 | 5078 |
Cons_shuffles_subset1 Cons_shuffles_subset2) |
65350
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5079 |
qed |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5080 |
|
69107 | 5081 |
lemma filter_shuffles_disjoint1: |
5082 |
assumes "set xs \<inter> set ys = {}" "zs \<in> shuffles xs ys" |
|
65350
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5083 |
shows "filter (\<lambda>x. x \<in> set xs) zs = xs" (is "filter ?P _ = _") |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5084 |
and "filter (\<lambda>x. x \<notin> set xs) zs = ys" (is "filter ?Q _ = _") |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5085 |
using assms |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5086 |
proof - |
69107 | 5087 |
from assms have "filter ?P zs \<in> filter ?P ` shuffles xs ys" by blast |
5088 |
also have "filter ?P ` shuffles xs ys = shuffles (filter ?P xs) (filter ?P ys)" |
|
5089 |
by (rule filter_shuffles) |
|
65350
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5090 |
also have "filter ?P xs = xs" by (rule filter_True) simp_all |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5091 |
also have "filter ?P ys = []" by (rule filter_False) (insert assms(1), auto) |
69107 | 5092 |
also have "shuffles xs [] = {xs}" by simp |
65350
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5093 |
finally show "filter ?P zs = xs" by simp |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5094 |
next |
69107 | 5095 |
from assms have "filter ?Q zs \<in> filter ?Q ` shuffles xs ys" by blast |
5096 |
also have "filter ?Q ` shuffles xs ys = shuffles (filter ?Q xs) (filter ?Q ys)" |
|
5097 |
by (rule filter_shuffles) |
|
65350
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5098 |
also have "filter ?Q ys = ys" by (rule filter_True) (insert assms(1), auto) |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5099 |
also have "filter ?Q xs = []" by (rule filter_False) (insert assms(1), auto) |
69107 | 5100 |
also have "shuffles [] ys = {ys}" by simp |
65350
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5101 |
finally show "filter ?Q zs = ys" by simp |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5102 |
qed |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5103 |
|
69107 | 5104 |
lemma filter_shuffles_disjoint2: |
5105 |
assumes "set xs \<inter> set ys = {}" "zs \<in> shuffles xs ys" |
|
65350
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5106 |
shows "filter (\<lambda>x. x \<in> set ys) zs = ys" "filter (\<lambda>x. x \<notin> set ys) zs = xs" |
69107 | 5107 |
using filter_shuffles_disjoint1[of ys xs zs] assms |
5108 |
by (simp_all add: shuffles_commutes Int_commute) |
|
5109 |
||
5110 |
lemma partition_in_shuffles: |
|
5111 |
"xs \<in> shuffles (filter P xs) (filter (\<lambda>x. \<not>P x) xs)" |
|
65350
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5112 |
proof (induction xs) |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5113 |
case (Cons x xs) |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5114 |
show ?case |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5115 |
proof (cases "P x") |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5116 |
case True |
69107 | 5117 |
hence "x # xs \<in> (#) x ` shuffles (filter P xs) (filter (\<lambda>x. \<not>P x) xs)" |
65350
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5118 |
by (intro imageI Cons.IH) |
69107 | 5119 |
also have "\<dots> \<subseteq> shuffles (filter P (x # xs)) (filter (\<lambda>x. \<not>P x) (x # xs))" |
5120 |
by (simp add: True Cons_shuffles_subset1) |
|
65350
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5121 |
finally show ?thesis . |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5122 |
next |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5123 |
case False |
69107 | 5124 |
hence "x # xs \<in> (#) x ` shuffles (filter P xs) (filter (\<lambda>x. \<not>P x) xs)" |
65350
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5125 |
by (intro imageI Cons.IH) |
69107 | 5126 |
also have "\<dots> \<subseteq> shuffles (filter P (x # xs)) (filter (\<lambda>x. \<not>P x) (x # xs))" |
5127 |
by (simp add: False Cons_shuffles_subset2) |
|
65350
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5128 |
finally show ?thesis . |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5129 |
qed |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5130 |
qed auto |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5131 |
|
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5132 |
lemma inv_image_partition: |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5133 |
assumes "\<And>x. x \<in> set xs \<Longrightarrow> P x" "\<And>y. y \<in> set ys \<Longrightarrow> \<not>P y" |
69107 | 5134 |
shows "partition P -` {(xs, ys)} = shuffles xs ys" |
65350
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5135 |
proof (intro equalityI subsetI) |
69107 | 5136 |
fix zs assume zs: "zs \<in> shuffles xs ys" |
5137 |
hence [simp]: "set zs = set xs \<union> set ys" by (rule set_shuffles) |
|
66892 | 5138 |
from assms have "filter P zs = filter (\<lambda>x. x \<in> set xs) zs" |
65350
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5139 |
"filter (\<lambda>x. \<not>P x) zs = filter (\<lambda>x. x \<in> set ys) zs" |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5140 |
by (intro filter_cong refl; force)+ |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5141 |
moreover from assms have "set xs \<inter> set ys = {}" by auto |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5142 |
ultimately show "zs \<in> partition P -` {(xs, ys)}" using zs |
69107 | 5143 |
by (simp add: o_def filter_shuffles_disjoint1 filter_shuffles_disjoint2) |
65350
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5144 |
next |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5145 |
fix zs assume "zs \<in> partition P -` {(xs, ys)}" |
69107 | 5146 |
thus "zs \<in> shuffles xs ys" using partition_in_shuffles[of zs] by (auto simp: o_def) |
65350
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
5147 |
qed |
22793 | 5148 |
|
35115 | 5149 |
|
60758 | 5150 |
subsubsection \<open>Transpose\<close> |
34933 | 5151 |
|
5152 |
function transpose where |
|
5153 |
"transpose [] = []" | |
|
5154 |
"transpose ([] # xss) = transpose xss" | |
|
5155 |
"transpose ((x#xs) # xss) = |
|
5156 |
(x # [h. (h#t) \<leftarrow> xss]) # transpose (xs # [t. (h#t) \<leftarrow> xss])" |
|
5157 |
by pat_completeness auto |
|
5158 |
||
5159 |
lemma transpose_aux_filter_head: |
|
55404
5cb95b79a51f
transformed 'option' and 'list' into new-style datatypes (but register them as old-style as well)
blanchet
parents:
55148
diff
changeset
|
5160 |
"concat (map (case_list [] (\<lambda>h t. [h])) xss) = |
68249
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents:
68215
diff
changeset
|
5161 |
map (\<lambda>xs. hd xs) (filter (\<lambda>ys. ys \<noteq> []) xss)" |
34933 | 5162 |
by (induct xss) (auto split: list.split) |
5163 |
||
5164 |
lemma transpose_aux_filter_tail: |
|
55404
5cb95b79a51f
transformed 'option' and 'list' into new-style datatypes (but register them as old-style as well)
blanchet
parents:
55148
diff
changeset
|
5165 |
"concat (map (case_list [] (\<lambda>h t. [t])) xss) = |
68249
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents:
68215
diff
changeset
|
5166 |
map (\<lambda>xs. tl xs) (filter (\<lambda>ys. ys \<noteq> []) xss)" |
34933 | 5167 |
by (induct xss) (auto split: list.split) |
5168 |
||
5169 |
lemma transpose_aux_max: |
|
5170 |
"max (Suc (length xs)) (foldr (\<lambda>xs. max (length xs)) xss 0) = |
|
68249
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents:
68215
diff
changeset
|
5171 |
Suc (max (length xs) (foldr (\<lambda>x. max (length x - Suc 0)) (filter (\<lambda>ys. ys \<noteq> []) xss) 0))" |
34933 | 5172 |
(is "max _ ?foldB = Suc (max _ ?foldA)") |
68249
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents:
68215
diff
changeset
|
5173 |
proof (cases "(filter (\<lambda>ys. ys \<noteq> []) xss) = []") |
34933 | 5174 |
case True |
5175 |
hence "foldr (\<lambda>xs. max (length xs)) xss 0 = 0" |
|
5176 |
proof (induct xss) |
|
5177 |
case (Cons x xs) |
|
53374
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents:
53017
diff
changeset
|
5178 |
then have "x = []" by (cases x) auto |
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents:
53017
diff
changeset
|
5179 |
with Cons show ?case by auto |
34933 | 5180 |
qed simp |
5181 |
thus ?thesis using True by simp |
|
5182 |
next |
|
5183 |
case False |
|
5184 |
||
68249
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents:
68215
diff
changeset
|
5185 |
have foldA: "?foldA = foldr (\<lambda>x. max (length x)) (filter (\<lambda>ys. ys \<noteq> []) xss) 0 - 1" |
34933 | 5186 |
by (induct xss) auto |
68249
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents:
68215
diff
changeset
|
5187 |
have foldB: "?foldB = foldr (\<lambda>x. max (length x)) (filter (\<lambda>ys. ys \<noteq> []) xss) 0" |
34933 | 5188 |
by (induct xss) auto |
5189 |
||
5190 |
have "0 < ?foldB" |
|
5191 |
proof - |
|
5192 |
from False |
|
68249
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents:
68215
diff
changeset
|
5193 |
obtain z zs where zs: "(filter (\<lambda>ys. ys \<noteq> []) xss) = z#zs" by (auto simp: neq_Nil_conv) |
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents:
68215
diff
changeset
|
5194 |
hence "z \<in> set (filter (\<lambda>ys. ys \<noteq> []) xss)" by auto |
34933 | 5195 |
hence "z \<noteq> []" by auto |
5196 |
thus ?thesis |
|
5197 |
unfolding foldB zs |
|
5198 |
by (auto simp: max_def intro: less_le_trans) |
|
5199 |
qed |
|
5200 |
thus ?thesis |
|
5201 |
unfolding foldA foldB max_Suc_Suc[symmetric] |
|
5202 |
by simp |
|
5203 |
qed |
|
5204 |
||
5205 |
termination transpose |
|
5206 |
by (relation "measure (\<lambda>xs. foldr (\<lambda>xs. max (length xs)) xs 0 + length xs)") |
|
5207 |
(auto simp: transpose_aux_filter_tail foldr_map comp_def transpose_aux_max less_Suc_eq_le) |
|
5208 |
||
5209 |
lemma transpose_empty: "(transpose xs = []) \<longleftrightarrow> (\<forall>x \<in> set xs. x = [])" |
|
5210 |
by (induct rule: transpose.induct) simp_all |
|
5211 |
||
5212 |
lemma length_transpose: |
|
5213 |
fixes xs :: "'a list list" |
|
5214 |
shows "length (transpose xs) = foldr (\<lambda>xs. max (length xs)) xs 0" |
|
5215 |
by (induct rule: transpose.induct) |
|
5216 |
(auto simp: transpose_aux_filter_tail foldr_map comp_def transpose_aux_max |
|
5217 |
max_Suc_Suc[symmetric] simp del: max_Suc_Suc) |
|
5218 |
||
5219 |
lemma nth_transpose: |
|
5220 |
fixes xs :: "'a list list" |
|
5221 |
assumes "i < length (transpose xs)" |
|
68249
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents:
68215
diff
changeset
|
5222 |
shows "transpose xs ! i = map (\<lambda>xs. xs ! i) (filter (\<lambda>ys. i < length ys) xs)" |
34933 | 5223 |
using assms proof (induct arbitrary: i rule: transpose.induct) |
5224 |
case (3 x xs xss) |
|
63040 | 5225 |
define XS where "XS = (x # xs) # xss" |
34933 | 5226 |
hence [simp]: "XS \<noteq> []" by auto |
5227 |
thus ?case |
|
5228 |
proof (cases i) |
|
5229 |
case 0 |
|
5230 |
thus ?thesis by (simp add: transpose_aux_filter_head hd_conv_nth) |
|
5231 |
next |
|
5232 |
case (Suc j) |
|
5233 |
have *: "\<And>xss. xs # map tl xss = map tl ((x#xs)#xss)" by simp |
|
5234 |
have **: "\<And>xss. (x#xs) # filter (\<lambda>ys. ys \<noteq> []) xss = filter (\<lambda>ys. ys \<noteq> []) ((x#xs)#xss)" by simp |
|
5235 |
{ fix x have "Suc j < length x \<longleftrightarrow> x \<noteq> [] \<and> j < length x - Suc 0" |
|
5236 |
by (cases x) simp_all |
|
5237 |
} note *** = this |
|
5238 |
||
55404
5cb95b79a51f
transformed 'option' and 'list' into new-style datatypes (but register them as old-style as well)
blanchet
parents:
55148
diff
changeset
|
5239 |
have j_less: "j < length (transpose (xs # concat (map (case_list [] (\<lambda>h t. [t])) xss)))" |
34933 | 5240 |
using "3.prems" by (simp add: transpose_aux_filter_tail length_transpose Suc) |
5241 |
||
5242 |
show ?thesis |
|
60758 | 5243 |
unfolding transpose.simps \<open>i = Suc j\<close> nth_Cons_Suc "3.hyps"[OF j_less] |
34933 | 5244 |
apply (auto simp: transpose_aux_filter_tail filter_map comp_def length_transpose * ** *** XS_def[symmetric]) |
68719 | 5245 |
by (simp add: nth_tl) |
34933 | 5246 |
qed |
5247 |
qed simp_all |
|
5248 |
||
5249 |
lemma transpose_map_map: |
|
5250 |
"transpose (map (map f) xs) = map (map f) (transpose xs)" |
|
68975
5ce4d117cea7
A few new results, elimination of duplicates and more use of "pairwise"
paulson <lp15@cam.ac.uk>
parents:
68781
diff
changeset
|
5251 |
proof (rule nth_equalityI) |
34933 | 5252 |
have [simp]: "length (transpose (map (map f) xs)) = length (transpose xs)" |
5253 |
by (simp add: length_transpose foldr_map comp_def) |
|
5254 |
show "length (transpose (map (map f) xs)) = length (map (map f) (transpose xs))" by simp |
|
5255 |
||
5256 |
fix i assume "i < length (transpose (map (map f) xs))" |
|
5257 |
thus "transpose (map (map f) xs) ! i = map (map f) (transpose xs) ! i" |
|
5258 |
by (simp add: nth_transpose filter_map comp_def) |
|
5259 |
qed |
|
24616 | 5260 |
|
69593 | 5261 |
subsubsection \<open>\<^const>\<open>min\<close> and \<^const>\<open>arg_min\<close>\<close> |
67170 | 5262 |
|
5263 |
lemma min_list_Min: "xs \<noteq> [] \<Longrightarrow> min_list xs = Min (set xs)" |
|
71585 | 5264 |
by (induction xs rule: induct_list012)(auto) |
67170 | 5265 |
|
5266 |
lemma f_arg_min_list_f: "xs \<noteq> [] \<Longrightarrow> f (arg_min_list f xs) = Min (f ` (set xs))" |
|
71585 | 5267 |
by(induction f xs rule: arg_min_list.induct) (auto simp: min_def intro!: antisym) |
67170 | 5268 |
|
67171 | 5269 |
lemma arg_min_list_in: "xs \<noteq> [] \<Longrightarrow> arg_min_list f xs \<in> set xs" |
71585 | 5270 |
by(induction xs rule: induct_list012) (auto simp: Let_def) |
67171 | 5271 |
|
35115 | 5272 |
|
60758 | 5273 |
subsubsection \<open>(In)finiteness\<close> |
28642 | 5274 |
|
5275 |
lemma finite_maxlen: |
|
67091 | 5276 |
"finite (M::'a list set) \<Longrightarrow> \<exists>n. \<forall>s\<in>M. size s < n" |
28642 | 5277 |
proof (induct rule: finite.induct) |
5278 |
case emptyI show ?case by simp |
|
5279 |
next |
|
5280 |
case (insertI M xs) |
|
5281 |
then obtain n where "\<forall>s\<in>M. length s < n" by blast |
|
67613 | 5282 |
hence "\<forall>s\<in>insert xs M. size s < max n (size xs) + 1" by auto |
28642 | 5283 |
thus ?case .. |
5284 |
qed |
|
5285 |
||
45714 | 5286 |
lemma lists_length_Suc_eq: |
5287 |
"{xs. set xs \<subseteq> A \<and> length xs = Suc n} = |
|
5288 |
(\<lambda>(xs, n). n#xs) ` ({xs. set xs \<subseteq> A \<and> length xs = n} \<times> A)" |
|
5289 |
by (auto simp: length_Suc_conv) |
|
5290 |
||
5291 |
lemma |
|
5292 |
assumes "finite A" |
|
5293 |
shows finite_lists_length_eq: "finite {xs. set xs \<subseteq> A \<and> length xs = n}" |
|
5294 |
and card_lists_length_eq: "card {xs. set xs \<subseteq> A \<and> length xs = n} = (card A)^n" |
|
60758 | 5295 |
using \<open>finite A\<close> |
45714 | 5296 |
by (induct n) |
5297 |
(auto simp: card_image inj_split_Cons lists_length_Suc_eq cong: conj_cong) |
|
31557 | 5298 |
|
5299 |
lemma finite_lists_length_le: |
|
5300 |
assumes "finite A" shows "finite {xs. set xs \<subseteq> A \<and> length xs \<le> n}" |
|
5301 |
(is "finite ?S") |
|
5302 |
proof- |
|
5303 |
have "?S = (\<Union>n\<in>{0..n}. {xs. set xs \<subseteq> A \<and> length xs = n})" by auto |
|
60758 | 5304 |
thus ?thesis by (auto intro!: finite_lists_length_eq[OF \<open>finite A\<close>] simp only:) |
31557 | 5305 |
qed |
5306 |
||
45714 | 5307 |
lemma card_lists_length_le: |
5308 |
assumes "finite A" shows "card {xs. set xs \<subseteq> A \<and> length xs \<le> n} = (\<Sum>i\<le>n. card A^i)" |
|
5309 |
proof - |
|
5310 |
have "(\<Sum>i\<le>n. card A^i) = card (\<Union>i\<le>n. {xs. set xs \<subseteq> A \<and> length xs = i})" |
|
60758 | 5311 |
using \<open>finite A\<close> |
45714 | 5312 |
by (subst card_UN_disjoint) |
5313 |
(auto simp add: card_lists_length_eq finite_lists_length_eq) |
|
5314 |
also have "(\<Union>i\<le>n. {xs. set xs \<subseteq> A \<and> length xs = i}) = {xs. set xs \<subseteq> A \<and> length xs \<le> n}" |
|
5315 |
by auto |
|
5316 |
finally show ?thesis by simp |
|
5317 |
qed |
|
5318 |
||
67478
14d3163588ae
add lemma on lists from Falling_Factorial_Sum entry
bulwahn
parents:
67443
diff
changeset
|
5319 |
lemma finite_lists_distinct_length_eq [intro]: |
14d3163588ae
add lemma on lists from Falling_Factorial_Sum entry
bulwahn
parents:
67443
diff
changeset
|
5320 |
assumes "finite A" |
14d3163588ae
add lemma on lists from Falling_Factorial_Sum entry
bulwahn
parents:
67443
diff
changeset
|
5321 |
shows "finite {xs. length xs = n \<and> distinct xs \<and> set xs \<subseteq> A}" (is "finite ?S") |
14d3163588ae
add lemma on lists from Falling_Factorial_Sum entry
bulwahn
parents:
67443
diff
changeset
|
5322 |
proof - |
14d3163588ae
add lemma on lists from Falling_Factorial_Sum entry
bulwahn
parents:
67443
diff
changeset
|
5323 |
have "finite {xs. set xs \<subseteq> A \<and> length xs = n}" |
14d3163588ae
add lemma on lists from Falling_Factorial_Sum entry
bulwahn
parents:
67443
diff
changeset
|
5324 |
using \<open>finite A\<close> by (rule finite_lists_length_eq) |
14d3163588ae
add lemma on lists from Falling_Factorial_Sum entry
bulwahn
parents:
67443
diff
changeset
|
5325 |
moreover have "?S \<subseteq> {xs. set xs \<subseteq> A \<and> length xs = n}" by auto |
14d3163588ae
add lemma on lists from Falling_Factorial_Sum entry
bulwahn
parents:
67443
diff
changeset
|
5326 |
ultimately show ?thesis using finite_subset by auto |
14d3163588ae
add lemma on lists from Falling_Factorial_Sum entry
bulwahn
parents:
67443
diff
changeset
|
5327 |
qed |
14d3163588ae
add lemma on lists from Falling_Factorial_Sum entry
bulwahn
parents:
67443
diff
changeset
|
5328 |
|
45932 | 5329 |
lemma card_lists_distinct_length_eq: |
66358
fab9a53158f8
slightly generalized card_lists_distinct_length_eq; renamed specialized card_lists_distinct_length_eq to card_lists_distinct_length_eq'; tuned
bulwahn
parents:
66257
diff
changeset
|
5330 |
assumes "finite A" "k \<le> card A" |
45932 | 5331 |
shows "card {xs. length xs = k \<and> distinct xs \<and> set xs \<subseteq> A} = \<Prod>{card A - k + 1 .. card A}" |
5332 |
using assms |
|
5333 |
proof (induct k) |
|
5334 |
case 0 |
|
5335 |
then have "{xs. length xs = 0 \<and> distinct xs \<and> set xs \<subseteq> A} = {[]}" by auto |
|
5336 |
then show ?case by simp |
|
5337 |
next |
|
5338 |
case (Suc k) |
|
5339 |
let "?k_list" = "\<lambda>k xs. length xs = k \<and> distinct xs \<and> set xs \<subseteq> A" |
|
5340 |
have inj_Cons: "\<And>A. inj_on (\<lambda>(xs, n). n # xs) A" by (rule inj_onI) auto |
|
5341 |
||
66358
fab9a53158f8
slightly generalized card_lists_distinct_length_eq; renamed specialized card_lists_distinct_length_eq to card_lists_distinct_length_eq'; tuned
bulwahn
parents:
66257
diff
changeset
|
5342 |
from Suc have "k \<le> card A" by simp |
fab9a53158f8
slightly generalized card_lists_distinct_length_eq; renamed specialized card_lists_distinct_length_eq to card_lists_distinct_length_eq'; tuned
bulwahn
parents:
66257
diff
changeset
|
5343 |
moreover note \<open>finite A\<close> |
45932 | 5344 |
moreover have "finite {xs. ?k_list k xs}" |
63834 | 5345 |
by (rule finite_subset) (use finite_lists_length_eq[OF \<open>finite A\<close>, of k] in auto) |
45932 | 5346 |
moreover have "\<And>i j. i \<noteq> j \<longrightarrow> {i} \<times> (A - set i) \<inter> {j} \<times> (A - set j) = {}" |
5347 |
by auto |
|
66358
fab9a53158f8
slightly generalized card_lists_distinct_length_eq; renamed specialized card_lists_distinct_length_eq to card_lists_distinct_length_eq'; tuned
bulwahn
parents:
66257
diff
changeset
|
5348 |
moreover have "\<And>i. i \<in> {xs. ?k_list k xs} \<Longrightarrow> card (A - set i) = card A - k" |
45932 | 5349 |
by (simp add: card_Diff_subset distinct_card) |
5350 |
moreover have "{xs. ?k_list (Suc k) xs} = |
|
52141
eff000cab70f
weaker precendence of syntax for big intersection and union on sets
haftmann
parents:
52131
diff
changeset
|
5351 |
(\<lambda>(xs, n). n#xs) ` \<Union>((\<lambda>xs. {xs} \<times> (A - set xs)) ` {xs. ?k_list k xs})" |
45932 | 5352 |
by (auto simp: length_Suc_conv) |
66358
fab9a53158f8
slightly generalized card_lists_distinct_length_eq; renamed specialized card_lists_distinct_length_eq to card_lists_distinct_length_eq'; tuned
bulwahn
parents:
66257
diff
changeset
|
5353 |
moreover have "Suc (card A - Suc k) = card A - k" using Suc.prems by simp |
45932 | 5354 |
then have "(card A - k) * \<Prod>{Suc (card A - k)..card A} = \<Prod>{Suc (card A - Suc k)..card A}" |
64272 | 5355 |
by (subst prod.insert[symmetric]) (simp add: atLeastAtMost_insertL)+ |
45932 | 5356 |
ultimately show ?case |
5357 |
by (simp add: card_image inj_Cons card_UN_disjoint Suc.hyps algebra_simps) |
|
5358 |
qed |
|
5359 |
||
66358
fab9a53158f8
slightly generalized card_lists_distinct_length_eq; renamed specialized card_lists_distinct_length_eq to card_lists_distinct_length_eq'; tuned
bulwahn
parents:
66257
diff
changeset
|
5360 |
lemma card_lists_distinct_length_eq': |
fab9a53158f8
slightly generalized card_lists_distinct_length_eq; renamed specialized card_lists_distinct_length_eq to card_lists_distinct_length_eq'; tuned
bulwahn
parents:
66257
diff
changeset
|
5361 |
assumes "k < card A" |
fab9a53158f8
slightly generalized card_lists_distinct_length_eq; renamed specialized card_lists_distinct_length_eq to card_lists_distinct_length_eq'; tuned
bulwahn
parents:
66257
diff
changeset
|
5362 |
shows "card {xs. length xs = k \<and> distinct xs \<and> set xs \<subseteq> A} = \<Prod>{card A - k + 1 .. card A}" |
fab9a53158f8
slightly generalized card_lists_distinct_length_eq; renamed specialized card_lists_distinct_length_eq to card_lists_distinct_length_eq'; tuned
bulwahn
parents:
66257
diff
changeset
|
5363 |
proof - |
72302
d7d90ed4c74e
fixed some remarkably ugly proofs
paulson <lp15@cam.ac.uk>
parents:
72184
diff
changeset
|
5364 |
from \<open>k < card A\<close> have "finite A" and "k \<le> card A" using card.infinite by force+ |
66358
fab9a53158f8
slightly generalized card_lists_distinct_length_eq; renamed specialized card_lists_distinct_length_eq to card_lists_distinct_length_eq'; tuned
bulwahn
parents:
66257
diff
changeset
|
5365 |
from this show ?thesis by (rule card_lists_distinct_length_eq) |
fab9a53158f8
slightly generalized card_lists_distinct_length_eq; renamed specialized card_lists_distinct_length_eq to card_lists_distinct_length_eq'; tuned
bulwahn
parents:
66257
diff
changeset
|
5366 |
qed |
fab9a53158f8
slightly generalized card_lists_distinct_length_eq; renamed specialized card_lists_distinct_length_eq to card_lists_distinct_length_eq'; tuned
bulwahn
parents:
66257
diff
changeset
|
5367 |
|
67091 | 5368 |
lemma infinite_UNIV_listI: "\<not> finite(UNIV::'a list set)" |
68719 | 5369 |
by (metis UNIV_I finite_maxlen length_replicate less_irrefl) |
28642 | 5370 |
|
71404
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
5371 |
lemma same_length_different: |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
5372 |
assumes "xs \<noteq> ys" and "length xs = length ys" |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
5373 |
shows "\<exists>pre x xs' y ys'. x\<noteq>y \<and> xs = pre @ [x] @ xs' \<and> ys = pre @ [y] @ ys'" |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
5374 |
using assms |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
5375 |
proof (induction xs arbitrary: ys) |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
5376 |
case Nil |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
5377 |
then show ?case by auto |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
5378 |
next |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
5379 |
case (Cons x xs) |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
5380 |
then obtain z zs where ys: "ys = Cons z zs" |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
5381 |
by (metis length_Suc_conv) |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
5382 |
show ?case |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
5383 |
proof (cases "x=z") |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
5384 |
case True |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
5385 |
then have "xs \<noteq> zs" "length xs = length zs" |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
5386 |
using Cons.prems ys by auto |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
5387 |
then obtain pre u xs' v ys' where "u\<noteq>v" and xs: "xs = pre @ [u] @ xs'" and zs: "zs = pre @ [v] @ys'" |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
5388 |
using Cons.IH by meson |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
5389 |
then have "x # xs = (z#pre) @ [u] @ xs' \<and> ys = (z#pre) @ [v] @ ys'" |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
5390 |
by (simp add: True ys) |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
5391 |
with \<open>u\<noteq>v\<close> show ?thesis |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
5392 |
by blast |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
5393 |
next |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
5394 |
case False |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
5395 |
then have "x # xs = [] @ [x] @ xs \<and> ys = [] @ [z] @ zs" |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
5396 |
by (simp add: ys) |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
5397 |
then show ?thesis |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
5398 |
using False by blast |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
5399 |
qed |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
5400 |
qed |
28642 | 5401 |
|
60758 | 5402 |
subsection \<open>Sorting\<close> |
5403 |
||
69593 | 5404 |
subsubsection \<open>\<^const>\<open>sorted_wrt\<close>\<close> |
5405 |
||
5406 |
text \<open>Sometimes the second equation in the definition of \<^const>\<open>sorted_wrt\<close> is too aggressive |
|
68125 | 5407 |
because it relates each list element to \emph{all} its successors. Then this equation |
5408 |
should be removed and \<open>sorted_wrt2_simps\<close> should be added instead.\<close> |
|
5409 |
||
5410 |
lemma sorted_wrt1: "sorted_wrt P [x] = True" |
|
5411 |
by(simp) |
|
5412 |
||
5413 |
lemma sorted_wrt2: "transp P \<Longrightarrow> sorted_wrt P (x # y # zs) = (P x y \<and> sorted_wrt P (y # zs))" |
|
68719 | 5414 |
proof (induction zs arbitrary: x y) |
5415 |
case (Cons z zs) |
|
5416 |
then show ?case |
|
5417 |
by simp (meson transpD)+ |
|
5418 |
qed auto |
|
68125 | 5419 |
|
5420 |
lemmas sorted_wrt2_simps = sorted_wrt1 sorted_wrt2 |
|
66434
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5421 |
|
68141 | 5422 |
lemma sorted_wrt_true [simp]: |
5423 |
"sorted_wrt (\<lambda>_ _. True) xs" |
|
5424 |
by (induction xs) simp_all |
|
5425 |
||
66434
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5426 |
lemma sorted_wrt_append: |
68109 | 5427 |
"sorted_wrt P (xs @ ys) \<longleftrightarrow> |
66892 | 5428 |
sorted_wrt P xs \<and> sorted_wrt P ys \<and> (\<forall>x\<in>set xs. \<forall>y\<in>set ys. P x y)" |
68109 | 5429 |
by (induction xs) auto |
66890
e92d48a42a01
drop a superfluous assumption that was found by the find_unused_assms command and tune proof
bulwahn
parents:
66889
diff
changeset
|
5430 |
|
68141 | 5431 |
lemma sorted_wrt_map: |
5432 |
"sorted_wrt R (map f xs) = sorted_wrt (\<lambda>x y. R (f x) (f y)) xs" |
|
5433 |
by (induction xs) simp_all |
|
5434 |
||
71444 | 5435 |
lemma |
5436 |
assumes "sorted_wrt f xs" |
|
5437 |
shows sorted_wrt_take: "sorted_wrt f (take n xs)" |
|
5438 |
and sorted_wrt_drop: "sorted_wrt f (drop n xs)" |
|
5439 |
proof - |
|
5440 |
from assms have "sorted_wrt f (take n xs @ drop n xs)" by simp |
|
5441 |
thus "sorted_wrt f (take n xs)" and "sorted_wrt f (drop n xs)" |
|
5442 |
unfolding sorted_wrt_append by simp_all |
|
5443 |
qed |
|
5444 |
||
5445 |
lemma sorted_wrt_filter: |
|
5446 |
"sorted_wrt f xs \<Longrightarrow> sorted_wrt f (filter P xs)" |
|
5447 |
by (induction xs) auto |
|
5448 |
||
66890
e92d48a42a01
drop a superfluous assumption that was found by the find_unused_assms command and tune proof
bulwahn
parents:
66889
diff
changeset
|
5449 |
lemma sorted_wrt_rev: |
e92d48a42a01
drop a superfluous assumption that was found by the find_unused_assms command and tune proof
bulwahn
parents:
66889
diff
changeset
|
5450 |
"sorted_wrt P (rev xs) = sorted_wrt (\<lambda>x y. P y x) xs" |
68109 | 5451 |
by (induction xs) (auto simp add: sorted_wrt_append) |
66434
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5452 |
|
68141 | 5453 |
lemma sorted_wrt_mono_rel: |
5454 |
"(\<And>x y. \<lbrakk> x \<in> set xs; y \<in> set xs; P x y \<rbrakk> \<Longrightarrow> Q x y) \<Longrightarrow> sorted_wrt P xs \<Longrightarrow> sorted_wrt Q xs" |
|
68109 | 5455 |
by(induction xs)(auto) |
66442 | 5456 |
|
67973 | 5457 |
lemma sorted_wrt01: "length xs \<le> 1 \<Longrightarrow> sorted_wrt P xs" |
5458 |
by(auto simp: le_Suc_eq length_Suc_conv) |
|
5459 |
||
68175 | 5460 |
lemma sorted_wrt_iff_nth_less: |
68156 | 5461 |
"sorted_wrt P xs = (\<forall>i j. i < j \<longrightarrow> j < length xs \<longrightarrow> P (xs ! i) (xs ! j))" |
68719 | 5462 |
by (induction xs) (auto simp add: in_set_conv_nth Ball_def nth_Cons split: nat.split) |
68156 | 5463 |
|
5464 |
lemma sorted_wrt_nth_less: |
|
5465 |
"\<lbrakk> sorted_wrt P xs; i < j; j < length xs \<rbrakk> \<Longrightarrow> P (xs ! i) (xs ! j)" |
|
68175 | 5466 |
by(auto simp: sorted_wrt_iff_nth_less) |
66434
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5467 |
|
73017 | 5468 |
lemma sorted_wrt_iff_nth_Suc_transp: assumes "transp P" |
5469 |
shows "sorted_wrt P xs \<longleftrightarrow> (\<forall>i. Suc i < length xs \<longrightarrow> P (xs!i) (xs!(Suc i)))" (is "?L = ?R") |
|
5470 |
proof |
|
5471 |
assume ?L |
|
5472 |
thus ?R |
|
5473 |
by (simp add: sorted_wrt_iff_nth_less) |
|
5474 |
next |
|
5475 |
assume ?R |
|
5476 |
have "i < j \<Longrightarrow> j < length xs \<Longrightarrow> P (xs ! i) (xs ! j)" for i j |
|
5477 |
by(induct i j rule: less_Suc_induct)(simp add: \<open>?R\<close>, meson assms transpE transp_less) |
|
5478 |
thus ?L |
|
5479 |
by (simp add: sorted_wrt_iff_nth_less) |
|
5480 |
qed |
|
5481 |
||
68141 | 5482 |
lemma sorted_wrt_upt[simp]: "sorted_wrt (<) [m..<n]" |
66434
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5483 |
by(induction n) (auto simp: sorted_wrt_append) |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5484 |
|
68191 | 5485 |
lemma sorted_wrt_upto[simp]: "sorted_wrt (<) [i..j]" |
68719 | 5486 |
proof(induct i j rule:upto.induct) |
5487 |
case (1 i j) |
|
5488 |
from this show ?case |
|
5489 |
unfolding upto.simps[of i j] by auto |
|
5490 |
qed |
|
68175 | 5491 |
|
66434
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5492 |
text \<open>Each element is greater or equal to its index:\<close> |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5493 |
|
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5494 |
lemma sorted_wrt_less_idx: |
67399 | 5495 |
"sorted_wrt (<) ns \<Longrightarrow> i < length ns \<Longrightarrow> i \<le> ns!i" |
66434
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5496 |
proof (induction ns arbitrary: i rule: rev_induct) |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5497 |
case Nil thus ?case by simp |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5498 |
next |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5499 |
case snoc |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5500 |
thus ?case |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5501 |
by (auto simp: nth_append sorted_wrt_append) |
66892 | 5502 |
(metis less_antisym not_less nth_mem) |
66434
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5503 |
qed |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5504 |
|
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5505 |
|
69593 | 5506 |
subsubsection \<open>\<^const>\<open>sorted\<close>\<close> |
24617 | 5507 |
|
24616 | 5508 |
context linorder |
5509 |
begin |
|
5510 |
||
69593 | 5511 |
text \<open>Sometimes the second equation in the definition of \<^const>\<open>sorted\<close> is too aggressive |
68111 | 5512 |
because it relates each list element to \emph{all} its successors. Then this equation |
68118 | 5513 |
should be removed and \<open>sorted2_simps\<close> should be added instead. |
5514 |
Executable code is one such use case.\<close> |
|
5515 |
||
5516 |
lemma sorted1: "sorted [x] = True" |
|
68111 | 5517 |
by simp |
5518 |
||
5519 |
lemma sorted2: "sorted (x # y # zs) = (x \<le> y \<and> sorted (y # zs))" |
|
5520 |
by(induction zs) auto |
|
5521 |
||
5522 |
lemmas sorted2_simps = sorted1 sorted2 |
|
5523 |
||
68118 | 5524 |
lemmas [code] = sorted.simps(1) sorted2_simps |
5525 |
||
68175 | 5526 |
lemma sorted_append: |
5527 |
"sorted (xs@ys) = (sorted xs \<and> sorted ys \<and> (\<forall>x \<in> set xs. \<forall>y \<in> set ys. x\<le>y))" |
|
5528 |
by (simp add: sorted_sorted_wrt sorted_wrt_append) |
|
5529 |
||
5530 |
lemma sorted_map: |
|
5531 |
"sorted (map f xs) = sorted_wrt (\<lambda>x y. f x \<le> f y) xs" |
|
5532 |
by (simp add: sorted_sorted_wrt sorted_wrt_map) |
|
5533 |
||
68160 | 5534 |
lemma sorted01: "length xs \<le> 1 \<Longrightarrow> sorted xs" |
5535 |
by (simp add: sorted_sorted_wrt sorted_wrt01) |
|
5536 |
||
40210
aee7ef725330
sorting: avoid _key suffix if lemma applies both to simple and generalized variant; generalized insort_insert to insort_insert_key; additional lemmas
haftmann
parents:
40195
diff
changeset
|
5537 |
lemma sorted_tl: |
aee7ef725330
sorting: avoid _key suffix if lemma applies both to simple and generalized variant; generalized insort_insert to insort_insert_key; additional lemmas
haftmann
parents:
40195
diff
changeset
|
5538 |
"sorted xs \<Longrightarrow> sorted (tl xs)" |
68109 | 5539 |
by (cases xs) (simp_all) |
40210
aee7ef725330
sorting: avoid _key suffix if lemma applies both to simple and generalized variant; generalized insort_insert to insort_insert_key; additional lemmas
haftmann
parents:
40195
diff
changeset
|
5540 |
|
68186 | 5541 |
lemma sorted_iff_nth_mono_less: |
68175 | 5542 |
"sorted xs = (\<forall>i j. i < j \<longrightarrow> j < length xs \<longrightarrow> xs ! i \<le> xs ! j)" |
5543 |
by (simp add: sorted_sorted_wrt sorted_wrt_iff_nth_less) |
|
24616 | 5544 |
|
68186 | 5545 |
lemma sorted_iff_nth_mono: |
5546 |
"sorted xs = (\<forall>i j. i \<le> j \<longrightarrow> j < length xs \<longrightarrow> xs ! i \<le> xs ! j)" |
|
5547 |
by (auto simp: sorted_iff_nth_mono_less nat_less_le) |
|
5548 |
||
31201 | 5549 |
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
|
5550 |
"sorted xs \<Longrightarrow> i \<le> j \<Longrightarrow> j < length xs \<Longrightarrow> xs!i \<le> xs!j" |
68186 | 5551 |
by (auto simp: sorted_iff_nth_mono) |
31201 | 5552 |
|
73017 | 5553 |
lemma sorted_iff_nth_Suc: |
5554 |
"sorted xs \<longleftrightarrow> (\<forall>i. Suc i < length xs \<longrightarrow> xs!i \<le> xs!(Suc i))" |
|
5555 |
by(simp add: sorted_sorted_wrt sorted_wrt_iff_nth_Suc_transp) |
|
5556 |
||
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
|
5557 |
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
|
5558 |
"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
|
5559 |
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
|
5560 |
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
|
5561 |
by auto |
68176 | 5562 |
|
73017 | 5563 |
lemma sorted_rev_iff_nth_mono: |
5564 |
"sorted (rev xs) \<longleftrightarrow> (\<forall> i j. i \<le> j \<longrightarrow> j < length xs \<longrightarrow> xs!j \<le> xs!i)" (is "?L = ?R") |
|
5565 |
proof |
|
5566 |
assume ?L thus ?R |
|
5567 |
by (blast intro: sorted_rev_nth_mono) |
|
5568 |
next |
|
5569 |
assume ?R |
|
5570 |
have "rev xs ! k \<le> rev xs ! l" if asms: "k \<le> l" "l < length(rev xs)" for k l |
|
5571 |
proof - |
|
5572 |
have "k < length xs" "l < length xs" |
|
5573 |
"length xs - Suc l \<le> length xs - Suc k" "length xs - Suc k < length xs" |
|
5574 |
using asms by auto |
|
5575 |
thus "rev xs ! k \<le> rev xs ! l" |
|
5576 |
using \<open>?R\<close> \<open>k \<le> l\<close> unfolding rev_nth[OF \<open>k < length xs\<close>] rev_nth[OF \<open>l < length xs\<close>] by blast |
|
5577 |
qed |
|
5578 |
thus ?L by (simp add: sorted_iff_nth_mono) |
|
5579 |
qed |
|
5580 |
||
5581 |
lemma sorted_rev_iff_nth_Suc: |
|
5582 |
"sorted (rev xs) \<longleftrightarrow> (\<forall>i. Suc i < length xs \<longrightarrow> xs!(Suc i) \<le> xs!i)" |
|
5583 |
proof- |
|
5584 |
interpret dual: linorder "(\<lambda>x y. y \<le> x)" "(\<lambda>x y. y < x)" |
|
5585 |
using dual_linorder . |
|
5586 |
show ?thesis |
|
5587 |
using dual_linorder dual.sorted_iff_nth_Suc dual.sorted_iff_nth_mono |
|
5588 |
unfolding sorted_rev_iff_nth_mono by simp |
|
5589 |
qed |
|
5590 |
||
66434
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5591 |
lemma sorted_map_remove1: |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5592 |
"sorted (map f xs) \<Longrightarrow> sorted (map f (remove1 x xs))" |
68109 | 5593 |
by (induct xs) (auto) |
66434
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5594 |
|
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5595 |
lemma sorted_remove1: "sorted xs \<Longrightarrow> sorted (remove1 a xs)" |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5596 |
using sorted_map_remove1 [of "\<lambda>x. x"] by simp |
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
|
5597 |
|
36851 | 5598 |
lemma sorted_butlast: |
5599 |
assumes "xs \<noteq> []" and "sorted xs" |
|
5600 |
shows "sorted (butlast xs)" |
|
5601 |
proof - |
|
66434
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5602 |
from \<open>xs \<noteq> []\<close> obtain ys y where "xs = ys @ [y]" |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5603 |
by (cases xs rule: rev_cases) auto |
60758 | 5604 |
with \<open>sorted xs\<close> show ?thesis by (simp add: sorted_append) |
36851 | 5605 |
qed |
64963 | 5606 |
|
66905 | 5607 |
lemma sorted_replicate [simp]: "sorted(replicate n x)" |
68109 | 5608 |
by(induction n) (auto) |
66905 | 5609 |
|
26143
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
bulwahn
parents:
26073
diff
changeset
|
5610 |
lemma sorted_remdups[simp]: |
68109 | 5611 |
"sorted xs \<Longrightarrow> sorted (remdups xs)" |
5612 |
by (induct xs) (auto) |
|
26143
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
bulwahn
parents:
26073
diff
changeset
|
5613 |
|
53721
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
5614 |
lemma sorted_remdups_adj[simp]: |
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
5615 |
"sorted xs \<Longrightarrow> sorted (remdups_adj xs)" |
68109 | 5616 |
by (induct xs rule: remdups_adj.induct, simp_all split: if_split_asm) |
53721
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
5617 |
|
66853 | 5618 |
lemma sorted_nths: "sorted xs \<Longrightarrow> sorted (nths xs I)" |
68109 | 5619 |
by(induction xs arbitrary: I)(auto simp: nths_Cons) |
66853 | 5620 |
|
24645 | 5621 |
lemma sorted_distinct_set_unique: |
5622 |
assumes "sorted xs" "distinct xs" "sorted ys" "distinct ys" "set xs = set ys" |
|
5623 |
shows "xs = ys" |
|
5624 |
proof - |
|
26734 | 5625 |
from assms have 1: "length xs = length ys" by (auto dest!: distinct_card) |
24645 | 5626 |
from assms show ?thesis |
5627 |
proof(induct rule:list_induct2[OF 1]) |
|
5628 |
case 1 show ?case by simp |
|
5629 |
next |
|
73411 | 5630 |
case (2 x xs y ys) |
5631 |
then show ?case |
|
5632 |
by (cases \<open>x = y\<close>) (auto simp add: insert_eq_iff) |
|
24645 | 5633 |
qed |
5634 |
qed |
|
5635 |
||
35603 | 5636 |
lemma map_sorted_distinct_set_unique: |
5637 |
assumes "inj_on f (set xs \<union> set ys)" |
|
5638 |
assumes "sorted (map f xs)" "distinct (map f xs)" |
|
5639 |
"sorted (map f ys)" "distinct (map f ys)" |
|
5640 |
assumes "set xs = set ys" |
|
5641 |
shows "xs = ys" |
|
5642 |
proof - |
|
5643 |
from assms have "map f xs = map f ys" |
|
5644 |
by (simp add: sorted_distinct_set_unique) |
|
60758 | 5645 |
with \<open>inj_on f (set xs \<union> set ys)\<close> show "xs = ys" |
35603 | 5646 |
by (blast intro: map_inj_on) |
5647 |
qed |
|
5648 |
||
39915
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents:
39774
diff
changeset
|
5649 |
lemma |
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents:
39774
diff
changeset
|
5650 |
assumes "sorted xs" |
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents:
39774
diff
changeset
|
5651 |
shows sorted_take: "sorted (take n xs)" |
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents:
39774
diff
changeset
|
5652 |
and sorted_drop: "sorted (drop n xs)" |
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents:
39774
diff
changeset
|
5653 |
proof - |
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents:
39774
diff
changeset
|
5654 |
from assms have "sorted (take n xs @ drop n xs)" by simp |
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents:
39774
diff
changeset
|
5655 |
then show "sorted (take n xs)" and "sorted (drop n xs)" |
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents:
39774
diff
changeset
|
5656 |
unfolding sorted_append by simp_all |
29626 | 5657 |
qed |
5658 |
||
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
|
5659 |
lemma sorted_dropWhile: "sorted xs \<Longrightarrow> sorted (dropWhile P xs)" |
39915
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents:
39774
diff
changeset
|
5660 |
by (auto dest: sorted_drop simp add: dropWhile_eq_drop) |
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
|
5661 |
|
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
5662 |
lemma sorted_takeWhile: "sorted xs \<Longrightarrow> sorted (takeWhile P xs)" |
39915
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents:
39774
diff
changeset
|
5663 |
by (subst takeWhile_eq_take) (auto dest: sorted_take) |
29626 | 5664 |
|
34933 | 5665 |
lemma sorted_filter: |
5666 |
"sorted (map f xs) \<Longrightarrow> sorted (map f (filter P xs))" |
|
68109 | 5667 |
by (induct xs) simp_all |
34933 | 5668 |
|
5669 |
lemma foldr_max_sorted: |
|
5670 |
assumes "sorted (rev xs)" |
|
5671 |
shows "foldr max xs y = (if xs = [] then y else max (xs ! 0) y)" |
|
53374
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents:
53017
diff
changeset
|
5672 |
using assms |
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents:
53017
diff
changeset
|
5673 |
proof (induct xs) |
34933 | 5674 |
case (Cons x xs) |
53374
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents:
53017
diff
changeset
|
5675 |
then have "sorted (rev xs)" using sorted_append by auto |
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents:
53017
diff
changeset
|
5676 |
with Cons show ?case |
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents:
53017
diff
changeset
|
5677 |
by (cases xs) (auto simp add: sorted_append max_def) |
34933 | 5678 |
qed simp |
5679 |
||
5680 |
lemma filter_equals_takeWhile_sorted_rev: |
|
5681 |
assumes sorted: "sorted (rev (map f xs))" |
|
68249
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents:
68215
diff
changeset
|
5682 |
shows "filter (\<lambda>x. t < f x) xs = takeWhile (\<lambda> x. t < f x) xs" |
34933 | 5683 |
(is "filter ?P xs = ?tW") |
5684 |
proof (rule takeWhile_eq_filter[symmetric]) |
|
5685 |
let "?dW" = "dropWhile ?P xs" |
|
5686 |
fix x assume "x \<in> set ?dW" |
|
5687 |
then obtain i where i: "i < length ?dW" and nth_i: "x = ?dW ! i" |
|
5688 |
unfolding in_set_conv_nth by auto |
|
5689 |
hence "length ?tW + i < length (?tW @ ?dW)" |
|
5690 |
unfolding length_append by simp |
|
5691 |
hence i': "length (map f ?tW) + i < length (map f xs)" by simp |
|
5692 |
have "(map f ?tW @ map f ?dW) ! (length (map f ?tW) + i) \<le> |
|
5693 |
(map f ?tW @ map f ?dW) ! (length (map f ?tW) + 0)" |
|
5694 |
using sorted_rev_nth_mono[OF sorted _ i', of "length ?tW"] |
|
5695 |
unfolding map_append[symmetric] by simp |
|
5696 |
hence "f x \<le> f (?dW ! 0)" |
|
5697 |
unfolding nth_append_length_plus nth_i |
|
5698 |
using i preorder_class.le_less_trans[OF le0 i] by simp |
|
5699 |
also have "... \<le> t" |
|
5700 |
using hd_dropWhile[of "?P" xs] le0[THEN preorder_class.le_less_trans, OF i] |
|
5701 |
using hd_conv_nth[of "?dW"] by simp |
|
5702 |
finally show "\<not> t < f x" by simp |
|
5703 |
qed |
|
5704 |
||
66434
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5705 |
lemma sorted_map_same: |
68249
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents:
68215
diff
changeset
|
5706 |
"sorted (map f (filter (\<lambda>x. f x = g xs) xs))" |
66434
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5707 |
proof (induct xs arbitrary: g) |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5708 |
case Nil then show ?case by simp |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5709 |
next |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5710 |
case (Cons x xs) |
68249
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents:
68215
diff
changeset
|
5711 |
then have "sorted (map f (filter (\<lambda>y. f y = (\<lambda>xs. f x) xs) xs))" . |
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents:
68215
diff
changeset
|
5712 |
moreover from Cons have "sorted (map f (filter (\<lambda>y. f y = (g \<circ> Cons x) xs) xs))" . |
68109 | 5713 |
ultimately show ?case by simp_all |
66434
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5714 |
qed |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5715 |
|
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5716 |
lemma sorted_same: |
68249
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents:
68215
diff
changeset
|
5717 |
"sorted (filter (\<lambda>x. x = g xs) xs)" |
66434
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5718 |
using sorted_map_same [of "\<lambda>x. x"] by simp |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5719 |
|
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5720 |
end |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5721 |
|
68190 | 5722 |
lemma sorted_upt[simp]: "sorted [m..<n]" |
5723 |
by(simp add: sorted_sorted_wrt sorted_wrt_mono_rel[OF _ sorted_wrt_upt]) |
|
5724 |
||
5725 |
lemma sorted_upto[simp]: "sorted [m..n]" |
|
5726 |
by(simp add: sorted_sorted_wrt sorted_wrt_mono_rel[OF _ sorted_wrt_upto]) |
|
5727 |
||
66434
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5728 |
|
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5729 |
subsubsection \<open>Sorting functions\<close> |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5730 |
|
69593 | 5731 |
text\<open>Currently it is not shown that \<^const>\<open>sort\<close> returns a |
66434
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5732 |
permutation of its input because the nicest proof is via multisets, |
66654 | 5733 |
which are not part of Main. Alternatively one could define a function |
66434
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5734 |
that counts the number of occurrences of an element in a list and use |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5735 |
that instead of multisets to state the correctness property.\<close> |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5736 |
|
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5737 |
context linorder |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5738 |
begin |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5739 |
|
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5740 |
lemma set_insort_key: |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5741 |
"set (insort_key f x xs) = insert x (set xs)" |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5742 |
by (induct xs) auto |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5743 |
|
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5744 |
lemma length_insort [simp]: |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5745 |
"length (insort_key f x xs) = Suc (length xs)" |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5746 |
by (induct xs) simp_all |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5747 |
|
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5748 |
lemma insort_key_left_comm: |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5749 |
assumes "f x \<noteq> f y" |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5750 |
shows "insort_key f y (insort_key f x xs) = insort_key f x (insort_key f y xs)" |
73411 | 5751 |
by (induct xs) (auto simp add: assms dest: order.antisym) |
66434
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5752 |
|
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5753 |
lemma insort_left_comm: |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5754 |
"insort x (insort y xs) = insort y (insort x xs)" |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5755 |
by (cases "x = y") (auto intro: insort_key_left_comm) |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5756 |
|
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5757 |
lemma comp_fun_commute_insort: "comp_fun_commute insort" |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5758 |
proof |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5759 |
qed (simp add: insort_left_comm fun_eq_iff) |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5760 |
|
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5761 |
lemma sort_key_simps [simp]: |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5762 |
"sort_key f [] = []" |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5763 |
"sort_key f (x#xs) = insort_key f x (sort_key f xs)" |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5764 |
by (simp_all add: sort_key_def) |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5765 |
|
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5766 |
lemma sort_key_conv_fold: |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5767 |
assumes "inj_on f (set xs)" |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5768 |
shows "sort_key f xs = fold (insort_key f) xs []" |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5769 |
proof - |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5770 |
have "fold (insort_key f) (rev xs) = fold (insort_key f) xs" |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5771 |
proof (rule fold_rev, rule ext) |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5772 |
fix zs |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5773 |
fix x y |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5774 |
assume "x \<in> set xs" "y \<in> set xs" |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5775 |
with assms have *: "f y = f x \<Longrightarrow> y = x" by (auto dest: inj_onD) |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5776 |
have **: "x = y \<longleftrightarrow> y = x" by auto |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5777 |
show "(insort_key f y \<circ> insort_key f x) zs = (insort_key f x \<circ> insort_key f y) zs" |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5778 |
by (induct zs) (auto intro: * simp add: **) |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5779 |
qed |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5780 |
then show ?thesis by (simp add: sort_key_def foldr_conv_fold) |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5781 |
qed |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5782 |
|
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5783 |
lemma sort_conv_fold: |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5784 |
"sort xs = fold insort xs []" |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5785 |
by (rule sort_key_conv_fold) simp |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5786 |
|
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5787 |
lemma length_sort[simp]: "length (sort_key f xs) = length xs" |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5788 |
by (induct xs, auto) |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5789 |
|
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5790 |
lemma set_sort[simp]: "set(sort_key f xs) = set xs" |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5791 |
by (induct xs) (simp_all add: set_insort_key) |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5792 |
|
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5793 |
lemma distinct_insort: "distinct (insort_key f x xs) = (x \<notin> set xs \<and> distinct xs)" |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5794 |
by(induct xs)(auto simp: set_insort_key) |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5795 |
|
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5796 |
lemma distinct_sort[simp]: "distinct (sort_key f xs) = distinct xs" |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5797 |
by (induct xs) (simp_all add: distinct_insort) |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5798 |
|
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5799 |
lemma sorted_insort_key: "sorted (map f (insort_key f x xs)) = sorted (map f xs)" |
68109 | 5800 |
by (induct xs) (auto simp: set_insort_key) |
66434
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5801 |
|
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5802 |
lemma sorted_insort: "sorted (insort x xs) = sorted xs" |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5803 |
using sorted_insort_key [where f="\<lambda>x. x"] by simp |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5804 |
|
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5805 |
theorem sorted_sort_key [simp]: "sorted (map f (sort_key f xs))" |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5806 |
by (induct xs) (auto simp:sorted_insort_key) |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5807 |
|
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5808 |
theorem sorted_sort [simp]: "sorted (sort xs)" |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5809 |
using sorted_sort_key [where f="\<lambda>x. x"] by simp |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5810 |
|
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5811 |
lemma insort_not_Nil [simp]: |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5812 |
"insort_key f a xs \<noteq> []" |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5813 |
by (induction xs) simp_all |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5814 |
|
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5815 |
lemma insort_is_Cons: "\<forall>x\<in>set xs. f a \<le> f x \<Longrightarrow> insort_key f a xs = a # xs" |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5816 |
by (cases xs) auto |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5817 |
|
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5818 |
lemma sorted_sort_id: "sorted xs \<Longrightarrow> sort xs = xs" |
68109 | 5819 |
by (induct xs) (auto simp add: insort_is_Cons) |
66434
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5820 |
|
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5821 |
lemma insort_key_remove1: |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5822 |
assumes "a \<in> set xs" and "sorted (map f xs)" and "hd (filter (\<lambda>x. f a = f x) xs) = a" |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5823 |
shows "insort_key f a (remove1 a xs) = xs" |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5824 |
using assms proof (induct xs) |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5825 |
case (Cons x xs) |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5826 |
then show ?case |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5827 |
proof (cases "x = a") |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5828 |
case False |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5829 |
then have "f x \<noteq> f a" using Cons.prems by auto |
68109 | 5830 |
then have "f x < f a" using Cons.prems by auto |
5831 |
with \<open>f x \<noteq> f a\<close> show ?thesis using Cons by (auto simp: insort_is_Cons) |
|
5832 |
qed (auto simp: insort_is_Cons) |
|
66434
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5833 |
qed simp |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5834 |
|
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5835 |
lemma insort_remove1: |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5836 |
assumes "a \<in> set xs" and "sorted xs" |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5837 |
shows "insort a (remove1 a xs) = xs" |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5838 |
proof (rule insort_key_remove1) |
67399 | 5839 |
define n where "n = length (filter ((=) a) xs) - 1" |
66434
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5840 |
from \<open>a \<in> set xs\<close> show "a \<in> set xs" . |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5841 |
from \<open>sorted xs\<close> show "sorted (map (\<lambda>x. x) xs)" by simp |
67399 | 5842 |
from \<open>a \<in> set xs\<close> have "a \<in> set (filter ((=) a) xs)" by auto |
5843 |
then have "set (filter ((=) a) xs) \<noteq> {}" by auto |
|
5844 |
then have "filter ((=) a) xs \<noteq> []" by (auto simp only: set_empty) |
|
5845 |
then have "length (filter ((=) a) xs) > 0" by simp |
|
5846 |
then have n: "Suc n = length (filter ((=) a) xs)" by (simp add: n_def) |
|
66434
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5847 |
moreover have "replicate (Suc n) a = a # replicate n a" |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5848 |
by simp |
67399 | 5849 |
ultimately show "hd (filter ((=) a) xs) = a" by (simp add: replicate_length_filter) |
66434
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5850 |
qed |
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5851 |
|
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5852 |
lemma finite_sorted_distinct_unique: |
68719 | 5853 |
assumes "finite A" shows "\<exists>!xs. set xs = A \<and> sorted xs \<and> distinct xs" |
5854 |
proof - |
|
5855 |
obtain xs where "distinct xs" "A = set xs" |
|
5856 |
using finite_distinct_list [OF assms] by metis |
|
5857 |
then show ?thesis |
|
5858 |
by (rule_tac a="sort xs" in ex1I) (auto simp: sorted_distinct_set_unique) |
|
5859 |
qed |
|
66434
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5860 |
|
40210
aee7ef725330
sorting: avoid _key suffix if lemma applies both to simple and generalized variant; generalized insort_insert to insort_insert_key; additional lemmas
haftmann
parents:
40195
diff
changeset
|
5861 |
lemma insort_insert_key_triv: |
aee7ef725330
sorting: avoid _key suffix if lemma applies both to simple and generalized variant; generalized insort_insert to insort_insert_key; additional lemmas
haftmann
parents:
40195
diff
changeset
|
5862 |
"f x \<in> f ` set xs \<Longrightarrow> insort_insert_key f x xs = xs" |
aee7ef725330
sorting: avoid _key suffix if lemma applies both to simple and generalized variant; generalized insort_insert to insort_insert_key; additional lemmas
haftmann
parents:
40195
diff
changeset
|
5863 |
by (simp add: insort_insert_key_def) |
aee7ef725330
sorting: avoid _key suffix if lemma applies both to simple and generalized variant; generalized insort_insert to insort_insert_key; additional lemmas
haftmann
parents:
40195
diff
changeset
|
5864 |
|
aee7ef725330
sorting: avoid _key suffix if lemma applies both to simple and generalized variant; generalized insort_insert to insort_insert_key; additional lemmas
haftmann
parents:
40195
diff
changeset
|
5865 |
lemma insort_insert_triv: |
aee7ef725330
sorting: avoid _key suffix if lemma applies both to simple and generalized variant; generalized insort_insert to insort_insert_key; additional lemmas
haftmann
parents:
40195
diff
changeset
|
5866 |
"x \<in> set xs \<Longrightarrow> insort_insert x xs = xs" |
aee7ef725330
sorting: avoid _key suffix if lemma applies both to simple and generalized variant; generalized insort_insert to insort_insert_key; additional lemmas
haftmann
parents:
40195
diff
changeset
|
5867 |
using insort_insert_key_triv [of "\<lambda>x. x"] by simp |
aee7ef725330
sorting: avoid _key suffix if lemma applies both to simple and generalized variant; generalized insort_insert to insort_insert_key; additional lemmas
haftmann
parents:
40195
diff
changeset
|
5868 |
|
aee7ef725330
sorting: avoid _key suffix if lemma applies both to simple and generalized variant; generalized insort_insert to insort_insert_key; additional lemmas
haftmann
parents:
40195
diff
changeset
|
5869 |
lemma insort_insert_insort_key: |
aee7ef725330
sorting: avoid _key suffix if lemma applies both to simple and generalized variant; generalized insort_insert to insort_insert_key; additional lemmas
haftmann
parents:
40195
diff
changeset
|
5870 |
"f x \<notin> f ` set xs \<Longrightarrow> insort_insert_key f x xs = insort_key f x xs" |
aee7ef725330
sorting: avoid _key suffix if lemma applies both to simple and generalized variant; generalized insort_insert to insort_insert_key; additional lemmas
haftmann
parents:
40195
diff
changeset
|
5871 |
by (simp add: insort_insert_key_def) |
aee7ef725330
sorting: avoid _key suffix if lemma applies both to simple and generalized variant; generalized insort_insert to insort_insert_key; additional lemmas
haftmann
parents:
40195
diff
changeset
|
5872 |
|
aee7ef725330
sorting: avoid _key suffix if lemma applies both to simple and generalized variant; generalized insort_insert to insort_insert_key; additional lemmas
haftmann
parents:
40195
diff
changeset
|
5873 |
lemma insort_insert_insort: |
aee7ef725330
sorting: avoid _key suffix if lemma applies both to simple and generalized variant; generalized insort_insert to insort_insert_key; additional lemmas
haftmann
parents:
40195
diff
changeset
|
5874 |
"x \<notin> set xs \<Longrightarrow> insort_insert x xs = insort x xs" |
aee7ef725330
sorting: avoid _key suffix if lemma applies both to simple and generalized variant; generalized insort_insert to insort_insert_key; additional lemmas
haftmann
parents:
40195
diff
changeset
|
5875 |
using insort_insert_insort_key [of "\<lambda>x. x"] by simp |
aee7ef725330
sorting: avoid _key suffix if lemma applies both to simple and generalized variant; generalized insort_insert to insort_insert_key; additional lemmas
haftmann
parents:
40195
diff
changeset
|
5876 |
|
35608 | 5877 |
lemma set_insort_insert: |
5878 |
"set (insort_insert x xs) = insert x (set xs)" |
|
66434
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5879 |
by (auto simp add: insort_insert_key_def set_insort_key) |
35608 | 5880 |
|
5881 |
lemma distinct_insort_insert: |
|
5882 |
assumes "distinct xs" |
|
40210
aee7ef725330
sorting: avoid _key suffix if lemma applies both to simple and generalized variant; generalized insort_insert to insort_insert_key; additional lemmas
haftmann
parents:
40195
diff
changeset
|
5883 |
shows "distinct (insort_insert_key f x xs)" |
66434
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents:
66358
diff
changeset
|
5884 |
using assms by (induct xs) (auto simp add: insort_insert_key_def set_insort_key) |
40210
aee7ef725330
sorting: avoid _key suffix if lemma applies both to simple and generalized variant; generalized insort_insert to insort_insert_key; additional lemmas
haftmann
parents:
40195
diff
changeset
|
5885 |
|
aee7ef725330
sorting: avoid _key suffix if lemma applies both to simple and generalized variant; generalized insort_insert to insort_insert_key; additional lemmas
haftmann
parents:
40195
diff
changeset
|
5886 |
lemma sorted_insort_insert_key: |
aee7ef725330
sorting: avoid _key suffix if lemma applies both to simple and generalized variant; generalized insort_insert to insort_insert_key; additional lemmas
haftmann
parents:
40195
diff
changeset
|
5887 |
assumes "sorted (map f xs)" |
aee7ef725330
sorting: avoid _key suffix if lemma applies both to simple and generalized variant; generalized insort_insert to insort_insert_key; additional lemmas
haftmann
parents:
40195
diff
changeset
|
5888 |
shows "sorted (map f (insort_insert_key f x xs))" |
aee7ef725330
sorting: avoid _key suffix if lemma applies both to simple and generalized variant; generalized insort_insert to insort_insert_key; additional lemmas
haftmann
parents:
40195
diff
changeset
|
5889 |
using assms by (simp add: insort_insert_key_def sorted_insort_key) |
35608 | 5890 |
|
5891 |
lemma sorted_insort_insert: |
|
5892 |
assumes "sorted xs" |
|
5893 |
shows "sorted (insort_insert x xs)" |
|
40210
aee7ef725330
sorting: avoid _key suffix if lemma applies both to simple and generalized variant; generalized insort_insert to insort_insert_key; additional lemmas
haftmann
parents:
40195
diff
changeset
|
5894 |
using assms sorted_insort_insert_key [of "\<lambda>x. x"] by simp |
aee7ef725330
sorting: avoid _key suffix if lemma applies both to simple and generalized variant; generalized insort_insert to insort_insert_key; additional lemmas
haftmann
parents:
40195
diff
changeset
|
5895 |
|
aee7ef725330
sorting: avoid _key suffix if lemma applies both to simple and generalized variant; generalized insort_insert to insort_insert_key; additional lemmas
haftmann
parents:
40195
diff
changeset
|
5896 |
lemma filter_insort_triv: |
37107 | 5897 |
"\<not> P x \<Longrightarrow> filter P (insort_key f x xs) = filter P xs" |
5898 |
by (induct xs) simp_all |
|
5899 |
||
40210
aee7ef725330
sorting: avoid _key suffix if lemma applies both to simple and generalized variant; generalized insort_insert to insort_insert_key; additional lemmas
haftmann
parents:
40195
diff
changeset
|
5900 |
lemma filter_insort: |
37107 | 5901 |
"sorted (map f xs) \<Longrightarrow> P x \<Longrightarrow> filter P (insort_key f x xs) = insort_key f x (filter P xs)" |
68109 | 5902 |
by (induct xs) (auto, subst insort_is_Cons, auto) |
37107 | 5903 |
|
40210
aee7ef725330
sorting: avoid _key suffix if lemma applies both to simple and generalized variant; generalized insort_insert to insort_insert_key; additional lemmas
haftmann
parents:
40195
diff
changeset
|
5904 |
lemma filter_sort: |
37107 | 5905 |
"filter P (sort_key f xs) = sort_key f (filter P xs)" |
40210
aee7ef725330
sorting: avoid _key suffix if lemma applies both to simple and generalized variant; generalized insort_insert to insort_insert_key; additional lemmas
haftmann
parents:
40195
diff
changeset
|
5906 |
by (induct xs) (simp_all add: filter_insort_triv filter_insort) |
37107 | 5907 |
|
5908 |
lemma remove1_insort [simp]: |
|
5909 |
"remove1 x (insort x xs) = xs" |
|
5910 |
by (induct xs) simp_all |
|
5911 |
||
24616 | 5912 |
end |
5913 |
||
68191 | 5914 |
lemma sort_upt [simp]: "sort [m..<n] = [m..<n]" |
5915 |
by (rule sorted_sort_id) simp |
|
5916 |
||
5917 |
lemma sort_upto [simp]: "sort [i..j] = [i..j]" |
|
5918 |
by (rule sorted_sort_id) simp |
|
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
|
5919 |
|
52379 | 5920 |
lemma sorted_find_Min: |
67479 | 5921 |
"sorted xs \<Longrightarrow> \<exists>x \<in> set xs. P x \<Longrightarrow> List.find P xs = Some (Min {x\<in>set xs. P x})" |
5922 |
proof (induct xs) |
|
52379 | 5923 |
case Nil then show ?case by simp |
5924 |
next |
|
67479 | 5925 |
case (Cons x xs) show ?case proof (cases "P x") |
5926 |
case True |
|
68109 | 5927 |
with Cons show ?thesis by (auto intro: Min_eqI [symmetric]) |
52379 | 5928 |
next |
5929 |
case False then have "{y. (y = x \<or> y \<in> set xs) \<and> P y} = {y \<in> set xs. P y}" |
|
5930 |
by auto |
|
68109 | 5931 |
with Cons False show ?thesis by (simp_all) |
52379 | 5932 |
qed |
5933 |
qed |
|
5934 |
||
66853 | 5935 |
lemma sorted_enumerate [simp]: "sorted (map fst (enumerate n xs))" |
5936 |
by (simp add: enumerate_eq_zip) |
|
58437 | 5937 |
|
69593 | 5938 |
text \<open>Stability of \<^const>\<open>sort_key\<close>:\<close> |
67684 | 5939 |
|
68249
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents:
68215
diff
changeset
|
5940 |
lemma sort_key_stable: "filter (\<lambda>y. f y = k) (sort_key f xs) = filter (\<lambda>y. f y = k) xs" |
70296 | 5941 |
by (induction xs) (auto simp: filter_insort insort_is_Cons filter_insort_triv) |
66654 | 5942 |
|
67684 | 5943 |
corollary stable_sort_key_sort_key: "stable_sort_key sort_key" |
5944 |
by(simp add: stable_sort_key_def sort_key_stable) |
|
5945 |
||
67606 | 5946 |
lemma sort_key_const: "sort_key (\<lambda>x. c) xs = xs" |
67684 | 5947 |
by (metis (mono_tags) filter_True sort_key_stable) |
67606 | 5948 |
|
35115 | 5949 |
|
69593 | 5950 |
subsubsection \<open>\<^const>\<open>transpose\<close> on sorted lists\<close> |
34933 | 5951 |
|
66853 | 5952 |
lemma sorted_transpose[simp]: "sorted (rev (map length (transpose xs)))" |
68175 | 5953 |
by (auto simp: sorted_iff_nth_mono rev_nth nth_transpose |
34933 | 5954 |
length_filter_conv_card intro: card_mono) |
5955 |
||
5956 |
lemma transpose_max_length: |
|
68249
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents:
68215
diff
changeset
|
5957 |
"foldr (\<lambda>xs. max (length xs)) (transpose xs) 0 = length (filter (\<lambda>x. x \<noteq> []) xs)" |
34933 | 5958 |
(is "?L = ?R") |
5959 |
proof (cases "transpose xs = []") |
|
5960 |
case False |
|
5961 |
have "?L = foldr max (map length (transpose xs)) 0" |
|
5962 |
by (simp add: foldr_map comp_def) |
|
5963 |
also have "... = length (transpose xs ! 0)" |
|
5964 |
using False sorted_transpose by (simp add: foldr_max_sorted) |
|
5965 |
finally show ?thesis |
|
5966 |
using False by (simp add: nth_transpose) |
|
5967 |
next |
|
5968 |
case True |
|
68249
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents:
68215
diff
changeset
|
5969 |
hence "filter (\<lambda>x. x \<noteq> []) xs = []" |
34933 | 5970 |
by (auto intro!: filter_False simp: transpose_empty) |
5971 |
thus ?thesis by (simp add: transpose_empty True) |
|
5972 |
qed |
|
5973 |
||
5974 |
lemma length_transpose_sorted: |
|
5975 |
fixes xs :: "'a list list" |
|
5976 |
assumes sorted: "sorted (rev (map length xs))" |
|
5977 |
shows "length (transpose xs) = (if xs = [] then 0 else length (xs ! 0))" |
|
5978 |
proof (cases "xs = []") |
|
5979 |
case False |
|
5980 |
thus ?thesis |
|
5981 |
using foldr_max_sorted[OF sorted] False |
|
5982 |
unfolding length_transpose foldr_map comp_def |
|
5983 |
by simp |
|
5984 |
qed simp |
|
5985 |
||
5986 |
lemma nth_nth_transpose_sorted[simp]: |
|
5987 |
fixes xs :: "'a list list" |
|
5988 |
assumes sorted: "sorted (rev (map length xs))" |
|
5989 |
and i: "i < length (transpose xs)" |
|
68249
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents:
68215
diff
changeset
|
5990 |
and j: "j < length (filter (\<lambda>ys. i < length ys) xs)" |
34933 | 5991 |
shows "transpose xs ! i ! j = xs ! j ! i" |
66853 | 5992 |
using j filter_equals_takeWhile_sorted_rev[OF sorted, of i] |
34933 | 5993 |
nth_transpose[OF i] nth_map[OF j] |
66853 | 5994 |
by (simp add: takeWhile_nth) |
34933 | 5995 |
|
5996 |
lemma transpose_column_length: |
|
5997 |
fixes xs :: "'a list list" |
|
5998 |
assumes sorted: "sorted (rev (map length xs))" and "i < length xs" |
|
5999 |
shows "length (filter (\<lambda>ys. i < length ys) (transpose xs)) = length (xs ! i)" |
|
6000 |
proof - |
|
60758 | 6001 |
have "xs \<noteq> []" using \<open>i < length xs\<close> by auto |
34933 | 6002 |
note filter_equals_takeWhile_sorted_rev[OF sorted, simp] |
6003 |
{ fix j assume "j \<le> i" |
|
60758 | 6004 |
note sorted_rev_nth_mono[OF sorted, of j i, simplified, OF this \<open>i < length xs\<close>] |
34933 | 6005 |
} note sortedE = this[consumes 1] |
6006 |
||
6007 |
have "{j. j < length (transpose xs) \<and> i < length (transpose xs ! j)} |
|
6008 |
= {..< length (xs ! i)}" |
|
6009 |
proof safe |
|
6010 |
fix j |
|
6011 |
assume "j < length (transpose xs)" and "i < length (transpose xs ! j)" |
|
6012 |
with this(2) nth_transpose[OF this(1)] |
|
6013 |
have "i < length (takeWhile (\<lambda>ys. j < length ys) xs)" by simp |
|
6014 |
from nth_mem[OF this] takeWhile_nth[OF this] |
|
6015 |
show "j < length (xs ! i)" by (auto dest: set_takeWhileD) |
|
6016 |
next |
|
6017 |
fix j assume "j < length (xs ! i)" |
|
6018 |
thus "j < length (transpose xs)" |
|
60758 | 6019 |
using foldr_max_sorted[OF sorted] \<open>xs \<noteq> []\<close> sortedE[OF le0] |
34933 | 6020 |
by (auto simp: length_transpose comp_def foldr_map) |
6021 |
||
6022 |
have "Suc i \<le> length (takeWhile (\<lambda>ys. j < length ys) xs)" |
|
60758 | 6023 |
using \<open>i < length xs\<close> \<open>j < length (xs ! i)\<close> less_Suc_eq_le |
34933 | 6024 |
by (auto intro!: length_takeWhile_less_P_nth dest!: sortedE) |
60758 | 6025 |
with nth_transpose[OF \<open>j < length (transpose xs)\<close>] |
34933 | 6026 |
show "i < length (transpose xs ! j)" by simp |
6027 |
qed |
|
6028 |
thus ?thesis by (simp add: length_filter_conv_card) |
|
6029 |
qed |
|
6030 |
||
6031 |
lemma transpose_column: |
|
6032 |
fixes xs :: "'a list list" |
|
6033 |
assumes sorted: "sorted (rev (map length xs))" and "i < length xs" |
|
6034 |
shows "map (\<lambda>ys. ys ! i) (filter (\<lambda>ys. i < length ys) (transpose xs)) |
|
6035 |
= xs ! i" (is "?R = _") |
|
68975
5ce4d117cea7
A few new results, elimination of duplicates and more use of "pairwise"
paulson <lp15@cam.ac.uk>
parents:
68781
diff
changeset
|
6036 |
proof (rule nth_equalityI) |
34933 | 6037 |
show length: "length ?R = length (xs ! i)" |
6038 |
using transpose_column_length[OF assms] by simp |
|
6039 |
||
6040 |
fix j assume j: "j < length ?R" |
|
6041 |
note * = less_le_trans[OF this, unfolded length_map, OF length_filter_le] |
|
6042 |
from j have j_less: "j < length (xs ! i)" using length by simp |
|
6043 |
have i_less_tW: "Suc i \<le> length (takeWhile (\<lambda>ys. Suc j \<le> length ys) xs)" |
|
6044 |
proof (rule length_takeWhile_less_P_nth) |
|
60758 | 6045 |
show "Suc i \<le> length xs" using \<open>i < length xs\<close> by simp |
34933 | 6046 |
fix k assume "k < Suc i" |
6047 |
hence "k \<le> i" by auto |
|
60758 | 6048 |
with sorted_rev_nth_mono[OF sorted this] \<open>i < length xs\<close> |
34933 | 6049 |
have "length (xs ! i) \<le> length (xs ! k)" by simp |
6050 |
thus "Suc j \<le> length (xs ! k)" using j_less by simp |
|
6051 |
qed |
|
68249
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents:
68215
diff
changeset
|
6052 |
have i_less_filter: "i < length (filter (\<lambda>ys. j < length ys) xs) " |
34933 | 6053 |
unfolding filter_equals_takeWhile_sorted_rev[OF sorted, of j] |
6054 |
using i_less_tW by (simp_all add: Suc_le_eq) |
|
6055 |
from j show "?R ! j = xs ! i ! j" |
|
6056 |
unfolding filter_equals_takeWhile_sorted_rev[OF sorted_transpose, of i] |
|
6057 |
by (simp add: takeWhile_nth nth_nth_transpose_sorted[OF sorted * i_less_filter]) |
|
6058 |
qed |
|
6059 |
||
6060 |
lemma transpose_transpose: |
|
6061 |
fixes xs :: "'a list list" |
|
6062 |
assumes sorted: "sorted (rev (map length xs))" |
|
6063 |
shows "transpose (transpose xs) = takeWhile (\<lambda>x. x \<noteq> []) xs" (is "?L = ?R") |
|
6064 |
proof - |
|
6065 |
have len: "length ?L = length ?R" |
|
6066 |
unfolding length_transpose transpose_max_length |
|
6067 |
using filter_equals_takeWhile_sorted_rev[OF sorted, of 0] |
|
6068 |
by simp |
|
6069 |
||
6070 |
{ fix i assume "i < length ?R" |
|
6071 |
with less_le_trans[OF _ length_takeWhile_le[of _ xs]] |
|
6072 |
have "i < length xs" by simp |
|
6073 |
} note * = this |
|
6074 |
show ?thesis |
|
6075 |
by (rule nth_equalityI) |
|
6076 |
(simp_all add: len nth_transpose transpose_column[OF sorted] * takeWhile_nth) |
|
6077 |
qed |
|
24616 | 6078 |
|
34934
440605046777
Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents:
34933
diff
changeset
|
6079 |
theorem transpose_rectangle: |
440605046777
Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents:
34933
diff
changeset
|
6080 |
assumes "xs = [] \<Longrightarrow> n = 0" |
440605046777
Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents:
34933
diff
changeset
|
6081 |
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
|
6082 |
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
|
6083 |
(is "?trans = ?map") |
440605046777
Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents:
34933
diff
changeset
|
6084 |
proof (rule nth_equalityI) |
440605046777
Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents:
34933
diff
changeset
|
6085 |
have "sorted (rev (map length xs))" |
68175 | 6086 |
by (auto simp: rev_nth rect sorted_iff_nth_mono) |
34934
440605046777
Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents:
34933
diff
changeset
|
6087 |
from foldr_max_sorted[OF this] assms |
440605046777
Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents:
34933
diff
changeset
|
6088 |
show len: "length ?trans = length ?map" |
440605046777
Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents:
34933
diff
changeset
|
6089 |
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
|
6090 |
moreover |
68249
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents:
68215
diff
changeset
|
6091 |
{ fix i assume "i < n" hence "filter (\<lambda>ys. i < length ys) xs = xs" |
34934
440605046777
Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents:
34933
diff
changeset
|
6092 |
using rect by (auto simp: in_set_conv_nth intro!: filter_True) } |
68975
5ce4d117cea7
A few new results, elimination of duplicates and more use of "pairwise"
paulson <lp15@cam.ac.uk>
parents:
68781
diff
changeset
|
6093 |
ultimately show "\<And>i. i < length (transpose xs) \<Longrightarrow> ?trans ! i = ?map ! i" |
34934
440605046777
Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents:
34933
diff
changeset
|
6094 |
by (auto simp: nth_transpose intro: nth_equalityI) |
440605046777
Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents:
34933
diff
changeset
|
6095 |
qed |
24616 | 6096 |
|
35115 | 6097 |
|
61799 | 6098 |
subsubsection \<open>\<open>sorted_list_of_set\<close>\<close> |
60758 | 6099 |
|
6100 |
text\<open>This function maps (finite) linearly ordered sets to sorted |
|
25069 | 6101 |
lists. Warning: in most cases it is not a good idea to convert from |
6102 |
sets to lists but one should convert in the other direction (via |
|
69593 | 6103 |
\<^const>\<open>set\<close>).\<close> |
60758 | 6104 |
|
54868 | 6105 |
context linorder |
6106 |
begin |
|
6107 |
||
6108 |
definition sorted_list_of_set :: "'a set \<Rightarrow> 'a list" where |
|
51489 | 6109 |
"sorted_list_of_set = folding.F insort []" |
6110 |
||
61605 | 6111 |
sublocale sorted_list_of_set: folding insort Nil |
61566
c3d6e570ccef
Keyword 'rewrites' identifies rewrite morphisms.
ballarin
parents:
61468
diff
changeset
|
6112 |
rewrites |
51489 | 6113 |
"folding.F insort [] = sorted_list_of_set" |
6114 |
proof - |
|
6115 |
interpret comp_fun_commute insort by (fact comp_fun_commute_insort) |
|
61169 | 6116 |
show "folding insort" by standard (fact comp_fun_commute) |
51489 | 6117 |
show "folding.F insort [] = sorted_list_of_set" by (simp only: sorted_list_of_set_def) |
6118 |
qed |
|
6119 |
||
6120 |
lemma sorted_list_of_set_empty: |
|
35195 | 6121 |
"sorted_list_of_set {} = []" |
71585 | 6122 |
by (fact sorted_list_of_set.empty) |
35195 | 6123 |
|
6124 |
lemma sorted_list_of_set_insert [simp]: |
|
54868 | 6125 |
"finite A \<Longrightarrow> sorted_list_of_set (insert x A) = insort x (sorted_list_of_set (A - {x}))" |
71585 | 6126 |
by (fact sorted_list_of_set.insert_remove) |
35195 | 6127 |
|
52122 | 6128 |
lemma sorted_list_of_set_eq_Nil_iff [simp]: |
6129 |
"finite A \<Longrightarrow> sorted_list_of_set A = [] \<longleftrightarrow> A = {}" |
|
71585 | 6130 |
by (auto simp: sorted_list_of_set.remove) |
52122 | 6131 |
|
68083 | 6132 |
lemma set_sorted_list_of_set [simp]: |
6133 |
"finite A \<Longrightarrow> set (sorted_list_of_set A) = A" |
|
71585 | 6134 |
by(induct A rule: finite_induct) (simp_all add: set_insort_key) |
68083 | 6135 |
|
6136 |
lemma sorted_sorted_list_of_set [simp]: "sorted (sorted_list_of_set A)" |
|
6137 |
proof (cases "finite A") |
|
6138 |
case True thus ?thesis by(induction A) (simp_all add: sorted_insort) |
|
6139 |
next |
|
6140 |
case False thus ?thesis by simp |
|
6141 |
qed |
|
6142 |
||
6143 |
lemma distinct_sorted_list_of_set [simp]: "distinct (sorted_list_of_set A)" |
|
6144 |
proof (cases "finite A") |
|
6145 |
case True thus ?thesis by(induction A) (simp_all add: distinct_insort) |
|
6146 |
next |
|
6147 |
case False thus ?thesis by simp |
|
6148 |
qed |
|
52122 | 6149 |
|
71860 | 6150 |
lemma length_sorted_list_of_set [simp]: "length (sorted_list_of_set A) = card A" |
6151 |
proof (cases "finite A") |
|
6152 |
case True |
|
6153 |
then show ?thesis |
|
6154 |
by(metis distinct_card distinct_sorted_list_of_set set_sorted_list_of_set) |
|
6155 |
qed auto |
|
71855 | 6156 |
|
68085 | 6157 |
lemmas sorted_list_of_set = set_sorted_list_of_set sorted_sorted_list_of_set distinct_sorted_list_of_set |
6158 |
||
47841 | 6159 |
lemma sorted_list_of_set_sort_remdups [code]: |
35195 | 6160 |
"sorted_list_of_set (set xs) = sort (remdups xs)" |
6161 |
proof - |
|
42871
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
haftmann
parents:
42809
diff
changeset
|
6162 |
interpret comp_fun_commute insort by (fact comp_fun_commute_insort) |
51489 | 6163 |
show ?thesis by (simp add: sorted_list_of_set.eq_fold sort_conv_fold fold_set_fold_remdups) |
35195 | 6164 |
qed |
25069 | 6165 |
|
37107 | 6166 |
lemma sorted_list_of_set_remove: |
6167 |
assumes "finite A" |
|
6168 |
shows "sorted_list_of_set (A - {x}) = remove1 x (sorted_list_of_set A)" |
|
6169 |
proof (cases "x \<in> A") |
|
6170 |
case False with assms have "x \<notin> set (sorted_list_of_set A)" by simp |
|
6171 |
with False show ?thesis by (simp add: remove1_idem) |
|
6172 |
next |
|
6173 |
case True then obtain B where A: "A = insert x B" by (rule Set.set_insert) |
|
6174 |
with assms show ?thesis by simp |
|
6175 |
qed |
|
6176 |
||
71404
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
6177 |
lemma strict_sorted_list_of_set [simp]: "strict_sorted (sorted_list_of_set A)" |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
6178 |
by (simp add: strict_sorted_iff) |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
6179 |
|
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
6180 |
lemma finite_set_strict_sorted: |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
6181 |
assumes "finite A" |
71860 | 6182 |
obtains l where "strict_sorted l" "set l = A" "length l = card A" |
71404
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
6183 |
by (metis assms distinct_card distinct_sorted_list_of_set set_sorted_list_of_set strict_sorted_list_of_set) |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
6184 |
|
71827 | 6185 |
lemma strict_sorted_equal: |
6186 |
assumes "strict_sorted xs" |
|
6187 |
and "strict_sorted ys" |
|
71860 | 6188 |
and "set ys = set xs" |
71827 | 6189 |
shows "ys = xs" |
6190 |
using assms |
|
6191 |
proof (induction xs arbitrary: ys) |
|
6192 |
case (Cons x xs) |
|
6193 |
show ?case |
|
6194 |
proof (cases ys) |
|
6195 |
case Nil |
|
6196 |
then show ?thesis |
|
6197 |
using Cons.prems by auto |
|
6198 |
next |
|
6199 |
case (Cons y ys') |
|
6200 |
then have "xs = ys'" |
|
6201 |
by (metis Cons.prems list.inject sorted_distinct_set_unique strict_sorted_iff) |
|
6202 |
moreover have "x = y" |
|
6203 |
using Cons.prems \<open>xs = ys'\<close> local.Cons by fastforce |
|
6204 |
ultimately show ?thesis |
|
6205 |
using local.Cons by blast |
|
6206 |
qed |
|
6207 |
qed auto |
|
6208 |
||
71860 | 6209 |
lemma strict_sorted_equal_Uniq: "\<exists>\<^sub>\<le>\<^sub>1xs. strict_sorted xs \<and> set xs = A" |
71827 | 6210 |
by (simp add: Uniq_def strict_sorted_equal) |
6211 |
||
71857
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6212 |
lemma sorted_list_of_set_inject: |
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6213 |
assumes "sorted_list_of_set A = sorted_list_of_set B" "finite A" "finite B" |
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6214 |
shows "A = B" |
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6215 |
using assms set_sorted_list_of_set by fastforce |
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6216 |
|
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6217 |
lemma sorted_list_of_set_unique: |
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6218 |
assumes "finite A" |
71860 | 6219 |
shows "strict_sorted l \<and> set l = A \<and> length l = card A \<longleftrightarrow> sorted_list_of_set A = l" |
71857
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6220 |
using assms strict_sorted_equal by force |
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6221 |
|
71860 | 6222 |
end |
6223 |
||
6224 |
lemma sorted_list_of_set_range [simp]: |
|
6225 |
"sorted_list_of_set {m..<n} = [m..<n]" |
|
6226 |
by (rule sorted_distinct_set_unique) simp_all |
|
71857
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6227 |
|
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6228 |
lemma sorted_list_of_set_lessThan_Suc [simp]: |
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6229 |
"sorted_list_of_set {..<Suc k} = sorted_list_of_set {..<k} @ [k]" |
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6230 |
proof - |
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6231 |
have "sorted_wrt (<) (sorted_list_of_set {..<k} @ [k])" |
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6232 |
unfolding sorted_wrt_append by (auto simp flip: strict_sorted_sorted_wrt) |
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6233 |
then show ?thesis |
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6234 |
by (simp add: lessThan_atLeast0) |
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6235 |
qed |
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6236 |
|
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6237 |
lemma sorted_list_of_set_atMost_Suc [simp]: |
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6238 |
"sorted_list_of_set {..Suc k} = sorted_list_of_set {..k} @ [Suc k]" |
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6239 |
using lessThan_Suc_atMost sorted_list_of_set_lessThan_Suc by fastforce |
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6240 |
|
72095
cfb6c22a5636
lemmas about sets and the enumerate operator
paulson <lp15@cam.ac.uk>
parents:
71991
diff
changeset
|
6241 |
lemma sorted_list_of_set_nonempty: |
cfb6c22a5636
lemmas about sets and the enumerate operator
paulson <lp15@cam.ac.uk>
parents:
71991
diff
changeset
|
6242 |
assumes "finite A" "A \<noteq> {}" |
cfb6c22a5636
lemmas about sets and the enumerate operator
paulson <lp15@cam.ac.uk>
parents:
71991
diff
changeset
|
6243 |
shows "sorted_list_of_set A = Min A # sorted_list_of_set (A - {Min A})" |
cfb6c22a5636
lemmas about sets and the enumerate operator
paulson <lp15@cam.ac.uk>
parents:
71991
diff
changeset
|
6244 |
using assms by (auto simp: less_le simp flip: sorted_list_of_set_unique intro: Min_in) |
cfb6c22a5636
lemmas about sets and the enumerate operator
paulson <lp15@cam.ac.uk>
parents:
71991
diff
changeset
|
6245 |
|
71857
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6246 |
lemma sorted_list_of_set_greaterThanLessThan: |
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6247 |
assumes "Suc i < j" |
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6248 |
shows "sorted_list_of_set {i<..<j} = Suc i # sorted_list_of_set {Suc i<..<j}" |
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6249 |
proof - |
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6250 |
have "{i<..<j} = insert (Suc i) {Suc i<..<j}" |
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6251 |
using assms by auto |
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6252 |
then show ?thesis |
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6253 |
by (metis assms atLeastSucLessThan_greaterThanLessThan sorted_list_of_set_range upt_conv_Cons) |
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6254 |
qed |
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6255 |
|
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6256 |
lemma sorted_list_of_set_greaterThanAtMost: |
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6257 |
assumes "Suc i \<le> j" |
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6258 |
shows "sorted_list_of_set {i<..j} = Suc i # sorted_list_of_set {Suc i<..j}" |
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6259 |
using sorted_list_of_set_greaterThanLessThan [of i "Suc j"] |
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6260 |
by (metis assms greaterThanAtMost_def greaterThanLessThan_eq le_imp_less_Suc lessThan_Suc_atMost) |
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6261 |
|
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6262 |
lemma nth_sorted_list_of_set_greaterThanLessThan: |
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6263 |
"n < j - Suc i \<Longrightarrow> sorted_list_of_set {i<..<j} ! n = Suc (i+n)" |
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6264 |
by (induction n arbitrary: i) (auto simp: sorted_list_of_set_greaterThanLessThan) |
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6265 |
|
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6266 |
lemma nth_sorted_list_of_set_greaterThanAtMost: |
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6267 |
"n < j - i \<Longrightarrow> sorted_list_of_set {i<..j} ! n = Suc (i+n)" |
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6268 |
using nth_sorted_list_of_set_greaterThanLessThan [of n "Suc j" i] |
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6269 |
by (simp add: greaterThanAtMost_def greaterThanLessThan_eq lessThan_Suc_atMost) |
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6270 |
|
d73955442df5
a few new lemmas about functions
paulson <lp15@cam.ac.uk>
parents:
71856
diff
changeset
|
6271 |
|
61799 | 6272 |
subsubsection \<open>\<open>lists\<close>: the list-forming operator over sets\<close> |
15302 | 6273 |
|
23740 | 6274 |
inductive_set |
22262 | 6275 |
lists :: "'a set => 'a list set" |
23740 | 6276 |
for A :: "'a set" |
6277 |
where |
|
67613 | 6278 |
Nil [intro!, simp]: "[] \<in> lists A" |
6279 |
| Cons [intro!, simp]: "\<lbrakk>a \<in> A; l \<in> lists A\<rbrakk> \<Longrightarrow> a#l \<in> lists A" |
|
6280 |
||
6281 |
inductive_cases listsE [elim!]: "x#l \<in> lists A" |
|
54147
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
blanchet
parents:
53954
diff
changeset
|
6282 |
inductive_cases listspE [elim!]: "listsp A (x # l)" |
23740 | 6283 |
|
46313 | 6284 |
inductive_simps listsp_simps[code]: |
6285 |
"listsp A []" |
|
6286 |
"listsp A (x # xs)" |
|
6287 |
||
71585 | 6288 |
lemma listsp_mono [mono]: "A \<le> B \<Longrightarrow> listsp A \<le> listsp B" |
46884 | 6289 |
by (rule predicate1I, erule listsp.induct, blast+) |
26795
a27607030a1c
- Explicitely applied predicate1I in a few proofs, because it is no longer
berghofe
parents:
26771
diff
changeset
|
6290 |
|
46176
1898e61e89c4
pred_subset/equals_eq are now standard pred_set_conv rules
berghofe
parents:
46156
diff
changeset
|
6291 |
lemmas lists_mono = listsp_mono [to_set] |
22262 | 6292 |
|
22422
ee19cdb07528
stepping towards uniform lattice theory development in HOL
haftmann
parents:
22262
diff
changeset
|
6293 |
lemma listsp_infI: |
71585 | 6294 |
assumes l: "listsp A l" shows "listsp B l \<Longrightarrow> listsp (inf A B) l" using l |
24349 | 6295 |
by induct blast+ |
15302 | 6296 |
|
22422
ee19cdb07528
stepping towards uniform lattice theory development in HOL
haftmann
parents:
22262
diff
changeset
|
6297 |
lemmas lists_IntI = listsp_infI [to_set] |
ee19cdb07528
stepping towards uniform lattice theory development in HOL
haftmann
parents:
22262
diff
changeset
|
6298 |
|
ee19cdb07528
stepping towards uniform lattice theory development in HOL
haftmann
parents:
22262
diff
changeset
|
6299 |
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
|
6300 |
proof (rule mono_inf [where f=listsp, THEN order_antisym]) |
22262 | 6301 |
show "mono listsp" by (simp add: mono_def listsp_mono) |
47397
d654c73e4b12
no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents:
47131
diff
changeset
|
6302 |
show "inf (listsp A) (listsp B) \<le> listsp (inf A B)" by (blast intro!: listsp_infI) |
14388 | 6303 |
qed |
6304 |
||
41075
4bed56dc95fb
primitive definitions of bot/top/inf/sup for bool and fun are named with canonical suffix `_def` rather than `_eq`
haftmann
parents:
40968
diff
changeset
|
6305 |
lemmas listsp_conj_eq [simp] = listsp_inf_eq [simplified inf_fun_def inf_bool_def] |
22422
ee19cdb07528
stepping towards uniform lattice theory development in HOL
haftmann
parents:
22262
diff
changeset
|
6306 |
|
46176
1898e61e89c4
pred_subset/equals_eq are now standard pred_set_conv rules
berghofe
parents:
46156
diff
changeset
|
6307 |
lemmas lists_Int_eq [simp] = listsp_inf_eq [to_set] |
22262 | 6308 |
|
67613 | 6309 |
lemma Cons_in_lists_iff[simp]: "x#xs \<in> lists A \<longleftrightarrow> x \<in> A \<and> xs \<in> lists A" |
39613 | 6310 |
by auto |
6311 |
||
22262 | 6312 |
lemma append_in_listsp_conv [iff]: |
6313 |
"(listsp A (xs @ ys)) = (listsp A xs \<and> listsp A ys)" |
|
15302 | 6314 |
by (induct xs) auto |
6315 |
||
22262 | 6316 |
lemmas append_in_lists_conv [iff] = append_in_listsp_conv [to_set] |
6317 |
||
6318 |
lemma in_listsp_conv_set: "(listsp A xs) = (\<forall>x \<in> set xs. A x)" |
|
61799 | 6319 |
\<comment> \<open>eliminate \<open>listsp\<close> in favour of \<open>set\<close>\<close> |
15302 | 6320 |
by (induct xs) auto |
6321 |
||
46313 | 6322 |
lemmas in_lists_conv_set [code_unfold] = in_listsp_conv_set [to_set] |
22262 | 6323 |
|
71585 | 6324 |
lemma in_listspD [dest!]: "listsp A xs \<Longrightarrow> \<forall>x\<in>set xs. A x" |
22262 | 6325 |
by (rule in_listsp_conv_set [THEN iffD1]) |
6326 |
||
54147
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
blanchet
parents:
53954
diff
changeset
|
6327 |
lemmas in_listsD [dest!] = in_listspD [to_set] |
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
blanchet
parents:
53954
diff
changeset
|
6328 |
|
71585 | 6329 |
lemma in_listspI [intro!]: "\<forall>x\<in>set xs. A x \<Longrightarrow> listsp A xs" |
22262 | 6330 |
by (rule in_listsp_conv_set [THEN iffD2]) |
6331 |
||
54147
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
blanchet
parents:
53954
diff
changeset
|
6332 |
lemmas in_listsI [intro!] = in_listspI [to_set] |
15302 | 6333 |
|
68709 | 6334 |
lemma lists_eq_set: "lists A = {xs. set xs \<le> A}" |
39597 | 6335 |
by auto |
6336 |
||
39613 | 6337 |
lemma lists_empty [simp]: "lists {} = {[]}" |
6338 |
by auto |
|
6339 |
||
15302 | 6340 |
lemma lists_UNIV [simp]: "lists UNIV = UNIV" |
6341 |
by auto |
|
6342 |
||
50134 | 6343 |
lemma lists_image: "lists (f`A) = map f ` lists A" |
6344 |
proof - |
|
6345 |
{ fix xs have "\<forall>x\<in>set xs. x \<in> f ` A \<Longrightarrow> xs \<in> map f ` lists A" |
|
55465 | 6346 |
by (induct xs) (auto simp del: list.map simp add: list.map[symmetric] intro!: imageI) } |
50134 | 6347 |
then show ?thesis by auto |
6348 |
qed |
|
17086 | 6349 |
|
60758 | 6350 |
subsubsection \<open>Inductive definition for membership\<close> |
17086 | 6351 |
|
23740 | 6352 |
inductive ListMem :: "'a \<Rightarrow> 'a list \<Rightarrow> bool" |
22262 | 6353 |
where |
6354 |
elem: "ListMem x (x # xs)" |
|
6355 |
| insert: "ListMem x xs \<Longrightarrow> ListMem x (y # xs)" |
|
6356 |
||
6357 |
lemma ListMem_iff: "(ListMem x xs) = (x \<in> set xs)" |
|
68719 | 6358 |
proof |
6359 |
show "ListMem x xs \<Longrightarrow> x \<in> set xs" |
|
6360 |
by (induct set: ListMem) auto |
|
6361 |
show "x \<in> set xs \<Longrightarrow> ListMem x xs" |
|
6362 |
by (induct xs) (auto intro: ListMem.intros) |
|
6363 |
qed |
|
17086 | 6364 |
|
6365 |
||
60758 | 6366 |
subsubsection \<open>Lists as Cartesian products\<close> |
6367 |
||
61799 | 6368 |
text\<open>\<open>set_Cons A Xs\<close>: the set of lists with head drawn from |
69593 | 6369 |
\<^term>\<open>A\<close> and tail drawn from \<^term>\<open>Xs\<close>.\<close> |
15302 | 6370 |
|
50548 | 6371 |
definition set_Cons :: "'a set \<Rightarrow> 'a list set \<Rightarrow> 'a list set" where |
6372 |
"set_Cons A XS = {z. \<exists>x xs. z = x # xs \<and> x \<in> A \<and> xs \<in> XS}" |
|
15302 | 6373 |
|
17724 | 6374 |
lemma set_Cons_sing_Nil [simp]: "set_Cons A {[]} = (%x. [x])`A" |
15302 | 6375 |
by (auto simp add: set_Cons_def) |
6376 |
||
60758 | 6377 |
text\<open>Yields the set of lists, all of the same length as the argument and |
6378 |
with elements drawn from the corresponding element of the argument.\<close> |
|
15302 | 6379 |
|
50548 | 6380 |
primrec listset :: "'a set list \<Rightarrow> 'a list set" where |
6381 |
"listset [] = {[]}" | |
|
6382 |
"listset (A # As) = set_Cons A (listset As)" |
|
15302 | 6383 |
|
6384 |
||
60758 | 6385 |
subsection \<open>Relations on Lists\<close> |
6386 |
||
6387 |
subsubsection \<open>Length Lexicographic Ordering\<close> |
|
6388 |
||
64963 | 6389 |
text\<open>These orderings preserve well-foundedness: shorter lists |
60758 | 6390 |
precede longer lists. These ordering are not used in dictionaries.\<close> |
64963 | 6391 |
|
61799 | 6392 |
primrec \<comment> \<open>The lexicographic ordering for lists of the specified length\<close> |
34941 | 6393 |
lexn :: "('a \<times> 'a) set \<Rightarrow> nat \<Rightarrow> ('a list \<times> 'a list) set" where |
50548 | 6394 |
"lexn r 0 = {}" | |
6395 |
"lexn r (Suc n) = |
|
55932 | 6396 |
(map_prod (%(x, xs). x#xs) (%(x, xs). x#xs) ` (r <*lex*> lexn r n)) Int |
50548 | 6397 |
{(xs, ys). length xs = Suc n \<and> length ys = Suc n}" |
6398 |
||
6399 |
definition lex :: "('a \<times> 'a) set \<Rightarrow> ('a list \<times> 'a list) set" where |
|
61799 | 6400 |
"lex r = (\<Union>n. lexn r n)" \<comment> \<open>Holds only between lists of the same length\<close> |
50548 | 6401 |
|
6402 |
definition lenlex :: "('a \<times> 'a) set => ('a list \<times> 'a list) set" where |
|
6403 |
"lenlex r = inv_image (less_than <*lex*> lex r) (\<lambda>xs. (length xs, xs))" |
|
61799 | 6404 |
\<comment> \<open>Compares lists by their length and then lexicographically\<close> |
15302 | 6405 |
|
68719 | 6406 |
lemma wf_lexn: assumes "wf r" shows "wf (lexn r n)" |
6407 |
proof (induct n) |
|
6408 |
case (Suc n) |
|
6409 |
have inj: "inj (\<lambda>(x, xs). x # xs)" |
|
6410 |
using assms by (auto simp: inj_on_def) |
|
6411 |
have wf: "wf (map_prod (\<lambda>(x, xs). x # xs) (\<lambda>(x, xs). x # xs) ` (r <*lex*> lexn r n))" |
|
6412 |
by (simp add: Suc.hyps assms wf_lex_prod wf_map_prod_image [OF _ inj]) |
|
6413 |
then show ?case |
|
6414 |
by (rule wf_subset) auto |
|
6415 |
qed auto |
|
15302 | 6416 |
|
6417 |
lemma lexn_length: |
|
67613 | 6418 |
"(xs, ys) \<in> lexn r n \<Longrightarrow> length xs = n \<and> length ys = n" |
71585 | 6419 |
by (induct n arbitrary: xs ys) auto |
6420 |
||
6421 |
lemma wf_lex [intro!]: |
|
6422 |
assumes "wf r" shows "wf (lex r)" |
|
68719 | 6423 |
unfolding lex_def |
71585 | 6424 |
proof (rule wf_UN) |
6425 |
show "wf (lexn r i)" for i |
|
6426 |
by (simp add: assms wf_lexn) |
|
6427 |
show "\<And>i j. lexn r i \<noteq> lexn r j \<Longrightarrow> Domain (lexn r i) \<inter> Range (lexn r j) = {}" |
|
6428 |
by (metis DomainE Int_emptyI RangeE lexn_length) |
|
6429 |
qed |
|
6430 |
||
15302 | 6431 |
lemma lexn_conv: |
15656 | 6432 |
"lexn r n = |
6433 |
{(xs,ys). length xs = n \<and> length ys = n \<and> |
|
72184 | 6434 |
(\<exists>xys x y xs' ys'. xs= xys @ x#xs' \<and> ys= xys @ y # ys' \<and> (x, y) \<in> r)}" |
71585 | 6435 |
proof (induction n) |
6436 |
case (Suc n) |
|
72184 | 6437 |
then show ?case |
6438 |
apply (simp add: image_Collect lex_prod_def, safe, blast) |
|
71585 | 6439 |
apply (rule_tac x = "ab # xys" in exI, simp) |
6440 |
apply (case_tac xys; force) |
|
6441 |
done |
|
6442 |
qed auto |
|
15302 | 6443 |
|
62175 | 6444 |
text\<open>By Mathias Fleury:\<close> |
71435
d8fb621fea02
some lemmas about the lex ordering on lists, etc.
paulson <lp15@cam.ac.uk>
parents:
71423
diff
changeset
|
6445 |
proposition lexn_transI: |
72184 | 6446 |
assumes "trans r" shows "trans (lexn r n)" |
62090 | 6447 |
unfolding trans_def |
6448 |
proof (intro allI impI) |
|
6449 |
fix as bs cs |
|
6450 |
assume asbs: "(as, bs) \<in> lexn r n" and bscs: "(bs, cs) \<in> lexn r n" |
|
6451 |
obtain abs a b as' bs' where |
|
6452 |
n: "length as = n" and "length bs = n" and |
|
6453 |
as: "as = abs @ a # as'" and |
|
6454 |
bs: "bs = abs @ b # bs'" and |
|
72184 | 6455 |
abr: "(a, b) \<in> r" |
62090 | 6456 |
using asbs unfolding lexn_conv by blast |
6457 |
obtain bcs b' c' cs' bs' where |
|
6458 |
n': "length cs = n" and "length bs = n" and |
|
6459 |
bs': "bs = bcs @ b' # bs'" and |
|
6460 |
cs: "cs = bcs @ c' # cs'" and |
|
72184 | 6461 |
b'c'r: "(b', c') \<in> r" |
62090 | 6462 |
using bscs unfolding lexn_conv by blast |
6463 |
consider (le) "length bcs < length abs" |
|
6464 |
| (eq) "length bcs = length abs" |
|
6465 |
| (ge) "length bcs > length abs" by linarith |
|
6466 |
thus "(as, cs) \<in> lexn r n" |
|
6467 |
proof cases |
|
6468 |
let ?k = "length bcs" |
|
6469 |
case le |
|
6470 |
hence "as ! ?k = bs ! ?k" unfolding as bs by (simp add: nth_append) |
|
72184 | 6471 |
hence "(as ! ?k, cs ! ?k) \<in> r" using b'c'r unfolding bs' cs by auto |
62090 | 6472 |
moreover |
6473 |
have "length bcs < length as" using le unfolding as by simp |
|
6474 |
from id_take_nth_drop[OF this] |
|
6475 |
have "as = take ?k as @ as ! ?k # drop (Suc ?k) as" . |
|
6476 |
moreover |
|
6477 |
have "length bcs < length cs" unfolding cs by simp |
|
6478 |
from id_take_nth_drop[OF this] |
|
6479 |
have "cs = take ?k cs @ cs ! ?k # drop (Suc ?k) cs" . |
|
6480 |
moreover have "take ?k as = take ?k cs" |
|
6481 |
using le arg_cong[OF bs, of "take (length bcs)"] |
|
6482 |
unfolding cs as bs' by auto |
|
72184 | 6483 |
ultimately show ?thesis using n n' unfolding lexn_conv by auto |
62090 | 6484 |
next |
6485 |
let ?k = "length abs" |
|
6486 |
case ge |
|
6487 |
hence "bs ! ?k = cs ! ?k" unfolding bs' cs by (simp add: nth_append) |
|
72184 | 6488 |
hence "(as ! ?k, cs ! ?k) \<in> r" using abr unfolding as bs by auto |
62090 | 6489 |
moreover |
6490 |
have "length abs < length as" using ge unfolding as by simp |
|
6491 |
from id_take_nth_drop[OF this] |
|
6492 |
have "as = take ?k as @ as ! ?k # drop (Suc ?k) as" . |
|
6493 |
moreover have "length abs < length cs" using n n' unfolding as by simp |
|
6494 |
from id_take_nth_drop[OF this] |
|
6495 |
have "cs = take ?k cs @ cs ! ?k # drop (Suc ?k) cs" . |
|
6496 |
moreover have "take ?k as = take ?k cs" |
|
6497 |
using ge arg_cong[OF bs', of "take (length abs)"] |
|
6498 |
unfolding cs as bs by auto |
|
6499 |
ultimately show ?thesis using n n' unfolding lexn_conv by auto |
|
6500 |
next |
|
6501 |
let ?k = "length abs" |
|
6502 |
case eq |
|
63540 | 6503 |
hence *: "abs = bcs" "b = b'" using bs bs' by auto |
72184 | 6504 |
hence "(a, c') \<in> r" |
6505 |
using abr b'c'r assms unfolding trans_def by blast |
|
6506 |
with * show ?thesis using n n' unfolding lexn_conv as bs cs by auto |
|
62090 | 6507 |
qed |
6508 |
qed |
|
6509 |
||
71435
d8fb621fea02
some lemmas about the lex ordering on lists, etc.
paulson <lp15@cam.ac.uk>
parents:
71423
diff
changeset
|
6510 |
corollary lex_transI: |
72184 | 6511 |
assumes "trans r" shows "trans (lex r)" |
71435
d8fb621fea02
some lemmas about the lex ordering on lists, etc.
paulson <lp15@cam.ac.uk>
parents:
71423
diff
changeset
|
6512 |
using lexn_transI [OF assms] |
d8fb621fea02
some lemmas about the lex ordering on lists, etc.
paulson <lp15@cam.ac.uk>
parents:
71423
diff
changeset
|
6513 |
by (clarsimp simp add: lex_def trans_def) (metis lexn_length) |
d8fb621fea02
some lemmas about the lex ordering on lists, etc.
paulson <lp15@cam.ac.uk>
parents:
71423
diff
changeset
|
6514 |
|
15302 | 6515 |
lemma lex_conv: |
15656 | 6516 |
"lex r = |
6517 |
{(xs,ys). length xs = length ys \<and> |
|
72184 | 6518 |
(\<exists>xys x y xs' ys'. xs = xys @ x # xs' \<and> ys = xys @ y # ys' \<and> (x, y) \<in> r)}" |
15302 | 6519 |
by (force simp add: lex_def lexn_conv) |
6520 |
||
71585 | 6521 |
lemma wf_lenlex [intro!]: "wf r \<Longrightarrow> wf (lenlex r)" |
15693 | 6522 |
by (unfold lenlex_def) blast |
6523 |
||
6524 |
lemma lenlex_conv: |
|
67091 | 6525 |
"lenlex r = {(xs,ys). length xs < length ys \<or> |
6526 |
length xs = length ys \<and> (xs, ys) \<in> lex r}" |
|
72164
b7c54ff7f2dd
S Holub's proposed generalisation of the lexicographic product of two orderings
paulson <lp15@cam.ac.uk>
parents:
72095
diff
changeset
|
6527 |
by (auto simp add: lenlex_def Id_on_def lex_prod_def inv_image_def) |
15302 | 6528 |
|
71404
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
6529 |
lemma total_lenlex: |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
6530 |
assumes "total r" |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
6531 |
shows "total (lenlex r)" |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
6532 |
proof - |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
6533 |
have "(xs,ys) \<in> lexn r (length xs) \<or> (ys,xs) \<in> lexn r (length xs)" |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
6534 |
if "xs \<noteq> ys" and len: "length xs = length ys" for xs ys |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
6535 |
proof - |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
6536 |
obtain pre x xs' y ys' where "x\<noteq>y" and xs: "xs = pre @ [x] @ xs'" and ys: "ys = pre @ [y] @ys'" |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
6537 |
by (meson len \<open>xs \<noteq> ys\<close> same_length_different) |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
6538 |
then consider "(x,y) \<in> r" | "(y,x) \<in> r" |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
6539 |
by (meson UNIV_I assms total_on_def) |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
6540 |
then show ?thesis |
72184 | 6541 |
by cases (use len in \<open>(force simp add: lexn_conv xs ys)+\<close>) |
71404
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
6542 |
qed |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
6543 |
then show ?thesis |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
6544 |
by (fastforce simp: lenlex_def total_on_def lex_def) |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
6545 |
qed |
f2b783abfbe7
A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents:
71393
diff
changeset
|
6546 |
|
72184 | 6547 |
lemma lenlex_transI [intro]: "trans r \<Longrightarrow> trans (lenlex r)" |
71435
d8fb621fea02
some lemmas about the lex ordering on lists, etc.
paulson <lp15@cam.ac.uk>
parents:
71423
diff
changeset
|
6548 |
unfolding lenlex_def |
72184 | 6549 |
by (meson lex_transI trans_inv_image trans_less_than trans_lex_prod) |
71435
d8fb621fea02
some lemmas about the lex ordering on lists, etc.
paulson <lp15@cam.ac.uk>
parents:
71423
diff
changeset
|
6550 |
|
15302 | 6551 |
lemma Nil_notin_lex [iff]: "([], ys) \<notin> lex r" |
71585 | 6552 |
by (simp add: lex_conv) |
15302 | 6553 |
|
6554 |
lemma Nil2_notin_lex [iff]: "(xs, []) \<notin> lex r" |
|
71585 | 6555 |
by (simp add:lex_conv) |
15302 | 6556 |
|
18447 | 6557 |
lemma Cons_in_lex [simp]: |
72184 | 6558 |
"(x # xs, y # ys) \<in> lex r \<longleftrightarrow> (x, y) \<in> r \<and> length xs = length ys \<or> x = y \<and> (xs, ys) \<in> lex r" |
6559 |
(is "?lhs = ?rhs") |
|
71585 | 6560 |
proof |
6561 |
assume ?lhs then show ?rhs |
|
6562 |
by (simp add: lex_conv) (metis hd_append list.sel(1) list.sel(3) tl_append2) |
|
6563 |
next |
|
6564 |
assume ?rhs then show ?lhs |
|
6565 |
by (simp add: lex_conv) (blast intro: Cons_eq_appendI) |
|
6566 |
qed |
|
66502 | 6567 |
|
71435
d8fb621fea02
some lemmas about the lex ordering on lists, etc.
paulson <lp15@cam.ac.uk>
parents:
71423
diff
changeset
|
6568 |
lemma Nil_lenlex_iff1 [simp]: "([], ns) \<in> lenlex r \<longleftrightarrow> ns \<noteq> []" |
d8fb621fea02
some lemmas about the lex ordering on lists, etc.
paulson <lp15@cam.ac.uk>
parents:
71423
diff
changeset
|
6569 |
and Nil_lenlex_iff2 [simp]: "(ns,[]) \<notin> lenlex r" |
d8fb621fea02
some lemmas about the lex ordering on lists, etc.
paulson <lp15@cam.ac.uk>
parents:
71423
diff
changeset
|
6570 |
by (auto simp: lenlex_def) |
d8fb621fea02
some lemmas about the lex ordering on lists, etc.
paulson <lp15@cam.ac.uk>
parents:
71423
diff
changeset
|
6571 |
|
d8fb621fea02
some lemmas about the lex ordering on lists, etc.
paulson <lp15@cam.ac.uk>
parents:
71423
diff
changeset
|
6572 |
lemma Cons_lenlex_iff: |
d8fb621fea02
some lemmas about the lex ordering on lists, etc.
paulson <lp15@cam.ac.uk>
parents:
71423
diff
changeset
|
6573 |
"((m # ms, n # ns) \<in> lenlex r) \<longleftrightarrow> |
d8fb621fea02
some lemmas about the lex ordering on lists, etc.
paulson <lp15@cam.ac.uk>
parents:
71423
diff
changeset
|
6574 |
length ms < length ns |
72184 | 6575 |
\<or> length ms = length ns \<and> (m,n) \<in> r |
71435
d8fb621fea02
some lemmas about the lex ordering on lists, etc.
paulson <lp15@cam.ac.uk>
parents:
71423
diff
changeset
|
6576 |
\<or> (m = n \<and> (ms,ns) \<in> lenlex r)" |
d8fb621fea02
some lemmas about the lex ordering on lists, etc.
paulson <lp15@cam.ac.uk>
parents:
71423
diff
changeset
|
6577 |
by (auto simp: lenlex_def) |
d8fb621fea02
some lemmas about the lex ordering on lists, etc.
paulson <lp15@cam.ac.uk>
parents:
71423
diff
changeset
|
6578 |
|
71766
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
paulson <lp15@cam.ac.uk>
parents:
71593
diff
changeset
|
6579 |
lemma lenlex_irreflexive: "(\<And>x. (x,x) \<notin> r) \<Longrightarrow> (xs,xs) \<notin> lenlex r" |
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
paulson <lp15@cam.ac.uk>
parents:
71593
diff
changeset
|
6580 |
by (induction xs) (auto simp add: Cons_lenlex_iff) |
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
paulson <lp15@cam.ac.uk>
parents:
71593
diff
changeset
|
6581 |
|
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
paulson <lp15@cam.ac.uk>
parents:
71593
diff
changeset
|
6582 |
lemma lenlex_trans: |
72184 | 6583 |
"\<lbrakk>(x,y) \<in> lenlex r; (y,z) \<in> lenlex r; trans r\<rbrakk> \<Longrightarrow> (x,z) \<in> lenlex r" |
71766
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
paulson <lp15@cam.ac.uk>
parents:
71593
diff
changeset
|
6584 |
by (meson lenlex_transI transD) |
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
paulson <lp15@cam.ac.uk>
parents:
71593
diff
changeset
|
6585 |
|
71435
d8fb621fea02
some lemmas about the lex ordering on lists, etc.
paulson <lp15@cam.ac.uk>
parents:
71423
diff
changeset
|
6586 |
lemma lenlex_length: "(ms, ns) \<in> lenlex r \<Longrightarrow> length ms \<le> length ns" |
d8fb621fea02
some lemmas about the lex ordering on lists, etc.
paulson <lp15@cam.ac.uk>
parents:
71423
diff
changeset
|
6587 |
by (auto simp: lenlex_def) |
d8fb621fea02
some lemmas about the lex ordering on lists, etc.
paulson <lp15@cam.ac.uk>
parents:
71423
diff
changeset
|
6588 |
|
66502 | 6589 |
lemma lex_append_rightI: |
6590 |
"(xs, ys) \<in> lex r \<Longrightarrow> length vs = length us \<Longrightarrow> (xs @ us, ys @ vs) \<in> lex r" |
|
71585 | 6591 |
by (fastforce simp: lex_def lexn_conv) |
66502 | 6592 |
|
6593 |
lemma lex_append_leftI: |
|
6594 |
"(ys, zs) \<in> lex r \<Longrightarrow> (xs @ ys, xs @ zs) \<in> lex r" |
|
71585 | 6595 |
by (induct xs) auto |
66502 | 6596 |
|
6597 |
lemma lex_append_leftD: |
|
6598 |
"\<forall>x. (x,x) \<notin> r \<Longrightarrow> (xs @ ys, xs @ zs) \<in> lex r \<Longrightarrow> (ys, zs) \<in> lex r" |
|
71585 | 6599 |
by (induct xs) auto |
66502 | 6600 |
|
6601 |
lemma lex_append_left_iff: |
|
6602 |
"\<forall>x. (x,x) \<notin> r \<Longrightarrow> (xs @ ys, xs @ zs) \<in> lex r \<longleftrightarrow> (ys, zs) \<in> lex r" |
|
71585 | 6603 |
by(metis lex_append_leftD lex_append_leftI) |
66502 | 6604 |
|
6605 |
lemma lex_take_index: |
|
6606 |
assumes "(xs, ys) \<in> lex r" |
|
71585 | 6607 |
obtains i where "i < length xs" and "i < length ys" and "take i xs = take i ys" |
66502 | 6608 |
and "(xs ! i, ys ! i) \<in> r" |
6609 |
proof - |
|
6610 |
obtain n us x xs' y ys' where "(xs, ys) \<in> lexn r n" and "length xs = n" and "length ys = n" |
|
6611 |
and "xs = us @ x # xs'" and "ys = us @ y # ys'" and "(x, y) \<in> r" |
|
6612 |
using assms by (fastforce simp: lex_def lexn_conv) |
|
6613 |
then show ?thesis by (intro that [of "length us"]) auto |
|
6614 |
qed |
|
15302 | 6615 |
|
71848
3c7852327787
A few new theorems, plus some tidying up
paulson <lp15@cam.ac.uk>
parents:
71827
diff
changeset
|
6616 |
lemma irrefl_lex: "irrefl r \<Longrightarrow> irrefl (lex r)" |
3c7852327787
A few new theorems, plus some tidying up
paulson <lp15@cam.ac.uk>
parents:
71827
diff
changeset
|
6617 |
by (meson irrefl_def lex_take_index) |
3c7852327787
A few new theorems, plus some tidying up
paulson <lp15@cam.ac.uk>
parents:
71827
diff
changeset
|
6618 |
|
72095
cfb6c22a5636
lemmas about sets and the enumerate operator
paulson <lp15@cam.ac.uk>
parents:
71991
diff
changeset
|
6619 |
lemma lexl_not_refl [simp]: "irrefl r \<Longrightarrow> (x,x) \<notin> lex r" |
cfb6c22a5636
lemmas about sets and the enumerate operator
paulson <lp15@cam.ac.uk>
parents:
71991
diff
changeset
|
6620 |
by (meson irrefl_def lex_take_index) |
cfb6c22a5636
lemmas about sets and the enumerate operator
paulson <lp15@cam.ac.uk>
parents:
71991
diff
changeset
|
6621 |
|
71848
3c7852327787
A few new theorems, plus some tidying up
paulson <lp15@cam.ac.uk>
parents:
71827
diff
changeset
|
6622 |
|
60758 | 6623 |
subsubsection \<open>Lexicographic Ordering\<close> |
6624 |
||
6625 |
text \<open>Classical lexicographic ordering on lists, ie. "a" < "ab" < "b". |
|
15656 | 6626 |
This ordering does \emph{not} preserve well-foundedness. |
64963 | 6627 |
Author: N. Voelker, March 2005.\<close> |
15656 | 6628 |
|
50548 | 6629 |
definition lexord :: "('a \<times> 'a) set \<Rightarrow> ('a list \<times> 'a list) set" where |
6630 |
"lexord r = {(x,y). \<exists> a v. y = x @ a # v \<or> |
|
72184 | 6631 |
(\<exists> u a b v w. (a,b) \<in> r \<and> x = u @ (a # v) \<and> y = u @ (b # w))}" |
15656 | 6632 |
|
6633 |
lemma lexord_Nil_left[simp]: "([],y) \<in> lexord r = (\<exists> a x. y = a # x)" |
|
72184 | 6634 |
by (unfold lexord_def, induct_tac y, auto) |
15656 | 6635 |
|
6636 |
lemma lexord_Nil_right[simp]: "(x,[]) \<notin> lexord r" |
|
72184 | 6637 |
by (unfold lexord_def, induct_tac x, auto) |
15656 | 6638 |
|
6639 |
lemma lexord_cons_cons[simp]: |
|
72184 | 6640 |
"(a # x, b # y) \<in> lexord r \<longleftrightarrow> (a,b)\<in> r \<or> (a = b \<and> (x,y)\<in> lexord r)" (is "?lhs = ?rhs") |
71585 | 6641 |
proof |
6642 |
assume ?lhs |
|
6643 |
then show ?rhs |
|
6644 |
apply (simp add: lexord_def) |
|
68719 | 6645 |
apply (metis hd_append list.sel(1) list.sel(3) tl_append2) |
71585 | 6646 |
done |
72184 | 6647 |
qed (auto simp add: lexord_def; (blast | meson Cons_eq_appendI)) |
15656 | 6648 |
|
6649 |
lemmas lexord_simps = lexord_Nil_left lexord_Nil_right lexord_cons_cons |
|
6650 |
||
73018 | 6651 |
lemma lexord_same_pref_iff: |
6652 |
"(xs @ ys, xs @ zs) \<in> lexord r \<longleftrightarrow> (\<exists>x \<in> set xs. (x,x) \<in> r) \<or> (ys, zs) \<in> lexord r" |
|
6653 |
by(induction xs) auto |
|
6654 |
||
6655 |
lemma lexord_same_pref_if_irrefl[simp]: |
|
6656 |
"irrefl r \<Longrightarrow> (xs @ ys, xs @ zs) \<in> lexord r \<longleftrightarrow> (ys, zs) \<in> lexord r" |
|
6657 |
by (simp add: irrefl_def lexord_same_pref_iff) |
|
6658 |
||
15656 | 6659 |
lemma lexord_append_rightI: "\<exists> b z. y = b # z \<Longrightarrow> (x, x @ y) \<in> lexord r" |
73018 | 6660 |
by (metis append_Nil2 lexord_Nil_left lexord_same_pref_iff) |
15656 | 6661 |
|
6662 |
lemma lexord_append_left_rightI: |
|
72184 | 6663 |
"(a,b) \<in> r \<Longrightarrow> (u @ a # x, u @ b # y) \<in> lexord r" |
73018 | 6664 |
by (simp add: lexord_same_pref_iff) |
6665 |
||
6666 |
lemma lexord_append_leftI: "(u,v) \<in> lexord r \<Longrightarrow> (x @ u, x @ v) \<in> lexord r" |
|
6667 |
by (simp add: lexord_same_pref_iff) |
|
15656 | 6668 |
|
6669 |
lemma lexord_append_leftD: |
|
71585 | 6670 |
"\<lbrakk>(x @ u, x @ v) \<in> lexord r; (\<forall>a. (a,a) \<notin> r) \<rbrakk> \<Longrightarrow> (u,v) \<in> lexord r" |
73018 | 6671 |
by (simp add: lexord_same_pref_iff) |
15656 | 6672 |
|
64963 | 6673 |
lemma lexord_take_index_conv: |
67091 | 6674 |
"((x,y) \<in> lexord r) = |
64963 | 6675 |
((length x < length y \<and> take (length x) y = x) \<or> |
72184 | 6676 |
(\<exists>i. i < min(length x)(length y) \<and> take i x = take i y \<and> (x!i,y!i) \<in> r))" |
71585 | 6677 |
proof - |
6678 |
have "(\<exists>a v. y = x @ a # v) = (length x < length y \<and> take (length x) y = x)" |
|
6679 |
by (metis Cons_nth_drop_Suc append_eq_conv_conj drop_all list.simps(3) not_le) |
|
6680 |
moreover |
|
72184 | 6681 |
have "(\<exists>u a b. (a, b) \<in> r \<and> (\<exists>v. x = u @ a # v) \<and> (\<exists>w. y = u @ b # w)) = |
6682 |
(\<exists>i<length x. i < length y \<and> take i x = take i y \<and> (x ! i, y ! i) \<in> r)" |
|
71585 | 6683 |
apply safe |
6684 |
using less_iff_Suc_add apply auto[1] |
|
6685 |
by (metis id_take_nth_drop) |
|
6686 |
ultimately show ?thesis |
|
6687 |
by (auto simp: lexord_def Let_def) |
|
6688 |
qed |
|
64963 | 6689 |
|
6690 |
\<comment> \<open>lexord is extension of partial ordering List.lex\<close> |
|
41986 | 6691 |
lemma lexord_lex: "(x,y) \<in> lex r = ((x,y) \<in> lexord r \<and> length x = length y)" |
68719 | 6692 |
proof (induction x arbitrary: y) |
6693 |
case (Cons a x y) then show ?case |
|
6694 |
by (cases y) (force+) |
|
6695 |
qed auto |
|
15656 | 6696 |
|
73018 | 6697 |
lemma lexord_sufI: |
6698 |
assumes "(u,w) \<in> lexord r" "length w \<le> length u" |
|
6699 |
shows "(u@v,w@z) \<in> lexord r" |
|
6700 |
proof- |
|
6701 |
from leD[OF assms(2)] assms(1)[unfolded lexord_take_index_conv[of u w r] min_absorb2[OF assms(2)]] |
|
6702 |
obtain i where "take i u = take i w" and "(u!i,w!i) \<in> r" and "i < length w" |
|
6703 |
by blast |
|
6704 |
hence "((u@v)!i, (w@z)!i) \<in> r" |
|
6705 |
unfolding nth_append using less_le_trans[OF \<open>i < length w\<close> assms(2)] \<open>(u!i,w!i) \<in> r\<close> |
|
6706 |
by presburger |
|
6707 |
moreover have "i < min (length (u@v)) (length (w@z))" |
|
6708 |
using assms(2) \<open>i < length w\<close> by simp |
|
6709 |
moreover have "take i (u@v) = take i (w@z)" |
|
6710 |
using assms(2) \<open>i < length w\<close> \<open>take i u = take i w\<close> by simp |
|
6711 |
ultimately show ?thesis |
|
6712 |
using lexord_take_index_conv by blast |
|
6713 |
qed |
|
6714 |
||
6715 |
lemma lexord_sufE: |
|
6716 |
assumes "(xs@zs,ys@qs) \<in> lexord r" "xs \<noteq> ys" "length xs = length ys" "length zs = length qs" |
|
6717 |
shows "(xs,ys) \<in> lexord r" |
|
6718 |
proof- |
|
6719 |
obtain i where "i < length (xs@zs)" and "i < length (ys@qs)" and "take i (xs@zs) = take i (ys@qs)" |
|
6720 |
and "((xs@zs) ! i, (ys@qs) ! i) \<in> r" |
|
6721 |
using assms(1) lex_take_index[unfolded lexord_lex,of "xs @ zs" "ys @ qs" r] |
|
6722 |
length_append[of xs zs, unfolded assms(3,4), folded length_append[of ys qs]] |
|
6723 |
by blast |
|
6724 |
have "length (take i xs) = length (take i ys)" |
|
6725 |
by (simp add: assms(3)) |
|
6726 |
have "i < length xs" |
|
6727 |
using assms(2,3) le_less_linear take_all[of xs i] take_all[of ys i] |
|
6728 |
\<open>take i (xs @ zs) = take i (ys @ qs)\<close> append_eq_append_conv take_append |
|
6729 |
by metis |
|
6730 |
hence "(xs ! i, ys ! i) \<in> r" |
|
6731 |
using \<open>((xs @ zs) ! i, (ys @ qs) ! i) \<in> r\<close> assms(3) by (simp add: nth_append) |
|
6732 |
moreover have "take i xs = take i ys" |
|
6733 |
using assms(3) \<open>take i (xs @ zs) = take i (ys @ qs)\<close> by auto |
|
6734 |
ultimately show ?thesis |
|
6735 |
unfolding lexord_take_index_conv using \<open>i < length xs\<close> assms(3) by fastforce |
|
6736 |
qed |
|
6737 |
||
67091 | 6738 |
lemma lexord_irreflexive: "\<forall>x. (x,x) \<notin> r \<Longrightarrow> (xs,xs) \<notin> lexord r" |
72184 | 6739 |
by (induct xs) auto |
41986 | 6740 |
|
60758 | 6741 |
text\<open>By Ren\'e Thiemann:\<close> |
64963 | 6742 |
lemma lexord_partial_trans: |
41986 | 6743 |
"(\<And>x y z. x \<in> set xs \<Longrightarrow> (x,y) \<in> r \<Longrightarrow> (y,z) \<in> r \<Longrightarrow> (x,z) \<in> r) |
6744 |
\<Longrightarrow> (xs,ys) \<in> lexord r \<Longrightarrow> (ys,zs) \<in> lexord r \<Longrightarrow> (xs,zs) \<in> lexord r" |
|
6745 |
proof (induct xs arbitrary: ys zs) |
|
6746 |
case Nil |
|
6747 |
from Nil(3) show ?case unfolding lexord_def by (cases zs, auto) |
|
6748 |
next |
|
6749 |
case (Cons x xs yys zzs) |
|
6750 |
from Cons(3) obtain y ys where yys: "yys = y # ys" unfolding lexord_def |
|
6751 |
by (cases yys, auto) |
|
6752 |
note Cons = Cons[unfolded yys] |
|
72184 | 6753 |
from Cons(3) have one: "(x,y) \<in> r \<or> x = y \<and> (xs,ys) \<in> lexord r" by auto |
41986 | 6754 |
from Cons(4) obtain z zs where zzs: "zzs = z # zs" unfolding lexord_def |
6755 |
by (cases zzs, auto) |
|
6756 |
note Cons = Cons[unfolded zzs] |
|
72184 | 6757 |
from Cons(4) have two: "(y,z) \<in> r \<or> y = z \<and> (ys,zs) \<in> lexord r" by auto |
41986 | 6758 |
{ |
6759 |
assume "(xs,ys) \<in> lexord r" and "(ys,zs) \<in> lexord r" |
|
6760 |
from Cons(1)[OF _ this] Cons(2) |
|
6761 |
have "(xs,zs) \<in> lexord r" by auto |
|
6762 |
} note ind1 = this |
|
6763 |
{ |
|
6764 |
assume "(x,y) \<in> r" and "(y,z) \<in> r" |
|
6765 |
from Cons(2)[OF _ this] have "(x,z) \<in> r" by auto |
|
6766 |
} note ind2 = this |
|
6767 |
from one two ind1 ind2 |
|
72184 | 6768 |
have "(x,z) \<in> r \<or> x = z \<and> (xs,zs) \<in> lexord r" by blast |
6769 |
thus ?case unfolding zzs by auto |
|
41986 | 6770 |
qed |
15656 | 6771 |
|
64963 | 6772 |
lemma lexord_trans: |
72184 | 6773 |
"\<lbrakk> (x, y) \<in> lexord r; (y, z) \<in> lexord r; trans r \<rbrakk> \<Longrightarrow> (x, z) \<in> lexord r" |
6774 |
by(auto simp: trans_def intro:lexord_partial_trans) |
|
6775 |
||
6776 |
lemma lexord_transI: "trans r \<Longrightarrow> trans (lexord r)" |
|
71935
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
paulson <lp15@cam.ac.uk>
parents:
71860
diff
changeset
|
6777 |
by (meson lexord_trans transI) |
15656 | 6778 |
|
71766
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
paulson <lp15@cam.ac.uk>
parents:
71593
diff
changeset
|
6779 |
lemma total_lexord: "total r \<Longrightarrow> total (lexord r)" |
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
paulson <lp15@cam.ac.uk>
parents:
71593
diff
changeset
|
6780 |
unfolding total_on_def |
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
paulson <lp15@cam.ac.uk>
parents:
71593
diff
changeset
|
6781 |
proof clarsimp |
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
paulson <lp15@cam.ac.uk>
parents:
71593
diff
changeset
|
6782 |
fix x y |
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
paulson <lp15@cam.ac.uk>
parents:
71593
diff
changeset
|
6783 |
assume "\<forall>x y. x \<noteq> y \<longrightarrow> (x, y) \<in> r \<or> (y, x) \<in> r" |
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
paulson <lp15@cam.ac.uk>
parents:
71593
diff
changeset
|
6784 |
and "(x::'a list) \<noteq> y" |
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
paulson <lp15@cam.ac.uk>
parents:
71593
diff
changeset
|
6785 |
and "(y, x) \<notin> lexord r" |
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
paulson <lp15@cam.ac.uk>
parents:
71593
diff
changeset
|
6786 |
then |
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
paulson <lp15@cam.ac.uk>
parents:
71593
diff
changeset
|
6787 |
show "(x, y) \<in> lexord r" |
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
paulson <lp15@cam.ac.uk>
parents:
71593
diff
changeset
|
6788 |
proof (induction x arbitrary: y) |
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
paulson <lp15@cam.ac.uk>
parents:
71593
diff
changeset
|
6789 |
case Nil |
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
paulson <lp15@cam.ac.uk>
parents:
71593
diff
changeset
|
6790 |
then show ?case |
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
paulson <lp15@cam.ac.uk>
parents:
71593
diff
changeset
|
6791 |
by (metis lexord_Nil_left list.exhaust) |
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
paulson <lp15@cam.ac.uk>
parents:
71593
diff
changeset
|
6792 |
next |
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
paulson <lp15@cam.ac.uk>
parents:
71593
diff
changeset
|
6793 |
case (Cons a x y) then show ?case |
72184 | 6794 |
by (cases y) (force+) |
71766
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
paulson <lp15@cam.ac.uk>
parents:
71593
diff
changeset
|
6795 |
qed |
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
paulson <lp15@cam.ac.uk>
parents:
71593
diff
changeset
|
6796 |
qed |
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
paulson <lp15@cam.ac.uk>
parents:
71593
diff
changeset
|
6797 |
|
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
paulson <lp15@cam.ac.uk>
parents:
71593
diff
changeset
|
6798 |
corollary lexord_linear: "(\<forall>a b. (a,b) \<in> r \<or> a = b \<or> (b,a) \<in> r) \<Longrightarrow> (x,y) \<in> lexord r \<or> x = y \<or> (y,x) \<in> lexord r" |
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
paulson <lp15@cam.ac.uk>
parents:
71593
diff
changeset
|
6799 |
using total_lexord by (metis UNIV_I total_on_def) |
15656 | 6800 |
|
56545 | 6801 |
lemma lexord_irrefl: |
6802 |
"irrefl R \<Longrightarrow> irrefl (lexord R)" |
|
68085 | 6803 |
by (simp add: irrefl_def lexord_irreflexive) |
64963 | 6804 |
|
56545 | 6805 |
lemma lexord_asym: |
6806 |
assumes "asym R" |
|
6807 |
shows "asym (lexord R)" |
|
71935
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
paulson <lp15@cam.ac.uk>
parents:
71860
diff
changeset
|
6808 |
proof |
56545 | 6809 |
fix xs ys |
6810 |
assume "(xs, ys) \<in> lexord R" |
|
6811 |
then show "(ys, xs) \<notin> lexord R" |
|
6812 |
proof (induct xs arbitrary: ys) |
|
6813 |
case Nil |
|
6814 |
then show ?case by simp |
|
6815 |
next |
|
6816 |
case (Cons x xs) |
|
6817 |
then obtain z zs where ys: "ys = z # zs" by (cases ys) auto |
|
6818 |
with assms Cons show ?case by (auto elim: asym.cases) |
|
6819 |
qed |
|
6820 |
qed |
|
64963 | 6821 |
|
56545 | 6822 |
lemma lexord_asymmetric: |
6823 |
assumes "asym R" |
|
6824 |
assumes hyp: "(a, b) \<in> lexord R" |
|
6825 |
shows "(b, a) \<notin> lexord R" |
|
6826 |
proof - |
|
60758 | 6827 |
from \<open>asym R\<close> have "asym (lexord R)" by (rule lexord_asym) |
56545 | 6828 |
then show ?thesis by (rule asym.cases) (auto simp add: hyp) |
6829 |
qed |
|
6830 |
||
71935
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
paulson <lp15@cam.ac.uk>
parents:
71860
diff
changeset
|
6831 |
lemma asym_lex: "asym R \<Longrightarrow> asym (lex R)" |
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
paulson <lp15@cam.ac.uk>
parents:
71860
diff
changeset
|
6832 |
by (meson asym.simps irrefl_lex lexord_asym lexord_lex) |
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
paulson <lp15@cam.ac.uk>
parents:
71860
diff
changeset
|
6833 |
|
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
paulson <lp15@cam.ac.uk>
parents:
71860
diff
changeset
|
6834 |
lemma asym_lenlex: "asym R \<Longrightarrow> asym (lenlex R)" |
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
paulson <lp15@cam.ac.uk>
parents:
71860
diff
changeset
|
6835 |
by (simp add: lenlex_def asym_inv_image asym_less_than asym_lex asym_lex_prod) |
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
paulson <lp15@cam.ac.uk>
parents:
71860
diff
changeset
|
6836 |
|
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
paulson <lp15@cam.ac.uk>
parents:
71860
diff
changeset
|
6837 |
lemma lenlex_append1: |
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
paulson <lp15@cam.ac.uk>
parents:
71860
diff
changeset
|
6838 |
assumes len: "(us,xs) \<in> lenlex R" and eq: "length vs = length ys" |
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
paulson <lp15@cam.ac.uk>
parents:
71860
diff
changeset
|
6839 |
shows "(us @ vs, xs @ ys) \<in> lenlex R" |
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
paulson <lp15@cam.ac.uk>
parents:
71860
diff
changeset
|
6840 |
using len |
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
paulson <lp15@cam.ac.uk>
parents:
71860
diff
changeset
|
6841 |
proof (induction us) |
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
paulson <lp15@cam.ac.uk>
parents:
71860
diff
changeset
|
6842 |
case Nil |
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
paulson <lp15@cam.ac.uk>
parents:
71860
diff
changeset
|
6843 |
then show ?case |
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
paulson <lp15@cam.ac.uk>
parents:
71860
diff
changeset
|
6844 |
by (simp add: lenlex_def eq) |
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
paulson <lp15@cam.ac.uk>
parents:
71860
diff
changeset
|
6845 |
next |
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
paulson <lp15@cam.ac.uk>
parents:
71860
diff
changeset
|
6846 |
case (Cons u us) |
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
paulson <lp15@cam.ac.uk>
parents:
71860
diff
changeset
|
6847 |
with lex_append_rightI show ?case |
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
paulson <lp15@cam.ac.uk>
parents:
71860
diff
changeset
|
6848 |
by (fastforce simp add: lenlex_def eq) |
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
paulson <lp15@cam.ac.uk>
parents:
71860
diff
changeset
|
6849 |
qed |
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
paulson <lp15@cam.ac.uk>
parents:
71860
diff
changeset
|
6850 |
|
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
paulson <lp15@cam.ac.uk>
parents:
71860
diff
changeset
|
6851 |
lemma lenlex_append2 [simp]: |
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
paulson <lp15@cam.ac.uk>
parents:
71860
diff
changeset
|
6852 |
assumes "irrefl R" |
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
paulson <lp15@cam.ac.uk>
parents:
71860
diff
changeset
|
6853 |
shows "(us @ xs, us @ ys) \<in> lenlex R \<longleftrightarrow> (xs, ys) \<in> lenlex R" |
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
paulson <lp15@cam.ac.uk>
parents:
71860
diff
changeset
|
6854 |
proof (induction us) |
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
paulson <lp15@cam.ac.uk>
parents:
71860
diff
changeset
|
6855 |
case Nil |
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
paulson <lp15@cam.ac.uk>
parents:
71860
diff
changeset
|
6856 |
then show ?case |
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
paulson <lp15@cam.ac.uk>
parents:
71860
diff
changeset
|
6857 |
by (simp add: lenlex_def) |
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
paulson <lp15@cam.ac.uk>
parents:
71860
diff
changeset
|
6858 |
next |
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
paulson <lp15@cam.ac.uk>
parents:
71860
diff
changeset
|
6859 |
case (Cons u us) |
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
paulson <lp15@cam.ac.uk>
parents:
71860
diff
changeset
|
6860 |
with assms show ?case |
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
paulson <lp15@cam.ac.uk>
parents:
71860
diff
changeset
|
6861 |
by (auto simp: lenlex_def irrefl_def) |
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
paulson <lp15@cam.ac.uk>
parents:
71860
diff
changeset
|
6862 |
qed |
56545 | 6863 |
|
60758 | 6864 |
text \<open> |
54593
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6865 |
Predicate version of lexicographic order integrated with Isabelle's order type classes. |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6866 |
Author: Andreas Lochbihler |
60758 | 6867 |
\<close> |
54593
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6868 |
|
72170
7fa9605b226c
Another go with lex: now lexordp back in class ord
paulson <lp15@cam.ac.uk>
parents:
72164
diff
changeset
|
6869 |
context ord |
61681
ca53150406c9
option "inductive_defs" controls exposure of def and mono facts;
wenzelm
parents:
61630
diff
changeset
|
6870 |
begin |
ca53150406c9
option "inductive_defs" controls exposure of def and mono facts;
wenzelm
parents:
61630
diff
changeset
|
6871 |
|
ca53150406c9
option "inductive_defs" controls exposure of def and mono facts;
wenzelm
parents:
61630
diff
changeset
|
6872 |
context |
62093 | 6873 |
notes [[inductive_internals]] |
61681
ca53150406c9
option "inductive_defs" controls exposure of def and mono facts;
wenzelm
parents:
61630
diff
changeset
|
6874 |
begin |
54593
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6875 |
|
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6876 |
inductive lexordp :: "'a list \<Rightarrow> 'a list \<Rightarrow> bool" |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6877 |
where |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6878 |
Nil: "lexordp [] (y # ys)" |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6879 |
| Cons: "x < y \<Longrightarrow> lexordp (x # xs) (y # ys)" |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6880 |
| Cons_eq: |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6881 |
"\<lbrakk> \<not> x < y; \<not> y < x; lexordp xs ys \<rbrakk> \<Longrightarrow> lexordp (x # xs) (y # ys)" |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6882 |
|
61681
ca53150406c9
option "inductive_defs" controls exposure of def and mono facts;
wenzelm
parents:
61630
diff
changeset
|
6883 |
end |
ca53150406c9
option "inductive_defs" controls exposure of def and mono facts;
wenzelm
parents:
61630
diff
changeset
|
6884 |
|
54593
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6885 |
lemma lexordp_simps [simp]: |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6886 |
"lexordp [] ys = (ys \<noteq> [])" |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6887 |
"lexordp xs [] = False" |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6888 |
"lexordp (x # xs) (y # ys) \<longleftrightarrow> x < y \<or> \<not> y < x \<and> lexordp xs ys" |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6889 |
by(subst lexordp.simps, fastforce simp add: neq_Nil_conv)+ |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6890 |
|
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6891 |
inductive lexordp_eq :: "'a list \<Rightarrow> 'a list \<Rightarrow> bool" where |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6892 |
Nil: "lexordp_eq [] ys" |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6893 |
| Cons: "x < y \<Longrightarrow> lexordp_eq (x # xs) (y # ys)" |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6894 |
| Cons_eq: "\<lbrakk> \<not> x < y; \<not> y < x; lexordp_eq xs ys \<rbrakk> \<Longrightarrow> lexordp_eq (x # xs) (y # ys)" |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6895 |
|
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6896 |
lemma lexordp_eq_simps [simp]: |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6897 |
"lexordp_eq [] ys = True" |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6898 |
"lexordp_eq xs [] \<longleftrightarrow> xs = []" |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6899 |
"lexordp_eq (x # xs) [] = False" |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6900 |
"lexordp_eq (x # xs) (y # ys) \<longleftrightarrow> x < y \<or> \<not> y < x \<and> lexordp_eq xs ys" |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6901 |
by(subst lexordp_eq.simps, fastforce)+ |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6902 |
|
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6903 |
lemma lexordp_append_rightI: "ys \<noteq> Nil \<Longrightarrow> lexordp xs (xs @ ys)" |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6904 |
by(induct xs)(auto simp add: neq_Nil_conv) |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6905 |
|
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6906 |
lemma lexordp_append_left_rightI: "x < y \<Longrightarrow> lexordp (us @ x # xs) (us @ y # ys)" |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6907 |
by(induct us) auto |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6908 |
|
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6909 |
lemma lexordp_eq_refl: "lexordp_eq xs xs" |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6910 |
by(induct xs) simp_all |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6911 |
|
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6912 |
lemma lexordp_append_leftI: "lexordp us vs \<Longrightarrow> lexordp (xs @ us) (xs @ vs)" |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6913 |
by(induct xs) auto |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6914 |
|
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6915 |
lemma lexordp_append_leftD: "\<lbrakk> lexordp (xs @ us) (xs @ vs); \<forall>a. \<not> a < a \<rbrakk> \<Longrightarrow> lexordp us vs" |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6916 |
by(induct xs) auto |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6917 |
|
64963 | 6918 |
lemma lexordp_irreflexive: |
54593
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6919 |
assumes irrefl: "\<forall>x. \<not> x < x" |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6920 |
shows "\<not> lexordp xs xs" |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6921 |
proof |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6922 |
assume "lexordp xs xs" |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6923 |
thus False by(induct xs ys\<equiv>xs)(simp_all add: irrefl) |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6924 |
qed |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6925 |
|
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6926 |
lemma lexordp_into_lexordp_eq: |
73018 | 6927 |
"lexordp xs ys \<Longrightarrow> lexordp_eq xs ys" |
6928 |
by (induction rule: lexordp.induct) simp_all |
|
6929 |
||
6930 |
lemma lexordp_eq_pref: "lexordp_eq u (u @ v)" |
|
6931 |
by (metis append_Nil2 lexordp_append_rightI lexordp_eq_refl lexordp_into_lexordp_eq) |
|
54593
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6932 |
|
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6933 |
end |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6934 |
|
72170
7fa9605b226c
Another go with lex: now lexordp back in class ord
paulson <lp15@cam.ac.uk>
parents:
72164
diff
changeset
|
6935 |
declare ord.lexordp_simps [simp, code] |
7fa9605b226c
Another go with lex: now lexordp back in class ord
paulson <lp15@cam.ac.uk>
parents:
72164
diff
changeset
|
6936 |
declare ord.lexordp_eq_simps [code, simp] |
54593
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6937 |
|
61681
ca53150406c9
option "inductive_defs" controls exposure of def and mono facts;
wenzelm
parents:
61630
diff
changeset
|
6938 |
context order |
ca53150406c9
option "inductive_defs" controls exposure of def and mono facts;
wenzelm
parents:
61630
diff
changeset
|
6939 |
begin |
54593
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6940 |
|
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6941 |
lemma lexordp_antisym: |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6942 |
assumes "lexordp xs ys" "lexordp ys xs" |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6943 |
shows False |
72164
b7c54ff7f2dd
S Holub's proposed generalisation of the lexicographic product of two orderings
paulson <lp15@cam.ac.uk>
parents:
72095
diff
changeset
|
6944 |
using assms by induct auto |
54593
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6945 |
|
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6946 |
lemma lexordp_irreflexive': "\<not> lexordp xs xs" |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6947 |
by(rule lexordp_irreflexive) simp |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6948 |
|
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6949 |
end |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6950 |
|
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6951 |
context linorder begin |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6952 |
|
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6953 |
lemma lexordp_cases [consumes 1, case_names Nil Cons Cons_eq, cases pred: lexordp]: |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6954 |
assumes "lexordp xs ys" |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6955 |
obtains (Nil) y ys' where "xs = []" "ys = y # ys'" |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6956 |
| (Cons) x xs' y ys' where "xs = x # xs'" "ys = y # ys'" "x < y" |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6957 |
| (Cons_eq) x xs' ys' where "xs = x # xs'" "ys = x # ys'" "lexordp xs' ys'" |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6958 |
using assms by cases (fastforce simp add: not_less_iff_gr_or_eq)+ |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6959 |
|
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6960 |
lemma lexordp_induct [consumes 1, case_names Nil Cons Cons_eq, induct pred: lexordp]: |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6961 |
assumes major: "lexordp xs ys" |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6962 |
and Nil: "\<And>y ys. P [] (y # ys)" |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6963 |
and Cons: "\<And>x xs y ys. x < y \<Longrightarrow> P (x # xs) (y # ys)" |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6964 |
and Cons_eq: "\<And>x xs ys. \<lbrakk> lexordp xs ys; P xs ys \<rbrakk> \<Longrightarrow> P (x # xs) (x # ys)" |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6965 |
shows "P xs ys" |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6966 |
using major by induct (simp_all add: Nil Cons not_less_iff_gr_or_eq Cons_eq) |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6967 |
|
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6968 |
lemma lexordp_iff: |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6969 |
"lexordp xs ys \<longleftrightarrow> (\<exists>x vs. ys = xs @ x # vs) \<or> (\<exists>us a b vs ws. a < b \<and> xs = us @ a # vs \<and> ys = us @ b # ws)" |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6970 |
(is "?lhs = ?rhs") |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6971 |
proof |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6972 |
assume ?lhs thus ?rhs |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6973 |
proof induct |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6974 |
case Cons_eq thus ?case by simp (metis append.simps(2)) |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6975 |
qed(fastforce intro: disjI2 del: disjCI intro: exI[where x="[]"])+ |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6976 |
next |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6977 |
assume ?rhs thus ?lhs |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6978 |
by(auto intro: lexordp_append_leftI[where us="[]", simplified] lexordp_append_leftI) |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6979 |
qed |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6980 |
|
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6981 |
lemma lexordp_conv_lexord: |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6982 |
"lexordp xs ys \<longleftrightarrow> (xs, ys) \<in> lexord {(x, y). x < y}" |
72184 | 6983 |
by(simp add: lexordp_iff lexord_def) |
54593
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6984 |
|
64963 | 6985 |
lemma lexordp_eq_antisym: |
6986 |
assumes "lexordp_eq xs ys" "lexordp_eq ys xs" |
|
54593
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6987 |
shows "xs = ys" |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6988 |
using assms by induct simp_all |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6989 |
|
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6990 |
lemma lexordp_eq_trans: |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6991 |
assumes "lexordp_eq xs ys" and "lexordp_eq ys zs" |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6992 |
shows "lexordp_eq xs zs" |
68719 | 6993 |
using assms |
6994 |
by (induct arbitrary: zs) (case_tac zs; auto)+ |
|
54593
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6995 |
|
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6996 |
lemma lexordp_trans: |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6997 |
assumes "lexordp xs ys" "lexordp ys zs" |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
6998 |
shows "lexordp xs zs" |
68719 | 6999 |
using assms |
7000 |
by (induct arbitrary: zs) (case_tac zs; auto)+ |
|
54593
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
7001 |
|
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
7002 |
lemma lexordp_linear: "lexordp xs ys \<or> xs = ys \<or> lexordp ys xs" |
68719 | 7003 |
by(induct xs arbitrary: ys; case_tac ys; fastforce) |
54593
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
7004 |
|
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
7005 |
lemma lexordp_conv_lexordp_eq: "lexordp xs ys \<longleftrightarrow> lexordp_eq xs ys \<and> \<not> lexordp_eq ys xs" |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
7006 |
(is "?lhs \<longleftrightarrow> ?rhs") |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
7007 |
proof |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
7008 |
assume ?lhs |
63540 | 7009 |
hence "\<not> lexordp_eq ys xs" by induct simp_all |
7010 |
with \<open>?lhs\<close> show ?rhs by (simp add: lexordp_into_lexordp_eq) |
|
54593
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
7011 |
next |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
7012 |
assume ?rhs |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
7013 |
hence "lexordp_eq xs ys" "\<not> lexordp_eq ys xs" by simp_all |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
7014 |
thus ?lhs by induct simp_all |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
7015 |
qed |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
7016 |
|
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
7017 |
lemma lexordp_eq_conv_lexord: "lexordp_eq xs ys \<longleftrightarrow> xs = ys \<or> lexordp xs ys" |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
7018 |
by(auto simp add: lexordp_conv_lexordp_eq lexordp_eq_refl dest: lexordp_eq_antisym) |
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
7019 |
|
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
7020 |
lemma lexordp_eq_linear: "lexordp_eq xs ys \<or> lexordp_eq ys xs" |
68719 | 7021 |
by (induct xs arbitrary: ys) (case_tac ys; auto)+ |
54593
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
7022 |
|
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
7023 |
lemma lexordp_linorder: "class.linorder lexordp_eq lexordp" |
68719 | 7024 |
by unfold_locales |
7025 |
(auto simp add: lexordp_conv_lexordp_eq lexordp_eq_refl lexordp_eq_antisym intro: lexordp_eq_trans del: disjCI intro: lexordp_eq_linear) |
|
54593
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
7026 |
|
8c0a27b9c1bd
add predicate version of lexicographic order on lists
Andreas Lochbihler
parents:
54498
diff
changeset
|
7027 |
end |
15656 | 7028 |
|
64886 | 7029 |
lemma sorted_insort_is_snoc: "sorted xs \<Longrightarrow> \<forall>x \<in> set xs. a \<ge> x \<Longrightarrow> insort a xs = xs @ [a]" |
68109 | 7030 |
by (induct xs) (auto dest!: insort_is_Cons) |
64886 | 7031 |
|
7032 |
||
60758 | 7033 |
subsubsection \<open>Lexicographic combination of measure functions\<close> |
7034 |
||
7035 |
text \<open>These are useful for termination proofs\<close> |
|
21103
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
7036 |
|
50548 | 7037 |
definition "measures fs = inv_image (lex less_than) (%a. map (%f. f a) fs)" |
21103
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
7038 |
|
44013
5cfc1c36ae97
moved recdef package to HOL/Library/Old_Recdef.thy
krauss
parents:
43594
diff
changeset
|
7039 |
lemma wf_measures[simp]: "wf (measures fs)" |
24349 | 7040 |
unfolding measures_def |
7041 |
by blast |
|
21103
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
7042 |
|
64963 | 7043 |
lemma in_measures[simp]: |
21103
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
7044 |
"(x, y) \<in> measures [] = False" |
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
7045 |
"(x, y) \<in> measures (f # fs) |
64963 | 7046 |
= (f x < f y \<or> (f x = f y \<and> (x, y) \<in> measures fs))" |
24349 | 7047 |
unfolding measures_def |
7048 |
by auto |
|
21103
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
7049 |
|
71585 | 7050 |
lemma measures_less: "f x < f y \<Longrightarrow> (x, y) \<in> measures (f#fs)" |
24349 | 7051 |
by simp |
21103
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
7052 |
|
71585 | 7053 |
lemma measures_lesseq: "f x \<le> f y \<Longrightarrow> (x, y) \<in> measures fs \<Longrightarrow> (x, y) \<in> measures (f#fs)" |
24349 | 7054 |
by auto |
21103
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
7055 |
|
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
7056 |
|
60758 | 7057 |
subsubsection \<open>Lifting Relations to Lists: one element\<close> |
40230 | 7058 |
|
7059 |
definition listrel1 :: "('a \<times> 'a) set \<Rightarrow> ('a list \<times> 'a list) set" where |
|
7060 |
"listrel1 r = {(xs,ys). |
|
7061 |
\<exists>us z z' vs. xs = us @ z # vs \<and> (z,z') \<in> r \<and> ys = us @ z' # vs}" |
|
7062 |
||
7063 |
lemma listrel1I: |
|
7064 |
"\<lbrakk> (x, y) \<in> r; xs = us @ x # vs; ys = us @ y # vs \<rbrakk> \<Longrightarrow> |
|
7065 |
(xs, ys) \<in> listrel1 r" |
|
7066 |
unfolding listrel1_def by auto |
|
7067 |
||
7068 |
lemma listrel1E: |
|
7069 |
"\<lbrakk> (xs, ys) \<in> listrel1 r; |
|
7070 |
!!x y us vs. \<lbrakk> (x, y) \<in> r; xs = us @ x # vs; ys = us @ y # vs \<rbrakk> \<Longrightarrow> P |
|
7071 |
\<rbrakk> \<Longrightarrow> P" |
|
7072 |
unfolding listrel1_def by auto |
|
7073 |
||
7074 |
lemma not_Nil_listrel1 [iff]: "([], xs) \<notin> listrel1 r" |
|
7075 |
unfolding listrel1_def by blast |
|
7076 |
||
7077 |
lemma not_listrel1_Nil [iff]: "(xs, []) \<notin> listrel1 r" |
|
7078 |
unfolding listrel1_def by blast |
|
7079 |
||
7080 |
lemma Cons_listrel1_Cons [iff]: |
|
7081 |
"(x # xs, y # ys) \<in> listrel1 r \<longleftrightarrow> |
|
7082 |
(x,y) \<in> r \<and> xs = ys \<or> x = y \<and> (xs, ys) \<in> listrel1 r" |
|
7083 |
by (simp add: listrel1_def Cons_eq_append_conv) (blast) |
|
7084 |
||
7085 |
lemma listrel1I1: "(x,y) \<in> r \<Longrightarrow> (x # xs, y # xs) \<in> listrel1 r" |
|
56085 | 7086 |
by fast |
40230 | 7087 |
|
7088 |
lemma listrel1I2: "(xs, ys) \<in> listrel1 r \<Longrightarrow> (x # xs, x # ys) \<in> listrel1 r" |
|
56085 | 7089 |
by fast |
40230 | 7090 |
|
7091 |
lemma append_listrel1I: |
|
7092 |
"(xs, ys) \<in> listrel1 r \<and> us = vs \<or> xs = ys \<and> (us, vs) \<in> listrel1 r |
|
7093 |
\<Longrightarrow> (xs @ us, ys @ vs) \<in> listrel1 r" |
|
7094 |
unfolding listrel1_def |
|
7095 |
by auto (blast intro: append_eq_appendI)+ |
|
7096 |
||
7097 |
lemma Cons_listrel1E1[elim!]: |
|
7098 |
assumes "(x # xs, ys) \<in> listrel1 r" |
|
7099 |
and "\<And>y. ys = y # xs \<Longrightarrow> (x, y) \<in> r \<Longrightarrow> R" |
|
7100 |
and "\<And>zs. ys = x # zs \<Longrightarrow> (xs, zs) \<in> listrel1 r \<Longrightarrow> R" |
|
7101 |
shows R |
|
7102 |
using assms by (cases ys) blast+ |
|
7103 |
||
7104 |
lemma Cons_listrel1E2[elim!]: |
|
7105 |
assumes "(xs, y # ys) \<in> listrel1 r" |
|
7106 |
and "\<And>x. xs = x # ys \<Longrightarrow> (x, y) \<in> r \<Longrightarrow> R" |
|
7107 |
and "\<And>zs. xs = y # zs \<Longrightarrow> (zs, ys) \<in> listrel1 r \<Longrightarrow> R" |
|
7108 |
shows R |
|
7109 |
using assms by (cases xs) blast+ |
|
7110 |
||
7111 |
lemma snoc_listrel1_snoc_iff: |
|
7112 |
"(xs @ [x], ys @ [y]) \<in> listrel1 r |
|
7113 |
\<longleftrightarrow> (xs, ys) \<in> listrel1 r \<and> x = y \<or> xs = ys \<and> (x,y) \<in> r" (is "?L \<longleftrightarrow> ?R") |
|
7114 |
proof |
|
7115 |
assume ?L thus ?R |
|
44890
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
nipkow
parents:
44635
diff
changeset
|
7116 |
by (fastforce simp: listrel1_def snoc_eq_iff_butlast butlast_append) |
40230 | 7117 |
next |
7118 |
assume ?R then show ?L unfolding listrel1_def by force |
|
7119 |
qed |
|
7120 |
||
7121 |
lemma listrel1_eq_len: "(xs,ys) \<in> listrel1 r \<Longrightarrow> length xs = length ys" |
|
7122 |
unfolding listrel1_def by auto |
|
7123 |
||
7124 |
lemma listrel1_mono: |
|
7125 |
"r \<subseteq> s \<Longrightarrow> listrel1 r \<subseteq> listrel1 s" |
|
7126 |
unfolding listrel1_def by blast |
|
7127 |
||
7128 |
||
67613 | 7129 |
lemma listrel1_converse: "listrel1 (r\<inverse>) = (listrel1 r)\<inverse>" |
40230 | 7130 |
unfolding listrel1_def by blast |
7131 |
||
7132 |
lemma in_listrel1_converse: |
|
67613 | 7133 |
"(x,y) \<in> listrel1 (r\<inverse>) \<longleftrightarrow> (x,y) \<in> (listrel1 r)\<inverse>" |
40230 | 7134 |
unfolding listrel1_def by blast |
7135 |
||
7136 |
lemma listrel1_iff_update: |
|
7137 |
"(xs,ys) \<in> (listrel1 r) |
|
7138 |
\<longleftrightarrow> (\<exists>y n. (xs ! n, y) \<in> r \<and> n < length xs \<and> ys = xs[n:=y])" (is "?L \<longleftrightarrow> ?R") |
|
7139 |
proof |
|
7140 |
assume "?L" |
|
7141 |
then obtain x y u v where "xs = u @ x # v" "ys = u @ y # v" "(x,y) \<in> r" |
|
7142 |
unfolding listrel1_def by auto |
|
7143 |
then have "ys = xs[length u := y]" and "length u < length xs" |
|
7144 |
and "(xs ! length u, y) \<in> r" by auto |
|
7145 |
then show "?R" by auto |
|
7146 |
next |
|
7147 |
assume "?R" |
|
7148 |
then obtain x y n where "(xs!n, y) \<in> r" "n < size xs" "ys = xs[n:=y]" "x = xs!n" |
|
7149 |
by auto |
|
7150 |
then obtain u v where "xs = u @ x # v" and "ys = u @ y # v" and "(x, y) \<in> r" |
|
7151 |
by (auto intro: upd_conv_take_nth_drop id_take_nth_drop) |
|
7152 |
then show "?L" by (auto simp: listrel1_def) |
|
7153 |
qed |
|
7154 |
||
7155 |
||
60758 | 7156 |
text\<open>Accessible part and wellfoundedness:\<close> |
40230 | 7157 |
|
7158 |
lemma Cons_acc_listrel1I [intro!]: |
|
54295 | 7159 |
"x \<in> Wellfounded.acc r \<Longrightarrow> xs \<in> Wellfounded.acc (listrel1 r) \<Longrightarrow> (x # xs) \<in> Wellfounded.acc (listrel1 r)" |
7160 |
apply (induct arbitrary: xs set: Wellfounded.acc) |
|
40230 | 7161 |
apply (erule thin_rl) |
7162 |
apply (erule acc_induct) |
|
68719 | 7163 |
apply (rule accI) |
40230 | 7164 |
apply (blast) |
7165 |
done |
|
7166 |
||
54295 | 7167 |
lemma lists_accD: "xs \<in> lists (Wellfounded.acc r) \<Longrightarrow> xs \<in> Wellfounded.acc (listrel1 r)" |
68719 | 7168 |
proof (induct set: lists) |
7169 |
case Nil |
|
7170 |
then show ?case |
|
7171 |
by (meson acc.intros not_listrel1_Nil) |
|
7172 |
next |
|
7173 |
case (Cons a l) |
|
7174 |
then show ?case |
|
7175 |
by blast |
|
7176 |
qed |
|
40230 | 7177 |
|
54295 | 7178 |
lemma lists_accI: "xs \<in> Wellfounded.acc (listrel1 r) \<Longrightarrow> xs \<in> lists (Wellfounded.acc r)" |
7179 |
apply (induct set: Wellfounded.acc) |
|
40230 | 7180 |
apply clarify |
7181 |
apply (rule accI) |
|
44890
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
nipkow
parents:
44635
diff
changeset
|
7182 |
apply (fastforce dest!: in_set_conv_decomp[THEN iffD1] simp: listrel1_def) |
40230 | 7183 |
done |
7184 |
||
44510 | 7185 |
lemma wf_listrel1_iff[simp]: "wf(listrel1 r) = wf r" |
56085 | 7186 |
by (auto simp: wf_acc_iff |
7187 |
intro: lists_accD lists_accI[THEN Cons_in_lists_iff[THEN iffD1, THEN conjunct1]]) |
|
40230 | 7188 |
|
60758 | 7189 |
subsubsection \<open>Lifting Relations to Lists: all elements\<close> |
15302 | 7190 |
|
23740 | 7191 |
inductive_set |
46317 | 7192 |
listrel :: "('a \<times> 'b) set \<Rightarrow> ('a list \<times> 'b list) set" |
7193 |
for r :: "('a \<times> 'b) set" |
|
22262 | 7194 |
where |
23740 | 7195 |
Nil: "([],[]) \<in> listrel r" |
71585 | 7196 |
| Cons: "\<lbrakk>(x,y) \<in> r; (xs,ys) \<in> listrel r\<rbrakk> \<Longrightarrow> (x#xs, y#ys) \<in> listrel r" |
23740 | 7197 |
|
7198 |
inductive_cases listrel_Nil1 [elim!]: "([],xs) \<in> listrel r" |
|
7199 |
inductive_cases listrel_Nil2 [elim!]: "(xs,[]) \<in> listrel r" |
|
7200 |
inductive_cases listrel_Cons1 [elim!]: "(y#ys,xs) \<in> listrel r" |
|
7201 |
inductive_cases listrel_Cons2 [elim!]: "(xs,y#ys) \<in> listrel r" |
|
15302 | 7202 |
|
7203 |
||
40230 | 7204 |
lemma listrel_eq_len: "(xs, ys) \<in> listrel r \<Longrightarrow> length xs = length ys" |
71813 | 7205 |
by(induct rule: listrel.induct) auto |
40230 | 7206 |
|
67091 | 7207 |
lemma listrel_iff_zip [code_unfold]: "(xs,ys) \<in> listrel r \<longleftrightarrow> |
7208 |
length xs = length ys \<and> (\<forall>(x,y) \<in> set(zip xs ys). (x,y) \<in> r)" (is "?L \<longleftrightarrow> ?R") |
|
40230 | 7209 |
proof |
7210 |
assume ?L thus ?R by induct (auto intro: listrel_eq_len) |
|
7211 |
next |
|
7212 |
assume ?R thus ?L |
|
7213 |
apply (clarify) |
|
7214 |
by (induct rule: list_induct2) (auto intro: listrel.intros) |
|
7215 |
qed |
|
7216 |
||
67091 | 7217 |
lemma listrel_iff_nth: "(xs,ys) \<in> listrel r \<longleftrightarrow> |
7218 |
length xs = length ys \<and> (\<forall>n < length xs. (xs!n, ys!n) \<in> r)" (is "?L \<longleftrightarrow> ?R") |
|
71813 | 7219 |
by (auto simp add: all_set_conv_all_nth listrel_iff_zip) |
40230 | 7220 |
|
15302 | 7221 |
lemma listrel_mono: "r \<subseteq> s \<Longrightarrow> listrel r \<subseteq> listrel s" |
68719 | 7222 |
by (meson listrel_iff_nth subrelI subset_eq) |
15302 | 7223 |
|
71813 | 7224 |
lemma listrel_subset: |
7225 |
assumes "r \<subseteq> A \<times> A" shows "listrel r \<subseteq> lists A \<times> lists A" |
|
7226 |
proof clarify |
|
7227 |
show "a \<in> lists A \<and> b \<in> lists A" if "(a, b) \<in> listrel r" for a b |
|
7228 |
using that assms by (induction rule: listrel.induct, auto) |
|
7229 |
qed |
|
7230 |
||
7231 |
lemma listrel_refl_on: |
|
7232 |
assumes "refl_on A r" shows "refl_on (lists A) (listrel r)" |
|
7233 |
proof - |
|
7234 |
have "l \<in> lists A \<Longrightarrow> (l, l) \<in> listrel r" for l |
|
7235 |
using assms unfolding refl_on_def |
|
7236 |
by (induction l, auto intro: listrel.intros) |
|
7237 |
then show ?thesis |
|
7238 |
by (meson assms listrel_subset refl_on_def) |
|
7239 |
qed |
|
15302 | 7240 |
|
64963 | 7241 |
lemma listrel_sym: "sym r \<Longrightarrow> sym (listrel r)" |
68719 | 7242 |
by (simp add: listrel_iff_nth sym_def) |
15302 | 7243 |
|
71813 | 7244 |
lemma listrel_trans: |
7245 |
assumes "trans r" shows "trans (listrel r)" |
|
7246 |
proof - |
|
7247 |
have "(x, z) \<in> listrel r" if "(x, y) \<in> listrel r" "(y, z) \<in> listrel r" for x y z |
|
7248 |
using that |
|
7249 |
proof induction |
|
7250 |
case (Cons x y xs ys) |
|
7251 |
then show ?case |
|
7252 |
by clarsimp (metis assms listrel.Cons listrel_iff_nth transD) |
|
7253 |
qed auto |
|
7254 |
then show ?thesis |
|
7255 |
using transI by blast |
|
7256 |
qed |
|
15302 | 7257 |
|
7258 |
theorem equiv_listrel: "equiv A r \<Longrightarrow> equiv (lists A) (listrel r)" |
|
71813 | 7259 |
by (simp add: equiv_def listrel_refl_on listrel_sym listrel_trans) |
15302 | 7260 |
|
67613 | 7261 |
lemma listrel_rtrancl_refl[iff]: "(xs,xs) \<in> listrel(r\<^sup>*)" |
71813 | 7262 |
using listrel_refl_on[of UNIV, OF refl_rtrancl] |
7263 |
by(auto simp: refl_on_def) |
|
40230 | 7264 |
|
7265 |
lemma listrel_rtrancl_trans: |
|
71813 | 7266 |
"\<lbrakk>(xs,ys) \<in> listrel(r\<^sup>*); (ys,zs) \<in> listrel(r\<^sup>*)\<rbrakk> \<Longrightarrow> (xs,zs) \<in> listrel(r\<^sup>*)" |
7267 |
by (metis listrel_trans trans_def trans_rtrancl) |
|
40230 | 7268 |
|
15302 | 7269 |
lemma listrel_Nil [simp]: "listrel r `` {[]} = {[]}" |
71813 | 7270 |
by (blast intro: listrel.intros) |
15302 | 7271 |
|
7272 |
lemma listrel_Cons: |
|
71813 | 7273 |
"listrel r `` {x#xs} = set_Cons (r``{x}) (listrel r `` {xs})" |
7274 |
by (auto simp add: set_Cons_def intro: listrel.intros) |
|
15302 | 7275 |
|
69593 | 7276 |
text \<open>Relating \<^term>\<open>listrel1\<close>, \<^term>\<open>listrel\<close> and closures:\<close> |
40230 | 7277 |
|
71813 | 7278 |
lemma listrel1_rtrancl_subset_rtrancl_listrel1: "listrel1 (r\<^sup>*) \<subseteq> (listrel1 r)\<^sup>*" |
40230 | 7279 |
proof (rule subrelI) |
67613 | 7280 |
fix xs ys assume 1: "(xs,ys) \<in> listrel1 (r\<^sup>*)" |
40230 | 7281 |
{ fix x y us vs |
67613 | 7282 |
have "(x,y) \<in> r\<^sup>* \<Longrightarrow> (us @ x # vs, us @ y # vs) \<in> (listrel1 r)\<^sup>*" |
40230 | 7283 |
proof(induct rule: rtrancl.induct) |
7284 |
case rtrancl_refl show ?case by simp |
|
7285 |
next |
|
7286 |
case rtrancl_into_rtrancl thus ?case |
|
7287 |
by (metis listrel1I rtrancl.rtrancl_into_rtrancl) |
|
7288 |
qed } |
|
67613 | 7289 |
thus "(xs,ys) \<in> (listrel1 r)\<^sup>*" using 1 by(blast elim: listrel1E) |
40230 | 7290 |
qed |
7291 |
||
67613 | 7292 |
lemma rtrancl_listrel1_eq_len: "(x,y) \<in> (listrel1 r)\<^sup>* \<Longrightarrow> length x = length y" |
71813 | 7293 |
by (induct rule: rtrancl.induct) (auto intro: listrel1_eq_len) |
40230 | 7294 |
|
7295 |
lemma rtrancl_listrel1_ConsI1: |
|
67613 | 7296 |
"(xs,ys) \<in> (listrel1 r)\<^sup>* \<Longrightarrow> (x#xs,x#ys) \<in> (listrel1 r)\<^sup>*" |
71813 | 7297 |
proof (induction rule: rtrancl.induct) |
7298 |
case (rtrancl_into_rtrancl a b c) |
|
7299 |
then show ?case |
|
7300 |
by (metis listrel1I2 rtrancl.rtrancl_into_rtrancl) |
|
7301 |
qed auto |
|
40230 | 7302 |
|
7303 |
lemma rtrancl_listrel1_ConsI2: |
|
71813 | 7304 |
"(x,y) \<in> r\<^sup>* \<Longrightarrow> (xs, ys) \<in> (listrel1 r)\<^sup>* \<Longrightarrow> (x # xs, y # ys) \<in> (listrel1 r)\<^sup>*" |
7305 |
by (meson in_mono listrel1I1 listrel1_rtrancl_subset_rtrancl_listrel1 rtrancl_listrel1_ConsI1 rtrancl_trans) |
|
40230 | 7306 |
|
7307 |
lemma listrel1_subset_listrel: |
|
7308 |
"r \<subseteq> r' \<Longrightarrow> refl r' \<Longrightarrow> listrel1 r \<subseteq> listrel(r')" |
|
71813 | 7309 |
by(auto elim!: listrel1E simp add: listrel_iff_zip set_zip refl_on_def) |
40230 | 7310 |
|
7311 |
lemma listrel_reflcl_if_listrel1: |
|
67613 | 7312 |
"(xs,ys) \<in> listrel1 r \<Longrightarrow> (xs,ys) \<in> listrel(r\<^sup>*)" |
71813 | 7313 |
by(erule listrel1E)(auto simp add: listrel_iff_zip set_zip) |
40230 | 7314 |
|
67613 | 7315 |
lemma listrel_rtrancl_eq_rtrancl_listrel1: "listrel (r\<^sup>*) = (listrel1 r)\<^sup>*" |
40230 | 7316 |
proof |
67613 | 7317 |
{ fix x y assume "(x,y) \<in> listrel (r\<^sup>*)" |
7318 |
then have "(x,y) \<in> (listrel1 r)\<^sup>*" |
|
40230 | 7319 |
by induct (auto intro: rtrancl_listrel1_ConsI2) } |
67613 | 7320 |
then show "listrel (r\<^sup>*) \<subseteq> (listrel1 r)\<^sup>*" |
40230 | 7321 |
by (rule subrelI) |
7322 |
next |
|
67613 | 7323 |
show "listrel (r\<^sup>*) \<supseteq> (listrel1 r)\<^sup>*" |
40230 | 7324 |
proof(rule subrelI) |
67613 | 7325 |
fix xs ys assume "(xs,ys) \<in> (listrel1 r)\<^sup>*" |
7326 |
then show "(xs,ys) \<in> listrel (r\<^sup>*)" |
|
40230 | 7327 |
proof induct |
7328 |
case base show ?case by(auto simp add: listrel_iff_zip set_zip) |
|
7329 |
next |
|
7330 |
case (step ys zs) |
|
56085 | 7331 |
thus ?case by (metis listrel_reflcl_if_listrel1 listrel_rtrancl_trans) |
40230 | 7332 |
qed |
7333 |
qed |
|
7334 |
qed |
|
7335 |
||
7336 |
lemma rtrancl_listrel1_if_listrel: |
|
67613 | 7337 |
"(xs,ys) \<in> listrel r \<Longrightarrow> (xs,ys) \<in> (listrel1 r)\<^sup>*" |
71813 | 7338 |
by(metis listrel_rtrancl_eq_rtrancl_listrel1 subsetD[OF listrel_mono] r_into_rtrancl subsetI) |
40230 | 7339 |
|
67613 | 7340 |
lemma listrel_subset_rtrancl_listrel1: "listrel r \<subseteq> (listrel1 r)\<^sup>*" |
71813 | 7341 |
by(fast intro:rtrancl_listrel1_if_listrel) |
40230 | 7342 |
|
15302 | 7343 |
|
60758 | 7344 |
subsection \<open>Size function\<close> |
26749
397a1aeede7d
* New attribute "termination_simp": Simp rules for termination proofs
krauss
parents:
26734
diff
changeset
|
7345 |
|
56643
41d3596d8a64
move size hooks together, with new one preceding old one and sharing same theory data
blanchet
parents:
56545
diff
changeset
|
7346 |
lemma [measure_function]: "is_measure f \<Longrightarrow> is_measure (size_list f)" |
71813 | 7347 |
by (rule is_measure_trivial) |
26875
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
krauss
parents:
26795
diff
changeset
|
7348 |
|
56643
41d3596d8a64
move size hooks together, with new one preceding old one and sharing same theory data
blanchet
parents:
56545
diff
changeset
|
7349 |
lemma [measure_function]: "is_measure f \<Longrightarrow> is_measure (size_option f)" |
71813 | 7350 |
by (rule is_measure_trivial) |
26875
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
krauss
parents:
26795
diff
changeset
|
7351 |
|
64963 | 7352 |
lemma size_list_estimation[termination_simp]: |
56643
41d3596d8a64
move size hooks together, with new one preceding old one and sharing same theory data
blanchet
parents:
56545
diff
changeset
|
7353 |
"x \<in> set xs \<Longrightarrow> y < f x \<Longrightarrow> y < size_list f xs" |
71813 | 7354 |
by (induct xs) auto |
26749
397a1aeede7d
* New attribute "termination_simp": Simp rules for termination proofs
krauss
parents:
26734
diff
changeset
|
7355 |
|
64963 | 7356 |
lemma size_list_estimation'[termination_simp]: |
56643
41d3596d8a64
move size hooks together, with new one preceding old one and sharing same theory data
blanchet
parents:
56545
diff
changeset
|
7357 |
"x \<in> set xs \<Longrightarrow> y \<le> f x \<Longrightarrow> y \<le> size_list f xs" |
71813 | 7358 |
by (induct xs) auto |
26875
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
krauss
parents:
26795
diff
changeset
|
7359 |
|
67091 | 7360 |
lemma size_list_map[simp]: "size_list f (map g xs) = size_list (f \<circ> g) xs" |
71813 | 7361 |
by (induct xs) auto |
26875
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
krauss
parents:
26795
diff
changeset
|
7362 |
|
56643
41d3596d8a64
move size hooks together, with new one preceding old one and sharing same theory data
blanchet
parents:
56545
diff
changeset
|
7363 |
lemma size_list_append[simp]: "size_list f (xs @ ys) = size_list f xs + size_list f ys" |
71813 | 7364 |
by (induct xs, auto) |
44619
fd520fa2fb09
adding list_size_append (thanks to Rene Thiemann)
bulwahn
parents:
44618
diff
changeset
|
7365 |
|
64963 | 7366 |
lemma size_list_pointwise[termination_simp]: |
56643
41d3596d8a64
move size hooks together, with new one preceding old one and sharing same theory data
blanchet
parents:
56545
diff
changeset
|
7367 |
"(\<And>x. x \<in> set xs \<Longrightarrow> f x \<le> g x) \<Longrightarrow> size_list f xs \<le> size_list g xs" |
71813 | 7368 |
by (induct xs) force+ |
26749
397a1aeede7d
* New attribute "termination_simp": Simp rules for termination proofs
krauss
parents:
26734
diff
changeset
|
7369 |
|
31048
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
31022
diff
changeset
|
7370 |
|
60758 | 7371 |
subsection \<open>Monad operation\<close> |
46143 | 7372 |
|
7373 |
definition bind :: "'a list \<Rightarrow> ('a \<Rightarrow> 'b list) \<Rightarrow> 'b list" where |
|
50548 | 7374 |
"bind xs f = concat (map f xs)" |
46143 | 7375 |
|
7376 |
hide_const (open) bind |
|
7377 |
||
7378 |
lemma bind_simps [simp]: |
|
7379 |
"List.bind [] f = []" |
|
7380 |
"List.bind (x # xs) f = f x @ List.bind xs f" |
|
7381 |
by (simp_all add: bind_def) |
|
7382 |
||
63099
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents:
63092
diff
changeset
|
7383 |
lemma list_bind_cong [fundef_cong]: |
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents:
63092
diff
changeset
|
7384 |
assumes "xs = ys" "(\<And>x. x \<in> set xs \<Longrightarrow> f x = g x)" |
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents:
63092
diff
changeset
|
7385 |
shows "List.bind xs f = List.bind ys g" |
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents:
63092
diff
changeset
|
7386 |
proof - |
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents:
63092
diff
changeset
|
7387 |
from assms(2) have "List.bind xs f = List.bind xs g" |
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents:
63092
diff
changeset
|
7388 |
by (induction xs) simp_all |
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents:
63092
diff
changeset
|
7389 |
with assms(1) show ?thesis by simp |
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents:
63092
diff
changeset
|
7390 |
qed |
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents:
63092
diff
changeset
|
7391 |
|
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents:
63092
diff
changeset
|
7392 |
lemma set_list_bind: "set (List.bind xs f) = (\<Union>x\<in>set xs. set (f x))" |
64963 | 7393 |
by (induction xs) simp_all |
63099
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents:
63092
diff
changeset
|
7394 |
|
46143 | 7395 |
|
60758 | 7396 |
subsection \<open>Code generation\<close> |
7397 |
||
69593 | 7398 |
text\<open>Optional tail recursive version of \<^const>\<open>map\<close>. Can avoid |
60758 | 7399 |
stack overflow in some target languages.\<close> |
51875
dafd097dd1f4
tail recursive version of map, for code generation, optionally
nipkow
parents:
51738
diff
changeset
|
7400 |
|
dafd097dd1f4
tail recursive version of map, for code generation, optionally
nipkow
parents:
51738
diff
changeset
|
7401 |
fun map_tailrec_rev :: "('a \<Rightarrow> 'b) \<Rightarrow> 'a list \<Rightarrow> 'b list \<Rightarrow> 'b list" where |
dafd097dd1f4
tail recursive version of map, for code generation, optionally
nipkow
parents:
51738
diff
changeset
|
7402 |
"map_tailrec_rev f [] bs = bs" | |
dafd097dd1f4
tail recursive version of map, for code generation, optionally
nipkow
parents:
51738
diff
changeset
|
7403 |
"map_tailrec_rev f (a#as) bs = map_tailrec_rev f as (f a # bs)" |
dafd097dd1f4
tail recursive version of map, for code generation, optionally
nipkow
parents:
51738
diff
changeset
|
7404 |
|
dafd097dd1f4
tail recursive version of map, for code generation, optionally
nipkow
parents:
51738
diff
changeset
|
7405 |
lemma map_tailrec_rev: |
dafd097dd1f4
tail recursive version of map, for code generation, optionally
nipkow
parents:
51738
diff
changeset
|
7406 |
"map_tailrec_rev f as bs = rev(map f as) @ bs" |
dafd097dd1f4
tail recursive version of map, for code generation, optionally
nipkow
parents:
51738
diff
changeset
|
7407 |
by(induction as arbitrary: bs) simp_all |
dafd097dd1f4
tail recursive version of map, for code generation, optionally
nipkow
parents:
51738
diff
changeset
|
7408 |
|
dafd097dd1f4
tail recursive version of map, for code generation, optionally
nipkow
parents:
51738
diff
changeset
|
7409 |
definition map_tailrec :: "('a \<Rightarrow> 'b) \<Rightarrow> 'a list \<Rightarrow> 'b list" where |
dafd097dd1f4
tail recursive version of map, for code generation, optionally
nipkow
parents:
51738
diff
changeset
|
7410 |
"map_tailrec f as = rev (map_tailrec_rev f as [])" |
dafd097dd1f4
tail recursive version of map, for code generation, optionally
nipkow
parents:
51738
diff
changeset
|
7411 |
|
60758 | 7412 |
text\<open>Code equation:\<close> |
51875
dafd097dd1f4
tail recursive version of map, for code generation, optionally
nipkow
parents:
51738
diff
changeset
|
7413 |
lemma map_eq_map_tailrec: "map = map_tailrec" |
dafd097dd1f4
tail recursive version of map, for code generation, optionally
nipkow
parents:
51738
diff
changeset
|
7414 |
by(simp add: fun_eq_iff map_tailrec_def map_tailrec_rev) |
dafd097dd1f4
tail recursive version of map, for code generation, optionally
nipkow
parents:
51738
diff
changeset
|
7415 |
|
dafd097dd1f4
tail recursive version of map, for code generation, optionally
nipkow
parents:
51738
diff
changeset
|
7416 |
|
60758 | 7417 |
subsubsection \<open>Counterparts for set-related operations\<close> |
37605
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7418 |
|
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7419 |
definition member :: "'a list \<Rightarrow> 'a \<Rightarrow> bool" where |
50548 | 7420 |
[code_abbrev]: "member xs x \<longleftrightarrow> x \<in> set xs" |
37605
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7421 |
|
60758 | 7422 |
text \<open> |
61799 | 7423 |
Use \<open>member\<close> only for generating executable code. Otherwise use |
69593 | 7424 |
\<^prop>\<open>x \<in> set xs\<close> instead --- it is much easier to reason about. |
60758 | 7425 |
\<close> |
37605
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7426 |
|
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7427 |
lemma member_rec [code]: |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7428 |
"member (x # xs) y \<longleftrightarrow> x = y \<or> member xs y" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7429 |
"member [] y \<longleftrightarrow> False" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7430 |
by (auto simp add: member_def) |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7431 |
|
46030
51b2f3412a03
attribute code_abbrev superseedes code_unfold_post; tuned text
haftmann
parents:
45993
diff
changeset
|
7432 |
lemma in_set_member (* FIXME delete candidate *): |
37605
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7433 |
"x \<in> set xs \<longleftrightarrow> member xs x" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7434 |
by (simp add: member_def) |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7435 |
|
62328 | 7436 |
lemmas list_all_iff [code_abbrev] = fun_cong[OF list.pred_set] |
37605
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7437 |
|
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7438 |
definition list_ex :: "('a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> bool" where |
50548 | 7439 |
list_ex_iff [code_abbrev]: "list_ex P xs \<longleftrightarrow> Bex (set xs) P" |
46030
51b2f3412a03
attribute code_abbrev superseedes code_unfold_post; tuned text
haftmann
parents:
45993
diff
changeset
|
7440 |
|
51b2f3412a03
attribute code_abbrev superseedes code_unfold_post; tuned text
haftmann
parents:
45993
diff
changeset
|
7441 |
definition list_ex1 :: "('a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> bool" where |
50548 | 7442 |
list_ex1_iff [code_abbrev]: "list_ex1 P xs \<longleftrightarrow> (\<exists>! x. x \<in> set xs \<and> P x)" |
40652 | 7443 |
|
60758 | 7444 |
text \<open> |
61799 | 7445 |
Usually you should prefer \<open>\<forall>x\<in>set xs\<close>, \<open>\<exists>x\<in>set xs\<close> |
69593 | 7446 |
and \<open>\<exists>!x. x\<in>set xs \<and> _\<close> over \<^const>\<open>list_all\<close>, \<^const>\<open>list_ex\<close> |
7447 |
and \<^const>\<open>list_ex1\<close> in specifications. |
|
60758 | 7448 |
\<close> |
37605
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7449 |
|
56527
907f04603177
make list_all an abbreviation of pred_list - prevent duplication
kuncar
parents:
56525
diff
changeset
|
7450 |
lemma list_all_simps [code]: |
37605
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7451 |
"list_all P (x # xs) \<longleftrightarrow> P x \<and> list_all P xs" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7452 |
"list_all P [] \<longleftrightarrow> True" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7453 |
by (simp_all add: list_all_iff) |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7454 |
|
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7455 |
lemma list_ex_simps [simp, code]: |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7456 |
"list_ex P (x # xs) \<longleftrightarrow> P x \<or> list_ex P xs" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7457 |
"list_ex P [] \<longleftrightarrow> False" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7458 |
by (simp_all add: list_ex_iff) |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7459 |
|
40652 | 7460 |
lemma list_ex1_simps [simp, code]: |
7461 |
"list_ex1 P [] = False" |
|
7462 |
"list_ex1 P (x # xs) = (if P x then list_all (\<lambda>y. \<not> P y \<or> x = y) xs else list_ex1 P xs)" |
|
46030
51b2f3412a03
attribute code_abbrev superseedes code_unfold_post; tuned text
haftmann
parents:
45993
diff
changeset
|
7463 |
by (auto simp add: list_ex1_iff list_all_iff) |
51b2f3412a03
attribute code_abbrev superseedes code_unfold_post; tuned text
haftmann
parents:
45993
diff
changeset
|
7464 |
|
51b2f3412a03
attribute code_abbrev superseedes code_unfold_post; tuned text
haftmann
parents:
45993
diff
changeset
|
7465 |
lemma Ball_set_list_all: (* FIXME delete candidate *) |
37605
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7466 |
"Ball (set xs) P \<longleftrightarrow> list_all P xs" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7467 |
by (simp add: list_all_iff) |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7468 |
|
46030
51b2f3412a03
attribute code_abbrev superseedes code_unfold_post; tuned text
haftmann
parents:
45993
diff
changeset
|
7469 |
lemma Bex_set_list_ex: (* FIXME delete candidate *) |
37605
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7470 |
"Bex (set xs) P \<longleftrightarrow> list_ex P xs" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7471 |
by (simp add: list_ex_iff) |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7472 |
|
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7473 |
lemma list_all_append [simp]: |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7474 |
"list_all P (xs @ ys) \<longleftrightarrow> list_all P xs \<and> list_all P ys" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7475 |
by (auto simp add: list_all_iff) |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7476 |
|
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7477 |
lemma list_ex_append [simp]: |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7478 |
"list_ex P (xs @ ys) \<longleftrightarrow> list_ex P xs \<or> list_ex P ys" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7479 |
by (auto simp add: list_ex_iff) |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7480 |
|
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7481 |
lemma list_all_rev [simp]: |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7482 |
"list_all P (rev xs) \<longleftrightarrow> list_all P xs" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7483 |
by (simp add: list_all_iff) |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7484 |
|
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7485 |
lemma list_ex_rev [simp]: |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7486 |
"list_ex P (rev xs) \<longleftrightarrow> list_ex P xs" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7487 |
by (simp add: list_ex_iff) |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7488 |
|
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7489 |
lemma list_all_length: |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7490 |
"list_all P xs \<longleftrightarrow> (\<forall>n < length xs. P (xs ! n))" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7491 |
by (auto simp add: list_all_iff set_conv_nth) |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7492 |
|
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7493 |
lemma list_ex_length: |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7494 |
"list_ex P xs \<longleftrightarrow> (\<exists>n < length xs. P (xs ! n))" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7495 |
by (auto simp add: list_ex_iff set_conv_nth) |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7496 |
|
62328 | 7497 |
lemmas list_all_cong [fundef_cong] = list.pred_cong |
37605
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7498 |
|
47131 | 7499 |
lemma list_ex_cong [fundef_cong]: |
37605
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7500 |
"xs = ys \<Longrightarrow> (\<And>x. x \<in> set ys \<Longrightarrow> f x = g x) \<Longrightarrow> list_ex f xs = list_ex g ys" |
47131 | 7501 |
by (simp add: list_ex_iff) |
37605
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7502 |
|
50548 | 7503 |
definition can_select :: "('a \<Rightarrow> bool) \<Rightarrow> 'a set \<Rightarrow> bool" where |
7504 |
[code_abbrev]: "can_select P A = (\<exists>!x\<in>A. P x)" |
|
49948
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
7505 |
|
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
7506 |
lemma can_select_set_list_ex1 [code]: |
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
7507 |
"can_select P (set A) = list_ex1 P A" |
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
7508 |
by (simp add: list_ex1_iff can_select_def) |
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
7509 |
|
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
7510 |
|
60758 | 7511 |
text \<open>Executable checks for relations on sets\<close> |
46313 | 7512 |
|
7513 |
definition listrel1p :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> 'a list \<Rightarrow> bool" where |
|
7514 |
"listrel1p r xs ys = ((xs, ys) \<in> listrel1 {(x, y). r x y})" |
|
7515 |
||
7516 |
lemma [code_unfold]: |
|
7517 |
"(xs, ys) \<in> listrel1 r = listrel1p (\<lambda>x y. (x, y) \<in> r) xs ys" |
|
7518 |
unfolding listrel1p_def by auto |
|
7519 |
||
7520 |
lemma [code]: |
|
7521 |
"listrel1p r [] xs = False" |
|
7522 |
"listrel1p r xs [] = False" |
|
7523 |
"listrel1p r (x # xs) (y # ys) \<longleftrightarrow> |
|
7524 |
r x y \<and> xs = ys \<or> x = y \<and> listrel1p r xs ys" |
|
7525 |
by (simp add: listrel1p_def)+ |
|
7526 |
||
7527 |
definition |
|
7528 |
lexordp :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> 'a list \<Rightarrow> bool" where |
|
7529 |
"lexordp r xs ys = ((xs, ys) \<in> lexord {(x, y). r x y})" |
|
7530 |
||
7531 |
lemma [code_unfold]: |
|
7532 |
"(xs, ys) \<in> lexord r = lexordp (\<lambda>x y. (x, y) \<in> r) xs ys" |
|
7533 |
unfolding lexordp_def by auto |
|
7534 |
||
7535 |
lemma [code]: |
|
7536 |
"lexordp r xs [] = False" |
|
7537 |
"lexordp r [] (y#ys) = True" |
|
72184 | 7538 |
"lexordp r (x # xs) (y # ys) = (r x y \<or> (x = y \<and> lexordp r xs ys))" |
7539 |
unfolding lexordp_def by auto |
|
46313 | 7540 |
|
60758 | 7541 |
text \<open>Bounded quantification and summation over nats.\<close> |
37605
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7542 |
|
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7543 |
lemma atMost_upto [code_unfold]: |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7544 |
"{..n} = set [0..<Suc n]" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7545 |
by auto |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7546 |
|
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7547 |
lemma atLeast_upt [code_unfold]: |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7548 |
"{..<n} = set [0..<n]" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7549 |
by auto |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7550 |
|
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7551 |
lemma greaterThanLessThan_upt [code_unfold]: |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7552 |
"{n<..<m} = set [Suc n..<m]" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7553 |
by auto |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7554 |
|
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7555 |
lemmas atLeastLessThan_upt [code_unfold] = set_upt [symmetric] |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7556 |
|
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7557 |
lemma greaterThanAtMost_upt [code_unfold]: |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7558 |
"{n<..m} = set [Suc n..<Suc m]" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7559 |
by auto |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7560 |
|
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7561 |
lemma atLeastAtMost_upt [code_unfold]: |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7562 |
"{n..m} = set [n..<Suc m]" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7563 |
by auto |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7564 |
|
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7565 |
lemma all_nat_less_eq [code_unfold]: |
61076 | 7566 |
"(\<forall>m<n::nat. P m) \<longleftrightarrow> (\<forall>m \<in> {0..<n}. P m)" |
37605
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7567 |
by auto |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7568 |
|
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7569 |
lemma ex_nat_less_eq [code_unfold]: |
61076 | 7570 |
"(\<exists>m<n::nat. P m) \<longleftrightarrow> (\<exists>m \<in> {0..<n}. P m)" |
37605
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7571 |
by auto |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7572 |
|
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7573 |
lemma all_nat_less [code_unfold]: |
61076 | 7574 |
"(\<forall>m\<le>n::nat. P m) \<longleftrightarrow> (\<forall>m \<in> {0..n}. P m)" |
37605
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7575 |
by auto |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7576 |
|
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7577 |
lemma ex_nat_less [code_unfold]: |
61076 | 7578 |
"(\<exists>m\<le>n::nat. P m) \<longleftrightarrow> (\<exists>m \<in> {0..n}. P m)" |
37605
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7579 |
by auto |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7580 |
|
61799 | 7581 |
text\<open>Bounded \<open>LEAST\<close> operator:\<close> |
53954 | 7582 |
|
7583 |
definition "Bleast S P = (LEAST x. x \<in> S \<and> P x)" |
|
7584 |
||
7585 |
definition "abort_Bleast S P = (LEAST x. x \<in> S \<and> P x)" |
|
7586 |
||
54890
cb892d835803
fundamental treatment of undefined vs. universally partial replaces code_abort
haftmann
parents:
54885
diff
changeset
|
7587 |
declare [[code abort: abort_Bleast]] |
53954 | 7588 |
|
7589 |
lemma Bleast_code [code]: |
|
7590 |
"Bleast (set xs) P = (case filter P (sort xs) of |
|
7591 |
x#xs \<Rightarrow> x | |
|
7592 |
[] \<Rightarrow> abort_Bleast (set xs) P)" |
|
7593 |
proof (cases "filter P (sort xs)") |
|
7594 |
case Nil thus ?thesis by (simp add: Bleast_def abort_Bleast_def) |
|
7595 |
next |
|
7596 |
case (Cons x ys) |
|
7597 |
have "(LEAST x. x \<in> set xs \<and> P x) = x" |
|
7598 |
proof (rule Least_equality) |
|
7599 |
show "x \<in> set xs \<and> P x" |
|
7600 |
by (metis Cons Cons_eq_filter_iff in_set_conv_decomp set_sort) |
|
7601 |
next |
|
67613 | 7602 |
fix y assume "y \<in> set xs \<and> P y" |
7603 |
hence "y \<in> set (filter P xs)" by auto |
|
53954 | 7604 |
thus "x \<le> y" |
68109 | 7605 |
by (metis Cons eq_iff filter_sort set_ConsD set_sort sorted.simps(2) sorted_sort) |
53954 | 7606 |
qed |
7607 |
thus ?thesis using Cons by (simp add: Bleast_def) |
|
7608 |
qed |
|
7609 |
||
7610 |
declare Bleast_def[symmetric, code_unfold] |
|
7611 |
||
60758 | 7612 |
text \<open>Summation over ints.\<close> |
37605
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7613 |
|
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7614 |
lemma greaterThanLessThan_upto [code_unfold]: |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7615 |
"{i<..<j::int} = set [i+1..j - 1]" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7616 |
by auto |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7617 |
|
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7618 |
lemma atLeastLessThan_upto [code_unfold]: |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7619 |
"{i..<j::int} = set [i..j - 1]" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7620 |
by auto |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7621 |
|
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7622 |
lemma greaterThanAtMost_upto [code_unfold]: |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7623 |
"{i<..j::int} = set [i+1..j]" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7624 |
by auto |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7625 |
|
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7626 |
lemmas atLeastAtMost_upto [code_unfold] = set_upto [symmetric] |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7627 |
|
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7628 |
|
60758 | 7629 |
subsubsection \<open>Optimizing by rewriting\<close> |
37605
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7630 |
|
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7631 |
definition null :: "'a list \<Rightarrow> bool" where |
46030
51b2f3412a03
attribute code_abbrev superseedes code_unfold_post; tuned text
haftmann
parents:
45993
diff
changeset
|
7632 |
[code_abbrev]: "null xs \<longleftrightarrow> xs = []" |
37605
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7633 |
|
60758 | 7634 |
text \<open> |
69593 | 7635 |
Efficient emptyness check is implemented by \<^const>\<open>null\<close>. |
60758 | 7636 |
\<close> |
37605
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7637 |
|
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7638 |
lemma null_rec [code]: |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7639 |
"null (x # xs) \<longleftrightarrow> False" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7640 |
"null [] \<longleftrightarrow> True" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7641 |
by (simp_all add: null_def) |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7642 |
|
46030
51b2f3412a03
attribute code_abbrev superseedes code_unfold_post; tuned text
haftmann
parents:
45993
diff
changeset
|
7643 |
lemma eq_Nil_null: (* FIXME delete candidate *) |
37605
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7644 |
"xs = [] \<longleftrightarrow> null xs" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7645 |
by (simp add: null_def) |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7646 |
|
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7647 |
lemma equal_Nil_null [code_unfold]: |
38857
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
haftmann
parents:
38715
diff
changeset
|
7648 |
"HOL.equal xs [] \<longleftrightarrow> null xs" |
53940
36cf426cb1c6
Added symmetric code_unfold-lemmas for null and is_none
lammich <lammich@in.tum.de>
parents:
53721
diff
changeset
|
7649 |
"HOL.equal [] = null" |
36cf426cb1c6
Added symmetric code_unfold-lemmas for null and is_none
lammich <lammich@in.tum.de>
parents:
53721
diff
changeset
|
7650 |
by (auto simp add: equal null_def) |
37605
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7651 |
|
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7652 |
definition maps :: "('a \<Rightarrow> 'b list) \<Rightarrow> 'a list \<Rightarrow> 'b list" where |
46030
51b2f3412a03
attribute code_abbrev superseedes code_unfold_post; tuned text
haftmann
parents:
45993
diff
changeset
|
7653 |
[code_abbrev]: "maps f xs = concat (map f xs)" |
37605
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7654 |
|
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7655 |
definition map_filter :: "('a \<Rightarrow> 'b option) \<Rightarrow> 'a list \<Rightarrow> 'b list" where |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7656 |
[code_post]: "map_filter f xs = map (the \<circ> f) (filter (\<lambda>x. f x \<noteq> None) xs)" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7657 |
|
60758 | 7658 |
text \<open> |
69593 | 7659 |
Operations \<^const>\<open>maps\<close> and \<^const>\<open>map_filter\<close> avoid |
37605
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7660 |
intermediate lists on execution -- do not use for proving. |
60758 | 7661 |
\<close> |
37605
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7662 |
|
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7663 |
lemma maps_simps [code]: |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7664 |
"maps f (x # xs) = f x @ maps f xs" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7665 |
"maps f [] = []" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7666 |
by (simp_all add: maps_def) |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7667 |
|
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7668 |
lemma map_filter_simps [code]: |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7669 |
"map_filter f (x # xs) = (case f x of None \<Rightarrow> map_filter f xs | Some y \<Rightarrow> y # map_filter f xs)" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7670 |
"map_filter f [] = []" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7671 |
by (simp_all add: map_filter_def split: option.split) |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7672 |
|
46030
51b2f3412a03
attribute code_abbrev superseedes code_unfold_post; tuned text
haftmann
parents:
45993
diff
changeset
|
7673 |
lemma concat_map_maps: (* FIXME delete candidate *) |
37605
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7674 |
"concat (map f xs) = maps f xs" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7675 |
by (simp add: maps_def) |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7676 |
|
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7677 |
lemma map_filter_map_filter [code_unfold]: |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7678 |
"map f (filter P xs) = map_filter (\<lambda>x. if P x then Some (f x) else None) xs" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7679 |
by (simp add: map_filter_def) |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7680 |
|
61799 | 7681 |
text \<open>Optimized code for \<open>\<forall>i\<in>{a..b::int}\<close> and \<open>\<forall>n:{a..<b::nat}\<close> |
7682 |
and similiarly for \<open>\<exists>\<close>.\<close> |
|
37605
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7683 |
|
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7684 |
definition all_interval_nat :: "(nat \<Rightarrow> bool) \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> bool" where |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7685 |
"all_interval_nat P i j \<longleftrightarrow> (\<forall>n \<in> {i..<j}. P n)" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7686 |
|
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7687 |
lemma [code]: |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7688 |
"all_interval_nat P i j \<longleftrightarrow> i \<ge> j \<or> P i \<and> all_interval_nat P (Suc i) j" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7689 |
proof - |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7690 |
have *: "\<And>n. P i \<Longrightarrow> \<forall>n\<in>{Suc i..<j}. P n \<Longrightarrow> i \<le> n \<Longrightarrow> n < j \<Longrightarrow> P n" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7691 |
proof - |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7692 |
fix n |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7693 |
assume "P i" "\<forall>n\<in>{Suc i..<j}. P n" "i \<le> n" "n < j" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7694 |
then show "P n" by (cases "n = i") simp_all |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7695 |
qed |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7696 |
show ?thesis by (auto simp add: all_interval_nat_def intro: *) |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7697 |
qed |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7698 |
|
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7699 |
lemma list_all_iff_all_interval_nat [code_unfold]: |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7700 |
"list_all P [i..<j] \<longleftrightarrow> all_interval_nat P i j" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7701 |
by (simp add: list_all_iff all_interval_nat_def) |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7702 |
|
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7703 |
lemma list_ex_iff_not_all_inverval_nat [code_unfold]: |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7704 |
"list_ex P [i..<j] \<longleftrightarrow> \<not> (all_interval_nat (Not \<circ> P) i j)" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7705 |
by (simp add: list_ex_iff all_interval_nat_def) |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7706 |
|
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7707 |
definition all_interval_int :: "(int \<Rightarrow> bool) \<Rightarrow> int \<Rightarrow> int \<Rightarrow> bool" where |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7708 |
"all_interval_int P i j \<longleftrightarrow> (\<forall>k \<in> {i..j}. P k)" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7709 |
|
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7710 |
lemma [code]: |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7711 |
"all_interval_int P i j \<longleftrightarrow> i > j \<or> P i \<and> all_interval_int P (i + 1) j" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7712 |
proof - |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7713 |
have *: "\<And>k. P i \<Longrightarrow> \<forall>k\<in>{i+1..j}. P k \<Longrightarrow> i \<le> k \<Longrightarrow> k \<le> j \<Longrightarrow> P k" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7714 |
proof - |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7715 |
fix k |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7716 |
assume "P i" "\<forall>k\<in>{i+1..j}. P k" "i \<le> k" "k \<le> j" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7717 |
then show "P k" by (cases "k = i") simp_all |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7718 |
qed |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7719 |
show ?thesis by (auto simp add: all_interval_int_def intro: *) |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7720 |
qed |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7721 |
|
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7722 |
lemma list_all_iff_all_interval_int [code_unfold]: |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7723 |
"list_all P [i..j] \<longleftrightarrow> all_interval_int P i j" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7724 |
by (simp add: list_all_iff all_interval_int_def) |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7725 |
|
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7726 |
lemma list_ex_iff_not_all_inverval_int [code_unfold]: |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7727 |
"list_ex P [i..j] \<longleftrightarrow> \<not> (all_interval_int (Not \<circ> P) i j)" |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7728 |
by (simp add: list_ex_iff all_interval_int_def) |
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7729 |
|
69593 | 7730 |
text \<open>optimized code (tail-recursive) for \<^term>\<open>length\<close>\<close> |
49808
418991ce7567
tail-recursive implementation for length
Andreas Lochbihler
parents:
49757
diff
changeset
|
7731 |
|
418991ce7567
tail-recursive implementation for length
Andreas Lochbihler
parents:
49757
diff
changeset
|
7732 |
definition gen_length :: "nat \<Rightarrow> 'a list \<Rightarrow> nat" |
418991ce7567
tail-recursive implementation for length
Andreas Lochbihler
parents:
49757
diff
changeset
|
7733 |
where "gen_length n xs = n + length xs" |
418991ce7567
tail-recursive implementation for length
Andreas Lochbihler
parents:
49757
diff
changeset
|
7734 |
|
418991ce7567
tail-recursive implementation for length
Andreas Lochbihler
parents:
49757
diff
changeset
|
7735 |
lemma gen_length_code [code]: |
418991ce7567
tail-recursive implementation for length
Andreas Lochbihler
parents:
49757
diff
changeset
|
7736 |
"gen_length n [] = n" |
418991ce7567
tail-recursive implementation for length
Andreas Lochbihler
parents:
49757
diff
changeset
|
7737 |
"gen_length n (x # xs) = gen_length (Suc n) xs" |
418991ce7567
tail-recursive implementation for length
Andreas Lochbihler
parents:
49757
diff
changeset
|
7738 |
by(simp_all add: gen_length_def) |
418991ce7567
tail-recursive implementation for length
Andreas Lochbihler
parents:
49757
diff
changeset
|
7739 |
|
418991ce7567
tail-recursive implementation for length
Andreas Lochbihler
parents:
49757
diff
changeset
|
7740 |
declare list.size(3-4)[code del] |
418991ce7567
tail-recursive implementation for length
Andreas Lochbihler
parents:
49757
diff
changeset
|
7741 |
|
418991ce7567
tail-recursive implementation for length
Andreas Lochbihler
parents:
49757
diff
changeset
|
7742 |
lemma length_code [code]: "length = gen_length 0" |
418991ce7567
tail-recursive implementation for length
Andreas Lochbihler
parents:
49757
diff
changeset
|
7743 |
by(simp add: gen_length_def fun_eq_iff) |
418991ce7567
tail-recursive implementation for length
Andreas Lochbihler
parents:
49757
diff
changeset
|
7744 |
|
418991ce7567
tail-recursive implementation for length
Andreas Lochbihler
parents:
49757
diff
changeset
|
7745 |
hide_const (open) member null maps map_filter all_interval_nat all_interval_int gen_length |
37605
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7746 |
|
49948
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
7747 |
|
60758 | 7748 |
subsubsection \<open>Pretty lists\<close> |
7749 |
||
7750 |
ML \<open> |
|
50422
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
7751 |
(* Code generation for list literals. *) |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
7752 |
|
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
7753 |
signature LIST_CODE = |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
7754 |
sig |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
7755 |
val add_literal_list: string -> theory -> theory |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
7756 |
end; |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
7757 |
|
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
7758 |
structure List_Code : LIST_CODE = |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
7759 |
struct |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
7760 |
|
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
7761 |
open Basic_Code_Thingol; |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
7762 |
|
55148
7e1b7cb54114
avoid (now superfluous) indirect passing of constant names
haftmann
parents:
55147
diff
changeset
|
7763 |
fun implode_list t = |
50422
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
7764 |
let |
69593 | 7765 |
fun dest_cons (IConst { sym = Code_Symbol.Constant \<^const_name>\<open>Cons\<close>, ... } `$ t1 `$ t2) = SOME (t1, t2) |
50422
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
7766 |
| dest_cons _ = NONE; |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
7767 |
val (ts, t') = Code_Thingol.unfoldr dest_cons t; |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
7768 |
in case t' |
69593 | 7769 |
of IConst { sym = Code_Symbol.Constant \<^const_name>\<open>Nil\<close>, ... } => SOME ts |
50422
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
7770 |
| _ => NONE |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
7771 |
end; |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
7772 |
|
68028 | 7773 |
fun print_list (target_fxy, target_cons) pr fxy t1 t2 = |
50422
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
7774 |
Code_Printer.brackify_infix (target_fxy, Code_Printer.R) fxy ( |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
7775 |
pr (Code_Printer.INFX (target_fxy, Code_Printer.X)) t1, |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
7776 |
Code_Printer.str target_cons, |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
7777 |
pr (Code_Printer.INFX (target_fxy, Code_Printer.R)) t2 |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
7778 |
); |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
7779 |
|
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
7780 |
fun add_literal_list target = |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
7781 |
let |
55148
7e1b7cb54114
avoid (now superfluous) indirect passing of constant names
haftmann
parents:
55147
diff
changeset
|
7782 |
fun pretty literals pr _ vars fxy [(t1, _), (t2, _)] = |
7e1b7cb54114
avoid (now superfluous) indirect passing of constant names
haftmann
parents:
55147
diff
changeset
|
7783 |
case Option.map (cons t1) (implode_list t2) |
50422
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
7784 |
of SOME ts => |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
7785 |
Code_Printer.literal_list literals (map (pr vars Code_Printer.NOBR) ts) |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
7786 |
| NONE => |
68028 | 7787 |
print_list (Code_Printer.infix_cons literals) (pr vars) fxy t1 t2; |
52435
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7788 |
in |
69593 | 7789 |
Code_Target.set_printings (Code_Symbol.Constant (\<^const_name>\<open>Cons\<close>, |
55148
7e1b7cb54114
avoid (now superfluous) indirect passing of constant names
haftmann
parents:
55147
diff
changeset
|
7790 |
[(target, SOME (Code_Printer.complex_const_syntax (2, pretty)))])) |
50422
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
7791 |
end |
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
7792 |
|
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents:
50134
diff
changeset
|
7793 |
end; |
60758 | 7794 |
\<close> |
31055
2cf6efca6c71
proper structures for list and string code generation stuff
haftmann
parents:
31048
diff
changeset
|
7795 |
|
52435
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7796 |
code_printing |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7797 |
type_constructor list \<rightharpoonup> |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7798 |
(SML) "_ list" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7799 |
and (OCaml) "_ list" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7800 |
and (Haskell) "![(_)]" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7801 |
and (Scala) "List[(_)]" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7802 |
| constant Nil \<rightharpoonup> |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7803 |
(SML) "[]" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7804 |
and (OCaml) "[]" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7805 |
and (Haskell) "[]" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7806 |
and (Scala) "!Nil" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7807 |
| class_instance list :: equal \<rightharpoonup> |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7808 |
(Haskell) - |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7809 |
| constant "HOL.equal :: 'a list \<Rightarrow> 'a list \<Rightarrow> bool" \<rightharpoonup> |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7810 |
(Haskell) infix 4 "==" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7811 |
|
60758 | 7812 |
setup \<open>fold (List_Code.add_literal_list) ["SML", "OCaml", "Haskell", "Scala"]\<close> |
31048
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
31022
diff
changeset
|
7813 |
|
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
31022
diff
changeset
|
7814 |
code_reserved SML |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
31022
diff
changeset
|
7815 |
list |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
31022
diff
changeset
|
7816 |
|
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
31022
diff
changeset
|
7817 |
code_reserved OCaml |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
31022
diff
changeset
|
7818 |
list |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
31022
diff
changeset
|
7819 |
|
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
7820 |
|
60758 | 7821 |
subsubsection \<open>Use convenient predefined operations\<close> |
37424
ed431cc99f17
use various predefined Haskell operations when generating code
haftmann
parents:
37408
diff
changeset
|
7822 |
|
52435
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7823 |
code_printing |
67399 | 7824 |
constant "(@)" \<rightharpoonup> |
52435
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7825 |
(SML) infixr 7 "@" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7826 |
and (OCaml) infixr 6 "@" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7827 |
and (Haskell) infixr 5 "++" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7828 |
and (Scala) infixl 7 "++" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7829 |
| constant map \<rightharpoonup> |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7830 |
(Haskell) "map" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7831 |
| constant filter \<rightharpoonup> |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7832 |
(Haskell) "filter" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7833 |
| constant concat \<rightharpoonup> |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7834 |
(Haskell) "concat" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7835 |
| constant List.maps \<rightharpoonup> |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7836 |
(Haskell) "concatMap" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7837 |
| constant rev \<rightharpoonup> |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7838 |
(Haskell) "reverse" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7839 |
| constant zip \<rightharpoonup> |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7840 |
(Haskell) "zip" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7841 |
| constant List.null \<rightharpoonup> |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7842 |
(Haskell) "null" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7843 |
| constant takeWhile \<rightharpoonup> |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7844 |
(Haskell) "takeWhile" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7845 |
| constant dropWhile \<rightharpoonup> |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7846 |
(Haskell) "dropWhile" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7847 |
| constant list_all \<rightharpoonup> |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7848 |
(Haskell) "all" |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7849 |
| constant list_ex \<rightharpoonup> |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52380
diff
changeset
|
7850 |
(Haskell) "any" |
37605
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents:
37465
diff
changeset
|
7851 |
|
46147
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7852 |
|
60758 | 7853 |
subsubsection \<open>Implementation of sets by lists\<close> |
46147
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7854 |
|
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7855 |
lemma is_empty_set [code]: |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7856 |
"Set.is_empty (set xs) \<longleftrightarrow> List.null xs" |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7857 |
by (simp add: Set.is_empty_def null_def) |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7858 |
|
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7859 |
lemma empty_set [code]: |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7860 |
"{} = set []" |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7861 |
by simp |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7862 |
|
46156 | 7863 |
lemma UNIV_coset [code]: |
7864 |
"UNIV = List.coset []" |
|
7865 |
by simp |
|
7866 |
||
7867 |
lemma compl_set [code]: |
|
7868 |
"- set xs = List.coset xs" |
|
7869 |
by simp |
|
7870 |
||
7871 |
lemma compl_coset [code]: |
|
7872 |
"- List.coset xs = set xs" |
|
7873 |
by simp |
|
7874 |
||
46147
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7875 |
lemma [code]: |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7876 |
"x \<in> set xs \<longleftrightarrow> List.member xs x" |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7877 |
"x \<in> List.coset xs \<longleftrightarrow> \<not> List.member xs x" |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7878 |
by (simp_all add: member_def) |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7879 |
|
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7880 |
lemma insert_code [code]: |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7881 |
"insert x (set xs) = set (List.insert x xs)" |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7882 |
"insert x (List.coset xs) = List.coset (removeAll x xs)" |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7883 |
by simp_all |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7884 |
|
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7885 |
lemma remove_code [code]: |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7886 |
"Set.remove x (set xs) = set (removeAll x xs)" |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7887 |
"Set.remove x (List.coset xs) = List.coset (List.insert x xs)" |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7888 |
by (simp_all add: remove_def Compl_insert) |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7889 |
|
49757
73ab6d4a9236
rename Set.project to Set.filter - more appropriate name
kuncar
parents:
49739
diff
changeset
|
7890 |
lemma filter_set [code]: |
73ab6d4a9236
rename Set.project to Set.filter - more appropriate name
kuncar
parents:
49739
diff
changeset
|
7891 |
"Set.filter P (set xs) = set (filter P xs)" |
46156 | 7892 |
by auto |
7893 |
||
7894 |
lemma image_set [code]: |
|
7895 |
"image f (set xs) = set (map f xs)" |
|
7896 |
by simp |
|
7897 |
||
47398 | 7898 |
lemma subset_code [code]: |
7899 |
"set xs \<le> B \<longleftrightarrow> (\<forall>x\<in>set xs. x \<in> B)" |
|
7900 |
"A \<le> List.coset ys \<longleftrightarrow> (\<forall>y\<in>set ys. y \<notin> A)" |
|
68709 | 7901 |
"List.coset [] \<subseteq> set [] \<longleftrightarrow> False" |
47398 | 7902 |
by auto |
7903 |
||
60758 | 7904 |
text \<open>A frequent case -- avoid intermediate sets\<close> |
47398 | 7905 |
lemma [code_unfold]: |
7906 |
"set xs \<subseteq> set ys \<longleftrightarrow> list_all (\<lambda>x. x \<in> set ys) xs" |
|
7907 |
by (auto simp: list_all_iff) |
|
7908 |
||
46147
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7909 |
lemma Ball_set [code]: |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7910 |
"Ball (set xs) P \<longleftrightarrow> list_all P xs" |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7911 |
by (simp add: list_all_iff) |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7912 |
|
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7913 |
lemma Bex_set [code]: |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7914 |
"Bex (set xs) P \<longleftrightarrow> list_ex P xs" |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7915 |
by (simp add: list_ex_iff) |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7916 |
|
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7917 |
lemma card_set [code]: |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7918 |
"card (set xs) = length (remdups xs)" |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7919 |
proof - |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7920 |
have "card (set (remdups xs)) = length (remdups xs)" |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7921 |
by (rule distinct_card) simp |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7922 |
then show ?thesis by simp |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7923 |
qed |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7924 |
|
46156 | 7925 |
lemma the_elem_set [code]: |
7926 |
"the_elem (set [x]) = x" |
|
7927 |
by simp |
|
7928 |
||
7929 |
lemma Pow_set [code]: |
|
7930 |
"Pow (set []) = {{}}" |
|
7931 |
"Pow (set (x # xs)) = (let A = Pow (set xs) in A \<union> insert x ` A)" |
|
7932 |
by (simp_all add: Pow_insert Let_def) |
|
7933 |
||
46424
b447318e5e1a
adding code equation for Relation.image; adding map_project as correspondence to map_filter on lists
bulwahn
parents:
46418
diff
changeset
|
7934 |
definition map_project :: "('a \<Rightarrow> 'b option) \<Rightarrow> 'a set \<Rightarrow> 'b set" where |
b447318e5e1a
adding code equation for Relation.image; adding map_project as correspondence to map_filter on lists
bulwahn
parents:
46418
diff
changeset
|
7935 |
"map_project f A = {b. \<exists> a \<in> A. f a = Some b}" |
b447318e5e1a
adding code equation for Relation.image; adding map_project as correspondence to map_filter on lists
bulwahn
parents:
46418
diff
changeset
|
7936 |
|
b447318e5e1a
adding code equation for Relation.image; adding map_project as correspondence to map_filter on lists
bulwahn
parents:
46418
diff
changeset
|
7937 |
lemma [code]: |
b447318e5e1a
adding code equation for Relation.image; adding map_project as correspondence to map_filter on lists
bulwahn
parents:
46418
diff
changeset
|
7938 |
"map_project f (set xs) = set (List.map_filter f xs)" |
47398 | 7939 |
by (auto simp add: map_project_def map_filter_def image_def) |
46424
b447318e5e1a
adding code equation for Relation.image; adding map_project as correspondence to map_filter on lists
bulwahn
parents:
46418
diff
changeset
|
7940 |
|
b447318e5e1a
adding code equation for Relation.image; adding map_project as correspondence to map_filter on lists
bulwahn
parents:
46418
diff
changeset
|
7941 |
hide_const (open) map_project |
b447318e5e1a
adding code equation for Relation.image; adding map_project as correspondence to map_filter on lists
bulwahn
parents:
46418
diff
changeset
|
7942 |
|
49948
744934b818c7
moved quite generic material from theory Enum to more appropriate places
haftmann
parents:
49808
diff
changeset
|
7943 |
|
60758 | 7944 |
text \<open>Operations on relations\<close> |
46147
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7945 |
|
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7946 |
lemma product_code [code]: |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7947 |
"Product_Type.product (set xs) (set ys) = set [(x, y). x \<leftarrow> xs, y \<leftarrow> ys]" |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7948 |
by (auto simp add: Product_Type.product_def) |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7949 |
|
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7950 |
lemma Id_on_set [code]: |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7951 |
"Id_on (set xs) = set [(x, x). x \<leftarrow> xs]" |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7952 |
by (auto simp add: Id_on_def) |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7953 |
|
46424
b447318e5e1a
adding code equation for Relation.image; adding map_project as correspondence to map_filter on lists
bulwahn
parents:
46418
diff
changeset
|
7954 |
lemma [code]: |
67613 | 7955 |
"R `` S = List.map_project (\<lambda>(x, y). if x \<in> S then Some y else None) R" |
62390 | 7956 |
unfolding map_project_def by (auto split: prod.split if_split_asm) |
46424
b447318e5e1a
adding code equation for Relation.image; adding map_project as correspondence to map_filter on lists
bulwahn
parents:
46418
diff
changeset
|
7957 |
|
46147
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7958 |
lemma trancl_set_ntrancl [code]: |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7959 |
"trancl (set xs) = ntrancl (card (set xs) - 1) (set xs)" |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7960 |
by (simp add: finite_trancl_ntranl) |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7961 |
|
47433
07f4bf913230
renamed "rel_comp" to "relcomp" (to be consistent with, e.g., "relpow")
griff
parents:
47131
diff
changeset
|
7962 |
lemma set_relcomp [code]: |
46147
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7963 |
"set xys O set yzs = set ([(fst xy, snd yz). xy \<leftarrow> xys, yz \<leftarrow> yzs, snd xy = fst yz])" |
62343
24106dc44def
prefer abbreviations for compound operators INFIMUM and SUPREMUM
haftmann
parents:
62328
diff
changeset
|
7964 |
by auto (auto simp add: Bex_def image_def) |
46147
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7965 |
|
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7966 |
lemma wf_set [code]: |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7967 |
"wf (set xs) = acyclic (set xs)" |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7968 |
by (simp add: wf_iff_acyclic_if_finite) |
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
haftmann
parents:
46143
diff
changeset
|
7969 |
|
55129
26bd1cba3ab5
killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents:
54890
diff
changeset
|
7970 |
|
60758 | 7971 |
subsection \<open>Setup for Lifting/Transfer\<close> |
7972 |
||
7973 |
subsubsection \<open>Transfer rules for the Transfer package\<close> |
|
53012
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
7974 |
|
63343 | 7975 |
context includes lifting_syntax |
53012
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
7976 |
begin |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
7977 |
|
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
7978 |
lemma tl_transfer [transfer_rule]: |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
7979 |
"(list_all2 A ===> list_all2 A) tl tl" |
55405
0a155051bd9d
use new selector support to define 'the', 'hd', 'tl'
blanchet
parents:
55404
diff
changeset
|
7980 |
unfolding tl_def[abs_def] by transfer_prover |
53012
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
7981 |
|
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
7982 |
lemma butlast_transfer [transfer_rule]: |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
7983 |
"(list_all2 A ===> list_all2 A) butlast butlast" |
55945 | 7984 |
by (rule rel_funI, erule list_all2_induct, auto) |
53012
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
7985 |
|
55465 | 7986 |
lemma map_rec: "map f xs = rec_list Nil (%x _ y. Cons (f x) y) xs" |
7987 |
by (induct xs) auto |
|
7988 |
||
53012
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
7989 |
lemma append_transfer [transfer_rule]: |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
7990 |
"(list_all2 A ===> list_all2 A ===> list_all2 A) append append" |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
7991 |
unfolding List.append_def by transfer_prover |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
7992 |
|
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
7993 |
lemma rev_transfer [transfer_rule]: |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
7994 |
"(list_all2 A ===> list_all2 A) rev rev" |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
7995 |
unfolding List.rev_def by transfer_prover |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
7996 |
|
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
7997 |
lemma filter_transfer [transfer_rule]: |
67399 | 7998 |
"((A ===> (=)) ===> list_all2 A ===> list_all2 A) filter filter" |
53012
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
7999 |
unfolding List.filter_def by transfer_prover |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8000 |
|
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8001 |
lemma fold_transfer [transfer_rule]: |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8002 |
"((A ===> B ===> B) ===> list_all2 A ===> B ===> B) fold fold" |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8003 |
unfolding List.fold_def by transfer_prover |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8004 |
|
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8005 |
lemma foldr_transfer [transfer_rule]: |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8006 |
"((A ===> B ===> B) ===> list_all2 A ===> B ===> B) foldr foldr" |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8007 |
unfolding List.foldr_def by transfer_prover |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8008 |
|
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8009 |
lemma foldl_transfer [transfer_rule]: |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8010 |
"((B ===> A ===> B) ===> B ===> list_all2 A ===> B) foldl foldl" |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8011 |
unfolding List.foldl_def by transfer_prover |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8012 |
|
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8013 |
lemma concat_transfer [transfer_rule]: |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8014 |
"(list_all2 (list_all2 A) ===> list_all2 A) concat concat" |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8015 |
unfolding List.concat_def by transfer_prover |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8016 |
|
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8017 |
lemma drop_transfer [transfer_rule]: |
67399 | 8018 |
"((=) ===> list_all2 A ===> list_all2 A) drop drop" |
53012
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8019 |
unfolding List.drop_def by transfer_prover |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8020 |
|
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8021 |
lemma take_transfer [transfer_rule]: |
67399 | 8022 |
"((=) ===> list_all2 A ===> list_all2 A) take take" |
53012
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8023 |
unfolding List.take_def by transfer_prover |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8024 |
|
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8025 |
lemma list_update_transfer [transfer_rule]: |
67399 | 8026 |
"(list_all2 A ===> (=) ===> A ===> list_all2 A) list_update list_update" |
53012
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8027 |
unfolding list_update_def by transfer_prover |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8028 |
|
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8029 |
lemma takeWhile_transfer [transfer_rule]: |
67399 | 8030 |
"((A ===> (=)) ===> list_all2 A ===> list_all2 A) takeWhile takeWhile" |
53012
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8031 |
unfolding takeWhile_def by transfer_prover |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8032 |
|
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8033 |
lemma dropWhile_transfer [transfer_rule]: |
67399 | 8034 |
"((A ===> (=)) ===> list_all2 A ===> list_all2 A) dropWhile dropWhile" |
53012
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8035 |
unfolding dropWhile_def by transfer_prover |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8036 |
|
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8037 |
lemma zip_transfer [transfer_rule]: |
55944 | 8038 |
"(list_all2 A ===> list_all2 B ===> list_all2 (rel_prod A B)) zip zip" |
53012
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8039 |
unfolding zip_def by transfer_prover |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8040 |
|
53721
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
8041 |
lemma product_transfer [transfer_rule]: |
55944 | 8042 |
"(list_all2 A ===> list_all2 B ===> list_all2 (rel_prod A B)) List.product List.product" |
53721
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
8043 |
unfolding List.product_def by transfer_prover |
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
8044 |
|
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
8045 |
lemma product_lists_transfer [transfer_rule]: |
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
8046 |
"(list_all2 (list_all2 A) ===> list_all2 (list_all2 A)) product_lists product_lists" |
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
8047 |
unfolding product_lists_def by transfer_prover |
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
8048 |
|
53012
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8049 |
lemma insert_transfer [transfer_rule]: |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8050 |
assumes [transfer_rule]: "bi_unique A" |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8051 |
shows "(A ===> list_all2 A ===> list_all2 A) List.insert List.insert" |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8052 |
unfolding List.insert_def [abs_def] by transfer_prover |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8053 |
|
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8054 |
lemma find_transfer [transfer_rule]: |
67399 | 8055 |
"((A ===> (=)) ===> list_all2 A ===> rel_option A) List.find List.find" |
53012
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8056 |
unfolding List.find_def by transfer_prover |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8057 |
|
63521
32da860241b8
added missing transfer rule
Lars Hupel <lars.hupel@mytum.de>
parents:
63365
diff
changeset
|
8058 |
lemma those_transfer [transfer_rule]: |
32da860241b8
added missing transfer rule
Lars Hupel <lars.hupel@mytum.de>
parents:
63365
diff
changeset
|
8059 |
"(list_all2 (rel_option P) ===> rel_option (list_all2 P)) those those" |
32da860241b8
added missing transfer rule
Lars Hupel <lars.hupel@mytum.de>
parents:
63365
diff
changeset
|
8060 |
unfolding List.those_def by transfer_prover |
32da860241b8
added missing transfer rule
Lars Hupel <lars.hupel@mytum.de>
parents:
63365
diff
changeset
|
8061 |
|
53012
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8062 |
lemma remove1_transfer [transfer_rule]: |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8063 |
assumes [transfer_rule]: "bi_unique A" |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8064 |
shows "(A ===> list_all2 A ===> list_all2 A) remove1 remove1" |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8065 |
unfolding remove1_def by transfer_prover |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8066 |
|
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8067 |
lemma removeAll_transfer [transfer_rule]: |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8068 |
assumes [transfer_rule]: "bi_unique A" |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8069 |
shows "(A ===> list_all2 A ===> list_all2 A) removeAll removeAll" |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8070 |
unfolding removeAll_def by transfer_prover |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8071 |
|
71779 | 8072 |
lemma successively_transfer [transfer_rule]: |
8073 |
"((A ===> A ===> (=)) ===> list_all2 A ===> (=)) successively successively" |
|
8074 |
unfolding successively_altdef by transfer_prover |
|
8075 |
||
53012
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8076 |
lemma distinct_transfer [transfer_rule]: |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8077 |
assumes [transfer_rule]: "bi_unique A" |
67399 | 8078 |
shows "(list_all2 A ===> (=)) distinct distinct" |
53012
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8079 |
unfolding distinct_def by transfer_prover |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8080 |
|
71779 | 8081 |
lemma distinct_adj_transfer [transfer_rule]: |
8082 |
assumes "bi_unique A" |
|
8083 |
shows "(list_all2 A ===> (=)) distinct_adj distinct_adj" |
|
8084 |
unfolding rel_fun_def |
|
8085 |
proof (intro allI impI) |
|
8086 |
fix xs ys assume "list_all2 A xs ys" |
|
8087 |
thus "distinct_adj xs \<longleftrightarrow> distinct_adj ys" |
|
8088 |
proof (induction rule: list_all2_induct) |
|
8089 |
case (Cons x xs y ys) |
|
8090 |
note * = this |
|
8091 |
show ?case |
|
8092 |
proof (cases xs) |
|
8093 |
case [simp]: (Cons x' xs') |
|
8094 |
with * obtain y' ys' where [simp]: "ys = y' # ys'" |
|
8095 |
by (cases ys) auto |
|
8096 |
from * show ?thesis |
|
8097 |
using assms by (auto simp: distinct_adj_Cons bi_unique_def) |
|
8098 |
qed (use * in auto) |
|
8099 |
qed auto |
|
8100 |
qed |
|
8101 |
||
53012
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8102 |
lemma remdups_transfer [transfer_rule]: |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8103 |
assumes [transfer_rule]: "bi_unique A" |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8104 |
shows "(list_all2 A ===> list_all2 A) remdups remdups" |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8105 |
unfolding remdups_def by transfer_prover |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8106 |
|
53721
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
8107 |
lemma remdups_adj_transfer [transfer_rule]: |
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
8108 |
assumes [transfer_rule]: "bi_unique A" |
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
8109 |
shows "(list_all2 A ===> list_all2 A) remdups_adj remdups_adj" |
55945 | 8110 |
proof (rule rel_funI, erule list_all2_induct) |
53721
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
8111 |
qed (auto simp: remdups_adj_Cons assms[unfolded bi_unique_def] split: list.splits) |
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
traytel
parents:
53689
diff
changeset
|
8112 |
|
53012
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8113 |
lemma replicate_transfer [transfer_rule]: |
67399 | 8114 |
"((=) ===> A ===> list_all2 A) replicate replicate" |
53012
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8115 |
unfolding replicate_def by transfer_prover |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8116 |
|
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8117 |
lemma length_transfer [transfer_rule]: |
67399 | 8118 |
"(list_all2 A ===> (=)) length length" |
56643
41d3596d8a64
move size hooks together, with new one preceding old one and sharing same theory data
blanchet
parents:
56545
diff
changeset
|
8119 |
unfolding size_list_overloaded_def size_list_def by transfer_prover |
53012
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8120 |
|
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8121 |
lemma rotate1_transfer [transfer_rule]: |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8122 |
"(list_all2 A ===> list_all2 A) rotate1 rotate1" |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8123 |
unfolding rotate1_def by transfer_prover |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8124 |
|
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8125 |
lemma rotate_transfer [transfer_rule]: |
67399 | 8126 |
"((=) ===> list_all2 A ===> list_all2 A) rotate rotate" |
53012
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8127 |
unfolding rotate_def [abs_def] by transfer_prover |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8128 |
|
65956
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
8129 |
lemma nths_transfer [transfer_rule]: |
67399 | 8130 |
"(list_all2 A ===> rel_set (=) ===> list_all2 A) nths nths" |
65956
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
8131 |
unfolding nths_def [abs_def] by transfer_prover |
66892 | 8132 |
|
65956
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
8133 |
lemma subseqs_transfer [transfer_rule]: |
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
8134 |
"(list_all2 A ===> list_all2 (list_all2 A)) subseqs subseqs" |
639eb3617a86
reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents:
65350
diff
changeset
|
8135 |
unfolding subseqs_def [abs_def] by transfer_prover |
53012
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8136 |
|
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8137 |
lemma partition_transfer [transfer_rule]: |
67399 | 8138 |
"((A ===> (=)) ===> list_all2 A ===> rel_prod (list_all2 A) (list_all2 A)) |
53012
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8139 |
partition partition" |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8140 |
unfolding partition_def by transfer_prover |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8141 |
|
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8142 |
lemma lists_transfer [transfer_rule]: |
55938 | 8143 |
"(rel_set A ===> rel_set (list_all2 A)) lists lists" |
71813 | 8144 |
proof (rule rel_funI, rule rel_setI) |
8145 |
show "\<lbrakk>l \<in> lists X; rel_set A X Y\<rbrakk> \<Longrightarrow> \<exists>y\<in>lists Y. list_all2 A l y" for X Y l |
|
8146 |
proof (induction l rule: lists.induct) |
|
8147 |
case (Cons a l) |
|
8148 |
then show ?case |
|
8149 |
by (simp only: rel_set_def list_all2_Cons1, metis lists.Cons) |
|
8150 |
qed auto |
|
8151 |
show "\<lbrakk>l \<in> lists Y; rel_set A X Y\<rbrakk> \<Longrightarrow> \<exists>x\<in>lists X. list_all2 A x l" for X Y l |
|
8152 |
proof (induction l rule: lists.induct) |
|
8153 |
case (Cons a l) |
|
8154 |
then show ?case |
|
8155 |
by (simp only: rel_set_def list_all2_Cons2, metis lists.Cons) |
|
8156 |
qed auto |
|
8157 |
qed |
|
53012
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8158 |
|
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8159 |
lemma set_Cons_transfer [transfer_rule]: |
55938 | 8160 |
"(rel_set A ===> rel_set (list_all2 A) ===> rel_set (list_all2 A)) |
53012
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8161 |
set_Cons set_Cons" |
55945 | 8162 |
unfolding rel_fun_def rel_set_def set_Cons_def |
68719 | 8163 |
by (fastforce simp add: list_all2_Cons1 list_all2_Cons2) |
53012
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8164 |
|
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8165 |
lemma listset_transfer [transfer_rule]: |
55938 | 8166 |
"(list_all2 (rel_set A) ===> rel_set (list_all2 A)) listset listset" |
53012
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8167 |
unfolding listset_def by transfer_prover |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8168 |
|
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8169 |
lemma null_transfer [transfer_rule]: |
67399 | 8170 |
"(list_all2 A ===> (=)) List.null List.null" |
55945 | 8171 |
unfolding rel_fun_def List.null_def by auto |
53012
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8172 |
|
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8173 |
lemma list_all_transfer [transfer_rule]: |
67399 | 8174 |
"((A ===> (=)) ===> list_all2 A ===> (=)) list_all list_all" |
53012
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8175 |
unfolding list_all_iff [abs_def] by transfer_prover |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8176 |
|
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8177 |
lemma list_ex_transfer [transfer_rule]: |
67399 | 8178 |
"((A ===> (=)) ===> list_all2 A ===> (=)) list_ex list_ex" |
53012
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8179 |
unfolding list_ex_iff [abs_def] by transfer_prover |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8180 |
|
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8181 |
lemma splice_transfer [transfer_rule]: |
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8182 |
"(list_all2 A ===> list_all2 A ===> list_all2 A) splice splice" |
55945 | 8183 |
apply (rule rel_funI, erule list_all2_induct, simp add: rel_fun_def, simp) |
8184 |
apply (rule rel_funI) |
|
8185 |
apply (erule_tac xs=x in list_all2_induct, simp, simp add: rel_fun_def) |
|
53012
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8186 |
done |
66892 | 8187 |
|
69107 | 8188 |
lemma shuffles_transfer [transfer_rule]: |
8189 |
"(list_all2 A ===> list_all2 A ===> rel_set (list_all2 A)) shuffles shuffles" |
|
65350
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
8190 |
proof (intro rel_funI, goal_cases) |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
8191 |
case (1 xs xs' ys ys') |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
8192 |
thus ?case |
69107 | 8193 |
proof (induction xs ys arbitrary: xs' ys' rule: shuffles.induct) |
65350
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
8194 |
case (3 x xs y ys xs' ys') |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
8195 |
from "3.prems" obtain x' xs'' where xs': "xs' = x' # xs''" by (cases xs') auto |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
8196 |
from "3.prems" obtain y' ys'' where ys': "ys' = y' # ys''" by (cases ys') auto |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
8197 |
have [transfer_rule]: "A x x'" "A y y'" "list_all2 A xs xs''" "list_all2 A ys ys''" |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
8198 |
using "3.prems" by (simp_all add: xs' ys') |
69107 | 8199 |
have [transfer_rule]: "rel_set (list_all2 A) (shuffles xs (y # ys)) (shuffles xs'' ys')" and |
8200 |
[transfer_rule]: "rel_set (list_all2 A) (shuffles (x # xs) ys) (shuffles xs' ys'')" |
|
65350
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
8201 |
using "3.prems" by (auto intro!: "3.IH" simp: xs' ys') |
69107 | 8202 |
have "rel_set (list_all2 A) ((#) x ` shuffles xs (y # ys) \<union> (#) y ` shuffles (x # xs) ys) |
8203 |
((#) x' ` shuffles xs'' ys' \<union> (#) y' ` shuffles xs' ys'')" by transfer_prover |
|
65350
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
8204 |
thus ?case by (simp add: xs' ys') |
b149abe619f7
added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents:
64966
diff
changeset
|
8205 |
qed (auto simp: rel_set_def) |
66892 | 8206 |
qed |
53012
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8207 |
|
57599 | 8208 |
lemma rtrancl_parametric [transfer_rule]: |
8209 |
assumes [transfer_rule]: "bi_unique A" "bi_total A" |
|
8210 |
shows "(rel_set (rel_prod A A) ===> rel_set (rel_prod A A)) rtrancl rtrancl" |
|
8211 |
unfolding rtrancl_def by transfer_prover |
|
8212 |
||
59516
d92b74f3f6e3
add parametricity rules for monotone, fun_lub, and fun_ord
Andreas Lochbihler
parents:
59199
diff
changeset
|
8213 |
lemma monotone_parametric [transfer_rule]: |
d92b74f3f6e3
add parametricity rules for monotone, fun_lub, and fun_ord
Andreas Lochbihler
parents:
59199
diff
changeset
|
8214 |
assumes [transfer_rule]: "bi_total A" |
67399 | 8215 |
shows "((A ===> A ===> (=)) ===> (B ===> B ===> (=)) ===> (A ===> B) ===> (=)) monotone monotone" |
59516
d92b74f3f6e3
add parametricity rules for monotone, fun_lub, and fun_ord
Andreas Lochbihler
parents:
59199
diff
changeset
|
8216 |
unfolding monotone_def[abs_def] by transfer_prover |
d92b74f3f6e3
add parametricity rules for monotone, fun_lub, and fun_ord
Andreas Lochbihler
parents:
59199
diff
changeset
|
8217 |
|
d92b74f3f6e3
add parametricity rules for monotone, fun_lub, and fun_ord
Andreas Lochbihler
parents:
59199
diff
changeset
|
8218 |
lemma fun_ord_parametric [transfer_rule]: |
d92b74f3f6e3
add parametricity rules for monotone, fun_lub, and fun_ord
Andreas Lochbihler
parents:
59199
diff
changeset
|
8219 |
assumes [transfer_rule]: "bi_total C" |
67399 | 8220 |
shows "((A ===> B ===> (=)) ===> (C ===> A) ===> (C ===> B) ===> (=)) fun_ord fun_ord" |
59516
d92b74f3f6e3
add parametricity rules for monotone, fun_lub, and fun_ord
Andreas Lochbihler
parents:
59199
diff
changeset
|
8221 |
unfolding fun_ord_def[abs_def] by transfer_prover |
d92b74f3f6e3
add parametricity rules for monotone, fun_lub, and fun_ord
Andreas Lochbihler
parents:
59199
diff
changeset
|
8222 |
|
d92b74f3f6e3
add parametricity rules for monotone, fun_lub, and fun_ord
Andreas Lochbihler
parents:
59199
diff
changeset
|
8223 |
lemma fun_lub_parametric [transfer_rule]: |
d92b74f3f6e3
add parametricity rules for monotone, fun_lub, and fun_ord
Andreas Lochbihler
parents:
59199
diff
changeset
|
8224 |
assumes [transfer_rule]: "bi_total A" "bi_unique A" |
d92b74f3f6e3
add parametricity rules for monotone, fun_lub, and fun_ord
Andreas Lochbihler
parents:
59199
diff
changeset
|
8225 |
shows "((rel_set A ===> B) ===> rel_set (C ===> A) ===> C ===> B) fun_lub fun_lub" |
d92b74f3f6e3
add parametricity rules for monotone, fun_lub, and fun_ord
Andreas Lochbihler
parents:
59199
diff
changeset
|
8226 |
unfolding fun_lub_def[abs_def] by transfer_prover |
d92b74f3f6e3
add parametricity rules for monotone, fun_lub, and fun_ord
Andreas Lochbihler
parents:
59199
diff
changeset
|
8227 |
|
23388 | 8228 |
end |
47397
d654c73e4b12
no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents:
47131
diff
changeset
|
8229 |
|
53012
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents:
52435
diff
changeset
|
8230 |
end |