| author | wenzelm | 
| Thu, 15 Mar 2018 22:28:20 +0100 | |
| changeset 67872 | 39b27d38a54c | 
| parent 67717 | 5a1b299fe4af | 
| child 67942 | a3e5f08e6b58 | 
| permissions | -rw-r--r-- | 
| 13462 | 1  | 
(* Title: HOL/List.thy  | 
2  | 
Author: Tobias Nipkow  | 
|
| 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  | 
|
| 
61955
 
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
 
wenzelm 
parents: 
61941 
diff
changeset
 | 
81  | 
text \<open>Special syntax for filter:\<close>  | 
| 
 
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  | 
| 
61955
 
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
 
wenzelm 
parents: 
61941 
diff
changeset
 | 
87  | 
"[x<-xs . P]" \<rightleftharpoons> "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"    ("_,/ _")
 | 
|
133  | 
  "_LUpdate" :: "['a, lupdbinds] => 'a"    ("_/[(_)]" [900,0] 900)
 | 
|
| 
5077
 
71043526295f
* HOL/List: new function list_update written xs[i:=v] that updates the i-th
 
nipkow 
parents: 
4643 
diff
changeset
 | 
134  | 
|
| 923 | 135  | 
translations  | 
| 35115 | 136  | 
"_LUpdate xs (_lupdbinds b bs)" == "_LUpdate (_LUpdate xs b) bs"  | 
| 34941 | 137  | 
"xs[i:=x]" == "CONST list_update xs i x"  | 
138  | 
||
| 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] = []" |  | 
|
169  | 
upt_Suc: "[i..<(Suc j)] = (if i <= j then [i..<j] @ [j] else [])"  | 
|
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  | 
| 67091 | 185  | 
  @{term "count \<circ> mset"} 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  | 
||
218  | 
primrec remdups :: "'a list \<Rightarrow> 'a list" where  | 
|
219  | 
"remdups [] = []" |  | 
|
220  | 
"remdups (x # xs) = (if x \<in> set xs then remdups xs else x # remdups xs)"  | 
|
221  | 
||
| 
53721
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
222  | 
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
 | 
223  | 
"remdups_adj [] = []" |  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
224  | 
"remdups_adj [x] = [x]" |  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
225  | 
"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
 | 
226  | 
|
| 50548 | 227  | 
primrec replicate :: "nat \<Rightarrow> 'a \<Rightarrow> 'a list" where  | 
228  | 
replicate_0: "replicate 0 x = []" |  | 
|
229  | 
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
 | 
230  | 
|
| 60758 | 231  | 
text \<open>  | 
| 61799 | 232  | 
Function \<open>size\<close> is overloaded for all datatypes. Users may  | 
233  | 
refer to the list version as \<open>length\<close>.\<close>  | 
|
| 13142 | 234  | 
|
| 50548 | 235  | 
abbreviation length :: "'a list \<Rightarrow> nat" where  | 
236  | 
"length \<equiv> size"  | 
|
| 15307 | 237  | 
|
| 51173 | 238  | 
definition enumerate :: "nat \<Rightarrow> 'a list \<Rightarrow> (nat \<times> 'a) list" where  | 
239  | 
enumerate_eq_zip: "enumerate n xs = zip [n..<n + length xs] xs"  | 
|
240  | 
||
| 
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
 | 
241  | 
primrec rotate1 :: "'a list \<Rightarrow> 'a list" where  | 
| 50548 | 242  | 
"rotate1 [] = []" |  | 
243  | 
"rotate1 (x # xs) = xs @ [x]"  | 
|
244  | 
||
245  | 
definition rotate :: "nat \<Rightarrow> 'a list \<Rightarrow> 'a list" where  | 
|
246  | 
"rotate n = rotate1 ^^ n"  | 
|
247  | 
||
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
248  | 
definition nths :: "'a list => nat set => 'a list" where  | 
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
249  | 
"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
 | 
250  | 
|
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
251  | 
primrec subseqs :: "'a list \<Rightarrow> 'a list list" where  | 
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
252  | 
"subseqs [] = [[]]" |  | 
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
253  | 
"subseqs (x#xs) = (let xss = subseqs xs in map (Cons x) xss @ xss)"  | 
| 50548 | 254  | 
|
255  | 
primrec n_lists :: "nat \<Rightarrow> 'a list \<Rightarrow> 'a list list" where  | 
|
256  | 
"n_lists 0 xs = [[]]" |  | 
|
257  | 
"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
 | 
258  | 
|
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
259  | 
hide_const (open) n_lists  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
260  | 
|
| 
40593
 
1e57b18d27b1
code eqn for slice was missing; redefined splice with fun
 
nipkow 
parents: 
40365 
diff
changeset
 | 
261  | 
fun splice :: "'a list \<Rightarrow> 'a list \<Rightarrow> 'a list" where  | 
| 
 
1e57b18d27b1
code eqn for slice was missing; redefined splice with fun
 
nipkow 
parents: 
40365 
diff
changeset
 | 
262  | 
"splice [] ys = ys" |  | 
| 
 
1e57b18d27b1
code eqn for slice was missing; redefined splice with fun
 
nipkow 
parents: 
40365 
diff
changeset
 | 
263  | 
"splice xs [] = xs" |  | 
| 
 
1e57b18d27b1
code eqn for slice was missing; redefined splice with fun
 
nipkow 
parents: 
40365 
diff
changeset
 | 
264  | 
"splice (x#xs) (y#ys) = x # y # splice xs ys"  | 
| 
21061
 
580dfc999ef6
added normal post setup; cleaned up "execution" constants
 
haftmann 
parents: 
21046 
diff
changeset
 | 
265  | 
|
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
266  | 
function shuffle where  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
267  | 
  "shuffle [] ys = {ys}"
 | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
268  | 
| "shuffle xs [] = {xs}"
 | 
| 67399 | 269  | 
| "shuffle (x # xs) (y # ys) = (#) x ` shuffle xs (y # ys) \<union> (#) y ` shuffle (x # xs) ys"  | 
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
270  | 
by pat_completeness simp_all  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
271  | 
termination by lexicographic_order  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
272  | 
|
| 67170 | 273  | 
text\<open>Use only if you cannot use @{const Min} instead:\<close>
 | 
274  | 
fun min_list :: "'a::ord list \<Rightarrow> 'a" where  | 
|
275  | 
"min_list (x # xs) = (case xs of [] \<Rightarrow> x | _ \<Rightarrow> min x (min_list xs))"  | 
|
276  | 
||
277  | 
text\<open>Returns first minimum:\<close>  | 
|
278  | 
fun arg_min_list :: "('a \<Rightarrow> ('b::linorder)) \<Rightarrow> 'a list \<Rightarrow> 'a" where
 | 
|
279  | 
"arg_min_list f [x] = x" |  | 
|
280  | 
"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)"  | 
|
281  | 
||
| 60758 | 282  | 
text\<open>  | 
| 26771 | 283  | 
\begin{figure}[htbp]
 | 
284  | 
\fbox{
 | 
|
285  | 
\begin{tabular}{l}
 | 
|
| 27381 | 286  | 
@{lemma "[a,b]@[c,d] = [a,b,c,d]" by simp}\\
 | 
287  | 
@{lemma "length [a,b,c] = 3" by simp}\\
 | 
|
288  | 
@{lemma "set [a,b,c] = {a,b,c}" by simp}\\
 | 
|
289  | 
@{lemma "map f [a,b,c] = [f a, f b, f c]" by simp}\\
 | 
|
290  | 
@{lemma "rev [a,b,c] = [c,b,a]" by simp}\\
 | 
|
291  | 
@{lemma "hd [a,b,c,d] = a" by simp}\\
 | 
|
292  | 
@{lemma "tl [a,b,c,d] = [b,c,d]" by simp}\\
 | 
|
293  | 
@{lemma "last [a,b,c,d] = d" by simp}\\
 | 
|
294  | 
@{lemma "butlast [a,b,c,d] = [a,b,c]" by simp}\\
 | 
|
295  | 
@{lemma[source] "filter (\<lambda>n::nat. n<2) [0,2,1] = [0,1]" by simp}\\
 | 
|
296  | 
@{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
 | 
297  | 
@{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
 | 
298  | 
@{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
 | 
299  | 
@{lemma "foldl f x [a,b,c] = f (f (f x a) b) c" by simp}\\
 | 
| 27381 | 300  | 
@{lemma "zip [a,b,c] [x,y,z] = [(a,x),(b,y),(c,z)]" by simp}\\
 | 
301  | 
@{lemma "zip [a,b] [x,y,z] = [(a,x),(b,y)]" by simp}\\
 | 
|
| 51173 | 302  | 
@{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
 | 
303  | 
@{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
 | 
304  | 
@{lemma "product_lists [[a,b], [c], [d,e]] = [[a,c,d], [a,c,e], [b,c,d], [b,c,e]]" by simp}\\
 | 
| 27381 | 305  | 
@{lemma "splice [a,b,c] [x,y,z] = [a,x,b,y,c,z]" by simp}\\
 | 
306  | 
@{lemma "splice [a,b,c,d] [x,y] = [a,x,b,y,c,d]" by simp}\\
 | 
|
| 66892 | 307  | 
@{lemma "shuffle [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
 | 
308  | 
by (simp add: insert_commute)}\\  | 
| 27381 | 309  | 
@{lemma "take 2 [a,b,c,d] = [a,b]" by simp}\\
 | 
310  | 
@{lemma "take 6 [a,b,c,d] = [a,b,c,d]" by simp}\\
 | 
|
311  | 
@{lemma "drop 2 [a,b,c,d] = [c,d]" by simp}\\
 | 
|
312  | 
@{lemma "drop 6 [a,b,c,d] = []" by simp}\\
 | 
|
313  | 
@{lemma "takeWhile (%n::nat. n<3) [1,2,3,0] = [1,2]" by simp}\\
 | 
|
314  | 
@{lemma "dropWhile (%n::nat. n<3) [1,2,3,0] = [3,0]" by simp}\\
 | 
|
315  | 
@{lemma "distinct [2,0,1::nat]" by simp}\\
 | 
|
316  | 
@{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
 | 
317  | 
@{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
 | 
318  | 
@{lemma "List.insert 2 [0::nat,1,2] = [0,1,2]" by (simp add: List.insert_def)}\\
 | 
| 35295 | 319  | 
@{lemma "List.insert 3 [0::nat,1,2] = [3,0,1,2]" by (simp add: List.insert_def)}\\
 | 
| 57198 | 320  | 
@{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 | 321  | 
@{lemma "List.find (%i::int. i>0) [0,0] = None" by simp}\\
 | 
322  | 
@{lemma "List.find (%i::int. i>0) [0,1,0,2] = Some 1" by simp}\\
 | 
|
| 60541 | 323  | 
@{lemma "count_list [0,1,0,2::int] 0 = 2" by (simp)}\\
 | 
| 55807 | 324  | 
@{lemma "List.extract (%i::int. i>0) [0,0] = None" by(simp add: extract_def)}\\
 | 
325  | 
@{lemma "List.extract (%i::int. i>0) [0,1,0,2] = Some([0], 1, [0,2])" by(simp add: extract_def)}\\
 | 
|
| 27381 | 326  | 
@{lemma "remove1 2 [2,0,2,1::nat,2] = [0,2,1,2]" by simp}\\
 | 
| 27693 | 327  | 
@{lemma "removeAll 2 [2,0,2,1::nat,2] = [0,1]" by simp}\\
 | 
| 27381 | 328  | 
@{lemma "nth [a,b,c,d] 2 = c" by simp}\\
 | 
329  | 
@{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
 | 
330  | 
@{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
 | 
331  | 
@{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
 | 
332  | 
@{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
 | 
333  | 
@{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
 | 
334  | 
@{lemma "rotate 3 [a,b,c,d] = [d,a,b,c]" by (simp add:rotate_def eval_nat_numeral)}\\
 | 
| 40077 | 335  | 
@{lemma "replicate 4 a = [a,a,a,a]" by (simp add:eval_nat_numeral)}\\
 | 
| 67170 | 336  | 
@{lemma "[2..<5] = [2,3,4]" by (simp add:eval_nat_numeral)}\\
 | 
337  | 
@{lemma "min_list [3,1,-2::int] = -2" by (simp)}\\
 | 
|
338  | 
@{lemma "arg_min_list (\<lambda>i. i*i) [3,-1,1,-2::int] = -1" by (simp)}
 | 
|
| 26771 | 339  | 
\end{tabular}}
 | 
340  | 
\caption{Characteristic examples}
 | 
|
341  | 
\label{fig:Characteristic}
 | 
|
342  | 
\end{figure}
 | 
|
| 29927 | 343  | 
Figure~\ref{fig:Characteristic} shows characteristic examples
 | 
| 26771 | 344  | 
that should give an intuitive understanding of the above functions.  | 
| 60758 | 345  | 
\<close>  | 
346  | 
||
347  | 
text\<open>The following simple sort functions are intended for proofs,  | 
|
348  | 
not for efficient implementations.\<close>  | 
|
| 24616 | 349  | 
|
| 
66434
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
350  | 
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
 | 
351  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
352  | 
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
 | 
353  | 
"sorted_wrt P [] = True" |  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
354  | 
"sorted_wrt P [x] = True" |  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
355  | 
"sorted_wrt P (x # y # zs) = (P x y \<and> sorted_wrt P (y # zs))"  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
356  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
357  | 
(* FIXME: define sorted in terms of sorted_wrt *)  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
358  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
359  | 
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
 | 
360  | 
|
| 
25221
 
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
 
wenzelm 
parents: 
25215 
diff
changeset
 | 
361  | 
context linorder  | 
| 
 
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
 
wenzelm 
parents: 
25215 
diff
changeset
 | 
362  | 
begin  | 
| 67479 | 363  | 
|
364  | 
fun sorted :: "'a list \<Rightarrow> bool" where  | 
|
365  | 
"sorted [] = True" |  | 
|
366  | 
"sorted [x] = True" |  | 
|
367  | 
"sorted (x # y # zs) = (x \<le> y \<and> sorted (y # zs))"  | 
|
368  | 
||
369  | 
lemma sorted_sorted_wrt: "sorted = sorted_wrt (\<le>)"  | 
|
370  | 
proof (rule ext)  | 
|
371  | 
fix xs show "sorted xs = sorted_wrt (\<le>) xs"  | 
|
372  | 
by(induction xs rule: sorted.induct) auto  | 
|
373  | 
qed  | 
|
| 24697 | 374  | 
|
| 
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
 | 
375  | 
primrec insort_key :: "('b \<Rightarrow> 'a) \<Rightarrow> 'b \<Rightarrow> 'b list \<Rightarrow> 'b list" where
 | 
| 50548 | 376  | 
"insort_key f x [] = [x]" |  | 
377  | 
"insort_key f x (y#ys) =  | 
|
378  | 
(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
 | 
379  | 
|
| 35195 | 380  | 
definition sort_key :: "('b \<Rightarrow> 'a) \<Rightarrow> 'b list \<Rightarrow> 'b list" where
 | 
| 50548 | 381  | 
"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
 | 
382  | 
|
| 
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
 | 
383  | 
definition insort_insert_key :: "('b \<Rightarrow> 'a) \<Rightarrow> 'b \<Rightarrow> 'b list \<Rightarrow> 'b list" where
 | 
| 50548 | 384  | 
"insort_insert_key f x xs =  | 
385  | 
(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
 | 
386  | 
|
| 
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
 | 
387  | 
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
 | 
388  | 
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
 | 
389  | 
abbreviation "insort_insert \<equiv> insort_insert_key (\<lambda>x. x)"  | 
| 35608 | 390  | 
|
| 67684 | 391  | 
definition stable_sort_key :: "(('b \<Rightarrow> 'a) \<Rightarrow> 'b list \<Rightarrow> 'b list) \<Rightarrow> bool" where
 | 
392  | 
"stable_sort_key sk =  | 
|
393  | 
(\<forall>f xs k. filter (\<lambda>y. f y = k) (sk f xs) = filter (\<lambda>y. f y = k) xs)"  | 
|
394  | 
||
| 
25221
 
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
 
wenzelm 
parents: 
25215 
diff
changeset
 | 
395  | 
end  | 
| 
 
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
 
wenzelm 
parents: 
25215 
diff
changeset
 | 
396  | 
|
| 24616 | 397  | 
|
| 60758 | 398  | 
subsubsection \<open>List comprehension\<close>  | 
399  | 
||
400  | 
text\<open>Input syntax for Haskell-like list comprehension notation.  | 
|
| 61799 | 401  | 
Typical example: \<open>[(x,y). x \<leftarrow> xs, y \<leftarrow> ys, x \<noteq> y]\<close>,  | 
402  | 
the list of all pairs of distinct elements from \<open>xs\<close> and \<open>ys\<close>.  | 
|
403  | 
The syntax is as in Haskell, except that \<open>|\<close> becomes a dot  | 
|
404  | 
(like in Isabelle's set comprehension): \<open>[e. x \<leftarrow> xs, \<dots>]\<close> rather than  | 
|
| 24349 | 405  | 
\verb![e| x <- xs, ...]!.  | 
406  | 
||
407  | 
The qualifiers after the dot are  | 
|
408  | 
\begin{description}
 | 
|
| 61799 | 409  | 
\item[generators] \<open>p \<leftarrow> xs\<close>,  | 
410  | 
where \<open>p\<close> is a pattern and \<open>xs\<close> an expression of list type, or  | 
|
411  | 
\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
 | 
412  | 
%\item[local bindings] @ {text"let x = e"}.
 | 
| 24349 | 413  | 
\end{description}
 | 
| 23240 | 414  | 
|
| 
24476
 
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
 
nipkow 
parents: 
24471 
diff
changeset
 | 
415  | 
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
 | 
416  | 
misunderstandings, the translation into desugared form is not reversed  | 
| 61799 | 417  | 
upon output. Note that the translation of \<open>[e. x \<leftarrow> xs]\<close> is  | 
| 
24476
 
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
 
nipkow 
parents: 
24471 
diff
changeset
 | 
418  | 
optmized to @{term"map (%x. e) xs"}.
 | 
| 23240 | 419  | 
|
| 24349 | 420  | 
It is easy to write short list comprehensions which stand for complex  | 
421  | 
expressions. During proofs, they may become unreadable (and  | 
|
422  | 
mangled). In such cases it can be advisable to introduce separate  | 
|
| 60758 | 423  | 
definitions for the list comprehensions in question.\<close>  | 
| 24349 | 424  | 
|
| 
46138
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
425  | 
nonterminal lc_qual and lc_quals  | 
| 23192 | 426  | 
|
427  | 
syntax  | 
|
| 
46138
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
428  | 
  "_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
 | 
429  | 
  "_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
 | 
430  | 
  "_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
 | 
431  | 
  (*"_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
 | 
432  | 
  "_lc_end" :: "lc_quals" ("]")
 | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
433  | 
  "_lc_quals" :: "lc_qual \<Rightarrow> lc_quals \<Rightarrow> lc_quals"  (", __")
 | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
434  | 
"_lc_abs" :: "'a => 'b list => 'b list"  | 
| 23192 | 435  | 
|
| 
61955
 
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
 
wenzelm 
parents: 
61941 
diff
changeset
 | 
436  | 
syntax (ASCII)  | 
| 
 
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
 
wenzelm 
parents: 
61941 
diff
changeset
 | 
437  | 
  "_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
 | 
438  | 
|
| 
24476
 
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
 
nipkow 
parents: 
24471 
diff
changeset
 | 
439  | 
(* These are easier than ML code but cannot express the optimized  | 
| 
 
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
 
nipkow 
parents: 
24471 
diff
changeset
 | 
440  | 
translation of [e. p<-xs]  | 
| 23192 | 441  | 
translations  | 
| 
46138
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
442  | 
"[e. p<-xs]" => "concat(map (_lc_abs p [e]) xs)"  | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
443  | 
"_listcompr e (_lc_gen p xs) (_lc_quals Q Qs)"  | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
444  | 
=> "concat (map (_lc_abs p (_listcompr e Q Qs)) xs)"  | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
445  | 
"[e. P]" => "if P then [e] else []"  | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
446  | 
"_listcompr e (_lc_test P) (_lc_quals Q Qs)"  | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
447  | 
=> "if P then (_listcompr e Q Qs) else []"  | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
448  | 
"_listcompr e (_lc_let b) (_lc_quals Q Qs)"  | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
449  | 
=> "_Let b (_listcompr e Q Qs)"  | 
| 
24476
 
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
 
nipkow 
parents: 
24471 
diff
changeset
 | 
450  | 
*)  | 
| 23240 | 451  | 
|
| 60758 | 452  | 
parse_translation \<open>  | 
| 
46138
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
453  | 
let  | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
454  | 
    val NilC = Syntax.const @{const_syntax Nil};
 | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
455  | 
    val ConsC = Syntax.const @{const_syntax Cons};
 | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
456  | 
    val mapC = Syntax.const @{const_syntax map};
 | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
457  | 
    val concatC = Syntax.const @{const_syntax concat};
 | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
458  | 
    val IfC = Syntax.const @{const_syntax If};
 | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
459  | 
|
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
460  | 
fun single x = ConsC $ x $ NilC;  | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
461  | 
|
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
462  | 
fun pat_tr ctxt p e opti = (* %x. case x of p => e | _ => [] *)  | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
463  | 
let  | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
464  | 
(* FIXME proper name context!? *)  | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
465  | 
val x =  | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
466  | 
Free (singleton (Name.variant_list (fold Term.add_free_names [p, e] [])) "x", dummyT);  | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
467  | 
val e = if opti then single e else e;  | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
468  | 
        val case1 = Syntax.const @{syntax_const "_case1"} $ p $ e;
 | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
469  | 
val case2 =  | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
470  | 
          Syntax.const @{syntax_const "_case1"} $
 | 
| 56241 | 471  | 
            Syntax.const @{const_syntax Pure.dummy_pattern} $ NilC;
 | 
| 
46138
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
472  | 
        val cs = Syntax.const @{syntax_const "_case2"} $ case1 $ case2;
 | 
| 
51678
 
1e33b81c328a
allow redundant cases in the list comprehension translation
 
traytel 
parents: 
51673 
diff
changeset
 | 
473  | 
in Syntax_Trans.abs_tr [x, Case_Translation.case_tr false ctxt [x, cs]] end;  | 
| 
46138
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
474  | 
|
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
475  | 
fun abs_tr ctxt p e opti =  | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
476  | 
(case Term_Position.strip_positions p of  | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
477  | 
Free (s, T) =>  | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
478  | 
let  | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
479  | 
val thy = Proof_Context.theory_of ctxt;  | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
480  | 
val s' = Proof_Context.intern_const ctxt s;  | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
481  | 
in  | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
482  | 
if Sign.declared_const thy s'  | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
483  | 
then (pat_tr ctxt p e opti, false)  | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
484  | 
else (Syntax_Trans.abs_tr [p, e], true)  | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
485  | 
end  | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
486  | 
| _ => (pat_tr ctxt p e opti, false));  | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
487  | 
|
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
488  | 
    fun lc_tr ctxt [e, Const (@{syntax_const "_lc_test"}, _) $ b, qs] =
 | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
489  | 
let  | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
490  | 
val res =  | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
491  | 
(case qs of  | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
492  | 
                Const (@{syntax_const "_lc_end"}, _) => single e
 | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
493  | 
              | Const (@{syntax_const "_lc_quals"}, _) $ q $ qs => lc_tr ctxt [e, q, qs]);
 | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
494  | 
in IfC $ b $ res $ NilC end  | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
495  | 
| lc_tr ctxt  | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
496  | 
            [e, Const (@{syntax_const "_lc_gen"}, _) $ p $ es,
 | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
497  | 
              Const(@{syntax_const "_lc_end"}, _)] =
 | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
498  | 
(case abs_tr ctxt p e true of  | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
499  | 
(f, true) => mapC $ f $ es  | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
500  | 
| (f, false) => concatC $ (mapC $ f $ es))  | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
501  | 
| lc_tr ctxt  | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
502  | 
            [e, Const (@{syntax_const "_lc_gen"}, _) $ p $ es,
 | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
503  | 
              Const (@{syntax_const "_lc_quals"}, _) $ q $ qs] =
 | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
504  | 
let val e' = lc_tr ctxt [e, q, qs];  | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
505  | 
in concatC $ (mapC $ (fst (abs_tr ctxt p e' false)) $ es) end;  | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
506  | 
|
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
507  | 
  in [(@{syntax_const "_listcompr"}, lc_tr)] end
 | 
| 60758 | 508  | 
\<close>  | 
509  | 
||
510  | 
ML_val \<open>  | 
|
| 42167 | 511  | 
let  | 
| 60160 | 512  | 
    val read = Syntax.read_term @{context} o Syntax.implode_input;
 | 
513  | 
fun check s1 s2 =  | 
|
514  | 
read s1 aconv read s2 orelse  | 
|
515  | 
        error ("Check failed: " ^
 | 
|
516  | 
quote (Input.source_content s1) ^ Position.here_list [Input.pos_of s1, Input.pos_of s2]);  | 
|
| 42167 | 517  | 
in  | 
| 60160 | 518  | 
check \<open>[(x,y,z). b]\<close> \<open>if b then [(x, y, z)] else []\<close>;  | 
519  | 
check \<open>[(x,y,z). x\<leftarrow>xs]\<close> \<open>map (\<lambda>x. (x, y, z)) xs\<close>;  | 
|
520  | 
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>;  | 
|
521  | 
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>;  | 
|
522  | 
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>;  | 
|
523  | 
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>;  | 
|
524  | 
check \<open>[(x,y). Cons True x \<leftarrow> xs]\<close>  | 
|
525  | 
\<open>concat (map (\<lambda>xa. case xa of [] \<Rightarrow> [] | True # x \<Rightarrow> [(x, y)] | False # x \<Rightarrow> []) xs)\<close>;  | 
|
526  | 
check \<open>[(x,y,z). Cons x [] \<leftarrow> xs]\<close>  | 
|
527  | 
\<open>concat (map (\<lambda>xa. case xa of [] \<Rightarrow> [] | [x] \<Rightarrow> [(x, y, z)] | x # aa # lista \<Rightarrow> []) xs)\<close>;  | 
|
528  | 
check \<open>[(x,y,z). x<a, x>b, x=d]\<close>  | 
|
529  | 
\<open>if x < a then if b < x then if x = d then [(x, y, z)] else [] else [] else []\<close>;  | 
|
530  | 
check \<open>[(x,y,z). x<a, x>b, y\<leftarrow>ys]\<close>  | 
|
531  | 
\<open>if x < a then if b < x then map (\<lambda>y. (x, y, z)) ys else [] else []\<close>;  | 
|
532  | 
check \<open>[(x,y,z). x<a, x\<leftarrow>xs,y>b]\<close>  | 
|
533  | 
\<open>if x < a then concat (map (\<lambda>x. if b < y then [(x, y, z)] else []) xs) else []\<close>;  | 
|
534  | 
check \<open>[(x,y,z). x<a, x\<leftarrow>xs, y\<leftarrow>ys]\<close>  | 
|
535  | 
\<open>if x < a then concat (map (\<lambda>x. map (\<lambda>y. (x, y, z)) ys) xs) else []\<close>;  | 
|
536  | 
check \<open>[(x,y,z). x\<leftarrow>xs, x>b, y<a]\<close>  | 
|
537  | 
\<open>concat (map (\<lambda>x. if b < x then if y < a then [(x, y, z)] else [] else []) xs)\<close>;  | 
|
538  | 
check \<open>[(x,y,z). x\<leftarrow>xs, x>b, y\<leftarrow>ys]\<close>  | 
|
539  | 
\<open>concat (map (\<lambda>x. if b < x then map (\<lambda>y. (x, y, z)) ys else []) xs)\<close>;  | 
|
540  | 
check \<open>[(x,y,z). x\<leftarrow>xs, y\<leftarrow>ys,y>x]\<close>  | 
|
541  | 
\<open>concat (map (\<lambda>x. concat (map (\<lambda>y. if x < y then [(x, y, z)] else []) ys)) xs)\<close>;  | 
|
542  | 
check \<open>[(x,y,z). x\<leftarrow>xs, y\<leftarrow>ys,z\<leftarrow>zs]\<close>  | 
|
543  | 
\<open>concat (map (\<lambda>x. concat (map (\<lambda>y. map (\<lambda>z. (x, y, z)) zs) ys)) xs)\<close>  | 
|
| 42167 | 544  | 
end;  | 
| 60758 | 545  | 
\<close>  | 
| 42167 | 546  | 
|
| 35115 | 547  | 
(*  | 
| 24349 | 548  | 
term "[(x,y). x\<leftarrow>xs, let xx = x+x, y\<leftarrow>ys, y \<noteq> xx]"  | 
| 23192 | 549  | 
*)  | 
550  | 
||
| 42167 | 551  | 
|
| 60758 | 552  | 
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
 | 
553  | 
(* 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
 | 
554  | 
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
 | 
555  | 
|
| 
 
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
 | 
556  | 
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
 | 
557  | 
sig  | 
| 
51717
 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 
wenzelm 
parents: 
51678 
diff
changeset
 | 
558  | 
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
 | 
559  | 
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
 | 
560  | 
|
| 
 
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
 | 
561  | 
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
 | 
562  | 
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
 | 
563  | 
|
| 
 
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
 | 
564  | 
(* 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
 | 
565  | 
|
| 
 
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  | 
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
 | 
567  | 
(case Thm.term_of ct of  | 
| 60156 | 568  | 
    Const (@{const_name Ex}, _) $ 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
 | 
569  | 
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
 | 
570  | 
| _ => 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
 | 
571  | 
|
| 
 
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  | 
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
 | 
573  | 
(case Thm.term_of ct of  | 
| 60156 | 574  | 
    Const (@{const_name Ex}, _) $ Abs (_, _, Const (@{const_name Ex}, _) $ _) =>
 | 
| 
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
 | 
575  | 
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
 | 
576  | 
| _ => 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
 | 
577  | 
|
| 
 
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  | 
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
 | 
579  | 
(case Thm.term_of ct of  | 
| 60156 | 580  | 
    Const (@{const_name Collect}, _) $ 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
 | 
581  | 
  | _ => 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
 | 
582  | 
|
| 
 
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  | 
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
 | 
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 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
 | 
586  | 
Conv.try_conv  | 
| 
51315
 
536a5603a138
provide common HOLogic.conj_conv and HOLogic.eq_conv;
 
wenzelm 
parents: 
51314 
diff
changeset
 | 
587  | 
    (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
 | 
588  | 
|
| 
 
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  | 
fun right_hand_set_comprehension_conv conv ctxt =  | 
| 
51315
 
536a5603a138
provide common HOLogic.conj_conv and HOLogic.eq_conv;
 
wenzelm 
parents: 
51314 
diff
changeset
 | 
590  | 
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
 | 
591  | 
(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
 | 
592  | 
|
| 
 
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
 | 
593  | 
|
| 
 
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  | 
(* 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
 | 
595  | 
|
| 60156 | 596  | 
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
 | 
597  | 
|
| 60158 | 598  | 
local  | 
599  | 
||
600  | 
val set_Nil_I = @{lemma "set [] = {x. False}" by (simp add: empty_def [symmetric])}
 | 
|
601  | 
val set_singleton = @{lemma "set [a] = {x. x = a}" by simp}
 | 
|
602  | 
val inst_Collect_mem_eq = @{lemma "set A = {x. x \<in> set A}" by simp}
 | 
|
603  | 
val del_refl_eq = @{lemma "(t = t \<and> P) \<equiv> P" by simp}
 | 
|
604  | 
||
605  | 
fun mk_set T = Const (@{const_name set}, HOLogic.listT T --> HOLogic.mk_setT T)
 | 
|
606  | 
fun dest_set (Const (@{const_name set}, _) $ xs) = xs
 | 
|
607  | 
||
608  | 
fun dest_singleton_list (Const (@{const_name Cons}, _) $ t $ (Const (@{const_name Nil}, _))) = t
 | 
|
609  | 
  | dest_singleton_list t = raise TERM ("dest_singleton_list", [t])
 | 
|
610  | 
||
611  | 
(*We check that one case returns a singleton list and all other cases  | 
|
612  | 
return [], and return the index of the one singleton list case.*)  | 
|
613  | 
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
 | 
614  | 
let  | 
| 60158 | 615  | 
fun check (i, case_t) s =  | 
616  | 
(case strip_abs_body case_t of  | 
|
617  | 
        (Const (@{const_name Nil}, _)) => s
 | 
|
618  | 
| _ => (case s of SOME NONE => SOME (SOME i) | _ => NONE))  | 
|
619  | 
in  | 
|
620  | 
fold_index check cases (SOME NONE) |> the_default NONE  | 
|
621  | 
end  | 
|
622  | 
||
623  | 
(*returns condition continuing term option*)  | 
|
624  | 
fun dest_if (Const (@{const_name If}, _) $ cond $ then_t $ Const (@{const_name Nil}, _)) =
 | 
|
625  | 
SOME (cond, then_t)  | 
|
626  | 
| dest_if _ = NONE  | 
|
627  | 
||
628  | 
(*returns (case_expr type index chosen_case constr_name) option*)  | 
|
629  | 
fun dest_case ctxt case_term =  | 
|
630  | 
let  | 
|
631  | 
val (case_const, args) = strip_comb case_term  | 
|
632  | 
in  | 
|
633  | 
(case try dest_Const case_const of  | 
|
634  | 
SOME (c, T) =>  | 
|
635  | 
(case Ctr_Sugar.ctr_sugar_of_case ctxt c of  | 
|
636  | 
          SOME {ctrs, ...} =>
 | 
|
637  | 
(case possible_index_of_singleton_case (fst (split_last args)) of  | 
|
638  | 
SOME i =>  | 
|
639  | 
let  | 
|
640  | 
val constr_names = map (fst o dest_Const) ctrs  | 
|
641  | 
val (Ts, _) = strip_type T  | 
|
642  | 
val T' = List.last Ts  | 
|
643  | 
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
 | 
644  | 
| 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
 | 
645  | 
| NONE => NONE)  | 
| 60158 | 646  | 
| NONE => NONE)  | 
647  | 
end  | 
|
648  | 
||
| 60752 | 649  | 
fun tac ctxt [] =  | 
650  | 
resolve_tac ctxt [set_singleton] 1 ORELSE  | 
|
651  | 
resolve_tac ctxt [inst_Collect_mem_eq] 1  | 
|
| 60158 | 652  | 
| tac ctxt (If :: cont) =  | 
| 62390 | 653  | 
      Splitter.split_tac ctxt @{thms if_split} 1
 | 
| 60752 | 654  | 
      THEN resolve_tac ctxt @{thms conjI} 1
 | 
655  | 
      THEN resolve_tac ctxt @{thms impI} 1
 | 
|
| 
60159
 
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
 
wenzelm 
parents: 
60158 
diff
changeset
 | 
656  | 
      THEN Subgoal.FOCUS (fn {prems, context = ctxt', ...} =>
 | 
| 60158 | 657  | 
CONVERSION (right_hand_set_comprehension_conv (K  | 
658  | 
          (HOLogic.conj_conv (Conv.rewr_conv (List.last prems RS @{thm Eq_TrueI})) Conv.all_conv
 | 
|
659  | 
then_conv  | 
|
| 
60159
 
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
 
wenzelm 
parents: 
60158 
diff
changeset
 | 
660  | 
           rewr_conv' @{lemma "(True \<and> P) = P" by simp})) ctxt') 1) ctxt 1
 | 
| 60158 | 661  | 
THEN tac ctxt cont  | 
| 60752 | 662  | 
      THEN resolve_tac ctxt @{thms impI} 1
 | 
| 
60159
 
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
 
wenzelm 
parents: 
60158 
diff
changeset
 | 
663  | 
      THEN Subgoal.FOCUS (fn {prems, context = ctxt', ...} =>
 | 
| 60158 | 664  | 
CONVERSION (right_hand_set_comprehension_conv (K  | 
665  | 
            (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
 | 
666  | 
             then_conv rewr_conv' @{lemma "(False \<and> P) = False" by simp})) ctxt') 1) ctxt 1
 | 
| 60752 | 667  | 
THEN resolve_tac ctxt [set_Nil_I] 1  | 
| 60158 | 668  | 
| tac ctxt (Case (T, i) :: cont) =  | 
669  | 
let  | 
|
670  | 
        val SOME {injects, distincts, case_thms, split, ...} =
 | 
|
671  | 
Ctr_Sugar.ctr_sugar_of ctxt (fst (dest_Type T))  | 
|
672  | 
in  | 
|
673  | 
(* do case distinction *)  | 
|
674  | 
Splitter.split_tac ctxt [split] 1  | 
|
675  | 
THEN EVERY (map_index (fn (i', _) =>  | 
|
| 60752 | 676  | 
          (if i' < length case_thms - 1 then resolve_tac ctxt @{thms conjI} 1 else all_tac)
 | 
677  | 
          THEN REPEAT_DETERM (resolve_tac ctxt @{thms allI} 1)
 | 
|
678  | 
          THEN resolve_tac ctxt @{thms impI} 1
 | 
|
| 60158 | 679  | 
THEN (if i' = i then  | 
680  | 
(* continue recursively *)  | 
|
| 
60159
 
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
 
wenzelm 
parents: 
60158 
diff
changeset
 | 
681  | 
            Subgoal.FOCUS (fn {prems, context = ctxt', ...} =>
 | 
| 60158 | 682  | 
CONVERSION (Thm.eta_conversion then_conv right_hand_set_comprehension_conv (K  | 
683  | 
((HOLogic.conj_conv  | 
|
684  | 
(HOLogic.eq_conv Conv.all_conv (rewr_conv' (List.last prems)) then_conv  | 
|
685  | 
(Conv.try_conv (Conv.rewrs_conv (map mk_meta_eq injects))))  | 
|
686  | 
Conv.all_conv)  | 
|
687  | 
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
 | 
688  | 
then_conv conjunct_assoc_conv)) ctxt'  | 
| 
 
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
 
wenzelm 
parents: 
60158 
diff
changeset
 | 
689  | 
then_conv  | 
| 
 
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
 
wenzelm 
parents: 
60158 
diff
changeset
 | 
690  | 
(HOLogic.Trueprop_conv  | 
| 
 
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
 
wenzelm 
parents: 
60158 
diff
changeset
 | 
691  | 
(HOLogic.eq_conv Conv.all_conv (Collect_conv (fn (_, ctxt'') =>  | 
| 
 
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
 
wenzelm 
parents: 
60158 
diff
changeset
 | 
692  | 
Conv.repeat_conv  | 
| 
 
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
 
wenzelm 
parents: 
60158 
diff
changeset
 | 
693  | 
(all_but_last_exists_conv  | 
| 
 
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
 
wenzelm 
parents: 
60158 
diff
changeset
 | 
694  | 
(K (rewr_conv'  | 
| 
 
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
 
wenzelm 
parents: 
60158 
diff
changeset
 | 
695  | 
                            @{lemma "(\<exists>x. x = t \<and> P x) = P t" by simp})) ctxt'')) ctxt')))) 1) ctxt 1
 | 
| 60158 | 696  | 
THEN tac ctxt cont  | 
697  | 
else  | 
|
| 
60159
 
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
 
wenzelm 
parents: 
60158 
diff
changeset
 | 
698  | 
            Subgoal.FOCUS (fn {prems, context = ctxt', ...} =>
 | 
| 60158 | 699  | 
CONVERSION  | 
700  | 
(right_hand_set_comprehension_conv (K  | 
|
701  | 
(HOLogic.conj_conv  | 
|
702  | 
((HOLogic.eq_conv Conv.all_conv  | 
|
703  | 
(rewr_conv' (List.last prems))) then_conv  | 
|
704  | 
                      (Conv.rewrs_conv (map (fn th => th RS @{thm Eq_FalseI}) distincts)))
 | 
|
705  | 
Conv.all_conv then_conv  | 
|
| 
60159
 
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
 
wenzelm 
parents: 
60158 
diff
changeset
 | 
706  | 
                    (rewr_conv' @{lemma "(False \<and> P) = False" by simp}))) ctxt' then_conv
 | 
| 60158 | 707  | 
HOLogic.Trueprop_conv  | 
708  | 
(HOLogic.eq_conv Conv.all_conv  | 
|
| 
60159
 
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
 
wenzelm 
parents: 
60158 
diff
changeset
 | 
709  | 
(Collect_conv (fn (_, ctxt'') =>  | 
| 60158 | 710  | 
Conv.repeat_conv  | 
711  | 
(Conv.bottom_conv  | 
|
| 
60159
 
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
 
wenzelm 
parents: 
60158 
diff
changeset
 | 
712  | 
                            (K (rewr_conv' @{lemma "(\<exists>x. P) = P" by simp})) ctxt'')) ctxt'))) 1) ctxt 1
 | 
| 60752 | 713  | 
THEN resolve_tac ctxt [set_Nil_I] 1)) case_thms)  | 
| 60158 | 714  | 
end  | 
715  | 
||
716  | 
in  | 
|
717  | 
||
718  | 
fun simproc ctxt redex =  | 
|
719  | 
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
 | 
720  | 
fun make_inner_eqs bound_vs Tis eqs t =  | 
| 60158 | 721  | 
(case dest_case ctxt t of  | 
| 
54404
 
9f0f1152c875
port list comprehension simproc to 'Ctr_Sugar' abstraction
 
blanchet 
parents: 
54295 
diff
changeset
 | 
722  | 
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
 | 
723  | 
let  | 
| 52131 | 724  | 
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
 | 
725  | 
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
 | 
726  | 
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
 | 
727  | 
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
 | 
728  | 
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
 | 
729  | 
(Const (constr_name, map snd vs ---> T), map Bound (((length vs) - 1) downto 0))  | 
| 
 
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
 | 
730  | 
            val constr_eq = Const (@{const_name HOL.eq}, T --> T --> @{typ bool}) $ constr_t $ 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
 | 
731  | 
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
 | 
732  | 
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
 | 
733  | 
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
 | 
734  | 
| 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
 | 
735  | 
(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
 | 
736  | 
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
 | 
737  | 
| NONE =>  | 
| 60158 | 738  | 
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
 | 
739  | 
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
 | 
740  | 
let  | 
| 60156 | 741  | 
                val Type (@{type_name list}, [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
 | 
742  | 
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
 | 
743  | 
(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
 | 
744  | 
SOME 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
 | 
745  | 
                      Const (@{const_name HOL.eq}, rT --> rT --> @{typ bool}) $
 | 
| 
 
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  | 
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
 | 
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  | 
                      Const (@{const_name Set.member}, rT --> HOLogic.mk_setT rT --> @{typ bool}) $
 | 
| 
 
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  | 
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
 | 
750  | 
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
 | 
751  | 
((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
 | 
752  | 
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
 | 
753  | 
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
 | 
754  | 
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
 | 
755  | 
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
 | 
756  | 
(rev bound_vs) (fold (curry HOLogic.mk_conj) eqs' pat_eq')  | 
| 59582 | 757  | 
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
 | 
758  | 
                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
 | 
759  | 
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
 | 
760  | 
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
 | 
761  | 
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
 | 
762  | 
((Goal.prove ctxt [] [] rewrite_rule_t  | 
| 
60159
 
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
 
wenzelm 
parents: 
60158 
diff
changeset
 | 
763  | 
                    (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
 | 
764  | 
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
 | 
765  | 
in  | 
| 59582 | 766  | 
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
 | 
767  | 
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
 | 
768  | 
|
| 
 
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  | 
end  | 
| 60158 | 770  | 
|
771  | 
end  | 
|
| 60758 | 772  | 
\<close>  | 
| 
41463
 
edbf0a86fb1c
adding simproc to rewrite list comprehensions to set comprehensions; adopting proofs
 
bulwahn 
parents: 
41372 
diff
changeset
 | 
773  | 
|
| 
60159
 
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
 
wenzelm 
parents: 
60158 
diff
changeset
 | 
774  | 
simproc_setup list_to_set_comprehension ("set xs") =
 | 
| 60758 | 775  | 
\<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
 | 
776  | 
|
| 
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
 | 
777  | 
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
 | 
778  | 
hide_const (open) coset  | 
| 35115 | 779  | 
|
| 
49948
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
780  | 
|
| 60758 | 781  | 
subsubsection \<open>@{const Nil} and @{const Cons}\<close>
 | 
| 
21061
 
580dfc999ef6
added normal post setup; cleaned up "execution" constants
 
haftmann 
parents: 
21046 
diff
changeset
 | 
782  | 
|
| 
 
580dfc999ef6
added normal post setup; cleaned up "execution" constants
 
haftmann 
parents: 
21046 
diff
changeset
 | 
783  | 
lemma not_Cons_self [simp]:  | 
| 
 
580dfc999ef6
added normal post setup; cleaned up "execution" constants
 
haftmann 
parents: 
21046 
diff
changeset
 | 
784  | 
"xs \<noteq> x # xs"  | 
| 13145 | 785  | 
by (induct xs) auto  | 
| 13114 | 786  | 
|
| 58807 | 787  | 
lemma not_Cons_self2 [simp]: "x # xs \<noteq> xs"  | 
| 41697 | 788  | 
by (rule not_Cons_self [symmetric])  | 
| 13114 | 789  | 
|
| 13142 | 790  | 
lemma neq_Nil_conv: "(xs \<noteq> []) = (\<exists>y ys. xs = y # ys)"  | 
| 13145 | 791  | 
by (induct xs) auto  | 
| 13114 | 792  | 
|
| 67091 | 793  | 
lemma tl_Nil: "tl xs = [] \<longleftrightarrow> xs = [] \<or> (\<exists>x. xs = [x])"  | 
| 53689 | 794  | 
by (cases xs) auto  | 
795  | 
||
| 67091 | 796  | 
lemma Nil_tl: "[] = tl xs \<longleftrightarrow> xs = [] \<or> (\<exists>x. xs = [x])"  | 
| 53689 | 797  | 
by (cases xs) auto  | 
798  | 
||
| 13142 | 799  | 
lemma length_induct:  | 
| 
21061
 
580dfc999ef6
added normal post setup; cleaned up "execution" constants
 
haftmann 
parents: 
21046 
diff
changeset
 | 
800  | 
"(\<And>xs. \<forall>ys. length ys < length xs \<longrightarrow> P ys \<Longrightarrow> P xs) \<Longrightarrow> P xs"  | 
| 53689 | 801  | 
by (fact measure_induct)  | 
| 13114 | 802  | 
|
| 67168 | 803  | 
lemma induct_list012:  | 
804  | 
"\<lbrakk>P []; \<And>x. P [x]; \<And>x y zs. P (y # zs) \<Longrightarrow> P (x # y # zs)\<rbrakk> \<Longrightarrow> P xs"  | 
|
805  | 
by induction_schema (pat_completeness, lexicographic_order)  | 
|
806  | 
||
| 37289 | 807  | 
lemma list_nonempty_induct [consumes 1, case_names single cons]:  | 
| 67168 | 808  | 
"\<lbrakk> xs \<noteq> []; \<And>x. P [x]; \<And>x xs. xs \<noteq> [] \<Longrightarrow> P xs \<Longrightarrow> P (x # xs)\<rbrakk> \<Longrightarrow> P xs"  | 
809  | 
by(induction xs rule: induct_list012) auto  | 
|
| 37289 | 810  | 
|
| 45714 | 811  | 
lemma inj_split_Cons: "inj_on (\<lambda>(xs, n). n#xs) X"  | 
812  | 
by (auto intro!: inj_onI)  | 
|
| 13114 | 813  | 
|
| 67399 | 814  | 
lemma inj_on_Cons1 [simp]: "inj_on ((#) x) A"  | 
| 61630 | 815  | 
by(simp add: inj_on_def)  | 
| 
49948
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
816  | 
|
| 60758 | 817  | 
subsubsection \<open>@{const length}\<close>
 | 
818  | 
||
819  | 
text \<open>  | 
|
| 61799 | 820  | 
Needs to come before \<open>@\<close> because of theorem \<open>append_eq_append_conv\<close>.  | 
| 60758 | 821  | 
\<close>  | 
| 13114 | 822  | 
|
| 13142 | 823  | 
lemma length_append [simp]: "length (xs @ ys) = length xs + length ys"  | 
| 13145 | 824  | 
by (induct xs) auto  | 
| 13114 | 825  | 
|
| 13142 | 826  | 
lemma length_map [simp]: "length (map f xs) = length xs"  | 
| 13145 | 827  | 
by (induct xs) auto  | 
| 13114 | 828  | 
|
| 13142 | 829  | 
lemma length_rev [simp]: "length (rev xs) = length xs"  | 
| 13145 | 830  | 
by (induct xs) auto  | 
| 13114 | 831  | 
|
| 13142 | 832  | 
lemma length_tl [simp]: "length (tl xs) = length xs - 1"  | 
| 13145 | 833  | 
by (cases xs) auto  | 
| 13114 | 834  | 
|
| 13142 | 835  | 
lemma length_0_conv [iff]: "(length xs = 0) = (xs = [])"  | 
| 13145 | 836  | 
by (induct xs) auto  | 
| 13114 | 837  | 
|
| 13142 | 838  | 
lemma length_greater_0_conv [iff]: "(0 < length xs) = (xs \<noteq> [])"  | 
| 13145 | 839  | 
by (induct xs) auto  | 
| 13114 | 840  | 
|
| 67613 | 841  | 
lemma length_pos_if_in_set: "x \<in> set xs \<Longrightarrow> length xs > 0"  | 
| 23479 | 842  | 
by auto  | 
843  | 
||
| 13114 | 844  | 
lemma length_Suc_conv:  | 
| 13145 | 845  | 
"(length xs = Suc n) = (\<exists>y ys. xs = y # ys \<and> length ys = n)"  | 
846  | 
by (induct xs) auto  | 
|
| 13142 | 847  | 
|
| 14025 | 848  | 
lemma Suc_length_conv:  | 
| 58807 | 849  | 
"(Suc n = length xs) = (\<exists>y ys. xs = y # ys \<and> length ys = n)"  | 
| 14208 | 850  | 
apply (induct xs, simp, simp)  | 
| 14025 | 851  | 
apply blast  | 
852  | 
done  | 
|
853  | 
||
| 
25221
 
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
 
wenzelm 
parents: 
25215 
diff
changeset
 | 
854  | 
lemma impossible_Cons: "length xs <= length ys ==> xs = x # ys = False"  | 
| 58807 | 855  | 
by (induct xs) auto  | 
| 
25221
 
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
 
wenzelm 
parents: 
25215 
diff
changeset
 | 
856  | 
|
| 
26442
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
857  | 
lemma list_induct2 [consumes 1, case_names Nil Cons]:  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
858  | 
"length xs = length ys \<Longrightarrow> P [] [] \<Longrightarrow>  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
859  | 
(\<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
 | 
860  | 
\<Longrightarrow> P xs ys"  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
861  | 
proof (induct xs arbitrary: ys)  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
862  | 
case Nil then show ?case by simp  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
863  | 
next  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
864  | 
case (Cons x xs ys) then show ?case by (cases ys) simp_all  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
865  | 
qed  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
866  | 
|
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
867  | 
lemma list_induct3 [consumes 2, case_names Nil Cons]:  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
868  | 
"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
 | 
869  | 
(\<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
 | 
870  | 
\<Longrightarrow> P xs ys zs"  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
871  | 
proof (induct xs arbitrary: ys zs)  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
872  | 
case Nil then show ?case by simp  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
873  | 
next  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
874  | 
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
 | 
875  | 
(cases zs, simp_all)  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
876  | 
qed  | 
| 13114 | 877  | 
|
| 
36154
 
11c6106d7787
Respectfullness and preservation of list_rel
 
Cezary Kaliszyk <kaliszyk@in.tum.de> 
parents: 
35828 
diff
changeset
 | 
878  | 
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
 | 
879  | 
"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
 | 
880  | 
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
 | 
881  | 
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
 | 
882  | 
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
 | 
883  | 
proof (induct xs arbitrary: ys zs ws)  | 
| 
 
11c6106d7787
Respectfullness and preservation of list_rel
 
Cezary Kaliszyk <kaliszyk@in.tum.de> 
parents: 
35828 
diff
changeset
 | 
884  | 
case Nil then show ?case by simp  | 
| 
 
11c6106d7787
Respectfullness and preservation of list_rel
 
Cezary Kaliszyk <kaliszyk@in.tum.de> 
parents: 
35828 
diff
changeset
 | 
885  | 
next  | 
| 
 
11c6106d7787
Respectfullness and preservation of list_rel
 
Cezary Kaliszyk <kaliszyk@in.tum.de> 
parents: 
35828 
diff
changeset
 | 
886  | 
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
 | 
887  | 
qed  | 
| 
 
11c6106d7787
Respectfullness and preservation of list_rel
 
Cezary Kaliszyk <kaliszyk@in.tum.de> 
parents: 
35828 
diff
changeset
 | 
888  | 
|
| 64963 | 889  | 
lemma list_induct2':  | 
| 
22493
 
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
 
krauss 
parents: 
22422 
diff
changeset
 | 
890  | 
"\<lbrakk> P [] [];  | 
| 
 
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
 
krauss 
parents: 
22422 
diff
changeset
 | 
891  | 
\<And>x xs. P (x#xs) [];  | 
| 
 
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
 
krauss 
parents: 
22422 
diff
changeset
 | 
892  | 
\<And>y ys. P [] (y#ys);  | 
| 
 
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
 
krauss 
parents: 
22422 
diff
changeset
 | 
893  | 
\<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
 | 
894  | 
\<Longrightarrow> P xs ys"  | 
| 
 
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
 
krauss 
parents: 
22422 
diff
changeset
 | 
895  | 
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
 | 
896  | 
|
| 
55524
 
f41ef840f09d
folded 'list_all2' with the relator generated by 'datatype_new'
 
blanchet 
parents: 
55473 
diff
changeset
 | 
897  | 
lemma list_all2_iff:  | 
| 
 
f41ef840f09d
folded 'list_all2' with the relator generated by 'datatype_new'
 
blanchet 
parents: 
55473 
diff
changeset
 | 
898  | 
"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
 | 
899  | 
by (induct xs ys rule: list_induct2') auto  | 
| 
 
f41ef840f09d
folded 'list_all2' with the relator generated by 'datatype_new'
 
blanchet 
parents: 
55473 
diff
changeset
 | 
900  | 
|
| 
22143
 
cf58486ca11b
Added simproc list_neq (prompted by an application)
 
nipkow 
parents: 
21911 
diff
changeset
 | 
901  | 
lemma neq_if_length_neq: "length xs \<noteq> length ys \<Longrightarrow> (xs = ys) == False"  | 
| 24349 | 902  | 
by (rule Eq_FalseI) auto  | 
| 24037 | 903  | 
|
| 60758 | 904  | 
simproc_setup list_neq ("(xs::'a list) = ys") = \<open>
 | 
| 
22143
 
cf58486ca11b
Added simproc list_neq (prompted by an application)
 
nipkow 
parents: 
21911 
diff
changeset
 | 
905  | 
(*  | 
| 
 
cf58486ca11b
Added simproc list_neq (prompted by an application)
 
nipkow 
parents: 
21911 
diff
changeset
 | 
906  | 
Reduces xs=ys to False if xs and ys cannot be of the same length.  | 
| 
 
cf58486ca11b
Added simproc list_neq (prompted by an application)
 
nipkow 
parents: 
21911 
diff
changeset
 | 
907  | 
This is the case if the atomic sublists of one are a submultiset  | 
| 
 
cf58486ca11b
Added simproc list_neq (prompted by an application)
 
nipkow 
parents: 
21911 
diff
changeset
 | 
908  | 
of those of the other list and there are fewer Cons's in one than the other.  | 
| 
 
cf58486ca11b
Added simproc list_neq (prompted by an application)
 
nipkow 
parents: 
21911 
diff
changeset
 | 
909  | 
*)  | 
| 24037 | 910  | 
|
911  | 
let  | 
|
| 
22143
 
cf58486ca11b
Added simproc list_neq (prompted by an application)
 
nipkow 
parents: 
21911 
diff
changeset
 | 
912  | 
|
| 29856 | 913  | 
fun len (Const(@{const_name Nil},_)) acc = acc
 | 
914  | 
  | len (Const(@{const_name Cons},_) $ _ $ xs) (ts,n) = len xs (ts,n+1)
 | 
|
915  | 
  | len (Const(@{const_name append},_) $ xs $ ys) acc = len xs (len ys acc)
 | 
|
916  | 
  | len (Const(@{const_name rev},_) $ xs) acc = len xs acc
 | 
|
917  | 
  | len (Const(@{const_name map},_) $ _ $ xs) acc = len xs acc
 | 
|
| 
22143
 
cf58486ca11b
Added simproc list_neq (prompted by an application)
 
nipkow 
parents: 
21911 
diff
changeset
 | 
918  | 
| len t (ts,n) = (t::ts,n);  | 
| 
 
cf58486ca11b
Added simproc list_neq (prompted by an application)
 
nipkow 
parents: 
21911 
diff
changeset
 | 
919  | 
|
| 
51717
 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 
wenzelm 
parents: 
51678 
diff
changeset
 | 
920  | 
val ss = simpset_of @{context};
 | 
| 
 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 
wenzelm 
parents: 
51678 
diff
changeset
 | 
921  | 
|
| 
 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 
wenzelm 
parents: 
51678 
diff
changeset
 | 
922  | 
fun list_neq ctxt ct =  | 
| 
22143
 
cf58486ca11b
Added simproc list_neq (prompted by an application)
 
nipkow 
parents: 
21911 
diff
changeset
 | 
923  | 
let  | 
| 24037 | 924  | 
val (Const(_,eqT) $ lhs $ rhs) = Thm.term_of ct;  | 
| 
22143
 
cf58486ca11b
Added simproc list_neq (prompted by an application)
 
nipkow 
parents: 
21911 
diff
changeset
 | 
925  | 
val (ls,m) = len lhs ([],0) and (rs,n) = len rhs ([],0);  | 
| 
 
cf58486ca11b
Added simproc list_neq (prompted by an application)
 
nipkow 
parents: 
21911 
diff
changeset
 | 
926  | 
fun prove_neq() =  | 
| 
 
cf58486ca11b
Added simproc list_neq (prompted by an application)
 
nipkow 
parents: 
21911 
diff
changeset
 | 
927  | 
let  | 
| 
 
cf58486ca11b
Added simproc list_neq (prompted by an application)
 
nipkow 
parents: 
21911 
diff
changeset
 | 
928  | 
val Type(_,listT::_) = eqT;  | 
| 22994 | 929  | 
val size = HOLogic.size_const listT;  | 
| 
22143
 
cf58486ca11b
Added simproc list_neq (prompted by an application)
 
nipkow 
parents: 
21911 
diff
changeset
 | 
930  | 
val eq_len = HOLogic.mk_eq (size $ lhs, size $ rhs);  | 
| 
 
cf58486ca11b
Added simproc list_neq (prompted by an application)
 
nipkow 
parents: 
21911 
diff
changeset
 | 
931  | 
val neq_len = HOLogic.mk_Trueprop (HOLogic.Not $ eq_len);  | 
| 
51717
 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 
wenzelm 
parents: 
51678 
diff
changeset
 | 
932  | 
val thm = Goal.prove ctxt [] [] neq_len  | 
| 
 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 
wenzelm 
parents: 
51678 
diff
changeset
 | 
933  | 
(K (simp_tac (put_simpset ss ctxt) 1));  | 
| 22633 | 934  | 
      in SOME (thm RS @{thm neq_if_length_neq}) end
 | 
| 
22143
 
cf58486ca11b
Added simproc list_neq (prompted by an application)
 
nipkow 
parents: 
21911 
diff
changeset
 | 
935  | 
in  | 
| 67399 | 936  | 
if m < n andalso submultiset (aconv) (ls,rs) orelse  | 
937  | 
n < m andalso submultiset (aconv) (rs,ls)  | 
|
| 
22143
 
cf58486ca11b
Added simproc list_neq (prompted by an application)
 
nipkow 
parents: 
21911 
diff
changeset
 | 
938  | 
then prove_neq() else NONE  | 
| 
 
cf58486ca11b
Added simproc list_neq (prompted by an application)
 
nipkow 
parents: 
21911 
diff
changeset
 | 
939  | 
end;  | 
| 
51717
 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 
wenzelm 
parents: 
51678 
diff
changeset
 | 
940  | 
in K list_neq end;  | 
| 60758 | 941  | 
\<close>  | 
942  | 
||
943  | 
||
| 61799 | 944  | 
subsubsection \<open>\<open>@\<close> -- append\<close>  | 
| 13114 | 945  | 
|
| 63662 | 946  | 
global_interpretation append: monoid append Nil  | 
947  | 
proof  | 
|
948  | 
fix xs ys zs :: "'a list"  | 
|
949  | 
show "(xs @ ys) @ zs = xs @ (ys @ zs)"  | 
|
950  | 
by (induct xs) simp_all  | 
|
951  | 
show "xs @ [] = xs"  | 
|
952  | 
by (induct xs) simp_all  | 
|
953  | 
qed simp  | 
|
954  | 
||
| 13142 | 955  | 
lemma append_assoc [simp]: "(xs @ ys) @ zs = xs @ (ys @ zs)"  | 
| 63662 | 956  | 
by (fact append.assoc)  | 
957  | 
||
958  | 
lemma append_Nil2: "xs @ [] = xs"  | 
|
959  | 
by (fact append.right_neutral)  | 
|
| 3507 | 960  | 
|
| 13142 | 961  | 
lemma append_is_Nil_conv [iff]: "(xs @ ys = []) = (xs = [] \<and> ys = [])"  | 
| 13145 | 962  | 
by (induct xs) auto  | 
| 13114 | 963  | 
|
| 13142 | 964  | 
lemma Nil_is_append_conv [iff]: "([] = xs @ ys) = (xs = [] \<and> ys = [])"  | 
| 13145 | 965  | 
by (induct xs) auto  | 
| 13114 | 966  | 
|
| 13142 | 967  | 
lemma append_self_conv [iff]: "(xs @ ys = xs) = (ys = [])"  | 
| 13145 | 968  | 
by (induct xs) auto  | 
| 13114 | 969  | 
|
| 13142 | 970  | 
lemma self_append_conv [iff]: "(xs = xs @ ys) = (ys = [])"  | 
| 13145 | 971  | 
by (induct xs) auto  | 
| 13114 | 972  | 
|
| 
54147
 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 
blanchet 
parents: 
53954 
diff
changeset
 | 
973  | 
lemma append_eq_append_conv [simp]:  | 
| 58807 | 974  | 
"length xs = length ys \<or> length us = length vs  | 
975  | 
==> (xs@us = ys@vs) = (xs=ys \<and> us=vs)"  | 
|
| 24526 | 976  | 
apply (induct xs arbitrary: ys)  | 
| 14208 | 977  | 
apply (case_tac ys, simp, force)  | 
978  | 
apply (case_tac ys, force, simp)  | 
|
| 13145 | 979  | 
done  | 
| 13142 | 980  | 
|
| 24526 | 981  | 
lemma append_eq_append_conv2: "(xs @ ys = zs @ ts) =  | 
| 67091 | 982  | 
(\<exists>us. xs = zs @ us \<and> us @ ys = ts \<or> xs @ us = zs \<and> ys = us @ ts)"  | 
| 24526 | 983  | 
apply (induct xs arbitrary: ys zs ts)  | 
| 
44890
 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 
nipkow 
parents: 
44635 
diff
changeset
 | 
984  | 
apply fastforce  | 
| 14495 | 985  | 
apply(case_tac zs)  | 
986  | 
apply simp  | 
|
| 
44890
 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 
nipkow 
parents: 
44635 
diff
changeset
 | 
987  | 
apply fastforce  | 
| 14495 | 988  | 
done  | 
989  | 
||
| 
34910
 
b23bd3ee4813
same_append_eq / append_same_eq are now used for simplifying induction rules.
 
berghofe 
parents: 
34064 
diff
changeset
 | 
990  | 
lemma same_append_eq [iff, induct_simp]: "(xs @ ys = xs @ zs) = (ys = zs)"  | 
| 13145 | 991  | 
by simp  | 
| 13142 | 992  | 
|
993  | 
lemma append1_eq_conv [iff]: "(xs @ [x] = ys @ [y]) = (xs = ys \<and> x = y)"  | 
|
| 13145 | 994  | 
by simp  | 
| 13114 | 995  | 
|
| 
34910
 
b23bd3ee4813
same_append_eq / append_same_eq are now used for simplifying induction rules.
 
berghofe 
parents: 
34064 
diff
changeset
 | 
996  | 
lemma append_same_eq [iff, induct_simp]: "(ys @ xs = zs @ xs) = (ys = zs)"  | 
| 13145 | 997  | 
by simp  | 
| 13114 | 998  | 
|
| 13142 | 999  | 
lemma append_self_conv2 [iff]: "(xs @ ys = ys) = (xs = [])"  | 
| 13145 | 1000  | 
using append_same_eq [of _ _ "[]"] by auto  | 
| 3507 | 1001  | 
|
| 13142 | 1002  | 
lemma self_append_conv2 [iff]: "(ys = xs @ ys) = (xs = [])"  | 
| 13145 | 1003  | 
using append_same_eq [of "[]"] by auto  | 
| 13114 | 1004  | 
|
| 63662 | 1005  | 
lemma hd_Cons_tl: "xs \<noteq> [] ==> hd xs # tl xs = xs"  | 
1006  | 
by (fact list.collapse)  | 
|
| 13114 | 1007  | 
|
| 13142 | 1008  | 
lemma hd_append: "hd (xs @ ys) = (if xs = [] then hd ys else hd xs)"  | 
| 13145 | 1009  | 
by (induct xs) auto  | 
| 13114 | 1010  | 
|
| 13142 | 1011  | 
lemma hd_append2 [simp]: "xs \<noteq> [] ==> hd (xs @ ys) = hd xs"  | 
| 13145 | 1012  | 
by (simp add: hd_append split: list.split)  | 
| 13114 | 1013  | 
|
| 67091 | 1014  | 
lemma tl_append: "tl (xs @ ys) = (case xs of [] \<Rightarrow> tl ys | z#zs \<Rightarrow> zs @ ys)"  | 
| 13145 | 1015  | 
by (simp split: list.split)  | 
| 13114 | 1016  | 
|
| 13142 | 1017  | 
lemma tl_append2 [simp]: "xs \<noteq> [] ==> tl (xs @ ys) = tl xs @ ys"  | 
| 13145 | 1018  | 
by (simp add: tl_append split: list.split)  | 
| 13114 | 1019  | 
|
1020  | 
||
| 14300 | 1021  | 
lemma Cons_eq_append_conv: "x#xs = ys@zs =  | 
| 67091 | 1022  | 
(ys = [] \<and> x#xs = zs \<or> (\<exists>ys'. x#ys' = ys \<and> xs = ys'@zs))"  | 
| 14300 | 1023  | 
by(cases ys) auto  | 
1024  | 
||
| 15281 | 1025  | 
lemma append_eq_Cons_conv: "(ys@zs = x#xs) =  | 
| 67091 | 1026  | 
(ys = [] \<and> zs = x#xs \<or> (\<exists>ys'. ys = x#ys' \<and> ys'@zs = xs))"  | 
| 15281 | 1027  | 
by(cases ys) auto  | 
1028  | 
||
| 63173 | 1029  | 
lemma longest_common_prefix:  | 
1030  | 
"\<exists>ps xs' ys'. xs = ps @ xs' \<and> ys = ps @ ys'  | 
|
1031  | 
\<and> (xs' = [] \<or> ys' = [] \<or> hd xs' \<noteq> hd ys')"  | 
|
1032  | 
by (induct xs ys rule: list_induct2')  | 
|
1033  | 
(blast, blast, blast,  | 
|
1034  | 
metis (no_types, hide_lams) append_Cons append_Nil list.sel(1))  | 
|
| 14300 | 1035  | 
|
| 61799 | 1036  | 
text \<open>Trivial rules for solving \<open>@\<close>-equations automatically.\<close>  | 
| 13114 | 1037  | 
|
1038  | 
lemma eq_Nil_appendI: "xs = ys ==> xs = [] @ ys"  | 
|
| 13145 | 1039  | 
by simp  | 
| 13114 | 1040  | 
|
| 13142 | 1041  | 
lemma Cons_eq_appendI:  | 
| 13145 | 1042  | 
"[| x # xs1 = ys; xs = xs1 @ zs |] ==> x # xs = ys @ zs"  | 
1043  | 
by (drule sym) simp  | 
|
| 13114 | 1044  | 
|
| 13142 | 1045  | 
lemma append_eq_appendI:  | 
| 13145 | 1046  | 
"[| xs @ xs1 = zs; ys = xs1 @ us |] ==> xs @ ys = zs @ us"  | 
1047  | 
by (drule sym) simp  | 
|
| 13114 | 1048  | 
|
1049  | 
||
| 60758 | 1050  | 
text \<open>  | 
| 13145 | 1051  | 
Simplification procedure for all list equalities.  | 
| 61799 | 1052  | 
Currently only tries to rearrange \<open>@\<close> to see if  | 
| 13145 | 1053  | 
- both lists end in a singleton list,  | 
1054  | 
- or both lists end in the same list.  | 
|
| 60758 | 1055  | 
\<close>  | 
1056  | 
||
1057  | 
simproc_setup list_eq ("(xs::'a list) = ys")  = \<open>
 | 
|
| 13462 | 1058  | 
let  | 
| 43594 | 1059  | 
    fun last (cons as Const (@{const_name Cons}, _) $ _ $ xs) =
 | 
1060  | 
          (case xs of Const (@{const_name Nil}, _) => cons | _ => last xs)
 | 
|
1061  | 
      | last (Const(@{const_name append},_) $ _ $ ys) = last ys
 | 
|
1062  | 
| last t = t;  | 
|
| 64963 | 1063  | 
|
| 43594 | 1064  | 
    fun list1 (Const(@{const_name Cons},_) $ _ $ Const(@{const_name Nil},_)) = true
 | 
1065  | 
| list1 _ = false;  | 
|
| 64963 | 1066  | 
|
| 43594 | 1067  | 
    fun butlast ((cons as Const(@{const_name Cons},_) $ x) $ xs) =
 | 
1068  | 
          (case xs of Const (@{const_name Nil}, _) => xs | _ => cons $ butlast xs)
 | 
|
1069  | 
      | butlast ((app as Const (@{const_name append}, _) $ xs) $ ys) = app $ butlast ys
 | 
|
1070  | 
      | butlast xs = Const(@{const_name Nil}, fastype_of xs);
 | 
|
| 64963 | 1071  | 
|
| 43594 | 1072  | 
val rearr_ss =  | 
| 
51717
 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 
wenzelm 
parents: 
51678 
diff
changeset
 | 
1073  | 
      simpset_of (put_simpset HOL_basic_ss @{context}
 | 
| 
 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 
wenzelm 
parents: 
51678 
diff
changeset
 | 
1074  | 
        addsimps [@{thm append_assoc}, @{thm append_Nil}, @{thm append_Cons}]);
 | 
| 64963 | 1075  | 
|
| 
51717
 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 
wenzelm 
parents: 
51678 
diff
changeset
 | 
1076  | 
fun list_eq ctxt (F as (eq as Const(_,eqT)) $ lhs $ rhs) =  | 
| 13462 | 1077  | 
let  | 
| 43594 | 1078  | 
val lastl = last lhs and lastr = last rhs;  | 
1079  | 
fun rearr conv =  | 
|
1080  | 
let  | 
|
1081  | 
val lhs1 = butlast lhs and rhs1 = butlast rhs;  | 
|
1082  | 
val Type(_,listT::_) = eqT  | 
|
1083  | 
val appT = [listT,listT] ---> listT  | 
|
1084  | 
            val app = Const(@{const_name append},appT)
 | 
|
1085  | 
val F2 = eq $ (app$lhs1$lastl) $ (app$rhs1$lastr)  | 
|
1086  | 
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
 | 
1087  | 
val thm = Goal.prove ctxt [] [] eq  | 
| 
 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 
wenzelm 
parents: 
51678 
diff
changeset
 | 
1088  | 
(K (simp_tac (put_simpset rearr_ss ctxt) 1));  | 
| 43594 | 1089  | 
in SOME ((conv RS (thm RS trans)) RS eq_reflection) end;  | 
1090  | 
in  | 
|
1091  | 
        if list1 lastl andalso list1 lastr then rearr @{thm append1_eq_conv}
 | 
|
1092  | 
        else if lastl aconv lastr then rearr @{thm append_same_eq}
 | 
|
1093  | 
else NONE  | 
|
1094  | 
end;  | 
|
| 59582 | 1095  | 
in fn _ => fn ctxt => fn ct => list_eq ctxt (Thm.term_of ct) end;  | 
| 60758 | 1096  | 
\<close>  | 
1097  | 
||
1098  | 
||
1099  | 
subsubsection \<open>@{const map}\<close>
 | 
|
| 13114 | 1100  | 
|
| 58807 | 1101  | 
lemma hd_map: "xs \<noteq> [] \<Longrightarrow> hd (map f xs) = f (hd xs)"  | 
1102  | 
by (cases xs) simp_all  | 
|
1103  | 
||
1104  | 
lemma map_tl: "map f (tl xs) = tl (map f xs)"  | 
|
1105  | 
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
 | 
1106  | 
|
| 67091 | 1107  | 
lemma map_ext: "(\<And>x. x \<in> set xs \<longrightarrow> f x = g x) ==> map f xs = map g xs"  | 
| 13145 | 1108  | 
by (induct xs) simp_all  | 
| 13114 | 1109  | 
|
| 13142 | 1110  | 
lemma map_ident [simp]: "map (\<lambda>x. x) = (\<lambda>xs. xs)"  | 
| 13145 | 1111  | 
by (rule ext, induct_tac xs) auto  | 
| 13114 | 1112  | 
|
| 13142 | 1113  | 
lemma map_append [simp]: "map f (xs @ ys) = map f xs @ map f ys"  | 
| 13145 | 1114  | 
by (induct xs) auto  | 
| 13114 | 1115  | 
|
| 
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
 | 
1116  | 
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
 | 
1117  | 
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
 | 
1118  | 
|
| 67091 | 1119  | 
lemma map_comp_map[simp]: "((map f) \<circ> (map g)) = map(f \<circ> g)"  | 
| 58807 | 1120  | 
by (rule ext) simp  | 
| 35208 | 1121  | 
|
| 13142 | 1122  | 
lemma rev_map: "rev (map f xs) = map f (rev xs)"  | 
| 13145 | 1123  | 
by (induct xs) auto  | 
| 13114 | 1124  | 
|
| 67613 | 1125  | 
lemma map_eq_conv[simp]: "(map f xs = map g xs) = (\<forall>x \<in> set xs. f x = g x)"  | 
| 13737 | 1126  | 
by (induct xs) auto  | 
1127  | 
||
| 
44013
 
5cfc1c36ae97
moved recdef package to HOL/Library/Old_Recdef.thy
 
krauss 
parents: 
43594 
diff
changeset
 | 
1128  | 
lemma map_cong [fundef_cong]:  | 
| 
40122
 
1d8ad2ff3e01
dropped (almost) redundant distinct.induct rule; distinct_simps again named distinct.simps
 
haftmann 
parents: 
40077 
diff
changeset
 | 
1129  | 
"xs = ys \<Longrightarrow> (\<And>x. x \<in> set ys \<Longrightarrow> f x = g x) \<Longrightarrow> map f xs = map g ys"  | 
| 58807 | 1130  | 
by simp  | 
| 13114 | 1131  | 
|
| 13142 | 1132  | 
lemma map_is_Nil_conv [iff]: "(map f xs = []) = (xs = [])"  | 
| 13145 | 1133  | 
by (cases xs) auto  | 
| 13114 | 1134  | 
|
| 13142 | 1135  | 
lemma Nil_is_map_conv [iff]: "([] = map f xs) = (xs = [])"  | 
| 13145 | 1136  | 
by (cases xs) auto  | 
| 13114 | 1137  | 
|
| 18447 | 1138  | 
lemma map_eq_Cons_conv:  | 
| 58807 | 1139  | 
"(map f xs = y#ys) = (\<exists>z zs. xs = z#zs \<and> f z = y \<and> map f zs = ys)"  | 
| 13145 | 1140  | 
by (cases xs) auto  | 
| 13114 | 1141  | 
|
| 18447 | 1142  | 
lemma Cons_eq_map_conv:  | 
| 58807 | 1143  | 
"(x#xs = map f ys) = (\<exists>z zs. ys = z#zs \<and> x = f z \<and> xs = map f zs)"  | 
| 14025 | 1144  | 
by (cases ys) auto  | 
1145  | 
||
| 18447 | 1146  | 
lemmas map_eq_Cons_D = map_eq_Cons_conv [THEN iffD1]  | 
1147  | 
lemmas Cons_eq_map_D = Cons_eq_map_conv [THEN iffD1]  | 
|
1148  | 
declare map_eq_Cons_D [dest!] Cons_eq_map_D [dest!]  | 
|
1149  | 
||
| 14111 | 1150  | 
lemma ex_map_conv:  | 
| 67091 | 1151  | 
"(\<exists>xs. ys = map f xs) = (\<forall>y \<in> set ys. \<exists>x. y = f x)"  | 
| 18447 | 1152  | 
by(induct ys, auto simp add: Cons_eq_map_conv)  | 
| 14111 | 1153  | 
|
| 
15110
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
1154  | 
lemma map_eq_imp_length_eq:  | 
| 35510 | 1155  | 
assumes "map f xs = map g ys"  | 
| 26734 | 1156  | 
shows "length xs = length ys"  | 
| 
53374
 
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
 
wenzelm 
parents: 
53017 
diff
changeset
 | 
1157  | 
using assms  | 
| 
 
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
 
wenzelm 
parents: 
53017 
diff
changeset
 | 
1158  | 
proof (induct ys arbitrary: xs)  | 
| 26734 | 1159  | 
case Nil then show ?case by simp  | 
1160  | 
next  | 
|
1161  | 
case (Cons y ys) then obtain z zs where xs: "xs = z # zs" by auto  | 
|
| 35510 | 1162  | 
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
 | 
1163  | 
with Cons have "length zs = length ys" by blast  | 
| 26734 | 1164  | 
with xs show ?case by simp  | 
1165  | 
qed  | 
|
| 64963 | 1166  | 
|
| 
15110
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
1167  | 
lemma map_inj_on:  | 
| 
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
1168  | 
"[| map f xs = map f ys; inj_on f (set xs Un set ys) |]  | 
| 
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
1169  | 
==> xs = ys"  | 
| 
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
1170  | 
apply(frule map_eq_imp_length_eq)  | 
| 
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
1171  | 
apply(rotate_tac -1)  | 
| 
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
1172  | 
apply(induct rule:list_induct2)  | 
| 
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
1173  | 
apply simp  | 
| 
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
1174  | 
apply(simp)  | 
| 
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
1175  | 
apply (blast intro:sym)  | 
| 
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
1176  | 
done  | 
| 
 
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 inj_on_map_eq_map:  | 
| 58807 | 1179  | 
"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
 | 
1180  | 
by(blast dest:map_inj_on)  | 
| 
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
1181  | 
|
| 13114 | 1182  | 
lemma map_injective:  | 
| 58807 | 1183  | 
"map f xs = map f ys ==> inj f ==> xs = ys"  | 
| 24526 | 1184  | 
by (induct ys arbitrary: xs) (auto dest!:injD)  | 
| 13114 | 1185  | 
|
| 14339 | 1186  | 
lemma inj_map_eq_map[simp]: "inj f \<Longrightarrow> (map f xs = map f ys) = (xs = ys)"  | 
1187  | 
by(blast dest:map_injective)  | 
|
1188  | 
||
| 13114 | 1189  | 
lemma inj_mapI: "inj f ==> inj (map f)"  | 
| 17589 | 1190  | 
by (iprover dest: map_injective injD intro: inj_onI)  | 
| 13114 | 1191  | 
|
1192  | 
lemma inj_mapD: "inj (map f) ==> inj f"  | 
|
| 
64966
 
d53d7ca3303e
added inj_def (redundant, analogous to surj_def, bij_def);
 
wenzelm 
parents: 
64963 
diff
changeset
 | 
1193  | 
apply (unfold inj_def)  | 
| 
 
d53d7ca3303e
added inj_def (redundant, analogous to surj_def, bij_def);
 
wenzelm 
parents: 
64963 
diff
changeset
 | 
1194  | 
apply clarify  | 
| 
 
d53d7ca3303e
added inj_def (redundant, analogous to surj_def, bij_def);
 
wenzelm 
parents: 
64963 
diff
changeset
 | 
1195  | 
apply (erule_tac x = "[x]" in allE)  | 
| 
 
d53d7ca3303e
added inj_def (redundant, analogous to surj_def, bij_def);
 
wenzelm 
parents: 
64963 
diff
changeset
 | 
1196  | 
apply (erule_tac x = "[y]" in allE)  | 
| 
 
d53d7ca3303e
added inj_def (redundant, analogous to surj_def, bij_def);
 
wenzelm 
parents: 
64963 
diff
changeset
 | 
1197  | 
apply auto  | 
| 
 
d53d7ca3303e
added inj_def (redundant, analogous to surj_def, bij_def);
 
wenzelm 
parents: 
64963 
diff
changeset
 | 
1198  | 
done  | 
| 13114 | 1199  | 
|
| 14339 | 1200  | 
lemma inj_map[iff]: "inj (map f) = inj f"  | 
| 13145 | 1201  | 
by (blast dest: inj_mapD intro: inj_mapI)  | 
| 13114 | 1202  | 
|
| 15303 | 1203  | 
lemma inj_on_mapI: "inj_on f (\<Union>(set ` A)) \<Longrightarrow> inj_on (map f) A"  | 
1204  | 
apply(rule inj_onI)  | 
|
1205  | 
apply(erule map_inj_on)  | 
|
1206  | 
apply(blast intro:inj_onI dest:inj_onD)  | 
|
1207  | 
done  | 
|
1208  | 
||
| 14343 | 1209  | 
lemma map_idI: "(\<And>x. x \<in> set xs \<Longrightarrow> f x = x) \<Longrightarrow> map f xs = xs"  | 
1210  | 
by (induct xs, auto)  | 
|
| 13114 | 1211  | 
|
| 
14402
 
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
 
nipkow 
parents: 
14395 
diff
changeset
 | 
1212  | 
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
 | 
1213  | 
by (induct xs) auto  | 
| 
 
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
 
nipkow 
parents: 
14395 
diff
changeset
 | 
1214  | 
|
| 
15110
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
1215  | 
lemma map_fst_zip[simp]:  | 
| 
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
1216  | 
"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
 | 
1217  | 
by (induct rule:list_induct2, simp_all)  | 
| 
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
1218  | 
|
| 
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
1219  | 
lemma map_snd_zip[simp]:  | 
| 
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
1220  | 
"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
 | 
1221  | 
by (induct rule:list_induct2, simp_all)  | 
| 
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
1222  | 
|
| 66853 | 1223  | 
lemma map2_map_map: "map2 h (map f xs) (map g xs) = map (\<lambda>x. h (f x) (g x)) xs"  | 
1224  | 
by (induction xs) (auto)  | 
|
1225  | 
||
| 
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
 | 
1226  | 
functor map: map  | 
| 47122 | 1227  | 
by (simp_all add: id_def)  | 
1228  | 
||
| 
49948
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
1229  | 
declare map.id [simp]  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
1230  | 
|
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
1231  | 
|
| 60758 | 1232  | 
subsubsection \<open>@{const rev}\<close>
 | 
| 13114 | 1233  | 
|
| 13142 | 1234  | 
lemma rev_append [simp]: "rev (xs @ ys) = rev ys @ rev xs"  | 
| 13145 | 1235  | 
by (induct xs) auto  | 
| 13114 | 1236  | 
|
| 13142 | 1237  | 
lemma rev_rev_ident [simp]: "rev (rev xs) = xs"  | 
| 13145 | 1238  | 
by (induct xs) auto  | 
| 13114 | 1239  | 
|
| 15870 | 1240  | 
lemma rev_swap: "(rev xs = ys) = (xs = rev ys)"  | 
1241  | 
by auto  | 
|
1242  | 
||
| 13142 | 1243  | 
lemma rev_is_Nil_conv [iff]: "(rev xs = []) = (xs = [])"  | 
| 13145 | 1244  | 
by (induct xs) auto  | 
| 13114 | 1245  | 
|
| 13142 | 1246  | 
lemma Nil_is_rev_conv [iff]: "([] = rev xs) = (xs = [])"  | 
| 13145 | 1247  | 
by (induct xs) auto  | 
| 13114 | 1248  | 
|
| 15870 | 1249  | 
lemma rev_singleton_conv [simp]: "(rev xs = [x]) = (xs = [x])"  | 
1250  | 
by (cases xs) auto  | 
|
1251  | 
||
1252  | 
lemma singleton_rev_conv [simp]: "([x] = rev xs) = (xs = [x])"  | 
|
1253  | 
by (cases xs) auto  | 
|
1254  | 
||
| 
54147
 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 
blanchet 
parents: 
53954 
diff
changeset
 | 
1255  | 
lemma rev_is_rev_conv [iff]: "(rev xs = rev ys) = (xs = ys)"  | 
| 
21061
 
580dfc999ef6
added normal post setup; cleaned up "execution" constants
 
haftmann 
parents: 
21046 
diff
changeset
 | 
1256  | 
apply (induct xs arbitrary: ys, force)  | 
| 14208 | 1257  | 
apply (case_tac ys, simp, force)  | 
| 13145 | 1258  | 
done  | 
| 13114 | 1259  | 
|
| 15439 | 1260  | 
lemma inj_on_rev[iff]: "inj_on rev A"  | 
1261  | 
by(simp add:inj_on_def)  | 
|
1262  | 
||
| 13366 | 1263  | 
lemma rev_induct [case_names Nil snoc]:  | 
1264  | 
"[| P []; !!x xs. P xs ==> P (xs @ [x]) |] ==> P xs"  | 
|
| 
15489
 
d136af442665
Replaced application of subst by simplesubst in proof of rev_induct
 
berghofe 
parents: 
15439 
diff
changeset
 | 
1265  | 
apply(simplesubst rev_rev_ident[symmetric])  | 
| 13145 | 1266  | 
apply(rule_tac list = "rev xs" in list.induct, simp_all)  | 
1267  | 
done  | 
|
| 13114 | 1268  | 
|
| 13366 | 1269  | 
lemma rev_exhaust [case_names Nil snoc]:  | 
1270  | 
"(xs = [] ==> P) ==>(!!ys y. xs = ys @ [y] ==> P) ==> P"  | 
|
| 13145 | 1271  | 
by (induct xs rule: rev_induct) auto  | 
| 13114 | 1272  | 
|
| 13366 | 1273  | 
lemmas rev_cases = rev_exhaust  | 
1274  | 
||
| 57577 | 1275  | 
lemma rev_nonempty_induct [consumes 1, case_names single snoc]:  | 
1276  | 
assumes "xs \<noteq> []"  | 
|
1277  | 
and single: "\<And>x. P [x]"  | 
|
1278  | 
and snoc': "\<And>x xs. xs \<noteq> [] \<Longrightarrow> P xs \<Longrightarrow> P (xs@[x])"  | 
|
1279  | 
shows "P xs"  | 
|
| 60758 | 1280  | 
using \<open>xs \<noteq> []\<close> proof (induct xs rule: rev_induct)  | 
| 57577 | 1281  | 
case (snoc x xs) then show ?case  | 
1282  | 
proof (cases xs)  | 
|
1283  | 
case Nil thus ?thesis by (simp add: single)  | 
|
1284  | 
next  | 
|
1285  | 
case Cons with snoc show ?thesis by (fastforce intro!: snoc')  | 
|
1286  | 
qed  | 
|
1287  | 
qed simp  | 
|
1288  | 
||
| 18423 | 1289  | 
lemma rev_eq_Cons_iff[iff]: "(rev xs = y#ys) = (xs = rev ys @ [y])"  | 
1290  | 
by(rule rev_cases[of xs]) auto  | 
|
1291  | 
||
| 13114 | 1292  | 
|
| 60758 | 1293  | 
subsubsection \<open>@{const set}\<close>
 | 
| 13114 | 1294  | 
|
| 
67443
 
3abf6a722518
standardized towards new-style formal comments: isabelle update_comments;
 
wenzelm 
parents: 
67399 
diff
changeset
 | 
1295  | 
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
 | 
1296  | 
|
| 13142 | 1297  | 
lemma finite_set [iff]: "finite (set xs)"  | 
| 13145 | 1298  | 
by (induct xs) auto  | 
| 13114 | 1299  | 
|
| 13142 | 1300  | 
lemma set_append [simp]: "set (xs @ ys) = (set xs \<union> set ys)"  | 
| 13145 | 1301  | 
by (induct xs) auto  | 
| 13114 | 1302  | 
|
| 67613 | 1303  | 
lemma hd_in_set[simp]: "xs \<noteq> [] \<Longrightarrow> hd xs \<in> set xs"  | 
| 17830 | 1304  | 
by(cases xs) auto  | 
| 14099 | 1305  | 
|
| 13142 | 1306  | 
lemma set_subset_Cons: "set xs \<subseteq> set (x # xs)"  | 
| 13145 | 1307  | 
by auto  | 
| 13114 | 1308  | 
|
| 64963 | 1309  | 
lemma set_ConsD: "y \<in> set (x # xs) \<Longrightarrow> y=x \<or> y \<in> set xs"  | 
| 14099 | 1310  | 
by auto  | 
1311  | 
||
| 13142 | 1312  | 
lemma set_empty [iff]: "(set xs = {}) = (xs = [])"
 | 
| 13145 | 1313  | 
by (induct xs) auto  | 
| 13114 | 1314  | 
|
| 15245 | 1315  | 
lemma set_empty2[iff]: "({} = set xs) = (xs = [])"
 | 
1316  | 
by(induct xs) auto  | 
|
1317  | 
||
| 13142 | 1318  | 
lemma set_rev [simp]: "set (rev xs) = set xs"  | 
| 13145 | 1319  | 
by (induct xs) auto  | 
| 13114 | 1320  | 
|
| 13142 | 1321  | 
lemma set_map [simp]: "set (map f xs) = f`(set xs)"  | 
| 13145 | 1322  | 
by (induct xs) auto  | 
| 13114 | 1323  | 
|
| 67613 | 1324  | 
lemma set_filter [simp]: "set (filter P xs) = {x. x \<in> set xs \<and> P x}"
 | 
| 13145 | 1325  | 
by (induct xs) auto  | 
| 13114 | 1326  | 
|
| 32417 | 1327  | 
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
 | 
1328  | 
by (induct j) auto  | 
| 13114 | 1329  | 
|
| 13142 | 1330  | 
|
| 67613 | 1331  | 
lemma split_list: "x \<in> set xs \<Longrightarrow> \<exists>ys zs. xs = ys @ x # zs"  | 
| 18049 | 1332  | 
proof (induct xs)  | 
| 26073 | 1333  | 
case Nil thus ?case by simp  | 
1334  | 
next  | 
|
1335  | 
case Cons thus ?case by (auto intro: Cons_eq_appendI)  | 
|
1336  | 
qed  | 
|
1337  | 
||
| 26734 | 1338  | 
lemma in_set_conv_decomp: "x \<in> set xs \<longleftrightarrow> (\<exists>ys zs. xs = ys @ x # zs)"  | 
1339  | 
by (auto elim: split_list)  | 
|
| 26073 | 1340  | 
|
| 67613 | 1341  | 
lemma split_list_first: "x \<in> set xs \<Longrightarrow> \<exists>ys zs. xs = ys @ x # zs \<and> x \<notin> set ys"  | 
| 26073 | 1342  | 
proof (induct xs)  | 
1343  | 
case Nil thus ?case by simp  | 
|
| 18049 | 1344  | 
next  | 
1345  | 
case (Cons a xs)  | 
|
1346  | 
show ?case  | 
|
1347  | 
proof cases  | 
|
| 
44890
 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 
nipkow 
parents: 
44635 
diff
changeset
 | 
1348  | 
assume "x = a" thus ?case using Cons by fastforce  | 
| 18049 | 1349  | 
next  | 
| 
44890
 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 
nipkow 
parents: 
44635 
diff
changeset
 | 
1350  | 
assume "x \<noteq> a" thus ?case using Cons by(fastforce intro!: Cons_eq_appendI)  | 
| 26073 | 1351  | 
qed  | 
1352  | 
qed  | 
|
1353  | 
||
1354  | 
lemma in_set_conv_decomp_first:  | 
|
| 67613 | 1355  | 
"(x \<in> set xs) = (\<exists>ys zs. xs = ys @ x # zs \<and> x \<notin> set ys)"  | 
| 26734 | 1356  | 
by (auto dest!: split_list_first)  | 
| 26073 | 1357  | 
|
| 
40122
 
1d8ad2ff3e01
dropped (almost) redundant distinct.induct rule; distinct_simps again named distinct.simps
 
haftmann 
parents: 
40077 
diff
changeset
 | 
1358  | 
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
 | 
1359  | 
proof (induct xs rule: rev_induct)  | 
| 26073 | 1360  | 
case Nil thus ?case by simp  | 
1361  | 
next  | 
|
1362  | 
case (snoc a xs)  | 
|
1363  | 
show ?case  | 
|
1364  | 
proof cases  | 
|
| 56085 | 1365  | 
assume "x = a" thus ?case using snoc by (auto intro!: exI)  | 
| 26073 | 1366  | 
next  | 
| 
44890
 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 
nipkow 
parents: 
44635 
diff
changeset
 | 
1367  | 
assume "x \<noteq> a" thus ?case using snoc by fastforce  | 
| 18049 | 1368  | 
qed  | 
1369  | 
qed  | 
|
1370  | 
||
| 26073 | 1371  | 
lemma in_set_conv_decomp_last:  | 
| 67613 | 1372  | 
"(x \<in> set xs) = (\<exists>ys zs. xs = ys @ x # zs \<and> x \<notin> set zs)"  | 
| 26734 | 1373  | 
by (auto dest!: split_list_last)  | 
| 26073 | 1374  | 
|
| 67091 | 1375  | 
lemma split_list_prop: "\<exists>x \<in> set xs. P x \<Longrightarrow> \<exists>ys x zs. xs = ys @ x # zs \<and> P x"  | 
| 26073 | 1376  | 
proof (induct xs)  | 
1377  | 
case Nil thus ?case by simp  | 
|
1378  | 
next  | 
|
1379  | 
case Cons thus ?case  | 
|
1380  | 
by(simp add:Bex_def)(metis append_Cons append.simps(1))  | 
|
1381  | 
qed  | 
|
1382  | 
||
1383  | 
lemma split_list_propE:  | 
|
| 26734 | 1384  | 
assumes "\<exists>x \<in> set xs. P x"  | 
1385  | 
obtains ys x zs where "xs = ys @ x # zs" and "P x"  | 
|
1386  | 
using split_list_prop [OF assms] by blast  | 
|
| 26073 | 1387  | 
|
1388  | 
lemma split_list_first_prop:  | 
|
1389  | 
"\<exists>x \<in> set xs. P x \<Longrightarrow>  | 
|
1390  | 
\<exists>ys x zs. xs = ys@x#zs \<and> P x \<and> (\<forall>y \<in> set ys. \<not> P y)"  | 
|
| 26734 | 1391  | 
proof (induct xs)  | 
| 26073 | 1392  | 
case Nil thus ?case by simp  | 
1393  | 
next  | 
|
1394  | 
case (Cons x xs)  | 
|
1395  | 
show ?case  | 
|
1396  | 
proof cases  | 
|
1397  | 
assume "P x"  | 
|
| 56085 | 1398  | 
hence "x # xs = [] @ x # xs \<and> P x \<and> (\<forall>y\<in>set []. \<not> P y)" by simp  | 
1399  | 
thus ?thesis by fast  | 
|
| 26073 | 1400  | 
next  | 
1401  | 
assume "\<not> P x"  | 
|
1402  | 
hence "\<exists>x\<in>set xs. P x" using Cons(2) by simp  | 
|
| 60758 | 1403  | 
thus ?thesis using \<open>\<not> P x\<close> Cons(1) by (metis append_Cons set_ConsD)  | 
| 26073 | 1404  | 
qed  | 
1405  | 
qed  | 
|
1406  | 
||
1407  | 
lemma split_list_first_propE:  | 
|
| 26734 | 1408  | 
assumes "\<exists>x \<in> set xs. P x"  | 
1409  | 
obtains ys x zs where "xs = ys @ x # zs" and "P x" and "\<forall>y \<in> set ys. \<not> P y"  | 
|
1410  | 
using split_list_first_prop [OF assms] by blast  | 
|
| 26073 | 1411  | 
|
1412  | 
lemma split_list_first_prop_iff:  | 
|
1413  | 
"(\<exists>x \<in> set xs. P x) \<longleftrightarrow>  | 
|
1414  | 
(\<exists>ys x zs. xs = ys@x#zs \<and> P x \<and> (\<forall>y \<in> set ys. \<not> P y))"  | 
|
| 26734 | 1415  | 
by (rule, erule split_list_first_prop) auto  | 
| 26073 | 1416  | 
|
1417  | 
lemma split_list_last_prop:  | 
|
1418  | 
"\<exists>x \<in> set xs. P x \<Longrightarrow>  | 
|
1419  | 
\<exists>ys x zs. xs = ys@x#zs \<and> P x \<and> (\<forall>z \<in> set zs. \<not> P z)"  | 
|
1420  | 
proof(induct xs rule:rev_induct)  | 
|
1421  | 
case Nil thus ?case by simp  | 
|
1422  | 
next  | 
|
1423  | 
case (snoc x xs)  | 
|
1424  | 
show ?case  | 
|
1425  | 
proof cases  | 
|
| 56085 | 1426  | 
assume "P x" thus ?thesis by (auto intro!: exI)  | 
| 26073 | 1427  | 
next  | 
1428  | 
assume "\<not> P x"  | 
|
1429  | 
hence "\<exists>x\<in>set xs. P x" using snoc(2) by simp  | 
|
| 60758 | 1430  | 
thus ?thesis using \<open>\<not> P x\<close> snoc(1) by fastforce  | 
| 26073 | 1431  | 
qed  | 
1432  | 
qed  | 
|
1433  | 
||
1434  | 
lemma split_list_last_propE:  | 
|
| 26734 | 1435  | 
assumes "\<exists>x \<in> set xs. P x"  | 
1436  | 
obtains ys x zs where "xs = ys @ x # zs" and "P x" and "\<forall>z \<in> set zs. \<not> P z"  | 
|
1437  | 
using split_list_last_prop [OF assms] by blast  | 
|
| 26073 | 1438  | 
|
1439  | 
lemma split_list_last_prop_iff:  | 
|
1440  | 
"(\<exists>x \<in> set xs. P x) \<longleftrightarrow>  | 
|
1441  | 
(\<exists>ys x zs. xs = ys@x#zs \<and> P x \<and> (\<forall>z \<in> set zs. \<not> P z))"  | 
|
| 56085 | 1442  | 
by rule (erule split_list_last_prop, auto)  | 
1443  | 
||
| 26073 | 1444  | 
|
| 67091 | 1445  | 
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
 | 
1446  | 
by (erule finite_induct) (auto simp add: list.set(2)[symmetric] simp del: list.set(2))  | 
| 13508 | 1447  | 
|
| 14388 | 1448  | 
lemma card_length: "card (set xs) \<le> length xs"  | 
1449  | 
by (induct xs) (auto simp add: card_insert_if)  | 
|
| 13114 | 1450  | 
|
| 
26442
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
1451  | 
lemma set_minus_filter_out:  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
1452  | 
  "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
 | 
1453  | 
by (induct xs) auto  | 
| 15168 | 1454  | 
|
| 66257 | 1455  | 
lemma append_Cons_eq_iff:  | 
1456  | 
"\<lbrakk> x \<notin> set xs; x \<notin> set ys \<rbrakk> \<Longrightarrow>  | 
|
1457  | 
xs @ x # ys = xs' @ x # ys' \<longleftrightarrow> (xs = xs' \<and> ys = ys')"  | 
|
1458  | 
by(auto simp: append_eq_Cons_conv Cons_eq_append_conv append_eq_append_conv2)  | 
|
1459  | 
||
| 35115 | 1460  | 
|
| 60758 | 1461  | 
subsubsection \<open>@{const filter}\<close>
 | 
| 13114 | 1462  | 
|
| 13142 | 1463  | 
lemma filter_append [simp]: "filter P (xs @ ys) = filter P xs @ filter P ys"  | 
| 13145 | 1464  | 
by (induct xs) auto  | 
| 13114 | 1465  | 
|
| 15305 | 1466  | 
lemma rev_filter: "rev (filter P xs) = filter P (rev xs)"  | 
1467  | 
by (induct xs) simp_all  | 
|
1468  | 
||
| 13142 | 1469  | 
lemma filter_filter [simp]: "filter P (filter Q xs) = filter (\<lambda>x. Q x \<and> P x) xs"  | 
| 13145 | 1470  | 
by (induct xs) auto  | 
| 13114 | 1471  | 
|
| 16998 | 1472  | 
lemma length_filter_le [simp]: "length (filter P xs) \<le> length xs"  | 
1473  | 
by (induct xs) (auto simp add: le_SucI)  | 
|
1474  | 
||
| 18423 | 1475  | 
lemma sum_length_filter_compl:  | 
| 67091 | 1476  | 
"length(filter P xs) + length(filter (\<lambda>x. \<not>P x) xs) = length xs"  | 
| 18423 | 1477  | 
by(induct xs) simp_all  | 
1478  | 
||
| 13142 | 1479  | 
lemma filter_True [simp]: "\<forall>x \<in> set xs. P x ==> filter P xs = xs"  | 
| 13145 | 1480  | 
by (induct xs) auto  | 
| 13114 | 1481  | 
|
| 13142 | 1482  | 
lemma filter_False [simp]: "\<forall>x \<in> set xs. \<not> P x ==> filter P xs = []"  | 
| 13145 | 1483  | 
by (induct xs) auto  | 
| 13114 | 1484  | 
|
| 64963 | 1485  | 
lemma filter_empty_conv: "(filter P xs = []) = (\<forall>x\<in>set xs. \<not> P x)"  | 
| 24349 | 1486  | 
by (induct xs) simp_all  | 
| 16998 | 1487  | 
|
1488  | 
lemma filter_id_conv: "(filter P xs = xs) = (\<forall>x\<in>set xs. P x)"  | 
|
1489  | 
apply (induct xs)  | 
|
1490  | 
apply auto  | 
|
1491  | 
apply(cut_tac P=P and xs=xs in length_filter_le)  | 
|
1492  | 
apply simp  | 
|
1493  | 
done  | 
|
| 13114 | 1494  | 
|
| 67091 | 1495  | 
lemma filter_map: "filter P (map f xs) = map f (filter (P \<circ> f) xs)"  | 
| 16965 | 1496  | 
by (induct xs) simp_all  | 
1497  | 
||
1498  | 
lemma length_filter_map[simp]:  | 
|
| 67091 | 1499  | 
"length (filter P (map f xs)) = length(filter (P \<circ> f) xs)"  | 
| 16965 | 1500  | 
by (simp add:filter_map)  | 
1501  | 
||
| 13142 | 1502  | 
lemma filter_is_subset [simp]: "set (filter P xs) \<le> set xs"  | 
| 13145 | 1503  | 
by auto  | 
| 13114 | 1504  | 
|
| 15246 | 1505  | 
lemma length_filter_less:  | 
| 67091 | 1506  | 
"\<lbrakk> x \<in> set xs; \<not> P x \<rbrakk> \<Longrightarrow> length(filter P xs) < length xs"  | 
| 15246 | 1507  | 
proof (induct xs)  | 
1508  | 
case Nil thus ?case by simp  | 
|
1509  | 
next  | 
|
1510  | 
case (Cons x xs) thus ?case  | 
|
| 62390 | 1511  | 
apply (auto split:if_split_asm)  | 
| 15246 | 1512  | 
using length_filter_le[of P xs] apply arith  | 
1513  | 
done  | 
|
1514  | 
qed  | 
|
| 13114 | 1515  | 
|
| 15281 | 1516  | 
lemma length_filter_conv_card:  | 
| 67091 | 1517  | 
  "length(filter p xs) = card{i. i < length xs \<and> p(xs!i)}"
 | 
| 15281 | 1518  | 
proof (induct xs)  | 
1519  | 
case Nil thus ?case by simp  | 
|
1520  | 
next  | 
|
1521  | 
case (Cons x xs)  | 
|
| 67091 | 1522  | 
  let ?S = "{i. i < length xs \<and> p(xs!i)}"
 | 
| 15281 | 1523  | 
have fin: "finite ?S" by(fast intro: bounded_nat_set_is_finite)  | 
1524  | 
show ?case (is "?l = card ?S'")  | 
|
1525  | 
proof (cases)  | 
|
1526  | 
assume "p x"  | 
|
1527  | 
hence eq: "?S' = insert 0 (Suc ` ?S)"  | 
|
| 25162 | 1528  | 
by(auto simp: image_def split:nat.split dest:gr0_implies_Suc)  | 
| 15281 | 1529  | 
have "length (filter p (x # xs)) = Suc(card ?S)"  | 
| 60758 | 1530  | 
using Cons \<open>p x\<close> by simp  | 
| 15281 | 1531  | 
also have "\<dots> = Suc(card(Suc ` ?S))" using fin  | 
| 44921 | 1532  | 
by (simp add: card_image)  | 
| 15281 | 1533  | 
also have "\<dots> = card ?S'" using eq fin  | 
1534  | 
by (simp add:card_insert_if) (simp add:image_def)  | 
|
1535  | 
finally show ?thesis .  | 
|
1536  | 
next  | 
|
1537  | 
assume "\<not> p x"  | 
|
1538  | 
hence eq: "?S' = Suc ` ?S"  | 
|
| 25162 | 1539  | 
by(auto simp add: image_def split:nat.split elim:lessE)  | 
| 15281 | 1540  | 
have "length (filter p (x # xs)) = card ?S"  | 
| 60758 | 1541  | 
using Cons \<open>\<not> p x\<close> by simp  | 
| 15281 | 1542  | 
also have "\<dots> = card(Suc ` ?S)" using fin  | 
| 44921 | 1543  | 
by (simp add: card_image)  | 
| 15281 | 1544  | 
also have "\<dots> = card ?S'" using eq fin  | 
1545  | 
by (simp add:card_insert_if)  | 
|
1546  | 
finally show ?thesis .  | 
|
1547  | 
qed  | 
|
1548  | 
qed  | 
|
1549  | 
||
| 17629 | 1550  | 
lemma Cons_eq_filterD:  | 
| 58807 | 1551  | 
"x#xs = filter P ys \<Longrightarrow>  | 
| 17629 | 1552  | 
\<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 | 1553  | 
(is "_ \<Longrightarrow> \<exists>us vs. ?P ys us vs")  | 
| 17629 | 1554  | 
proof(induct ys)  | 
1555  | 
case Nil thus ?case by simp  | 
|
1556  | 
next  | 
|
1557  | 
case (Cons y ys)  | 
|
1558  | 
show ?case (is "\<exists>x. ?Q x")  | 
|
1559  | 
proof cases  | 
|
1560  | 
assume Py: "P y"  | 
|
1561  | 
show ?thesis  | 
|
1562  | 
proof cases  | 
|
| 
25221
 
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
 
wenzelm 
parents: 
25215 
diff
changeset
 | 
1563  | 
assume "x = y"  | 
| 
 
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
 
wenzelm 
parents: 
25215 
diff
changeset
 | 
1564  | 
with Py Cons.prems have "?Q []" by simp  | 
| 
 
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
 
wenzelm 
parents: 
25215 
diff
changeset
 | 
1565  | 
then show ?thesis ..  | 
| 17629 | 1566  | 
next  | 
| 
25221
 
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
 
wenzelm 
parents: 
25215 
diff
changeset
 | 
1567  | 
assume "x \<noteq> y"  | 
| 
 
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
 
wenzelm 
parents: 
25215 
diff
changeset
 | 
1568  | 
with Py Cons.prems show ?thesis by simp  | 
| 17629 | 1569  | 
qed  | 
1570  | 
next  | 
|
| 
25221
 
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
 
wenzelm 
parents: 
25215 
diff
changeset
 | 
1571  | 
assume "\<not> P y"  | 
| 
44890
 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 
nipkow 
parents: 
44635 
diff
changeset
 | 
1572  | 
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
 | 
1573  | 
then have "?Q (y#us)" by simp  | 
| 
 
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
 
wenzelm 
parents: 
25215 
diff
changeset
 | 
1574  | 
then show ?thesis ..  | 
| 17629 | 1575  | 
qed  | 
1576  | 
qed  | 
|
1577  | 
||
1578  | 
lemma filter_eq_ConsD:  | 
|
| 58807 | 1579  | 
"filter P ys = x#xs \<Longrightarrow>  | 
| 17629 | 1580  | 
\<exists>us vs. ys = us @ x # vs \<and> (\<forall>u\<in>set us. \<not> P u) \<and> P x \<and> xs = filter P vs"  | 
1581  | 
by(rule Cons_eq_filterD) simp  | 
|
1582  | 
||
1583  | 
lemma filter_eq_Cons_iff:  | 
|
| 58807 | 1584  | 
"(filter P ys = x#xs) =  | 
| 17629 | 1585  | 
(\<exists>us vs. ys = us @ x # vs \<and> (\<forall>u\<in>set us. \<not> P u) \<and> P x \<and> xs = filter P vs)"  | 
1586  | 
by(auto dest:filter_eq_ConsD)  | 
|
1587  | 
||
1588  | 
lemma Cons_eq_filter_iff:  | 
|
| 58807 | 1589  | 
"(x#xs = filter P ys) =  | 
| 17629 | 1590  | 
(\<exists>us vs. ys = us @ x # vs \<and> (\<forall>u\<in>set us. \<not> P u) \<and> P x \<and> xs = filter P vs)"  | 
1591  | 
by(auto dest:Cons_eq_filterD)  | 
|
1592  | 
||
| 
61031
 
162bd20dae23
more lemmas on sorting and multisets (due to Thomas Sewell)
 
haftmann 
parents: 
60758 
diff
changeset
 | 
1593  | 
lemma inj_on_filter_key_eq:  | 
| 
 
162bd20dae23
more lemmas on sorting and multisets (due to Thomas Sewell)
 
haftmann 
parents: 
60758 
diff
changeset
 | 
1594  | 
assumes "inj_on f (insert y (set xs))"  | 
| 
 
162bd20dae23
more lemmas on sorting and multisets (due to Thomas Sewell)
 
haftmann 
parents: 
60758 
diff
changeset
 | 
1595  | 
shows "[x\<leftarrow>xs . f y = f x] = filter (HOL.eq y) xs"  | 
| 
 
162bd20dae23
more lemmas on sorting and multisets (due to Thomas Sewell)
 
haftmann 
parents: 
60758 
diff
changeset
 | 
1596  | 
using assms by (induct xs) auto  | 
| 
 
162bd20dae23
more lemmas on sorting and multisets (due to Thomas Sewell)
 
haftmann 
parents: 
60758 
diff
changeset
 | 
1597  | 
|
| 
44013
 
5cfc1c36ae97
moved recdef package to HOL/Library/Old_Recdef.thy
 
krauss 
parents: 
43594 
diff
changeset
 | 
1598  | 
lemma filter_cong[fundef_cong]:  | 
| 58807 | 1599  | 
"xs = ys \<Longrightarrow> (\<And>x. x \<in> set ys \<Longrightarrow> P x = Q x) \<Longrightarrow> filter P xs = filter Q ys"  | 
| 17501 | 1600  | 
apply simp  | 
1601  | 
apply(erule thin_rl)  | 
|
1602  | 
by (induct ys) simp_all  | 
|
1603  | 
||
| 15281 | 1604  | 
|
| 60758 | 1605  | 
subsubsection \<open>List partitioning\<close>  | 
| 
26442
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
1606  | 
|
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
1607  | 
primrec partition :: "('a \<Rightarrow> bool) \<Rightarrow>'a list \<Rightarrow> 'a list \<times> 'a list" where
 | 
| 50548 | 1608  | 
"partition P [] = ([], [])" |  | 
| 64963 | 1609  | 
"partition P (x # xs) =  | 
| 50548 | 1610  | 
(let (yes, no) = partition P xs  | 
1611  | 
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
 | 
1612  | 
|
| 58807 | 1613  | 
lemma partition_filter1: "fst (partition P xs) = filter P xs"  | 
| 
26442
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
1614  | 
by (induct xs) (auto simp add: Let_def split_def)  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
1615  | 
|
| 67091 | 1616  | 
lemma partition_filter2: "snd (partition P xs) = filter (Not \<circ> P) xs"  | 
| 
26442
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
1617  | 
by (induct xs) (auto simp add: Let_def split_def)  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
1618  | 
|
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
1619  | 
lemma partition_P:  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
1620  | 
assumes "partition P xs = (yes, no)"  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
1621  | 
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
 | 
1622  | 
proof -  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
1623  | 
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
 | 
1624  | 
by simp_all  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
1625  | 
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
 | 
1626  | 
qed  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
1627  | 
|
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
1628  | 
lemma partition_set:  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
1629  | 
assumes "partition P xs = (yes, no)"  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
1630  | 
shows "set yes \<union> set no = set xs"  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
1631  | 
proof -  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
1632  | 
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
 | 
1633  | 
by simp_all  | 
| 64963 | 1634  | 
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
 | 
1635  | 
qed  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
1636  | 
|
| 
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
 | 
1637  | 
lemma partition_filter_conv[simp]:  | 
| 67091 | 1638  | 
"partition f xs = (filter f xs,filter (Not \<circ> 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
 | 
1639  | 
unfolding partition_filter2[symmetric]  | 
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
1640  | 
unfolding partition_filter1[symmetric] by simp  | 
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
1641  | 
|
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
1642  | 
declare partition.simps[simp del]  | 
| 
26442
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
1643  | 
|
| 35115 | 1644  | 
|
| 60758 | 1645  | 
subsubsection \<open>@{const concat}\<close>
 | 
| 13114 | 1646  | 
|
| 13142 | 1647  | 
lemma concat_append [simp]: "concat (xs @ ys) = concat xs @ concat ys"  | 
| 13145 | 1648  | 
by (induct xs) auto  | 
| 13114 | 1649  | 
|
| 18447 | 1650  | 
lemma concat_eq_Nil_conv [simp]: "(concat xss = []) = (\<forall>xs \<in> set xss. xs = [])"  | 
| 13145 | 1651  | 
by (induct xss) auto  | 
| 13114 | 1652  | 
|
| 18447 | 1653  | 
lemma Nil_eq_concat_conv [simp]: "([] = concat xss) = (\<forall>xs \<in> set xss. xs = [])"  | 
| 13145 | 1654  | 
by (induct xss) auto  | 
| 13114 | 1655  | 
|
| 24308 | 1656  | 
lemma set_concat [simp]: "set (concat xs) = (UN x:set xs. set x)"  | 
| 13145 | 1657  | 
by (induct xs) auto  | 
| 13114 | 1658  | 
|
| 
24476
 
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
 
nipkow 
parents: 
24471 
diff
changeset
 | 
1659  | 
lemma concat_map_singleton[simp]: "concat(map (%x. [f x]) xs) = map f xs"  | 
| 24349 | 1660  | 
by (induct xs) auto  | 
1661  | 
||
| 13142 | 1662  | 
lemma map_concat: "map f (concat xs) = concat (map (map f) xs)"  | 
| 13145 | 1663  | 
by (induct xs) auto  | 
| 13114 | 1664  | 
|
| 13142 | 1665  | 
lemma filter_concat: "filter p (concat xs) = concat (map (filter p) xs)"  | 
| 13145 | 1666  | 
by (induct xs) auto  | 
| 13114 | 1667  | 
|
| 13142 | 1668  | 
lemma rev_concat: "rev (concat xs) = concat (map rev (rev xs))"  | 
| 13145 | 1669  | 
by (induct xs) auto  | 
| 13114 | 1670  | 
|
| 
40365
 
a1456f2e1c9d
added two lemmas about injectivity of concat to the list theory
 
bulwahn 
parents: 
40304 
diff
changeset
 | 
1671  | 
lemma concat_eq_concat_iff: "\<forall>(x, y) \<in> set (zip xs ys). length x = length y ==> length xs = length ys ==> (concat xs = concat ys) = (xs = ys)"  | 
| 
 
a1456f2e1c9d
added two lemmas about injectivity of concat to the list theory
 
bulwahn 
parents: 
40304 
diff
changeset
 | 
1672  | 
proof (induct xs arbitrary: ys)  | 
| 
 
a1456f2e1c9d
added two lemmas about injectivity of concat to the list theory
 
bulwahn 
parents: 
40304 
diff
changeset
 | 
1673  | 
case (Cons x xs ys)  | 
| 
 
a1456f2e1c9d
added two lemmas about injectivity of concat to the list theory
 
bulwahn 
parents: 
40304 
diff
changeset
 | 
1674  | 
thus ?case by (cases ys) auto  | 
| 
 
a1456f2e1c9d
added two lemmas about injectivity of concat to the list theory
 
bulwahn 
parents: 
40304 
diff
changeset
 | 
1675  | 
qed (auto)  | 
| 
 
a1456f2e1c9d
added two lemmas about injectivity of concat to the list theory
 
bulwahn 
parents: 
40304 
diff
changeset
 | 
1676  | 
|
| 
 
a1456f2e1c9d
added two lemmas about injectivity of concat to the list theory
 
bulwahn 
parents: 
40304 
diff
changeset
 | 
1677  | 
lemma concat_injective: "concat xs = concat ys ==> length xs = length ys ==> \<forall>(x, y) \<in> set (zip xs ys). length x = length y ==> xs = ys"  | 
| 
 
a1456f2e1c9d
added two lemmas about injectivity of concat to the list theory
 
bulwahn 
parents: 
40304 
diff
changeset
 | 
1678  | 
by (simp add: concat_eq_concat_iff)  | 
| 
 
a1456f2e1c9d
added two lemmas about injectivity of concat to the list theory
 
bulwahn 
parents: 
40304 
diff
changeset
 | 
1679  | 
|
| 13114 | 1680  | 
|
| 60758 | 1681  | 
subsubsection \<open>@{const nth}\<close>
 | 
| 13114 | 1682  | 
|
| 29827 | 1683  | 
lemma nth_Cons_0 [simp, code]: "(x # xs)!0 = x"  | 
| 13145 | 1684  | 
by auto  | 
| 13114 | 1685  | 
|
| 29827 | 1686  | 
lemma nth_Cons_Suc [simp, code]: "(x # xs)!(Suc n) = xs!n"  | 
| 13145 | 1687  | 
by auto  | 
| 13114 | 1688  | 
|
| 13142 | 1689  | 
declare nth.simps [simp del]  | 
| 13114 | 1690  | 
|
| 41842 | 1691  | 
lemma nth_Cons_pos[simp]: "0 < n \<Longrightarrow> (x#xs) ! n = xs ! (n - 1)"  | 
1692  | 
by(auto simp: Nat.gr0_conv_Suc)  | 
|
1693  | 
||
| 13114 | 1694  | 
lemma nth_append:  | 
| 24526 | 1695  | 
"(xs @ ys)!n = (if n < length xs then xs!n else ys!(n - length xs))"  | 
1696  | 
apply (induct xs arbitrary: n, simp)  | 
|
| 14208 | 1697  | 
apply (case_tac n, auto)  | 
| 13145 | 1698  | 
done  | 
| 13114 | 1699  | 
|
| 
14402
 
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
 
nipkow 
parents: 
14395 
diff
changeset
 | 
1700  | 
lemma nth_append_length [simp]: "(xs @ x # ys) ! length xs = x"  | 
| 
25221
 
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
 
wenzelm 
parents: 
25215 
diff
changeset
 | 
1701  | 
by (induct xs) auto  | 
| 
14402
 
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
 
nipkow 
parents: 
14395 
diff
changeset
 | 
1702  | 
|
| 
 
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
 
nipkow 
parents: 
14395 
diff
changeset
 | 
1703  | 
lemma nth_append_length_plus[simp]: "(xs @ ys) ! (length xs + n) = ys ! n"  | 
| 
25221
 
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
 
wenzelm 
parents: 
25215 
diff
changeset
 | 
1704  | 
by (induct xs) auto  | 
| 
14402
 
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
 
nipkow 
parents: 
14395 
diff
changeset
 | 
1705  | 
|
| 24526 | 1706  | 
lemma nth_map [simp]: "n < length xs ==> (map f xs)!n = f(xs!n)"  | 
1707  | 
apply (induct xs arbitrary: n, simp)  | 
|
| 14208 | 1708  | 
apply (case_tac n, auto)  | 
| 13145 | 1709  | 
done  | 
| 13114 | 1710  | 
|
| 66847 | 1711  | 
lemma nth_tl: "n < length (tl xs) \<Longrightarrow> tl xs ! n = xs ! Suc n"  | 
1712  | 
by (induction xs) auto  | 
|
| 45841 | 1713  | 
|
| 18423 | 1714  | 
lemma hd_conv_nth: "xs \<noteq> [] \<Longrightarrow> hd xs = xs!0"  | 
1715  | 
by(cases xs) simp_all  | 
|
1716  | 
||
| 18049 | 1717  | 
|
1718  | 
lemma list_eq_iff_nth_eq:  | 
|
| 67717 | 1719  | 
"(xs = ys) = (length xs = length ys \<and> (\<forall>i<length xs. xs!i = ys!i))"  | 
| 24526 | 1720  | 
apply(induct xs arbitrary: ys)  | 
| 24632 | 1721  | 
apply force  | 
| 18049 | 1722  | 
apply(case_tac ys)  | 
1723  | 
apply simp  | 
|
1724  | 
apply(simp add:nth_Cons split:nat.split)apply blast  | 
|
1725  | 
done  | 
|
1726  | 
||
| 13142 | 1727  | 
lemma set_conv_nth: "set xs = {xs!i | i. i < length xs}"
 | 
| 15251 | 1728  | 
apply (induct xs, simp, simp)  | 
| 13145 | 1729  | 
apply safe  | 
| 
55642
 
63beb38e9258
adapted to renaming of datatype 'cases' and 'recs' to 'case' and 'rec'
 
blanchet 
parents: 
55584 
diff
changeset
 | 
1730  | 
apply (metis nat.case(1) nth.simps zero_less_Suc)  | 
| 24632 | 1731  | 
apply (metis less_Suc_eq_0_disj nth_Cons_Suc)  | 
| 14208 | 1732  | 
apply (case_tac i, simp)  | 
| 
55642
 
63beb38e9258
adapted to renaming of datatype 'cases' and 'recs' to 'case' and 'rec'
 
blanchet 
parents: 
55584 
diff
changeset
 | 
1733  | 
apply (metis diff_Suc_Suc nat.case(2) nth.simps zero_less_diff)  | 
| 13145 | 1734  | 
done  | 
| 13114 | 1735  | 
|
| 17501 | 1736  | 
lemma in_set_conv_nth: "(x \<in> set xs) = (\<exists>i < length xs. xs!i = x)"  | 
1737  | 
by(auto simp:set_conv_nth)  | 
|
1738  | 
||
| 
51160
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
1739  | 
lemma nth_equal_first_eq:  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
1740  | 
assumes "x \<notin> set xs"  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
1741  | 
assumes "n \<le> length xs"  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
1742  | 
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
 | 
1743  | 
proof  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
1744  | 
assume ?lhs  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
1745  | 
show ?rhs  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
1746  | 
proof (rule ccontr)  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
1747  | 
assume "n \<noteq> 0"  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
1748  | 
then have "n > 0" by simp  | 
| 60758 | 1749  | 
with \<open>?lhs\<close> have "xs ! (n - 1) = x" by simp  | 
1750  | 
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
 | 
1751  | 
ultimately have "\<exists>i<length xs. xs ! i = x" by auto  | 
| 60758 | 1752  | 
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
 | 
1753  | 
qed  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
1754  | 
next  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
1755  | 
assume ?rhs then show ?lhs by simp  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
1756  | 
qed  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
1757  | 
|
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
1758  | 
lemma nth_non_equal_first_eq:  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
1759  | 
assumes "x \<noteq> y"  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
1760  | 
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
 | 
1761  | 
proof  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
1762  | 
assume "?lhs" with assms have "n > 0" by (cases n) simp_all  | 
| 60758 | 1763  | 
with \<open>?lhs\<close> show ?rhs by simp  | 
| 
51160
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
1764  | 
next  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
1765  | 
assume "?rhs" then show "?lhs" by simp  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
1766  | 
qed  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
1767  | 
|
| 67613 | 1768  | 
lemma list_ball_nth: "\<lbrakk>n < length xs; \<forall>x \<in> set xs. P x\<rbrakk> \<Longrightarrow> P(xs!n)"  | 
| 13145 | 1769  | 
by (auto simp add: set_conv_nth)  | 
| 13114 | 1770  | 
|
| 67613 | 1771  | 
lemma nth_mem [simp]: "n < length xs \<Longrightarrow> xs!n \<in> set xs"  | 
| 13145 | 1772  | 
by (auto simp add: set_conv_nth)  | 
| 13114 | 1773  | 
|
1774  | 
lemma all_nth_imp_all_set:  | 
|
| 67717 | 1775  | 
"\<lbrakk>\<forall>i < length xs. P(xs!i); x \<in> set xs\<rbrakk> \<Longrightarrow> P x"  | 
| 13145 | 1776  | 
by (auto simp add: set_conv_nth)  | 
| 13114 | 1777  | 
|
1778  | 
lemma all_set_conv_all_nth:  | 
|
| 67091 | 1779  | 
"(\<forall>x \<in> set xs. P x) = (\<forall>i. i < length xs \<longrightarrow> P (xs ! i))"  | 
| 13145 | 1780  | 
by (auto simp add: set_conv_nth)  | 
| 13114 | 1781  | 
|
| 25296 | 1782  | 
lemma rev_nth:  | 
1783  | 
"n < size xs \<Longrightarrow> rev xs ! n = xs ! (length xs - Suc n)"  | 
|
1784  | 
proof (induct xs arbitrary: n)  | 
|
1785  | 
case Nil thus ?case by simp  | 
|
1786  | 
next  | 
|
1787  | 
case (Cons x xs)  | 
|
1788  | 
hence n: "n < Suc (length xs)" by simp  | 
|
1789  | 
moreover  | 
|
1790  | 
  { assume "n < length xs"
 | 
|
| 
53374
 
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
 
wenzelm 
parents: 
53017 
diff
changeset
 | 
1791  | 
with n obtain n' where n': "length xs - n = Suc n'"  | 
| 25296 | 1792  | 
by (cases "length xs - n", auto)  | 
1793  | 
moreover  | 
|
| 
53374
 
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
 
wenzelm 
parents: 
53017 
diff
changeset
 | 
1794  | 
from n' have "length xs - Suc n = n'" by simp  | 
| 25296 | 1795  | 
ultimately  | 
1796  | 
have "xs ! (length xs - Suc n) = (x # xs) ! (length xs - n)" by simp  | 
|
1797  | 
}  | 
|
1798  | 
ultimately  | 
|
1799  | 
show ?case by (clarsimp simp add: Cons nth_append)  | 
|
1800  | 
qed  | 
|
| 13114 | 1801  | 
|
| 31159 | 1802  | 
lemma Skolem_list_nth:  | 
| 67091 | 1803  | 
"(\<forall>i<k. \<exists>x. P i x) = (\<exists>xs. size xs = k \<and> (\<forall>i<k. P i (xs!i)))"  | 
1804  | 
(is "_ = (\<exists>xs. ?P k xs)")  | 
|
| 31159 | 1805  | 
proof(induct k)  | 
1806  | 
case 0 show ?case by simp  | 
|
1807  | 
next  | 
|
1808  | 
case (Suc k)  | 
|
| 67091 | 1809  | 
show ?case (is "?L = ?R" is "_ = (\<exists>xs. ?P' xs)")  | 
| 31159 | 1810  | 
proof  | 
1811  | 
assume "?R" thus "?L" using Suc by auto  | 
|
1812  | 
next  | 
|
1813  | 
assume "?L"  | 
|
| 67091 | 1814  | 
with Suc obtain x xs where "?P k xs \<and> P k x" by (metis less_Suc_eq)  | 
| 31159 | 1815  | 
hence "?P'(xs@[x])" by(simp add:nth_append less_Suc_eq)  | 
1816  | 
thus "?R" ..  | 
|
1817  | 
qed  | 
|
1818  | 
qed  | 
|
1819  | 
||
1820  | 
||
| 60758 | 1821  | 
subsubsection \<open>@{const list_update}\<close>
 | 
| 13114 | 1822  | 
|
| 24526 | 1823  | 
lemma length_list_update [simp]: "length(xs[i:=x]) = length xs"  | 
1824  | 
by (induct xs arbitrary: i) (auto split: nat.split)  | 
|
| 13114 | 1825  | 
|
1826  | 
lemma nth_list_update:  | 
|
| 24526 | 1827  | 
"i < length xs==> (xs[i:=x])!j = (if i = j then x else xs!j)"  | 
1828  | 
by (induct xs arbitrary: i j) (auto simp add: nth_Cons split: nat.split)  | 
|
| 13114 | 1829  | 
|
| 13142 | 1830  | 
lemma nth_list_update_eq [simp]: "i < length xs ==> (xs[i:=x])!i = x"  | 
| 13145 | 1831  | 
by (simp add: nth_list_update)  | 
| 13114 | 1832  | 
|
| 24526 | 1833  | 
lemma nth_list_update_neq [simp]: "i \<noteq> j ==> xs[i:=x]!j = xs!j"  | 
1834  | 
by (induct xs arbitrary: i j) (auto simp add: nth_Cons split: nat.split)  | 
|
| 13114 | 1835  | 
|
| 24526 | 1836  | 
lemma list_update_id[simp]: "xs[i := xs!i] = xs"  | 
1837  | 
by (induct xs arbitrary: i) (simp_all split:nat.splits)  | 
|
1838  | 
||
1839  | 
lemma list_update_beyond[simp]: "length xs \<le> i \<Longrightarrow> xs[i:=x] = xs"  | 
|
1840  | 
apply (induct xs arbitrary: i)  | 
|
| 17501 | 1841  | 
apply simp  | 
1842  | 
apply (case_tac i)  | 
|
1843  | 
apply simp_all  | 
|
1844  | 
done  | 
|
1845  | 
||
| 31077 | 1846  | 
lemma list_update_nonempty[simp]: "xs[k:=x] = [] \<longleftrightarrow> xs=[]"  | 
| 56085 | 1847  | 
by (simp only: length_0_conv[symmetric] length_list_update)  | 
| 31077 | 1848  | 
|
| 13114 | 1849  | 
lemma list_update_same_conv:  | 
| 58807 | 1850  | 
"i < length xs ==> (xs[i := x] = xs) = (xs!i = x)"  | 
| 24526 | 1851  | 
by (induct xs arbitrary: i) (auto split: nat.split)  | 
| 13114 | 1852  | 
|
| 14187 | 1853  | 
lemma list_update_append1:  | 
| 58807 | 1854  | 
"i < size xs \<Longrightarrow> (xs @ ys)[i:=x] = xs[i:=x] @ ys"  | 
1855  | 
by (induct xs arbitrary: i)(auto split:nat.split)  | 
|
| 14187 | 1856  | 
|
| 15868 | 1857  | 
lemma list_update_append:  | 
| 64963 | 1858  | 
"(xs @ ys) [n:= x] =  | 
| 15868 | 1859  | 
(if n < length xs then xs[n:= x] @ ys else xs @ (ys [n-length xs:= x]))"  | 
| 24526 | 1860  | 
by (induct xs arbitrary: n) (auto split:nat.splits)  | 
| 15868 | 1861  | 
|
| 
14402
 
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
 
nipkow 
parents: 
14395 
diff
changeset
 | 
1862  | 
lemma list_update_length [simp]:  | 
| 58807 | 1863  | 
"(xs @ x # ys)[length xs := y] = (xs @ y # ys)"  | 
| 
14402
 
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
 
nipkow 
parents: 
14395 
diff
changeset
 | 
1864  | 
by (induct xs, auto)  | 
| 
 
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
 
nipkow 
parents: 
14395 
diff
changeset
 | 
1865  | 
|
| 31264 | 1866  | 
lemma map_update: "map f (xs[k:= y]) = (map f xs)[k := f y]"  | 
1867  | 
by(induct xs arbitrary: k)(auto split:nat.splits)  | 
|
1868  | 
||
1869  | 
lemma rev_update:  | 
|
1870  | 
"k < length xs \<Longrightarrow> rev (xs[k:= y]) = (rev xs)[length xs - k - 1 := y]"  | 
|
1871  | 
by (induct xs arbitrary: k) (auto simp: list_update_append split:nat.splits)  | 
|
1872  | 
||
| 13114 | 1873  | 
lemma update_zip:  | 
| 31080 | 1874  | 
"(zip xs ys)[i:=xy] = zip (xs[i:=fst xy]) (ys[i:=snd xy])"  | 
| 24526 | 1875  | 
by (induct ys arbitrary: i xy xs) (auto, case_tac xs, auto split: nat.split)  | 
1876  | 
||
1877  | 
lemma set_update_subset_insert: "set(xs[i:=x]) <= insert x (set xs)"  | 
|
1878  | 
by (induct xs arbitrary: i) (auto split: nat.split)  | 
|
| 13114 | 1879  | 
|
| 67613 | 1880  | 
lemma set_update_subsetI: "\<lbrakk>set xs \<subseteq> A; x \<in> A\<rbrakk> \<Longrightarrow> set(xs[i := x]) \<subseteq> A"  | 
| 13145 | 1881  | 
by (blast dest!: set_update_subset_insert [THEN subsetD])  | 
| 13114 | 1882  | 
|
| 24526 | 1883  | 
lemma set_update_memI: "n < length xs \<Longrightarrow> x \<in> set (xs[n := x])"  | 
1884  | 
by (induct xs arbitrary: n) (auto split:nat.splits)  | 
|
| 15868 | 1885  | 
|
| 31077 | 1886  | 
lemma list_update_overwrite[simp]:  | 
| 24796 | 1887  | 
"xs [i := x, i := y] = xs [i := y]"  | 
| 31077 | 1888  | 
apply (induct xs arbitrary: i) apply simp  | 
1889  | 
apply (case_tac i, simp_all)  | 
|
| 24796 | 1890  | 
done  | 
1891  | 
||
1892  | 
lemma list_update_swap:  | 
|
1893  | 
"i \<noteq> i' \<Longrightarrow> xs [i := x, i' := x'] = xs [i' := x', i := x]"  | 
|
1894  | 
apply (induct xs arbitrary: i i')  | 
|
| 57537 | 1895  | 
apply simp  | 
| 24796 | 1896  | 
apply (case_tac i, case_tac i')  | 
| 57537 | 1897  | 
apply auto  | 
| 24796 | 1898  | 
apply (case_tac i')  | 
1899  | 
apply auto  | 
|
1900  | 
done  | 
|
1901  | 
||
| 29827 | 1902  | 
lemma list_update_code [code]:  | 
1903  | 
"[][i := y] = []"  | 
|
1904  | 
"(x # xs)[0 := y] = y # xs"  | 
|
1905  | 
"(x # xs)[Suc i := y] = x # xs[i := y]"  | 
|
| 58807 | 1906  | 
by simp_all  | 
| 29827 | 1907  | 
|
| 13114 | 1908  | 
|
| 60758 | 1909  | 
subsubsection \<open>@{const last} and @{const butlast}\<close>
 | 
| 13114 | 1910  | 
|
| 13142 | 1911  | 
lemma last_snoc [simp]: "last (xs @ [x]) = x"  | 
| 13145 | 1912  | 
by (induct xs) auto  | 
| 13114 | 1913  | 
|
| 13142 | 1914  | 
lemma butlast_snoc [simp]: "butlast (xs @ [x]) = xs"  | 
| 13145 | 1915  | 
by (induct xs) auto  | 
| 13114 | 1916  | 
|
| 14302 | 1917  | 
lemma last_ConsL: "xs = [] \<Longrightarrow> last(x#xs) = x"  | 
| 58807 | 1918  | 
by simp  | 
| 14302 | 1919  | 
|
1920  | 
lemma last_ConsR: "xs \<noteq> [] \<Longrightarrow> last(x#xs) = last xs"  | 
|
| 58807 | 1921  | 
by simp  | 
| 14302 | 1922  | 
|
1923  | 
lemma last_append: "last(xs @ ys) = (if ys = [] then last xs else last ys)"  | 
|
1924  | 
by (induct xs) (auto)  | 
|
1925  | 
||
1926  | 
lemma last_appendL[simp]: "ys = [] \<Longrightarrow> last(xs @ ys) = last xs"  | 
|
1927  | 
by(simp add:last_append)  | 
|
1928  | 
||
1929  | 
lemma last_appendR[simp]: "ys \<noteq> [] \<Longrightarrow> last(xs @ ys) = last ys"  | 
|
1930  | 
by(simp add:last_append)  | 
|
1931  | 
||
| 45841 | 1932  | 
lemma last_tl: "xs = [] \<or> tl xs \<noteq> [] \<Longrightarrow>last (tl xs) = last xs"  | 
1933  | 
by (induct xs) simp_all  | 
|
1934  | 
||
1935  | 
lemma butlast_tl: "butlast (tl xs) = tl (butlast xs)"  | 
|
1936  | 
by (induct xs) simp_all  | 
|
1937  | 
||
| 17762 | 1938  | 
lemma hd_rev: "xs \<noteq> [] \<Longrightarrow> hd(rev xs) = last xs"  | 
1939  | 
by(rule rev_exhaust[of xs]) simp_all  | 
|
1940  | 
||
1941  | 
lemma last_rev: "xs \<noteq> [] \<Longrightarrow> last(rev xs) = hd xs"  | 
|
1942  | 
by(cases xs) simp_all  | 
|
1943  | 
||
| 17765 | 1944  | 
lemma last_in_set[simp]: "as \<noteq> [] \<Longrightarrow> last as \<in> set as"  | 
1945  | 
by (induct as) auto  | 
|
| 17762 | 1946  | 
|
| 13142 | 1947  | 
lemma length_butlast [simp]: "length (butlast xs) = length xs - 1"  | 
| 13145 | 1948  | 
by (induct xs rule: rev_induct) auto  | 
| 13114 | 1949  | 
|
1950  | 
lemma butlast_append:  | 
|
| 24526 | 1951  | 
"butlast (xs @ ys) = (if ys = [] then butlast xs else xs @ butlast ys)"  | 
1952  | 
by (induct xs arbitrary: ys) auto  | 
|
| 13114 | 1953  | 
|
| 13142 | 1954  | 
lemma append_butlast_last_id [simp]:  | 
| 67613 | 1955  | 
"xs \<noteq> [] \<Longrightarrow> butlast xs @ [last xs] = xs"  | 
| 13145 | 1956  | 
by (induct xs) auto  | 
| 13114 | 1957  | 
|
| 67613 | 1958  | 
lemma in_set_butlastD: "x \<in> set (butlast xs) \<Longrightarrow> x \<in> set xs"  | 
| 62390 | 1959  | 
by (induct xs) (auto split: if_split_asm)  | 
| 13114 | 1960  | 
|
1961  | 
lemma in_set_butlast_appendI:  | 
|
| 67091 | 1962  | 
"x \<in> set (butlast xs) \<or> x \<in> set (butlast ys) \<Longrightarrow> x \<in> set (butlast (xs @ ys))"  | 
| 13145 | 1963  | 
by (auto dest: in_set_butlastD simp add: butlast_append)  | 
| 13114 | 1964  | 
|
| 24526 | 1965  | 
lemma last_drop[simp]: "n < length xs \<Longrightarrow> last (drop n xs) = last xs"  | 
| 58807 | 1966  | 
by (induct xs arbitrary: n)(auto split:nat.split)  | 
| 17501 | 1967  | 
|
| 45841 | 1968  | 
lemma nth_butlast:  | 
1969  | 
assumes "n < length (butlast xs)" shows "butlast xs ! n = xs ! n"  | 
|
1970  | 
proof (cases xs)  | 
|
1971  | 
case (Cons y ys)  | 
|
1972  | 
moreover from assms have "butlast xs ! n = (butlast xs @ [last xs]) ! n"  | 
|
1973  | 
by (simp add: nth_append)  | 
|
1974  | 
ultimately show ?thesis using append_butlast_last_id by simp  | 
|
1975  | 
qed simp  | 
|
1976  | 
||
| 
30128
 
365ee7319b86
revert some Suc 0 lemmas back to their original forms; added some simp rules for (1::nat)
 
huffman 
parents: 
30079 
diff
changeset
 | 
1977  | 
lemma last_conv_nth: "xs\<noteq>[] \<Longrightarrow> last xs = xs!(length xs - 1)"  | 
| 17589 | 1978  | 
by(induct xs)(auto simp:neq_Nil_conv)  | 
1979  | 
||
| 
30128
 
365ee7319b86
revert some Suc 0 lemmas back to their original forms; added some simp rules for (1::nat)
 
huffman 
parents: 
30079 
diff
changeset
 | 
1980  | 
lemma butlast_conv_take: "butlast xs = take (length xs - 1) xs"  | 
| 67168 | 1981  | 
by (induction xs rule: induct_list012) simp_all  | 
| 
26584
 
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
 
huffman 
parents: 
26480 
diff
changeset
 | 
1982  | 
|
| 31077 | 1983  | 
lemma last_list_update:  | 
1984  | 
"xs \<noteq> [] \<Longrightarrow> last(xs[k:=x]) = (if k = size xs - 1 then x else last xs)"  | 
|
1985  | 
by (auto simp: last_conv_nth)  | 
|
1986  | 
||
1987  | 
lemma butlast_list_update:  | 
|
1988  | 
"butlast(xs[k:=x]) =  | 
|
| 58807 | 1989  | 
(if k = size xs - 1 then butlast xs else (butlast xs)[k:=x])"  | 
1990  | 
by(cases xs rule:rev_cases)(auto simp: list_update_append split: nat.splits)  | 
|
1991  | 
||
1992  | 
lemma last_map: "xs \<noteq> [] \<Longrightarrow> last (map f xs) = f (last xs)"  | 
|
1993  | 
by (cases xs rule: rev_cases) simp_all  | 
|
1994  | 
||
1995  | 
lemma map_butlast: "map f (butlast xs) = butlast (map f xs)"  | 
|
1996  | 
by (induct xs) simp_all  | 
|
| 36851 | 1997  | 
|
| 40230 | 1998  | 
lemma snoc_eq_iff_butlast:  | 
| 67091 | 1999  | 
"xs @ [x] = ys \<longleftrightarrow> (ys \<noteq> [] \<and> butlast ys = xs \<and> last ys = x)"  | 
| 56085 | 2000  | 
by fastforce  | 
| 40230 | 2001  | 
|
| 63173 | 2002  | 
corollary longest_common_suffix:  | 
2003  | 
"\<exists>ss xs' ys'. xs = xs' @ ss \<and> ys = ys' @ ss  | 
|
2004  | 
\<and> (xs' = [] \<or> ys' = [] \<or> last xs' \<noteq> last ys')"  | 
|
2005  | 
using longest_common_prefix[of "rev xs" "rev ys"]  | 
|
2006  | 
unfolding rev_swap rev_append by (metis last_rev rev_is_Nil_conv)  | 
|
2007  | 
||
| 24796 | 2008  | 
|
| 60758 | 2009  | 
subsubsection \<open>@{const take} and @{const drop}\<close>
 | 
| 13114 | 2010  | 
|
| 66658 | 2011  | 
lemma take_0: "take 0 xs = []"  | 
2012  | 
by (induct xs) auto  | 
|
2013  | 
||
2014  | 
lemma drop_0: "drop 0 xs = xs"  | 
|
| 13145 | 2015  | 
by (induct xs) auto  | 
| 13114 | 2016  | 
|
| 66658 | 2017  | 
lemma take0[simp]: "take 0 = (\<lambda>xs. [])"  | 
2018  | 
by(rule ext) (rule take_0)  | 
|
2019  | 
||
2020  | 
lemma drop0[simp]: "drop 0 = (\<lambda>x. x)"  | 
|
2021  | 
by(rule ext) (rule drop_0)  | 
|
| 13114 | 2022  | 
|
| 13142 | 2023  | 
lemma take_Suc_Cons [simp]: "take (Suc n) (x # xs) = x # take n xs"  | 
| 13145 | 2024  | 
by simp  | 
| 13114 | 2025  | 
|
| 13142 | 2026  | 
lemma drop_Suc_Cons [simp]: "drop (Suc n) (x # xs) = drop n xs"  | 
| 13145 | 2027  | 
by simp  | 
| 13114 | 2028  | 
|
| 13142 | 2029  | 
declare take_Cons [simp del] and drop_Cons [simp del]  | 
| 13114 | 2030  | 
|
| 67091 | 2031  | 
lemma take_Suc: "xs \<noteq> [] \<Longrightarrow> take (Suc n) xs = hd xs # take n (tl xs)"  | 
| 
15110
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
2032  | 
by(clarsimp simp add:neq_Nil_conv)  | 
| 
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
2033  | 
|
| 14187 | 2034  | 
lemma drop_Suc: "drop (Suc n) xs = drop n (tl xs)"  | 
2035  | 
by(cases xs, simp_all)  | 
|
2036  | 
||
| 66870 | 2037  | 
lemma hd_take[simp]: "j > 0 \<Longrightarrow> hd (take j xs) = hd xs"  | 
| 66657 | 2038  | 
by (metis gr0_conv_Suc list.sel(1) take.simps(1) take_Suc)  | 
2039  | 
||
| 
26584
 
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
 
huffman 
parents: 
26480 
diff
changeset
 | 
2040  | 
lemma take_tl: "take n (tl xs) = tl (take (Suc n) xs)"  | 
| 
 
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
 
huffman 
parents: 
26480 
diff
changeset
 | 
2041  | 
by (induct xs arbitrary: n) simp_all  | 
| 
 
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
 
huffman 
parents: 
26480 
diff
changeset
 | 
2042  | 
|
| 24526 | 2043  | 
lemma drop_tl: "drop n (tl xs) = tl(drop n xs)"  | 
2044  | 
by(induct xs arbitrary: n, simp_all add:drop_Cons drop_Suc split:nat.split)  | 
|
2045  | 
||
| 
26584
 
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
 
huffman 
parents: 
26480 
diff
changeset
 | 
2046  | 
lemma tl_take: "tl (take n xs) = take (n - 1) (tl xs)"  | 
| 
 
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
 
huffman 
parents: 
26480 
diff
changeset
 | 
2047  | 
by (cases n, simp, cases xs, auto)  | 
| 
 
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
 
huffman 
parents: 
26480 
diff
changeset
 | 
2048  | 
|
| 
 
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
 
huffman 
parents: 
26480 
diff
changeset
 | 
2049  | 
lemma tl_drop: "tl (drop n xs) = drop n (tl xs)"  | 
| 
 
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
 
huffman 
parents: 
26480 
diff
changeset
 | 
2050  | 
by (simp only: drop_tl)  | 
| 
 
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
 
huffman 
parents: 
26480 
diff
changeset
 | 
2051  | 
|
| 24526 | 2052  | 
lemma nth_via_drop: "drop n xs = y#ys \<Longrightarrow> xs!n = y"  | 
| 58807 | 2053  | 
by (induct xs arbitrary: n, simp)(auto simp: drop_Cons nth_Cons split: nat.splits)  | 
| 14187 | 2054  | 
|
| 13913 | 2055  | 
lemma take_Suc_conv_app_nth:  | 
| 24526 | 2056  | 
"i < length xs \<Longrightarrow> take (Suc i) xs = take i xs @ [xs!i]"  | 
2057  | 
apply (induct xs arbitrary: i, simp)  | 
|
| 14208 | 2058  | 
apply (case_tac i, auto)  | 
| 13913 | 2059  | 
done  | 
2060  | 
||
| 
58247
 
98d0f85d247f
enamed drop_Suc_conv_tl and nth_drop' to Cons_nth_drop_Suc
 
nipkow 
parents: 
58195 
diff
changeset
 | 
2061  | 
lemma Cons_nth_drop_Suc:  | 
| 24526 | 2062  | 
"i < length xs \<Longrightarrow> (xs!i) # (drop (Suc i) xs) = drop i xs"  | 
2063  | 
apply (induct xs arbitrary: i, simp)  | 
|
| 14591 | 2064  | 
apply (case_tac i, auto)  | 
2065  | 
done  | 
|
2066  | 
||
| 24526 | 2067  | 
lemma length_take [simp]: "length (take n xs) = min (length xs) n"  | 
2068  | 
by (induct n arbitrary: xs) (auto, case_tac xs, auto)  | 
|
2069  | 
||
2070  | 
lemma length_drop [simp]: "length (drop n xs) = (length xs - n)"  | 
|
2071  | 
by (induct n arbitrary: xs) (auto, case_tac xs, auto)  | 
|
2072  | 
||
2073  | 
lemma take_all [simp]: "length xs <= n ==> take n xs = xs"  | 
|
2074  | 
by (induct n arbitrary: xs) (auto, case_tac xs, auto)  | 
|
2075  | 
||
2076  | 
lemma drop_all [simp]: "length xs <= n ==> drop n xs = []"  | 
|
2077  | 
by (induct n arbitrary: xs) (auto, case_tac xs, auto)  | 
|
| 13114 | 2078  | 
|
| 13142 | 2079  | 
lemma take_append [simp]:  | 
| 24526 | 2080  | 
"take n (xs @ ys) = (take n xs @ take (n - length xs) ys)"  | 
2081  | 
by (induct n arbitrary: xs) (auto, case_tac xs, auto)  | 
|
| 13114 | 2082  | 
|
| 13142 | 2083  | 
lemma drop_append [simp]:  | 
| 24526 | 2084  | 
"drop n (xs @ ys) = drop n xs @ drop (n - length xs) ys"  | 
2085  | 
by (induct n arbitrary: xs) (auto, case_tac xs, auto)  | 
|
2086  | 
||
2087  | 
lemma take_take [simp]: "take n (take m xs) = take (min n m) xs"  | 
|
2088  | 
apply (induct m arbitrary: xs n, auto)  | 
|
| 58807 | 2089  | 
apply (case_tac xs, auto)  | 
| 
15236
 
f289e8ba2bb3
Proofs needed to be updated because induction now preserves name of
 
nipkow 
parents: 
15176 
diff
changeset
 | 
2090  | 
apply (case_tac n, auto)  | 
| 13145 | 2091  | 
done  | 
| 13114 | 2092  | 
|
| 24526 | 2093  | 
lemma drop_drop [simp]: "drop n (drop m xs) = drop (n + m) xs"  | 
2094  | 
apply (induct m arbitrary: xs, auto)  | 
|
| 58807 | 2095  | 
apply (case_tac xs, auto)  | 
| 13145 | 2096  | 
done  | 
| 13114 | 2097  | 
|
| 24526 | 2098  | 
lemma take_drop: "take n (drop m xs) = drop m (take (n + m) xs)"  | 
2099  | 
apply (induct m arbitrary: xs n, auto)  | 
|
| 58807 | 2100  | 
apply (case_tac xs, auto)  | 
| 13145 | 2101  | 
done  | 
| 13114 | 2102  | 
|
| 24526 | 2103  | 
lemma drop_take: "drop n (take m xs) = take (m-n) (drop n xs)"  | 
| 58807 | 2104  | 
by(induct xs arbitrary: m n)(auto simp: take_Cons drop_Cons split: nat.split)  | 
| 14802 | 2105  | 
|
| 24526 | 2106  | 
lemma append_take_drop_id [simp]: "take n xs @ drop n xs = xs"  | 
2107  | 
apply (induct n arbitrary: xs, auto)  | 
|
| 14208 | 2108  | 
apply (case_tac xs, auto)  | 
| 13145 | 2109  | 
done  | 
| 13114 | 2110  | 
|
| 24526 | 2111  | 
lemma take_eq_Nil[simp]: "(take n xs = []) = (n = 0 \<or> xs = [])"  | 
| 58807 | 2112  | 
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
 | 
2113  | 
|
| 24526 | 2114  | 
lemma drop_eq_Nil[simp]: "(drop n xs = []) = (length xs <= n)"  | 
| 58807 | 2115  | 
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
 | 
2116  | 
|
| 24526 | 2117  | 
lemma take_map: "take n (map f xs) = map f (take n xs)"  | 
2118  | 
apply (induct n arbitrary: xs, auto)  | 
|
| 58807 | 2119  | 
apply (case_tac xs, auto)  | 
| 13145 | 2120  | 
done  | 
| 13114 | 2121  | 
|
| 24526 | 2122  | 
lemma drop_map: "drop n (map f xs) = map f (drop n xs)"  | 
2123  | 
apply (induct n arbitrary: xs, auto)  | 
|
| 58807 | 2124  | 
apply (case_tac xs, auto)  | 
| 13145 | 2125  | 
done  | 
| 13114 | 2126  | 
|
| 24526 | 2127  | 
lemma rev_take: "rev (take i xs) = drop (length xs - i) (rev xs)"  | 
2128  | 
apply (induct xs arbitrary: i, auto)  | 
|
| 58807 | 2129  | 
apply (case_tac i, auto)  | 
| 13145 | 2130  | 
done  | 
| 13114 | 2131  | 
|
| 24526 | 2132  | 
lemma rev_drop: "rev (drop i xs) = take (length xs - i) (rev xs)"  | 
2133  | 
apply (induct xs arbitrary: i, auto)  | 
|
| 58807 | 2134  | 
apply (case_tac i, auto)  | 
| 13145 | 2135  | 
done  | 
| 13114 | 2136  | 
|
| 
61699
 
a81dc5c4d6a9
New theorems mostly from Peter Gammie
 
paulson <lp15@cam.ac.uk> 
parents: 
61682 
diff
changeset
 | 
2137  | 
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
 | 
2138  | 
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
 | 
2139  | 
|
| 
 
a81dc5c4d6a9
New theorems mostly from Peter Gammie
 
paulson <lp15@cam.ac.uk> 
parents: 
61682 
diff
changeset
 | 
2140  | 
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
 | 
2141  | 
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
 | 
2142  | 
|
| 24526 | 2143  | 
lemma nth_take [simp]: "i < n ==> (take n xs)!i = xs!i"  | 
2144  | 
apply (induct xs arbitrary: i n, auto)  | 
|
| 58807 | 2145  | 
apply (case_tac n, blast)  | 
| 14208 | 2146  | 
apply (case_tac i, auto)  | 
| 13145 | 2147  | 
done  | 
| 13114 | 2148  | 
|
| 13142 | 2149  | 
lemma nth_drop [simp]:  | 
| 66847 | 2150  | 
"n <= length xs ==> (drop n xs)!i = xs!(n + i)"  | 
| 24526 | 2151  | 
apply (induct n arbitrary: xs i, auto)  | 
| 58807 | 2152  | 
apply (case_tac xs, auto)  | 
| 13145 | 2153  | 
done  | 
| 3507 | 2154  | 
|
| 
26584
 
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
 
huffman 
parents: 
26480 
diff
changeset
 | 
2155  | 
lemma butlast_take:  | 
| 
30128
 
365ee7319b86
revert some Suc 0 lemmas back to their original forms; added some simp rules for (1::nat)
 
huffman 
parents: 
30079 
diff
changeset
 | 
2156  | 
"n <= length xs ==> butlast (take n xs) = take (n - 1) xs"  | 
| 
54863
 
82acc20ded73
prefer more canonical names for lemmas on min/max
 
haftmann 
parents: 
54600 
diff
changeset
 | 
2157  | 
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
 | 
2158  | 
|
| 
 
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
 
huffman 
parents: 
26480 
diff
changeset
 | 
2159  | 
lemma butlast_drop: "butlast (drop n xs) = drop n (butlast xs)"  | 
| 
57514
 
bdc2c6b40bf2
prefer ac_simps collections over separate name bindings for add and mult
 
haftmann 
parents: 
57512 
diff
changeset
 | 
2160  | 
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
 | 
2161  | 
|
| 
 
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
 
huffman 
parents: 
26480 
diff
changeset
 | 
2162  | 
lemma take_butlast: "n < length xs ==> take n (butlast xs) = take n xs"  | 
| 
54863
 
82acc20ded73
prefer more canonical names for lemmas on min/max
 
haftmann 
parents: 
54600 
diff
changeset
 | 
2163  | 
by (simp add: butlast_conv_take min.absorb1)  | 
| 
26584
 
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
 
huffman 
parents: 
26480 
diff
changeset
 | 
2164  | 
|
| 
 
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
 
huffman 
parents: 
26480 
diff
changeset
 | 
2165  | 
lemma drop_butlast: "drop n (butlast xs) = butlast (drop n xs)"  | 
| 
57514
 
bdc2c6b40bf2
prefer ac_simps collections over separate name bindings for add and mult
 
haftmann 
parents: 
57512 
diff
changeset
 | 
2166  | 
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
 | 
2167  | 
|
| 
46500
 
0196966d6d2d
removing unnecessary premises in theorems of List theory
 
bulwahn 
parents: 
46448 
diff
changeset
 | 
2168  | 
lemma hd_drop_conv_nth: "n < length xs \<Longrightarrow> hd(drop n xs) = xs!n"  | 
| 18423 | 2169  | 
by(simp add: hd_conv_nth)  | 
2170  | 
||
| 35248 | 2171  | 
lemma set_take_subset_set_take:  | 
2172  | 
"m <= n \<Longrightarrow> set(take m xs) <= set(take n xs)"  | 
|
| 
41463
 
edbf0a86fb1c
adding simproc to rewrite list comprehensions to set comprehensions; adopting proofs
 
bulwahn 
parents: 
41372 
diff
changeset
 | 
2173  | 
apply (induct xs arbitrary: m n)  | 
| 58807 | 2174  | 
apply simp  | 
| 
41463
 
edbf0a86fb1c
adding simproc to rewrite list comprehensions to set comprehensions; adopting proofs
 
bulwahn 
parents: 
41372 
diff
changeset
 | 
2175  | 
apply (case_tac n)  | 
| 
 
edbf0a86fb1c
adding simproc to rewrite list comprehensions to set comprehensions; adopting proofs
 
bulwahn 
parents: 
41372 
diff
changeset
 | 
2176  | 
apply (auto simp: take_Cons)  | 
| 
 
edbf0a86fb1c
adding simproc to rewrite list comprehensions to set comprehensions; adopting proofs
 
bulwahn 
parents: 
41372 
diff
changeset
 | 
2177  | 
done  | 
| 35248 | 2178  | 
|
| 24526 | 2179  | 
lemma set_take_subset: "set(take n xs) \<subseteq> set xs"  | 
2180  | 
by(induct xs arbitrary: n)(auto simp:take_Cons split:nat.split)  | 
|
2181  | 
||
2182  | 
lemma set_drop_subset: "set(drop n xs) \<subseteq> set xs"  | 
|
2183  | 
by(induct xs arbitrary: n)(auto simp:drop_Cons split:nat.split)  | 
|
| 14025 | 2184  | 
|
| 35248 | 2185  | 
lemma set_drop_subset_set_drop:  | 
2186  | 
"m >= n \<Longrightarrow> set(drop m xs) <= set(drop n xs)"  | 
|
2187  | 
apply(induct xs arbitrary: m n)  | 
|
| 58807 | 2188  | 
apply(auto simp:drop_Cons split:nat.split)  | 
| 56085 | 2189  | 
by (metis set_drop_subset subset_iff)  | 
| 35248 | 2190  | 
|
| 67613 | 2191  | 
lemma in_set_takeD: "x \<in> set(take n xs) \<Longrightarrow> x \<in> set xs"  | 
| 14187 | 2192  | 
using set_take_subset by fast  | 
2193  | 
||
| 67613 | 2194  | 
lemma in_set_dropD: "x \<in> set(drop n xs) \<Longrightarrow> x \<in> set xs"  | 
| 14187 | 2195  | 
using set_drop_subset by fast  | 
2196  | 
||
| 13114 | 2197  | 
lemma append_eq_conv_conj:  | 
| 24526 | 2198  | 
"(xs @ ys = zs) = (xs = take (length xs) zs \<and> ys = drop (length xs) zs)"  | 
2199  | 
apply (induct xs arbitrary: zs, simp, clarsimp)  | 
|
| 58807 | 2200  | 
apply (case_tac zs, auto)  | 
| 13145 | 2201  | 
done  | 
| 13142 | 2202  | 
|
| 58807 | 2203  | 
lemma take_add: "take (i+j) xs = take i xs @ take j (drop i xs)"  | 
| 64963 | 2204  | 
apply (induct xs arbitrary: i, auto)  | 
| 58807 | 2205  | 
apply (case_tac i, simp_all)  | 
| 14050 | 2206  | 
done  | 
2207  | 
||
| 14300 | 2208  | 
lemma append_eq_append_conv_if:  | 
| 58807 | 2209  | 
"(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
 | 
2210  | 
(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
 | 
2211  | 
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
 | 
2212  | 
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)"  | 
| 
 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 
wenzelm 
parents: 
52435 
diff
changeset
 | 
2213  | 
apply(induct xs\<^sub>1 arbitrary: ys\<^sub>1)  | 
| 14300 | 2214  | 
apply simp  | 
| 
53015
 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 
wenzelm 
parents: 
52435 
diff
changeset
 | 
2215  | 
apply(case_tac ys\<^sub>1)  | 
| 14300 | 2216  | 
apply simp_all  | 
2217  | 
done  | 
|
2218  | 
||
| 
15110
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
2219  | 
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
 | 
2220  | 
"n < length xs \<Longrightarrow> take n xs @ [hd (drop n xs)] = take (Suc n) xs"  | 
| 24526 | 2221  | 
apply(induct xs arbitrary: n)  | 
| 58807 | 2222  | 
apply simp  | 
| 
15110
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
2223  | 
apply(simp add:drop_Cons split:nat.split)  | 
| 
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
2224  | 
done  | 
| 
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
2225  | 
|
| 17501 | 2226  | 
lemma id_take_nth_drop:  | 
| 64963 | 2227  | 
"i < length xs \<Longrightarrow> xs = take i xs @ xs!i # drop (Suc i) xs"  | 
| 17501 | 2228  | 
proof -  | 
2229  | 
assume si: "i < length xs"  | 
|
2230  | 
hence "xs = take (Suc i) xs @ drop (Suc i) xs" by auto  | 
|
2231  | 
moreover  | 
|
2232  | 
from si have "take (Suc i) xs = take i xs @ [xs!i]"  | 
|
2233  | 
apply (rule_tac take_Suc_conv_app_nth) by arith  | 
|
2234  | 
ultimately show ?thesis by auto  | 
|
2235  | 
qed  | 
|
| 64963 | 2236  | 
|
| 59728 | 2237  | 
lemma take_update_cancel[simp]: "n \<le> m \<Longrightarrow> take n (xs[m := y]) = take n xs"  | 
2238  | 
by(simp add: list_eq_iff_nth_eq)  | 
|
2239  | 
||
2240  | 
lemma drop_update_cancel[simp]: "n < m \<Longrightarrow> drop m (xs[n := x]) = drop m xs"  | 
|
2241  | 
by(simp add: list_eq_iff_nth_eq)  | 
|
2242  | 
||
| 17501 | 2243  | 
lemma upd_conv_take_nth_drop:  | 
| 58807 | 2244  | 
"i < length xs \<Longrightarrow> xs[i:=a] = take i xs @ a # drop (Suc i) xs"  | 
| 17501 | 2245  | 
proof -  | 
2246  | 
assume i: "i < length xs"  | 
|
2247  | 
have "xs[i:=a] = (take i xs @ xs!i # drop (Suc i) xs)[i:=a]"  | 
|
2248  | 
by(rule arg_cong[OF id_take_nth_drop[OF i]])  | 
|
2249  | 
also have "\<dots> = take i xs @ a # drop (Suc i) xs"  | 
|
2250  | 
using i by (simp add: list_update_append)  | 
|
2251  | 
finally show ?thesis .  | 
|
2252  | 
qed  | 
|
2253  | 
||
| 
66891
 
5ec8cd4db7e2
drop a superfluous assumption that was found by the find_unused_assms command
 
bulwahn 
parents: 
66890 
diff
changeset
 | 
2254  | 
lemma take_update_swap: "take m (xs[n := x]) = (take m xs)[n := x]"  | 
| 59728 | 2255  | 
apply(cases "n \<ge> length xs")  | 
2256  | 
apply simp  | 
|
2257  | 
apply(simp add: upd_conv_take_nth_drop take_Cons drop_take min_def diff_Suc  | 
|
2258  | 
split: nat.split)  | 
|
2259  | 
done  | 
|
2260  | 
||
2261  | 
lemma drop_update_swap: "m \<le> n \<Longrightarrow> drop m (xs[n := x]) = (drop m xs)[n-m := x]"  | 
|
2262  | 
apply(cases "n \<ge> length xs")  | 
|
2263  | 
apply simp  | 
|
2264  | 
apply(simp add: upd_conv_take_nth_drop drop_take)  | 
|
2265  | 
done  | 
|
2266  | 
||
2267  | 
lemma nth_image: "l \<le> size xs \<Longrightarrow> nth xs ` {0..<l} = set(take l xs)"
 | 
|
2268  | 
by(auto simp: set_conv_nth image_def) (metis Suc_le_eq nth_take order_trans)  | 
|
2269  | 
||
| 13114 | 2270  | 
|
| 60758 | 2271  | 
subsubsection \<open>@{const takeWhile} and @{const dropWhile}\<close>
 | 
| 13114 | 2272  | 
|
| 
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
 | 
2273  | 
lemma length_takeWhile_le: "length (takeWhile P xs) \<le> length xs"  | 
| 58807 | 2274  | 
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
 | 
2275  | 
|
| 13142 | 2276  | 
lemma takeWhile_dropWhile_id [simp]: "takeWhile P xs @ dropWhile P xs = xs"  | 
| 13145 | 2277  | 
by (induct xs) auto  | 
| 13114 | 2278  | 
|
| 13142 | 2279  | 
lemma takeWhile_append1 [simp]:  | 
| 67091 | 2280  | 
"\<lbrakk>x \<in> set xs; \<not>P(x)\<rbrakk> \<Longrightarrow> takeWhile P (xs @ ys) = takeWhile P xs"  | 
| 13145 | 2281  | 
by (induct xs) auto  | 
| 13114 | 2282  | 
|
| 13142 | 2283  | 
lemma takeWhile_append2 [simp]:  | 
| 67613 | 2284  | 
"(\<And>x. x \<in> set xs \<Longrightarrow> P x) \<Longrightarrow> takeWhile P (xs @ ys) = xs @ takeWhile P ys"  | 
| 13145 | 2285  | 
by (induct xs) auto  | 
| 13114 | 2286  | 
|
| 67613 | 2287  | 
lemma takeWhile_tail: "\<not> P x \<Longrightarrow> takeWhile P (xs @ (x#l)) = takeWhile P xs"  | 
| 13145 | 2288  | 
by (induct xs) auto  | 
| 13114 | 2289  | 
|
| 
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
 | 
2290  | 
lemma takeWhile_nth: "j < length (takeWhile P xs) \<Longrightarrow> takeWhile P xs ! j = xs ! j"  | 
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
2291  | 
apply (subst (3) takeWhile_dropWhile_id[symmetric]) unfolding nth_append by auto  | 
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
2292  | 
|
| 58807 | 2293  | 
lemma dropWhile_nth: "j < length (dropWhile P xs) \<Longrightarrow>  | 
2294  | 
dropWhile P xs ! j = xs ! (j + length (takeWhile P 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
 | 
2295  | 
apply (subst (3) takeWhile_dropWhile_id[symmetric]) unfolding nth_append by auto  | 
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
2296  | 
|
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
2297  | 
lemma length_dropWhile_le: "length (dropWhile P xs) \<le> length xs"  | 
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
2298  | 
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
 | 
2299  | 
|
| 13142 | 2300  | 
lemma dropWhile_append1 [simp]:  | 
| 67091 | 2301  | 
"\<lbrakk>x \<in> set xs; \<not>P(x)\<rbrakk> \<Longrightarrow> dropWhile P (xs @ ys) = (dropWhile P xs)@ys"  | 
| 13145 | 2302  | 
by (induct xs) auto  | 
| 13114 | 2303  | 
|
| 13142 | 2304  | 
lemma dropWhile_append2 [simp]:  | 
| 67613 | 2305  | 
"(\<And>x. x \<in> set xs \<Longrightarrow> P(x)) ==> dropWhile P (xs @ ys) = dropWhile P ys"  | 
| 13145 | 2306  | 
by (induct xs) auto  | 
| 13114 | 2307  | 
|
| 45841 | 2308  | 
lemma dropWhile_append3:  | 
2309  | 
"\<not> P y \<Longrightarrow>dropWhile P (xs @ y # ys) = dropWhile P xs @ y # ys"  | 
|
2310  | 
by (induct xs) auto  | 
|
2311  | 
||
2312  | 
lemma dropWhile_last:  | 
|
2313  | 
"x \<in> set xs \<Longrightarrow> \<not> P x \<Longrightarrow> last (dropWhile P xs) = last xs"  | 
|
2314  | 
by (auto simp add: dropWhile_append3 in_set_conv_decomp)  | 
|
2315  | 
||
2316  | 
lemma set_dropWhileD: "x \<in> set (dropWhile P xs) \<Longrightarrow> x \<in> set xs"  | 
|
| 62390 | 2317  | 
by (induct xs) (auto split: if_split_asm)  | 
| 45841 | 2318  | 
|
| 67613 | 2319  | 
lemma set_takeWhileD: "x \<in> set (takeWhile P xs) \<Longrightarrow> x \<in> set xs \<and> P x"  | 
| 62390 | 2320  | 
by (induct xs) (auto split: if_split_asm)  | 
| 13114 | 2321  | 
|
| 13913 | 2322  | 
lemma takeWhile_eq_all_conv[simp]:  | 
| 58807 | 2323  | 
"(takeWhile P xs = xs) = (\<forall>x \<in> set xs. P x)"  | 
| 13913 | 2324  | 
by(induct xs, auto)  | 
2325  | 
||
2326  | 
lemma dropWhile_eq_Nil_conv[simp]:  | 
|
| 58807 | 2327  | 
"(dropWhile P xs = []) = (\<forall>x \<in> set xs. P x)"  | 
| 13913 | 2328  | 
by(induct xs, auto)  | 
2329  | 
||
2330  | 
lemma dropWhile_eq_Cons_conv:  | 
|
| 67091 | 2331  | 
"(dropWhile P xs = y#ys) = (xs = takeWhile P xs @ y # ys \<and> \<not> P y)"  | 
| 13913 | 2332  | 
by(induct xs, auto)  | 
2333  | 
||
| 31077 | 2334  | 
lemma distinct_takeWhile[simp]: "distinct xs ==> distinct (takeWhile P xs)"  | 
2335  | 
by (induct xs) (auto dest: set_takeWhileD)  | 
|
2336  | 
||
2337  | 
lemma distinct_dropWhile[simp]: "distinct xs ==> distinct (dropWhile P xs)"  | 
|
2338  | 
by (induct xs) auto  | 
|
2339  | 
||
| 
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
 | 
2340  | 
lemma takeWhile_map: "takeWhile P (map f xs) = map f (takeWhile (P \<circ> f) xs)"  | 
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
2341  | 
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
 | 
2342  | 
|
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
2343  | 
lemma dropWhile_map: "dropWhile P (map f xs) = map f (dropWhile (P \<circ> f) xs)"  | 
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
2344  | 
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
 | 
2345  | 
|
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
2346  | 
lemma takeWhile_eq_take: "takeWhile P xs = take (length (takeWhile P xs)) xs"  | 
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
2347  | 
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
 | 
2348  | 
|
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
2349  | 
lemma dropWhile_eq_drop: "dropWhile P xs = drop (length (takeWhile P xs)) xs"  | 
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
2350  | 
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
 | 
2351  | 
|
| 58807 | 2352  | 
lemma hd_dropWhile: "dropWhile P xs \<noteq> [] \<Longrightarrow> \<not> P (hd (dropWhile P xs))"  | 
| 63092 | 2353  | 
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
 | 
2354  | 
|
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
2355  | 
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
 | 
2356  | 
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
 | 
2357  | 
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
 | 
2358  | 
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
 | 
2359  | 
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
 | 
2360  | 
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
 | 
2361  | 
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
 | 
2362  | 
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
 | 
2363  | 
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
 | 
2364  | 
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
 | 
2365  | 
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
 | 
2366  | 
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
 | 
2367  | 
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
 | 
2368  | 
|
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
2369  | 
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
 | 
2370  | 
"\<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
 | 
2371  | 
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
 | 
2372  | 
proof (induct xs arbitrary: n)  | 
| 60580 | 2373  | 
case Nil  | 
2374  | 
thus ?case by simp  | 
|
2375  | 
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
 | 
2376  | 
case (Cons x xs)  | 
| 60580 | 2377  | 
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
 | 
2378  | 
proof (cases n)  | 
| 60580 | 2379  | 
case 0  | 
2380  | 
with Cons show ?thesis by simp  | 
|
2381  | 
next  | 
|
2382  | 
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
 | 
2383  | 
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
 | 
2384  | 
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
 | 
2385  | 
proof (rule Cons.hyps)  | 
| 60580 | 2386  | 
fix i  | 
2387  | 
assume "i < n'" "i < length xs"  | 
|
2388  | 
thus "P (xs ! i)" using Cons.prems(1)[of "Suc i"] by simp  | 
|
2389  | 
next  | 
|
2390  | 
assume "n' < length xs"  | 
|
2391  | 
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
 | 
2392  | 
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
 | 
2393  | 
ultimately show ?thesis by simp  | 
| 60580 | 2394  | 
qed  | 
2395  | 
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
 | 
2396  | 
|
| 
 
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  | 
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
 | 
2398  | 
"length (takeWhile P xs) < length xs \<Longrightarrow> \<not> P (xs ! length (takeWhile P xs))"  | 
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
2399  | 
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
 | 
2400  | 
|
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
2401  | 
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
 | 
2402  | 
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
 | 
2403  | 
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
 | 
2404  | 
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
 | 
2405  | 
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
 | 
2406  | 
hence "length (takeWhile P xs) < length xs" using assms by simp  | 
| 60758 | 2407  | 
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
 | 
2408  | 
qed  | 
| 31077 | 2409  | 
|
| 17501 | 2410  | 
lemma takeWhile_neq_rev: "\<lbrakk>distinct xs; x \<in> set xs\<rbrakk> \<Longrightarrow>  | 
| 58807 | 2411  | 
takeWhile (\<lambda>y. y \<noteq> x) (rev xs) = rev (tl (dropWhile (\<lambda>y. y \<noteq> x) xs))"  | 
| 17501 | 2412  | 
by(induct xs) (auto simp: takeWhile_tail[where l="[]"])  | 
2413  | 
||
2414  | 
lemma dropWhile_neq_rev: "\<lbrakk>distinct xs; x \<in> set xs\<rbrakk> \<Longrightarrow>  | 
|
2415  | 
dropWhile (\<lambda>y. y \<noteq> x) (rev xs) = x # rev (takeWhile (\<lambda>y. y \<noteq> x) xs)"  | 
|
2416  | 
apply(induct xs)  | 
|
2417  | 
apply simp  | 
|
2418  | 
apply auto  | 
|
2419  | 
apply(subst dropWhile_append2)  | 
|
2420  | 
apply auto  | 
|
2421  | 
done  | 
|
2422  | 
||
| 18423 | 2423  | 
lemma takeWhile_not_last:  | 
| 58807 | 2424  | 
"distinct xs \<Longrightarrow> takeWhile (\<lambda>y. y \<noteq> last xs) xs = butlast xs"  | 
| 67168 | 2425  | 
by(induction xs rule: induct_list012) auto  | 
| 18423 | 2426  | 
|
| 
44013
 
5cfc1c36ae97
moved recdef package to HOL/Library/Old_Recdef.thy
 
krauss 
parents: 
43594 
diff
changeset
 | 
2427  | 
lemma takeWhile_cong [fundef_cong]:  | 
| 67613 | 2428  | 
"\<lbrakk>l = k; \<And>x. x \<in> set l \<Longrightarrow> P x = Q x\<rbrakk>  | 
2429  | 
\<Longrightarrow> takeWhile P l = takeWhile Q k"  | 
|
| 24349 | 2430  | 
by (induct k arbitrary: l) (simp_all)  | 
| 
18336
 
1a2e30b37ed3
Added recdef congruence rules for bounded quantifiers and commonly used
 
krauss 
parents: 
18049 
diff
changeset
 | 
2431  | 
|
| 
44013
 
5cfc1c36ae97
moved recdef package to HOL/Library/Old_Recdef.thy
 
krauss 
parents: 
43594 
diff
changeset
 | 
2432  | 
lemma dropWhile_cong [fundef_cong]:  | 
| 67613 | 2433  | 
"\<lbrakk>l = k; \<And>x. x \<in> set l \<Longrightarrow> P x = Q x\<rbrakk>  | 
2434  | 
\<Longrightarrow> dropWhile P l = dropWhile Q k"  | 
|
| 24349 | 2435  | 
by (induct k arbitrary: l, simp_all)  | 
| 
18336
 
1a2e30b37ed3
Added recdef congruence rules for bounded quantifiers and commonly used
 
krauss 
parents: 
18049 
diff
changeset
 | 
2436  | 
|
| 52380 | 2437  | 
lemma takeWhile_idem [simp]:  | 
2438  | 
"takeWhile P (takeWhile P xs) = takeWhile P xs"  | 
|
| 58807 | 2439  | 
by (induct xs) auto  | 
| 52380 | 2440  | 
|
2441  | 
lemma dropWhile_idem [simp]:  | 
|
2442  | 
"dropWhile P (dropWhile P xs) = dropWhile P xs"  | 
|
| 58807 | 2443  | 
by (induct xs) auto  | 
| 52380 | 2444  | 
|
| 13114 | 2445  | 
|
| 60758 | 2446  | 
subsubsection \<open>@{const zip}\<close>
 | 
| 13114 | 2447  | 
|
| 13142 | 2448  | 
lemma zip_Nil [simp]: "zip [] ys = []"  | 
| 13145 | 2449  | 
by (induct ys) auto  | 
| 13114 | 2450  | 
|
| 13142 | 2451  | 
lemma zip_Cons_Cons [simp]: "zip (x # xs) (y # ys) = (x, y) # zip xs ys"  | 
| 13145 | 2452  | 
by simp  | 
| 13114 | 2453  | 
|
| 13142 | 2454  | 
declare zip_Cons [simp del]  | 
| 13114 | 2455  | 
|
| 36198 | 2456  | 
lemma [code]:  | 
2457  | 
"zip [] ys = []"  | 
|
2458  | 
"zip xs [] = []"  | 
|
2459  | 
"zip (x # xs) (y # ys) = (x, y) # zip xs ys"  | 
|
| 58807 | 2460  | 
by (fact zip_Nil zip.simps(1) zip_Cons_Cons)+  | 
| 36198 | 2461  | 
|
| 15281 | 2462  | 
lemma zip_Cons1:  | 
| 58807 | 2463  | 
"zip (x#xs) ys = (case ys of [] \<Rightarrow> [] | y#ys \<Rightarrow> (x,y)#zip xs ys)"  | 
| 15281 | 2464  | 
by(auto split:list.split)  | 
2465  | 
||
| 13142 | 2466  | 
lemma length_zip [simp]:  | 
| 58807 | 2467  | 
"length (zip xs ys) = min (length xs) (length ys)"  | 
| 
22493
 
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
 
krauss 
parents: 
22422 
diff
changeset
 | 
2468  | 
by (induct xs ys rule:list_induct2') auto  | 
| 13114 | 2469  | 
|
| 
34978
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
2470  | 
lemma zip_obtain_same_length:  | 
| 
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
2471  | 
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
 | 
2472  | 
\<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
 | 
2473  | 
shows "P (zip xs ys)"  | 
| 
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
2474  | 
proof -  | 
| 
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
2475  | 
let ?n = "min (length xs) (length ys)"  | 
| 
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
2476  | 
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
 | 
2477  | 
by (rule assms) simp_all  | 
| 
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
2478  | 
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
 | 
2479  | 
proof (induct xs arbitrary: ys)  | 
| 
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
2480  | 
case Nil then show ?case by simp  | 
| 
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
2481  | 
next  | 
| 
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
2482  | 
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
 | 
2483  | 
qed  | 
| 
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
2484  | 
ultimately show ?thesis by simp  | 
| 
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
2485  | 
qed  | 
| 
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
2486  | 
|
| 13114 | 2487  | 
lemma zip_append1:  | 
| 58807 | 2488  | 
"zip (xs @ ys) zs =  | 
2489  | 
zip xs (take (length xs) zs) @ zip ys (drop (length xs) zs)"  | 
|
| 
22493
 
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
 
krauss 
parents: 
22422 
diff
changeset
 | 
2490  | 
by (induct xs zs rule:list_induct2') auto  | 
| 13114 | 2491  | 
|
2492  | 
lemma zip_append2:  | 
|
| 58807 | 2493  | 
"zip xs (ys @ zs) =  | 
2494  | 
zip (take (length ys) xs) ys @ zip (drop (length ys) xs) zs"  | 
|
| 
22493
 
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
 
krauss 
parents: 
22422 
diff
changeset
 | 
2495  | 
by (induct xs ys rule:list_induct2') auto  | 
| 13114 | 2496  | 
|
| 13142 | 2497  | 
lemma zip_append [simp]:  | 
| 58807 | 2498  | 
"[| length xs = length us |] ==>  | 
2499  | 
zip (xs@ys) (us@vs) = zip xs us @ zip ys vs"  | 
|
| 13145 | 2500  | 
by (simp add: zip_append1)  | 
| 13114 | 2501  | 
|
2502  | 
lemma zip_rev:  | 
|
| 58807 | 2503  | 
"length xs = length ys ==> zip (rev xs) (rev ys) = rev (zip xs ys)"  | 
| 14247 | 2504  | 
by (induct rule:list_induct2, simp_all)  | 
| 13114 | 2505  | 
|
| 
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
 | 
2506  | 
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
 | 
2507  | 
"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
 | 
2508  | 
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
 | 
2509  | 
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
 | 
2510  | 
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
 | 
2511  | 
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
 | 
2512  | 
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
 | 
2513  | 
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
 | 
2514  | 
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
 | 
2515  | 
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
 | 
2516  | 
|
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
2517  | 
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
 | 
2518  | 
"zip (map f xs) ys = map (\<lambda>(x, y). (f x, y)) (zip xs ys)"  | 
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
2519  | 
using zip_map_map[of f xs "\<lambda>x. x" ys] by simp  | 
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
2520  | 
|
| 
 
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  | 
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
 | 
2522  | 
"zip xs (map f ys) = map (\<lambda>(x, y). (x, f y)) (zip xs ys)"  | 
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
2523  | 
using zip_map_map[of "\<lambda>x. x" xs f ys] by simp  | 
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
2524  | 
|
| 23096 | 2525  | 
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
 | 
2526  | 
"map f (zip (map g xs) ys) = map (%(x,y). f(g x, y)) (zip xs ys)"  | 
| 58807 | 2527  | 
by (auto simp: zip_map1)  | 
| 23096 | 2528  | 
|
2529  | 
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
 | 
2530  | 
"map f (zip xs (map g ys)) = map (%(x,y). f(x, g y)) (zip xs ys)"  | 
| 58807 | 2531  | 
by (auto simp: zip_map2)  | 
| 23096 | 2532  | 
|
| 60758 | 2533  | 
text\<open>Courtesy of Andreas Lochbihler:\<close>  | 
| 31080 | 2534  | 
lemma zip_same_conv_map: "zip xs xs = map (\<lambda>x. (x, x)) xs"  | 
2535  | 
by(induct xs) auto  | 
|
2536  | 
||
| 13142 | 2537  | 
lemma nth_zip [simp]:  | 
| 58807 | 2538  | 
"[| i < length xs; i < length ys|] ==> (zip xs ys)!i = (xs!i, ys!i)"  | 
| 24526 | 2539  | 
apply (induct ys arbitrary: i xs, simp)  | 
| 13145 | 2540  | 
apply (case_tac xs)  | 
2541  | 
apply (simp_all add: nth.simps split: nat.split)  | 
|
2542  | 
done  | 
|
| 13114 | 2543  | 
|
2544  | 
lemma set_zip:  | 
|
| 58807 | 2545  | 
  "set (zip xs ys) = {(xs!i, ys!i) | i. i < min (length xs) (length ys)}"
 | 
| 31080 | 2546  | 
by(simp add: set_conv_nth cong: rev_conj_cong)  | 
| 13114 | 2547  | 
|
| 
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
 | 
2548  | 
lemma zip_same: "((a,b) \<in> set (zip xs xs)) = (a \<in> set xs \<and> a = b)"  | 
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
2549  | 
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
 | 
2550  | 
|
| 13114 | 2551  | 
lemma zip_update:  | 
| 31080 | 2552  | 
"zip (xs[i:=x]) (ys[i:=y]) = (zip xs ys)[i:=(x,y)]"  | 
2553  | 
by(rule sym, simp add: update_zip)  | 
|
| 13114 | 2554  | 
|
| 13142 | 2555  | 
lemma zip_replicate [simp]:  | 
| 24526 | 2556  | 
"zip (replicate i x) (replicate j y) = replicate (min i j) (x,y)"  | 
2557  | 
apply (induct i arbitrary: j, auto)  | 
|
| 14208 | 2558  | 
apply (case_tac j, auto)  | 
| 13145 | 2559  | 
done  | 
| 13114 | 2560  | 
|
| 61630 | 2561  | 
lemma zip_replicate1: "zip (replicate n x) ys = map (Pair x) (take n ys)"  | 
2562  | 
by(induction ys arbitrary: n)(case_tac [2] n, simp_all)  | 
|
2563  | 
||
| 19487 | 2564  | 
lemma take_zip:  | 
| 24526 | 2565  | 
"take n (zip xs ys) = zip (take n xs) (take n ys)"  | 
2566  | 
apply (induct n arbitrary: xs ys)  | 
|
| 19487 | 2567  | 
apply simp  | 
2568  | 
apply (case_tac xs, simp)  | 
|
2569  | 
apply (case_tac ys, simp_all)  | 
|
2570  | 
done  | 
|
2571  | 
||
2572  | 
lemma drop_zip:  | 
|
| 24526 | 2573  | 
"drop n (zip xs ys) = zip (drop n xs) (drop n ys)"  | 
2574  | 
apply (induct n arbitrary: xs ys)  | 
|
| 19487 | 2575  | 
apply simp  | 
2576  | 
apply (case_tac xs, simp)  | 
|
2577  | 
apply (case_tac ys, simp_all)  | 
|
2578  | 
done  | 
|
2579  | 
||
| 
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
 | 
2580  | 
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
 | 
2581  | 
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
 | 
2582  | 
case (Cons x xs) thus ?case by (cases ys) auto  | 
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
2583  | 
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
 | 
2584  | 
|
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
2585  | 
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
 | 
2586  | 
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
 | 
2587  | 
case (Cons x xs) thus ?case by (cases ys) auto  | 
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
2588  | 
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
 | 
2589  | 
|
| 58807 | 2590  | 
lemma set_zip_leftD: "(x,y)\<in> set (zip xs ys) \<Longrightarrow> x \<in> set xs"  | 
| 
22493
 
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
 
krauss 
parents: 
22422 
diff
changeset
 | 
2591  | 
by (induct xs ys rule:list_induct2') auto  | 
| 
 
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
 
krauss 
parents: 
22422 
diff
changeset
 | 
2592  | 
|
| 58807 | 2593  | 
lemma set_zip_rightD: "(x,y)\<in> set (zip xs ys) \<Longrightarrow> y \<in> set ys"  | 
| 
22493
 
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
 
krauss 
parents: 
22422 
diff
changeset
 | 
2594  | 
by (induct xs ys rule:list_induct2') auto  | 
| 13142 | 2595  | 
|
| 23983 | 2596  | 
lemma in_set_zipE:  | 
| 67613 | 2597  | 
"(x,y) \<in> set(zip xs ys) \<Longrightarrow> (\<lbrakk> x \<in> set xs; y \<in> set ys \<rbrakk> \<Longrightarrow> R) \<Longrightarrow> R"  | 
| 23983 | 2598  | 
by(blast dest: set_zip_leftD set_zip_rightD)  | 
2599  | 
||
| 58807 | 2600  | 
lemma zip_map_fst_snd: "zip (map fst zs) (map snd zs) = zs"  | 
2601  | 
by (induct zs) simp_all  | 
|
| 29829 | 2602  | 
|
2603  | 
lemma zip_eq_conv:  | 
|
2604  | 
"length xs = length ys \<Longrightarrow> zip xs ys = zs \<longleftrightarrow> map fst zs = xs \<and> map snd zs = ys"  | 
|
| 58807 | 2605  | 
by (auto simp add: zip_map_fst_snd)  | 
| 29829 | 2606  | 
|
| 51173 | 2607  | 
lemma in_set_zip:  | 
2608  | 
"p \<in> set (zip xs ys) \<longleftrightarrow> (\<exists>n. xs ! n = fst p \<and> ys ! n = snd p  | 
|
| 58807 | 2609  | 
\<and> n < length xs \<and> n < length ys)"  | 
2610  | 
by (cases p) (auto simp add: set_zip)  | 
|
| 51173 | 2611  | 
|
| 66584 | 2612  | 
lemma in_set_impl_in_set_zip1:  | 
2613  | 
assumes "length xs = length ys"  | 
|
2614  | 
assumes "x \<in> set xs"  | 
|
2615  | 
obtains y where "(x, y) \<in> set (zip xs ys)"  | 
|
2616  | 
proof -  | 
|
2617  | 
from assms have "x \<in> set (map fst (zip xs ys))" by simp  | 
|
2618  | 
from this that show ?thesis by fastforce  | 
|
2619  | 
qed  | 
|
2620  | 
||
2621  | 
lemma in_set_impl_in_set_zip2:  | 
|
2622  | 
assumes "length xs = length ys"  | 
|
2623  | 
assumes "y \<in> set ys"  | 
|
2624  | 
obtains x where "(x, y) \<in> set (zip xs ys)"  | 
|
2625  | 
proof -  | 
|
2626  | 
from assms have "y \<in> set (map snd (zip xs ys))" by simp  | 
|
2627  | 
from this that show ?thesis by fastforce  | 
|
2628  | 
qed  | 
|
2629  | 
||
| 51173 | 2630  | 
lemma pair_list_eqI:  | 
2631  | 
assumes "map fst xs = map fst ys" and "map snd xs = map snd ys"  | 
|
2632  | 
shows "xs = ys"  | 
|
2633  | 
proof -  | 
|
2634  | 
from assms(1) have "length xs = length ys" by (rule map_eq_imp_length_eq)  | 
|
2635  | 
from this assms show ?thesis  | 
|
2636  | 
by (induct xs ys rule: list_induct2) (simp_all add: prod_eqI)  | 
|
2637  | 
qed  | 
|
2638  | 
||
| 35115 | 2639  | 
|
| 60758 | 2640  | 
subsubsection \<open>@{const list_all2}\<close>
 | 
| 13114 | 2641  | 
|
| 64963 | 2642  | 
lemma list_all2_lengthD [intro?]:  | 
| 
14316
 
91b897b9a2dc
added some [intro?] and [trans] for list_all2 lemmas
 
kleing 
parents: 
14302 
diff
changeset
 | 
2643  | 
"list_all2 P xs ys ==> length xs = length ys"  | 
| 
55524
 
f41ef840f09d
folded 'list_all2' with the relator generated by 'datatype_new'
 
blanchet 
parents: 
55473 
diff
changeset
 | 
2644  | 
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
 | 
2645  | 
|
| 19787 | 2646  | 
lemma list_all2_Nil [iff, code]: "list_all2 P [] ys = (ys = [])"  | 
| 
55524
 
f41ef840f09d
folded 'list_all2' with the relator generated by 'datatype_new'
 
blanchet 
parents: 
55473 
diff
changeset
 | 
2647  | 
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
 | 
2648  | 
|
| 19787 | 2649  | 
lemma list_all2_Nil2 [iff, code]: "list_all2 P xs [] = (xs = [])"  | 
| 
55524
 
f41ef840f09d
folded 'list_all2' with the relator generated by 'datatype_new'
 
blanchet 
parents: 
55473 
diff
changeset
 | 
2650  | 
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
 | 
2651  | 
|
| 
 
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
 
haftmann 
parents: 
19585 
diff
changeset
 | 
2652  | 
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
 | 
2653  | 
"list_all2 P (x # xs) (y # ys) = (P x y \<and> list_all2 P xs ys)"  | 
| 
55524
 
f41ef840f09d
folded 'list_all2' with the relator generated by 'datatype_new'
 
blanchet 
parents: 
55473 
diff
changeset
 | 
2654  | 
by (auto simp add: list_all2_iff)  | 
| 13114 | 2655  | 
|
2656  | 
lemma list_all2_Cons1:  | 
|
| 58807 | 2657  | 
"list_all2 P (x # xs) ys = (\<exists>z zs. ys = z # zs \<and> P x z \<and> list_all2 P xs zs)"  | 
| 13145 | 2658  | 
by (cases ys) auto  | 
| 13114 | 2659  | 
|
2660  | 
lemma list_all2_Cons2:  | 
|
| 58807 | 2661  | 
"list_all2 P xs (y # ys) = (\<exists>z zs. xs = z # zs \<and> P z y \<and> list_all2 P zs ys)"  | 
| 13145 | 2662  | 
by (cases xs) auto  | 
| 13114 | 2663  | 
|
| 45794 | 2664  | 
lemma list_all2_induct  | 
2665  | 
[consumes 1, case_names Nil Cons, induct set: list_all2]:  | 
|
2666  | 
assumes P: "list_all2 P xs ys"  | 
|
2667  | 
assumes Nil: "R [] []"  | 
|
| 47640 | 2668  | 
assumes Cons: "\<And>x xs y ys.  | 
2669  | 
\<lbrakk>P x y; list_all2 P xs ys; R xs ys\<rbrakk> \<Longrightarrow> R (x # xs) (y # ys)"  | 
|
| 45794 | 2670  | 
shows "R xs ys"  | 
2671  | 
using P  | 
|
2672  | 
by (induct xs arbitrary: ys) (auto simp add: list_all2_Cons1 Nil Cons)  | 
|
2673  | 
||
| 13142 | 2674  | 
lemma list_all2_rev [iff]:  | 
| 58807 | 2675  | 
"list_all2 P (rev xs) (rev ys) = list_all2 P xs ys"  | 
| 
55524
 
f41ef840f09d
folded 'list_all2' with the relator generated by 'datatype_new'
 
blanchet 
parents: 
55473 
diff
changeset
 | 
2676  | 
by (simp add: list_all2_iff zip_rev cong: conj_cong)  | 
| 13114 | 2677  | 
|
| 13863 | 2678  | 
lemma list_all2_rev1:  | 
| 58807 | 2679  | 
"list_all2 P (rev xs) ys = list_all2 P xs (rev ys)"  | 
| 13863 | 2680  | 
by (subst list_all2_rev [symmetric]) simp  | 
2681  | 
||
| 13114 | 2682  | 
lemma list_all2_append1:  | 
| 58807 | 2683  | 
"list_all2 P (xs @ ys) zs =  | 
| 67091 | 2684  | 
(\<exists>us vs. zs = us @ vs \<and> length us = length xs \<and> length vs = length ys \<and>  | 
| 58807 | 2685  | 
list_all2 P xs us \<and> list_all2 P ys vs)"  | 
| 
55524
 
f41ef840f09d
folded 'list_all2' with the relator generated by 'datatype_new'
 
blanchet 
parents: 
55473 
diff
changeset
 | 
2686  | 
apply (simp add: list_all2_iff zip_append1)  | 
| 13145 | 2687  | 
apply (rule iffI)  | 
2688  | 
apply (rule_tac x = "take (length xs) zs" in exI)  | 
|
2689  | 
apply (rule_tac x = "drop (length xs) zs" in exI)  | 
|
| 14208 | 2690  | 
apply (force split: nat_diff_split simp add: min_def, clarify)  | 
| 13145 | 2691  | 
apply (simp add: ball_Un)  | 
2692  | 
done  | 
|
| 13114 | 2693  | 
|
2694  | 
lemma list_all2_append2:  | 
|
| 58807 | 2695  | 
"list_all2 P xs (ys @ zs) =  | 
| 67091 | 2696  | 
(\<exists>us vs. xs = us @ vs \<and> length us = length ys \<and> length vs = length zs \<and>  | 
| 58807 | 2697  | 
list_all2 P us ys \<and> list_all2 P vs zs)"  | 
| 
55524
 
f41ef840f09d
folded 'list_all2' with the relator generated by 'datatype_new'
 
blanchet 
parents: 
55473 
diff
changeset
 | 
2698  | 
apply (simp add: list_all2_iff zip_append2)  | 
| 13145 | 2699  | 
apply (rule iffI)  | 
2700  | 
apply (rule_tac x = "take (length ys) xs" in exI)  | 
|
2701  | 
apply (rule_tac x = "drop (length ys) xs" in exI)  | 
|
| 14208 | 2702  | 
apply (force split: nat_diff_split simp add: min_def, clarify)  | 
| 13145 | 2703  | 
apply (simp add: ball_Un)  | 
2704  | 
done  | 
|
| 13114 | 2705  | 
|
| 13863 | 2706  | 
lemma list_all2_append:  | 
| 14247 | 2707  | 
"length xs = length ys \<Longrightarrow>  | 
2708  | 
list_all2 P (xs@us) (ys@vs) = (list_all2 P xs ys \<and> list_all2 P us vs)"  | 
|
2709  | 
by (induct rule:list_induct2, simp_all)  | 
|
| 13863 | 2710  | 
|
2711  | 
lemma list_all2_appendI [intro?, trans]:  | 
|
2712  | 
"\<lbrakk> list_all2 P a b; list_all2 P c d \<rbrakk> \<Longrightarrow> list_all2 P (a@c) (b@d)"  | 
|
| 24349 | 2713  | 
by (simp add: list_all2_append list_all2_lengthD)  | 
| 13863 | 2714  | 
|
| 13114 | 2715  | 
lemma list_all2_conv_all_nth:  | 
| 58807 | 2716  | 
"list_all2 P xs ys =  | 
2717  | 
(length xs = length ys \<and> (\<forall>i < length xs. P (xs!i) (ys!i)))"  | 
|
| 
55524
 
f41ef840f09d
folded 'list_all2' with the relator generated by 'datatype_new'
 
blanchet 
parents: 
55473 
diff
changeset
 | 
2718  | 
by (force simp add: list_all2_iff set_zip)  | 
| 13114 | 2719  | 
|
| 
13883
 
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
 
berghofe 
parents: 
13863 
diff
changeset
 | 
2720  | 
lemma list_all2_trans:  | 
| 
 
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
 
berghofe 
parents: 
13863 
diff
changeset
 | 
2721  | 
assumes tr: "!!a b c. P1 a b ==> P2 b c ==> P3 a c"  | 
| 
 
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
 
berghofe 
parents: 
13863 
diff
changeset
 | 
2722  | 
shows "!!bs cs. list_all2 P1 as bs ==> list_all2 P2 bs cs ==> list_all2 P3 as cs"  | 
| 
 
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
 
berghofe 
parents: 
13863 
diff
changeset
 | 
2723  | 
(is "!!bs cs. PROP ?Q as bs cs")  | 
| 
 
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
 
berghofe 
parents: 
13863 
diff
changeset
 | 
2724  | 
proof (induct as)  | 
| 
 
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
 
berghofe 
parents: 
13863 
diff
changeset
 | 
2725  | 
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
 | 
2726  | 
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
 | 
2727  | 
proof (induct bs)  | 
| 
 
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
 
berghofe 
parents: 
13863 
diff
changeset
 | 
2728  | 
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
 | 
2729  | 
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
 | 
2730  | 
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
 | 
2731  | 
qed simp  | 
| 
 
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
 
berghofe 
parents: 
13863 
diff
changeset
 | 
2732  | 
qed simp  | 
| 
 
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
 
berghofe 
parents: 
13863 
diff
changeset
 | 
2733  | 
|
| 13863 | 2734  | 
lemma list_all2_all_nthI [intro?]:  | 
2735  | 
"length a = length b \<Longrightarrow> (\<And>n. n < length a \<Longrightarrow> P (a!n) (b!n)) \<Longrightarrow> list_all2 P a b"  | 
|
| 24349 | 2736  | 
by (simp add: list_all2_conv_all_nth)  | 
| 13863 | 2737  | 
|
| 14395 | 2738  | 
lemma list_all2I:  | 
| 
61032
 
b57df8eecad6
standardized some occurences of ancient "split" alias
 
haftmann 
parents: 
61031 
diff
changeset
 | 
2739  | 
"\<forall>x \<in> set (zip a b). case_prod P x \<Longrightarrow> length a = length b \<Longrightarrow> list_all2 P a b"  | 
| 
55524
 
f41ef840f09d
folded 'list_all2' with the relator generated by 'datatype_new'
 
blanchet 
parents: 
55473 
diff
changeset
 | 
2740  | 
by (simp add: list_all2_iff)  | 
| 14395 | 2741  | 
|
| 14328 | 2742  | 
lemma list_all2_nthD:  | 
| 13863 | 2743  | 
"\<lbrakk> list_all2 P xs ys; p < size xs \<rbrakk> \<Longrightarrow> P (xs!p) (ys!p)"  | 
| 24349 | 2744  | 
by (simp add: list_all2_conv_all_nth)  | 
| 13863 | 2745  | 
|
| 14302 | 2746  | 
lemma list_all2_nthD2:  | 
2747  | 
"\<lbrakk>list_all2 P xs ys; p < size ys\<rbrakk> \<Longrightarrow> P (xs!p) (ys!p)"  | 
|
| 24349 | 2748  | 
by (frule list_all2_lengthD) (auto intro: list_all2_nthD)  | 
| 14302 | 2749  | 
|
| 64963 | 2750  | 
lemma list_all2_map1:  | 
| 13863 | 2751  | 
"list_all2 P (map f as) bs = list_all2 (\<lambda>x y. P (f x) y) as bs"  | 
| 24349 | 2752  | 
by (simp add: list_all2_conv_all_nth)  | 
| 13863 | 2753  | 
|
| 64963 | 2754  | 
lemma list_all2_map2:  | 
| 13863 | 2755  | 
"list_all2 P as (map f bs) = list_all2 (\<lambda>x y. P x (f y)) as bs"  | 
| 24349 | 2756  | 
by (auto simp add: list_all2_conv_all_nth)  | 
| 13863 | 2757  | 
|
| 
14316
 
91b897b9a2dc
added some [intro?] and [trans] for list_all2 lemmas
 
kleing 
parents: 
14302 
diff
changeset
 | 
2758  | 
lemma list_all2_refl [intro?]:  | 
| 13863 | 2759  | 
"(\<And>x. P x x) \<Longrightarrow> list_all2 P xs xs"  | 
| 24349 | 2760  | 
by (simp add: list_all2_conv_all_nth)  | 
| 13863 | 2761  | 
|
2762  | 
lemma list_all2_update_cong:  | 
|
| 
46669
 
c1d2ab32174a
one general list_all2_update_cong instead of two special ones
 
bulwahn 
parents: 
46664 
diff
changeset
 | 
2763  | 
"\<lbrakk> list_all2 P xs ys; P x y \<rbrakk> \<Longrightarrow> list_all2 P (xs[i:=x]) (ys[i:=y])"  | 
| 
 
c1d2ab32174a
one general list_all2_update_cong instead of two special ones
 
bulwahn 
parents: 
46664 
diff
changeset
 | 
2764  | 
by (cases "i < length ys") (auto simp add: list_all2_conv_all_nth nth_list_update)  | 
| 13863 | 2765  | 
|
| 14302 | 2766  | 
lemma list_all2_takeI [simp,intro?]:  | 
| 24526 | 2767  | 
"list_all2 P xs ys \<Longrightarrow> list_all2 P (take n xs) (take n ys)"  | 
2768  | 
apply (induct xs arbitrary: n ys)  | 
|
2769  | 
apply simp  | 
|
2770  | 
apply (clarsimp simp add: list_all2_Cons1)  | 
|
2771  | 
apply (case_tac n)  | 
|
2772  | 
apply auto  | 
|
2773  | 
done  | 
|
| 14302 | 2774  | 
|
2775  | 
lemma list_all2_dropI [simp,intro?]:  | 
|
| 24526 | 2776  | 
"list_all2 P as bs \<Longrightarrow> list_all2 P (drop n as) (drop n bs)"  | 
2777  | 
apply (induct as arbitrary: n bs, simp)  | 
|
2778  | 
apply (clarsimp simp add: list_all2_Cons1)  | 
|
2779  | 
apply (case_tac n, simp, simp)  | 
|
2780  | 
done  | 
|
| 13863 | 2781  | 
|
| 14327 | 2782  | 
lemma list_all2_mono [intro?]:  | 
| 24526 | 2783  | 
"list_all2 P xs ys \<Longrightarrow> (\<And>xs ys. P xs ys \<Longrightarrow> Q xs ys) \<Longrightarrow> list_all2 Q xs ys"  | 
2784  | 
apply (induct xs arbitrary: ys, simp)  | 
|
2785  | 
apply (case_tac ys, auto)  | 
|
2786  | 
done  | 
|
| 13863 | 2787  | 
|
| 22551 | 2788  | 
lemma list_all2_eq:  | 
| 67399 | 2789  | 
"xs = ys \<longleftrightarrow> list_all2 (=) xs ys"  | 
| 24349 | 2790  | 
by (induct xs ys rule: list_induct2') auto  | 
| 22551 | 2791  | 
|
| 40230 | 2792  | 
lemma list_eq_iff_zip_eq:  | 
2793  | 
"xs = ys \<longleftrightarrow> length xs = length ys \<and> (\<forall>(x,y) \<in> set (zip xs ys). x = y)"  | 
|
2794  | 
by(auto simp add: set_zip list_all2_eq list_all2_conv_all_nth cong: conj_cong)  | 
|
2795  | 
||
| 57308 | 2796  | 
lemma list_all2_same: "list_all2 P xs xs \<longleftrightarrow> (\<forall>x\<in>set xs. P x x)"  | 
2797  | 
by(auto simp add: list_all2_conv_all_nth set_conv_nth)  | 
|
| 13142 | 2798  | 
|
| 61630 | 2799  | 
lemma zip_assoc:  | 
2800  | 
"zip xs (zip ys zs) = map (\<lambda>((x, y), z). (x, y, z)) (zip (zip xs ys) zs)"  | 
|
| 67399 | 2801  | 
by(rule list_all2_all_nthI[where P="(=)", unfolded list.rel_eq]) simp_all  | 
| 61630 | 2802  | 
|
2803  | 
lemma zip_commute: "zip xs ys = map (\<lambda>(x, y). (y, x)) (zip ys xs)"  | 
|
| 67399 | 2804  | 
by(rule list_all2_all_nthI[where P="(=)", unfolded list.rel_eq]) simp_all  | 
| 61630 | 2805  | 
|
2806  | 
lemma zip_left_commute:  | 
|
2807  | 
"zip xs (zip ys zs) = map (\<lambda>(y, (x, z)). (x, y, z)) (zip ys (zip xs zs))"  | 
|
| 67399 | 2808  | 
by(rule list_all2_all_nthI[where P="(=)", unfolded list.rel_eq]) simp_all  | 
| 61630 | 2809  | 
|
2810  | 
lemma zip_replicate2: "zip xs (replicate n y) = map (\<lambda>x. (x, y)) (take n xs)"  | 
|
2811  | 
by(subst zip_commute)(simp add: zip_replicate1)  | 
|
2812  | 
||
| 60758 | 2813  | 
subsubsection \<open>@{const List.product} and @{const product_lists}\<close>
 | 
| 
49948
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
2814  | 
|
| 63720 | 2815  | 
lemma product_concat_map:  | 
2816  | 
"List.product xs ys = concat (map (\<lambda>x. map (\<lambda>y. (x,y)) ys) xs)"  | 
|
2817  | 
by(induction xs) (simp)+  | 
|
2818  | 
||
| 58807 | 2819  | 
lemma set_product[simp]: "set (List.product xs ys) = set xs \<times> set ys"  | 
2820  | 
by (induct xs) auto  | 
|
| 
49948
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
2821  | 
|
| 
51160
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
2822  | 
lemma length_product [simp]:  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
2823  | 
"length (List.product xs ys) = length xs * length ys"  | 
| 58807 | 2824  | 
by (induct xs) simp_all  | 
| 
51160
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
2825  | 
|
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
2826  | 
lemma product_nth:  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
2827  | 
assumes "n < length xs * length ys"  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
2828  | 
shows "List.product xs ys ! n = (xs ! (n div length ys), ys ! (n mod length ys))"  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
2829  | 
using assms proof (induct xs arbitrary: n)  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
2830  | 
case Nil then show ?case by simp  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
2831  | 
next  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
2832  | 
case (Cons x xs n)  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
2833  | 
then have "length ys > 0" by auto  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
2834  | 
with Cons show ?case  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
2835  | 
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
 | 
2836  | 
qed  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
2837  | 
|
| 64963 | 2838  | 
lemma in_set_product_lists_length:  | 
| 
53721
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
2839  | 
"xs \<in> set (product_lists xss) \<Longrightarrow> length xs = length xss"  | 
| 58807 | 2840  | 
by (induct xss arbitrary: xs) auto  | 
| 
53721
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
2841  | 
|
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
2842  | 
lemma product_lists_set:  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
2843  | 
  "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
 | 
2844  | 
proof (intro equalityI subsetI, unfold mem_Collect_eq)  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
2845  | 
fix xs assume "xs \<in> ?L"  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
2846  | 
then have "length xs = length xss" by (rule in_set_product_lists_length)  | 
| 60758 | 2847  | 
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
 | 
2848  | 
next  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
2849  | 
fix xs assume "?R xs"  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
2850  | 
then show "xs \<in> ?L" by induct auto  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
2851  | 
qed  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
2852  | 
|
| 
49948
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
2853  | 
|
| 60758 | 2854  | 
subsubsection \<open>@{const fold} with natural argument order\<close>
 | 
2855  | 
||
| 61799 | 2856  | 
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
 | 
2857  | 
"fold f [] s = s"  | 
| 64963 | 2858  | 
"fold f (x # xs) s = fold f xs (f x s)"  | 
| 58807 | 2859  | 
by simp_all  | 
| 
48828
 
441a4eed7823
prefer eta-expanded code equations for fold, to accomodate tail recursion optimisation in Scala
 
haftmann 
parents: 
48619 
diff
changeset
 | 
2860  | 
|
| 
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
 | 
2861  | 
lemma fold_remove1_split:  | 
| 58807 | 2862  | 
"\<lbrakk> \<And>x y. x \<in> set xs \<Longrightarrow> y \<in> set xs \<Longrightarrow> f x \<circ> f y = f y \<circ> f x;  | 
2863  | 
x \<in> set xs \<rbrakk>  | 
|
2864  | 
\<Longrightarrow> fold f xs = fold f (remove1 x xs) \<circ> f x"  | 
|
2865  | 
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
 | 
2866  | 
|
| 
 
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
 
haftmann 
parents: 
46125 
diff
changeset
 | 
2867  | 
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
 | 
2868  | 
"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
 | 
2869  | 
\<Longrightarrow> fold f xs a = fold g ys b"  | 
| 58807 | 2870  | 
by (induct ys arbitrary: a b xs) simp_all  | 
2871  | 
||
2872  | 
lemma fold_id: "(\<And>x. x \<in> set xs \<Longrightarrow> f x = id) \<Longrightarrow> fold f xs = id"  | 
|
2873  | 
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
 | 
2874  | 
|
| 
 
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
 
haftmann 
parents: 
46125 
diff
changeset
 | 
2875  | 
lemma fold_commute:  | 
| 58807 | 2876  | 
"(\<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"  | 
2877  | 
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
 | 
2878  | 
|
| 
 
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
 
haftmann 
parents: 
46125 
diff
changeset
 | 
2879  | 
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
 | 
2880  | 
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
 | 
2881  | 
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
 | 
2882  | 
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
 | 
2883  | 
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
 | 
2884  | 
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
 | 
2885  | 
qed  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
2886  | 
|
| 64963 | 2887  | 
lemma fold_invariant:  | 
| 58807 | 2888  | 
"\<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>  | 
2889  | 
\<Longrightarrow> P (fold f xs s)"  | 
|
2890  | 
by (induct xs arbitrary: s) simp_all  | 
|
2891  | 
||
2892  | 
lemma fold_append [simp]: "fold f (xs @ ys) = fold f ys \<circ> fold f xs"  | 
|
2893  | 
by (induct xs) simp_all  | 
|
2894  | 
||
| 67091 | 2895  | 
lemma fold_map [code_unfold]: "fold g (map f xs) = fold (g \<circ> f) xs"  | 
| 58807 | 2896  | 
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
 | 
2897  | 
|
| 58437 | 2898  | 
lemma fold_filter:  | 
2899  | 
"fold f (filter P xs) = fold (\<lambda>x. if P x then f x else id) xs"  | 
|
| 58807 | 2900  | 
by (induct xs) simp_all  | 
| 58437 | 2901  | 
|
| 
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
 | 
2902  | 
lemma fold_rev:  | 
| 58807 | 2903  | 
"(\<And>x y. x \<in> set xs \<Longrightarrow> y \<in> set xs \<Longrightarrow> f y \<circ> f x = f x \<circ> f y)  | 
2904  | 
\<Longrightarrow> fold f (rev xs) = fold f xs"  | 
|
2905  | 
by (induct xs) (simp_all add: fold_commute_apply fun_eq_iff)  | 
|
2906  | 
||
2907  | 
lemma fold_Cons_rev: "fold Cons xs = append (rev xs)"  | 
|
2908  | 
by (induct xs) simp_all  | 
|
2909  | 
||
2910  | 
lemma rev_conv_fold [code]: "rev xs = fold Cons xs []"  | 
|
2911  | 
by (simp add: fold_Cons_rev)  | 
|
2912  | 
||
2913  | 
lemma fold_append_concat_rev: "fold append xss = append (concat (rev xss))"  | 
|
2914  | 
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
 | 
2915  | 
|
| 60758 | 2916  | 
text \<open>@{const Finite_Set.fold} and @{const fold}\<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
 | 
2917  | 
|
| 
 
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
 
haftmann 
parents: 
46125 
diff
changeset
 | 
2918  | 
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
 | 
2919  | 
"Finite_Set.fold f y (set xs) = fold f (remdups xs) y"  | 
| 58807 | 2920  | 
by (rule sym, induct xs arbitrary: y) (simp_all add: fold_fun_left_comm insert_absorb)  | 
| 48619 | 2921  | 
|
| 
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
 | 
2922  | 
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
 | 
2923  | 
"Finite_Set.fold f y (set xs) = fold f xs y"  | 
| 58807 | 2924  | 
by (rule sym, induct xs arbitrary: y) (simp_all add: fold_fun_left_comm)  | 
2925  | 
||
2926  | 
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
 | 
2927  | 
proof -  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
2928  | 
interpret comp_fun_idem Set.insert  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
2929  | 
by (fact comp_fun_idem_insert)  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
2930  | 
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
 | 
2931  | 
qed  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
2932  | 
|
| 
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
 | 
2933  | 
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
 | 
2934  | 
"List.coset xs \<union> A = List.coset (List.filter (\<lambda>x. x \<notin> A) xs)"  | 
| 58807 | 2935  | 
by auto  | 
2936  | 
||
2937  | 
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
 | 
2938  | 
proof -  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
2939  | 
interpret comp_fun_idem Set.remove  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
2940  | 
by (fact comp_fun_idem_remove)  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
2941  | 
show ?thesis  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
2942  | 
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
 | 
2943  | 
qed  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
2944  | 
|
| 
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
 | 
2945  | 
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
 | 
2946  | 
"A - List.coset xs = set (List.filter (\<lambda>x. x \<in> A) xs)"  | 
| 58807 | 2947  | 
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
 | 
2948  | 
|
| 
 
d654c73e4b12
no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
 
haftmann 
parents: 
47131 
diff
changeset
 | 
2949  | 
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
 | 
2950  | 
"A \<inter> set xs = set (List.filter (\<lambda>x. x \<in> A) xs)"  | 
| 58807 | 2951  | 
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
 | 
2952  | 
|
| 
 
d654c73e4b12
no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
 
haftmann 
parents: 
47131 
diff
changeset
 | 
2953  | 
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
 | 
2954  | 
"A \<inter> List.coset xs = fold Set.remove xs A"  | 
| 58807 | 2955  | 
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
 | 
2956  | 
|
| 54885 | 2957  | 
lemma (in semilattice_set) set_eq_fold [code]:  | 
| 51489 | 2958  | 
"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
 | 
2959  | 
proof -  | 
| 51489 | 2960  | 
interpret comp_fun_idem f  | 
| 61169 | 2961  | 
by standard (simp_all add: fun_eq_iff left_commute)  | 
| 51489 | 2962  | 
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
 | 
2963  | 
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
 | 
2964  | 
|
| 
 
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
 
haftmann 
parents: 
46125 
diff
changeset
 | 
2965  | 
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
 | 
2966  | 
"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
 | 
2967  | 
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
 | 
2968  | 
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
 | 
2969  | 
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
 | 
2970  | 
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
 | 
2971  | 
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
 | 
2972  | 
|
| 
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
 | 
2973  | 
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
 | 
2974  | 
|
| 
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
 | 
2975  | 
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
 | 
2976  | 
"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
 | 
2977  | 
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
 | 
2978  | 
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
 | 
2979  | 
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
 | 
2980  | 
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
 | 
2981  | 
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
 | 
2982  | 
|
| 
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
 | 
2983  | 
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
 | 
2984  | 
|
| 
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
 | 
2985  | 
lemma (in complete_lattice) INF_set_fold:  | 
| 
56218
 
1c3f1f2431f9
elongated INFI and SUPR, to reduced risk of confusing theorems names in the future while still being consistent with INTER and UNION
 
haftmann 
parents: 
56166 
diff
changeset
 | 
2986  | 
"INFIMUM (set xs) f = fold (inf \<circ> f) xs top"  | 
| 56166 | 2987  | 
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
 | 
2988  | 
|
| 
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
 | 
2989  | 
declare INF_set_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
 | 
2990  | 
|
| 
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
 | 
2991  | 
lemma (in complete_lattice) SUP_set_fold:  | 
| 
56218
 
1c3f1f2431f9
elongated INFI and SUPR, to reduced risk of confusing theorems names in the future while still being consistent with INTER and UNION
 
haftmann 
parents: 
56166 
diff
changeset
 | 
2992  | 
"SUPREMUM (set xs) f = fold (sup \<circ> f) xs bot"  | 
| 56166 | 2993  | 
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
 | 
2994  | 
|
| 
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
 | 
2995  | 
declare SUP_set_fold [code]  | 
| 
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
 | 
2996  | 
|
| 
49948
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
2997  | 
|
| 60758 | 2998  | 
subsubsection \<open>Fold variants: @{const foldr} and @{const foldl}\<close>
 | 
2999  | 
||
3000  | 
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
 | 
3001  | 
|
| 58807 | 3002  | 
lemma foldr_conv_fold [code_abbrev]: "foldr f xs = fold f (rev xs)"  | 
3003  | 
by (induct xs) simp_all  | 
|
3004  | 
||
3005  | 
lemma foldl_conv_fold: "foldl f s xs = fold (\<lambda>x s. f s x) xs s"  | 
|
3006  | 
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
 | 
3007  | 
|
| 61799 | 3008  | 
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
 | 
3009  | 
"foldr f xs a = foldl (\<lambda>x y. f y x) a (rev xs)"  | 
| 58807 | 3010  | 
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
 | 
3011  | 
|
| 
 
d654c73e4b12
no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
 
haftmann 
parents: 
47131 
diff
changeset
 | 
3012  | 
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
 | 
3013  | 
"foldl f a xs = foldr (\<lambda>x y. f y x) (rev xs) a"  | 
| 58807 | 3014  | 
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
 | 
3015  | 
|
| 
 
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
 
haftmann 
parents: 
46125 
diff
changeset
 | 
3016  | 
lemma foldr_fold:  | 
| 58807 | 3017  | 
"(\<And>x y. x \<in> set xs \<Longrightarrow> y \<in> set xs \<Longrightarrow> f y \<circ> f x = f x \<circ> f y)  | 
3018  | 
\<Longrightarrow> foldr f xs = fold f xs"  | 
|
3019  | 
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
 | 
3020  | 
|
| 
 
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
 
haftmann 
parents: 
46125 
diff
changeset
 | 
3021  | 
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
 | 
3022  | 
"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"  | 
| 58807 | 3023  | 
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
 | 
3024  | 
|
| 
 
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
 
haftmann 
parents: 
46125 
diff
changeset
 | 
3025  | 
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
 | 
3026  | 
"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"  | 
| 58807 | 3027  | 
by (auto simp add: foldl_conv_fold intro!: fold_cong)  | 
3028  | 
||
3029  | 
lemma foldr_append [simp]: "foldr f (xs @ ys) a = foldr f xs (foldr f ys a)"  | 
|
3030  | 
by (simp add: foldr_conv_fold)  | 
|
3031  | 
||
3032  | 
lemma foldl_append [simp]: "foldl f a (xs @ ys) = foldl f (foldl f a xs) ys"  | 
|
3033  | 
by (simp add: foldl_conv_fold)  | 
|
3034  | 
||
| 67091 | 3035  | 
lemma foldr_map [code_unfold]: "foldr g (map f xs) a = foldr (g \<circ> f) xs a"  | 
| 58807 | 3036  | 
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
 | 
3037  | 
|
| 58437 | 3038  | 
lemma foldr_filter:  | 
3039  | 
"foldr f (filter P xs) = foldr (\<lambda>x. if P x then f x else id) xs"  | 
|
| 58807 | 3040  | 
by (simp add: foldr_conv_fold rev_filter fold_filter)  | 
| 64963 | 3041  | 
|
| 
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
 | 
3042  | 
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
 | 
3043  | 
"foldl g a (map f xs) = foldl (\<lambda>a x. g a (f x)) a xs"  | 
| 58807 | 3044  | 
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
 | 
3045  | 
|
| 
 
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
 
haftmann 
parents: 
46125 
diff
changeset
 | 
3046  | 
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
 | 
3047  | 
"concat xss = foldr append xss []"  | 
| 58807 | 3048  | 
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
 | 
3049  | 
|
| 35115 | 3050  | 
|
| 60758 | 3051  | 
subsubsection \<open>@{const upt}\<close>
 | 
| 13114 | 3052  | 
|
| 17090 | 3053  | 
lemma upt_rec[code]: "[i..<j] = (if i<j then i#[Suc i..<j] else [])"  | 
| 61799 | 3054  | 
\<comment> \<open>simp does not terminate!\<close>  | 
| 13145 | 3055  | 
by (induct j) auto  | 
| 13142 | 3056  | 
|
| 
47108
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46898 
diff
changeset
 | 
3057  | 
lemmas upt_rec_numeral[simp] = upt_rec[of "numeral m" "numeral n"] for m n  | 
| 32005 | 3058  | 
|
| 15425 | 3059  | 
lemma upt_conv_Nil [simp]: "j <= i ==> [i..<j] = []"  | 
| 13145 | 3060  | 
by (subst upt_rec) simp  | 
| 13114 | 3061  | 
|
| 15425 | 3062  | 
lemma upt_eq_Nil_conv[simp]: "([i..<j] = []) = (j = 0 \<or> j <= i)"  | 
| 15281 | 3063  | 
by(induct j)simp_all  | 
3064  | 
||
3065  | 
lemma upt_eq_Cons_conv:  | 
|
| 67091 | 3066  | 
"([i..<j] = x#xs) = (i < j \<and> i = x \<and> [i+1..<j] = xs)"  | 
| 24526 | 3067  | 
apply(induct j arbitrary: x xs)  | 
| 15281 | 3068  | 
apply simp  | 
3069  | 
apply(clarsimp simp add: append_eq_Cons_conv)  | 
|
3070  | 
apply arith  | 
|
3071  | 
done  | 
|
3072  | 
||
| 15425 | 3073  | 
lemma upt_Suc_append: "i <= j ==> [i..<(Suc j)] = [i..<j]@[j]"  | 
| 61799 | 3074  | 
\<comment> \<open>Only needed if \<open>upt_Suc\<close> is deleted from the simpset.\<close>  | 
| 13145 | 3075  | 
by simp  | 
| 13114 | 3076  | 
|
| 15425 | 3077  | 
lemma upt_conv_Cons: "i < j ==> [i..<j] = i # [Suc i..<j]"  | 
| 58807 | 3078  | 
by (simp add: upt_rec)  | 
| 13114 | 3079  | 
|
| 63145 | 3080  | 
lemma upt_conv_Cons_Cons: \<comment> \<open>no precondition\<close>  | 
| 62580 | 3081  | 
"m # n # ns = [m..<q] \<longleftrightarrow> n # ns = [Suc m..<q]"  | 
3082  | 
proof (cases "m < q")  | 
|
3083  | 
case False then show ?thesis by simp  | 
|
3084  | 
next  | 
|
3085  | 
case True then show ?thesis by (simp add: upt_conv_Cons)  | 
|
3086  | 
qed  | 
|
3087  | 
||
| 15425 | 3088  | 
lemma upt_add_eq_append: "i<=j ==> [i..<j+k] = [i..<j]@[j..<j+k]"  | 
| 61799 | 3089  | 
\<comment> \<open>LOOPS as a simprule, since \<open>j <= j\<close>.\<close>  | 
| 13145 | 3090  | 
by (induct k) auto  | 
| 13114 | 3091  | 
|
| 15425 | 3092  | 
lemma length_upt [simp]: "length [i..<j] = j - i"  | 
| 13145 | 3093  | 
by (induct j) (auto simp add: Suc_diff_le)  | 
| 13114 | 3094  | 
|
| 15425 | 3095  | 
lemma nth_upt [simp]: "i + k < j ==> [i..<j] ! k = i + k"  | 
| 58807 | 3096  | 
by (induct j) (auto simp add: less_Suc_eq nth_append split: nat_diff_split)  | 
| 17906 | 3097  | 
|
3098  | 
lemma hd_upt[simp]: "i < j \<Longrightarrow> hd[i..<j] = i"  | 
|
3099  | 
by(simp add:upt_conv_Cons)  | 
|
3100  | 
||
| 
63317
 
ca187a9f66da
Various additions to polynomials, FPSs, Gamma function
 
eberlm 
parents: 
63173 
diff
changeset
 | 
3101  | 
lemma tl_upt: "tl [m..<n] = [Suc m..<n]"  | 
| 66853 | 3102  | 
by (simp add: upt_rec)  | 
| 
63317
 
ca187a9f66da
Various additions to polynomials, FPSs, Gamma function
 
eberlm 
parents: 
63173 
diff
changeset
 | 
3103  | 
|
| 17906 | 3104  | 
lemma last_upt[simp]: "i < j \<Longrightarrow> last[i..<j] = j - 1"  | 
| 58807 | 3105  | 
by(cases j)(auto simp: upt_Suc_append)  | 
| 17906 | 3106  | 
|
| 24526 | 3107  | 
lemma take_upt [simp]: "i+m <= n ==> take m [i..<n] = [i..<i+m]"  | 
3108  | 
apply (induct m arbitrary: i, simp)  | 
|
| 13145 | 3109  | 
apply (subst upt_rec)  | 
3110  | 
apply (rule sym)  | 
|
3111  | 
apply (subst upt_rec)  | 
|
3112  | 
apply (simp del: upt.simps)  | 
|
3113  | 
done  | 
|
| 3507 | 3114  | 
|
| 17501 | 3115  | 
lemma drop_upt[simp]: "drop m [i..<j] = [i+m..<j]"  | 
| 58807 | 3116  | 
by(induct j) auto  | 
| 17501 | 3117  | 
|
| 24645 | 3118  | 
lemma map_Suc_upt: "map Suc [m..<n] = [Suc m..<Suc n]"  | 
| 13145 | 3119  | 
by (induct n) auto  | 
| 13114 | 3120  | 
|
| 
54496
 
178922b63b58
add lemmas Suc_funpow and id_funpow to simpset; add lemma map_add_upt
 
hoelzl 
parents: 
54404 
diff
changeset
 | 
3121  | 
lemma map_add_upt: "map (\<lambda>i. i + n) [0..<m] = [n..<m + n]"  | 
| 58807 | 3122  | 
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
 | 
3123  | 
|
| 24526 | 3124  | 
lemma nth_map_upt: "i < n-m ==> (map f [m..<n]) ! i = f(m+i)"  | 
3125  | 
apply (induct n m arbitrary: i rule: diff_induct)  | 
|
| 58807 | 3126  | 
prefer 3 apply (subst map_Suc_upt[symmetric])  | 
3127  | 
apply (auto simp add: less_diff_conv)  | 
|
| 13145 | 3128  | 
done  | 
| 13114 | 3129  | 
|
| 58807 | 3130  | 
lemma map_decr_upt: "map (\<lambda>n. n - Suc 0) [Suc m..<Suc n] = [m..<n]"  | 
| 66853 | 3131  | 
by (induct n) simp_all  | 
| 
66550
 
e5d82cf3c387
Some small lemmas about polynomials and FPSs
 
eberlm <eberlm@in.tum.de> 
parents: 
66502 
diff
changeset
 | 
3132  | 
|
| 
 
e5d82cf3c387
Some small lemmas about polynomials and FPSs
 
eberlm <eberlm@in.tum.de> 
parents: 
66502 
diff
changeset
 | 
3133  | 
lemma map_upt_Suc: "map f [0 ..< Suc n] = f 0 # map (\<lambda>i. f (Suc i)) [0 ..< n]"  | 
| 66853 | 3134  | 
by (induct n arbitrary: f) auto  | 
| 52380 | 3135  | 
|
| 64963 | 3136  | 
|
| 
13883
 
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
 
berghofe 
parents: 
13863 
diff
changeset
 | 
3137  | 
lemma nth_take_lemma:  | 
| 67091 | 3138  | 
"k \<le> length xs \<Longrightarrow> k \<le> length ys \<Longrightarrow>  | 
3139  | 
(\<And>i. i < k \<longrightarrow> xs!i = ys!i) \<Longrightarrow> take k xs = take k ys"  | 
|
| 24526 | 3140  | 
apply (atomize, induct k arbitrary: xs ys)  | 
| 14208 | 3141  | 
apply (simp_all add: less_Suc_eq_0_disj all_conj_distrib, clarify)  | 
| 60758 | 3142  | 
txt \<open>Both lists must be non-empty\<close>  | 
| 14208 | 3143  | 
apply (case_tac xs, simp)  | 
3144  | 
apply (case_tac ys, clarify)  | 
|
| 13145 | 3145  | 
apply (simp (no_asm_use))  | 
3146  | 
apply clarify  | 
|
| 60758 | 3147  | 
txt \<open>prenexing's needed, not miniscoping\<close>  | 
| 13145 | 3148  | 
apply (simp (no_asm_use) add: all_simps [symmetric] del: all_simps)  | 
3149  | 
apply blast  | 
|
3150  | 
done  | 
|
| 13114 | 3151  | 
|
3152  | 
lemma nth_equalityI:  | 
|
| 67717 | 3153  | 
"[| length xs = length ys; \<forall>i < length xs. xs!i = ys!i |] ==> xs = ys"  | 
| 58807 | 3154  | 
by (frule nth_take_lemma [OF le_refl eq_imp_le]) simp_all  | 
| 13142 | 3155  | 
|
| 24796 | 3156  | 
lemma map_nth:  | 
3157  | 
"map (\<lambda>i. xs ! i) [0..<length xs] = xs"  | 
|
| 58807 | 3158  | 
by (rule nth_equalityI, auto)  | 
3159  | 
||
| 13863 | 3160  | 
lemma list_all2_antisym:  | 
| 64963 | 3161  | 
"\<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 | 3162  | 
\<Longrightarrow> xs = ys"  | 
| 64963 | 3163  | 
apply (simp add: list_all2_conv_all_nth)  | 
| 58807 | 3164  | 
apply (rule nth_equalityI, blast, simp)  | 
3165  | 
done  | 
|
| 13863 | 3166  | 
|
| 13142 | 3167  | 
lemma take_equalityI: "(\<forall>i. take i xs = take i ys) ==> xs = ys"  | 
| 61799 | 3168  | 
\<comment> \<open>The famous take-lemma.\<close>  | 
| 13145 | 3169  | 
apply (drule_tac x = "max (length xs) (length ys)" in spec)  | 
| 44921 | 3170  | 
apply (simp add: le_max_iff_disj)  | 
| 13145 | 3171  | 
done  | 
| 13142 | 3172  | 
|
3173  | 
||
| 15302 | 3174  | 
lemma take_Cons':  | 
| 58807 | 3175  | 
"take n (x # xs) = (if n = 0 then [] else x # take (n - 1) xs)"  | 
| 15302 | 3176  | 
by (cases n) simp_all  | 
3177  | 
||
3178  | 
lemma drop_Cons':  | 
|
| 58807 | 3179  | 
"drop n (x # xs) = (if n = 0 then x # xs else drop (n - 1) xs)"  | 
| 15302 | 3180  | 
by (cases n) simp_all  | 
3181  | 
||
3182  | 
lemma nth_Cons': "(x # xs)!n = (if n = 0 then x else xs!(n - 1))"  | 
|
3183  | 
by (cases n) simp_all  | 
|
3184  | 
||
| 
47108
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46898 
diff
changeset
 | 
3185  | 
lemma take_Cons_numeral [simp]:  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46898 
diff
changeset
 | 
3186  | 
"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
 | 
3187  | 
by (simp add: take_Cons')  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46898 
diff
changeset
 | 
3188  | 
|
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46898 
diff
changeset
 | 
3189  | 
lemma drop_Cons_numeral [simp]:  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46898 
diff
changeset
 | 
3190  | 
"drop (numeral v) (x # xs) = drop (numeral v - 1) xs"  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46898 
diff
changeset
 | 
3191  | 
by (simp add: drop_Cons')  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46898 
diff
changeset
 | 
3192  | 
|
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46898 
diff
changeset
 | 
3193  | 
lemma nth_Cons_numeral [simp]:  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46898 
diff
changeset
 | 
3194  | 
"(x # xs) ! numeral v = xs ! (numeral v - 1)"  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46898 
diff
changeset
 | 
3195  | 
by (simp add: nth_Cons')  | 
| 15302 | 3196  | 
|
3197  | 
||
| 61799 | 3198  | 
subsubsection \<open>\<open>upto\<close>: interval-list on @{typ int}\<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
 | 
3199  | 
|
| 
 
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
 | 
3200  | 
function upto :: "int \<Rightarrow> int \<Rightarrow> int list" ("(1[_../_])") where
 | 
| 51166 | 3201  | 
"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
 | 
3202  | 
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
 | 
3203  | 
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
 | 
3204  | 
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
 | 
3205  | 
|
| 51166 | 3206  | 
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
 | 
3207  | 
|
| 
47108
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46898 
diff
changeset
 | 
3208  | 
lemmas upto_rec_numeral [simp] =  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46898 
diff
changeset
 | 
3209  | 
upto.simps[of "numeral m" "numeral n"]  | 
| 
54489
 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 
haftmann 
parents: 
54404 
diff
changeset
 | 
3210  | 
upto.simps[of "numeral m" "- numeral n"]  | 
| 
 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 
haftmann 
parents: 
54404 
diff
changeset
 | 
3211  | 
upto.simps[of "- numeral m" "numeral n"]  | 
| 
 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 
haftmann 
parents: 
54404 
diff
changeset
 | 
3212  | 
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
 | 
3213  | 
|
| 
 
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
 | 
3214  | 
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
 | 
3215  | 
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
 | 
3216  | 
|
| 67124 | 3217  | 
lemma upto_Nil[simp]: "[i..j] = [] \<longleftrightarrow> j < i"  | 
3218  | 
by (simp add: upto.simps)  | 
|
3219  | 
||
| 67168 | 3220  | 
lemma upto_Nil2[simp]: "[] = [i..j] \<longleftrightarrow> j < i"  | 
3221  | 
by (simp add: upto.simps)  | 
|
3222  | 
||
| 51166 | 3223  | 
lemma upto_rec1: "i \<le> j \<Longrightarrow> [i..j] = i#[i+1..j]"  | 
3224  | 
by(simp add: upto.simps)  | 
|
3225  | 
||
3226  | 
lemma upto_rec2: "i \<le> j \<Longrightarrow> [i..j] = [i..j - 1]@[j]"  | 
|
3227  | 
proof(induct "nat(j-i)" arbitrary: i j)  | 
|
3228  | 
case 0 thus ?case by(simp add: upto.simps)  | 
|
3229  | 
next  | 
|
3230  | 
case (Suc n)  | 
|
3231  | 
hence "n = nat (j - (i + 1))" "i < j" by linarith+  | 
|
3232  | 
from this(2) Suc.hyps(1)[OF this(1)] Suc(2,3) upto_rec1 show ?case by simp  | 
|
3233  | 
qed  | 
|
3234  | 
||
| 
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
 | 
3235  | 
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
 | 
3236  | 
proof(induct i j rule:upto.induct)  | 
| 
 
edbf0a86fb1c
adding simproc to rewrite list comprehensions to set comprehensions; adopting proofs
 
bulwahn 
parents: 
41372 
diff
changeset
 | 
3237  | 
case (1 i j)  | 
| 
 
edbf0a86fb1c
adding simproc to rewrite list comprehensions to set comprehensions; adopting proofs
 
bulwahn 
parents: 
41372 
diff
changeset
 | 
3238  | 
from this show ?case  | 
| 55811 | 3239  | 
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
 | 
3240  | 
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
 | 
3241  | 
|
| 67081 | 3242  | 
lemma upto_split1:  | 
3243  | 
"i \<le> j \<Longrightarrow> j \<le> k \<Longrightarrow> [i..k] = [i..j-1] @ [j..k]"  | 
|
3244  | 
proof (induction j rule: int_ge_induct)  | 
|
3245  | 
case base thus ?case by (simp add: upto_rec1)  | 
|
3246  | 
next  | 
|
3247  | 
case step thus ?case using upto_rec1 upto_rec2 by simp  | 
|
3248  | 
qed  | 
|
3249  | 
||
3250  | 
lemma upto_split2:  | 
|
3251  | 
"i \<le> j \<Longrightarrow> j \<le> k \<Longrightarrow> [i..k] = [i..j] @ [j+1..k]"  | 
|
3252  | 
using upto_rec1 upto_rec2 upto_split1 by auto  | 
|
3253  | 
||
| 67124 | 3254  | 
lemma upto_split3: "\<lbrakk> i \<le> j; j \<le> k \<rbrakk> \<Longrightarrow> [i..k] = [i..j-1] @ j # [j+1..k]"  | 
3255  | 
using upto_rec1 upto_split1 by auto  | 
|
3256  | 
||
| 60758 | 3257  | 
text\<open>Tail recursive version for code generation:\<close>  | 
| 51166 | 3258  | 
|
| 51170 | 3259  | 
definition upto_aux :: "int \<Rightarrow> int \<Rightarrow> int list \<Rightarrow> int list" where  | 
3260  | 
"upto_aux i j js = [i..j] @ js"  | 
|
3261  | 
||
3262  | 
lemma upto_aux_rec [code]:  | 
|
| 51166 | 3263  | 
"upto_aux i j js = (if j<i then js else upto_aux i (j - 1) (j#js))"  | 
| 58807 | 3264  | 
by (simp add: upto_aux_def upto_rec2)  | 
| 51166 | 3265  | 
|
3266  | 
lemma upto_code[code]: "[i..j] = upto_aux i j []"  | 
|
| 51170 | 3267  | 
by(simp add: upto_aux_def)  | 
| 51166 | 3268  | 
|
| 
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
 | 
3269  | 
|
| 60758 | 3270  | 
subsubsection \<open>@{const distinct} and @{const remdups} and @{const remdups_adj}\<close>
 | 
| 13142 | 3271  | 
|
| 58807 | 3272  | 
lemma distinct_tl: "distinct xs \<Longrightarrow> distinct (tl xs)"  | 
3273  | 
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
 | 
3274  | 
|
| 13142 | 3275  | 
lemma distinct_append [simp]:  | 
| 58807 | 3276  | 
  "distinct (xs @ ys) = (distinct xs \<and> distinct ys \<and> set xs \<inter> set ys = {})"
 | 
| 13145 | 3277  | 
by (induct xs) auto  | 
| 13142 | 3278  | 
|
| 15305 | 3279  | 
lemma distinct_rev[simp]: "distinct(rev xs) = distinct xs"  | 
3280  | 
by(induct xs) auto  | 
|
3281  | 
||
| 13142 | 3282  | 
lemma set_remdups [simp]: "set (remdups xs) = set xs"  | 
| 13145 | 3283  | 
by (induct xs) (auto simp add: insert_absorb)  | 
| 13142 | 3284  | 
|
3285  | 
lemma distinct_remdups [iff]: "distinct (remdups xs)"  | 
|
| 13145 | 3286  | 
by (induct xs) auto  | 
| 13142 | 3287  | 
|
| 25287 | 3288  | 
lemma distinct_remdups_id: "distinct xs ==> remdups xs = xs"  | 
3289  | 
by (induct xs, auto)  | 
|
3290  | 
||
| 26734 | 3291  | 
lemma remdups_id_iff_distinct [simp]: "remdups xs = xs \<longleftrightarrow> distinct xs"  | 
3292  | 
by (metis distinct_remdups distinct_remdups_id)  | 
|
| 25287 | 3293  | 
|
| 67091 | 3294  | 
lemma finite_distinct_list: "finite A \<Longrightarrow> \<exists>xs. set xs = A \<and> distinct xs"  | 
| 24632 | 3295  | 
by (metis distinct_remdups finite_list set_remdups)  | 
| 24566 | 3296  | 
|
| 15072 | 3297  | 
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
 | 
3298  | 
by (induct x, auto)  | 
| 15072 | 3299  | 
|
3300  | 
lemma remdups_eq_nil_right_iff [simp]: "([] = remdups x) = (x = [])"  | 
|
| 24349 | 3301  | 
by (induct x, auto)  | 
| 15072 | 3302  | 
|
| 15245 | 3303  | 
lemma length_remdups_leq[iff]: "length(remdups xs) <= length xs"  | 
3304  | 
by (induct xs) auto  | 
|
3305  | 
||
3306  | 
lemma length_remdups_eq[iff]:  | 
|
3307  | 
"(length (remdups xs) = length xs) = (remdups xs = xs)"  | 
|
3308  | 
apply(induct xs)  | 
|
3309  | 
apply auto  | 
|
3310  | 
apply(subgoal_tac "length (remdups xs) <= length xs")  | 
|
3311  | 
apply arith  | 
|
3312  | 
apply(rule length_remdups_leq)  | 
|
3313  | 
done  | 
|
3314  | 
||
| 33945 | 3315  | 
lemma remdups_filter: "remdups(filter P xs) = filter P (remdups xs)"  | 
| 58807 | 3316  | 
by (induct xs) auto  | 
| 18490 | 3317  | 
|
3318  | 
lemma distinct_map:  | 
|
| 67091 | 3319  | 
"distinct(map f xs) = (distinct xs \<and> inj_on f (set xs))"  | 
| 18490 | 3320  | 
by (induct xs) auto  | 
3321  | 
||
| 58195 | 3322  | 
lemma distinct_map_filter:  | 
3323  | 
"distinct (map f xs) \<Longrightarrow> distinct (map f (filter P xs))"  | 
|
| 58807 | 3324  | 
by (induct xs) auto  | 
| 58195 | 3325  | 
|
| 13142 | 3326  | 
lemma distinct_filter [simp]: "distinct xs ==> distinct (filter P xs)"  | 
| 13145 | 3327  | 
by (induct xs) auto  | 
| 13114 | 3328  | 
|
| 17501 | 3329  | 
lemma distinct_upt[simp]: "distinct[i..<j]"  | 
3330  | 
by (induct j) auto  | 
|
3331  | 
||
| 
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
 | 
3332  | 
lemma distinct_upto[simp]: "distinct[i..j]"  | 
| 
 
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
 
nipkow 
parents: 
32078 
diff
changeset
 | 
3333  | 
apply(induct i j rule:upto.induct)  | 
| 
 
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
 
nipkow 
parents: 
32078 
diff
changeset
 | 
3334  | 
apply(subst upto.simps)  | 
| 
 
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
 
nipkow 
parents: 
32078 
diff
changeset
 | 
3335  | 
apply(simp)  | 
| 
 
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
 
nipkow 
parents: 
32078 
diff
changeset
 | 
3336  | 
done  | 
| 
 
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
 
nipkow 
parents: 
32078 
diff
changeset
 | 
3337  | 
|
| 24526 | 3338  | 
lemma distinct_take[simp]: "distinct xs \<Longrightarrow> distinct (take i xs)"  | 
3339  | 
apply(induct xs arbitrary: i)  | 
|
| 17501 | 3340  | 
apply simp  | 
3341  | 
apply (case_tac i)  | 
|
3342  | 
apply simp_all  | 
|
3343  | 
apply(blast dest:in_set_takeD)  | 
|
3344  | 
done  | 
|
3345  | 
||
| 24526 | 3346  | 
lemma distinct_drop[simp]: "distinct xs \<Longrightarrow> distinct (drop i xs)"  | 
3347  | 
apply(induct xs arbitrary: i)  | 
|
| 17501 | 3348  | 
apply simp  | 
3349  | 
apply (case_tac i)  | 
|
3350  | 
apply simp_all  | 
|
3351  | 
done  | 
|
3352  | 
||
3353  | 
lemma distinct_list_update:  | 
|
3354  | 
assumes d: "distinct xs" and a: "a \<notin> set xs - {xs!i}"
 | 
|
3355  | 
shows "distinct (xs[i:=a])"  | 
|
3356  | 
proof (cases "i < length xs")  | 
|
3357  | 
case True  | 
|
3358  | 
  with a have "a \<notin> set (take i xs @ xs ! i # drop (Suc i) xs) - {xs!i}"
 | 
|
3359  | 
apply (drule_tac id_take_nth_drop) by simp  | 
|
3360  | 
with d True show ?thesis  | 
|
3361  | 
apply (simp add: upd_conv_take_nth_drop)  | 
|
3362  | 
apply (drule subst [OF id_take_nth_drop]) apply assumption  | 
|
3363  | 
apply simp apply (cases "a = xs!i") apply simp by blast  | 
|
3364  | 
next  | 
|
3365  | 
case False with d show ?thesis by auto  | 
|
3366  | 
qed  | 
|
3367  | 
||
| 
31363
 
7493b571b37d
Added theorems about distinct & concat, map & replicate and concat & replicate
 
hoelzl 
parents: 
31264 
diff
changeset
 | 
3368  | 
lemma distinct_concat:  | 
| 58807 | 3369  | 
"\<lbrakk> distinct xs;  | 
3370  | 
\<And> ys. ys \<in> set xs \<Longrightarrow> distinct ys;  | 
|
3371  | 
     \<And> ys zs. \<lbrakk> ys \<in> set xs ; zs \<in> set xs ; ys \<noteq> zs \<rbrakk> \<Longrightarrow> set ys \<inter> set zs = {}
 | 
|
3372  | 
\<rbrakk> \<Longrightarrow> distinct (concat xs)"  | 
|
3373  | 
by (induct xs) auto  | 
|
| 17501 | 3374  | 
|
| 60758 | 3375  | 
text \<open>It is best to avoid this indexed version of distinct, but  | 
3376  | 
sometimes it is useful.\<close>  | 
|
| 17501 | 3377  | 
|
| 13142 | 3378  | 
lemma distinct_conv_nth:  | 
| 67091 | 3379  | 
"distinct xs = (\<forall>i < size xs. \<forall>j < size xs. i \<noteq> j \<longrightarrow> xs!i \<noteq> xs!j)"  | 
| 15251 | 3380  | 
apply (induct xs, simp, simp)  | 
| 14208 | 3381  | 
apply (rule iffI, clarsimp)  | 
| 13145 | 3382  | 
apply (case_tac i)  | 
| 14208 | 3383  | 
apply (case_tac j, simp)  | 
| 13145 | 3384  | 
apply (simp add: set_conv_nth)  | 
3385  | 
apply (case_tac j)  | 
|
| 
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
 | 
3386  | 
apply (clarsimp simp add: set_conv_nth, simp)  | 
| 13145 | 3387  | 
apply (rule conjI)  | 
| 24648 | 3388  | 
apply (clarsimp simp add: set_conv_nth)  | 
3389  | 
apply (erule_tac x = 0 in allE, simp)  | 
|
3390  | 
apply (erule_tac x = "Suc i" in allE, simp, clarsimp)  | 
|
| 25130 | 3391  | 
apply (erule_tac x = "Suc i" in allE, simp)  | 
3392  | 
apply (erule_tac x = "Suc j" in allE, simp)  | 
|
| 13145 | 3393  | 
done  | 
| 13114 | 3394  | 
|
| 18490 | 3395  | 
lemma nth_eq_iff_index_eq:  | 
| 58807 | 3396  | 
"\<lbrakk> distinct xs; i < length xs; j < length xs \<rbrakk> \<Longrightarrow> (xs!i = xs!j) = (i = j)"  | 
| 18490 | 3397  | 
by(auto simp: distinct_conv_nth)  | 
3398  | 
||
| 64963 | 3399  | 
lemma distinct_Ex1:  | 
| 
63099
 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 
eberlm 
parents: 
63092 
diff
changeset
 | 
3400  | 
"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
 | 
3401  | 
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
 | 
3402  | 
|
| 59728 | 3403  | 
lemma inj_on_nth: "distinct xs \<Longrightarrow> \<forall>i \<in> I. i < length xs \<Longrightarrow> inj_on (nth xs) I"  | 
3404  | 
by (rule inj_onI) (simp add: nth_eq_iff_index_eq)  | 
|
3405  | 
||
| 
63099
 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 
eberlm 
parents: 
63092 
diff
changeset
 | 
3406  | 
lemma bij_betw_nth:  | 
| 64963 | 3407  | 
  assumes "distinct xs" "A = {..<length xs}" "B = set xs"
 | 
| 67399 | 3408  | 
shows "bij_betw ((!) xs) A B"  | 
| 
63099
 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 
eberlm 
parents: 
63092 
diff
changeset
 | 
3409  | 
using assms unfolding bij_betw_def  | 
| 
 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 
eberlm 
parents: 
63092 
diff
changeset
 | 
3410  | 
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
 | 
3411  | 
|
| 56953 | 3412  | 
lemma set_update_distinct: "\<lbrakk> distinct xs; n < length xs \<rbrakk> \<Longrightarrow>  | 
3413  | 
  set(xs[n := x]) = insert x (set xs - {xs!n})"
 | 
|
3414  | 
by(auto simp: set_eq_iff in_set_conv_nth nth_list_update nth_eq_iff_index_eq)  | 
|
3415  | 
||
| 57537 | 3416  | 
lemma distinct_swap[simp]: "\<lbrakk> i < size xs; j < size xs \<rbrakk> \<Longrightarrow>  | 
3417  | 
distinct(xs[i := xs!j, j := xs!i]) = distinct xs"  | 
|
3418  | 
apply (simp add: distinct_conv_nth nth_list_update)  | 
|
3419  | 
apply safe  | 
|
3420  | 
apply metis+  | 
|
3421  | 
done  | 
|
3422  | 
||
3423  | 
lemma set_swap[simp]:  | 
|
3424  | 
"\<lbrakk> i < size xs; j < size xs \<rbrakk> \<Longrightarrow> set(xs[i := xs!j, j := xs!i]) = set xs"  | 
|
3425  | 
by(simp add: set_conv_nth nth_list_update) metis  | 
|
3426  | 
||
| 
15110
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
3427  | 
lemma distinct_card: "distinct xs ==> card (set xs) = size xs"  | 
| 24349 | 3428  | 
by (induct xs) auto  | 
| 14388 | 3429  | 
|
| 
15110
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
3430  | 
lemma card_distinct: "card (set xs) = size xs ==> distinct xs"  | 
| 14388 | 3431  | 
proof (induct xs)  | 
3432  | 
case Nil thus ?case by simp  | 
|
3433  | 
next  | 
|
3434  | 
case (Cons x xs)  | 
|
3435  | 
show ?case  | 
|
3436  | 
proof (cases "x \<in> set xs")  | 
|
3437  | 
case False with Cons show ?thesis by simp  | 
|
3438  | 
next  | 
|
3439  | 
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
 | 
3440  | 
have "card (set xs) = Suc (length xs)"  | 
| 62390 | 3441  | 
by (simp add: card_insert_if split: if_split_asm)  | 
| 14388 | 3442  | 
moreover have "card (set xs) \<le> length xs" by (rule card_length)  | 
3443  | 
ultimately have False by simp  | 
|
3444  | 
thus ?thesis ..  | 
|
3445  | 
qed  | 
|
3446  | 
qed  | 
|
3447  | 
||
| 
45115
 
93c1ac6727a3
adding lemma to List library for executable equation of the (refl) transitive closure
 
bulwahn 
parents: 
44928 
diff
changeset
 | 
3448  | 
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
 | 
3449  | 
by (induct xs) (auto)  | 
| 
 
93c1ac6727a3
adding lemma to List library for executable equation of the (refl) transitive closure
 
bulwahn 
parents: 
44928 
diff
changeset
 | 
3450  | 
|
| 67091 | 3451  | 
lemma not_distinct_decomp: "\<not> distinct ws \<Longrightarrow> \<exists>xs ys zs y. ws = xs@[y]@ys@[y]@zs"  | 
| 25287 | 3452  | 
apply (induct n == "length ws" arbitrary:ws) apply simp  | 
3453  | 
apply(case_tac ws) apply simp  | 
|
| 62390 | 3454  | 
apply (simp split:if_split_asm)  | 
| 25287 | 3455  | 
apply (metis Cons_eq_appendI eq_Nil_appendI split_list)  | 
3456  | 
done  | 
|
| 18490 | 3457  | 
|
| 45841 | 3458  | 
lemma not_distinct_conv_prefix:  | 
3459  | 
defines "dec as xs y ys \<equiv> y \<in> set xs \<and> distinct xs \<and> as = xs @ y # ys"  | 
|
3460  | 
shows "\<not>distinct as \<longleftrightarrow> (\<exists>xs y ys. dec as xs y ys)" (is "?L = ?R")  | 
|
3461  | 
proof  | 
|
3462  | 
assume "?L" then show "?R"  | 
|
3463  | 
proof (induct "length as" arbitrary: as rule: less_induct)  | 
|
3464  | 
case less  | 
|
3465  | 
obtain xs ys zs y where decomp: "as = (xs @ y # ys) @ y # zs"  | 
|
3466  | 
using not_distinct_decomp[OF less.prems] by auto  | 
|
3467  | 
show ?case  | 
|
3468  | 
proof (cases "distinct (xs @ y # ys)")  | 
|
3469  | 
case True  | 
|
3470  | 
with decomp have "dec as (xs @ y # ys) y zs" by (simp add: dec_def)  | 
|
3471  | 
then show ?thesis by blast  | 
|
3472  | 
next  | 
|
3473  | 
case False  | 
|
3474  | 
with less decomp obtain xs' y' ys' where "dec (xs @ y # ys) xs' y' ys'"  | 
|
3475  | 
by atomize_elim auto  | 
|
3476  | 
with decomp have "dec as xs' y' (ys' @ y # zs)" by (simp add: dec_def)  | 
|
3477  | 
then show ?thesis by blast  | 
|
3478  | 
qed  | 
|
3479  | 
qed  | 
|
3480  | 
qed (auto simp: dec_def)  | 
|
3481  | 
||
| 
49948
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
3482  | 
lemma distinct_product:  | 
| 57247 | 3483  | 
"distinct xs \<Longrightarrow> distinct ys \<Longrightarrow> distinct (List.product xs ys)"  | 
3484  | 
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
 | 
3485  | 
|
| 
53721
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3486  | 
lemma distinct_product_lists:  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3487  | 
assumes "\<forall>xs \<in> set xss. distinct xs"  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3488  | 
shows "distinct (product_lists xss)"  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3489  | 
using assms proof (induction xss)  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3490  | 
case (Cons xs xss) note * = this  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3491  | 
then show ?case  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3492  | 
proof (cases "product_lists xss")  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3493  | 
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
 | 
3494  | 
next  | 
| 64963 | 3495  | 
case (Cons ps pss) with * show ?thesis  | 
| 
53721
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3496  | 
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
 | 
3497  | 
qed  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3498  | 
qed simp  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3499  | 
|
| 18490 | 3500  | 
lemma length_remdups_concat:  | 
| 44921 | 3501  | 
"length (remdups (concat xss)) = card (\<Union>xs\<in>set xss. set xs)"  | 
| 58807 | 3502  | 
by (simp add: distinct_card [symmetric])  | 
| 17906 | 3503  | 
|
| 
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
 | 
3504  | 
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
 | 
3505  | 
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
 | 
3506  | 
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
 | 
3507  | 
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
 | 
3508  | 
qed  | 
| 17906 | 3509  | 
|
| 58807 | 3510  | 
lemma remdups_remdups: "remdups (remdups xs) = remdups xs"  | 
3511  | 
by (induct xs) simp_all  | 
|
| 36275 | 3512  | 
|
| 36851 | 3513  | 
lemma distinct_butlast:  | 
| 
46500
 
0196966d6d2d
removing unnecessary premises in theorems of List theory
 
bulwahn 
parents: 
46448 
diff
changeset
 | 
3514  | 
assumes "distinct xs"  | 
| 36851 | 3515  | 
shows "distinct (butlast xs)"  | 
| 
46500
 
0196966d6d2d
removing unnecessary premises in theorems of List theory
 
bulwahn 
parents: 
46448 
diff
changeset
 | 
3516  | 
proof (cases "xs = []")  | 
| 
 
0196966d6d2d
removing unnecessary premises in theorems of List theory
 
bulwahn 
parents: 
46448 
diff
changeset
 | 
3517  | 
case False  | 
| 60758 | 3518  | 
from \<open>xs \<noteq> []\<close> obtain ys y where "xs = ys @ [y]" by (cases xs rule: rev_cases) auto  | 
3519  | 
with \<open>distinct xs\<close> show ?thesis by simp  | 
|
| 
46500
 
0196966d6d2d
removing unnecessary premises in theorems of List theory
 
bulwahn 
parents: 
46448 
diff
changeset
 | 
3520  | 
qed (auto)  | 
| 36851 | 3521  | 
|
| 39728 | 3522  | 
lemma remdups_map_remdups:  | 
3523  | 
"remdups (map f (remdups xs)) = remdups (map f xs)"  | 
|
| 58807 | 3524  | 
by (induct xs) simp_all  | 
| 39728 | 3525  | 
|
| 
39915
 
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
 
haftmann 
parents: 
39774 
diff
changeset
 | 
3526  | 
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
 | 
3527  | 
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
 | 
3528  | 
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
 | 
3529  | 
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
 | 
3530  | 
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
 | 
3531  | 
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
 | 
3532  | 
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
 | 
3533  | 
with assms have "distinct xs'" by simp  | 
| 60758 | 3534  | 
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
 | 
3535  | 
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
 | 
3536  | 
qed  | 
| 
 
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
 
haftmann 
parents: 
39774 
diff
changeset
 | 
3537  | 
|
| 
 
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
 
haftmann 
parents: 
39774 
diff
changeset
 | 
3538  | 
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
 | 
3539  | 
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
 | 
3540  | 
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
 | 
3541  | 
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
 | 
3542  | 
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
 | 
3543  | 
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
 | 
3544  | 
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
 | 
3545  | 
with assms have "distinct ys'" by simp  | 
| 60758 | 3546  | 
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
 | 
3547  | 
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
 | 
3548  | 
qed  | 
| 
 
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
 
haftmann 
parents: 
39774 
diff
changeset
 | 
3549  | 
|
| 47122 | 3550  | 
lemma set_take_disj_set_drop_if_distinct:  | 
3551  | 
  "distinct vs \<Longrightarrow> i \<le> j \<Longrightarrow> set (take i vs) \<inter> set (drop j vs) = {}"
 | 
|
3552  | 
by (auto simp: in_set_conv_nth distinct_conv_nth)  | 
|
3553  | 
||
| 
44635
 
3d046864ebe6
added two lemmas about "distinct" to help Sledgehammer
 
blanchet 
parents: 
44619 
diff
changeset
 | 
3554  | 
(* The next two lemmas help Sledgehammer. *)  | 
| 
 
3d046864ebe6
added two lemmas about "distinct" to help Sledgehammer
 
blanchet 
parents: 
44619 
diff
changeset
 | 
3555  | 
|
| 
 
3d046864ebe6
added two lemmas about "distinct" to help Sledgehammer
 
blanchet 
parents: 
44619 
diff
changeset
 | 
3556  | 
lemma distinct_singleton: "distinct [x]" by simp  | 
| 
 
3d046864ebe6
added two lemmas about "distinct" to help Sledgehammer
 
blanchet 
parents: 
44619 
diff
changeset
 | 
3557  | 
|
| 
 
3d046864ebe6
added two lemmas about "distinct" to help Sledgehammer
 
blanchet 
parents: 
44619 
diff
changeset
 | 
3558  | 
lemma distinct_length_2_or_more:  | 
| 58807 | 3559  | 
"distinct (a # b # xs) \<longleftrightarrow> (a \<noteq> b \<and> distinct (a # xs) \<and> distinct (b # xs))"  | 
| 56085 | 3560  | 
by force  | 
| 
44635
 
3d046864ebe6
added two lemmas about "distinct" to help Sledgehammer
 
blanchet 
parents: 
44619 
diff
changeset
 | 
3561  | 
|
| 58969 | 3562  | 
lemma remdups_adj_altdef: "(remdups_adj xs = ys) \<longleftrightarrow>  | 
| 67091 | 3563  | 
  (\<exists>f::nat => nat. mono f \<and> f ` {0 ..< size xs} = {0 ..< size ys}
 | 
| 58969 | 3564  | 
\<and> (\<forall>i < size xs. xs!i = ys!(f i))  | 
| 61941 | 3565  | 
\<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 | 3566  | 
proof  | 
3567  | 
assume ?L  | 
|
3568  | 
then show "\<exists>f. ?p f xs ys"  | 
|
3569  | 
proof (induct xs arbitrary: ys rule: remdups_adj.induct)  | 
|
3570  | 
case (1 ys)  | 
|
3571  | 
thus ?case by (intro exI[of _ id]) (auto simp: mono_def)  | 
|
3572  | 
next  | 
|
3573  | 
case (2 x ys)  | 
|
3574  | 
thus ?case by (intro exI[of _ id]) (auto simp: mono_def)  | 
|
3575  | 
next  | 
|
3576  | 
case (3 x1 x2 xs ys)  | 
|
3577  | 
let ?xs = "x1 # x2 # xs"  | 
|
3578  | 
let ?cond = "x1 = x2"  | 
|
| 63040 | 3579  | 
define zs where "zs = remdups_adj (x2 # xs)"  | 
| 58969 | 3580  | 
from 3(1-2)[of zs]  | 
3581  | 
obtain f where p: "?p f (x2 # xs) zs" unfolding zs_def by (cases ?cond) auto  | 
|
3582  | 
then have f0: "f 0 = 0"  | 
|
3583  | 
by (intro mono_image_least[where f=f]) blast+  | 
|
3584  | 
    from p have mono: "mono f" and f_xs_zs: "f ` {0..<length (x2 # xs)} = {0..<length zs}" by auto
 | 
|
3585  | 
have ys: "ys = (if x1 = x2 then zs else x1 # zs)"  | 
|
3586  | 
unfolding 3(3)[symmetric] zs_def by auto  | 
|
3587  | 
have zs0: "zs ! 0 = x2" unfolding zs_def by (induct xs) auto  | 
|
3588  | 
have zsne: "zs \<noteq> []" unfolding zs_def by (induct xs) auto  | 
|
3589  | 
let ?Succ = "if ?cond then id else Suc"  | 
|
3590  | 
let ?x1 = "if ?cond then id else Cons x1"  | 
|
3591  | 
let ?f = "\<lambda> i. if i = 0 then 0 else ?Succ (f (i - 1))"  | 
|
3592  | 
have ys: "ys = ?x1 zs" unfolding ys by (cases ?cond, auto)  | 
|
| 60758 | 3593  | 
have mono: "mono ?f" using \<open>mono f\<close> unfolding mono_def by auto  | 
| 58969 | 3594  | 
show ?case unfolding ys  | 
3595  | 
proof (intro exI[of _ ?f] conjI allI impI)  | 
|
3596  | 
show "mono ?f" by fact  | 
|
3597  | 
next  | 
|
3598  | 
fix i assume i: "i < length ?xs"  | 
|
3599  | 
with p show "?xs ! i = ?x1 zs ! (?f i)" using zs0 by auto  | 
|
3600  | 
next  | 
|
3601  | 
fix i assume i: "i + 1 < length ?xs"  | 
|
3602  | 
with p show "(?xs ! i = ?xs ! (i + 1)) = (?f i = ?f (i + 1))"  | 
|
3603  | 
by (cases i) (auto simp: f0)  | 
|
3604  | 
next  | 
|
3605  | 
      have id: "{0 ..< length (?x1 zs)} = insert 0 (?Succ ` {0 ..< length zs})"
 | 
|
3606  | 
using zsne by (cases ?cond, auto)  | 
|
3607  | 
      { fix i  assume "i < Suc (length xs)"
 | 
|
| 67399 | 3608  | 
        hence "Suc i \<in> {0..<Suc (Suc (length xs))} \<inter> Collect ((<) 0)" by auto
 | 
| 58969 | 3609  | 
from imageI[OF this, of "\<lambda>i. ?Succ (f (i - Suc 0))"]  | 
| 67399 | 3610  | 
        have "?Succ (f i) \<in> (\<lambda>i. ?Succ (f (i - Suc 0))) ` ({0..<Suc (Suc (length xs))} \<inter> Collect ((<) 0))" by auto
 | 
| 58969 | 3611  | 
}  | 
3612  | 
      then show "?f ` {0 ..< length ?xs} = {0 ..< length (?x1  zs)}"
 | 
|
3613  | 
unfolding id f_xs_zs[symmetric] by auto  | 
|
3614  | 
qed  | 
|
3615  | 
qed  | 
|
3616  | 
next  | 
|
3617  | 
assume "\<exists> f. ?p f xs ys"  | 
|
3618  | 
then show ?L  | 
|
3619  | 
proof (induct xs arbitrary: ys rule: remdups_adj.induct)  | 
|
3620  | 
case 1 then show ?case by auto  | 
|
3621  | 
next  | 
|
3622  | 
    case (2 x) then obtain f where f_img: "f ` {0 ..< size [x]} = {0 ..< size ys}"
 | 
|
3623  | 
and f_nth: "\<And>i. i < size [x] \<Longrightarrow> [x]!i = ys!(f i)"  | 
|
3624  | 
by blast  | 
|
3625  | 
||
3626  | 
    have "length ys = card (f ` {0 ..< size [x]})"
 | 
|
3627  | 
using f_img by auto  | 
|
| 63540 | 3628  | 
then have *: "length ys = 1" by auto  | 
| 58969 | 3629  | 
then have "f 0 = 0" using f_img by auto  | 
| 63540 | 3630  | 
with * show ?case using f_nth by (cases ys) auto  | 
| 58969 | 3631  | 
next  | 
3632  | 
case (3 x1 x2 xs)  | 
|
3633  | 
from "3.prems" obtain f where f_mono: "mono f"  | 
|
3634  | 
      and f_img: "f ` {0..<length (x1 # x2 # xs)} = {0..<length ys}"
 | 
|
3635  | 
and f_nth:  | 
|
3636  | 
"\<And>i. i < length (x1 # x2 # xs) \<Longrightarrow> (x1 # x2 # xs) ! i = ys ! f i"  | 
|
3637  | 
"\<And>i. i + 1 < length (x1 # x2 #xs) \<Longrightarrow>  | 
|
3638  | 
((x1 # x2 # xs) ! i = (x1 # x2 # xs) ! (i + 1)) = (f i = f (i + 1))"  | 
|
3639  | 
by blast  | 
|
3640  | 
||
3641  | 
show ?case  | 
|
3642  | 
proof cases  | 
|
3643  | 
assume "x1 = x2"  | 
|
3644  | 
||
| 67091 | 3645  | 
let ?f' = "f \<circ> Suc"  | 
| 58969 | 3646  | 
|
3647  | 
have "remdups_adj (x1 # xs) = ys"  | 
|
3648  | 
proof (intro "3.hyps" exI conjI impI allI)  | 
|
3649  | 
show "mono ?f'"  | 
|
3650  | 
using f_mono by (simp add: mono_iff_le_Suc)  | 
|
3651  | 
next  | 
|
3652  | 
        have "?f' ` {0 ..< length (x1 # xs)} = f ` {Suc 0 ..< length (x1 # x2 # xs)}"
 | 
|
3653  | 
by safe (fastforce, rename_tac x, case_tac x, auto)  | 
|
3654  | 
        also have "\<dots> = f ` {0 ..< length (x1 # x2 # xs)}"
 | 
|
3655  | 
proof -  | 
|
3656  | 
have "f 0 = f (Suc 0)" using \<open>x1 = x2\<close> f_nth[of 0] by simp  | 
|
3657  | 
then show ?thesis by safe (fastforce, rename_tac x, case_tac x, auto)  | 
|
3658  | 
qed  | 
|
3659  | 
        also have "\<dots> = {0 ..< length ys}" by fact
 | 
|
3660  | 
        finally show  "?f' ` {0 ..< length (x1 # xs)} = {0 ..< length ys}" .
 | 
|
3661  | 
qed (insert f_nth[of "Suc i" for i], auto simp: \<open>x1 = x2\<close>)  | 
|
3662  | 
then show ?thesis using \<open>x1 = x2\<close> by simp  | 
|
3663  | 
next  | 
|
3664  | 
assume "x1 \<noteq> x2"  | 
|
3665  | 
||
3666  | 
have "2 \<le> length ys"  | 
|
3667  | 
proof -  | 
|
3668  | 
        have "2 = card {f 0, f 1}" using \<open>x1 \<noteq> x2\<close> f_nth[of 0] by auto
 | 
|
3669  | 
        also have "\<dots> \<le> card (f ` {0..< length (x1 # x2 # xs)})"
 | 
|
3670  | 
by (rule card_mono) auto  | 
|
3671  | 
finally show ?thesis using f_img by simp  | 
|
3672  | 
qed  | 
|
3673  | 
||
3674  | 
have "f 0 = 0" using f_mono f_img by (rule mono_image_least) simp  | 
|
3675  | 
||
3676  | 
have "f (Suc 0) = Suc 0"  | 
|
3677  | 
proof (rule ccontr)  | 
|
3678  | 
assume "f (Suc 0) \<noteq> Suc 0"  | 
|
3679  | 
then have "Suc 0 < f (Suc 0)" using f_nth[of 0] \<open>x1 \<noteq> x2\<close> \<open>f 0 = 0\<close> by auto  | 
|
3680  | 
then have "\<And>i. Suc 0 < f (Suc i)"  | 
|
3681  | 
using f_mono  | 
|
3682  | 
by (meson Suc_le_mono le0 less_le_trans monoD)  | 
|
3683  | 
then have "\<And>i. Suc 0 \<noteq> f i" using \<open>f 0 = 0\<close>  | 
|
3684  | 
by (case_tac i) fastforce+  | 
|
3685  | 
        then have "Suc 0 \<notin> f ` {0 ..< length (x1 # x2 # xs)}" by auto
 | 
|
3686  | 
then show False using f_img \<open>2 \<le> length ys\<close> by auto  | 
|
3687  | 
qed  | 
|
3688  | 
||
3689  | 
obtain ys' where "ys = x1 # x2 # ys'"  | 
|
3690  | 
using \<open>2 \<le> length ys\<close> f_nth[of 0] f_nth[of 1]  | 
|
3691  | 
apply (cases ys)  | 
|
3692  | 
apply (rename_tac [2] ys', case_tac [2] ys')  | 
|
3693  | 
by (auto simp: \<open>f 0 = 0\<close> \<open>f (Suc 0) = Suc 0\<close>)  | 
|
3694  | 
||
| 63040 | 3695  | 
define f' where "f' x = f (Suc x) - 1" for x  | 
| 58969 | 3696  | 
|
3697  | 
      { fix i
 | 
|
3698  | 
have "Suc 0 \<le> f (Suc 0)" using f_nth[of 0] \<open>x1 \<noteq> x2\<close> \<open>f 0 = 0\<close> by auto  | 
|
3699  | 
also have "\<dots> \<le> f (Suc i)" using f_mono by (rule monoD) arith  | 
|
3700  | 
finally have "Suc 0 \<le> f (Suc i)" .  | 
|
3701  | 
} note Suc0_le_f_Suc = this  | 
|
3702  | 
||
3703  | 
      { fix i have "f (Suc i) = Suc (f' i)"
 | 
|
3704  | 
using Suc0_le_f_Suc[of i] by (auto simp: f'_def)  | 
|
3705  | 
} note f_Suc = this  | 
|
3706  | 
||
3707  | 
have "remdups_adj (x2 # xs) = (x2 # ys')"  | 
|
3708  | 
proof (intro "3.hyps" exI conjI impI allI)  | 
|
3709  | 
show "mono f'"  | 
|
3710  | 
using Suc0_le_f_Suc f_mono by (auto simp: f'_def mono_iff_le_Suc le_diff_iff)  | 
|
3711  | 
next  | 
|
3712  | 
        have "f' ` {0 ..< length (x2 # xs)} = (\<lambda>x. f x - 1) ` {0 ..< length (x1 # x2 #xs)}"
 | 
|
3713  | 
apply safe  | 
|
3714  | 
apply (rename_tac [!] n, case_tac [!] n)  | 
|
3715  | 
apply (auto simp: f'_def \<open>f 0 = 0\<close> \<open>f (Suc 0) = Suc 0\<close> intro: rev_image_eqI)  | 
|
3716  | 
done  | 
|
3717  | 
        also have "\<dots> = (\<lambda>x. x - 1) ` f ` {0 ..< length (x1 # x2 #xs)}"
 | 
|
3718  | 
by (auto simp: image_comp)  | 
|
3719  | 
        also have "\<dots> = (\<lambda>x. x - 1) ` {0 ..< length ys}"
 | 
|
3720  | 
by (simp only: f_img)  | 
|
3721  | 
        also have "\<dots> = {0 ..< length (x2 # ys')}"
 | 
|
3722  | 
using \<open>ys = _\<close> by (fastforce intro: rev_image_eqI)  | 
|
3723  | 
        finally show  "f' ` {0 ..< length (x2 # xs)} = {0 ..< length (x2 # ys')}" .
 | 
|
3724  | 
qed (insert f_nth[of "Suc i" for i] \<open>x1 \<noteq> x2\<close>, auto simp add: f_Suc \<open>ys = _\<close>)  | 
|
3725  | 
then show ?case using \<open>ys = _\<close> \<open>x1 \<noteq> x2\<close> by simp  | 
|
3726  | 
qed  | 
|
3727  | 
qed  | 
|
3728  | 
qed  | 
|
3729  | 
||
| 58041 | 3730  | 
lemma hd_remdups_adj[simp]: "hd (remdups_adj xs) = hd xs"  | 
| 58807 | 3731  | 
by (induction xs rule: remdups_adj.induct) simp_all  | 
| 58041 | 3732  | 
|
| 
53721
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3733  | 
lemma remdups_adj_Cons: "remdups_adj (x # xs) =  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3734  | 
(case remdups_adj xs of [] \<Rightarrow> [x] | y # xs \<Rightarrow> if x = y then y # xs else x # y # xs)"  | 
| 58807 | 3735  | 
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
 | 
3736  | 
|
| 64963 | 3737  | 
lemma remdups_adj_append_two:  | 
| 
53721
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3738  | 
"remdups_adj (xs @ [x,y]) = remdups_adj (xs @ [x]) @ (if x = y then [] else [y])"  | 
| 58807 | 3739  | 
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
 | 
3740  | 
|
| 58041 | 3741  | 
lemma remdups_adj_adjacent:  | 
3742  | 
"Suc i < length (remdups_adj xs) \<Longrightarrow> remdups_adj xs ! i \<noteq> remdups_adj xs ! Suc i"  | 
|
3743  | 
proof (induction xs arbitrary: i rule: remdups_adj.induct)  | 
|
3744  | 
case (3 x y xs i)  | 
|
3745  | 
thus ?case by (cases i, cases "x = y") (simp, auto simp: hd_conv_nth[symmetric])  | 
|
3746  | 
qed simp_all  | 
|
3747  | 
||
| 
53721
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3748  | 
lemma remdups_adj_rev[simp]: "remdups_adj (rev xs) = rev (remdups_adj xs)"  | 
| 58807 | 3749  | 
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
 | 
3750  | 
|
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3751  | 
lemma remdups_adj_length[simp]: "length (remdups_adj xs) \<le> length xs"  | 
| 58807 | 3752  | 
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
 | 
3753  | 
|
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3754  | 
lemma remdups_adj_length_ge1[simp]: "xs \<noteq> [] \<Longrightarrow> length (remdups_adj xs) \<ge> Suc 0"  | 
| 58807 | 3755  | 
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
 | 
3756  | 
|
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3757  | 
lemma remdups_adj_Nil_iff[simp]: "remdups_adj xs = [] \<longleftrightarrow> xs = []"  | 
| 58807 | 3758  | 
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
 | 
3759  | 
|
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3760  | 
lemma remdups_adj_set[simp]: "set (remdups_adj xs) = set xs"  | 
| 58807 | 3761  | 
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
 | 
3762  | 
|
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3763  | 
lemma remdups_adj_Cons_alt[simp]: "x # tl (remdups_adj (x # xs)) = remdups_adj (x # xs)"  | 
| 58807 | 3764  | 
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
 | 
3765  | 
|
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3766  | 
lemma remdups_adj_distinct: "distinct xs \<Longrightarrow> remdups_adj xs = xs"  | 
| 58807 | 3767  | 
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
 | 
3768  | 
|
| 64963 | 3769  | 
lemma remdups_adj_append:  | 
| 
53721
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3770  | 
"remdups_adj (xs\<^sub>1 @ x # xs\<^sub>2) = remdups_adj (xs\<^sub>1 @ [x]) @ tl (remdups_adj (x # xs\<^sub>2))"  | 
| 58807 | 3771  | 
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
 | 
3772  | 
|
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3773  | 
lemma remdups_adj_singleton:  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3774  | 
"remdups_adj xs = [x] \<Longrightarrow> xs = replicate (length xs) x"  | 
| 62390 | 3775  | 
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
 | 
3776  | 
|
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3777  | 
lemma remdups_adj_map_injective:  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3778  | 
assumes "inj f"  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3779  | 
shows "remdups_adj (map f xs) = map f (remdups_adj xs)"  | 
| 58807 | 3780  | 
by (induct xs rule: remdups_adj.induct) (auto simp add: injD[OF assms])  | 
3781  | 
||
| 62065 | 3782  | 
lemma remdups_adj_replicate:  | 
3783  | 
"remdups_adj (replicate n x) = (if n = 0 then [] else [x])"  | 
|
3784  | 
by (induction n) (auto simp: remdups_adj_Cons)  | 
|
3785  | 
||
| 58807 | 3786  | 
lemma remdups_upt [simp]: "remdups [m..<n] = [m..<n]"  | 
| 58437 | 3787  | 
proof (cases "m \<le> n")  | 
3788  | 
case False then show ?thesis by simp  | 
|
3789  | 
next  | 
|
3790  | 
case True then obtain q where "n = m + q"  | 
|
3791  | 
by (auto simp add: le_iff_add)  | 
|
3792  | 
moreover have "remdups [m..<m + q] = [m..<m + q]"  | 
|
3793  | 
by (induct q) simp_all  | 
|
3794  | 
ultimately show ?thesis by simp  | 
|
3795  | 
qed  | 
|
3796  | 
||
| 
49948
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
3797  | 
|
| 60758 | 3798  | 
subsubsection \<open>@{const insert}\<close>
 | 
| 
34978
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
3799  | 
|
| 
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
3800  | 
lemma in_set_insert [simp]:  | 
| 
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
3801  | 
"x \<in> set xs \<Longrightarrow> List.insert x xs = xs"  | 
| 58807 | 3802  | 
by (simp add: List.insert_def)  | 
| 
34978
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
3803  | 
|
| 
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
3804  | 
lemma not_in_set_insert [simp]:  | 
| 
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
3805  | 
"x \<notin> set xs \<Longrightarrow> List.insert x xs = x # xs"  | 
| 58807 | 3806  | 
by (simp add: List.insert_def)  | 
3807  | 
||
3808  | 
lemma insert_Nil [simp]: "List.insert x [] = [x]"  | 
|
3809  | 
by simp  | 
|
3810  | 
||
3811  | 
lemma set_insert [simp]: "set (List.insert x xs) = insert x (set xs)"  | 
|
3812  | 
by (auto simp add: List.insert_def)  | 
|
3813  | 
||
3814  | 
lemma distinct_insert [simp]: "distinct (List.insert x xs) = distinct xs"  | 
|
3815  | 
by (simp add: List.insert_def)  | 
|
| 35295 | 3816  | 
|
| 36275 | 3817  | 
lemma insert_remdups:  | 
3818  | 
"List.insert x (remdups xs) = remdups (List.insert x xs)"  | 
|
| 58807 | 3819  | 
by (simp add: List.insert_def)  | 
| 36275 | 3820  | 
|
| 
34978
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
3821  | 
|
| 60758 | 3822  | 
subsubsection \<open>@{const List.union}\<close>
 | 
3823  | 
||
3824  | 
text\<open>This is all one should need to know about union:\<close>  | 
|
| 57198 | 3825  | 
lemma set_union[simp]: "set (List.union xs ys) = set xs \<union> set ys"  | 
3826  | 
unfolding List.union_def  | 
|
3827  | 
by(induct xs arbitrary: ys) simp_all  | 
|
3828  | 
||
3829  | 
lemma distinct_union[simp]: "distinct(List.union xs ys) = distinct ys"  | 
|
3830  | 
unfolding List.union_def  | 
|
3831  | 
by(induct xs arbitrary: ys) simp_all  | 
|
3832  | 
||
3833  | 
||
| 60758 | 3834  | 
subsubsection \<open>@{const List.find}\<close>
 | 
| 47122 | 3835  | 
|
3836  | 
lemma find_None_iff: "List.find P xs = None \<longleftrightarrow> \<not> (\<exists>x. x \<in> set xs \<and> P x)"  | 
|
3837  | 
proof (induction xs)  | 
|
3838  | 
case Nil thus ?case by simp  | 
|
3839  | 
next  | 
|
3840  | 
case (Cons x xs) thus ?case by (fastforce split: if_splits)  | 
|
3841  | 
qed  | 
|
3842  | 
||
3843  | 
lemma find_Some_iff:  | 
|
3844  | 
"List.find P xs = Some x \<longleftrightarrow>  | 
|
3845  | 
(\<exists>i<length xs. P (xs!i) \<and> x = xs!i \<and> (\<forall>j<i. \<not> P (xs!j)))"  | 
|
3846  | 
proof (induction xs)  | 
|
3847  | 
case Nil thus ?case by simp  | 
|
3848  | 
next  | 
|
3849  | 
case (Cons x xs) thus ?case  | 
|
| 56085 | 3850  | 
apply(auto simp: nth_Cons' split: if_splits)  | 
3851  | 
using diff_Suc_1[unfolded One_nat_def] less_Suc_eq_0_disj by fastforce  | 
|
| 47122 | 3852  | 
qed  | 
3853  | 
||
3854  | 
lemma find_cong[fundef_cong]:  | 
|
| 64963 | 3855  | 
assumes "xs = ys" and "\<And>x. x \<in> set ys \<Longrightarrow> P x = Q x"  | 
| 47122 | 3856  | 
shows "List.find P xs = List.find Q ys"  | 
3857  | 
proof (cases "List.find P xs")  | 
|
3858  | 
case None thus ?thesis by (metis find_None_iff assms)  | 
|
3859  | 
next  | 
|
3860  | 
case (Some x)  | 
|
3861  | 
hence "List.find Q ys = Some x" using assms  | 
|
3862  | 
by (auto simp add: find_Some_iff)  | 
|
3863  | 
thus ?thesis using Some by auto  | 
|
3864  | 
qed  | 
|
3865  | 
||
| 52379 | 3866  | 
lemma find_dropWhile:  | 
3867  | 
"List.find P xs = (case dropWhile (Not \<circ> P) xs  | 
|
3868  | 
of [] \<Rightarrow> None  | 
|
3869  | 
| x # _ \<Rightarrow> Some x)"  | 
|
| 58807 | 3870  | 
by (induct xs) simp_all  | 
| 52379 | 3871  | 
|
| 47122 | 3872  | 
|
| 60758 | 3873  | 
subsubsection \<open>@{const count_list}\<close>
 | 
| 60541 | 3874  | 
|
3875  | 
lemma count_notin[simp]: "x \<notin> set xs \<Longrightarrow> count_list xs x = 0"  | 
|
| 59728 | 3876  | 
by (induction xs) auto  | 
3877  | 
||
| 60541 | 3878  | 
lemma count_le_length: "count_list xs x \<le> length xs"  | 
| 59728 | 3879  | 
by (induction xs) auto  | 
3880  | 
||
| 64267 | 3881  | 
lemma sum_count_set:  | 
3882  | 
"set xs \<subseteq> X \<Longrightarrow> finite X \<Longrightarrow> sum (count_list xs) X = length xs"  | 
|
| 59728 | 3883  | 
apply(induction xs arbitrary: X)  | 
3884  | 
apply simp  | 
|
| 64267 | 3885  | 
apply (simp add: sum.If_cases)  | 
3886  | 
by (metis Diff_eq sum.remove)  | 
|
| 59728 | 3887  | 
|
3888  | 
||
| 60758 | 3889  | 
subsubsection \<open>@{const List.extract}\<close>
 | 
| 55807 | 3890  | 
|
3891  | 
lemma extract_None_iff: "List.extract P xs = None \<longleftrightarrow> \<not> (\<exists> x\<in>set xs. P x)"  | 
|
3892  | 
by(auto simp: extract_def dropWhile_eq_Cons_conv split: list.splits)  | 
|
3893  | 
(metis in_set_conv_decomp)  | 
|
3894  | 
||
3895  | 
lemma extract_SomeE:  | 
|
3896  | 
"List.extract P xs = Some (ys, y, zs) \<Longrightarrow>  | 
|
| 64963 | 3897  | 
xs = ys @ y # zs \<and> P y \<and> \<not> (\<exists> y \<in> set ys. P y)"  | 
| 55807 | 3898  | 
by(auto simp: extract_def dropWhile_eq_Cons_conv split: list.splits)  | 
3899  | 
||
3900  | 
lemma extract_Some_iff:  | 
|
3901  | 
"List.extract P xs = Some (ys, y, zs) \<longleftrightarrow>  | 
|
| 64963 | 3902  | 
xs = ys @ y # zs \<and> P y \<and> \<not> (\<exists> y \<in> set ys. P y)"  | 
| 55807 | 3903  | 
by(auto simp: extract_def dropWhile_eq_Cons_conv dest: set_takeWhileD split: list.splits)  | 
3904  | 
||
3905  | 
lemma extract_Nil_code[code]: "List.extract P [] = None"  | 
|
3906  | 
by(simp add: extract_def)  | 
|
3907  | 
||
3908  | 
lemma extract_Cons_code[code]:  | 
|
3909  | 
"List.extract P (x # xs) = (if P x then Some ([], x, xs) else  | 
|
3910  | 
(case List.extract P xs of  | 
|
3911  | 
None \<Rightarrow> None |  | 
|
3912  | 
Some (ys, y, zs) \<Rightarrow> Some (x#ys, y, zs)))"  | 
|
| 56085 | 3913  | 
by(auto simp add: extract_def comp_def split: list.splits)  | 
3914  | 
(metis dropWhile_eq_Nil_conv list.distinct(1))  | 
|
| 55807 | 3915  | 
|
3916  | 
||
| 60758 | 3917  | 
subsubsection \<open>@{const remove1}\<close>
 | 
| 
15110
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
3918  | 
|
| 18049 | 3919  | 
lemma remove1_append:  | 
3920  | 
"remove1 x (xs @ ys) =  | 
|
3921  | 
(if x \<in> set xs then remove1 x xs @ ys else xs @ remove1 x ys)"  | 
|
3922  | 
by (induct xs) auto  | 
|
3923  | 
||
| 36903 | 3924  | 
lemma remove1_commute: "remove1 x (remove1 y zs) = remove1 y (remove1 x zs)"  | 
3925  | 
by (induct zs) auto  | 
|
3926  | 
||
| 23479 | 3927  | 
lemma in_set_remove1[simp]:  | 
| 67613 | 3928  | 
"a \<noteq> b \<Longrightarrow> a \<in> set(remove1 b xs) = (a \<in> set xs)"  | 
| 23479 | 3929  | 
apply (induct xs)  | 
| 58807 | 3930  | 
apply auto  | 
| 23479 | 3931  | 
done  | 
3932  | 
||
| 67613 | 3933  | 
lemma set_remove1_subset: "set(remove1 x xs) \<subseteq> set xs"  | 
| 
15110
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
3934  | 
apply(induct xs)  | 
| 
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
3935  | 
apply simp  | 
| 
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
3936  | 
apply simp  | 
| 
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
3937  | 
apply blast  | 
| 
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
3938  | 
done  | 
| 
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
3939  | 
|
| 67613 | 3940  | 
lemma set_remove1_eq [simp]: "distinct xs \<Longrightarrow> set(remove1 x xs) = set xs - {x}"
 | 
| 
15110
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
3941  | 
apply(induct xs)  | 
| 
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
3942  | 
apply simp  | 
| 
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
3943  | 
apply simp  | 
| 
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
3944  | 
apply blast  | 
| 
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
3945  | 
done  | 
| 
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
3946  | 
|
| 23479 | 3947  | 
lemma length_remove1:  | 
| 67613 | 3948  | 
"length(remove1 x xs) = (if x \<in> set xs then length xs - 1 else length xs)"  | 
| 58807 | 3949  | 
by (induct xs) (auto dest!:length_pos_if_in_set)  | 
| 23479 | 3950  | 
|
| 18049 | 3951  | 
lemma remove1_filter_not[simp]:  | 
3952  | 
"\<not> P x \<Longrightarrow> remove1 x (filter P xs) = filter P xs"  | 
|
3953  | 
by(induct xs) auto  | 
|
3954  | 
||
| 39073 | 3955  | 
lemma filter_remove1:  | 
3956  | 
"filter Q (remove1 x xs) = remove1 x (filter Q xs)"  | 
|
3957  | 
by (induct xs) auto  | 
|
3958  | 
||
| 67613 | 3959  | 
lemma notin_set_remove1[simp]: "x \<notin> set xs \<Longrightarrow> x \<notin> set(remove1 y xs)"  | 
| 58807 | 3960  | 
by(insert set_remove1_subset) fast  | 
| 
15110
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
3961  | 
|
| 67613 | 3962  | 
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
 | 
3963  | 
by (induct xs) simp_all  | 
| 
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
3964  | 
|
| 36275 | 3965  | 
lemma remove1_remdups:  | 
3966  | 
"distinct xs \<Longrightarrow> remove1 x (remdups xs) = remdups (remove1 x xs)"  | 
|
| 58807 | 3967  | 
by (induct xs) simp_all  | 
3968  | 
||
3969  | 
lemma remove1_idem: "x \<notin> set xs \<Longrightarrow> remove1 x xs = xs"  | 
|
3970  | 
by (induct xs) simp_all  | 
|
| 37107 | 3971  | 
|
| 13114 | 3972  | 
|
| 60758 | 3973  | 
subsubsection \<open>@{const removeAll}\<close>
 | 
| 27693 | 3974  | 
|
| 
34978
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
3975  | 
lemma removeAll_filter_not_eq:  | 
| 
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
3976  | 
"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
 | 
3977  | 
proof  | 
| 
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
3978  | 
fix xs  | 
| 
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
3979  | 
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
 | 
3980  | 
by (induct xs) auto  | 
| 
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
3981  | 
qed  | 
| 
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
3982  | 
|
| 27693 | 3983  | 
lemma removeAll_append[simp]:  | 
3984  | 
"removeAll x (xs @ ys) = removeAll x xs @ removeAll x ys"  | 
|
3985  | 
by (induct xs) auto  | 
|
3986  | 
||
3987  | 
lemma set_removeAll[simp]: "set(removeAll x xs) = set xs - {x}"
 | 
|
3988  | 
by (induct xs) auto  | 
|
3989  | 
||
3990  | 
lemma removeAll_id[simp]: "x \<notin> set xs \<Longrightarrow> removeAll x xs = xs"  | 
|
3991  | 
by (induct xs) auto  | 
|
3992  | 
||
| 
46448
 
f1201fac7398
more specification of the quotient package in IsarRef
 
Cezary Kaliszyk <cezarykaliszyk@gmail.com> 
parents: 
46440 
diff
changeset
 | 
3993  | 
(* Needs count:: 'a \<Rightarrow> 'a list \<Rightarrow> nat  | 
| 27693 | 3994  | 
lemma length_removeAll:  | 
3995  | 
"length(removeAll x xs) = length xs - count x xs"  | 
|
3996  | 
*)  | 
|
3997  | 
||
3998  | 
lemma removeAll_filter_not[simp]:  | 
|
3999  | 
"\<not> P x \<Longrightarrow> removeAll x (filter P xs) = filter P xs"  | 
|
4000  | 
by(induct xs) auto  | 
|
4001  | 
||
| 
34978
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
4002  | 
lemma distinct_removeAll:  | 
| 
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
4003  | 
"distinct xs \<Longrightarrow> distinct (removeAll x xs)"  | 
| 58807 | 4004  | 
by (simp add: removeAll_filter_not_eq)  | 
| 27693 | 4005  | 
|
4006  | 
lemma distinct_remove1_removeAll:  | 
|
| 67613 | 4007  | 
"distinct xs \<Longrightarrow> remove1 x xs = removeAll x xs"  | 
| 27693 | 4008  | 
by (induct xs) simp_all  | 
4009  | 
||
4010  | 
lemma map_removeAll_inj_on: "inj_on f (insert x (set xs)) \<Longrightarrow>  | 
|
4011  | 
map f (removeAll x xs) = removeAll (f x) (map f xs)"  | 
|
4012  | 
by (induct xs) (simp_all add:inj_on_def)  | 
|
4013  | 
||
4014  | 
lemma map_removeAll_inj: "inj f \<Longrightarrow>  | 
|
4015  | 
map f (removeAll x xs) = removeAll (f x) (map f xs)"  | 
|
| 56085 | 4016  | 
by (rule map_removeAll_inj_on, erule subset_inj_on, rule subset_UNIV)  | 
| 27693 | 4017  | 
|
| 63365 | 4018  | 
lemma length_removeAll_less_eq [simp]:  | 
4019  | 
"length (removeAll x xs) \<le> length xs"  | 
|
4020  | 
by (simp add: removeAll_filter_not_eq)  | 
|
4021  | 
||
4022  | 
lemma length_removeAll_less [termination_simp]:  | 
|
4023  | 
"x \<in> set xs \<Longrightarrow> length (removeAll x xs) < length xs"  | 
|
4024  | 
by (auto dest: length_filter_less simp add: removeAll_filter_not_eq)  | 
|
4025  | 
||
| 27693 | 4026  | 
|
| 60758 | 4027  | 
subsubsection \<open>@{const replicate}\<close>
 | 
| 13114 | 4028  | 
|
| 13142 | 4029  | 
lemma length_replicate [simp]: "length (replicate n x) = n"  | 
| 13145 | 4030  | 
by (induct n) auto  | 
| 13124 | 4031  | 
|
| 58437 | 4032  | 
lemma replicate_eqI:  | 
4033  | 
assumes "length xs = n" and "\<And>y. y \<in> set xs \<Longrightarrow> y = x"  | 
|
4034  | 
shows "xs = replicate n x"  | 
|
| 67613 | 4035  | 
using assms  | 
4036  | 
proof (induct xs arbitrary: n)  | 
|
| 58437 | 4037  | 
case Nil then show ?case by simp  | 
4038  | 
next  | 
|
4039  | 
case (Cons x xs) then show ?case by (cases n) simp_all  | 
|
4040  | 
qed  | 
|
4041  | 
||
| 
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
 | 
4042  | 
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
 | 
4043  | 
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
 | 
4044  | 
|
| 13142 | 4045  | 
lemma map_replicate [simp]: "map f (replicate n x) = replicate n (f x)"  | 
| 13145 | 4046  | 
by (induct n) auto  | 
| 13114 | 4047  | 
|
| 
31363
 
7493b571b37d
Added theorems about distinct & concat, map & replicate and concat & replicate
 
hoelzl 
parents: 
31264 
diff
changeset
 | 
4048  | 
lemma map_replicate_const:  | 
| 
 
7493b571b37d
Added theorems about distinct & concat, map & replicate and concat & replicate
 
hoelzl 
parents: 
31264 
diff
changeset
 | 
4049  | 
"map (\<lambda> x. k) lst = replicate (length lst) k"  | 
| 66853 | 4050  | 
by (induct lst) auto  | 
| 
31363
 
7493b571b37d
Added theorems about distinct & concat, map & replicate and concat & replicate
 
hoelzl 
parents: 
31264 
diff
changeset
 | 
4051  | 
|
| 13114 | 4052  | 
lemma replicate_app_Cons_same:  | 
| 13145 | 4053  | 
"(replicate n x) @ (x # xs) = x # replicate n x @ xs"  | 
4054  | 
by (induct n) auto  | 
|
| 13114 | 4055  | 
|
| 13142 | 4056  | 
lemma rev_replicate [simp]: "rev (replicate n x) = replicate n x"  | 
| 58807 | 4057  | 
by (induct n) (auto simp: replicate_app_Cons_same)  | 
| 13114 | 4058  | 
|
| 13142 | 4059  | 
lemma replicate_add: "replicate (n + m) x = replicate n x @ replicate m x"  | 
| 13145 | 4060  | 
by (induct n) auto  | 
| 13114 | 4061  | 
|
| 60758 | 4062  | 
text\<open>Courtesy of Matthias Daum:\<close>  | 
| 16397 | 4063  | 
lemma append_replicate_commute:  | 
4064  | 
"replicate n x @ replicate k x = replicate k x @ replicate n x"  | 
|
| 59199 | 4065  | 
apply (simp add: replicate_add [symmetric])  | 
| 
57512
 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 
haftmann 
parents: 
57418 
diff
changeset
 | 
4066  | 
apply (simp add: add.commute)  | 
| 16397 | 4067  | 
done  | 
4068  | 
||
| 60758 | 4069  | 
text\<open>Courtesy of Andreas Lochbihler:\<close>  | 
| 31080 | 4070  | 
lemma filter_replicate:  | 
4071  | 
"filter P (replicate n x) = (if P x then replicate n x else [])"  | 
|
4072  | 
by(induct n) auto  | 
|
4073  | 
||
| 13142 | 4074  | 
lemma hd_replicate [simp]: "n \<noteq> 0 ==> hd (replicate n x) = x"  | 
| 13145 | 4075  | 
by (induct n) auto  | 
| 13114 | 4076  | 
|
| 
46500
 
0196966d6d2d
removing unnecessary premises in theorems of List theory
 
bulwahn 
parents: 
46448 
diff
changeset
 | 
4077  | 
lemma tl_replicate [simp]: "tl (replicate n x) = replicate (n - 1) x"  | 
| 13145 | 4078  | 
by (induct n) auto  | 
| 13114 | 4079  | 
|
| 13142 | 4080  | 
lemma last_replicate [simp]: "n \<noteq> 0 ==> last (replicate n x) = x"  | 
| 13145 | 4081  | 
by (atomize (full), induct n) auto  | 
| 13114 | 4082  | 
|
| 24526 | 4083  | 
lemma nth_replicate[simp]: "i < n ==> (replicate n x)!i = x"  | 
| 58807 | 4084  | 
by (induct n arbitrary: i)(auto simp: nth_Cons split: nat.split)  | 
| 13114 | 4085  | 
|
| 60758 | 4086  | 
text\<open>Courtesy of Matthias Daum (2 lemmas):\<close>  | 
| 16397 | 4087  | 
lemma take_replicate[simp]: "take i (replicate k x) = replicate (min i k) x"  | 
4088  | 
apply (case_tac "k \<le> i")  | 
|
4089  | 
apply (simp add: min_def)  | 
|
| 
61824
 
dcbe9f756ae0
not_leE -> not_le_imp_less and other tidying
 
paulson <lp15@cam.ac.uk> 
parents: 
61799 
diff
changeset
 | 
4090  | 
apply (drule not_le_imp_less)  | 
| 16397 | 4091  | 
apply (simp add: min_def)  | 
4092  | 
apply (subgoal_tac "replicate k x = replicate i x @ replicate (k - i) x")  | 
|
4093  | 
apply simp  | 
|
4094  | 
apply (simp add: replicate_add [symmetric])  | 
|
4095  | 
done  | 
|
4096  | 
||
| 24526 | 4097  | 
lemma drop_replicate[simp]: "drop i (replicate k x) = replicate (k-i) x"  | 
4098  | 
apply (induct k arbitrary: i)  | 
|
| 16397 | 4099  | 
apply simp  | 
4100  | 
apply clarsimp  | 
|
4101  | 
apply (case_tac i)  | 
|
4102  | 
apply simp  | 
|
4103  | 
apply clarsimp  | 
|
4104  | 
done  | 
|
4105  | 
||
| 13142 | 4106  | 
lemma set_replicate_Suc: "set (replicate (Suc n) x) = {x}"
 | 
| 13145 | 4107  | 
by (induct n) auto  | 
| 13114 | 4108  | 
|
| 13142 | 4109  | 
lemma set_replicate [simp]: "n \<noteq> 0 ==> set (replicate n x) = {x}"
 | 
| 13145 | 4110  | 
by (fast dest!: not0_implies_Suc intro!: set_replicate_Suc)  | 
| 13114 | 4111  | 
|
| 13142 | 4112  | 
lemma set_replicate_conv_if: "set (replicate n x) = (if n = 0 then {} else {x})"
 | 
| 13145 | 4113  | 
by auto  | 
| 13114 | 4114  | 
|
| 67091 | 4115  | 
lemma in_set_replicate[simp]: "(x \<in> set (replicate n y)) = (x = y \<and> n \<noteq> 0)"  | 
| 37456 | 4116  | 
by (simp add: set_replicate_conv_if)  | 
4117  | 
||
| 37454 | 4118  | 
lemma Ball_set_replicate[simp]:  | 
| 67091 | 4119  | 
"(\<forall>x \<in> set(replicate n a). P x) = (P a \<or> n=0)"  | 
| 37454 | 4120  | 
by(simp add: set_replicate_conv_if)  | 
4121  | 
||
4122  | 
lemma Bex_set_replicate[simp]:  | 
|
| 67091 | 4123  | 
"(\<exists>x \<in> set(replicate n a). P x) = (P a \<and> n\<noteq>0)"  | 
| 37454 | 4124  | 
by(simp add: set_replicate_conv_if)  | 
| 13114 | 4125  | 
|
| 24796 | 4126  | 
lemma replicate_append_same:  | 
4127  | 
"replicate i x @ [x] = x # replicate i x"  | 
|
4128  | 
by (induct i) simp_all  | 
|
4129  | 
||
4130  | 
lemma map_replicate_trivial:  | 
|
4131  | 
"map (\<lambda>i. x) [0..<i] = replicate i x"  | 
|
| 66853 | 4132  | 
by (induct i) (simp_all add: replicate_append_same)  | 
| 24796 | 4133  | 
|
| 
31363
 
7493b571b37d
Added theorems about distinct & concat, map & replicate and concat & replicate
 
hoelzl 
parents: 
31264 
diff
changeset
 | 
4134  | 
lemma concat_replicate_trivial[simp]:  | 
| 
 
7493b571b37d
Added theorems about distinct & concat, map & replicate and concat & replicate
 
hoelzl 
parents: 
31264 
diff
changeset
 | 
4135  | 
"concat (replicate i []) = []"  | 
| 
 
7493b571b37d
Added theorems about distinct & concat, map & replicate and concat & replicate
 
hoelzl 
parents: 
31264 
diff
changeset
 | 
4136  | 
by (induct i) (auto simp add: map_replicate_const)  | 
| 13114 | 4137  | 
|
| 28642 | 4138  | 
lemma replicate_empty[simp]: "(replicate n x = []) \<longleftrightarrow> n=0"  | 
4139  | 
by (induct n) auto  | 
|
4140  | 
||
4141  | 
lemma empty_replicate[simp]: "([] = replicate n x) \<longleftrightarrow> n=0"  | 
|
4142  | 
by (induct n) auto  | 
|
4143  | 
||
4144  | 
lemma replicate_eq_replicate[simp]:  | 
|
| 67091 | 4145  | 
"(replicate m x = replicate n y) \<longleftrightarrow> (m=n \<and> (m\<noteq>0 \<longrightarrow> x=y))"  | 
| 28642 | 4146  | 
apply(induct m arbitrary: n)  | 
4147  | 
apply simp  | 
|
4148  | 
apply(induct_tac n)  | 
|
4149  | 
apply auto  | 
|
4150  | 
done  | 
|
4151  | 
||
| 
39534
 
c798d4f1b682
generalized lemma insort_remove1 to insort_key_remove1
 
haftmann 
parents: 
39302 
diff
changeset
 | 
4152  | 
lemma replicate_length_filter:  | 
| 
 
c798d4f1b682
generalized lemma insort_remove1 to insort_key_remove1
 
haftmann 
parents: 
39302 
diff
changeset
 | 
4153  | 
"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
 | 
4154  | 
by (induct xs) auto  | 
| 
 
c798d4f1b682
generalized lemma insort_remove1 to insort_key_remove1
 
haftmann 
parents: 
39302 
diff
changeset
 | 
4155  | 
|
| 
42714
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4156  | 
lemma comm_append_are_replicate:  | 
| 66853 | 4157  | 
"\<lbrakk> xs \<noteq> []; ys \<noteq> []; xs @ ys = ys @ xs \<rbrakk>  | 
4158  | 
\<Longrightarrow> \<exists>m n zs. concat (replicate m zs) = xs \<and> concat (replicate n zs) = ys"  | 
|
4159  | 
proof (induction "length (xs @ ys)" arbitrary: xs ys rule: less_induct)  | 
|
| 
42714
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4160  | 
case less  | 
| 
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4161  | 
|
| 63040 | 4162  | 
define xs' ys' where "xs' = (if (length xs \<le> length ys) then xs else ys)"  | 
4163  | 
and "ys' = (if (length xs \<le> length ys) then ys else xs)"  | 
|
| 
42714
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4164  | 
then have  | 
| 
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4165  | 
prems': "length xs' \<le> length ys'"  | 
| 
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4166  | 
"xs' @ ys' = ys' @ xs'"  | 
| 
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4167  | 
and "xs' \<noteq> []"  | 
| 
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4168  | 
and len: "length (xs @ ys) = length (xs' @ ys')"  | 
| 
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4169  | 
using less by (auto intro: less.hyps)  | 
| 
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4170  | 
|
| 
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4171  | 
from prems'  | 
| 
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4172  | 
obtain ws where "ys' = xs' @ ws"  | 
| 
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4173  | 
by (auto simp: append_eq_append_conv2)  | 
| 
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4174  | 
|
| 
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4175  | 
have "\<exists>m n zs. concat (replicate m zs) = xs' \<and> concat (replicate n zs) = ys'"  | 
| 
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4176  | 
proof (cases "ws = []")  | 
| 
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4177  | 
case True  | 
| 
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4178  | 
then have "concat (replicate 1 xs') = xs'"  | 
| 
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4179  | 
and "concat (replicate 1 xs') = ys'"  | 
| 60758 | 4180  | 
using \<open>ys' = xs' @ ws\<close> by auto  | 
| 
42714
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4181  | 
then show ?thesis by blast  | 
| 
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4182  | 
next  | 
| 
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4183  | 
case False  | 
| 60758 | 4184  | 
from \<open>ys' = xs' @ ws\<close> and \<open>xs' @ ys' = ys' @ xs'\<close>  | 
| 
42714
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4185  | 
have "xs' @ ws = ws @ xs'" by simp  | 
| 
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4186  | 
then have "\<exists>m n zs. concat (replicate m zs) = xs' \<and> concat (replicate n zs) = ws"  | 
| 60758 | 4187  | 
using False and \<open>xs' \<noteq> []\<close> and \<open>ys' = xs' @ ws\<close> and len  | 
| 
42714
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4188  | 
by (intro less.hyps) auto  | 
| 
53374
 
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
 
wenzelm 
parents: 
53017 
diff
changeset
 | 
4189  | 
then obtain m n zs where *: "concat (replicate m zs) = xs'"  | 
| 
42714
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4190  | 
and "concat (replicate n zs) = ws" by blast  | 
| 
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4191  | 
then have "concat (replicate (m + n) zs) = ys'"  | 
| 60758 | 4192  | 
using \<open>ys' = xs' @ ws\<close>  | 
| 
42714
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4193  | 
by (simp add: replicate_add)  | 
| 
53374
 
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
 
wenzelm 
parents: 
53017 
diff
changeset
 | 
4194  | 
with * show ?thesis by blast  | 
| 
42714
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4195  | 
qed  | 
| 
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4196  | 
then show ?case  | 
| 56085 | 4197  | 
using xs'_def ys'_def by meson  | 
| 
42714
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4198  | 
qed  | 
| 
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4199  | 
|
| 
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4200  | 
lemma comm_append_is_replicate:  | 
| 
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4201  | 
fixes xs ys :: "'a list"  | 
| 
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4202  | 
assumes "xs \<noteq> []" "ys \<noteq> []"  | 
| 
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4203  | 
assumes "xs @ ys = ys @ xs"  | 
| 
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4204  | 
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
 | 
4205  | 
proof -  | 
| 
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4206  | 
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
 | 
4207  | 
and "concat (replicate n zs) = ys"  | 
| 56085 | 4208  | 
using comm_append_are_replicate[of xs ys, OF assms] by blast  | 
| 
42714
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4209  | 
then have "m + n > 1" and "concat (replicate (m+n) zs) = xs @ ys"  | 
| 60758 | 4210  | 
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
 | 
4211  | 
by (auto simp: replicate_add)  | 
| 
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4212  | 
then show ?thesis by blast  | 
| 
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4213  | 
qed  | 
| 
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4214  | 
|
| 52380 | 4215  | 
lemma Cons_replicate_eq:  | 
4216  | 
"x # xs = replicate n y \<longleftrightarrow> x = y \<and> n > 0 \<and> xs = replicate (n - 1) x"  | 
|
| 66853 | 4217  | 
by (induct n) auto  | 
| 52380 | 4218  | 
|
4219  | 
lemma replicate_length_same:  | 
|
4220  | 
"(\<forall>y\<in>set xs. y = x) \<Longrightarrow> replicate (length xs) x = xs"  | 
|
| 66853 | 4221  | 
by (induct xs) simp_all  | 
| 52380 | 4222  | 
|
4223  | 
lemma foldr_replicate [simp]:  | 
|
4224  | 
"foldr f (replicate n x) = f x ^^ n"  | 
|
| 66853 | 4225  | 
by (induct n) (simp_all)  | 
| 52380 | 4226  | 
|
4227  | 
lemma fold_replicate [simp]:  | 
|
4228  | 
"fold f (replicate n x) = f x ^^ n"  | 
|
| 66853 | 4229  | 
by (subst foldr_fold [symmetric]) simp_all  | 
| 52380 | 4230  | 
|
| 28642 | 4231  | 
|
| 60758 | 4232  | 
subsubsection \<open>@{const enumerate}\<close>
 | 
| 51173 | 4233  | 
|
4234  | 
lemma enumerate_simps [simp, code]:  | 
|
4235  | 
"enumerate n [] = []"  | 
|
4236  | 
"enumerate n (x # xs) = (n, x) # enumerate (Suc n) xs"  | 
|
| 66853 | 4237  | 
apply (auto simp add: enumerate_eq_zip not_le)  | 
4238  | 
apply (cases "n < n + length xs")  | 
|
4239  | 
apply (auto simp add: upt_conv_Cons)  | 
|
4240  | 
done  | 
|
| 51173 | 4241  | 
|
4242  | 
lemma length_enumerate [simp]:  | 
|
4243  | 
"length (enumerate n xs) = length xs"  | 
|
| 66853 | 4244  | 
by (simp add: enumerate_eq_zip)  | 
| 51173 | 4245  | 
|
4246  | 
lemma map_fst_enumerate [simp]:  | 
|
4247  | 
"map fst (enumerate n xs) = [n..<n + length xs]"  | 
|
| 66853 | 4248  | 
by (simp add: enumerate_eq_zip)  | 
| 51173 | 4249  | 
|
4250  | 
lemma map_snd_enumerate [simp]:  | 
|
4251  | 
"map snd (enumerate n xs) = xs"  | 
|
| 66853 | 4252  | 
by (simp add: enumerate_eq_zip)  | 
| 64963 | 4253  | 
|
| 51173 | 4254  | 
lemma in_set_enumerate_eq:  | 
4255  | 
"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"  | 
|
4256  | 
proof -  | 
|
4257  | 
  { fix m
 | 
|
4258  | 
assume "n \<le> m"  | 
|
4259  | 
moreover assume "m < length xs + n"  | 
|
4260  | 
ultimately have "[n..<n + length xs] ! (m - n) = m \<and>  | 
|
4261  | 
xs ! (m - n) = xs ! (m - n) \<and> m - n < length xs" by auto  | 
|
4262  | 
then have "\<exists>q. [n..<n + length xs] ! q = m \<and>  | 
|
4263  | 
xs ! q = xs ! (m - n) \<and> q < length xs" ..  | 
|
4264  | 
} then show ?thesis by (cases p) (auto simp add: enumerate_eq_zip in_set_zip)  | 
|
4265  | 
qed  | 
|
4266  | 
||
| 66853 | 4267  | 
lemma nth_enumerate_eq: "m < length xs \<Longrightarrow> enumerate n xs ! m = (n + m, xs ! m)"  | 
4268  | 
by (simp add: enumerate_eq_zip)  | 
|
| 51173 | 4269  | 
|
4270  | 
lemma enumerate_replicate_eq:  | 
|
4271  | 
"enumerate n (replicate m a) = map (\<lambda>q. (q, a)) [n..<n + m]"  | 
|
| 66853 | 4272  | 
by (rule pair_list_eqI)  | 
4273  | 
(simp_all add: enumerate_eq_zip comp_def map_replicate_const)  | 
|
| 51173 | 4274  | 
|
4275  | 
lemma enumerate_Suc_eq:  | 
|
4276  | 
"enumerate (Suc n) xs = map (apfst Suc) (enumerate n xs)"  | 
|
| 66853 | 4277  | 
by (rule pair_list_eqI)  | 
4278  | 
(simp_all add: not_le, simp del: map_map add: map_Suc_upt map_map [symmetric])  | 
|
| 51173 | 4279  | 
|
| 52379 | 4280  | 
lemma distinct_enumerate [simp]:  | 
4281  | 
"distinct (enumerate n xs)"  | 
|
| 66853 | 4282  | 
by (simp add: enumerate_eq_zip distinct_zipI1)  | 
| 52379 | 4283  | 
|
| 58437 | 4284  | 
lemma enumerate_append_eq:  | 
4285  | 
"enumerate n (xs @ ys) = enumerate n xs @ enumerate (n + length xs) ys"  | 
|
| 66853 | 4286  | 
unfolding enumerate_eq_zip  | 
4287  | 
apply auto  | 
|
4288  | 
apply (subst zip_append [symmetric]) apply simp  | 
|
4289  | 
apply (subst upt_add_eq_append [symmetric])  | 
|
4290  | 
apply (simp_all add: ac_simps)  | 
|
4291  | 
done  | 
|
| 58437 | 4292  | 
|
4293  | 
lemma enumerate_map_upt:  | 
|
4294  | 
"enumerate n (map f [n..<m]) = map (\<lambda>k. (k, f k)) [n..<m]"  | 
|
| 66853 | 4295  | 
by (cases "n \<le> m") (simp_all add: zip_map2 zip_same_conv_map enumerate_eq_zip)  | 
| 64963 | 4296  | 
|
| 51173 | 4297  | 
|
| 60758 | 4298  | 
subsubsection \<open>@{const rotate1} and @{const rotate}\<close>
 | 
| 15302 | 4299  | 
|
4300  | 
lemma rotate0[simp]: "rotate 0 = id"  | 
|
4301  | 
by(simp add:rotate_def)  | 
|
4302  | 
||
4303  | 
lemma rotate_Suc[simp]: "rotate (Suc n) xs = rotate1(rotate n xs)"  | 
|
4304  | 
by(simp add:rotate_def)  | 
|
4305  | 
||
4306  | 
lemma rotate_add:  | 
|
| 67091 | 4307  | 
"rotate (m+n) = rotate m \<circ> rotate n"  | 
| 15302 | 4308  | 
by(simp add:rotate_def funpow_add)  | 
4309  | 
||
4310  | 
lemma rotate_rotate: "rotate m (rotate n xs) = rotate (m+n) xs"  | 
|
4311  | 
by(simp add:rotate_add)  | 
|
4312  | 
||
| 18049 | 4313  | 
lemma rotate1_rotate_swap: "rotate1 (rotate n xs) = rotate n (rotate1 xs)"  | 
4314  | 
by(simp add:rotate_def funpow_swap1)  | 
|
4315  | 
||
| 15302 | 4316  | 
lemma rotate1_length01[simp]: "length xs <= 1 \<Longrightarrow> rotate1 xs = xs"  | 
4317  | 
by(cases xs) simp_all  | 
|
4318  | 
||
4319  | 
lemma rotate_length01[simp]: "length xs <= 1 \<Longrightarrow> rotate n xs = xs"  | 
|
4320  | 
apply(induct n)  | 
|
4321  | 
apply simp  | 
|
4322  | 
apply (simp add:rotate_def)  | 
|
| 13145 | 4323  | 
done  | 
| 13114 | 4324  | 
|
| 15302 | 4325  | 
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
 | 
4326  | 
by (cases xs) simp_all  | 
| 15302 | 4327  | 
|
4328  | 
lemma rotate_drop_take:  | 
|
4329  | 
"rotate n xs = drop (n mod length xs) xs @ take (n mod length xs) xs"  | 
|
4330  | 
apply(induct n)  | 
|
4331  | 
apply simp  | 
|
4332  | 
apply(simp add:rotate_def)  | 
|
4333  | 
apply(cases "xs = []")  | 
|
4334  | 
apply (simp)  | 
|
4335  | 
apply(case_tac "n mod length xs = 0")  | 
|
4336  | 
apply(simp add:mod_Suc)  | 
|
4337  | 
apply(simp add: rotate1_hd_tl drop_Suc take_Suc)  | 
|
4338  | 
apply(simp add:mod_Suc rotate1_hd_tl drop_Suc[symmetric] drop_tl[symmetric]  | 
|
4339  | 
take_hd_drop linorder_not_le)  | 
|
| 13145 | 4340  | 
done  | 
| 13114 | 4341  | 
|
| 15302 | 4342  | 
lemma rotate_conv_mod: "rotate n xs = rotate (n mod length xs) xs"  | 
4343  | 
by(simp add:rotate_drop_take)  | 
|
4344  | 
||
4345  | 
lemma rotate_id[simp]: "n mod length xs = 0 \<Longrightarrow> rotate n xs = xs"  | 
|
4346  | 
by(simp add:rotate_drop_take)  | 
|
4347  | 
||
4348  | 
lemma length_rotate1[simp]: "length(rotate1 xs) = length 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
 | 
4349  | 
by (cases xs) simp_all  | 
| 15302 | 4350  | 
|
| 24526 | 4351  | 
lemma length_rotate[simp]: "length(rotate n xs) = length xs"  | 
4352  | 
by (induct n arbitrary: xs) (simp_all add:rotate_def)  | 
|
| 15302 | 4353  | 
|
4354  | 
lemma distinct1_rotate[simp]: "distinct(rotate1 xs) = distinct 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
 | 
4355  | 
by (cases xs) auto  | 
| 15302 | 4356  | 
|
4357  | 
lemma distinct_rotate[simp]: "distinct(rotate n xs) = distinct xs"  | 
|
4358  | 
by (induct n) (simp_all add:rotate_def)  | 
|
4359  | 
||
4360  | 
lemma rotate_map: "rotate n (map f xs) = map f (rotate n xs)"  | 
|
4361  | 
by(simp add:rotate_drop_take take_map drop_map)  | 
|
4362  | 
||
4363  | 
lemma set_rotate1[simp]: "set(rotate1 xs) = set 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
 | 
4364  | 
by (cases xs) auto  | 
| 15302 | 4365  | 
|
4366  | 
lemma set_rotate[simp]: "set(rotate n xs) = set xs"  | 
|
4367  | 
by (induct n) (simp_all add:rotate_def)  | 
|
4368  | 
||
4369  | 
lemma rotate1_is_Nil_conv[simp]: "(rotate1 xs = []) = (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
 | 
4370  | 
by (cases xs) auto  | 
| 15302 | 4371  | 
|
4372  | 
lemma rotate_is_Nil_conv[simp]: "(rotate n xs = []) = (xs = [])"  | 
|
4373  | 
by (induct n) (simp_all add:rotate_def)  | 
|
| 13114 | 4374  | 
|
| 15439 | 4375  | 
lemma rotate_rev:  | 
4376  | 
"rotate n (rev xs) = rev(rotate (length xs - (n mod length xs)) xs)"  | 
|
4377  | 
apply(simp add:rotate_drop_take rev_drop rev_take)  | 
|
4378  | 
apply(cases "length xs = 0")  | 
|
4379  | 
apply simp  | 
|
4380  | 
apply(cases "n mod length xs = 0")  | 
|
4381  | 
apply simp  | 
|
4382  | 
apply(simp add:rotate_drop_take rev_drop rev_take)  | 
|
4383  | 
done  | 
|
4384  | 
||
| 18423 | 4385  | 
lemma hd_rotate_conv_nth: "xs \<noteq> [] \<Longrightarrow> hd(rotate n xs) = xs!(n mod length xs)"  | 
4386  | 
apply(simp add:rotate_drop_take hd_append hd_drop_conv_nth hd_conv_nth)  | 
|
4387  | 
apply(subgoal_tac "length xs \<noteq> 0")  | 
|
4388  | 
prefer 2 apply simp  | 
|
4389  | 
using mod_less_divisor[of "length xs" n] by arith  | 
|
4390  | 
||
| 13114 | 4391  | 
|
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4392  | 
subsubsection \<open>@{const nths} --- a generalization of @{const nth} to sets\<close>
 | 
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4393  | 
|
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4394  | 
lemma nths_empty [simp]: "nths xs {} = []"
 | 
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4395  | 
by (auto simp add: nths_def)  | 
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4396  | 
|
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4397  | 
lemma nths_nil [simp]: "nths [] A = []"  | 
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4398  | 
by (auto simp add: nths_def)  | 
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4399  | 
|
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4400  | 
lemma length_nths:  | 
| 67613 | 4401  | 
  "length (nths xs I) = card{i. i < length xs \<and> i \<in> I}"
 | 
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4402  | 
by(simp add: nths_def length_filter_conv_card cong:conj_cong)  | 
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4403  | 
|
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4404  | 
lemma nths_shift_lemma_Suc:  | 
| 24526 | 4405  | 
"map fst (filter (%p. P(Suc(snd p))) (zip xs is)) =  | 
4406  | 
map fst (filter (%p. P(snd p)) (zip xs (map Suc is)))"  | 
|
4407  | 
apply(induct xs arbitrary: "is")  | 
|
| 15281 | 4408  | 
apply simp  | 
4409  | 
apply (case_tac "is")  | 
|
4410  | 
apply simp  | 
|
4411  | 
apply simp  | 
|
4412  | 
done  | 
|
4413  | 
||
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4414  | 
lemma nths_shift_lemma:  | 
| 67613 | 4415  | 
"map fst [p<-zip xs [i..<i + length xs] . snd p \<in> A] =  | 
4416  | 
map fst [p<-zip xs [0..<length xs] . snd p + i \<in> A]"  | 
|
| 
57512
 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 
haftmann 
parents: 
57418 
diff
changeset
 | 
4417  | 
by (induct xs rule: rev_induct) (simp_all add: add.commute)  | 
| 13114 | 4418  | 
|
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4419  | 
lemma nths_append:  | 
| 67613 | 4420  | 
  "nths (l @ l') A = nths l A @ nths l' {j. j + length l \<in> A}"
 | 
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4421  | 
apply (unfold nths_def)  | 
| 14208 | 4422  | 
apply (induct l' rule: rev_induct, simp)  | 
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4423  | 
apply (simp add: upt_add_eq_append[of 0] nths_shift_lemma)  | 
| 
57512
 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 
haftmann 
parents: 
57418 
diff
changeset
 | 
4424  | 
apply (simp add: add.commute)  | 
| 13145 | 4425  | 
done  | 
| 13114 | 4426  | 
|
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4427  | 
lemma nths_Cons:  | 
| 67613 | 4428  | 
  "nths (x # l) A = (if 0 \<in> A then [x] else []) @ nths l {j. Suc j \<in> A}"
 | 
| 13145 | 4429  | 
apply (induct l rule: rev_induct)  | 
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4430  | 
apply (simp add: nths_def)  | 
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4431  | 
apply (simp del: append_Cons add: append_Cons[symmetric] nths_append)  | 
| 13145 | 4432  | 
done  | 
| 13114 | 4433  | 
|
| 66853 | 4434  | 
lemma nths_map: "nths (map f xs) I = map f (nths xs I)"  | 
4435  | 
by(induction xs arbitrary: I) (simp_all add: nths_Cons)  | 
|
4436  | 
||
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4437  | 
lemma set_nths: "set(nths xs I) = {xs!i|i. i<size xs \<and> i \<in> I}"
 | 
| 24526 | 4438  | 
apply(induct xs arbitrary: I)  | 
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4439  | 
apply(auto simp: nths_Cons nth_Cons split:nat.split dest!: gr0_implies_Suc)  | 
| 15281 | 4440  | 
done  | 
4441  | 
||
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4442  | 
lemma set_nths_subset: "set(nths xs I) \<subseteq> set xs"  | 
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4443  | 
by(auto simp add:set_nths)  | 
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4444  | 
|
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4445  | 
lemma notin_set_nthsI[simp]: "x \<notin> set xs \<Longrightarrow> x \<notin> set(nths xs I)"  | 
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4446  | 
by(auto simp add:set_nths)  | 
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4447  | 
|
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4448  | 
lemma in_set_nthsD: "x \<in> set(nths xs I) \<Longrightarrow> x \<in> set xs"  | 
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4449  | 
by(auto simp add:set_nths)  | 
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4450  | 
|
| 67613 | 4451  | 
lemma nths_singleton [simp]: "nths [x] A = (if 0 \<in> A then [x] else [])"  | 
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4452  | 
by (simp add: nths_Cons)  | 
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4453  | 
|
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4454  | 
lemma distinct_nthsI[simp]: "distinct xs \<Longrightarrow> distinct (nths xs I)"  | 
| 66656 | 4455  | 
by (induct xs arbitrary: I) (auto simp: nths_Cons)  | 
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4456  | 
|
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4457  | 
lemma nths_upt_eq_take [simp]: "nths l {..<n} = take n l"
 | 
| 66656 | 4458  | 
by (induct l rule: rev_induct)  | 
4459  | 
(simp_all split: nat_diff_split add: nths_append)  | 
|
4460  | 
||
4461  | 
lemma filter_eq_nths: "filter P xs = nths xs {i. i<length xs \<and> P(xs!i)}"
 | 
|
4462  | 
by(induction xs) (auto simp: nths_Cons)  | 
|
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4463  | 
|
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4464  | 
lemma filter_in_nths:  | 
| 66656 | 4465  | 
"distinct xs \<Longrightarrow> filter (%x. x \<in> set (nths xs s)) xs = nths xs s"  | 
| 24526 | 4466  | 
proof (induct xs arbitrary: s)  | 
| 17501 | 4467  | 
case Nil thus ?case by simp  | 
4468  | 
next  | 
|
4469  | 
case (Cons a xs)  | 
|
| 67091 | 4470  | 
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
 | 
4471  | 
with Cons show ?case by(simp add: nths_Cons cong:filter_cong)  | 
| 17501 | 4472  | 
qed  | 
4473  | 
||
| 13114 | 4474  | 
|
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4475  | 
subsubsection \<open>@{const subseqs} and @{const List.n_lists}\<close>
 | 
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4476  | 
|
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4477  | 
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
 | 
4478  | 
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
 | 
4479  | 
|
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4480  | 
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
 | 
4481  | 
proof -  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4482  | 
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
 | 
4483  | 
by (auto simp add: image_def)  | 
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4484  | 
have "set (map set (subseqs xs)) = Pow (set xs)"  | 
| 64963 | 4485  | 
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
 | 
4486  | 
then show ?thesis by simp  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4487  | 
qed  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4488  | 
|
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4489  | 
lemma distinct_set_subseqs:  | 
| 
49948
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4490  | 
assumes "distinct xs"  | 
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4491  | 
shows "distinct (map set (subseqs xs))"  | 
| 
49948
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4492  | 
proof (rule card_distinct)  | 
| 64963 | 4493  | 
have "finite (set xs)" ..  | 
4494  | 
then have "card (Pow (set xs)) = 2 ^ card (set xs)"  | 
|
4495  | 
by (rule card_Pow)  | 
|
4496  | 
with assms distinct_card [of xs] have "card (Pow (set xs)) = 2 ^ length xs"  | 
|
4497  | 
by simp  | 
|
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4498  | 
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
 | 
4499  | 
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
 | 
4500  | 
qed  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4501  | 
|
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4502  | 
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
 | 
4503  | 
by (induct n) simp_all  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4504  | 
|
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4505  | 
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
 | 
4506  | 
by (induct n arbitrary: ys) auto  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4507  | 
|
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4508  | 
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
 | 
4509  | 
proof (rule set_eqI)  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4510  | 
fix ys :: "'a list"  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4511  | 
  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
 | 
4512  | 
proof -  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4513  | 
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
 | 
4514  | 
by (induct n arbitrary: ys) auto  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4515  | 
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
 | 
4516  | 
by (induct n arbitrary: ys) auto  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4517  | 
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
 | 
4518  | 
by (induct ys) auto  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4519  | 
ultimately show ?thesis by auto  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4520  | 
qed  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4521  | 
qed  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4522  | 
|
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4523  | 
lemma subseqs_refl: "xs \<in> set (subseqs xs)"  | 
| 64963 | 4524  | 
by (induct xs) (simp_all add: Let_def)  | 
| 
63561
 
fba08009ff3e
add lemmas contributed by Peter Gammie
 
Andreas Lochbihler 
parents: 
63540 
diff
changeset
 | 
4525  | 
|
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4526  | 
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
 | 
4527  | 
unfolding subseqs_powset by simp  | 
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4528  | 
|
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4529  | 
lemma Cons_in_subseqsD: "y # ys \<in> set (subseqs xs) \<Longrightarrow> ys \<in> set (subseqs xs)"  | 
| 64963 | 4530  | 
by (induct xs) (auto simp: Let_def)  | 
| 
63561
 
fba08009ff3e
add lemmas contributed by Peter Gammie
 
Andreas Lochbihler 
parents: 
63540 
diff
changeset
 | 
4531  | 
|
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4532  | 
lemma subseqs_distinctD: "\<lbrakk> ys \<in> set (subseqs xs); distinct xs \<rbrakk> \<Longrightarrow> distinct ys"  | 
| 64963 | 4533  | 
proof (induct xs arbitrary: ys)  | 
| 
63561
 
fba08009ff3e
add lemmas contributed by Peter Gammie
 
Andreas Lochbihler 
parents: 
63540 
diff
changeset
 | 
4534  | 
case (Cons x xs ys)  | 
| 
 
fba08009ff3e
add lemmas contributed by Peter Gammie
 
Andreas Lochbihler 
parents: 
63540 
diff
changeset
 | 
4535  | 
then show ?case  | 
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4536  | 
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
 | 
4537  | 
qed simp  | 
| 
 
fba08009ff3e
add lemmas contributed by Peter Gammie
 
Andreas Lochbihler 
parents: 
63540 
diff
changeset
 | 
4538  | 
|
| 
49948
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4539  | 
|
| 60758 | 4540  | 
subsubsection \<open>@{const splice}\<close>
 | 
| 19390 | 4541  | 
|
| 
40593
 
1e57b18d27b1
code eqn for slice was missing; redefined splice with fun
 
nipkow 
parents: 
40365 
diff
changeset
 | 
4542  | 
lemma splice_Nil2 [simp, code]: "splice xs [] = xs"  | 
| 19390 | 4543  | 
by (cases xs) simp_all  | 
4544  | 
||
| 
40593
 
1e57b18d27b1
code eqn for slice was missing; redefined splice with fun
 
nipkow 
parents: 
40365 
diff
changeset
 | 
4545  | 
declare splice.simps(1,3)[code]  | 
| 
 
1e57b18d27b1
code eqn for slice was missing; redefined splice with fun
 
nipkow 
parents: 
40365 
diff
changeset
 | 
4546  | 
declare splice.simps(2)[simp del]  | 
| 19390 | 4547  | 
|
| 24526 | 4548  | 
lemma length_splice[simp]: "length(splice xs ys) = length xs + length ys"  | 
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4549  | 
by (induct xs ys rule: splice.induct) auto  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4550  | 
|
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4551  | 
|
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4552  | 
subsubsection \<open>@{const shuffle}\<close>
 | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4553  | 
|
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4554  | 
lemma Nil_in_shuffle[simp]: "[] \<in> shuffle xs ys \<longleftrightarrow> xs = [] \<and> ys = []"  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4555  | 
by (induct xs ys rule: shuffle.induct) auto  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4556  | 
|
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4557  | 
lemma shuffleE:  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4558  | 
"zs \<in> shuffle xs ys \<Longrightarrow>  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4559  | 
(zs = xs \<Longrightarrow> ys = [] \<Longrightarrow> P) \<Longrightarrow>  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4560  | 
(zs = ys \<Longrightarrow> xs = [] \<Longrightarrow> P) \<Longrightarrow>  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4561  | 
(\<And>x xs' z zs'. xs = x # xs' \<Longrightarrow> zs = z # zs' \<Longrightarrow> x = z \<Longrightarrow> zs' \<in> shuffle xs' ys \<Longrightarrow> P) \<Longrightarrow>  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4562  | 
(\<And>y ys' z zs'. ys = y # ys' \<Longrightarrow> zs = z # zs' \<Longrightarrow> y = z \<Longrightarrow> zs' \<in> shuffle xs ys' \<Longrightarrow> P) \<Longrightarrow> P"  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4563  | 
by (induct xs ys rule: shuffle.induct) auto  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4564  | 
|
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4565  | 
lemma Cons_in_shuffle_iff:  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4566  | 
"z # zs \<in> shuffle xs ys \<longleftrightarrow>  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4567  | 
(xs \<noteq> [] \<and> hd xs = z \<and> zs \<in> shuffle (tl xs) ys \<or>  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4568  | 
ys \<noteq> [] \<and> hd ys = z \<and> zs \<in> shuffle xs (tl ys))"  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4569  | 
by (induct xs ys rule: shuffle.induct) auto  | 
| 66892 | 4570  | 
|
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4571  | 
lemma splice_in_shuffle [simp, intro]: "splice xs ys \<in> shuffle xs ys"  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4572  | 
by (induction xs ys rule: splice.induct) (simp_all add: Cons_in_shuffle_iff)  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4573  | 
|
| 66892 | 4574  | 
lemma Nil_in_shuffleI: "xs = [] \<Longrightarrow> ys = [] \<Longrightarrow> [] \<in> shuffle xs ys"  | 
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4575  | 
by simp  | 
| 66892 | 4576  | 
|
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4577  | 
lemma Cons_in_shuffle_leftI: "zs \<in> shuffle xs ys \<Longrightarrow> z # zs \<in> shuffle (z # xs) ys"  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4578  | 
by (cases ys) auto  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4579  | 
|
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4580  | 
lemma Cons_in_shuffle_rightI: "zs \<in> shuffle xs ys \<Longrightarrow> z # zs \<in> shuffle xs (z # ys)"  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4581  | 
by (cases xs) auto  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4582  | 
|
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4583  | 
lemma finite_shuffle [simp, intro]: "finite (shuffle xs ys)"  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4584  | 
by (induction xs ys rule: shuffle.induct) simp_all  | 
| 66892 | 4585  | 
|
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4586  | 
lemma length_shuffle: "zs \<in> shuffle xs ys \<Longrightarrow> length zs = length xs + length ys"  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4587  | 
by (induction xs ys arbitrary: zs rule: shuffle.induct) auto  | 
| 66892 | 4588  | 
|
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4589  | 
lemma set_shuffle: "zs \<in> shuffle xs ys \<Longrightarrow> set zs = set xs \<union> set ys"  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4590  | 
by (induction xs ys arbitrary: zs rule: shuffle.induct) auto  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4591  | 
|
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4592  | 
lemma distinct_disjoint_shuffle:  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4593  | 
  assumes "distinct xs" "distinct ys" "set xs \<inter> set ys = {}" "zs \<in> shuffle xs ys"
 | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4594  | 
shows "distinct zs"  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4595  | 
using assms  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4596  | 
proof (induction xs ys arbitrary: zs rule: shuffle.induct)  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4597  | 
case (3 x xs y ys)  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4598  | 
show ?case  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4599  | 
proof (cases zs)  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4600  | 
case (Cons z zs')  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4601  | 
with "3.prems" and "3.IH"[of zs'] show ?thesis by (force dest: set_shuffle)  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4602  | 
qed simp_all  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4603  | 
qed simp_all  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4604  | 
|
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4605  | 
lemma shuffle_commutes: "shuffle xs ys = shuffle ys xs"  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4606  | 
by (induction xs ys rule: shuffle.induct) (simp_all add: Un_commute)  | 
| 66892 | 4607  | 
|
| 67399 | 4608  | 
lemma Cons_shuffle_subset1: "(#) x ` shuffle xs ys \<subseteq> shuffle (x # xs) ys"  | 
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4609  | 
by (cases ys) auto  | 
| 66892 | 4610  | 
|
| 67399 | 4611  | 
lemma Cons_shuffle_subset2: "(#) y ` shuffle xs ys \<subseteq> shuffle xs (y # ys)"  | 
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4612  | 
by (cases xs) auto  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4613  | 
|
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4614  | 
lemma filter_shuffle:  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4615  | 
"filter P ` shuffle xs ys = shuffle (filter P xs) (filter P ys)"  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4616  | 
proof -  | 
| 67399 | 4617  | 
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
 | 
4618  | 
by (auto simp: image_image)  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4619  | 
show ?thesis  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4620  | 
by (induction xs ys rule: shuffle.induct)  | 
| 66892 | 4621  | 
(simp_all split: if_splits add: image_Un * Un_absorb1 Un_absorb2  | 
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4622  | 
Cons_shuffle_subset1 Cons_shuffle_subset2)  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4623  | 
qed  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4624  | 
|
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4625  | 
lemma filter_shuffle_disjoint1:  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4626  | 
  assumes "set xs \<inter> set ys = {}" "zs \<in> shuffle xs ys"
 | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4627  | 
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
 | 
4628  | 
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
 | 
4629  | 
using assms  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4630  | 
proof -  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4631  | 
from assms have "filter ?P zs \<in> filter ?P ` shuffle xs ys" by blast  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4632  | 
also have "filter ?P ` shuffle xs ys = shuffle (filter ?P xs) (filter ?P ys)"  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4633  | 
by (rule filter_shuffle)  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4634  | 
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
 | 
4635  | 
also have "filter ?P ys = []" by (rule filter_False) (insert assms(1), auto)  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4636  | 
  also have "shuffle xs [] = {xs}" by simp
 | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4637  | 
finally show "filter ?P zs = xs" by simp  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4638  | 
next  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4639  | 
from assms have "filter ?Q zs \<in> filter ?Q ` shuffle xs ys" by blast  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4640  | 
also have "filter ?Q ` shuffle xs ys = shuffle (filter ?Q xs) (filter ?Q ys)"  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4641  | 
by (rule filter_shuffle)  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4642  | 
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
 | 
4643  | 
also have "filter ?Q xs = []" by (rule filter_False) (insert assms(1), auto)  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4644  | 
  also have "shuffle [] ys = {ys}" by simp
 | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4645  | 
finally show "filter ?Q zs = ys" by simp  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4646  | 
qed  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4647  | 
|
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4648  | 
lemma filter_shuffle_disjoint2:  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4649  | 
  assumes "set xs \<inter> set ys = {}" "zs \<in> shuffle xs ys"
 | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4650  | 
shows "filter (\<lambda>x. x \<in> set ys) zs = ys" "filter (\<lambda>x. x \<notin> set ys) zs = xs"  | 
| 66892 | 4651  | 
using filter_shuffle_disjoint1[of ys xs zs] assms  | 
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4652  | 
by (simp_all add: shuffle_commutes Int_commute)  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4653  | 
|
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4654  | 
lemma partition_in_shuffle:  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4655  | 
"xs \<in> shuffle (filter P xs) (filter (\<lambda>x. \<not>P x) xs)"  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4656  | 
proof (induction xs)  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4657  | 
case (Cons x xs)  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4658  | 
show ?case  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4659  | 
proof (cases "P x")  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4660  | 
case True  | 
| 67399 | 4661  | 
hence "x # xs \<in> (#) x ` shuffle (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
 | 
4662  | 
by (intro imageI Cons.IH)  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4663  | 
also have "\<dots> \<subseteq> shuffle (filter P (x # xs)) (filter (\<lambda>x. \<not>P x) (x # xs))"  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4664  | 
by (simp add: True Cons_shuffle_subset1)  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4665  | 
finally show ?thesis .  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4666  | 
next  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4667  | 
case False  | 
| 67399 | 4668  | 
hence "x # xs \<in> (#) x ` shuffle (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
 | 
4669  | 
by (intro imageI Cons.IH)  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4670  | 
also have "\<dots> \<subseteq> shuffle (filter P (x # xs)) (filter (\<lambda>x. \<not>P x) (x # xs))"  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4671  | 
by (simp add: False Cons_shuffle_subset2)  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4672  | 
finally show ?thesis .  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4673  | 
qed  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4674  | 
qed auto  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4675  | 
|
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4676  | 
lemma inv_image_partition:  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4677  | 
assumes "\<And>x. x \<in> set xs \<Longrightarrow> P x" "\<And>y. y \<in> set ys \<Longrightarrow> \<not>P y"  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4678  | 
  shows   "partition P -` {(xs, ys)} = shuffle xs ys"
 | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4679  | 
proof (intro equalityI subsetI)  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4680  | 
fix zs assume zs: "zs \<in> shuffle xs ys"  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4681  | 
hence [simp]: "set zs = set xs \<union> set ys" by (rule set_shuffle)  | 
| 66892 | 4682  | 
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
 | 
4683  | 
"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
 | 
4684  | 
by (intro filter_cong refl; force)+  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4685  | 
  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
 | 
4686  | 
  ultimately show "zs \<in> partition P -` {(xs, ys)}" using zs
 | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4687  | 
by (simp add: o_def filter_shuffle_disjoint1 filter_shuffle_disjoint2)  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4688  | 
next  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4689  | 
  fix zs assume "zs \<in> partition P -` {(xs, ys)}"
 | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4690  | 
thus "zs \<in> shuffle xs ys" using partition_in_shuffle[of zs] by (auto simp: o_def)  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4691  | 
qed  | 
| 22793 | 4692  | 
|
| 35115 | 4693  | 
|
| 60758 | 4694  | 
subsubsection \<open>Transpose\<close>  | 
| 34933 | 4695  | 
|
4696  | 
function transpose where  | 
|
4697  | 
"transpose [] = []" |  | 
|
4698  | 
"transpose ([] # xss) = transpose xss" |  | 
|
4699  | 
"transpose ((x#xs) # xss) =  | 
|
4700  | 
(x # [h. (h#t) \<leftarrow> xss]) # transpose (xs # [t. (h#t) \<leftarrow> xss])"  | 
|
4701  | 
by pat_completeness auto  | 
|
4702  | 
||
4703  | 
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
 | 
4704  | 
"concat (map (case_list [] (\<lambda>h t. [h])) xss) =  | 
| 34933 | 4705  | 
map (\<lambda>xs. hd xs) [ys\<leftarrow>xss . ys \<noteq> []]"  | 
4706  | 
by (induct xss) (auto split: list.split)  | 
|
4707  | 
||
4708  | 
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
 | 
4709  | 
"concat (map (case_list [] (\<lambda>h t. [t])) xss) =  | 
| 34933 | 4710  | 
map (\<lambda>xs. tl xs) [ys\<leftarrow>xss . ys \<noteq> []]"  | 
4711  | 
by (induct xss) (auto split: list.split)  | 
|
4712  | 
||
4713  | 
lemma transpose_aux_max:  | 
|
4714  | 
"max (Suc (length xs)) (foldr (\<lambda>xs. max (length xs)) xss 0) =  | 
|
4715  | 
Suc (max (length xs) (foldr (\<lambda>x. max (length x - Suc 0)) [ys\<leftarrow>xss . ys\<noteq>[]] 0))"  | 
|
4716  | 
(is "max _ ?foldB = Suc (max _ ?foldA)")  | 
|
4717  | 
proof (cases "[ys\<leftarrow>xss . ys\<noteq>[]] = []")  | 
|
4718  | 
case True  | 
|
4719  | 
hence "foldr (\<lambda>xs. max (length xs)) xss 0 = 0"  | 
|
4720  | 
proof (induct xss)  | 
|
4721  | 
case (Cons x xs)  | 
|
| 
53374
 
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
 
wenzelm 
parents: 
53017 
diff
changeset
 | 
4722  | 
then have "x = []" by (cases x) auto  | 
| 
 
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
 
wenzelm 
parents: 
53017 
diff
changeset
 | 
4723  | 
with Cons show ?case by auto  | 
| 34933 | 4724  | 
qed simp  | 
4725  | 
thus ?thesis using True by simp  | 
|
4726  | 
next  | 
|
4727  | 
case False  | 
|
4728  | 
||
4729  | 
have foldA: "?foldA = foldr (\<lambda>x. max (length x)) [ys\<leftarrow>xss . ys \<noteq> []] 0 - 1"  | 
|
4730  | 
by (induct xss) auto  | 
|
4731  | 
have foldB: "?foldB = foldr (\<lambda>x. max (length x)) [ys\<leftarrow>xss . ys \<noteq> []] 0"  | 
|
4732  | 
by (induct xss) auto  | 
|
4733  | 
||
4734  | 
have "0 < ?foldB"  | 
|
4735  | 
proof -  | 
|
4736  | 
from False  | 
|
4737  | 
obtain z zs where zs: "[ys\<leftarrow>xss . ys \<noteq> []] = z#zs" by (auto simp: neq_Nil_conv)  | 
|
4738  | 
hence "z \<in> set ([ys\<leftarrow>xss . ys \<noteq> []])" by auto  | 
|
4739  | 
hence "z \<noteq> []" by auto  | 
|
4740  | 
thus ?thesis  | 
|
4741  | 
unfolding foldB zs  | 
|
4742  | 
by (auto simp: max_def intro: less_le_trans)  | 
|
4743  | 
qed  | 
|
4744  | 
thus ?thesis  | 
|
4745  | 
unfolding foldA foldB max_Suc_Suc[symmetric]  | 
|
4746  | 
by simp  | 
|
4747  | 
qed  | 
|
4748  | 
||
4749  | 
termination transpose  | 
|
4750  | 
by (relation "measure (\<lambda>xs. foldr (\<lambda>xs. max (length xs)) xs 0 + length xs)")  | 
|
4751  | 
(auto simp: transpose_aux_filter_tail foldr_map comp_def transpose_aux_max less_Suc_eq_le)  | 
|
4752  | 
||
4753  | 
lemma transpose_empty: "(transpose xs = []) \<longleftrightarrow> (\<forall>x \<in> set xs. x = [])"  | 
|
4754  | 
by (induct rule: transpose.induct) simp_all  | 
|
4755  | 
||
4756  | 
lemma length_transpose:  | 
|
4757  | 
fixes xs :: "'a list list"  | 
|
4758  | 
shows "length (transpose xs) = foldr (\<lambda>xs. max (length xs)) xs 0"  | 
|
4759  | 
by (induct rule: transpose.induct)  | 
|
4760  | 
(auto simp: transpose_aux_filter_tail foldr_map comp_def transpose_aux_max  | 
|
4761  | 
max_Suc_Suc[symmetric] simp del: max_Suc_Suc)  | 
|
4762  | 
||
4763  | 
lemma nth_transpose:  | 
|
4764  | 
fixes xs :: "'a list list"  | 
|
4765  | 
assumes "i < length (transpose xs)"  | 
|
4766  | 
shows "transpose xs ! i = map (\<lambda>xs. xs ! i) [ys \<leftarrow> xs. i < length ys]"  | 
|
4767  | 
using assms proof (induct arbitrary: i rule: transpose.induct)  | 
|
4768  | 
case (3 x xs xss)  | 
|
| 63040 | 4769  | 
define XS where "XS = (x # xs) # xss"  | 
| 34933 | 4770  | 
hence [simp]: "XS \<noteq> []" by auto  | 
4771  | 
thus ?case  | 
|
4772  | 
proof (cases i)  | 
|
4773  | 
case 0  | 
|
4774  | 
thus ?thesis by (simp add: transpose_aux_filter_head hd_conv_nth)  | 
|
4775  | 
next  | 
|
4776  | 
case (Suc j)  | 
|
4777  | 
have *: "\<And>xss. xs # map tl xss = map tl ((x#xs)#xss)" by simp  | 
|
4778  | 
have **: "\<And>xss. (x#xs) # filter (\<lambda>ys. ys \<noteq> []) xss = filter (\<lambda>ys. ys \<noteq> []) ((x#xs)#xss)" by simp  | 
|
4779  | 
    { fix x have "Suc j < length x \<longleftrightarrow> x \<noteq> [] \<and> j < length x - Suc 0"
 | 
|
4780  | 
by (cases x) simp_all  | 
|
4781  | 
} note *** = this  | 
|
4782  | 
||
| 
55404
 
5cb95b79a51f
transformed 'option' and 'list' into new-style datatypes (but register them as old-style as well)
 
blanchet 
parents: 
55148 
diff
changeset
 | 
4783  | 
have j_less: "j < length (transpose (xs # concat (map (case_list [] (\<lambda>h t. [t])) xss)))"  | 
| 34933 | 4784  | 
using "3.prems" by (simp add: transpose_aux_filter_tail length_transpose Suc)  | 
4785  | 
||
4786  | 
show ?thesis  | 
|
| 60758 | 4787  | 
unfolding transpose.simps \<open>i = Suc j\<close> nth_Cons_Suc "3.hyps"[OF j_less]  | 
| 34933 | 4788  | 
apply (auto simp: transpose_aux_filter_tail filter_map comp_def length_transpose * ** *** XS_def[symmetric])  | 
| 
55404
 
5cb95b79a51f
transformed 'option' and 'list' into new-style datatypes (but register them as old-style as well)
 
blanchet 
parents: 
55148 
diff
changeset
 | 
4789  | 
apply (rule list.exhaust)  | 
| 34933 | 4790  | 
by auto  | 
4791  | 
qed  | 
|
4792  | 
qed simp_all  | 
|
4793  | 
||
4794  | 
lemma transpose_map_map:  | 
|
4795  | 
"transpose (map (map f) xs) = map (map f) (transpose xs)"  | 
|
4796  | 
proof (rule nth_equalityI, safe)  | 
|
4797  | 
have [simp]: "length (transpose (map (map f) xs)) = length (transpose xs)"  | 
|
4798  | 
by (simp add: length_transpose foldr_map comp_def)  | 
|
4799  | 
show "length (transpose (map (map f) xs)) = length (map (map f) (transpose xs))" by simp  | 
|
4800  | 
||
4801  | 
fix i assume "i < length (transpose (map (map f) xs))"  | 
|
4802  | 
thus "transpose (map (map f) xs) ! i = map (map f) (transpose xs) ! i"  | 
|
4803  | 
by (simp add: nth_transpose filter_map comp_def)  | 
|
4804  | 
qed  | 
|
| 24616 | 4805  | 
|
| 67170 | 4806  | 
subsubsection \<open>@{const min} and @{const arg_min}\<close>
 | 
4807  | 
||
4808  | 
lemma min_list_Min: "xs \<noteq> [] \<Longrightarrow> min_list xs = Min (set xs)"  | 
|
4809  | 
by (induction xs rule: induct_list012)(auto)  | 
|
4810  | 
||
4811  | 
lemma f_arg_min_list_f: "xs \<noteq> [] \<Longrightarrow> f (arg_min_list f xs) = Min (f ` (set xs))"  | 
|
4812  | 
by(induction f xs rule: arg_min_list.induct) (auto simp: min_def intro!: antisym)  | 
|
4813  | 
||
| 67171 | 4814  | 
lemma arg_min_list_in: "xs \<noteq> [] \<Longrightarrow> arg_min_list f xs \<in> set xs"  | 
4815  | 
by(induction xs rule: induct_list012) (auto simp: Let_def)  | 
|
4816  | 
||
| 35115 | 4817  | 
|
| 60758 | 4818  | 
subsubsection \<open>(In)finiteness\<close>  | 
| 28642 | 4819  | 
|
4820  | 
lemma finite_maxlen:  | 
|
| 67091 | 4821  | 
"finite (M::'a list set) \<Longrightarrow> \<exists>n. \<forall>s\<in>M. size s < n"  | 
| 28642 | 4822  | 
proof (induct rule: finite.induct)  | 
4823  | 
case emptyI show ?case by simp  | 
|
4824  | 
next  | 
|
4825  | 
case (insertI M xs)  | 
|
4826  | 
then obtain n where "\<forall>s\<in>M. length s < n" by blast  | 
|
| 67613 | 4827  | 
hence "\<forall>s\<in>insert xs M. size s < max n (size xs) + 1" by auto  | 
| 28642 | 4828  | 
thus ?case ..  | 
4829  | 
qed  | 
|
4830  | 
||
| 45714 | 4831  | 
lemma lists_length_Suc_eq:  | 
4832  | 
  "{xs. set xs \<subseteq> A \<and> length xs = Suc n} =
 | 
|
4833  | 
    (\<lambda>(xs, n). n#xs) ` ({xs. set xs \<subseteq> A \<and> length xs = n} \<times> A)"
 | 
|
4834  | 
by (auto simp: length_Suc_conv)  | 
|
4835  | 
||
4836  | 
lemma  | 
|
4837  | 
assumes "finite A"  | 
|
4838  | 
  shows finite_lists_length_eq: "finite {xs. set xs \<subseteq> A \<and> length xs = n}"
 | 
|
4839  | 
  and card_lists_length_eq: "card {xs. set xs \<subseteq> A \<and> length xs = n} = (card A)^n"
 | 
|
| 60758 | 4840  | 
using \<open>finite A\<close>  | 
| 45714 | 4841  | 
by (induct n)  | 
4842  | 
(auto simp: card_image inj_split_Cons lists_length_Suc_eq cong: conj_cong)  | 
|
| 31557 | 4843  | 
|
4844  | 
lemma finite_lists_length_le:  | 
|
4845  | 
  assumes "finite A" shows "finite {xs. set xs \<subseteq> A \<and> length xs \<le> n}"
 | 
|
4846  | 
(is "finite ?S")  | 
|
4847  | 
proof-  | 
|
4848  | 
  have "?S = (\<Union>n\<in>{0..n}. {xs. set xs \<subseteq> A \<and> length xs = n})" by auto
 | 
|
| 60758 | 4849  | 
thus ?thesis by (auto intro!: finite_lists_length_eq[OF \<open>finite A\<close>] simp only:)  | 
| 31557 | 4850  | 
qed  | 
4851  | 
||
| 45714 | 4852  | 
lemma card_lists_length_le:  | 
4853  | 
  assumes "finite A" shows "card {xs. set xs \<subseteq> A \<and> length xs \<le> n} = (\<Sum>i\<le>n. card A^i)"
 | 
|
4854  | 
proof -  | 
|
4855  | 
  have "(\<Sum>i\<le>n. card A^i) = card (\<Union>i\<le>n. {xs. set xs \<subseteq> A \<and> length xs = i})"
 | 
|
| 60758 | 4856  | 
using \<open>finite A\<close>  | 
| 45714 | 4857  | 
by (subst card_UN_disjoint)  | 
4858  | 
(auto simp add: card_lists_length_eq finite_lists_length_eq)  | 
|
4859  | 
  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}"
 | 
|
4860  | 
by auto  | 
|
4861  | 
finally show ?thesis by simp  | 
|
4862  | 
qed  | 
|
4863  | 
||
| 
67478
 
14d3163588ae
add lemma on lists from Falling_Factorial_Sum entry
 
bulwahn 
parents: 
67443 
diff
changeset
 | 
4864  | 
lemma finite_lists_distinct_length_eq [intro]:  | 
| 
 
14d3163588ae
add lemma on lists from Falling_Factorial_Sum entry
 
bulwahn 
parents: 
67443 
diff
changeset
 | 
4865  | 
assumes "finite A"  | 
| 
 
14d3163588ae
add lemma on lists from Falling_Factorial_Sum entry
 
bulwahn 
parents: 
67443 
diff
changeset
 | 
4866  | 
  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
 | 
4867  | 
proof -  | 
| 
 
14d3163588ae
add lemma on lists from Falling_Factorial_Sum entry
 
bulwahn 
parents: 
67443 
diff
changeset
 | 
4868  | 
  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
 | 
4869  | 
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
 | 
4870  | 
  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
 | 
4871  | 
ultimately show ?thesis using finite_subset by auto  | 
| 
 
14d3163588ae
add lemma on lists from Falling_Factorial_Sum entry
 
bulwahn 
parents: 
67443 
diff
changeset
 | 
4872  | 
qed  | 
| 
 
14d3163588ae
add lemma on lists from Falling_Factorial_Sum entry
 
bulwahn 
parents: 
67443 
diff
changeset
 | 
4873  | 
|
| 45932 | 4874  | 
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
 | 
4875  | 
assumes "finite A" "k \<le> card A"  | 
| 45932 | 4876  | 
  shows "card {xs. length xs = k \<and> distinct xs \<and> set xs \<subseteq> A} = \<Prod>{card A - k + 1 .. card A}"
 | 
4877  | 
using assms  | 
|
4878  | 
proof (induct k)  | 
|
4879  | 
case 0  | 
|
4880  | 
  then have "{xs. length xs = 0 \<and> distinct xs \<and> set xs \<subseteq> A} = {[]}" by auto
 | 
|
4881  | 
then show ?case by simp  | 
|
4882  | 
next  | 
|
4883  | 
case (Suc k)  | 
|
4884  | 
let "?k_list" = "\<lambda>k xs. length xs = k \<and> distinct xs \<and> set xs \<subseteq> A"  | 
|
4885  | 
have inj_Cons: "\<And>A. inj_on (\<lambda>(xs, n). n # xs) A" by (rule inj_onI) auto  | 
|
4886  | 
||
| 
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
 | 
4887  | 
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
 | 
4888  | 
moreover note \<open>finite A\<close>  | 
| 45932 | 4889  | 
  moreover have "finite {xs. ?k_list k xs}"
 | 
| 63834 | 4890  | 
by (rule finite_subset) (use finite_lists_length_eq[OF \<open>finite A\<close>, of k] in auto)  | 
| 45932 | 4891  | 
  moreover have "\<And>i j. i \<noteq> j \<longrightarrow> {i} \<times> (A - set i) \<inter> {j} \<times> (A - set j) = {}"
 | 
4892  | 
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
 | 
4893  | 
  moreover have "\<And>i. i \<in> {xs. ?k_list k xs} \<Longrightarrow> card (A - set i) = card A - k"
 | 
| 45932 | 4894  | 
by (simp add: card_Diff_subset distinct_card)  | 
4895  | 
  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
 | 
4896  | 
      (\<lambda>(xs, n). n#xs) ` \<Union>((\<lambda>xs. {xs} \<times> (A - set xs)) ` {xs. ?k_list k xs})"
 | 
| 45932 | 4897  | 
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
 | 
4898  | 
moreover have "Suc (card A - Suc k) = card A - k" using Suc.prems by simp  | 
| 45932 | 4899  | 
  then have "(card A - k) * \<Prod>{Suc (card A - k)..card A} = \<Prod>{Suc (card A - Suc k)..card A}"
 | 
| 64272 | 4900  | 
by (subst prod.insert[symmetric]) (simp add: atLeastAtMost_insertL)+  | 
| 45932 | 4901  | 
ultimately show ?case  | 
4902  | 
by (simp add: card_image inj_Cons card_UN_disjoint Suc.hyps algebra_simps)  | 
|
4903  | 
qed  | 
|
4904  | 
||
| 
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
 | 
4905  | 
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
 | 
4906  | 
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
 | 
4907  | 
  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
 | 
4908  | 
proof -  | 
| 
 
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
 | 
4909  | 
from \<open>k < card A\<close> have "finite A" and "k \<le> card A" using card_infinite by force+  | 
| 
 
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
 | 
4910  | 
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
 | 
4911  | 
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
 | 
4912  | 
|
| 67091 | 4913  | 
lemma infinite_UNIV_listI: "\<not> finite(UNIV::'a list set)"  | 
| 56085 | 4914  | 
apply (rule notI)  | 
4915  | 
apply (drule finite_maxlen)  | 
|
4916  | 
apply clarsimp  | 
|
4917  | 
apply (erule_tac x = "replicate n undefined" in allE)  | 
|
4918  | 
by simp  | 
|
| 28642 | 4919  | 
|
4920  | 
||
| 60758 | 4921  | 
subsection \<open>Sorting\<close>  | 
4922  | 
||
| 
66434
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
4923  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
4924  | 
subsubsection \<open>@{const sorted_wrt}\<close>
 | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
4925  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
4926  | 
lemma sorted_wrt_Cons:  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
4927  | 
assumes "transp P"  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
4928  | 
shows "sorted_wrt P (x # xs) = ((\<forall>y \<in> set xs. P x y) \<and> sorted_wrt P xs)"  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
4929  | 
by(induction xs arbitrary: x)(auto intro: transpD[OF assms])  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
4930  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
4931  | 
lemma sorted_wrt_ConsI:  | 
| 
66889
 
7fe528893a6c
drop a superfluous assumption that was found by the find_unused_assms command and tune proof
 
bulwahn 
parents: 
66870 
diff
changeset
 | 
4932  | 
"\<lbrakk> \<And>y. y \<in> set xs \<Longrightarrow> P x y; sorted_wrt P xs \<rbrakk> \<Longrightarrow> sorted_wrt P (x # xs)"  | 
| 67168 | 4933  | 
by (induction xs rule: induct_list012) simp_all  | 
| 
66434
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
4934  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
4935  | 
lemma sorted_wrt_append:  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
4936  | 
assumes "transp P"  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
4937  | 
shows "sorted_wrt P (xs @ ys) \<longleftrightarrow>  | 
| 66892 | 4938  | 
sorted_wrt P xs \<and> sorted_wrt P ys \<and> (\<forall>x\<in>set xs. \<forall>y\<in>set ys. P x y)"  | 
| 
66434
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
4939  | 
by (induction xs) (auto simp: sorted_wrt_Cons[OF assms])  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
4940  | 
|
| 
66890
 
e92d48a42a01
drop a superfluous assumption that was found by the find_unused_assms command and tune proof
 
bulwahn 
parents: 
66889 
diff
changeset
 | 
4941  | 
lemma sorted_wrt_backwards:  | 
| 
 
e92d48a42a01
drop a superfluous assumption that was found by the find_unused_assms command and tune proof
 
bulwahn 
parents: 
66889 
diff
changeset
 | 
4942  | 
"sorted_wrt P (xs @ [y, z]) = (P y z \<and> sorted_wrt P (xs @ [y]))"  | 
| 67168 | 4943  | 
by (induction xs rule: induct_list012) auto  | 
| 
66890
 
e92d48a42a01
drop a superfluous assumption that was found by the find_unused_assms command and tune proof
 
bulwahn 
parents: 
66889 
diff
changeset
 | 
4944  | 
|
| 
 
e92d48a42a01
drop a superfluous assumption that was found by the find_unused_assms command and tune proof
 
bulwahn 
parents: 
66889 
diff
changeset
 | 
4945  | 
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
 | 
4946  | 
"sorted_wrt P (rev xs) = sorted_wrt (\<lambda>x y. P y x) xs"  | 
| 67168 | 4947  | 
by (induction xs rule: induct_list012) (simp_all add: sorted_wrt_backwards)  | 
| 
66434
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
4948  | 
|
| 66442 | 4949  | 
lemma sorted_wrt_mono:  | 
4950  | 
"(\<And>x y. P x y \<Longrightarrow> Q x y) \<Longrightarrow> sorted_wrt P xs \<Longrightarrow> sorted_wrt Q xs"  | 
|
| 67168 | 4951  | 
by(induction xs rule: induct_list012)(auto)  | 
| 66442 | 4952  | 
|
| 66892 | 4953  | 
text \<open>Strictly Ascending Sequences of Natural Numbers\<close>  | 
| 
66434
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
4954  | 
|
| 67399 | 4955  | 
lemma sorted_wrt_upt[simp]: "sorted_wrt (<) [0..<n]"  | 
| 
66434
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
4956  | 
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
 | 
4957  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
4958  | 
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
 | 
4959  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
4960  | 
lemma sorted_wrt_less_idx:  | 
| 67399 | 4961  | 
"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
 | 
4962  | 
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
 | 
4963  | 
case Nil thus ?case by simp  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
4964  | 
next  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
4965  | 
case snoc  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
4966  | 
thus ?case  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
4967  | 
by (auto simp: nth_append sorted_wrt_append)  | 
| 66892 | 4968  | 
(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
 | 
4969  | 
qed  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
4970  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
4971  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
4972  | 
subsubsection \<open>@{const sorted}\<close>
 | 
| 24617 | 4973  | 
|
| 24616 | 4974  | 
context linorder  | 
4975  | 
begin  | 
|
4976  | 
||
| 
66434
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
4977  | 
lemma sorted_Cons: "sorted (x#xs) = (sorted xs \<and> (\<forall>y \<in> set xs. x \<le> y))"  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
4978  | 
apply(induction xs arbitrary: x)  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
4979  | 
apply simp  | 
| 24616 | 4980  | 
by simp (blast intro: order_trans)  | 
| 67479 | 4981  | 
(*  | 
| 67399 | 4982  | 
lemma sorted_iff_wrt: "sorted xs = sorted_wrt (\<le>) xs"  | 
| 66441 | 4983  | 
proof  | 
| 67399 | 4984  | 
assume "sorted xs" thus "sorted_wrt (\<le>) xs"  | 
| 66441 | 4985  | 
proof (induct xs rule: sorted.induct)  | 
4986  | 
case (Cons xs x) thus ?case by (cases xs) simp_all  | 
|
4987  | 
qed simp  | 
|
| 67168 | 4988  | 
qed (induct xs rule: induct_list012, simp_all)  | 
| 67479 | 4989  | 
*)  | 
| 
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
 | 
4990  | 
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
 | 
4991  | 
"sorted xs \<Longrightarrow> sorted (tl xs)"  | 
| 
66434
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
4992  | 
by (cases xs) (simp_all add: sorted_Cons)  | 
| 
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
 | 
4993  | 
|
| 24616 | 4994  | 
lemma sorted_append:  | 
| 67091 | 4995  | 
"sorted (xs@ys) = (sorted xs \<and> sorted ys \<and> (\<forall>x \<in> set xs. \<forall>y \<in> set ys. x\<le>y))"  | 
| 24616 | 4996  | 
by (induct xs) (auto simp add:sorted_Cons)  | 
4997  | 
||
| 31201 | 4998  | 
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
 | 
4999  | 
"sorted xs \<Longrightarrow> i \<le> j \<Longrightarrow> j < length xs \<Longrightarrow> xs!i \<le> xs!j"  | 
| 31201 | 5000  | 
by (induct xs arbitrary: i j) (auto simp:nth_Cons' sorted_Cons)  | 
5001  | 
||
| 
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
 | 
5002  | 
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
 | 
5003  | 
"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
 | 
5004  | 
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
 | 
5005  | 
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
 | 
5006  | 
by auto  | 
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
5007  | 
|
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
5008  | 
lemma sorted_nth_monoI:  | 
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
5009  | 
"(\<And> i j. \<lbrakk> i \<le> j ; j < length xs \<rbrakk> \<Longrightarrow> xs ! i \<le> xs ! j) \<Longrightarrow> sorted xs"  | 
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
5010  | 
proof (induct xs)  | 
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
5011  | 
case (Cons x xs)  | 
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
5012  | 
have "sorted xs"  | 
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
5013  | 
proof (rule Cons.hyps)  | 
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
5014  | 
fix i j assume "i \<le> j" and "j < length xs"  | 
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
5015  | 
with Cons.prems[of "Suc i" "Suc j"]  | 
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
5016  | 
show "xs ! i \<le> xs ! j" by auto  | 
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
5017  | 
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
 | 
5018  | 
moreover  | 
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
5019  | 
  {
 | 
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
5020  | 
fix y assume "y \<in> set xs"  | 
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
5021  | 
then obtain j where "j < length xs" and "xs ! j = y"  | 
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
5022  | 
unfolding in_set_conv_nth by blast  | 
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
5023  | 
with Cons.prems[of 0 "Suc j"]  | 
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
5024  | 
have "x \<le> y"  | 
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
5025  | 
by auto  | 
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
5026  | 
}  | 
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
5027  | 
ultimately  | 
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
5028  | 
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
 | 
5029  | 
unfolding sorted_Cons by auto  | 
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
5030  | 
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
 | 
5031  | 
|
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
5032  | 
lemma sorted_equals_nth_mono:  | 
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
5033  | 
"sorted xs = (\<forall>j < length xs. \<forall>i \<le> j. xs ! i \<le> xs ! j)"  | 
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
5034  | 
by (auto intro: sorted_nth_monoI sorted_nth_mono)  | 
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
5035  | 
|
| 
66434
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5036  | 
lemma sorted_map_remove1:  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5037  | 
"sorted (map f xs) \<Longrightarrow> sorted (map f (remove1 x xs))"  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5038  | 
by (induct xs) (auto simp add: sorted_Cons)  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5039  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5040  | 
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
 | 
5041  | 
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
 | 
5042  | 
|
| 36851 | 5043  | 
lemma sorted_butlast:  | 
5044  | 
assumes "xs \<noteq> []" and "sorted xs"  | 
|
5045  | 
shows "sorted (butlast xs)"  | 
|
5046  | 
proof -  | 
|
| 
66434
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5047  | 
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
 | 
5048  | 
by (cases xs rule: rev_cases) auto  | 
| 60758 | 5049  | 
with \<open>sorted xs\<close> show ?thesis by (simp add: sorted_append)  | 
| 36851 | 5050  | 
qed  | 
| 64963 | 5051  | 
|
| 66905 | 5052  | 
lemma sorted_replicate [simp]: "sorted(replicate n x)"  | 
5053  | 
by(induction n) (auto simp: sorted_Cons)  | 
|
5054  | 
||
| 
26143
 
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
 
bulwahn 
parents: 
26073 
diff
changeset
 | 
5055  | 
lemma sorted_remdups[simp]:  | 
| 
 
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
 
bulwahn 
parents: 
26073 
diff
changeset
 | 
5056  | 
"sorted l \<Longrightarrow> sorted (remdups l)"  | 
| 
 
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
 
bulwahn 
parents: 
26073 
diff
changeset
 | 
5057  | 
by (induct l) (auto simp: sorted_Cons)  | 
| 
 
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
 
bulwahn 
parents: 
26073 
diff
changeset
 | 
5058  | 
|
| 
53721
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
5059  | 
lemma sorted_remdups_adj[simp]:  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
5060  | 
"sorted xs \<Longrightarrow> sorted (remdups_adj xs)"  | 
| 62390 | 5061  | 
by (induct xs rule: remdups_adj.induct, simp_all split: if_split_asm add: sorted_Cons)  | 
| 
53721
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
5062  | 
|
| 66853 | 5063  | 
lemma sorted_nths: "sorted xs \<Longrightarrow> sorted (nths xs I)"  | 
5064  | 
by(induction xs arbitrary: I)(auto simp: sorted_Cons nths_Cons)  | 
|
5065  | 
||
| 24645 | 5066  | 
lemma sorted_distinct_set_unique:  | 
5067  | 
assumes "sorted xs" "distinct xs" "sorted ys" "distinct ys" "set xs = set ys"  | 
|
5068  | 
shows "xs = ys"  | 
|
5069  | 
proof -  | 
|
| 26734 | 5070  | 
from assms have 1: "length xs = length ys" by (auto dest!: distinct_card)  | 
| 24645 | 5071  | 
from assms show ?thesis  | 
5072  | 
proof(induct rule:list_induct2[OF 1])  | 
|
5073  | 
case 1 show ?case by simp  | 
|
5074  | 
next  | 
|
| 56085 | 5075  | 
case 2 thus ?case by (simp add: sorted_Cons)  | 
| 24645 | 5076  | 
(metis Diff_insert_absorb antisym insertE insert_iff)  | 
5077  | 
qed  | 
|
5078  | 
qed  | 
|
5079  | 
||
| 35603 | 5080  | 
lemma map_sorted_distinct_set_unique:  | 
5081  | 
assumes "inj_on f (set xs \<union> set ys)"  | 
|
5082  | 
assumes "sorted (map f xs)" "distinct (map f xs)"  | 
|
5083  | 
"sorted (map f ys)" "distinct (map f ys)"  | 
|
5084  | 
assumes "set xs = set ys"  | 
|
5085  | 
shows "xs = ys"  | 
|
5086  | 
proof -  | 
|
5087  | 
from assms have "map f xs = map f ys"  | 
|
5088  | 
by (simp add: sorted_distinct_set_unique)  | 
|
| 60758 | 5089  | 
with \<open>inj_on f (set xs \<union> set ys)\<close> show "xs = ys"  | 
| 35603 | 5090  | 
by (blast intro: map_inj_on)  | 
5091  | 
qed  | 
|
5092  | 
||
| 
39915
 
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
 
haftmann 
parents: 
39774 
diff
changeset
 | 
5093  | 
lemma  | 
| 
 
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
 
haftmann 
parents: 
39774 
diff
changeset
 | 
5094  | 
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
 | 
5095  | 
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
 | 
5096  | 
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
 | 
5097  | 
proof -  | 
| 
 
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
 
haftmann 
parents: 
39774 
diff
changeset
 | 
5098  | 
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
 | 
5099  | 
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
 | 
5100  | 
unfolding sorted_append by simp_all  | 
| 29626 | 5101  | 
qed  | 
5102  | 
||
| 
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
 | 
5103  | 
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
 | 
5104  | 
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
 | 
5105  | 
|
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
5106  | 
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
 | 
5107  | 
by (subst takeWhile_eq_take) (auto dest: sorted_take)  | 
| 29626 | 5108  | 
|
| 34933 | 5109  | 
lemma sorted_filter:  | 
5110  | 
"sorted (map f xs) \<Longrightarrow> sorted (map f (filter P xs))"  | 
|
5111  | 
by (induct xs) (simp_all add: sorted_Cons)  | 
|
5112  | 
||
5113  | 
lemma foldr_max_sorted:  | 
|
5114  | 
assumes "sorted (rev xs)"  | 
|
5115  | 
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
 | 
5116  | 
using assms  | 
| 
 
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
 
wenzelm 
parents: 
53017 
diff
changeset
 | 
5117  | 
proof (induct xs)  | 
| 34933 | 5118  | 
case (Cons x xs)  | 
| 
53374
 
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
 
wenzelm 
parents: 
53017 
diff
changeset
 | 
5119  | 
then have "sorted (rev xs)" using sorted_append by auto  | 
| 
 
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
 
wenzelm 
parents: 
53017 
diff
changeset
 | 
5120  | 
with Cons show ?case  | 
| 
 
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
 
wenzelm 
parents: 
53017 
diff
changeset
 | 
5121  | 
by (cases xs) (auto simp add: sorted_append max_def)  | 
| 34933 | 5122  | 
qed simp  | 
5123  | 
||
5124  | 
lemma filter_equals_takeWhile_sorted_rev:  | 
|
5125  | 
assumes sorted: "sorted (rev (map f xs))"  | 
|
5126  | 
shows "[x \<leftarrow> xs. t < f x] = takeWhile (\<lambda> x. t < f x) xs"  | 
|
5127  | 
(is "filter ?P xs = ?tW")  | 
|
5128  | 
proof (rule takeWhile_eq_filter[symmetric])  | 
|
5129  | 
let "?dW" = "dropWhile ?P xs"  | 
|
5130  | 
fix x assume "x \<in> set ?dW"  | 
|
5131  | 
then obtain i where i: "i < length ?dW" and nth_i: "x = ?dW ! i"  | 
|
5132  | 
unfolding in_set_conv_nth by auto  | 
|
5133  | 
hence "length ?tW + i < length (?tW @ ?dW)"  | 
|
5134  | 
unfolding length_append by simp  | 
|
5135  | 
hence i': "length (map f ?tW) + i < length (map f xs)" by simp  | 
|
5136  | 
have "(map f ?tW @ map f ?dW) ! (length (map f ?tW) + i) \<le>  | 
|
5137  | 
(map f ?tW @ map f ?dW) ! (length (map f ?tW) + 0)"  | 
|
5138  | 
using sorted_rev_nth_mono[OF sorted _ i', of "length ?tW"]  | 
|
5139  | 
unfolding map_append[symmetric] by simp  | 
|
5140  | 
hence "f x \<le> f (?dW ! 0)"  | 
|
5141  | 
unfolding nth_append_length_plus nth_i  | 
|
5142  | 
using i preorder_class.le_less_trans[OF le0 i] by simp  | 
|
5143  | 
also have "... \<le> t"  | 
|
5144  | 
using hd_dropWhile[of "?P" xs] le0[THEN preorder_class.le_less_trans, OF i]  | 
|
5145  | 
using hd_conv_nth[of "?dW"] by simp  | 
|
5146  | 
finally show "\<not> t < f x" by simp  | 
|
5147  | 
qed  | 
|
5148  | 
||
| 
66434
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5149  | 
lemma sorted_map_same:  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5150  | 
"sorted (map f [x\<leftarrow>xs. f x = g xs])"  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5151  | 
proof (induct xs arbitrary: g)  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5152  | 
case Nil then show ?case by simp  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5153  | 
next  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5154  | 
case (Cons x xs)  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5155  | 
then have "sorted (map f [y\<leftarrow>xs . f y = (\<lambda>xs. f x) xs])" .  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5156  | 
moreover from Cons have "sorted (map f [y\<leftarrow>xs . f y = (g \<circ> Cons x) xs])" .  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5157  | 
ultimately show ?case by (simp_all add: sorted_Cons)  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5158  | 
qed  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5159  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5160  | 
lemma sorted_same:  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5161  | 
"sorted [x\<leftarrow>xs. x = g xs]"  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5162  | 
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
 | 
5163  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5164  | 
end  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5165  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5166  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5167  | 
subsubsection \<open>Sorting functions\<close>  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5168  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5169  | 
text\<open>Currently it is not shown that @{const sort} returns a
 | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5170  | 
permutation of its input because the nicest proof is via multisets,  | 
| 66654 | 5171  | 
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
 | 
5172  | 
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
 | 
5173  | 
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
 | 
5174  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5175  | 
context linorder  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5176  | 
begin  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5177  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5178  | 
lemma set_insort_key:  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5179  | 
"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
 | 
5180  | 
by (induct xs) auto  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5181  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5182  | 
lemma length_insort [simp]:  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5183  | 
"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
 | 
5184  | 
by (induct xs) simp_all  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5185  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5186  | 
lemma insort_key_left_comm:  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5187  | 
assumes "f x \<noteq> f y"  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5188  | 
shows "insort_key f y (insort_key f x xs) = insort_key f x (insort_key f y xs)"  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5189  | 
by (induct xs) (auto simp add: assms dest: antisym)  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5190  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5191  | 
lemma insort_left_comm:  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5192  | 
"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
 | 
5193  | 
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
 | 
5194  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5195  | 
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
 | 
5196  | 
proof  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5197  | 
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
 | 
5198  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5199  | 
lemma sort_key_simps [simp]:  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5200  | 
"sort_key f [] = []"  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5201  | 
"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
 | 
5202  | 
by (simp_all add: sort_key_def)  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5203  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5204  | 
lemma sort_key_conv_fold:  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5205  | 
assumes "inj_on f (set xs)"  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5206  | 
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
 | 
5207  | 
proof -  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5208  | 
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
 | 
5209  | 
proof (rule fold_rev, rule ext)  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5210  | 
fix zs  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5211  | 
fix x y  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5212  | 
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
 | 
5213  | 
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
 | 
5214  | 
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
 | 
5215  | 
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
 | 
5216  | 
by (induct zs) (auto intro: * simp add: **)  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5217  | 
qed  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5218  | 
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
 | 
5219  | 
qed  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5220  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5221  | 
lemma sort_conv_fold:  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5222  | 
"sort xs = fold insort xs []"  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5223  | 
by (rule sort_key_conv_fold) simp  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5224  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5225  | 
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
 | 
5226  | 
by (induct xs, auto)  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5227  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5228  | 
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
 | 
5229  | 
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
 | 
5230  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5231  | 
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
 | 
5232  | 
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
 | 
5233  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5234  | 
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
 | 
5235  | 
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
 | 
5236  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5237  | 
lemma sorted_insort_key: "sorted (map f (insort_key f x xs)) = sorted (map f xs)"  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5238  | 
by (induct xs) (auto simp: sorted_Cons set_insort_key)  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5239  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5240  | 
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
 | 
5241  | 
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
 | 
5242  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5243  | 
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
 | 
5244  | 
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
 | 
5245  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5246  | 
theorem sorted_sort [simp]: "sorted (sort xs)"  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5247  | 
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
 | 
5248  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5249  | 
lemma insort_not_Nil [simp]:  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5250  | 
"insort_key f a xs \<noteq> []"  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5251  | 
by (induction xs) simp_all  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5252  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5253  | 
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
 | 
5254  | 
by (cases xs) auto  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5255  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5256  | 
lemma sorted_sort_id: "sorted xs \<Longrightarrow> sort xs = xs"  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5257  | 
by (induct xs) (auto simp add: sorted_Cons insort_is_Cons)  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5258  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5259  | 
lemma insort_key_remove1:  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5260  | 
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
 | 
5261  | 
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
 | 
5262  | 
using assms proof (induct xs)  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5263  | 
case (Cons x xs)  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5264  | 
then show ?case  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5265  | 
proof (cases "x = a")  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5266  | 
case False  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5267  | 
then have "f x \<noteq> f a" using Cons.prems by auto  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5268  | 
then have "f x < f a" using Cons.prems by (auto simp: sorted_Cons)  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5269  | 
with \<open>f x \<noteq> f a\<close> show ?thesis using Cons by (auto simp: sorted_Cons insort_is_Cons)  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5270  | 
qed (auto simp: sorted_Cons insort_is_Cons)  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5271  | 
qed simp  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5272  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5273  | 
lemma insort_remove1:  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5274  | 
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
 | 
5275  | 
shows "insort a (remove1 a xs) = xs"  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5276  | 
proof (rule insort_key_remove1)  | 
| 67399 | 5277  | 
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
 | 
5278  | 
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
 | 
5279  | 
from \<open>sorted xs\<close> show "sorted (map (\<lambda>x. x) xs)" by simp  | 
| 67399 | 5280  | 
from \<open>a \<in> set xs\<close> have "a \<in> set (filter ((=) a) xs)" by auto  | 
5281  | 
  then have "set (filter ((=) a) xs) \<noteq> {}" by auto
 | 
|
5282  | 
then have "filter ((=) a) xs \<noteq> []" by (auto simp only: set_empty)  | 
|
5283  | 
then have "length (filter ((=) a) xs) > 0" by simp  | 
|
5284  | 
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
 | 
5285  | 
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
 | 
5286  | 
by simp  | 
| 67399 | 5287  | 
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
 | 
5288  | 
qed  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5289  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5290  | 
lemma finite_sorted_distinct_unique:  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5291  | 
shows "finite A \<Longrightarrow> \<exists>!xs. set xs = A \<and> sorted xs \<and> distinct xs"  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5292  | 
apply(drule finite_distinct_list)  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5293  | 
apply clarify  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5294  | 
apply(rule_tac a="sort xs" in ex1I)  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5295  | 
apply (auto simp: sorted_distinct_set_unique)  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5296  | 
done  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5297  | 
|
| 
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
 | 
5298  | 
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
 | 
5299  | 
"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
 | 
5300  | 
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
 | 
5301  | 
|
| 
 
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
 | 
5302  | 
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
 | 
5303  | 
"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
 | 
5304  | 
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
 | 
5305  | 
|
| 
 
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
 | 
5306  | 
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
 | 
5307  | 
"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
 | 
5308  | 
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
 | 
5309  | 
|
| 
 
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
 | 
5310  | 
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
 | 
5311  | 
"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
 | 
5312  | 
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
 | 
5313  | 
|
| 35608 | 5314  | 
lemma set_insort_insert:  | 
5315  | 
"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
 | 
5316  | 
by (auto simp add: insort_insert_key_def set_insort_key)  | 
| 35608 | 5317  | 
|
5318  | 
lemma distinct_insort_insert:  | 
|
5319  | 
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
 | 
5320  | 
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
 | 
5321  | 
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
 | 
5322  | 
|
| 
 
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
 | 
5323  | 
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
 | 
5324  | 
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
 | 
5325  | 
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
 | 
5326  | 
using assms by (simp add: insort_insert_key_def sorted_insort_key)  | 
| 35608 | 5327  | 
|
5328  | 
lemma sorted_insort_insert:  | 
|
5329  | 
assumes "sorted xs"  | 
|
5330  | 
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
 | 
5331  | 
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
 | 
5332  | 
|
| 
 
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
 | 
5333  | 
lemma filter_insort_triv:  | 
| 37107 | 5334  | 
"\<not> P x \<Longrightarrow> filter P (insort_key f x xs) = filter P xs"  | 
5335  | 
by (induct xs) simp_all  | 
|
5336  | 
||
| 
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
 | 
5337  | 
lemma filter_insort:  | 
| 37107 | 5338  | 
"sorted (map f xs) \<Longrightarrow> P x \<Longrightarrow> filter P (insort_key f x xs) = insort_key f x (filter P xs)"  | 
| 63092 | 5339  | 
by (induct xs) (auto simp add: sorted_Cons, subst insort_is_Cons, auto)  | 
| 37107 | 5340  | 
|
| 
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
 | 
5341  | 
lemma filter_sort:  | 
| 37107 | 5342  | 
"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
 | 
5343  | 
by (induct xs) (simp_all add: filter_insort_triv filter_insort)  | 
| 37107 | 5344  | 
|
5345  | 
lemma remove1_insort [simp]:  | 
|
5346  | 
"remove1 x (insort x xs) = xs"  | 
|
5347  | 
by (induct xs) simp_all  | 
|
5348  | 
||
| 24616 | 5349  | 
end  | 
5350  | 
||
| 25277 | 5351  | 
lemma sorted_upt[simp]: "sorted[i..<j]"  | 
5352  | 
by (induct j) (simp_all add:sorted_append)  | 
|
5353  | 
||
| 58437 | 5354  | 
lemma sort_upt [simp]:  | 
5355  | 
"sort [m..<n] = [m..<n]"  | 
|
5356  | 
by (rule sorted_sort_id) simp  | 
|
5357  | 
||
| 
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
 | 
5358  | 
lemma sorted_upto[simp]: "sorted[i..j]"  | 
| 
 
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
 
nipkow 
parents: 
32078 
diff
changeset
 | 
5359  | 
apply(induct i j rule:upto.induct)  | 
| 
 
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
 
nipkow 
parents: 
32078 
diff
changeset
 | 
5360  | 
apply(subst upto.simps)  | 
| 
 
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
 
nipkow 
parents: 
32078 
diff
changeset
 | 
5361  | 
apply(simp add:sorted_Cons)  | 
| 
 
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
 
nipkow 
parents: 
32078 
diff
changeset
 | 
5362  | 
done  | 
| 
 
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
 
nipkow 
parents: 
32078 
diff
changeset
 | 
5363  | 
|
| 52379 | 5364  | 
lemma sorted_find_Min:  | 
| 67479 | 5365  | 
  "sorted xs \<Longrightarrow> \<exists>x \<in> set xs. P x \<Longrightarrow> List.find P xs = Some (Min {x\<in>set xs. P x})"
 | 
5366  | 
proof (induct xs)  | 
|
| 52379 | 5367  | 
case Nil then show ?case by simp  | 
5368  | 
next  | 
|
| 67479 | 5369  | 
case (Cons x xs) show ?case proof (cases "P x")  | 
5370  | 
case True  | 
|
5371  | 
with Cons show ?thesis by (auto simp: sorted_Cons intro: Min_eqI [symmetric])  | 
|
| 52379 | 5372  | 
next  | 
5373  | 
    case False then have "{y. (y = x \<or> y \<in> set xs) \<and> P y} = {y \<in> set xs. P y}"
 | 
|
5374  | 
by auto  | 
|
| 67479 | 5375  | 
with Cons False show ?thesis by (simp_all add: sorted_Cons)  | 
| 52379 | 5376  | 
qed  | 
5377  | 
qed  | 
|
5378  | 
||
| 66853 | 5379  | 
lemma sorted_enumerate [simp]: "sorted (map fst (enumerate n xs))"  | 
5380  | 
by (simp add: enumerate_eq_zip)  | 
|
| 58437 | 5381  | 
|
| 67684 | 5382  | 
text \<open>Stability of @{const sort_key}:\<close>
 | 
5383  | 
||
5384  | 
lemma sort_key_stable: "[y <- sort_key f xs. f y = k] = [y <- xs. f y = k]"  | 
|
5385  | 
proof (induction xs)  | 
|
| 66654 | 5386  | 
case Nil thus ?case by simp  | 
| 66892 | 5387  | 
next  | 
| 66654 | 5388  | 
case (Cons a xs)  | 
| 66892 | 5389  | 
thus ?case  | 
| 67684 | 5390  | 
proof (cases "f a = k")  | 
5391  | 
case False thus ?thesis  | 
|
5392  | 
using Cons.IH by (metis (mono_tags) filter.simps(2) filter_sort)  | 
|
5393  | 
next  | 
|
| 66892 | 5394  | 
case True  | 
| 67684 | 5395  | 
hence ler: "[y <- (a # xs). f y = k] = a # [y <- xs. f y = f a]" by simp  | 
| 66654 | 5396  | 
have "\<forall>y \<in> set (sort_key f [y <- xs. f y = f a]). f y = f a" by simp  | 
| 66892 | 5397  | 
hence "insort_key f a (sort_key f [y <- xs. f y = f a])  | 
| 67684 | 5398  | 
= a # (sort_key f [y <- xs. f y = f a])"  | 
| 66654 | 5399  | 
by (simp add: insort_is_Cons)  | 
| 67684 | 5400  | 
hence lel: "[y <- sort_key f (a # xs). f y = k] = a # [y <- sort_key f xs. f y = f a]"  | 
5401  | 
by (metis True filter_sort ler sort_key_simps(2))  | 
|
5402  | 
from lel ler show ?thesis using Cons.IH True by (auto)  | 
|
| 66654 | 5403  | 
qed  | 
5404  | 
qed  | 
|
5405  | 
||
| 67684 | 5406  | 
corollary stable_sort_key_sort_key: "stable_sort_key sort_key"  | 
5407  | 
by(simp add: stable_sort_key_def sort_key_stable)  | 
|
5408  | 
||
| 67606 | 5409  | 
lemma sort_key_const: "sort_key (\<lambda>x. c) xs = xs"  | 
| 67684 | 5410  | 
by (metis (mono_tags) filter_True sort_key_stable)  | 
| 67606 | 5411  | 
|
| 35115 | 5412  | 
|
| 60758 | 5413  | 
subsubsection \<open>@{const transpose} on sorted lists\<close>
 | 
| 34933 | 5414  | 
|
| 66853 | 5415  | 
lemma sorted_transpose[simp]: "sorted (rev (map length (transpose xs)))"  | 
5416  | 
by (auto simp: sorted_equals_nth_mono rev_nth nth_transpose  | 
|
| 34933 | 5417  | 
length_filter_conv_card intro: card_mono)  | 
5418  | 
||
5419  | 
lemma transpose_max_length:  | 
|
5420  | 
"foldr (\<lambda>xs. max (length xs)) (transpose xs) 0 = length [x \<leftarrow> xs. x \<noteq> []]"  | 
|
5421  | 
(is "?L = ?R")  | 
|
5422  | 
proof (cases "transpose xs = []")  | 
|
5423  | 
case False  | 
|
5424  | 
have "?L = foldr max (map length (transpose xs)) 0"  | 
|
5425  | 
by (simp add: foldr_map comp_def)  | 
|
5426  | 
also have "... = length (transpose xs ! 0)"  | 
|
5427  | 
using False sorted_transpose by (simp add: foldr_max_sorted)  | 
|
5428  | 
finally show ?thesis  | 
|
5429  | 
using False by (simp add: nth_transpose)  | 
|
5430  | 
next  | 
|
5431  | 
case True  | 
|
5432  | 
hence "[x \<leftarrow> xs. x \<noteq> []] = []"  | 
|
5433  | 
by (auto intro!: filter_False simp: transpose_empty)  | 
|
5434  | 
thus ?thesis by (simp add: transpose_empty True)  | 
|
5435  | 
qed  | 
|
5436  | 
||
5437  | 
lemma length_transpose_sorted:  | 
|
5438  | 
fixes xs :: "'a list list"  | 
|
5439  | 
assumes sorted: "sorted (rev (map length xs))"  | 
|
5440  | 
shows "length (transpose xs) = (if xs = [] then 0 else length (xs ! 0))"  | 
|
5441  | 
proof (cases "xs = []")  | 
|
5442  | 
case False  | 
|
5443  | 
thus ?thesis  | 
|
5444  | 
using foldr_max_sorted[OF sorted] False  | 
|
5445  | 
unfolding length_transpose foldr_map comp_def  | 
|
5446  | 
by simp  | 
|
5447  | 
qed simp  | 
|
5448  | 
||
5449  | 
lemma nth_nth_transpose_sorted[simp]:  | 
|
5450  | 
fixes xs :: "'a list list"  | 
|
5451  | 
assumes sorted: "sorted (rev (map length xs))"  | 
|
5452  | 
and i: "i < length (transpose xs)"  | 
|
5453  | 
and j: "j < length [ys \<leftarrow> xs. i < length ys]"  | 
|
5454  | 
shows "transpose xs ! i ! j = xs ! j ! i"  | 
|
| 66853 | 5455  | 
using j filter_equals_takeWhile_sorted_rev[OF sorted, of i]  | 
| 34933 | 5456  | 
nth_transpose[OF i] nth_map[OF j]  | 
| 66853 | 5457  | 
by (simp add: takeWhile_nth)  | 
| 34933 | 5458  | 
|
5459  | 
lemma transpose_column_length:  | 
|
5460  | 
fixes xs :: "'a list list"  | 
|
5461  | 
assumes sorted: "sorted (rev (map length xs))" and "i < length xs"  | 
|
5462  | 
shows "length (filter (\<lambda>ys. i < length ys) (transpose xs)) = length (xs ! i)"  | 
|
5463  | 
proof -  | 
|
| 60758 | 5464  | 
have "xs \<noteq> []" using \<open>i < length xs\<close> by auto  | 
| 34933 | 5465  | 
note filter_equals_takeWhile_sorted_rev[OF sorted, simp]  | 
5466  | 
  { fix j assume "j \<le> i"
 | 
|
| 60758 | 5467  | 
note sorted_rev_nth_mono[OF sorted, of j i, simplified, OF this \<open>i < length xs\<close>]  | 
| 34933 | 5468  | 
} note sortedE = this[consumes 1]  | 
5469  | 
||
5470  | 
  have "{j. j < length (transpose xs) \<and> i < length (transpose xs ! j)}
 | 
|
5471  | 
    = {..< length (xs ! i)}"
 | 
|
5472  | 
proof safe  | 
|
5473  | 
fix j  | 
|
5474  | 
assume "j < length (transpose xs)" and "i < length (transpose xs ! j)"  | 
|
5475  | 
with this(2) nth_transpose[OF this(1)]  | 
|
5476  | 
have "i < length (takeWhile (\<lambda>ys. j < length ys) xs)" by simp  | 
|
5477  | 
from nth_mem[OF this] takeWhile_nth[OF this]  | 
|
5478  | 
show "j < length (xs ! i)" by (auto dest: set_takeWhileD)  | 
|
5479  | 
next  | 
|
5480  | 
fix j assume "j < length (xs ! i)"  | 
|
5481  | 
thus "j < length (transpose xs)"  | 
|
| 60758 | 5482  | 
using foldr_max_sorted[OF sorted] \<open>xs \<noteq> []\<close> sortedE[OF le0]  | 
| 34933 | 5483  | 
by (auto simp: length_transpose comp_def foldr_map)  | 
5484  | 
||
5485  | 
have "Suc i \<le> length (takeWhile (\<lambda>ys. j < length ys) xs)"  | 
|
| 60758 | 5486  | 
using \<open>i < length xs\<close> \<open>j < length (xs ! i)\<close> less_Suc_eq_le  | 
| 34933 | 5487  | 
by (auto intro!: length_takeWhile_less_P_nth dest!: sortedE)  | 
| 60758 | 5488  | 
with nth_transpose[OF \<open>j < length (transpose xs)\<close>]  | 
| 34933 | 5489  | 
show "i < length (transpose xs ! j)" by simp  | 
5490  | 
qed  | 
|
5491  | 
thus ?thesis by (simp add: length_filter_conv_card)  | 
|
5492  | 
qed  | 
|
5493  | 
||
5494  | 
lemma transpose_column:  | 
|
5495  | 
fixes xs :: "'a list list"  | 
|
5496  | 
assumes sorted: "sorted (rev (map length xs))" and "i < length xs"  | 
|
5497  | 
shows "map (\<lambda>ys. ys ! i) (filter (\<lambda>ys. i < length ys) (transpose xs))  | 
|
5498  | 
= xs ! i" (is "?R = _")  | 
|
5499  | 
proof (rule nth_equalityI, safe)  | 
|
5500  | 
show length: "length ?R = length (xs ! i)"  | 
|
5501  | 
using transpose_column_length[OF assms] by simp  | 
|
5502  | 
||
5503  | 
fix j assume j: "j < length ?R"  | 
|
5504  | 
note * = less_le_trans[OF this, unfolded length_map, OF length_filter_le]  | 
|
5505  | 
from j have j_less: "j < length (xs ! i)" using length by simp  | 
|
5506  | 
have i_less_tW: "Suc i \<le> length (takeWhile (\<lambda>ys. Suc j \<le> length ys) xs)"  | 
|
5507  | 
proof (rule length_takeWhile_less_P_nth)  | 
|
| 60758 | 5508  | 
show "Suc i \<le> length xs" using \<open>i < length xs\<close> by simp  | 
| 34933 | 5509  | 
fix k assume "k < Suc i"  | 
5510  | 
hence "k \<le> i" by auto  | 
|
| 60758 | 5511  | 
with sorted_rev_nth_mono[OF sorted this] \<open>i < length xs\<close>  | 
| 34933 | 5512  | 
have "length (xs ! i) \<le> length (xs ! k)" by simp  | 
5513  | 
thus "Suc j \<le> length (xs ! k)" using j_less by simp  | 
|
5514  | 
qed  | 
|
5515  | 
have i_less_filter: "i < length [ys\<leftarrow>xs . j < length ys]"  | 
|
5516  | 
unfolding filter_equals_takeWhile_sorted_rev[OF sorted, of j]  | 
|
5517  | 
using i_less_tW by (simp_all add: Suc_le_eq)  | 
|
5518  | 
from j show "?R ! j = xs ! i ! j"  | 
|
5519  | 
unfolding filter_equals_takeWhile_sorted_rev[OF sorted_transpose, of i]  | 
|
5520  | 
by (simp add: takeWhile_nth nth_nth_transpose_sorted[OF sorted * i_less_filter])  | 
|
5521  | 
qed  | 
|
5522  | 
||
5523  | 
lemma transpose_transpose:  | 
|
5524  | 
fixes xs :: "'a list list"  | 
|
5525  | 
assumes sorted: "sorted (rev (map length xs))"  | 
|
5526  | 
shows "transpose (transpose xs) = takeWhile (\<lambda>x. x \<noteq> []) xs" (is "?L = ?R")  | 
|
5527  | 
proof -  | 
|
5528  | 
have len: "length ?L = length ?R"  | 
|
5529  | 
unfolding length_transpose transpose_max_length  | 
|
5530  | 
using filter_equals_takeWhile_sorted_rev[OF sorted, of 0]  | 
|
5531  | 
by simp  | 
|
5532  | 
||
5533  | 
  { fix i assume "i < length ?R"
 | 
|
5534  | 
with less_le_trans[OF _ length_takeWhile_le[of _ xs]]  | 
|
5535  | 
have "i < length xs" by simp  | 
|
5536  | 
} note * = this  | 
|
5537  | 
show ?thesis  | 
|
5538  | 
by (rule nth_equalityI)  | 
|
5539  | 
(simp_all add: len nth_transpose transpose_column[OF sorted] * takeWhile_nth)  | 
|
5540  | 
qed  | 
|
| 24616 | 5541  | 
|
| 
34934
 
440605046777
Added transpose_rectangle, when the input list is rectangular.
 
hoelzl 
parents: 
34933 
diff
changeset
 | 
5542  | 
theorem transpose_rectangle:  | 
| 
 
440605046777
Added transpose_rectangle, when the input list is rectangular.
 
hoelzl 
parents: 
34933 
diff
changeset
 | 
5543  | 
assumes "xs = [] \<Longrightarrow> n = 0"  | 
| 
 
440605046777
Added transpose_rectangle, when the input list is rectangular.
 
hoelzl 
parents: 
34933 
diff
changeset
 | 
5544  | 
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
 | 
5545  | 
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
 | 
5546  | 
(is "?trans = ?map")  | 
| 
 
440605046777
Added transpose_rectangle, when the input list is rectangular.
 
hoelzl 
parents: 
34933 
diff
changeset
 | 
5547  | 
proof (rule nth_equalityI)  | 
| 
 
440605046777
Added transpose_rectangle, when the input list is rectangular.
 
hoelzl 
parents: 
34933 
diff
changeset
 | 
5548  | 
have "sorted (rev (map length xs))"  | 
| 
 
440605046777
Added transpose_rectangle, when the input list is rectangular.
 
hoelzl 
parents: 
34933 
diff
changeset
 | 
5549  | 
by (auto simp: rev_nth rect intro!: sorted_nth_monoI)  | 
| 
 
440605046777
Added transpose_rectangle, when the input list is rectangular.
 
hoelzl 
parents: 
34933 
diff
changeset
 | 
5550  | 
from foldr_max_sorted[OF this] assms  | 
| 
 
440605046777
Added transpose_rectangle, when the input list is rectangular.
 
hoelzl 
parents: 
34933 
diff
changeset
 | 
5551  | 
show len: "length ?trans = length ?map"  | 
| 
 
440605046777
Added transpose_rectangle, when the input list is rectangular.
 
hoelzl 
parents: 
34933 
diff
changeset
 | 
5552  | 
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
 | 
5553  | 
moreover  | 
| 
 
440605046777
Added transpose_rectangle, when the input list is rectangular.
 
hoelzl 
parents: 
34933 
diff
changeset
 | 
5554  | 
  { fix i assume "i < n" hence "[ys\<leftarrow>xs . i < length ys] = xs"
 | 
| 
 
440605046777
Added transpose_rectangle, when the input list is rectangular.
 
hoelzl 
parents: 
34933 
diff
changeset
 | 
5555  | 
using rect by (auto simp: in_set_conv_nth intro!: filter_True) }  | 
| 
 
440605046777
Added transpose_rectangle, when the input list is rectangular.
 
hoelzl 
parents: 
34933 
diff
changeset
 | 
5556  | 
ultimately show "\<forall>i < length ?trans. ?trans ! i = ?map ! i"  | 
| 
 
440605046777
Added transpose_rectangle, when the input list is rectangular.
 
hoelzl 
parents: 
34933 
diff
changeset
 | 
5557  | 
by (auto simp: nth_transpose intro: nth_equalityI)  | 
| 
 
440605046777
Added transpose_rectangle, when the input list is rectangular.
 
hoelzl 
parents: 
34933 
diff
changeset
 | 
5558  | 
qed  | 
| 24616 | 5559  | 
|
| 35115 | 5560  | 
|
| 61799 | 5561  | 
subsubsection \<open>\<open>sorted_list_of_set\<close>\<close>  | 
| 60758 | 5562  | 
|
5563  | 
text\<open>This function maps (finite) linearly ordered sets to sorted  | 
|
| 25069 | 5564  | 
lists. Warning: in most cases it is not a good idea to convert from  | 
5565  | 
sets to lists but one should convert in the other direction (via  | 
|
| 60758 | 5566  | 
@{const set}).\<close>
 | 
5567  | 
||
| 54868 | 5568  | 
context linorder  | 
5569  | 
begin  | 
|
5570  | 
||
5571  | 
definition sorted_list_of_set :: "'a set \<Rightarrow> 'a list" where  | 
|
| 51489 | 5572  | 
"sorted_list_of_set = folding.F insort []"  | 
5573  | 
||
| 61605 | 5574  | 
sublocale sorted_list_of_set: folding insort Nil  | 
| 
61566
 
c3d6e570ccef
Keyword 'rewrites' identifies rewrite morphisms.
 
ballarin 
parents: 
61468 
diff
changeset
 | 
5575  | 
rewrites  | 
| 51489 | 5576  | 
"folding.F insort [] = sorted_list_of_set"  | 
5577  | 
proof -  | 
|
5578  | 
interpret comp_fun_commute insort by (fact comp_fun_commute_insort)  | 
|
| 61169 | 5579  | 
show "folding insort" by standard (fact comp_fun_commute)  | 
| 51489 | 5580  | 
show "folding.F insort [] = sorted_list_of_set" by (simp only: sorted_list_of_set_def)  | 
5581  | 
qed  | 
|
5582  | 
||
5583  | 
lemma sorted_list_of_set_empty:  | 
|
| 35195 | 5584  | 
  "sorted_list_of_set {} = []"
 | 
| 66853 | 5585  | 
by (fact sorted_list_of_set.empty)  | 
| 35195 | 5586  | 
|
5587  | 
lemma sorted_list_of_set_insert [simp]:  | 
|
| 54868 | 5588  | 
  "finite A \<Longrightarrow> sorted_list_of_set (insert x A) = insort x (sorted_list_of_set (A - {x}))"
 | 
| 66853 | 5589  | 
by (fact sorted_list_of_set.insert_remove)  | 
| 35195 | 5590  | 
|
| 52122 | 5591  | 
lemma sorted_list_of_set_eq_Nil_iff [simp]:  | 
5592  | 
  "finite A \<Longrightarrow> sorted_list_of_set A = [] \<longleftrightarrow> A = {}"
 | 
|
| 66853 | 5593  | 
by (auto simp: sorted_list_of_set.remove)  | 
| 52122 | 5594  | 
|
| 35195 | 5595  | 
lemma sorted_list_of_set [simp]:  | 
| 64963 | 5596  | 
"finite A \<Longrightarrow> set (sorted_list_of_set A) = A \<and> sorted (sorted_list_of_set A)  | 
| 35195 | 5597  | 
\<and> distinct (sorted_list_of_set A)"  | 
| 
66434
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5598  | 
by(induct A rule: finite_induct)  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5599  | 
(simp_all add: set_insort_key sorted_insort distinct_insort)  | 
| 35195 | 5600  | 
|
| 52122 | 5601  | 
lemma distinct_sorted_list_of_set:  | 
5602  | 
"distinct (sorted_list_of_set A)"  | 
|
| 66853 | 5603  | 
using sorted_list_of_set by (cases "finite A") auto  | 
| 52122 | 5604  | 
|
| 47841 | 5605  | 
lemma sorted_list_of_set_sort_remdups [code]:  | 
| 35195 | 5606  | 
"sorted_list_of_set (set xs) = sort (remdups xs)"  | 
5607  | 
proof -  | 
|
| 
42871
 
1c0b99f950d9
names of fold_set locales resemble name of characteristic property more closely
 
haftmann 
parents: 
42809 
diff
changeset
 | 
5608  | 
interpret comp_fun_commute insort by (fact comp_fun_commute_insort)  | 
| 51489 | 5609  | 
show ?thesis by (simp add: sorted_list_of_set.eq_fold sort_conv_fold fold_set_fold_remdups)  | 
| 35195 | 5610  | 
qed  | 
| 25069 | 5611  | 
|
| 37107 | 5612  | 
lemma sorted_list_of_set_remove:  | 
5613  | 
assumes "finite A"  | 
|
5614  | 
  shows "sorted_list_of_set (A - {x}) = remove1 x (sorted_list_of_set A)"
 | 
|
5615  | 
proof (cases "x \<in> A")  | 
|
5616  | 
case False with assms have "x \<notin> set (sorted_list_of_set A)" by simp  | 
|
5617  | 
with False show ?thesis by (simp add: remove1_idem)  | 
|
5618  | 
next  | 
|
5619  | 
case True then obtain B where A: "A = insert x B" by (rule Set.set_insert)  | 
|
5620  | 
with assms show ?thesis by simp  | 
|
5621  | 
qed  | 
|
5622  | 
||
| 25069 | 5623  | 
end  | 
5624  | 
||
| 37107 | 5625  | 
lemma sorted_list_of_set_range [simp]:  | 
5626  | 
  "sorted_list_of_set {m..<n} = [m..<n]"
 | 
|
| 66853 | 5627  | 
by (rule sorted_distinct_set_unique) simp_all  | 
| 37107 | 5628  | 
|
5629  | 
||
| 61799 | 5630  | 
subsubsection \<open>\<open>lists\<close>: the list-forming operator over sets\<close>  | 
| 15302 | 5631  | 
|
| 23740 | 5632  | 
inductive_set  | 
| 22262 | 5633  | 
lists :: "'a set => 'a list set"  | 
| 23740 | 5634  | 
for A :: "'a set"  | 
5635  | 
where  | 
|
| 67613 | 5636  | 
Nil [intro!, simp]: "[] \<in> lists A"  | 
5637  | 
| Cons [intro!, simp]: "\<lbrakk>a \<in> A; l \<in> lists A\<rbrakk> \<Longrightarrow> a#l \<in> lists A"  | 
|
5638  | 
||
5639  | 
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
 | 
5640  | 
inductive_cases listspE [elim!]: "listsp A (x # l)"  | 
| 23740 | 5641  | 
|
| 46313 | 5642  | 
inductive_simps listsp_simps[code]:  | 
5643  | 
"listsp A []"  | 
|
5644  | 
"listsp A (x # xs)"  | 
|
5645  | 
||
| 23740 | 5646  | 
lemma listsp_mono [mono]: "A \<le> B ==> listsp A \<le> listsp B"  | 
| 46884 | 5647  | 
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
 | 
5648  | 
|
| 
46176
 
1898e61e89c4
pred_subset/equals_eq are now standard pred_set_conv rules
 
berghofe 
parents: 
46156 
diff
changeset
 | 
5649  | 
lemmas lists_mono = listsp_mono [to_set]  | 
| 22262 | 5650  | 
|
| 
22422
 
ee19cdb07528
stepping towards uniform lattice theory development in HOL
 
haftmann 
parents: 
22262 
diff
changeset
 | 
5651  | 
lemma listsp_infI:  | 
| 
 
ee19cdb07528
stepping towards uniform lattice theory development in HOL
 
haftmann 
parents: 
22262 
diff
changeset
 | 
5652  | 
assumes l: "listsp A l" shows "listsp B l ==> listsp (inf A B) l" using l  | 
| 24349 | 5653  | 
by induct blast+  | 
| 15302 | 5654  | 
|
| 
22422
 
ee19cdb07528
stepping towards uniform lattice theory development in HOL
 
haftmann 
parents: 
22262 
diff
changeset
 | 
5655  | 
lemmas lists_IntI = listsp_infI [to_set]  | 
| 
 
ee19cdb07528
stepping towards uniform lattice theory development in HOL
 
haftmann 
parents: 
22262 
diff
changeset
 | 
5656  | 
|
| 
 
ee19cdb07528
stepping towards uniform lattice theory development in HOL
 
haftmann 
parents: 
22262 
diff
changeset
 | 
5657  | 
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
 | 
5658  | 
proof (rule mono_inf [where f=listsp, THEN order_antisym])  | 
| 22262 | 5659  | 
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
 | 
5660  | 
show "inf (listsp A) (listsp B) \<le> listsp (inf A B)" by (blast intro!: listsp_infI)  | 
| 14388 | 5661  | 
qed  | 
5662  | 
||
| 
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
 | 
5663  | 
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
 | 
5664  | 
|
| 
46176
 
1898e61e89c4
pred_subset/equals_eq are now standard pred_set_conv rules
 
berghofe 
parents: 
46156 
diff
changeset
 | 
5665  | 
lemmas lists_Int_eq [simp] = listsp_inf_eq [to_set]  | 
| 22262 | 5666  | 
|
| 67613 | 5667  | 
lemma Cons_in_lists_iff[simp]: "x#xs \<in> lists A \<longleftrightarrow> x \<in> A \<and> xs \<in> lists A"  | 
| 39613 | 5668  | 
by auto  | 
5669  | 
||
| 22262 | 5670  | 
lemma append_in_listsp_conv [iff]:  | 
5671  | 
"(listsp A (xs @ ys)) = (listsp A xs \<and> listsp A ys)"  | 
|
| 15302 | 5672  | 
by (induct xs) auto  | 
5673  | 
||
| 22262 | 5674  | 
lemmas append_in_lists_conv [iff] = append_in_listsp_conv [to_set]  | 
5675  | 
||
5676  | 
lemma in_listsp_conv_set: "(listsp A xs) = (\<forall>x \<in> set xs. A x)"  | 
|
| 61799 | 5677  | 
\<comment> \<open>eliminate \<open>listsp\<close> in favour of \<open>set\<close>\<close>  | 
| 15302 | 5678  | 
by (induct xs) auto  | 
5679  | 
||
| 46313 | 5680  | 
lemmas in_lists_conv_set [code_unfold] = in_listsp_conv_set [to_set]  | 
| 22262 | 5681  | 
|
| 
54147
 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 
blanchet 
parents: 
53954 
diff
changeset
 | 
5682  | 
lemma in_listspD [dest!]: "listsp A xs ==> \<forall>x\<in>set xs. A x"  | 
| 22262 | 5683  | 
by (rule in_listsp_conv_set [THEN iffD1])  | 
5684  | 
||
| 
54147
 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 
blanchet 
parents: 
53954 
diff
changeset
 | 
5685  | 
lemmas in_listsD [dest!] = in_listspD [to_set]  | 
| 
 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 
blanchet 
parents: 
53954 
diff
changeset
 | 
5686  | 
|
| 
 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 
blanchet 
parents: 
53954 
diff
changeset
 | 
5687  | 
lemma in_listspI [intro!]: "\<forall>x\<in>set xs. A x ==> listsp A xs"  | 
| 22262 | 5688  | 
by (rule in_listsp_conv_set [THEN iffD2])  | 
5689  | 
||
| 
54147
 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 
blanchet 
parents: 
53954 
diff
changeset
 | 
5690  | 
lemmas in_listsI [intro!] = in_listspI [to_set]  | 
| 15302 | 5691  | 
|
| 39597 | 5692  | 
lemma lists_eq_set: "lists A = {xs. set xs <= A}"
 | 
5693  | 
by auto  | 
|
5694  | 
||
| 39613 | 5695  | 
lemma lists_empty [simp]: "lists {} = {[]}"
 | 
5696  | 
by auto  | 
|
5697  | 
||
| 15302 | 5698  | 
lemma lists_UNIV [simp]: "lists UNIV = UNIV"  | 
5699  | 
by auto  | 
|
5700  | 
||
| 50134 | 5701  | 
lemma lists_image: "lists (f`A) = map f ` lists A"  | 
5702  | 
proof -  | 
|
5703  | 
  { fix xs have "\<forall>x\<in>set xs. x \<in> f ` A \<Longrightarrow> xs \<in> map f ` lists A"
 | 
|
| 55465 | 5704  | 
by (induct xs) (auto simp del: list.map simp add: list.map[symmetric] intro!: imageI) }  | 
| 50134 | 5705  | 
then show ?thesis by auto  | 
5706  | 
qed  | 
|
| 17086 | 5707  | 
|
| 60758 | 5708  | 
subsubsection \<open>Inductive definition for membership\<close>  | 
| 17086 | 5709  | 
|
| 23740 | 5710  | 
inductive ListMem :: "'a \<Rightarrow> 'a list \<Rightarrow> bool"  | 
| 22262 | 5711  | 
where  | 
5712  | 
elem: "ListMem x (x # xs)"  | 
|
5713  | 
| insert: "ListMem x xs \<Longrightarrow> ListMem x (y # xs)"  | 
|
5714  | 
||
5715  | 
lemma ListMem_iff: "(ListMem x xs) = (x \<in> set xs)"  | 
|
| 17086 | 5716  | 
apply (rule iffI)  | 
5717  | 
apply (induct set: ListMem)  | 
|
5718  | 
apply auto  | 
|
5719  | 
apply (induct xs)  | 
|
5720  | 
apply (auto intro: ListMem.intros)  | 
|
5721  | 
done  | 
|
5722  | 
||
5723  | 
||
| 60758 | 5724  | 
subsubsection \<open>Lists as Cartesian products\<close>  | 
5725  | 
||
| 61799 | 5726  | 
text\<open>\<open>set_Cons A Xs\<close>: the set of lists with head drawn from  | 
| 60758 | 5727  | 
@{term A} and tail drawn from @{term Xs}.\<close>
 | 
| 15302 | 5728  | 
|
| 50548 | 5729  | 
definition set_Cons :: "'a set \<Rightarrow> 'a list set \<Rightarrow> 'a list set" where  | 
5730  | 
"set_Cons A XS = {z. \<exists>x xs. z = x # xs \<and> x \<in> A \<and> xs \<in> XS}"
 | 
|
| 15302 | 5731  | 
|
| 17724 | 5732  | 
lemma set_Cons_sing_Nil [simp]: "set_Cons A {[]} = (%x. [x])`A"
 | 
| 15302 | 5733  | 
by (auto simp add: set_Cons_def)  | 
5734  | 
||
| 60758 | 5735  | 
text\<open>Yields the set of lists, all of the same length as the argument and  | 
5736  | 
with elements drawn from the corresponding element of the argument.\<close>  | 
|
| 15302 | 5737  | 
|
| 50548 | 5738  | 
primrec listset :: "'a set list \<Rightarrow> 'a list set" where  | 
5739  | 
"listset [] = {[]}" |
 | 
|
5740  | 
"listset (A # As) = set_Cons A (listset As)"  | 
|
| 15302 | 5741  | 
|
5742  | 
||
| 60758 | 5743  | 
subsection \<open>Relations on Lists\<close>  | 
5744  | 
||
5745  | 
subsubsection \<open>Length Lexicographic Ordering\<close>  | 
|
5746  | 
||
| 64963 | 5747  | 
text\<open>These orderings preserve well-foundedness: shorter lists  | 
| 60758 | 5748  | 
precede longer lists. These ordering are not used in dictionaries.\<close>  | 
| 64963 | 5749  | 
|
| 61799 | 5750  | 
primrec \<comment> \<open>The lexicographic ordering for lists of the specified length\<close>  | 
| 34941 | 5751  | 
  lexn :: "('a \<times> 'a) set \<Rightarrow> nat \<Rightarrow> ('a list \<times> 'a list) set" where
 | 
| 50548 | 5752  | 
"lexn r 0 = {}" |
 | 
5753  | 
"lexn r (Suc n) =  | 
|
| 55932 | 5754  | 
(map_prod (%(x, xs). x#xs) (%(x, xs). x#xs) ` (r <*lex*> lexn r n)) Int  | 
| 50548 | 5755  | 
  {(xs, ys). length xs = Suc n \<and> length ys = Suc n}"
 | 
5756  | 
||
5757  | 
definition lex :: "('a \<times> 'a) set \<Rightarrow> ('a list \<times> 'a list) set" where
 | 
|
| 61799 | 5758  | 
"lex r = (\<Union>n. lexn r n)" \<comment> \<open>Holds only between lists of the same length\<close>  | 
| 50548 | 5759  | 
|
5760  | 
definition lenlex :: "('a \<times> 'a) set => ('a list \<times> 'a list) set" where
 | 
|
5761  | 
"lenlex r = inv_image (less_than <*lex*> lex r) (\<lambda>xs. (length xs, xs))"  | 
|
| 61799 | 5762  | 
\<comment> \<open>Compares lists by their length and then lexicographically\<close>  | 
| 15302 | 5763  | 
|
5764  | 
lemma wf_lexn: "wf r ==> wf (lexn r n)"  | 
|
5765  | 
apply (induct n, simp, simp)  | 
|
5766  | 
apply(rule wf_subset)  | 
|
5767  | 
prefer 2 apply (rule Int_lower1)  | 
|
| 55932 | 5768  | 
apply(rule wf_map_prod_image)  | 
| 15302 | 5769  | 
prefer 2 apply (rule inj_onI, auto)  | 
5770  | 
done  | 
|
5771  | 
||
5772  | 
lemma lexn_length:  | 
|
| 67613 | 5773  | 
"(xs, ys) \<in> lexn r n \<Longrightarrow> length xs = n \<and> length ys = n"  | 
| 24526 | 5774  | 
by (induct n arbitrary: xs ys) auto  | 
| 15302 | 5775  | 
|
5776  | 
lemma wf_lex [intro!]: "wf r ==> wf (lex r)"  | 
|
5777  | 
apply (unfold lex_def)  | 
|
5778  | 
apply (rule wf_UN)  | 
|
5779  | 
apply (blast intro: wf_lexn, clarify)  | 
|
5780  | 
apply (rename_tac m n)  | 
|
5781  | 
apply (subgoal_tac "m \<noteq> n")  | 
|
5782  | 
prefer 2 apply blast  | 
|
5783  | 
apply (blast dest: lexn_length not_sym)  | 
|
5784  | 
done  | 
|
5785  | 
||
5786  | 
lemma lexn_conv:  | 
|
| 15656 | 5787  | 
"lexn r n =  | 
5788  | 
    {(xs,ys). length xs = n \<and> length ys = n \<and>
 | 
|
| 67613 | 5789  | 
(\<exists>xys x y xs' ys'. xs= xys @ x#xs' \<and> ys= xys @ y # ys' \<and> (x, y) \<in> r)}"  | 
| 18423 | 5790  | 
apply (induct n, simp)  | 
| 15302 | 5791  | 
apply (simp add: image_Collect lex_prod_def, safe, blast)  | 
5792  | 
apply (rule_tac x = "ab # xys" in exI, simp)  | 
|
5793  | 
apply (case_tac xys, simp_all, blast)  | 
|
5794  | 
done  | 
|
5795  | 
||
| 62175 | 5796  | 
text\<open>By Mathias Fleury:\<close>  | 
| 62090 | 5797  | 
lemma lexn_transI:  | 
5798  | 
assumes "trans r" shows "trans (lexn r n)"  | 
|
5799  | 
unfolding trans_def  | 
|
5800  | 
proof (intro allI impI)  | 
|
5801  | 
fix as bs cs  | 
|
5802  | 
assume asbs: "(as, bs) \<in> lexn r n" and bscs: "(bs, cs) \<in> lexn r n"  | 
|
5803  | 
obtain abs a b as' bs' where  | 
|
5804  | 
n: "length as = n" and "length bs = n" and  | 
|
5805  | 
as: "as = abs @ a # as'" and  | 
|
5806  | 
bs: "bs = abs @ b # bs'" and  | 
|
5807  | 
abr: "(a, b) \<in> r"  | 
|
5808  | 
using asbs unfolding lexn_conv by blast  | 
|
5809  | 
obtain bcs b' c' cs' bs' where  | 
|
5810  | 
n': "length cs = n" and "length bs = n" and  | 
|
5811  | 
bs': "bs = bcs @ b' # bs'" and  | 
|
5812  | 
cs: "cs = bcs @ c' # cs'" and  | 
|
5813  | 
b'c'r: "(b', c') \<in> r"  | 
|
5814  | 
using bscs unfolding lexn_conv by blast  | 
|
5815  | 
consider (le) "length bcs < length abs"  | 
|
5816  | 
| (eq) "length bcs = length abs"  | 
|
5817  | 
| (ge) "length bcs > length abs" by linarith  | 
|
5818  | 
thus "(as, cs) \<in> lexn r n"  | 
|
5819  | 
proof cases  | 
|
5820  | 
let ?k = "length bcs"  | 
|
5821  | 
case le  | 
|
5822  | 
hence "as ! ?k = bs ! ?k" unfolding as bs by (simp add: nth_append)  | 
|
5823  | 
hence "(as ! ?k, cs ! ?k) \<in> r" using b'c'r unfolding bs' cs by auto  | 
|
5824  | 
moreover  | 
|
5825  | 
have "length bcs < length as" using le unfolding as by simp  | 
|
5826  | 
from id_take_nth_drop[OF this]  | 
|
5827  | 
have "as = take ?k as @ as ! ?k # drop (Suc ?k) as" .  | 
|
5828  | 
moreover  | 
|
5829  | 
have "length bcs < length cs" unfolding cs by simp  | 
|
5830  | 
from id_take_nth_drop[OF this]  | 
|
5831  | 
have "cs = take ?k cs @ cs ! ?k # drop (Suc ?k) cs" .  | 
|
5832  | 
moreover have "take ?k as = take ?k cs"  | 
|
5833  | 
using le arg_cong[OF bs, of "take (length bcs)"]  | 
|
5834  | 
unfolding cs as bs' by auto  | 
|
5835  | 
ultimately show ?thesis using n n' unfolding lexn_conv by auto  | 
|
5836  | 
next  | 
|
5837  | 
let ?k = "length abs"  | 
|
5838  | 
case ge  | 
|
5839  | 
hence "bs ! ?k = cs ! ?k" unfolding bs' cs by (simp add: nth_append)  | 
|
5840  | 
hence "(as ! ?k, cs ! ?k) \<in> r" using abr unfolding as bs by auto  | 
|
5841  | 
moreover  | 
|
5842  | 
have "length abs < length as" using ge unfolding as by simp  | 
|
5843  | 
from id_take_nth_drop[OF this]  | 
|
5844  | 
have "as = take ?k as @ as ! ?k # drop (Suc ?k) as" .  | 
|
5845  | 
moreover have "length abs < length cs" using n n' unfolding as by simp  | 
|
5846  | 
from id_take_nth_drop[OF this]  | 
|
5847  | 
have "cs = take ?k cs @ cs ! ?k # drop (Suc ?k) cs" .  | 
|
5848  | 
moreover have "take ?k as = take ?k cs"  | 
|
5849  | 
using ge arg_cong[OF bs', of "take (length abs)"]  | 
|
5850  | 
unfolding cs as bs by auto  | 
|
5851  | 
ultimately show ?thesis using n n' unfolding lexn_conv by auto  | 
|
5852  | 
next  | 
|
5853  | 
let ?k = "length abs"  | 
|
5854  | 
case eq  | 
|
| 63540 | 5855  | 
hence *: "abs = bcs" "b = b'" using bs bs' by auto  | 
5856  | 
hence "(a, c') \<in> r"  | 
|
| 62090 | 5857  | 
using abr b'c'r assms unfolding trans_def by blast  | 
| 63540 | 5858  | 
with * show ?thesis using n n' unfolding lexn_conv as bs cs by auto  | 
| 62090 | 5859  | 
qed  | 
5860  | 
qed  | 
|
5861  | 
||
| 15302 | 5862  | 
lemma lex_conv:  | 
| 15656 | 5863  | 
"lex r =  | 
5864  | 
    {(xs,ys). length xs = length ys \<and>
 | 
|
| 67613 | 5865  | 
(\<exists>xys x y xs' ys'. xs = xys @ x # xs' \<and> ys = xys @ y # ys' \<and> (x, y) \<in> r)}"  | 
| 15302 | 5866  | 
by (force simp add: lex_def lexn_conv)  | 
5867  | 
||
| 15693 | 5868  | 
lemma wf_lenlex [intro!]: "wf r ==> wf (lenlex r)"  | 
5869  | 
by (unfold lenlex_def) blast  | 
|
5870  | 
||
5871  | 
lemma lenlex_conv:  | 
|
| 67091 | 5872  | 
    "lenlex r = {(xs,ys). length xs < length ys \<or>
 | 
5873  | 
length xs = length ys \<and> (xs, ys) \<in> lex r}"  | 
|
| 30198 | 5874  | 
by (simp add: lenlex_def Id_on_def lex_prod_def inv_image_def)  | 
| 15302 | 5875  | 
|
5876  | 
lemma Nil_notin_lex [iff]: "([], ys) \<notin> lex r"  | 
|
5877  | 
by (simp add: lex_conv)  | 
|
5878  | 
||
5879  | 
lemma Nil2_notin_lex [iff]: "(xs, []) \<notin> lex r"  | 
|
5880  | 
by (simp add:lex_conv)  | 
|
5881  | 
||
| 18447 | 5882  | 
lemma Cons_in_lex [simp]:  | 
| 67091 | 5883  | 
"((x # xs, y # ys) \<in> lex r) =  | 
5884  | 
((x, y) \<in> r \<and> length xs = length ys \<or> x = y \<and> (xs, ys) \<in> lex r)"  | 
|
| 15302 | 5885  | 
apply (simp add: lex_conv)  | 
5886  | 
apply (rule iffI)  | 
|
5887  | 
prefer 2 apply (blast intro: Cons_eq_appendI, clarify)  | 
|
5888  | 
apply (case_tac xys, simp, simp)  | 
|
5889  | 
apply blast  | 
|
| 66502 | 5890  | 
done  | 
5891  | 
||
5892  | 
lemma lex_append_rightI:  | 
|
5893  | 
"(xs, ys) \<in> lex r \<Longrightarrow> length vs = length us \<Longrightarrow> (xs @ us, ys @ vs) \<in> lex r"  | 
|
5894  | 
by (fastforce simp: lex_def lexn_conv)  | 
|
5895  | 
||
5896  | 
lemma lex_append_leftI:  | 
|
5897  | 
"(ys, zs) \<in> lex r \<Longrightarrow> (xs @ ys, xs @ zs) \<in> lex r"  | 
|
5898  | 
by (induct xs) auto  | 
|
5899  | 
||
5900  | 
lemma lex_append_leftD:  | 
|
5901  | 
"\<forall>x. (x,x) \<notin> r \<Longrightarrow> (xs @ ys, xs @ zs) \<in> lex r \<Longrightarrow> (ys, zs) \<in> lex r"  | 
|
5902  | 
by (induct xs) auto  | 
|
5903  | 
||
5904  | 
lemma lex_append_left_iff:  | 
|
5905  | 
"\<forall>x. (x,x) \<notin> r \<Longrightarrow> (xs @ ys, xs @ zs) \<in> lex r \<longleftrightarrow> (ys, zs) \<in> lex r"  | 
|
5906  | 
by(metis lex_append_leftD lex_append_leftI)  | 
|
5907  | 
||
5908  | 
lemma lex_take_index:  | 
|
5909  | 
assumes "(xs, ys) \<in> lex r"  | 
|
5910  | 
obtains i where "i < length xs" and "i < length ys" and "take i xs =  | 
|
5911  | 
take i ys"  | 
|
5912  | 
and "(xs ! i, ys ! i) \<in> r"  | 
|
5913  | 
proof -  | 
|
5914  | 
obtain n us x xs' y ys' where "(xs, ys) \<in> lexn r n" and "length xs = n" and "length ys = n"  | 
|
5915  | 
and "xs = us @ x # xs'" and "ys = us @ y # ys'" and "(x, y) \<in> r"  | 
|
5916  | 
using assms by (fastforce simp: lex_def lexn_conv)  | 
|
5917  | 
then show ?thesis by (intro that [of "length us"]) auto  | 
|
5918  | 
qed  | 
|
| 15302 | 5919  | 
|
5920  | 
||
| 60758 | 5921  | 
subsubsection \<open>Lexicographic Ordering\<close>  | 
5922  | 
||
5923  | 
text \<open>Classical lexicographic ordering on lists, ie. "a" < "ab" < "b".  | 
|
| 15656 | 5924  | 
    This ordering does \emph{not} preserve well-foundedness.
 | 
| 64963 | 5925  | 
Author: N. Voelker, March 2005.\<close>  | 
| 15656 | 5926  | 
|
| 50548 | 5927  | 
definition lexord :: "('a \<times> 'a) set \<Rightarrow> ('a list \<times> 'a list) set" where
 | 
5928  | 
"lexord r = {(x,y). \<exists> a v. y = x @ a # v \<or>
 | 
|
| 15656 | 5929  | 
(\<exists> u a b v w. (a,b) \<in> r \<and> x = u @ (a # v) \<and> y = u @ (b # w))}"  | 
5930  | 
||
5931  | 
lemma lexord_Nil_left[simp]: "([],y) \<in> lexord r = (\<exists> a x. y = a # x)"  | 
|
| 64963 | 5932  | 
by (unfold lexord_def, induct_tac y, auto)  | 
| 15656 | 5933  | 
|
5934  | 
lemma lexord_Nil_right[simp]: "(x,[]) \<notin> lexord r"  | 
|
| 24349 | 5935  | 
by (unfold lexord_def, induct_tac x, auto)  | 
| 15656 | 5936  | 
|
5937  | 
lemma lexord_cons_cons[simp]:  | 
|
| 67091 | 5938  | 
"((a # x, b # y) \<in> lexord r) = ((a,b)\<in> r \<or> (a = b \<and> (x,y)\<in> lexord r))"  | 
| 15656 | 5939  | 
apply (unfold lexord_def, safe, simp_all)  | 
5940  | 
apply (case_tac u, simp, simp)  | 
|
5941  | 
apply (case_tac u, simp, clarsimp, blast, blast, clarsimp)  | 
|
5942  | 
apply (erule_tac x="b # u" in allE)  | 
|
5943  | 
by force  | 
|
5944  | 
||
5945  | 
lemmas lexord_simps = lexord_Nil_left lexord_Nil_right lexord_cons_cons  | 
|
5946  | 
||
5947  | 
lemma lexord_append_rightI: "\<exists> b z. y = b # z \<Longrightarrow> (x, x @ y) \<in> lexord r"  | 
|
| 64963 | 5948  | 
by (induct_tac x, auto)  | 
| 15656 | 5949  | 
|
5950  | 
lemma lexord_append_left_rightI:  | 
|
5951  | 
"(a,b) \<in> r \<Longrightarrow> (u @ a # x, u @ b # y) \<in> lexord r"  | 
|
| 24349 | 5952  | 
by (induct_tac u, auto)  | 
| 15656 | 5953  | 
|
5954  | 
lemma lexord_append_leftI: " (u,v) \<in> lexord r \<Longrightarrow> (x @ u, x @ v) \<in> lexord r"  | 
|
| 24349 | 5955  | 
by (induct x, auto)  | 
| 15656 | 5956  | 
|
5957  | 
lemma lexord_append_leftD:  | 
|
| 67091 | 5958  | 
"\<lbrakk> (x @ u, x @ v) \<in> lexord r; (\<forall>a. (a,a) \<notin> r) \<rbrakk> \<Longrightarrow> (u,v) \<in> lexord r"  | 
| 24349 | 5959  | 
by (erule rev_mp, induct_tac x, auto)  | 
| 15656 | 5960  | 
|
| 64963 | 5961  | 
lemma lexord_take_index_conv:  | 
| 67091 | 5962  | 
"((x,y) \<in> lexord r) =  | 
| 64963 | 5963  | 
((length x < length y \<and> take (length x) y = x) \<or>  | 
| 67091 | 5964  | 
(\<exists>i. i < min(length x)(length y) \<and> take i x = take i y \<and> (x!i,y!i) \<in> r))"  | 
| 64963 | 5965  | 
apply (unfold lexord_def Let_def, clarsimp)  | 
| 15656 | 5966  | 
apply (rule_tac f = "(% a b. a \<or> b)" in arg_cong2)  | 
| 64963 | 5967  | 
apply auto  | 
| 15656 | 5968  | 
apply (rule_tac x="hd (drop (length x) y)" in exI)  | 
5969  | 
apply (rule_tac x="tl (drop (length x) y)" in exI)  | 
|
| 64963 | 5970  | 
apply (erule subst, simp add: min_def)  | 
5971  | 
apply (rule_tac x ="length u" in exI, simp)  | 
|
5972  | 
apply (rule_tac x ="take i x" in exI)  | 
|
5973  | 
apply (rule_tac x ="x ! i" in exI)  | 
|
5974  | 
apply (rule_tac x ="y ! i" in exI, safe)  | 
|
| 15656 | 5975  | 
apply (rule_tac x="drop (Suc i) x" in exI)  | 
| 64963 | 5976  | 
apply (drule sym, simp add: Cons_nth_drop_Suc)  | 
| 15656 | 5977  | 
apply (rule_tac x="drop (Suc i) y" in exI)  | 
| 64963 | 5978  | 
by (simp add: Cons_nth_drop_Suc)  | 
5979  | 
||
5980  | 
\<comment> \<open>lexord is extension of partial ordering List.lex\<close>  | 
|
| 41986 | 5981  | 
lemma lexord_lex: "(x,y) \<in> lex r = ((x,y) \<in> lexord r \<and> length x = length y)"  | 
| 64963 | 5982  | 
apply (rule_tac x = y in spec)  | 
5983  | 
apply (induct_tac x, clarsimp)  | 
|
| 15656 | 5984  | 
by (clarify, case_tac x, simp, force)  | 
5985  | 
||
| 67091 | 5986  | 
lemma lexord_irreflexive: "\<forall>x. (x,x) \<notin> r \<Longrightarrow> (xs,xs) \<notin> lexord r"  | 
| 41986 | 5987  | 
by (induct xs) auto  | 
5988  | 
||
| 60758 | 5989  | 
text\<open>By Ren\'e Thiemann:\<close>  | 
| 64963 | 5990  | 
lemma lexord_partial_trans:  | 
| 41986 | 5991  | 
"(\<And>x y z. x \<in> set xs \<Longrightarrow> (x,y) \<in> r \<Longrightarrow> (y,z) \<in> r \<Longrightarrow> (x,z) \<in> r)  | 
5992  | 
\<Longrightarrow> (xs,ys) \<in> lexord r \<Longrightarrow> (ys,zs) \<in> lexord r \<Longrightarrow> (xs,zs) \<in> lexord r"  | 
|
5993  | 
proof (induct xs arbitrary: ys zs)  | 
|
5994  | 
case Nil  | 
|
5995  | 
from Nil(3) show ?case unfolding lexord_def by (cases zs, auto)  | 
|
5996  | 
next  | 
|
5997  | 
case (Cons x xs yys zzs)  | 
|
5998  | 
from Cons(3) obtain y ys where yys: "yys = y # ys" unfolding lexord_def  | 
|
5999  | 
by (cases yys, auto)  | 
|
6000  | 
note Cons = Cons[unfolded yys]  | 
|
6001  | 
from Cons(3) have one: "(x,y) \<in> r \<or> x = y \<and> (xs,ys) \<in> lexord r" by auto  | 
|
6002  | 
from Cons(4) obtain z zs where zzs: "zzs = z # zs" unfolding lexord_def  | 
|
6003  | 
by (cases zzs, auto)  | 
|
6004  | 
note Cons = Cons[unfolded zzs]  | 
|
6005  | 
from Cons(4) have two: "(y,z) \<in> r \<or> y = z \<and> (ys,zs) \<in> lexord r" by auto  | 
|
6006  | 
  {
 | 
|
6007  | 
assume "(xs,ys) \<in> lexord r" and "(ys,zs) \<in> lexord r"  | 
|
6008  | 
from Cons(1)[OF _ this] Cons(2)  | 
|
6009  | 
have "(xs,zs) \<in> lexord r" by auto  | 
|
6010  | 
} note ind1 = this  | 
|
6011  | 
  {
 | 
|
6012  | 
assume "(x,y) \<in> r" and "(y,z) \<in> r"  | 
|
6013  | 
from Cons(2)[OF _ this] have "(x,z) \<in> r" by auto  | 
|
6014  | 
} note ind2 = this  | 
|
6015  | 
from one two ind1 ind2  | 
|
6016  | 
have "(x,z) \<in> r \<or> x = z \<and> (xs,zs) \<in> lexord r" by blast  | 
|
6017  | 
thus ?case unfolding zzs by auto  | 
|
6018  | 
qed  | 
|
| 15656 | 6019  | 
|
| 64963 | 6020  | 
lemma lexord_trans:  | 
| 15656 | 6021  | 
"\<lbrakk> (x, y) \<in> lexord r; (y, z) \<in> lexord r; trans r \<rbrakk> \<Longrightarrow> (x, z) \<in> lexord r"  | 
| 41986 | 6022  | 
by(auto simp: trans_def intro:lexord_partial_trans)  | 
| 15656 | 6023  | 
|
6024  | 
lemma lexord_transI: "trans r \<Longrightarrow> trans (lexord r)"  | 
|
| 64963 | 6025  | 
by (rule transI, drule lexord_trans, blast)  | 
| 15656 | 6026  | 
|
| 67091 | 6027  | 
lemma 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"  | 
| 64963 | 6028  | 
apply (rule_tac x = y in spec)  | 
6029  | 
apply (induct_tac x, rule allI)  | 
|
6030  | 
apply (case_tac x, simp, simp)  | 
|
6031  | 
apply (rule allI, case_tac x, simp, simp)  | 
|
| 15656 | 6032  | 
by blast  | 
6033  | 
||
| 56545 | 6034  | 
lemma lexord_irrefl:  | 
6035  | 
"irrefl R \<Longrightarrow> irrefl (lexord R)"  | 
|
6036  | 
by (simp add: irrefl_def lexord_irreflexive)  | 
|
| 64963 | 6037  | 
|
| 56545 | 6038  | 
lemma lexord_asym:  | 
6039  | 
assumes "asym R"  | 
|
6040  | 
shows "asym (lexord R)"  | 
|
6041  | 
proof  | 
|
6042  | 
from assms obtain "irrefl R" by (blast elim: asym.cases)  | 
|
6043  | 
then show "irrefl (lexord R)" by (rule lexord_irrefl)  | 
|
6044  | 
next  | 
|
6045  | 
fix xs ys  | 
|
6046  | 
assume "(xs, ys) \<in> lexord R"  | 
|
6047  | 
then show "(ys, xs) \<notin> lexord R"  | 
|
6048  | 
proof (induct xs arbitrary: ys)  | 
|
6049  | 
case Nil  | 
|
6050  | 
then show ?case by simp  | 
|
6051  | 
next  | 
|
6052  | 
case (Cons x xs)  | 
|
6053  | 
then obtain z zs where ys: "ys = z # zs" by (cases ys) auto  | 
|
6054  | 
with assms Cons show ?case by (auto elim: asym.cases)  | 
|
6055  | 
qed  | 
|
6056  | 
qed  | 
|
| 64963 | 6057  | 
|
| 56545 | 6058  | 
lemma lexord_asymmetric:  | 
6059  | 
assumes "asym R"  | 
|
6060  | 
assumes hyp: "(a, b) \<in> lexord R"  | 
|
6061  | 
shows "(b, a) \<notin> lexord R"  | 
|
6062  | 
proof -  | 
|
| 60758 | 6063  | 
from \<open>asym R\<close> have "asym (lexord R)" by (rule lexord_asym)  | 
| 56545 | 6064  | 
then show ?thesis by (rule asym.cases) (auto simp add: hyp)  | 
6065  | 
qed  | 
|
6066  | 
||
6067  | 
||
| 60758 | 6068  | 
text \<open>  | 
| 
54593
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6069  | 
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
 | 
6070  | 
Author: Andreas Lochbihler  | 
| 60758 | 6071  | 
\<close>  | 
| 
54593
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6072  | 
|
| 
61681
 
ca53150406c9
option "inductive_defs" controls exposure of def and mono facts;
 
wenzelm 
parents: 
61630 
diff
changeset
 | 
6073  | 
context ord  | 
| 
 
ca53150406c9
option "inductive_defs" controls exposure of def and mono facts;
 
wenzelm 
parents: 
61630 
diff
changeset
 | 
6074  | 
begin  | 
| 
 
ca53150406c9
option "inductive_defs" controls exposure of def and mono facts;
 
wenzelm 
parents: 
61630 
diff
changeset
 | 
6075  | 
|
| 
 
ca53150406c9
option "inductive_defs" controls exposure of def and mono facts;
 
wenzelm 
parents: 
61630 
diff
changeset
 | 
6076  | 
context  | 
| 62093 | 6077  | 
notes [[inductive_internals]]  | 
| 
61681
 
ca53150406c9
option "inductive_defs" controls exposure of def and mono facts;
 
wenzelm 
parents: 
61630 
diff
changeset
 | 
6078  | 
begin  | 
| 
54593
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6079  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6080  | 
inductive lexordp :: "'a list \<Rightarrow> 'a list \<Rightarrow> bool"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6081  | 
where  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6082  | 
Nil: "lexordp [] (y # ys)"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6083  | 
| Cons: "x < y \<Longrightarrow> lexordp (x # xs) (y # ys)"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6084  | 
| Cons_eq:  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6085  | 
"\<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
 | 
6086  | 
|
| 
61681
 
ca53150406c9
option "inductive_defs" controls exposure of def and mono facts;
 
wenzelm 
parents: 
61630 
diff
changeset
 | 
6087  | 
end  | 
| 
 
ca53150406c9
option "inductive_defs" controls exposure of def and mono facts;
 
wenzelm 
parents: 
61630 
diff
changeset
 | 
6088  | 
|
| 
54593
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6089  | 
lemma lexordp_simps [simp]:  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6090  | 
"lexordp [] ys = (ys \<noteq> [])"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6091  | 
"lexordp xs [] = False"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6092  | 
"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
 | 
6093  | 
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
 | 
6094  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6095  | 
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
 | 
6096  | 
Nil: "lexordp_eq [] ys"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6097  | 
| 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
 | 
6098  | 
| 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
 | 
6099  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6100  | 
lemma lexordp_eq_simps [simp]:  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6101  | 
"lexordp_eq [] ys = True"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6102  | 
"lexordp_eq xs [] \<longleftrightarrow> xs = []"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6103  | 
"lexordp_eq (x # xs) [] = False"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6104  | 
"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
 | 
6105  | 
by(subst lexordp_eq.simps, fastforce)+  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6106  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6107  | 
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
 | 
6108  | 
by(induct xs)(auto simp add: neq_Nil_conv)  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6109  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6110  | 
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
 | 
6111  | 
by(induct us) auto  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6112  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6113  | 
lemma lexordp_eq_refl: "lexordp_eq xs xs"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6114  | 
by(induct xs) simp_all  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6115  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6116  | 
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
 | 
6117  | 
by(induct xs) auto  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6118  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6119  | 
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
 | 
6120  | 
by(induct xs) auto  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6121  | 
|
| 64963 | 6122  | 
lemma lexordp_irreflexive:  | 
| 
54593
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6123  | 
assumes irrefl: "\<forall>x. \<not> x < x"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6124  | 
shows "\<not> lexordp xs xs"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6125  | 
proof  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6126  | 
assume "lexordp xs xs"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6127  | 
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
 | 
6128  | 
qed  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6129  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6130  | 
lemma lexordp_into_lexordp_eq:  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6131  | 
assumes "lexordp xs ys"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6132  | 
shows "lexordp_eq xs ys"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6133  | 
using assms by induct simp_all  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6134  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6135  | 
end  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6136  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6137  | 
declare ord.lexordp_simps [simp, code]  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6138  | 
declare ord.lexordp_eq_simps [code, simp]  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6139  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6140  | 
lemma lexord_code [code, code_unfold]: "lexordp = ord.lexordp less"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6141  | 
unfolding lexordp_def ord.lexordp_def ..  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6142  | 
|
| 
61681
 
ca53150406c9
option "inductive_defs" controls exposure of def and mono facts;
 
wenzelm 
parents: 
61630 
diff
changeset
 | 
6143  | 
context order  | 
| 
 
ca53150406c9
option "inductive_defs" controls exposure of def and mono facts;
 
wenzelm 
parents: 
61630 
diff
changeset
 | 
6144  | 
begin  | 
| 
54593
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6145  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6146  | 
lemma lexordp_antisym:  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6147  | 
assumes "lexordp xs ys" "lexordp ys xs"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6148  | 
shows False  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6149  | 
using assms by induct auto  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6150  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6151  | 
lemma lexordp_irreflexive': "\<not> lexordp xs xs"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6152  | 
by(rule lexordp_irreflexive) simp  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6153  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6154  | 
end  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6155  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6156  | 
context linorder begin  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6157  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6158  | 
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
 | 
6159  | 
assumes "lexordp xs ys"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6160  | 
obtains (Nil) y ys' where "xs = []" "ys = y # ys'"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6161  | 
| (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
 | 
6162  | 
| (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
 | 
6163  | 
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
 | 
6164  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6165  | 
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
 | 
6166  | 
assumes major: "lexordp xs ys"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6167  | 
and Nil: "\<And>y ys. P [] (y # ys)"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6168  | 
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
 | 
6169  | 
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
 | 
6170  | 
shows "P xs ys"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6171  | 
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
 | 
6172  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6173  | 
lemma lexordp_iff:  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6174  | 
"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
 | 
6175  | 
(is "?lhs = ?rhs")  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6176  | 
proof  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6177  | 
assume ?lhs thus ?rhs  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6178  | 
proof induct  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6179  | 
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
 | 
6180  | 
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
 | 
6181  | 
next  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6182  | 
assume ?rhs thus ?lhs  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6183  | 
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
 | 
6184  | 
qed  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6185  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6186  | 
lemma lexordp_conv_lexord:  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6187  | 
  "lexordp xs ys \<longleftrightarrow> (xs, ys) \<in> lexord {(x, y). x < y}"
 | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6188  | 
by(simp add: lexordp_iff lexord_def)  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6189  | 
|
| 64963 | 6190  | 
lemma lexordp_eq_antisym:  | 
6191  | 
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
 | 
6192  | 
shows "xs = ys"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6193  | 
using assms by induct simp_all  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6194  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6195  | 
lemma lexordp_eq_trans:  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6196  | 
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
 | 
6197  | 
shows "lexordp_eq xs zs"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6198  | 
using assms  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6199  | 
apply(induct arbitrary: zs)  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6200  | 
apply(case_tac [2-3] zs)  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6201  | 
apply auto  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6202  | 
done  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6203  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6204  | 
lemma lexordp_trans:  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6205  | 
assumes "lexordp xs ys" "lexordp ys zs"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6206  | 
shows "lexordp xs zs"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6207  | 
using assms  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6208  | 
apply(induct arbitrary: zs)  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6209  | 
apply(case_tac [2-3] zs)  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6210  | 
apply auto  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6211  | 
done  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6212  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6213  | 
lemma lexordp_linear: "lexordp xs ys \<or> xs = ys \<or> lexordp ys xs"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6214  | 
proof(induct xs arbitrary: ys)  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6215  | 
case Nil thus ?case by(cases ys) simp_all  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6216  | 
next  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6217  | 
case Cons thus ?case by(cases ys) auto  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6218  | 
qed  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6219  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6220  | 
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
 | 
6221  | 
(is "?lhs \<longleftrightarrow> ?rhs")  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6222  | 
proof  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6223  | 
assume ?lhs  | 
| 63540 | 6224  | 
hence "\<not> lexordp_eq ys xs" by induct simp_all  | 
6225  | 
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
 | 
6226  | 
next  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6227  | 
assume ?rhs  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6228  | 
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
 | 
6229  | 
thus ?lhs by induct simp_all  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6230  | 
qed  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6231  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6232  | 
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
 | 
6233  | 
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
 | 
6234  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6235  | 
lemma lexordp_eq_linear: "lexordp_eq xs ys \<or> lexordp_eq ys xs"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6236  | 
apply(induct xs arbitrary: ys)  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6237  | 
apply(case_tac [!] ys)  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6238  | 
apply auto  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6239  | 
done  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6240  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6241  | 
lemma lexordp_linorder: "class.linorder lexordp_eq lexordp"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6242  | 
by unfold_locales(auto simp add: lexordp_conv_lexordp_eq lexordp_eq_refl lexordp_eq_antisym intro: lexordp_eq_trans del: disjCI intro: lexordp_eq_linear)  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6243  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6244  | 
end  | 
| 15656 | 6245  | 
|
| 64886 | 6246  | 
lemma sorted_insort_is_snoc: "sorted xs \<Longrightarrow> \<forall>x \<in> set xs. a \<ge> x \<Longrightarrow> insort a xs = xs @ [a]"  | 
| 67479 | 6247  | 
by (induct xs) (auto dest!: insort_is_Cons simp: sorted_Cons)  | 
| 64886 | 6248  | 
|
6249  | 
||
| 60758 | 6250  | 
subsubsection \<open>Lexicographic combination of measure functions\<close>  | 
6251  | 
||
6252  | 
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
 | 
6253  | 
|
| 50548 | 6254  | 
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
 | 
6255  | 
|
| 
44013
 
5cfc1c36ae97
moved recdef package to HOL/Library/Old_Recdef.thy
 
krauss 
parents: 
43594 
diff
changeset
 | 
6256  | 
lemma wf_measures[simp]: "wf (measures fs)"  | 
| 24349 | 6257  | 
unfolding measures_def  | 
6258  | 
by blast  | 
|
| 
21103
 
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
 
krauss 
parents: 
21079 
diff
changeset
 | 
6259  | 
|
| 64963 | 6260  | 
lemma in_measures[simp]:  | 
| 
21103
 
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
 
krauss 
parents: 
21079 
diff
changeset
 | 
6261  | 
"(x, y) \<in> measures [] = False"  | 
| 
 
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
 
krauss 
parents: 
21079 
diff
changeset
 | 
6262  | 
"(x, y) \<in> measures (f # fs)  | 
| 64963 | 6263  | 
= (f x < f y \<or> (f x = f y \<and> (x, y) \<in> measures fs))"  | 
| 24349 | 6264  | 
unfolding measures_def  | 
6265  | 
by auto  | 
|
| 
21103
 
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
 
krauss 
parents: 
21079 
diff
changeset
 | 
6266  | 
|
| 
 
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
 
krauss 
parents: 
21079 
diff
changeset
 | 
6267  | 
lemma measures_less: "f x < f y ==> (x, y) \<in> measures (f#fs)"  | 
| 24349 | 6268  | 
by simp  | 
| 
21103
 
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
 
krauss 
parents: 
21079 
diff
changeset
 | 
6269  | 
|
| 
 
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
 
krauss 
parents: 
21079 
diff
changeset
 | 
6270  | 
lemma measures_lesseq: "f x <= f y ==> (x, y) \<in> measures fs ==> (x, y) \<in> measures (f#fs)"  | 
| 24349 | 6271  | 
by auto  | 
| 
21103
 
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
 
krauss 
parents: 
21079 
diff
changeset
 | 
6272  | 
|
| 
 
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
 
krauss 
parents: 
21079 
diff
changeset
 | 
6273  | 
|
| 60758 | 6274  | 
subsubsection \<open>Lifting Relations to Lists: one element\<close>  | 
| 40230 | 6275  | 
|
6276  | 
definition listrel1 :: "('a \<times> 'a) set \<Rightarrow> ('a list \<times> 'a list) set" where
 | 
|
6277  | 
"listrel1 r = {(xs,ys).
 | 
|
6278  | 
\<exists>us z z' vs. xs = us @ z # vs \<and> (z,z') \<in> r \<and> ys = us @ z' # vs}"  | 
|
6279  | 
||
6280  | 
lemma listrel1I:  | 
|
6281  | 
"\<lbrakk> (x, y) \<in> r; xs = us @ x # vs; ys = us @ y # vs \<rbrakk> \<Longrightarrow>  | 
|
6282  | 
(xs, ys) \<in> listrel1 r"  | 
|
6283  | 
unfolding listrel1_def by auto  | 
|
6284  | 
||
6285  | 
lemma listrel1E:  | 
|
6286  | 
"\<lbrakk> (xs, ys) \<in> listrel1 r;  | 
|
6287  | 
!!x y us vs. \<lbrakk> (x, y) \<in> r; xs = us @ x # vs; ys = us @ y # vs \<rbrakk> \<Longrightarrow> P  | 
|
6288  | 
\<rbrakk> \<Longrightarrow> P"  | 
|
6289  | 
unfolding listrel1_def by auto  | 
|
6290  | 
||
6291  | 
lemma not_Nil_listrel1 [iff]: "([], xs) \<notin> listrel1 r"  | 
|
6292  | 
unfolding listrel1_def by blast  | 
|
6293  | 
||
6294  | 
lemma not_listrel1_Nil [iff]: "(xs, []) \<notin> listrel1 r"  | 
|
6295  | 
unfolding listrel1_def by blast  | 
|
6296  | 
||
6297  | 
lemma Cons_listrel1_Cons [iff]:  | 
|
6298  | 
"(x # xs, y # ys) \<in> listrel1 r \<longleftrightarrow>  | 
|
6299  | 
(x,y) \<in> r \<and> xs = ys \<or> x = y \<and> (xs, ys) \<in> listrel1 r"  | 
|
6300  | 
by (simp add: listrel1_def Cons_eq_append_conv) (blast)  | 
|
6301  | 
||
6302  | 
lemma listrel1I1: "(x,y) \<in> r \<Longrightarrow> (x # xs, y # xs) \<in> listrel1 r"  | 
|
| 56085 | 6303  | 
by fast  | 
| 40230 | 6304  | 
|
6305  | 
lemma listrel1I2: "(xs, ys) \<in> listrel1 r \<Longrightarrow> (x # xs, x # ys) \<in> listrel1 r"  | 
|
| 56085 | 6306  | 
by fast  | 
| 40230 | 6307  | 
|
6308  | 
lemma append_listrel1I:  | 
|
6309  | 
"(xs, ys) \<in> listrel1 r \<and> us = vs \<or> xs = ys \<and> (us, vs) \<in> listrel1 r  | 
|
6310  | 
\<Longrightarrow> (xs @ us, ys @ vs) \<in> listrel1 r"  | 
|
6311  | 
unfolding listrel1_def  | 
|
6312  | 
by auto (blast intro: append_eq_appendI)+  | 
|
6313  | 
||
6314  | 
lemma Cons_listrel1E1[elim!]:  | 
|
6315  | 
assumes "(x # xs, ys) \<in> listrel1 r"  | 
|
6316  | 
and "\<And>y. ys = y # xs \<Longrightarrow> (x, y) \<in> r \<Longrightarrow> R"  | 
|
6317  | 
and "\<And>zs. ys = x # zs \<Longrightarrow> (xs, zs) \<in> listrel1 r \<Longrightarrow> R"  | 
|
6318  | 
shows R  | 
|
6319  | 
using assms by (cases ys) blast+  | 
|
6320  | 
||
6321  | 
lemma Cons_listrel1E2[elim!]:  | 
|
6322  | 
assumes "(xs, y # ys) \<in> listrel1 r"  | 
|
6323  | 
and "\<And>x. xs = x # ys \<Longrightarrow> (x, y) \<in> r \<Longrightarrow> R"  | 
|
6324  | 
and "\<And>zs. xs = y # zs \<Longrightarrow> (zs, ys) \<in> listrel1 r \<Longrightarrow> R"  | 
|
6325  | 
shows R  | 
|
6326  | 
using assms by (cases xs) blast+  | 
|
6327  | 
||
6328  | 
lemma snoc_listrel1_snoc_iff:  | 
|
6329  | 
"(xs @ [x], ys @ [y]) \<in> listrel1 r  | 
|
6330  | 
\<longleftrightarrow> (xs, ys) \<in> listrel1 r \<and> x = y \<or> xs = ys \<and> (x,y) \<in> r" (is "?L \<longleftrightarrow> ?R")  | 
|
6331  | 
proof  | 
|
6332  | 
assume ?L thus ?R  | 
|
| 
44890
 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 
nipkow 
parents: 
44635 
diff
changeset
 | 
6333  | 
by (fastforce simp: listrel1_def snoc_eq_iff_butlast butlast_append)  | 
| 40230 | 6334  | 
next  | 
6335  | 
assume ?R then show ?L unfolding listrel1_def by force  | 
|
6336  | 
qed  | 
|
6337  | 
||
6338  | 
lemma listrel1_eq_len: "(xs,ys) \<in> listrel1 r \<Longrightarrow> length xs = length ys"  | 
|
6339  | 
unfolding listrel1_def by auto  | 
|
6340  | 
||
6341  | 
lemma listrel1_mono:  | 
|
6342  | 
"r \<subseteq> s \<Longrightarrow> listrel1 r \<subseteq> listrel1 s"  | 
|
6343  | 
unfolding listrel1_def by blast  | 
|
6344  | 
||
6345  | 
||
| 67613 | 6346  | 
lemma listrel1_converse: "listrel1 (r\<inverse>) = (listrel1 r)\<inverse>"  | 
| 40230 | 6347  | 
unfolding listrel1_def by blast  | 
6348  | 
||
6349  | 
lemma in_listrel1_converse:  | 
|
| 67613 | 6350  | 
"(x,y) \<in> listrel1 (r\<inverse>) \<longleftrightarrow> (x,y) \<in> (listrel1 r)\<inverse>"  | 
| 40230 | 6351  | 
unfolding listrel1_def by blast  | 
6352  | 
||
6353  | 
lemma listrel1_iff_update:  | 
|
6354  | 
"(xs,ys) \<in> (listrel1 r)  | 
|
6355  | 
\<longleftrightarrow> (\<exists>y n. (xs ! n, y) \<in> r \<and> n < length xs \<and> ys = xs[n:=y])" (is "?L \<longleftrightarrow> ?R")  | 
|
6356  | 
proof  | 
|
6357  | 
assume "?L"  | 
|
6358  | 
then obtain x y u v where "xs = u @ x # v" "ys = u @ y # v" "(x,y) \<in> r"  | 
|
6359  | 
unfolding listrel1_def by auto  | 
|
6360  | 
then have "ys = xs[length u := y]" and "length u < length xs"  | 
|
6361  | 
and "(xs ! length u, y) \<in> r" by auto  | 
|
6362  | 
then show "?R" by auto  | 
|
6363  | 
next  | 
|
6364  | 
assume "?R"  | 
|
6365  | 
then obtain x y n where "(xs!n, y) \<in> r" "n < size xs" "ys = xs[n:=y]" "x = xs!n"  | 
|
6366  | 
by auto  | 
|
6367  | 
then obtain u v where "xs = u @ x # v" and "ys = u @ y # v" and "(x, y) \<in> r"  | 
|
6368  | 
by (auto intro: upd_conv_take_nth_drop id_take_nth_drop)  | 
|
6369  | 
then show "?L" by (auto simp: listrel1_def)  | 
|
6370  | 
qed  | 
|
6371  | 
||
6372  | 
||
| 60758 | 6373  | 
text\<open>Accessible part and wellfoundedness:\<close>  | 
| 40230 | 6374  | 
|
6375  | 
lemma Cons_acc_listrel1I [intro!]:  | 
|
| 54295 | 6376  | 
"x \<in> Wellfounded.acc r \<Longrightarrow> xs \<in> Wellfounded.acc (listrel1 r) \<Longrightarrow> (x # xs) \<in> Wellfounded.acc (listrel1 r)"  | 
6377  | 
apply (induct arbitrary: xs set: Wellfounded.acc)  | 
|
| 40230 | 6378  | 
apply (erule thin_rl)  | 
6379  | 
apply (erule acc_induct)  | 
|
6380  | 
apply (rule accI)  | 
|
6381  | 
apply (blast)  | 
|
6382  | 
done  | 
|
6383  | 
||
| 54295 | 6384  | 
lemma lists_accD: "xs \<in> lists (Wellfounded.acc r) \<Longrightarrow> xs \<in> Wellfounded.acc (listrel1 r)"  | 
| 40230 | 6385  | 
apply (induct set: lists)  | 
6386  | 
apply (rule accI)  | 
|
6387  | 
apply simp  | 
|
6388  | 
apply (rule accI)  | 
|
6389  | 
apply (fast dest: acc_downward)  | 
|
6390  | 
done  | 
|
6391  | 
||
| 54295 | 6392  | 
lemma lists_accI: "xs \<in> Wellfounded.acc (listrel1 r) \<Longrightarrow> xs \<in> lists (Wellfounded.acc r)"  | 
6393  | 
apply (induct set: Wellfounded.acc)  | 
|
| 40230 | 6394  | 
apply clarify  | 
6395  | 
apply (rule accI)  | 
|
| 
44890
 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 
nipkow 
parents: 
44635 
diff
changeset
 | 
6396  | 
apply (fastforce dest!: in_set_conv_decomp[THEN iffD1] simp: listrel1_def)  | 
| 40230 | 6397  | 
done  | 
6398  | 
||
| 44510 | 6399  | 
lemma wf_listrel1_iff[simp]: "wf(listrel1 r) = wf r"  | 
| 56085 | 6400  | 
by (auto simp: wf_acc_iff  | 
6401  | 
intro: lists_accD lists_accI[THEN Cons_in_lists_iff[THEN iffD1, THEN conjunct1]])  | 
|
| 40230 | 6402  | 
|
| 60758 | 6403  | 
subsubsection \<open>Lifting Relations to Lists: all elements\<close>  | 
| 15302 | 6404  | 
|
| 23740 | 6405  | 
inductive_set  | 
| 46317 | 6406  | 
  listrel :: "('a \<times> 'b) set \<Rightarrow> ('a list \<times> 'b list) set"
 | 
6407  | 
  for r :: "('a \<times> 'b) set"
 | 
|
| 22262 | 6408  | 
where  | 
| 23740 | 6409  | 
Nil: "([],[]) \<in> listrel r"  | 
6410  | 
| Cons: "[| (x,y) \<in> r; (xs,ys) \<in> listrel r |] ==> (x#xs, y#ys) \<in> listrel r"  | 
|
6411  | 
||
6412  | 
inductive_cases listrel_Nil1 [elim!]: "([],xs) \<in> listrel r"  | 
|
6413  | 
inductive_cases listrel_Nil2 [elim!]: "(xs,[]) \<in> listrel r"  | 
|
6414  | 
inductive_cases listrel_Cons1 [elim!]: "(y#ys,xs) \<in> listrel r"  | 
|
6415  | 
inductive_cases listrel_Cons2 [elim!]: "(xs,y#ys) \<in> listrel r"  | 
|
| 15302 | 6416  | 
|
6417  | 
||
| 40230 | 6418  | 
lemma listrel_eq_len: "(xs, ys) \<in> listrel r \<Longrightarrow> length xs = length ys"  | 
6419  | 
by(induct rule: listrel.induct) auto  | 
|
6420  | 
||
| 67091 | 6421  | 
lemma listrel_iff_zip [code_unfold]: "(xs,ys) \<in> listrel r \<longleftrightarrow>  | 
6422  | 
length xs = length ys \<and> (\<forall>(x,y) \<in> set(zip xs ys). (x,y) \<in> r)" (is "?L \<longleftrightarrow> ?R")  | 
|
| 40230 | 6423  | 
proof  | 
6424  | 
assume ?L thus ?R by induct (auto intro: listrel_eq_len)  | 
|
6425  | 
next  | 
|
6426  | 
assume ?R thus ?L  | 
|
6427  | 
apply (clarify)  | 
|
6428  | 
by (induct rule: list_induct2) (auto intro: listrel.intros)  | 
|
6429  | 
qed  | 
|
6430  | 
||
| 67091 | 6431  | 
lemma listrel_iff_nth: "(xs,ys) \<in> listrel r \<longleftrightarrow>  | 
6432  | 
length xs = length ys \<and> (\<forall>n < length xs. (xs!n, ys!n) \<in> r)" (is "?L \<longleftrightarrow> ?R")  | 
|
| 40230 | 6433  | 
by (auto simp add: all_set_conv_all_nth listrel_iff_zip)  | 
6434  | 
||
6435  | 
||
| 15302 | 6436  | 
lemma listrel_mono: "r \<subseteq> s \<Longrightarrow> listrel r \<subseteq> listrel s"  | 
| 64963 | 6437  | 
apply clarify  | 
| 23740 | 6438  | 
apply (erule listrel.induct)  | 
6439  | 
apply (blast intro: listrel.intros)+  | 
|
| 15302 | 6440  | 
done  | 
6441  | 
||
6442  | 
lemma listrel_subset: "r \<subseteq> A \<times> A \<Longrightarrow> listrel r \<subseteq> lists A \<times> lists A"  | 
|
| 64963 | 6443  | 
apply clarify  | 
6444  | 
apply (erule listrel.induct, auto)  | 
|
| 15302 | 6445  | 
done  | 
6446  | 
||
| 64963 | 6447  | 
lemma listrel_refl_on: "refl_on A r \<Longrightarrow> refl_on (lists A) (listrel r)"  | 
| 30198 | 6448  | 
apply (simp add: refl_on_def listrel_subset Ball_def)  | 
| 64963 | 6449  | 
apply (rule allI)  | 
6450  | 
apply (induct_tac x)  | 
|
| 23740 | 6451  | 
apply (auto intro: listrel.intros)  | 
| 15302 | 6452  | 
done  | 
6453  | 
||
| 64963 | 6454  | 
lemma listrel_sym: "sym r \<Longrightarrow> sym (listrel r)"  | 
| 15302 | 6455  | 
apply (auto simp add: sym_def)  | 
| 64963 | 6456  | 
apply (erule listrel.induct)  | 
| 23740 | 6457  | 
apply (blast intro: listrel.intros)+  | 
| 15302 | 6458  | 
done  | 
6459  | 
||
| 64963 | 6460  | 
lemma listrel_trans: "trans r \<Longrightarrow> trans (listrel r)"  | 
| 15302 | 6461  | 
apply (simp add: trans_def)  | 
| 64963 | 6462  | 
apply (intro allI)  | 
6463  | 
apply (rule impI)  | 
|
6464  | 
apply (erule listrel.induct)  | 
|
| 23740 | 6465  | 
apply (blast intro: listrel.intros)+  | 
| 15302 | 6466  | 
done  | 
6467  | 
||
6468  | 
theorem equiv_listrel: "equiv A r \<Longrightarrow> equiv (lists A) (listrel r)"  | 
|
| 64963 | 6469  | 
by (simp add: equiv_def listrel_refl_on listrel_sym listrel_trans)  | 
| 15302 | 6470  | 
|
| 67613 | 6471  | 
lemma listrel_rtrancl_refl[iff]: "(xs,xs) \<in> listrel(r\<^sup>*)"  | 
| 40230 | 6472  | 
using listrel_refl_on[of UNIV, OF refl_rtrancl]  | 
6473  | 
by(auto simp: refl_on_def)  | 
|
6474  | 
||
6475  | 
lemma listrel_rtrancl_trans:  | 
|
| 67613 | 6476  | 
"\<lbrakk>(xs,ys) \<in> listrel(r\<^sup>*); (ys,zs) \<in> listrel(r\<^sup>*)\<rbrakk>  | 
6477  | 
\<Longrightarrow> (xs,zs) \<in> listrel(r\<^sup>*)"  | 
|
| 40230 | 6478  | 
by (metis listrel_trans trans_def trans_rtrancl)  | 
6479  | 
||
6480  | 
||
| 15302 | 6481  | 
lemma listrel_Nil [simp]: "listrel r `` {[]} = {[]}"
 | 
| 23740 | 6482  | 
by (blast intro: listrel.intros)  | 
| 15302 | 6483  | 
|
6484  | 
lemma listrel_Cons:  | 
|
| 
33318
 
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
 
haftmann 
parents: 
32960 
diff
changeset
 | 
6485  | 
     "listrel r `` {x#xs} = set_Cons (r``{x}) (listrel r `` {xs})"
 | 
| 
 
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
 
haftmann 
parents: 
32960 
diff
changeset
 | 
6486  | 
by (auto simp add: set_Cons_def intro: listrel.intros)  | 
| 15302 | 6487  | 
|
| 60758 | 6488  | 
text \<open>Relating @{term listrel1}, @{term listrel} and closures:\<close>
 | 
| 40230 | 6489  | 
|
6490  | 
lemma listrel1_rtrancl_subset_rtrancl_listrel1:  | 
|
| 67613 | 6491  | 
"listrel1 (r\<^sup>*) \<subseteq> (listrel1 r)\<^sup>*"  | 
| 40230 | 6492  | 
proof (rule subrelI)  | 
| 67613 | 6493  | 
fix xs ys assume 1: "(xs,ys) \<in> listrel1 (r\<^sup>*)"  | 
| 40230 | 6494  | 
  { fix x y us vs
 | 
| 67613 | 6495  | 
have "(x,y) \<in> r\<^sup>* \<Longrightarrow> (us @ x # vs, us @ y # vs) \<in> (listrel1 r)\<^sup>*"  | 
| 40230 | 6496  | 
proof(induct rule: rtrancl.induct)  | 
6497  | 
case rtrancl_refl show ?case by simp  | 
|
6498  | 
next  | 
|
6499  | 
case rtrancl_into_rtrancl thus ?case  | 
|
6500  | 
by (metis listrel1I rtrancl.rtrancl_into_rtrancl)  | 
|
6501  | 
qed }  | 
|
| 67613 | 6502  | 
thus "(xs,ys) \<in> (listrel1 r)\<^sup>*" using 1 by(blast elim: listrel1E)  | 
| 40230 | 6503  | 
qed  | 
6504  | 
||
| 67613 | 6505  | 
lemma rtrancl_listrel1_eq_len: "(x,y) \<in> (listrel1 r)\<^sup>* \<Longrightarrow> length x = length y"  | 
| 40230 | 6506  | 
by (induct rule: rtrancl.induct) (auto intro: listrel1_eq_len)  | 
6507  | 
||
6508  | 
lemma rtrancl_listrel1_ConsI1:  | 
|
| 67613 | 6509  | 
"(xs,ys) \<in> (listrel1 r)\<^sup>* \<Longrightarrow> (x#xs,x#ys) \<in> (listrel1 r)\<^sup>*"  | 
| 40230 | 6510  | 
apply(induct rule: rtrancl.induct)  | 
6511  | 
apply simp  | 
|
6512  | 
by (metis listrel1I2 rtrancl.rtrancl_into_rtrancl)  | 
|
6513  | 
||
6514  | 
lemma rtrancl_listrel1_ConsI2:  | 
|
| 67613 | 6515  | 
"(x,y) \<in> r\<^sup>* \<Longrightarrow> (xs, ys) \<in> (listrel1 r)\<^sup>*  | 
6516  | 
\<Longrightarrow> (x # xs, y # ys) \<in> (listrel1 r)\<^sup>*"  | 
|
| 64963 | 6517  | 
by (blast intro: rtrancl_trans rtrancl_listrel1_ConsI1  | 
| 40230 | 6518  | 
subsetD[OF listrel1_rtrancl_subset_rtrancl_listrel1 listrel1I1])  | 
6519  | 
||
6520  | 
lemma listrel1_subset_listrel:  | 
|
6521  | 
"r \<subseteq> r' \<Longrightarrow> refl r' \<Longrightarrow> listrel1 r \<subseteq> listrel(r')"  | 
|
6522  | 
by(auto elim!: listrel1E simp add: listrel_iff_zip set_zip refl_on_def)  | 
|
6523  | 
||
6524  | 
lemma listrel_reflcl_if_listrel1:  | 
|
| 67613 | 6525  | 
"(xs,ys) \<in> listrel1 r \<Longrightarrow> (xs,ys) \<in> listrel(r\<^sup>*)"  | 
| 40230 | 6526  | 
by(erule listrel1E)(auto simp add: listrel_iff_zip set_zip)  | 
6527  | 
||
| 67613 | 6528  | 
lemma listrel_rtrancl_eq_rtrancl_listrel1: "listrel (r\<^sup>*) = (listrel1 r)\<^sup>*"  | 
| 40230 | 6529  | 
proof  | 
| 67613 | 6530  | 
  { fix x y assume "(x,y) \<in> listrel (r\<^sup>*)"
 | 
6531  | 
then have "(x,y) \<in> (listrel1 r)\<^sup>*"  | 
|
| 40230 | 6532  | 
by induct (auto intro: rtrancl_listrel1_ConsI2) }  | 
| 67613 | 6533  | 
then show "listrel (r\<^sup>*) \<subseteq> (listrel1 r)\<^sup>*"  | 
| 40230 | 6534  | 
by (rule subrelI)  | 
6535  | 
next  | 
|
| 67613 | 6536  | 
show "listrel (r\<^sup>*) \<supseteq> (listrel1 r)\<^sup>*"  | 
| 40230 | 6537  | 
proof(rule subrelI)  | 
| 67613 | 6538  | 
fix xs ys assume "(xs,ys) \<in> (listrel1 r)\<^sup>*"  | 
6539  | 
then show "(xs,ys) \<in> listrel (r\<^sup>*)"  | 
|
| 40230 | 6540  | 
proof induct  | 
6541  | 
case base show ?case by(auto simp add: listrel_iff_zip set_zip)  | 
|
6542  | 
next  | 
|
6543  | 
case (step ys zs)  | 
|
| 56085 | 6544  | 
thus ?case by (metis listrel_reflcl_if_listrel1 listrel_rtrancl_trans)  | 
| 40230 | 6545  | 
qed  | 
6546  | 
qed  | 
|
6547  | 
qed  | 
|
6548  | 
||
6549  | 
lemma rtrancl_listrel1_if_listrel:  | 
|
| 67613 | 6550  | 
"(xs,ys) \<in> listrel r \<Longrightarrow> (xs,ys) \<in> (listrel1 r)\<^sup>*"  | 
| 40230 | 6551  | 
by(metis listrel_rtrancl_eq_rtrancl_listrel1 subsetD[OF listrel_mono] r_into_rtrancl subsetI)  | 
6552  | 
||
| 67613 | 6553  | 
lemma listrel_subset_rtrancl_listrel1: "listrel r \<subseteq> (listrel1 r)\<^sup>*"  | 
| 40230 | 6554  | 
by(fast intro:rtrancl_listrel1_if_listrel)  | 
6555  | 
||
| 15302 | 6556  | 
|
| 60758 | 6557  | 
subsection \<open>Size function\<close>  | 
| 
26749
 
397a1aeede7d
* New attribute "termination_simp": Simp rules for termination proofs
 
krauss 
parents: 
26734 
diff
changeset
 | 
6558  | 
|
| 
56643
 
41d3596d8a64
move size hooks together, with new one preceding old one and sharing same theory data
 
blanchet 
parents: 
56545 
diff
changeset
 | 
6559  | 
lemma [measure_function]: "is_measure f \<Longrightarrow> is_measure (size_list f)"  | 
| 
26875
 
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
 
krauss 
parents: 
26795 
diff
changeset
 | 
6560  | 
by (rule is_measure_trivial)  | 
| 
 
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
 
krauss 
parents: 
26795 
diff
changeset
 | 
6561  | 
|
| 
56643
 
41d3596d8a64
move size hooks together, with new one preceding old one and sharing same theory data
 
blanchet 
parents: 
56545 
diff
changeset
 | 
6562  | 
lemma [measure_function]: "is_measure f \<Longrightarrow> is_measure (size_option f)"  | 
| 
26875
 
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
 
krauss 
parents: 
26795 
diff
changeset
 | 
6563  | 
by (rule is_measure_trivial)  | 
| 
 
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
 
krauss 
parents: 
26795 
diff
changeset
 | 
6564  | 
|
| 64963 | 6565  | 
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
 | 
6566  | 
"x \<in> set xs \<Longrightarrow> y < f x \<Longrightarrow> y < size_list f xs"  | 
| 
26749
 
397a1aeede7d
* New attribute "termination_simp": Simp rules for termination proofs
 
krauss 
parents: 
26734 
diff
changeset
 | 
6567  | 
by (induct xs) auto  | 
| 
 
397a1aeede7d
* New attribute "termination_simp": Simp rules for termination proofs
 
krauss 
parents: 
26734 
diff
changeset
 | 
6568  | 
|
| 64963 | 6569  | 
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
 | 
6570  | 
"x \<in> set xs \<Longrightarrow> y \<le> f x \<Longrightarrow> y \<le> size_list f xs"  | 
| 
26875
 
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
 
krauss 
parents: 
26795 
diff
changeset
 | 
6571  | 
by (induct xs) auto  | 
| 
 
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
 
krauss 
parents: 
26795 
diff
changeset
 | 
6572  | 
|
| 67091 | 6573  | 
lemma size_list_map[simp]: "size_list f (map g xs) = size_list (f \<circ> g) xs"  | 
| 
26875
 
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
 
krauss 
parents: 
26795 
diff
changeset
 | 
6574  | 
by (induct xs) auto  | 
| 
 
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
 
krauss 
parents: 
26795 
diff
changeset
 | 
6575  | 
|
| 
56643
 
41d3596d8a64
move size hooks together, with new one preceding old one and sharing same theory data
 
blanchet 
parents: 
56545 
diff
changeset
 | 
6576  | 
lemma size_list_append[simp]: "size_list f (xs @ ys) = size_list f xs + size_list f ys"  | 
| 
44619
 
fd520fa2fb09
adding list_size_append (thanks to Rene Thiemann)
 
bulwahn 
parents: 
44618 
diff
changeset
 | 
6577  | 
by (induct xs, auto)  | 
| 
 
fd520fa2fb09
adding list_size_append (thanks to Rene Thiemann)
 
bulwahn 
parents: 
44618 
diff
changeset
 | 
6578  | 
|
| 64963 | 6579  | 
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
 | 
6580  | 
"(\<And>x. x \<in> set xs \<Longrightarrow> f x \<le> g x) \<Longrightarrow> size_list f xs \<le> size_list g xs"  | 
| 
26875
 
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
 
krauss 
parents: 
26795 
diff
changeset
 | 
6581  | 
by (induct xs) force+  | 
| 
26749
 
397a1aeede7d
* New attribute "termination_simp": Simp rules for termination proofs
 
krauss 
parents: 
26734 
diff
changeset
 | 
6582  | 
|
| 
31048
 
ac146fc38b51
refined HOL string theories and corresponding ML fragments
 
haftmann 
parents: 
31022 
diff
changeset
 | 
6583  | 
|
| 60758 | 6584  | 
subsection \<open>Monad operation\<close>  | 
| 46143 | 6585  | 
|
6586  | 
definition bind :: "'a list \<Rightarrow> ('a \<Rightarrow> 'b list) \<Rightarrow> 'b list" where
 | 
|
| 50548 | 6587  | 
"bind xs f = concat (map f xs)"  | 
| 46143 | 6588  | 
|
6589  | 
hide_const (open) bind  | 
|
6590  | 
||
6591  | 
lemma bind_simps [simp]:  | 
|
6592  | 
"List.bind [] f = []"  | 
|
6593  | 
"List.bind (x # xs) f = f x @ List.bind xs f"  | 
|
6594  | 
by (simp_all add: bind_def)  | 
|
6595  | 
||
| 
63099
 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 
eberlm 
parents: 
63092 
diff
changeset
 | 
6596  | 
lemma list_bind_cong [fundef_cong]:  | 
| 
 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 
eberlm 
parents: 
63092 
diff
changeset
 | 
6597  | 
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
 | 
6598  | 
shows "List.bind xs f = List.bind ys g"  | 
| 
 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 
eberlm 
parents: 
63092 
diff
changeset
 | 
6599  | 
proof -  | 
| 
 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 
eberlm 
parents: 
63092 
diff
changeset
 | 
6600  | 
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
 | 
6601  | 
by (induction xs) simp_all  | 
| 
 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 
eberlm 
parents: 
63092 
diff
changeset
 | 
6602  | 
with assms(1) show ?thesis by simp  | 
| 
 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 
eberlm 
parents: 
63092 
diff
changeset
 | 
6603  | 
qed  | 
| 
 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 
eberlm 
parents: 
63092 
diff
changeset
 | 
6604  | 
|
| 
 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 
eberlm 
parents: 
63092 
diff
changeset
 | 
6605  | 
lemma set_list_bind: "set (List.bind xs f) = (\<Union>x\<in>set xs. set (f x))"  | 
| 64963 | 6606  | 
by (induction xs) simp_all  | 
| 
63099
 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 
eberlm 
parents: 
63092 
diff
changeset
 | 
6607  | 
|
| 46143 | 6608  | 
|
| 60758 | 6609  | 
subsection \<open>Code generation\<close>  | 
6610  | 
||
6611  | 
text\<open>Optional tail recursive version of @{const map}. Can avoid
 | 
|
6612  | 
stack overflow in some target languages.\<close>  | 
|
| 
51875
 
dafd097dd1f4
tail recursive version of map, for code generation, optionally
 
nipkow 
parents: 
51738 
diff
changeset
 | 
6613  | 
|
| 
 
dafd097dd1f4
tail recursive version of map, for code generation, optionally
 
nipkow 
parents: 
51738 
diff
changeset
 | 
6614  | 
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
 | 
6615  | 
"map_tailrec_rev f [] bs = bs" |  | 
| 
 
dafd097dd1f4
tail recursive version of map, for code generation, optionally
 
nipkow 
parents: 
51738 
diff
changeset
 | 
6616  | 
"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
 | 
6617  | 
|
| 
 
dafd097dd1f4
tail recursive version of map, for code generation, optionally
 
nipkow 
parents: 
51738 
diff
changeset
 | 
6618  | 
lemma map_tailrec_rev:  | 
| 
 
dafd097dd1f4
tail recursive version of map, for code generation, optionally
 
nipkow 
parents: 
51738 
diff
changeset
 | 
6619  | 
"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
 | 
6620  | 
by(induction as arbitrary: bs) simp_all  | 
| 
 
dafd097dd1f4
tail recursive version of map, for code generation, optionally
 
nipkow 
parents: 
51738 
diff
changeset
 | 
6621  | 
|
| 
 
dafd097dd1f4
tail recursive version of map, for code generation, optionally
 
nipkow 
parents: 
51738 
diff
changeset
 | 
6622  | 
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
 | 
6623  | 
"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
 | 
6624  | 
|
| 60758 | 6625  | 
text\<open>Code equation:\<close>  | 
| 
51875
 
dafd097dd1f4
tail recursive version of map, for code generation, optionally
 
nipkow 
parents: 
51738 
diff
changeset
 | 
6626  | 
lemma map_eq_map_tailrec: "map = map_tailrec"  | 
| 
 
dafd097dd1f4
tail recursive version of map, for code generation, optionally
 
nipkow 
parents: 
51738 
diff
changeset
 | 
6627  | 
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
 | 
6628  | 
|
| 
 
dafd097dd1f4
tail recursive version of map, for code generation, optionally
 
nipkow 
parents: 
51738 
diff
changeset
 | 
6629  | 
|
| 60758 | 6630  | 
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
 | 
6631  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6632  | 
definition member :: "'a list \<Rightarrow> 'a \<Rightarrow> bool" where  | 
| 50548 | 6633  | 
[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
 | 
6634  | 
|
| 60758 | 6635  | 
text \<open>  | 
| 61799 | 6636  | 
Use \<open>member\<close> only for generating executable code. Otherwise use  | 
| 
37605
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6637  | 
  @{prop "x \<in> set xs"} instead --- it is much easier to reason about.
 | 
| 60758 | 6638  | 
\<close>  | 
| 
37605
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6639  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6640  | 
lemma member_rec [code]:  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6641  | 
"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
 | 
6642  | 
"member [] y \<longleftrightarrow> False"  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6643  | 
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
 | 
6644  | 
|
| 
46030
 
51b2f3412a03
attribute code_abbrev superseedes code_unfold_post; tuned text
 
haftmann 
parents: 
45993 
diff
changeset
 | 
6645  | 
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
 | 
6646  | 
"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
 | 
6647  | 
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
 | 
6648  | 
|
| 62328 | 6649  | 
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
 | 
6650  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6651  | 
definition list_ex :: "('a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> bool" where
 | 
| 50548 | 6652  | 
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
 | 
6653  | 
|
| 
 
51b2f3412a03
attribute code_abbrev superseedes code_unfold_post; tuned text
 
haftmann 
parents: 
45993 
diff
changeset
 | 
6654  | 
definition list_ex1 :: "('a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> bool" where
 | 
| 50548 | 6655  | 
list_ex1_iff [code_abbrev]: "list_ex1 P xs \<longleftrightarrow> (\<exists>! x. x \<in> set xs \<and> P x)"  | 
| 40652 | 6656  | 
|
| 60758 | 6657  | 
text \<open>  | 
| 61799 | 6658  | 
Usually you should prefer \<open>\<forall>x\<in>set xs\<close>, \<open>\<exists>x\<in>set xs\<close>  | 
6659  | 
  and \<open>\<exists>!x. x\<in>set xs \<and> _\<close> over @{const list_all}, @{const list_ex}
 | 
|
| 
46030
 
51b2f3412a03
attribute code_abbrev superseedes code_unfold_post; tuned text
 
haftmann 
parents: 
45993 
diff
changeset
 | 
6660  | 
  and @{const list_ex1} in specifications.
 | 
| 60758 | 6661  | 
\<close>  | 
| 
37605
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6662  | 
|
| 
56527
 
907f04603177
make list_all an abbreviation of pred_list - prevent duplication
 
kuncar 
parents: 
56525 
diff
changeset
 | 
6663  | 
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
 | 
6664  | 
"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
 | 
6665  | 
"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
 | 
6666  | 
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
 | 
6667  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6668  | 
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
 | 
6669  | 
"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
 | 
6670  | 
"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
 | 
6671  | 
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
 | 
6672  | 
|
| 40652 | 6673  | 
lemma list_ex1_simps [simp, code]:  | 
6674  | 
"list_ex1 P [] = False"  | 
|
6675  | 
"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
 | 
6676  | 
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
 | 
6677  | 
|
| 
 
51b2f3412a03
attribute code_abbrev superseedes code_unfold_post; tuned text
 
haftmann 
parents: 
45993 
diff
changeset
 | 
6678  | 
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
 | 
6679  | 
"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
 | 
6680  | 
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
 | 
6681  | 
|
| 
46030
 
51b2f3412a03
attribute code_abbrev superseedes code_unfold_post; tuned text
 
haftmann 
parents: 
45993 
diff
changeset
 | 
6682  | 
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
 | 
6683  | 
"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
 | 
6684  | 
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
 | 
6685  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6686  | 
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
 | 
6687  | 
"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
 | 
6688  | 
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
 | 
6689  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6690  | 
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
 | 
6691  | 
"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
 | 
6692  | 
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
 | 
6693  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6694  | 
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
 | 
6695  | 
"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
 | 
6696  | 
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
 | 
6697  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6698  | 
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
 | 
6699  | 
"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
 | 
6700  | 
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
 | 
6701  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6702  | 
lemma list_all_length:  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6703  | 
"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
 | 
6704  | 
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
 | 
6705  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6706  | 
lemma list_ex_length:  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6707  | 
"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
 | 
6708  | 
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
 | 
6709  | 
|
| 62328 | 6710  | 
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
 | 
6711  | 
|
| 47131 | 6712  | 
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
 | 
6713  | 
"xs = ys \<Longrightarrow> (\<And>x. x \<in> set ys \<Longrightarrow> f x = g x) \<Longrightarrow> list_ex f xs = list_ex g ys"  | 
| 47131 | 6714  | 
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
 | 
6715  | 
|
| 50548 | 6716  | 
definition can_select :: "('a \<Rightarrow> bool) \<Rightarrow> 'a set \<Rightarrow> bool" where
 | 
6717  | 
[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
 | 
6718  | 
|
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
6719  | 
lemma can_select_set_list_ex1 [code]:  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
6720  | 
"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
 | 
6721  | 
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
 | 
6722  | 
|
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
6723  | 
|
| 60758 | 6724  | 
text \<open>Executable checks for relations on sets\<close>  | 
| 46313 | 6725  | 
|
6726  | 
definition listrel1p :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> 'a list \<Rightarrow> bool" where
 | 
|
6727  | 
"listrel1p r xs ys = ((xs, ys) \<in> listrel1 {(x, y). r x y})"
 | 
|
6728  | 
||
6729  | 
lemma [code_unfold]:  | 
|
6730  | 
"(xs, ys) \<in> listrel1 r = listrel1p (\<lambda>x y. (x, y) \<in> r) xs ys"  | 
|
6731  | 
unfolding listrel1p_def by auto  | 
|
6732  | 
||
6733  | 
lemma [code]:  | 
|
6734  | 
"listrel1p r [] xs = False"  | 
|
6735  | 
"listrel1p r xs [] = False"  | 
|
6736  | 
"listrel1p r (x # xs) (y # ys) \<longleftrightarrow>  | 
|
6737  | 
r x y \<and> xs = ys \<or> x = y \<and> listrel1p r xs ys"  | 
|
6738  | 
by (simp add: listrel1p_def)+  | 
|
6739  | 
||
6740  | 
definition  | 
|
6741  | 
  lexordp :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> 'a list \<Rightarrow> bool" where
 | 
|
6742  | 
  "lexordp r xs ys = ((xs, ys) \<in> lexord {(x, y). r x y})"
 | 
|
6743  | 
||
6744  | 
lemma [code_unfold]:  | 
|
6745  | 
"(xs, ys) \<in> lexord r = lexordp (\<lambda>x y. (x, y) \<in> r) xs ys"  | 
|
6746  | 
unfolding lexordp_def by auto  | 
|
6747  | 
||
6748  | 
lemma [code]:  | 
|
6749  | 
"lexordp r xs [] = False"  | 
|
6750  | 
"lexordp r [] (y#ys) = True"  | 
|
| 67091 | 6751  | 
"lexordp r (x # xs) (y # ys) = (r x y \<or> (x = y \<and> lexordp r xs ys))"  | 
| 46313 | 6752  | 
unfolding lexordp_def by auto  | 
6753  | 
||
| 60758 | 6754  | 
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
 | 
6755  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6756  | 
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
 | 
6757  | 
  "{..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
 | 
6758  | 
by auto  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6759  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6760  | 
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
 | 
6761  | 
  "{..<n} = set [0..<n]"
 | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6762  | 
by auto  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6763  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6764  | 
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
 | 
6765  | 
  "{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
 | 
6766  | 
by auto  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6767  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6768  | 
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
 | 
6769  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6770  | 
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
 | 
6771  | 
  "{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
 | 
6772  | 
by auto  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6773  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6774  | 
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
 | 
6775  | 
  "{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
 | 
6776  | 
by auto  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6777  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6778  | 
lemma all_nat_less_eq [code_unfold]:  | 
| 61076 | 6779  | 
  "(\<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
 | 
6780  | 
by auto  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6781  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6782  | 
lemma ex_nat_less_eq [code_unfold]:  | 
| 61076 | 6783  | 
  "(\<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
 | 
6784  | 
by auto  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6785  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6786  | 
lemma all_nat_less [code_unfold]:  | 
| 61076 | 6787  | 
  "(\<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
 | 
6788  | 
by auto  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6789  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6790  | 
lemma ex_nat_less [code_unfold]:  | 
| 61076 | 6791  | 
  "(\<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
 | 
6792  | 
by auto  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6793  | 
|
| 61799 | 6794  | 
text\<open>Bounded \<open>LEAST\<close> operator:\<close>  | 
| 53954 | 6795  | 
|
6796  | 
definition "Bleast S P = (LEAST x. x \<in> S \<and> P x)"  | 
|
6797  | 
||
6798  | 
definition "abort_Bleast S P = (LEAST x. x \<in> S \<and> P x)"  | 
|
6799  | 
||
| 
54890
 
cb892d835803
fundamental treatment of undefined vs. universally partial replaces code_abort
 
haftmann 
parents: 
54885 
diff
changeset
 | 
6800  | 
declare [[code abort: abort_Bleast]]  | 
| 53954 | 6801  | 
|
6802  | 
lemma Bleast_code [code]:  | 
|
6803  | 
"Bleast (set xs) P = (case filter P (sort xs) of  | 
|
6804  | 
x#xs \<Rightarrow> x |  | 
|
6805  | 
[] \<Rightarrow> abort_Bleast (set xs) P)"  | 
|
6806  | 
proof (cases "filter P (sort xs)")  | 
|
6807  | 
case Nil thus ?thesis by (simp add: Bleast_def abort_Bleast_def)  | 
|
6808  | 
next  | 
|
6809  | 
case (Cons x ys)  | 
|
6810  | 
have "(LEAST x. x \<in> set xs \<and> P x) = x"  | 
|
6811  | 
proof (rule Least_equality)  | 
|
6812  | 
show "x \<in> set xs \<and> P x"  | 
|
6813  | 
by (metis Cons Cons_eq_filter_iff in_set_conv_decomp set_sort)  | 
|
6814  | 
next  | 
|
| 67613 | 6815  | 
fix y assume "y \<in> set xs \<and> P y"  | 
6816  | 
hence "y \<in> set (filter P xs)" by auto  | 
|
| 53954 | 6817  | 
thus "x \<le> y"  | 
6818  | 
by (metis Cons eq_iff filter_sort set_ConsD set_sort sorted_Cons sorted_sort)  | 
|
6819  | 
qed  | 
|
6820  | 
thus ?thesis using Cons by (simp add: Bleast_def)  | 
|
6821  | 
qed  | 
|
6822  | 
||
6823  | 
declare Bleast_def[symmetric, code_unfold]  | 
|
6824  | 
||
| 60758 | 6825  | 
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
 | 
6826  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6827  | 
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
 | 
6828  | 
  "{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
 | 
6829  | 
by auto  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6830  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6831  | 
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
 | 
6832  | 
  "{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
 | 
6833  | 
by auto  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6834  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6835  | 
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
 | 
6836  | 
  "{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
 | 
6837  | 
by auto  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6838  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6839  | 
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
 | 
6840  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6841  | 
|
| 60758 | 6842  | 
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
 | 
6843  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6844  | 
definition null :: "'a list \<Rightarrow> bool" where  | 
| 
46030
 
51b2f3412a03
attribute code_abbrev superseedes code_unfold_post; tuned text
 
haftmann 
parents: 
45993 
diff
changeset
 | 
6845  | 
[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
 | 
6846  | 
|
| 60758 | 6847  | 
text \<open>  | 
| 
37605
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6848  | 
  Efficient emptyness check is implemented by @{const null}.
 | 
| 60758 | 6849  | 
\<close>  | 
| 
37605
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6850  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6851  | 
lemma null_rec [code]:  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6852  | 
"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
 | 
6853  | 
"null [] \<longleftrightarrow> True"  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6854  | 
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
 | 
6855  | 
|
| 
46030
 
51b2f3412a03
attribute code_abbrev superseedes code_unfold_post; tuned text
 
haftmann 
parents: 
45993 
diff
changeset
 | 
6856  | 
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
 | 
6857  | 
"xs = [] \<longleftrightarrow> null xs"  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6858  | 
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
 | 
6859  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6860  | 
lemma equal_Nil_null [code_unfold]:  | 
| 
38857
 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 
haftmann 
parents: 
38715 
diff
changeset
 | 
6861  | 
"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
 | 
6862  | 
"HOL.equal [] = null"  | 
| 
 
36cf426cb1c6
Added symmetric code_unfold-lemmas for null and is_none
 
lammich <lammich@in.tum.de> 
parents: 
53721 
diff
changeset
 | 
6863  | 
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
 | 
6864  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6865  | 
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
 | 
6866  | 
[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
 | 
6867  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6868  | 
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
 | 
6869  | 
[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
 | 
6870  | 
|
| 60758 | 6871  | 
text \<open>  | 
| 
37605
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6872  | 
  Operations @{const maps} and @{const map_filter} avoid
 | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6873  | 
intermediate lists on execution -- do not use for proving.  | 
| 60758 | 6874  | 
\<close>  | 
| 
37605
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6875  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6876  | 
lemma maps_simps [code]:  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6877  | 
"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
 | 
6878  | 
"maps f [] = []"  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6879  | 
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
 | 
6880  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6881  | 
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
 | 
6882  | 
"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
 | 
6883  | 
"map_filter f [] = []"  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6884  | 
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
 | 
6885  | 
|
| 
46030
 
51b2f3412a03
attribute code_abbrev superseedes code_unfold_post; tuned text
 
haftmann 
parents: 
45993 
diff
changeset
 | 
6886  | 
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
 | 
6887  | 
"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
 | 
6888  | 
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
 | 
6889  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6890  | 
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
 | 
6891  | 
"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
 | 
6892  | 
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
 | 
6893  | 
|
| 61799 | 6894  | 
text \<open>Optimized code for \<open>\<forall>i\<in>{a..b::int}\<close> and \<open>\<forall>n:{a..<b::nat}\<close>
 | 
6895  | 
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
 | 
6896  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6897  | 
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
 | 
6898  | 
  "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
 | 
6899  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6900  | 
lemma [code]:  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6901  | 
"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
 | 
6902  | 
proof -  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6903  | 
  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
 | 
6904  | 
proof -  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6905  | 
fix n  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6906  | 
    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
 | 
6907  | 
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
 | 
6908  | 
qed  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6909  | 
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
 | 
6910  | 
qed  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6911  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6912  | 
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
 | 
6913  | 
"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
 | 
6914  | 
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
 | 
6915  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6916  | 
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
 | 
6917  | 
"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
 | 
6918  | 
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
 | 
6919  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6920  | 
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
 | 
6921  | 
  "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
 | 
6922  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6923  | 
lemma [code]:  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6924  | 
"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
 | 
6925  | 
proof -  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6926  | 
  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
 | 
6927  | 
proof -  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6928  | 
fix k  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6929  | 
    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
 | 
6930  | 
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
 | 
6931  | 
qed  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6932  | 
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
 | 
6933  | 
qed  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6934  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6935  | 
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
 | 
6936  | 
"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
 | 
6937  | 
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
 | 
6938  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
6939  | 
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
 | 
6940  | 
"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
 | 
6941  | 
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
 | 
6942  | 
|
| 60758 | 6943  | 
text \<open>optimized code (tail-recursive) for @{term length}\<close>
 | 
| 
49808
 
418991ce7567
tail-recursive implementation for length
 
Andreas Lochbihler 
parents: 
49757 
diff
changeset
 | 
6944  | 
|
| 
 
418991ce7567
tail-recursive implementation for length
 
Andreas Lochbihler 
parents: 
49757 
diff
changeset
 | 
6945  | 
definition gen_length :: "nat \<Rightarrow> 'a list \<Rightarrow> nat"  | 
| 
 
418991ce7567
tail-recursive implementation for length
 
Andreas Lochbihler 
parents: 
49757 
diff
changeset
 | 
6946  | 
where "gen_length n xs = n + length xs"  | 
| 
 
418991ce7567
tail-recursive implementation for length
 
Andreas Lochbihler 
parents: 
49757 
diff
changeset
 | 
6947  | 
|
| 
 
418991ce7567
tail-recursive implementation for length
 
Andreas Lochbihler 
parents: 
49757 
diff
changeset
 | 
6948  | 
lemma gen_length_code [code]:  | 
| 
 
418991ce7567
tail-recursive implementation for length
 
Andreas Lochbihler 
parents: 
49757 
diff
changeset
 | 
6949  | 
"gen_length n [] = n"  | 
| 
 
418991ce7567
tail-recursive implementation for length
 
Andreas Lochbihler 
parents: 
49757 
diff
changeset
 | 
6950  | 
"gen_length n (x # xs) = gen_length (Suc n) xs"  | 
| 
 
418991ce7567
tail-recursive implementation for length
 
Andreas Lochbihler 
parents: 
49757 
diff
changeset
 | 
6951  | 
by(simp_all add: gen_length_def)  | 
| 
 
418991ce7567
tail-recursive implementation for length
 
Andreas Lochbihler 
parents: 
49757 
diff
changeset
 | 
6952  | 
|
| 
 
418991ce7567
tail-recursive implementation for length
 
Andreas Lochbihler 
parents: 
49757 
diff
changeset
 | 
6953  | 
declare list.size(3-4)[code del]  | 
| 
 
418991ce7567
tail-recursive implementation for length
 
Andreas Lochbihler 
parents: 
49757 
diff
changeset
 | 
6954  | 
|
| 
 
418991ce7567
tail-recursive implementation for length
 
Andreas Lochbihler 
parents: 
49757 
diff
changeset
 | 
6955  | 
lemma length_code [code]: "length = gen_length 0"  | 
| 
 
418991ce7567
tail-recursive implementation for length
 
Andreas Lochbihler 
parents: 
49757 
diff
changeset
 | 
6956  | 
by(simp add: gen_length_def fun_eq_iff)  | 
| 
 
418991ce7567
tail-recursive implementation for length
 
Andreas Lochbihler 
parents: 
49757 
diff
changeset
 | 
6957  | 
|
| 
 
418991ce7567
tail-recursive implementation for length
 
Andreas Lochbihler 
parents: 
49757 
diff
changeset
 | 
6958  | 
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
 | 
6959  | 
|
| 
49948
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
6960  | 
|
| 60758 | 6961  | 
subsubsection \<open>Pretty lists\<close>  | 
6962  | 
||
6963  | 
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
 | 
6964  | 
(* 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
 | 
6965  | 
|
| 
 
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
 | 
6966  | 
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
 | 
6967  | 
sig  | 
| 
55148
 
7e1b7cb54114
avoid (now superfluous) indirect passing of constant names
 
haftmann 
parents: 
55147 
diff
changeset
 | 
6968  | 
val implode_list: Code_Thingol.iterm -> Code_Thingol.iterm list 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
 | 
6969  | 
val default_list: int * string  | 
| 
 
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
 | 
6970  | 
-> (Code_Printer.fixity -> Code_Thingol.iterm -> Pretty.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
 | 
6971  | 
-> Code_Printer.fixity -> Code_Thingol.iterm -> Code_Thingol.iterm -> Pretty.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
 | 
6972  | 
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
 | 
6973  | 
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
 | 
6974  | 
|
| 
 
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
 | 
6975  | 
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
 | 
6976  | 
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
 | 
6977  | 
|
| 
 
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
 | 
6978  | 
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
 | 
6979  | 
|
| 
55148
 
7e1b7cb54114
avoid (now superfluous) indirect passing of constant names
 
haftmann 
parents: 
55147 
diff
changeset
 | 
6980  | 
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
 | 
6981  | 
let  | 
| 
55148
 
7e1b7cb54114
avoid (now superfluous) indirect passing of constant names
 
haftmann 
parents: 
55147 
diff
changeset
 | 
6982  | 
    fun dest_cons (IConst { sym = Code_Symbol.Constant @{const_name Cons}, ... } `$ 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
 | 
6983  | 
| 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
 | 
6984  | 
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
 | 
6985  | 
in case t'  | 
| 
55148
 
7e1b7cb54114
avoid (now superfluous) indirect passing of constant names
 
haftmann 
parents: 
55147 
diff
changeset
 | 
6986  | 
   of IConst { sym = Code_Symbol.Constant @{const_name Nil}, ... } => 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
 | 
6987  | 
| _ => 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
 | 
6988  | 
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
 | 
6989  | 
|
| 
 
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
 | 
6990  | 
fun default_list (target_fxy, target_cons) pr fxy t1 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
 | 
6991  | 
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
 | 
6992  | 
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
 | 
6993  | 
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
 | 
6994  | 
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
 | 
6995  | 
);  | 
| 
 
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
 | 
6996  | 
|
| 
 
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
 | 
6997  | 
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
 | 
6998  | 
let  | 
| 
55148
 
7e1b7cb54114
avoid (now superfluous) indirect passing of constant names
 
haftmann 
parents: 
55147 
diff
changeset
 | 
6999  | 
fun pretty literals pr _ vars fxy [(t1, _), (t2, _)] =  | 
| 
 
7e1b7cb54114
avoid (now superfluous) indirect passing of constant names
 
haftmann 
parents: 
55147 
diff
changeset
 | 
7000  | 
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
 | 
7001  | 
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
 | 
7002  | 
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
 | 
7003  | 
| 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
 | 
7004  | 
default_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
 | 
7005  | 
in  | 
| 
 
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
 
haftmann 
parents: 
52380 
diff
changeset
 | 
7006  | 
    Code_Target.set_printings (Code_Symbol.Constant (@{const_name Cons},
 | 
| 
55148
 
7e1b7cb54114
avoid (now superfluous) indirect passing of constant names
 
haftmann 
parents: 
55147 
diff
changeset
 | 
7007  | 
[(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
 | 
7008  | 
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
 | 
7009  | 
|
| 
 
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
 | 
7010  | 
end;  | 
| 60758 | 7011  | 
\<close>  | 
| 
31055
 
2cf6efca6c71
proper structures for list and string code generation stuff
 
haftmann 
parents: 
31048 
diff
changeset
 | 
7012  | 
|
| 
52435
 
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
 
haftmann 
parents: 
52380 
diff
changeset
 | 
7013  | 
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
 | 
7014  | 
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
 | 
7015  | 
(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
 | 
7016  | 
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
 | 
7017  | 
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
 | 
7018  | 
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
 | 
7019  | 
| 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
 | 
7020  | 
(SML) "[]"  | 
| 
 
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
 
haftmann 
parents: 
52380 
diff
changeset
 | 
7021  | 
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
 | 
7022  | 
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
 | 
7023  | 
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
 | 
7024  | 
| 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
 | 
7025  | 
(Haskell) -  | 
| 
 
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
 
haftmann 
parents: 
52380 
diff
changeset
 | 
7026  | 
| 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
 | 
7027  | 
(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
 | 
7028  | 
|
| 60758 | 7029  | 
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
 | 
7030  | 
|
| 
 
ac146fc38b51
refined HOL string theories and corresponding ML fragments
 
haftmann 
parents: 
31022 
diff
changeset
 | 
7031  | 
code_reserved SML  | 
| 
 
ac146fc38b51
refined HOL string theories and corresponding ML fragments
 
haftmann 
parents: 
31022 
diff
changeset
 | 
7032  | 
list  | 
| 
 
ac146fc38b51
refined HOL string theories and corresponding ML fragments
 
haftmann 
parents: 
31022 
diff
changeset
 | 
7033  | 
|
| 
 
ac146fc38b51
refined HOL string theories and corresponding ML fragments
 
haftmann 
parents: 
31022 
diff
changeset
 | 
7034  | 
code_reserved OCaml  | 
| 
 
ac146fc38b51
refined HOL string theories and corresponding ML fragments
 
haftmann 
parents: 
31022 
diff
changeset
 | 
7035  | 
list  | 
| 
 
ac146fc38b51
refined HOL string theories and corresponding ML fragments
 
haftmann 
parents: 
31022 
diff
changeset
 | 
7036  | 
|
| 
21061
 
580dfc999ef6
added normal post setup; cleaned up "execution" constants
 
haftmann 
parents: 
21046 
diff
changeset
 | 
7037  | 
|
| 60758 | 7038  | 
subsubsection \<open>Use convenient predefined operations\<close>  | 
| 
37424
 
ed431cc99f17
use various predefined Haskell operations when generating code
 
haftmann 
parents: 
37408 
diff
changeset
 | 
7039  | 
|
| 
52435
 
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
 
haftmann 
parents: 
52380 
diff
changeset
 | 
7040  | 
code_printing  | 
| 67399 | 7041  | 
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
 | 
7042  | 
(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
 | 
7043  | 
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
 | 
7044  | 
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
 | 
7045  | 
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
 | 
7046  | 
| 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
 | 
7047  | 
(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
 | 
7048  | 
| 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
 | 
7049  | 
(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
 | 
7050  | 
| 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
 | 
7051  | 
(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
 | 
7052  | 
| 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
 | 
7053  | 
(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
 | 
7054  | 
| 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
 | 
7055  | 
(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
 | 
7056  | 
| 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
 | 
7057  | 
(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
 | 
7058  | 
| 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
 | 
7059  | 
(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
 | 
7060  | 
| 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
 | 
7061  | 
(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
 | 
7062  | 
| 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
 | 
7063  | 
(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
 | 
7064  | 
| 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
 | 
7065  | 
(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
 | 
7066  | 
| 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
 | 
7067  | 
(Haskell) "any"  | 
| 
37605
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7068  | 
|
| 
46147
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7069  | 
|
| 60758 | 7070  | 
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
 | 
7071  | 
|
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7072  | 
lemma is_empty_set [code]:  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7073  | 
"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
 | 
7074  | 
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
 | 
7075  | 
|
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7076  | 
lemma empty_set [code]:  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7077  | 
  "{} = set []"
 | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7078  | 
by simp  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7079  | 
|
| 46156 | 7080  | 
lemma UNIV_coset [code]:  | 
7081  | 
"UNIV = List.coset []"  | 
|
7082  | 
by simp  | 
|
7083  | 
||
7084  | 
lemma compl_set [code]:  | 
|
7085  | 
"- set xs = List.coset xs"  | 
|
7086  | 
by simp  | 
|
7087  | 
||
7088  | 
lemma compl_coset [code]:  | 
|
7089  | 
"- List.coset xs = set xs"  | 
|
7090  | 
by simp  | 
|
7091  | 
||
| 
46147
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7092  | 
lemma [code]:  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7093  | 
"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
 | 
7094  | 
"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
 | 
7095  | 
by (simp_all add: member_def)  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7096  | 
|
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7097  | 
lemma insert_code [code]:  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7098  | 
"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
 | 
7099  | 
"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
 | 
7100  | 
by simp_all  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7101  | 
|
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7102  | 
lemma remove_code [code]:  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7103  | 
"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
 | 
7104  | 
"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
 | 
7105  | 
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
 | 
7106  | 
|
| 
49757
 
73ab6d4a9236
rename Set.project to Set.filter - more appropriate name
 
kuncar 
parents: 
49739 
diff
changeset
 | 
7107  | 
lemma filter_set [code]:  | 
| 
 
73ab6d4a9236
rename Set.project to Set.filter - more appropriate name
 
kuncar 
parents: 
49739 
diff
changeset
 | 
7108  | 
"Set.filter P (set xs) = set (filter P xs)"  | 
| 46156 | 7109  | 
by auto  | 
7110  | 
||
7111  | 
lemma image_set [code]:  | 
|
7112  | 
"image f (set xs) = set (map f xs)"  | 
|
7113  | 
by simp  | 
|
7114  | 
||
| 47398 | 7115  | 
lemma subset_code [code]:  | 
7116  | 
"set xs \<le> B \<longleftrightarrow> (\<forall>x\<in>set xs. x \<in> B)"  | 
|
7117  | 
"A \<le> List.coset ys \<longleftrightarrow> (\<forall>y\<in>set ys. y \<notin> A)"  | 
|
7118  | 
"List.coset [] \<le> set [] \<longleftrightarrow> False"  | 
|
7119  | 
by auto  | 
|
7120  | 
||
| 60758 | 7121  | 
text \<open>A frequent case -- avoid intermediate sets\<close>  | 
| 47398 | 7122  | 
lemma [code_unfold]:  | 
7123  | 
"set xs \<subseteq> set ys \<longleftrightarrow> list_all (\<lambda>x. x \<in> set ys) xs"  | 
|
7124  | 
by (auto simp: list_all_iff)  | 
|
7125  | 
||
| 
46147
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7126  | 
lemma Ball_set [code]:  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7127  | 
"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
 | 
7128  | 
by (simp add: list_all_iff)  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7129  | 
|
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7130  | 
lemma Bex_set [code]:  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7131  | 
"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
 | 
7132  | 
by (simp add: list_ex_iff)  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7133  | 
|
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7134  | 
lemma card_set [code]:  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7135  | 
"card (set xs) = length (remdups xs)"  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7136  | 
proof -  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7137  | 
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
 | 
7138  | 
by (rule distinct_card) simp  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7139  | 
then show ?thesis by simp  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7140  | 
qed  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7141  | 
|
| 46156 | 7142  | 
lemma the_elem_set [code]:  | 
7143  | 
"the_elem (set [x]) = x"  | 
|
7144  | 
by simp  | 
|
7145  | 
||
7146  | 
lemma Pow_set [code]:  | 
|
7147  | 
  "Pow (set []) = {{}}"
 | 
|
7148  | 
"Pow (set (x # xs)) = (let A = Pow (set xs) in A \<union> insert x ` A)"  | 
|
7149  | 
by (simp_all add: Pow_insert Let_def)  | 
|
7150  | 
||
| 
46424
 
b447318e5e1a
adding code equation for Relation.image; adding map_project as correspondence to map_filter on lists
 
bulwahn 
parents: 
46418 
diff
changeset
 | 
7151  | 
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
 | 
7152  | 
  "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
 | 
7153  | 
|
| 
 
b447318e5e1a
adding code equation for Relation.image; adding map_project as correspondence to map_filter on lists
 
bulwahn 
parents: 
46418 
diff
changeset
 | 
7154  | 
lemma [code]:  | 
| 
 
b447318e5e1a
adding code equation for Relation.image; adding map_project as correspondence to map_filter on lists
 
bulwahn 
parents: 
46418 
diff
changeset
 | 
7155  | 
"map_project f (set xs) = set (List.map_filter f xs)"  | 
| 47398 | 7156  | 
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
 | 
7157  | 
|
| 
 
b447318e5e1a
adding code equation for Relation.image; adding map_project as correspondence to map_filter on lists
 
bulwahn 
parents: 
46418 
diff
changeset
 | 
7158  | 
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
 | 
7159  | 
|
| 
49948
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
7160  | 
|
| 60758 | 7161  | 
text \<open>Operations on relations\<close>  | 
| 
46147
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7162  | 
|
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7163  | 
lemma product_code [code]:  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7164  | 
"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
 | 
7165  | 
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
 | 
7166  | 
|
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7167  | 
lemma Id_on_set [code]:  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7168  | 
"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
 | 
7169  | 
by (auto simp add: Id_on_def)  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7170  | 
|
| 
46424
 
b447318e5e1a
adding code equation for Relation.image; adding map_project as correspondence to map_filter on lists
 
bulwahn 
parents: 
46418 
diff
changeset
 | 
7171  | 
lemma [code]:  | 
| 67613 | 7172  | 
"R `` S = List.map_project (\<lambda>(x, y). if x \<in> S then Some y else None) R"  | 
| 62390 | 7173  | 
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
 | 
7174  | 
|
| 
46147
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7175  | 
lemma trancl_set_ntrancl [code]:  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7176  | 
"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
 | 
7177  | 
by (simp add: finite_trancl_ntranl)  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7178  | 
|
| 
47433
 
07f4bf913230
renamed "rel_comp" to "relcomp" (to be consistent with, e.g., "relpow")
 
griff 
parents: 
47131 
diff
changeset
 | 
7179  | 
lemma set_relcomp [code]:  | 
| 
46147
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7180  | 
"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
 | 
7181  | 
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
 | 
7182  | 
|
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7183  | 
lemma wf_set [code]:  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7184  | 
"wf (set xs) = acyclic (set xs)"  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7185  | 
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
 | 
7186  | 
|
| 
55129
 
26bd1cba3ab5
killed 'More_BNFs' by moving its various bits where they (now) belong
 
blanchet 
parents: 
54890 
diff
changeset
 | 
7187  | 
|
| 60758 | 7188  | 
subsection \<open>Setup for Lifting/Transfer\<close>  | 
7189  | 
||
7190  | 
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
 | 
7191  | 
|
| 63343 | 7192  | 
context includes lifting_syntax  | 
| 
53012
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7193  | 
begin  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7194  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7195  | 
lemma tl_transfer [transfer_rule]:  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7196  | 
"(list_all2 A ===> list_all2 A) tl tl"  | 
| 
55405
 
0a155051bd9d
use new selector support to define 'the', 'hd', 'tl'
 
blanchet 
parents: 
55404 
diff
changeset
 | 
7197  | 
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
 | 
7198  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7199  | 
lemma butlast_transfer [transfer_rule]:  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7200  | 
"(list_all2 A ===> list_all2 A) butlast butlast"  | 
| 55945 | 7201  | 
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
 | 
7202  | 
|
| 55465 | 7203  | 
lemma map_rec: "map f xs = rec_list Nil (%x _ y. Cons (f x) y) xs"  | 
7204  | 
by (induct xs) auto  | 
|
7205  | 
||
| 
53012
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7206  | 
lemma append_transfer [transfer_rule]:  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7207  | 
"(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
 | 
7208  | 
unfolding List.append_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7209  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7210  | 
lemma rev_transfer [transfer_rule]:  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7211  | 
"(list_all2 A ===> list_all2 A) rev rev"  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7212  | 
unfolding List.rev_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7213  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7214  | 
lemma filter_transfer [transfer_rule]:  | 
| 67399 | 7215  | 
"((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
 | 
7216  | 
unfolding List.filter_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7217  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7218  | 
lemma fold_transfer [transfer_rule]:  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7219  | 
"((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
 | 
7220  | 
unfolding List.fold_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7221  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7222  | 
lemma foldr_transfer [transfer_rule]:  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7223  | 
"((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
 | 
7224  | 
unfolding List.foldr_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7225  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7226  | 
lemma foldl_transfer [transfer_rule]:  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7227  | 
"((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
 | 
7228  | 
unfolding List.foldl_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7229  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7230  | 
lemma concat_transfer [transfer_rule]:  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7231  | 
"(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
 | 
7232  | 
unfolding List.concat_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7233  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7234  | 
lemma drop_transfer [transfer_rule]:  | 
| 67399 | 7235  | 
"((=) ===> 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
 | 
7236  | 
unfolding List.drop_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7237  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7238  | 
lemma take_transfer [transfer_rule]:  | 
| 67399 | 7239  | 
"((=) ===> 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
 | 
7240  | 
unfolding List.take_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7241  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7242  | 
lemma list_update_transfer [transfer_rule]:  | 
| 67399 | 7243  | 
"(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
 | 
7244  | 
unfolding list_update_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7245  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7246  | 
lemma takeWhile_transfer [transfer_rule]:  | 
| 67399 | 7247  | 
"((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
 | 
7248  | 
unfolding takeWhile_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7249  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7250  | 
lemma dropWhile_transfer [transfer_rule]:  | 
| 67399 | 7251  | 
"((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
 | 
7252  | 
unfolding dropWhile_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7253  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7254  | 
lemma zip_transfer [transfer_rule]:  | 
| 55944 | 7255  | 
"(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
 | 
7256  | 
unfolding zip_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7257  | 
|
| 
53721
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
7258  | 
lemma product_transfer [transfer_rule]:  | 
| 55944 | 7259  | 
"(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
 | 
7260  | 
unfolding List.product_def by transfer_prover  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
7261  | 
|
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
7262  | 
lemma product_lists_transfer [transfer_rule]:  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
7263  | 
"(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
 | 
7264  | 
unfolding product_lists_def by transfer_prover  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
7265  | 
|
| 
53012
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7266  | 
lemma insert_transfer [transfer_rule]:  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7267  | 
assumes [transfer_rule]: "bi_unique A"  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7268  | 
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
 | 
7269  | 
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
 | 
7270  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7271  | 
lemma find_transfer [transfer_rule]:  | 
| 67399 | 7272  | 
"((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
 | 
7273  | 
unfolding List.find_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7274  | 
|
| 
63521
 
32da860241b8
added missing transfer rule
 
Lars Hupel <lars.hupel@mytum.de> 
parents: 
63365 
diff
changeset
 | 
7275  | 
lemma those_transfer [transfer_rule]:  | 
| 
 
32da860241b8
added missing transfer rule
 
Lars Hupel <lars.hupel@mytum.de> 
parents: 
63365 
diff
changeset
 | 
7276  | 
"(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
 | 
7277  | 
unfolding List.those_def by transfer_prover  | 
| 
 
32da860241b8
added missing transfer rule
 
Lars Hupel <lars.hupel@mytum.de> 
parents: 
63365 
diff
changeset
 | 
7278  | 
|
| 
53012
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7279  | 
lemma remove1_transfer [transfer_rule]:  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7280  | 
assumes [transfer_rule]: "bi_unique A"  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7281  | 
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
 | 
7282  | 
unfolding remove1_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7283  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7284  | 
lemma removeAll_transfer [transfer_rule]:  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7285  | 
assumes [transfer_rule]: "bi_unique A"  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7286  | 
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
 | 
7287  | 
unfolding removeAll_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7288  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7289  | 
lemma distinct_transfer [transfer_rule]:  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7290  | 
assumes [transfer_rule]: "bi_unique A"  | 
| 67399 | 7291  | 
shows "(list_all2 A ===> (=)) distinct distinct"  | 
| 
53012
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7292  | 
unfolding distinct_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7293  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7294  | 
lemma remdups_transfer [transfer_rule]:  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7295  | 
assumes [transfer_rule]: "bi_unique A"  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7296  | 
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
 | 
7297  | 
unfolding remdups_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7298  | 
|
| 
53721
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
7299  | 
lemma remdups_adj_transfer [transfer_rule]:  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
7300  | 
assumes [transfer_rule]: "bi_unique A"  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
7301  | 
shows "(list_all2 A ===> list_all2 A) remdups_adj remdups_adj"  | 
| 55945 | 7302  | 
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
 | 
7303  | 
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
 | 
7304  | 
|
| 
53012
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7305  | 
lemma replicate_transfer [transfer_rule]:  | 
| 67399 | 7306  | 
"((=) ===> A ===> list_all2 A) replicate replicate"  | 
| 
53012
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7307  | 
unfolding replicate_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7308  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7309  | 
lemma length_transfer [transfer_rule]:  | 
| 67399 | 7310  | 
"(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
 | 
7311  | 
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
 | 
7312  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7313  | 
lemma rotate1_transfer [transfer_rule]:  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7314  | 
"(list_all2 A ===> list_all2 A) rotate1 rotate1"  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7315  | 
unfolding rotate1_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7316  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7317  | 
lemma rotate_transfer [transfer_rule]:  | 
| 67399 | 7318  | 
"((=) ===> 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
 | 
7319  | 
unfolding rotate_def [abs_def] by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7320  | 
|
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
7321  | 
lemma nths_transfer [transfer_rule]:  | 
| 67399 | 7322  | 
"(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
 | 
7323  | 
unfolding nths_def [abs_def] by transfer_prover  | 
| 66892 | 7324  | 
|
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
7325  | 
lemma subseqs_transfer [transfer_rule]:  | 
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
7326  | 
"(list_all2 A ===> list_all2 (list_all2 A)) subseqs subseqs"  | 
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
7327  | 
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
 | 
7328  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7329  | 
lemma partition_transfer [transfer_rule]:  | 
| 67399 | 7330  | 
"((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
 | 
7331  | 
partition partition"  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7332  | 
unfolding partition_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7333  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7334  | 
lemma lists_transfer [transfer_rule]:  | 
| 55938 | 7335  | 
"(rel_set A ===> rel_set (list_all2 A)) lists lists"  | 
| 55945 | 7336  | 
apply (rule rel_funI, rule rel_setI)  | 
| 
53012
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7337  | 
apply (erule lists.induct, simp)  | 
| 55938 | 7338  | 
apply (simp only: rel_set_def list_all2_Cons1, metis lists.Cons)  | 
| 
53012
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7339  | 
apply (erule lists.induct, simp)  | 
| 55938 | 7340  | 
apply (simp only: rel_set_def list_all2_Cons2, metis lists.Cons)  | 
| 
53012
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7341  | 
done  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7342  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7343  | 
lemma set_Cons_transfer [transfer_rule]:  | 
| 55938 | 7344  | 
"(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
 | 
7345  | 
set_Cons set_Cons"  | 
| 55945 | 7346  | 
unfolding rel_fun_def rel_set_def set_Cons_def  | 
| 
53012
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7347  | 
apply safe  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7348  | 
apply (simp add: list_all2_Cons1, fast)  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7349  | 
apply (simp add: list_all2_Cons2, fast)  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7350  | 
done  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7351  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7352  | 
lemma listset_transfer [transfer_rule]:  | 
| 55938 | 7353  | 
"(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
 | 
7354  | 
unfolding listset_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7355  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7356  | 
lemma null_transfer [transfer_rule]:  | 
| 67399 | 7357  | 
"(list_all2 A ===> (=)) List.null List.null"  | 
| 55945 | 7358  | 
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
 | 
7359  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7360  | 
lemma list_all_transfer [transfer_rule]:  | 
| 67399 | 7361  | 
"((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
 | 
7362  | 
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
 | 
7363  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7364  | 
lemma list_ex_transfer [transfer_rule]:  | 
| 67399 | 7365  | 
"((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
 | 
7366  | 
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
 | 
7367  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7368  | 
lemma splice_transfer [transfer_rule]:  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7369  | 
"(list_all2 A ===> list_all2 A ===> list_all2 A) splice splice"  | 
| 55945 | 7370  | 
apply (rule rel_funI, erule list_all2_induct, simp add: rel_fun_def, simp)  | 
7371  | 
apply (rule rel_funI)  | 
|
7372  | 
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
 | 
7373  | 
done  | 
| 66892 | 7374  | 
|
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
7375  | 
lemma shuffle_transfer [transfer_rule]:  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
7376  | 
"(list_all2 A ===> list_all2 A ===> rel_set (list_all2 A)) shuffle shuffle"  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
7377  | 
proof (intro rel_funI, goal_cases)  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
7378  | 
case (1 xs xs' ys ys')  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
7379  | 
thus ?case  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
7380  | 
proof (induction xs ys arbitrary: xs' ys' rule: shuffle.induct)  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
7381  | 
case (3 x xs y ys xs' ys')  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
7382  | 
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
 | 
7383  | 
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
 | 
7384  | 
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
 | 
7385  | 
using "3.prems" by (simp_all add: xs' ys')  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
7386  | 
have [transfer_rule]: "rel_set (list_all2 A) (shuffle xs (y # ys)) (shuffle xs'' ys')" and  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
7387  | 
[transfer_rule]: "rel_set (list_all2 A) (shuffle (x # xs) ys) (shuffle xs' ys'')"  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
7388  | 
using "3.prems" by (auto intro!: "3.IH" simp: xs' ys')  | 
| 67399 | 7389  | 
have "rel_set (list_all2 A) ((#) x ` shuffle xs (y # ys) \<union> (#) y ` shuffle (x # xs) ys)  | 
7390  | 
((#) x' ` shuffle xs'' ys' \<union> (#) y' ` shuffle xs' ys'')" by transfer_prover  | 
|
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
7391  | 
thus ?case by (simp add: xs' ys')  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
7392  | 
qed (auto simp: rel_set_def)  | 
| 66892 | 7393  | 
qed  | 
| 
53012
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7394  | 
|
| 57599 | 7395  | 
lemma rtrancl_parametric [transfer_rule]:  | 
7396  | 
assumes [transfer_rule]: "bi_unique A" "bi_total A"  | 
|
7397  | 
shows "(rel_set (rel_prod A A) ===> rel_set (rel_prod A A)) rtrancl rtrancl"  | 
|
7398  | 
unfolding rtrancl_def by transfer_prover  | 
|
7399  | 
||
| 
59516
 
d92b74f3f6e3
add parametricity rules for monotone, fun_lub, and fun_ord
 
Andreas Lochbihler 
parents: 
59199 
diff
changeset
 | 
7400  | 
lemma monotone_parametric [transfer_rule]:  | 
| 
 
d92b74f3f6e3
add parametricity rules for monotone, fun_lub, and fun_ord
 
Andreas Lochbihler 
parents: 
59199 
diff
changeset
 | 
7401  | 
assumes [transfer_rule]: "bi_total A"  | 
| 67399 | 7402  | 
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
 | 
7403  | 
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
 | 
7404  | 
|
| 
 
d92b74f3f6e3
add parametricity rules for monotone, fun_lub, and fun_ord
 
Andreas Lochbihler 
parents: 
59199 
diff
changeset
 | 
7405  | 
lemma fun_ord_parametric [transfer_rule]:  | 
| 
 
d92b74f3f6e3
add parametricity rules for monotone, fun_lub, and fun_ord
 
Andreas Lochbihler 
parents: 
59199 
diff
changeset
 | 
7406  | 
assumes [transfer_rule]: "bi_total C"  | 
| 67399 | 7407  | 
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
 | 
7408  | 
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
 | 
7409  | 
|
| 
 
d92b74f3f6e3
add parametricity rules for monotone, fun_lub, and fun_ord
 
Andreas Lochbihler 
parents: 
59199 
diff
changeset
 | 
7410  | 
lemma fun_lub_parametric [transfer_rule]:  | 
| 
 
d92b74f3f6e3
add parametricity rules for monotone, fun_lub, and fun_ord
 
Andreas Lochbihler 
parents: 
59199 
diff
changeset
 | 
7411  | 
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
 | 
7412  | 
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
 | 
7413  | 
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
 | 
7414  | 
|
| 23388 | 7415  | 
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
 | 
7416  | 
|
| 
53012
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
7417  | 
end  |