| author | wenzelm | 
| Sun, 25 Jul 2021 16:38:16 +0200 | |
| changeset 74066 | b3f072aa4690 | 
| parent 73932 | fd21b4a93043 | 
| child 74101 | d804e93ae9ff | 
| permissions | -rw-r--r-- | 
| 13462 | 1  | 
(* Title: HOL/List.thy  | 
| 68709 | 2  | 
Author: Tobias Nipkow; proofs tidied by LCP  | 
| 923 | 3  | 
*)  | 
4  | 
||
| 60758 | 5  | 
section \<open>The datatype of finite lists\<close>  | 
| 13122 | 6  | 
|
| 15131 | 7  | 
theory List  | 
| 58916 | 8  | 
imports Sledgehammer Code_Numeral Lifting_Set  | 
| 15131 | 9  | 
begin  | 
| 923 | 10  | 
|
| 58310 | 11  | 
datatype (set: 'a) list =  | 
| 
57200
 
aab87ffa60cc
use 'where' clause for selector default value syntax
 
blanchet 
parents: 
57198 
diff
changeset
 | 
12  | 
    Nil  ("[]")
 | 
| 
55405
 
0a155051bd9d
use new selector support to define 'the', 'hd', 'tl'
 
blanchet 
parents: 
55404 
diff
changeset
 | 
13  | 
| Cons (hd: 'a) (tl: "'a list") (infixr "#" 65)  | 
| 
57206
 
d9be905d6283
changed syntax of map: and rel: arguments to BNF-based datatypes
 
blanchet 
parents: 
57200 
diff
changeset
 | 
14  | 
for  | 
| 
 
d9be905d6283
changed syntax of map: and rel: arguments to BNF-based datatypes
 
blanchet 
parents: 
57200 
diff
changeset
 | 
15  | 
map: map  | 
| 
 
d9be905d6283
changed syntax of map: and rel: arguments to BNF-based datatypes
 
blanchet 
parents: 
57200 
diff
changeset
 | 
16  | 
rel: list_all2  | 
| 62328 | 17  | 
pred: list_all  | 
| 
57200
 
aab87ffa60cc
use 'where' clause for selector default value syntax
 
blanchet 
parents: 
57198 
diff
changeset
 | 
18  | 
where  | 
| 
 
aab87ffa60cc
use 'where' clause for selector default value syntax
 
blanchet 
parents: 
57198 
diff
changeset
 | 
19  | 
"tl [] = []"  | 
| 
57123
 
b5324647e0f1
tuned whitespace, to make datatype definitions slightly less intimidating
 
blanchet 
parents: 
57091 
diff
changeset
 | 
20  | 
|
| 
55531
 
601ca8efa000
renamed 'datatype_new_compat' to 'datatype_compat'
 
blanchet 
parents: 
55525 
diff
changeset
 | 
21  | 
datatype_compat list  | 
| 
55404
 
5cb95b79a51f
transformed 'option' and 'list' into new-style datatypes (but register them as old-style as well)
 
blanchet 
parents: 
55148 
diff
changeset
 | 
22  | 
|
| 55406 | 23  | 
lemma [case_names Nil Cons, cases type: list]:  | 
| 61799 | 24  | 
\<comment> \<open>for backward compatibility -- names of variables differ\<close>  | 
| 55406 | 25  | 
"(y = [] \<Longrightarrow> P) \<Longrightarrow> (\<And>a list. y = a # list \<Longrightarrow> P) \<Longrightarrow> P"  | 
26  | 
by (rule list.exhaust)  | 
|
27  | 
||
28  | 
lemma [case_names Nil Cons, induct type: list]:  | 
|
| 61799 | 29  | 
\<comment> \<open>for backward compatibility -- names of variables differ\<close>  | 
| 55406 | 30  | 
"P [] \<Longrightarrow> (\<And>a list. P list \<Longrightarrow> P (a # list)) \<Longrightarrow> P list"  | 
31  | 
by (rule list.induct)  | 
|
32  | 
||
| 60758 | 33  | 
text \<open>Compatibility:\<close>  | 
34  | 
||
35  | 
setup \<open>Sign.mandatory_path "list"\<close>  | 
|
| 
55404
 
5cb95b79a51f
transformed 'option' and 'list' into new-style datatypes (but register them as old-style as well)
 
blanchet 
parents: 
55148 
diff
changeset
 | 
36  | 
|
| 
 
5cb95b79a51f
transformed 'option' and 'list' into new-style datatypes (but register them as old-style as well)
 
blanchet 
parents: 
55148 
diff
changeset
 | 
37  | 
lemmas inducts = list.induct  | 
| 
 
5cb95b79a51f
transformed 'option' and 'list' into new-style datatypes (but register them as old-style as well)
 
blanchet 
parents: 
55148 
diff
changeset
 | 
38  | 
lemmas recs = list.rec  | 
| 
 
5cb95b79a51f
transformed 'option' and 'list' into new-style datatypes (but register them as old-style as well)
 
blanchet 
parents: 
55148 
diff
changeset
 | 
39  | 
lemmas cases = list.case  | 
| 
 
5cb95b79a51f
transformed 'option' and 'list' into new-style datatypes (but register them as old-style as well)
 
blanchet 
parents: 
55148 
diff
changeset
 | 
40  | 
|
| 60758 | 41  | 
setup \<open>Sign.parent_path\<close>  | 
| 
55404
 
5cb95b79a51f
transformed 'option' and 'list' into new-style datatypes (but register them as old-style as well)
 
blanchet 
parents: 
55148 
diff
changeset
 | 
42  | 
|
| 
57816
 
d8bbb97689d3
no need for 'set_simps' now that 'datatype_new' generates the desired 'set' property
 
blanchet 
parents: 
57599 
diff
changeset
 | 
43  | 
lemmas set_simps = list.set (* legacy *)  | 
| 
 
d8bbb97689d3
no need for 'set_simps' now that 'datatype_new' generates the desired 'set' property
 
blanchet 
parents: 
57599 
diff
changeset
 | 
44  | 
|
| 34941 | 45  | 
syntax  | 
| 61799 | 46  | 
\<comment> \<open>list Enumeration\<close>  | 
| 35115 | 47  | 
  "_list" :: "args => 'a list"    ("[(_)]")
 | 
| 34941 | 48  | 
|
49  | 
translations  | 
|
50  | 
"[x, xs]" == "x#[xs]"  | 
|
51  | 
"[x]" == "x#[]"  | 
|
52  | 
||
| 35115 | 53  | 
|
| 60758 | 54  | 
subsection \<open>Basic list processing functions\<close>  | 
| 15302 | 55  | 
|
| 58135 | 56  | 
primrec (nonexhaustive) last :: "'a list \<Rightarrow> 'a" where  | 
| 50548 | 57  | 
"last (x # xs) = (if xs = [] then x else last xs)"  | 
58  | 
||
59  | 
primrec butlast :: "'a list \<Rightarrow> 'a list" where  | 
|
| 
57816
 
d8bbb97689d3
no need for 'set_simps' now that 'datatype_new' generates the desired 'set' property
 
blanchet 
parents: 
57599 
diff
changeset
 | 
60  | 
"butlast [] = []" |  | 
| 50548 | 61  | 
"butlast (x # xs) = (if xs = [] then [] else x # butlast xs)"  | 
62  | 
||
| 55584 | 63  | 
lemma set_rec: "set xs = rec_list {} (\<lambda>x _. insert x) xs"
 | 
64  | 
by (induct xs) auto  | 
|
| 50548 | 65  | 
|
66  | 
definition coset :: "'a list \<Rightarrow> 'a set" where  | 
|
67  | 
[simp]: "coset xs = - set xs"  | 
|
68  | 
||
69  | 
primrec append :: "'a list \<Rightarrow> 'a list \<Rightarrow> 'a list" (infixr "@" 65) where  | 
|
70  | 
append_Nil: "[] @ ys = ys" |  | 
|
71  | 
append_Cons: "(x#xs) @ ys = x # xs @ ys"  | 
|
72  | 
||
73  | 
primrec rev :: "'a list \<Rightarrow> 'a list" where  | 
|
74  | 
"rev [] = []" |  | 
|
75  | 
"rev (x # xs) = rev xs @ [x]"  | 
|
76  | 
||
77  | 
primrec filter:: "('a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> 'a list" where
 | 
|
78  | 
"filter P [] = []" |  | 
|
79  | 
"filter P (x # xs) = (if P x then x # filter P xs else filter P xs)"  | 
|
| 34941 | 80  | 
|
| 
68249
 
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
 
nipkow 
parents: 
68215 
diff
changeset
 | 
81  | 
text \<open>Special input syntax for filter:\<close>  | 
| 
61955
 
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
 
wenzelm 
parents: 
61941 
diff
changeset
 | 
82  | 
syntax (ASCII)  | 
| 
 
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
 
wenzelm 
parents: 
61941 
diff
changeset
 | 
83  | 
  "_filter" :: "[pttrn, 'a list, bool] => 'a list"  ("(1[_<-_./ _])")
 | 
| 34941 | 84  | 
syntax  | 
| 
61955
 
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
 
wenzelm 
parents: 
61941 
diff
changeset
 | 
85  | 
  "_filter" :: "[pttrn, 'a list, bool] => 'a list"  ("(1[_\<leftarrow>_ ./ _])")
 | 
| 34941 | 86  | 
translations  | 
| 
68249
 
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
 
nipkow 
parents: 
68215 
diff
changeset
 | 
87  | 
"[x<-xs . P]" \<rightharpoonup> "CONST filter (\<lambda>x. P) xs"  | 
| 34941 | 88  | 
|
| 50548 | 89  | 
primrec fold :: "('a \<Rightarrow> 'b \<Rightarrow> 'b) \<Rightarrow> 'a list \<Rightarrow> 'b \<Rightarrow> 'b" where
 | 
90  | 
fold_Nil: "fold f [] = id" |  | 
|
91  | 
fold_Cons: "fold f (x # xs) = fold f xs \<circ> f x"  | 
|
92  | 
||
93  | 
primrec foldr :: "('a \<Rightarrow> 'b \<Rightarrow> 'b) \<Rightarrow> 'a list \<Rightarrow> 'b \<Rightarrow> 'b" where
 | 
|
94  | 
foldr_Nil: "foldr f [] = id" |  | 
|
95  | 
foldr_Cons: "foldr f (x # xs) = f x \<circ> foldr f xs"  | 
|
96  | 
||
97  | 
primrec foldl :: "('b \<Rightarrow> 'a \<Rightarrow> 'b) \<Rightarrow> 'b \<Rightarrow> 'a list \<Rightarrow> 'b" where
 | 
|
98  | 
foldl_Nil: "foldl f a [] = a" |  | 
|
99  | 
foldl_Cons: "foldl f a (x # xs) = foldl f (f a x) xs"  | 
|
100  | 
||
101  | 
primrec concat:: "'a list list \<Rightarrow> 'a list" where  | 
|
102  | 
"concat [] = []" |  | 
|
103  | 
"concat (x # xs) = x @ concat xs"  | 
|
104  | 
||
105  | 
primrec drop:: "nat \<Rightarrow> 'a list \<Rightarrow> 'a list" where  | 
|
106  | 
drop_Nil: "drop n [] = []" |  | 
|
107  | 
drop_Cons: "drop n (x # xs) = (case n of 0 \<Rightarrow> x # xs | Suc m \<Rightarrow> drop m xs)"  | 
|
| 61799 | 108  | 
\<comment> \<open>Warning: simpset does not contain this definition, but separate  | 
109  | 
theorems for \<open>n = 0\<close> and \<open>n = Suc k\<close>\<close>  | 
|
| 34941 | 110  | 
|
| 50548 | 111  | 
primrec take:: "nat \<Rightarrow> 'a list \<Rightarrow> 'a list" where  | 
112  | 
take_Nil:"take n [] = []" |  | 
|
113  | 
take_Cons: "take n (x # xs) = (case n of 0 \<Rightarrow> [] | Suc m \<Rightarrow> x # take m xs)"  | 
|
| 61799 | 114  | 
\<comment> \<open>Warning: simpset does not contain this definition, but separate  | 
115  | 
theorems for \<open>n = 0\<close> and \<open>n = Suc k\<close>\<close>  | 
|
| 34941 | 116  | 
|
| 58135 | 117  | 
primrec (nonexhaustive) nth :: "'a list => nat => 'a" (infixl "!" 100) where  | 
| 50548 | 118  | 
nth_Cons: "(x # xs) ! n = (case n of 0 \<Rightarrow> x | Suc k \<Rightarrow> xs ! k)"  | 
| 61799 | 119  | 
\<comment> \<open>Warning: simpset does not contain this definition, but separate  | 
120  | 
theorems for \<open>n = 0\<close> and \<open>n = Suc k\<close>\<close>  | 
|
| 34941 | 121  | 
|
| 50548 | 122  | 
primrec list_update :: "'a list \<Rightarrow> nat \<Rightarrow> 'a \<Rightarrow> 'a list" where  | 
123  | 
"list_update [] i v = []" |  | 
|
124  | 
"list_update (x # xs) i v =  | 
|
125  | 
(case i of 0 \<Rightarrow> v # xs | Suc j \<Rightarrow> x # list_update xs j v)"  | 
|
| 923 | 126  | 
|
| 
41229
 
d797baa3d57c
replaced command 'nonterminals' by slightly modernized version 'nonterminal';
 
wenzelm 
parents: 
41075 
diff
changeset
 | 
127  | 
nonterminal lupdbinds and lupdbind  | 
| 
5077
 
71043526295f
* HOL/List: new function list_update written xs[i:=v] that updates the i-th
 
nipkow 
parents: 
4643 
diff
changeset
 | 
128  | 
|
| 923 | 129  | 
syntax  | 
| 13366 | 130  | 
  "_lupdbind":: "['a, 'a] => lupdbind"    ("(2_ :=/ _)")
 | 
131  | 
  "" :: "lupdbind => lupdbinds"    ("_")
 | 
|
132  | 
  "_lupdbinds" :: "[lupdbind, lupdbinds] => lupdbinds"    ("_,/ _")
 | 
|
| 69084 | 133  | 
  "_LUpdate" :: "['a, lupdbinds] => 'a"    ("_/[(_)]" [1000,0] 900)
 | 
| 
5077
 
71043526295f
* HOL/List: new function list_update written xs[i:=v] that updates the i-th
 
nipkow 
parents: 
4643 
diff
changeset
 | 
134  | 
|
| 923 | 135  | 
translations  | 
| 35115 | 136  | 
"_LUpdate xs (_lupdbinds b bs)" == "_LUpdate (_LUpdate xs b) bs"  | 
| 34941 | 137  | 
"xs[i:=x]" == "CONST list_update xs i x"  | 
138  | 
||
| 50548 | 139  | 
primrec takeWhile :: "('a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> 'a list" where
 | 
140  | 
"takeWhile P [] = []" |  | 
|
141  | 
"takeWhile P (x # xs) = (if P x then x # takeWhile P xs else [])"  | 
|
142  | 
||
143  | 
primrec dropWhile :: "('a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> 'a list" where
 | 
|
144  | 
"dropWhile P [] = []" |  | 
|
145  | 
"dropWhile P (x # xs) = (if P x then dropWhile P xs else x # xs)"  | 
|
146  | 
||
147  | 
primrec zip :: "'a list \<Rightarrow> 'b list \<Rightarrow> ('a \<times> 'b) list" where
 | 
|
148  | 
"zip xs [] = []" |  | 
|
149  | 
zip_Cons: "zip xs (y # ys) =  | 
|
| 67091 | 150  | 
(case xs of [] \<Rightarrow> [] | z # zs \<Rightarrow> (z, y) # zip zs ys)"  | 
| 61799 | 151  | 
\<comment> \<open>Warning: simpset does not contain this definition, but separate  | 
152  | 
theorems for \<open>xs = []\<close> and \<open>xs = z # zs\<close>\<close>  | 
|
| 34941 | 153  | 
|
| 66656 | 154  | 
abbreviation map2 :: "('a \<Rightarrow> 'b \<Rightarrow> 'c) \<Rightarrow> 'a list \<Rightarrow> 'b list \<Rightarrow> 'c list" where
 | 
155  | 
"map2 f xs ys \<equiv> map (\<lambda>(x,y). f x y) (zip xs ys)"  | 
|
| 66655 | 156  | 
|
| 50548 | 157  | 
primrec product :: "'a list \<Rightarrow> 'b list \<Rightarrow> ('a \<times> 'b) list" where
 | 
158  | 
"product [] _ = []" |  | 
|
159  | 
"product (x#xs) ys = map (Pair x) ys @ product xs ys"  | 
|
| 
49948
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
160  | 
|
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
161  | 
hide_const (open) product  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
162  | 
|
| 
53721
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
163  | 
primrec product_lists :: "'a list list \<Rightarrow> 'a list list" where  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
164  | 
"product_lists [] = [[]]" |  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
165  | 
"product_lists (xs # xss) = concat (map (\<lambda>x. map (Cons x) (product_lists xss)) xs)"  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
166  | 
|
| 50548 | 167  | 
primrec upt :: "nat \<Rightarrow> nat \<Rightarrow> nat list" ("(1[_..</_'])") where
 | 
168  | 
upt_0: "[i..<0] = []" |  | 
|
| 68709 | 169  | 
upt_Suc: "[i..<(Suc j)] = (if i \<le> j then [i..<j] @ [j] else [])"  | 
| 50548 | 170  | 
|
171  | 
definition insert :: "'a \<Rightarrow> 'a list \<Rightarrow> 'a list" where  | 
|
172  | 
"insert x xs = (if x \<in> set xs then xs else x # xs)"  | 
|
| 
34978
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
173  | 
|
| 57198 | 174  | 
definition union :: "'a list \<Rightarrow> 'a list \<Rightarrow> 'a list" where  | 
175  | 
"union = fold insert"  | 
|
176  | 
||
177  | 
hide_const (open) insert union  | 
|
178  | 
hide_fact (open) insert_def union_def  | 
|
| 
34978
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
179  | 
|
| 47122 | 180  | 
primrec find :: "('a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> 'a option" where
 | 
| 50548 | 181  | 
"find _ [] = None" |  | 
182  | 
"find P (x#xs) = (if P x then Some x else find P xs)"  | 
|
| 47122 | 183  | 
|
| 61799 | 184  | 
text \<open>In the context of multisets, \<open>count_list\<close> is equivalent to  | 
| 69593 | 185  | 
\<^term>\<open>count \<circ> mset\<close> and it it advisable to use the latter.\<close>  | 
| 60541 | 186  | 
primrec count_list :: "'a list \<Rightarrow> 'a \<Rightarrow> nat" where  | 
187  | 
"count_list [] y = 0" |  | 
|
188  | 
"count_list (x#xs) y = (if x=y then count_list xs y + 1 else count_list xs y)"  | 
|
| 59728 | 189  | 
|
| 55807 | 190  | 
definition  | 
191  | 
   "extract" :: "('a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> ('a list * 'a * 'a list) option"
 | 
|
192  | 
where "extract P xs =  | 
|
| 67091 | 193  | 
(case dropWhile (Not \<circ> P) xs of  | 
| 55807 | 194  | 
[] \<Rightarrow> None |  | 
| 67091 | 195  | 
y#ys \<Rightarrow> Some(takeWhile (Not \<circ> P) xs, y, ys))"  | 
| 55807 | 196  | 
|
197  | 
hide_const (open) "extract"  | 
|
198  | 
||
| 51096 | 199  | 
primrec those :: "'a option list \<Rightarrow> 'a list option"  | 
200  | 
where  | 
|
201  | 
"those [] = Some []" |  | 
|
202  | 
"those (x # xs) = (case x of  | 
|
203  | 
None \<Rightarrow> None  | 
|
| 55466 | 204  | 
| Some y \<Rightarrow> map_option (Cons y) (those xs))"  | 
| 51096 | 205  | 
|
| 50548 | 206  | 
primrec remove1 :: "'a \<Rightarrow> 'a list \<Rightarrow> 'a list" where  | 
207  | 
"remove1 x [] = []" |  | 
|
208  | 
"remove1 x (y # xs) = (if x = y then xs else y # remove1 x xs)"  | 
|
209  | 
||
210  | 
primrec removeAll :: "'a \<Rightarrow> 'a list \<Rightarrow> 'a list" where  | 
|
211  | 
"removeAll x [] = []" |  | 
|
212  | 
"removeAll x (y # xs) = (if x = y then removeAll x xs else y # removeAll x xs)"  | 
|
213  | 
||
214  | 
primrec distinct :: "'a list \<Rightarrow> bool" where  | 
|
215  | 
"distinct [] \<longleftrightarrow> True" |  | 
|
216  | 
"distinct (x # xs) \<longleftrightarrow> x \<notin> set xs \<and> distinct xs"  | 
|
217  | 
||
| 71779 | 218  | 
fun successively :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> bool" where
 | 
219  | 
"successively P [] = True" |  | 
|
220  | 
"successively P [x] = True" |  | 
|
221  | 
"successively P (x # y # xs) = (P x y \<and> successively P (y#xs))"  | 
|
222  | 
||
223  | 
definition distinct_adj where  | 
|
224  | 
"distinct_adj = successively (\<noteq>)"  | 
|
225  | 
||
| 50548 | 226  | 
primrec remdups :: "'a list \<Rightarrow> 'a list" where  | 
227  | 
"remdups [] = []" |  | 
|
228  | 
"remdups (x # xs) = (if x \<in> set xs then remdups xs else x # remdups xs)"  | 
|
229  | 
||
| 
53721
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
230  | 
fun remdups_adj :: "'a list \<Rightarrow> 'a list" where  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
231  | 
"remdups_adj [] = []" |  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
232  | 
"remdups_adj [x] = [x]" |  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
233  | 
"remdups_adj (x # y # xs) = (if x = y then remdups_adj (x # xs) else x # remdups_adj (y # xs))"  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
234  | 
|
| 50548 | 235  | 
primrec replicate :: "nat \<Rightarrow> 'a \<Rightarrow> 'a list" where  | 
236  | 
replicate_0: "replicate 0 x = []" |  | 
|
237  | 
replicate_Suc: "replicate (Suc n) x = x # replicate n x"  | 
|
| 
3342
 
ec3b55fcb165
New operator "lists" for formalizing sets of lists
 
paulson 
parents: 
3320 
diff
changeset
 | 
238  | 
|
| 60758 | 239  | 
text \<open>  | 
| 61799 | 240  | 
Function \<open>size\<close> is overloaded for all datatypes. Users may  | 
241  | 
refer to the list version as \<open>length\<close>.\<close>  | 
|
| 13142 | 242  | 
|
| 50548 | 243  | 
abbreviation length :: "'a list \<Rightarrow> nat" where  | 
244  | 
"length \<equiv> size"  | 
|
| 15307 | 245  | 
|
| 51173 | 246  | 
definition enumerate :: "nat \<Rightarrow> 'a list \<Rightarrow> (nat \<times> 'a) list" where  | 
247  | 
enumerate_eq_zip: "enumerate n xs = zip [n..<n + length xs] xs"  | 
|
248  | 
||
| 
46440
 
d4994e2e7364
use 'primrec' to define "rotate1", for uniformity (and to help first-order tools that rely on "Spec_Rules")
 
blanchet 
parents: 
46439 
diff
changeset
 | 
249  | 
primrec rotate1 :: "'a list \<Rightarrow> 'a list" where  | 
| 50548 | 250  | 
"rotate1 [] = []" |  | 
251  | 
"rotate1 (x # xs) = xs @ [x]"  | 
|
252  | 
||
253  | 
definition rotate :: "nat \<Rightarrow> 'a list \<Rightarrow> 'a list" where  | 
|
254  | 
"rotate n = rotate1 ^^ n"  | 
|
255  | 
||
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
256  | 
definition nths :: "'a list => nat set => 'a list" where  | 
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
257  | 
"nths xs A = map fst (filter (\<lambda>p. snd p \<in> A) (zip xs [0..<size xs]))"  | 
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
258  | 
|
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
259  | 
primrec subseqs :: "'a list \<Rightarrow> 'a list list" where  | 
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
260  | 
"subseqs [] = [[]]" |  | 
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
261  | 
"subseqs (x#xs) = (let xss = subseqs xs in map (Cons x) xss @ xss)"  | 
| 50548 | 262  | 
|
263  | 
primrec n_lists :: "nat \<Rightarrow> 'a list \<Rightarrow> 'a list list" where  | 
|
264  | 
"n_lists 0 xs = [[]]" |  | 
|
265  | 
"n_lists (Suc n) xs = concat (map (\<lambda>ys. map (\<lambda>y. y # ys) xs) (n_lists n xs))"  | 
|
| 
49948
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
266  | 
|
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
267  | 
hide_const (open) n_lists  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
268  | 
|
| 69075 | 269  | 
function splice :: "'a list \<Rightarrow> 'a list \<Rightarrow> 'a list" where  | 
| 
40593
 
1e57b18d27b1
code eqn for slice was missing; redefined splice with fun
 
nipkow 
parents: 
40365 
diff
changeset
 | 
270  | 
"splice [] ys = ys" |  | 
| 69075 | 271  | 
"splice (x#xs) ys = x # splice ys xs"  | 
272  | 
by pat_completeness auto  | 
|
273  | 
||
274  | 
termination  | 
|
275  | 
by(relation "measure(\<lambda>(xs,ys). size xs + size ys)") auto  | 
|
| 
21061
 
580dfc999ef6
added normal post setup; cleaned up "execution" constants
 
haftmann 
parents: 
21046 
diff
changeset
 | 
276  | 
|
| 69107 | 277  | 
function shuffles where  | 
278  | 
  "shuffles [] ys = {ys}"
 | 
|
279  | 
| "shuffles xs [] = {xs}"
 | 
|
280  | 
| "shuffles (x # xs) (y # ys) = (#) x ` shuffles xs (y # ys) \<union> (#) y ` shuffles (x # xs) ys"  | 
|
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
281  | 
by pat_completeness simp_all  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
282  | 
termination by lexicographic_order  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
283  | 
|
| 69593 | 284  | 
text\<open>Use only if you cannot use \<^const>\<open>Min\<close> instead:\<close>  | 
| 67170 | 285  | 
fun min_list :: "'a::ord list \<Rightarrow> 'a" where  | 
286  | 
"min_list (x # xs) = (case xs of [] \<Rightarrow> x | _ \<Rightarrow> min x (min_list xs))"  | 
|
287  | 
||
288  | 
text\<open>Returns first minimum:\<close>  | 
|
289  | 
fun arg_min_list :: "('a \<Rightarrow> ('b::linorder)) \<Rightarrow> 'a list \<Rightarrow> 'a" where
 | 
|
290  | 
"arg_min_list f [x] = x" |  | 
|
291  | 
"arg_min_list f (x#y#zs) = (let m = arg_min_list f (y#zs) in if f x \<le> f m then x else m)"  | 
|
292  | 
||
| 60758 | 293  | 
text\<open>  | 
| 26771 | 294  | 
\begin{figure}[htbp]
 | 
295  | 
\fbox{
 | 
|
296  | 
\begin{tabular}{l}
 | 
|
| 27381 | 297  | 
@{lemma "[a,b]@[c,d] = [a,b,c,d]" by simp}\\
 | 
298  | 
@{lemma "length [a,b,c] = 3" by simp}\\
 | 
|
299  | 
@{lemma "set [a,b,c] = {a,b,c}" by simp}\\
 | 
|
300  | 
@{lemma "map f [a,b,c] = [f a, f b, f c]" by simp}\\
 | 
|
301  | 
@{lemma "rev [a,b,c] = [c,b,a]" by simp}\\
 | 
|
302  | 
@{lemma "hd [a,b,c,d] = a" by simp}\\
 | 
|
303  | 
@{lemma "tl [a,b,c,d] = [b,c,d]" by simp}\\
 | 
|
304  | 
@{lemma "last [a,b,c,d] = d" by simp}\\
 | 
|
305  | 
@{lemma "butlast [a,b,c,d] = [a,b,c]" by simp}\\
 | 
|
306  | 
@{lemma[source] "filter (\<lambda>n::nat. n<2) [0,2,1] = [0,1]" by simp}\\
 | 
|
307  | 
@{lemma "concat [[a,b],[c,d,e],[],[f]] = [a,b,c,d,e,f]" by simp}\\
 | 
|
| 
46133
 
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
 
haftmann 
parents: 
46125 
diff
changeset
 | 
308  | 
@{lemma "fold f [a,b,c] x = f c (f b (f a x))" by simp}\\
 | 
| 
47397
 
d654c73e4b12
no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
 
haftmann 
parents: 
47131 
diff
changeset
 | 
309  | 
@{lemma "foldr f [a,b,c] x = f a (f b (f c x))" by simp}\\
 | 
| 
 
d654c73e4b12
no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
 
haftmann 
parents: 
47131 
diff
changeset
 | 
310  | 
@{lemma "foldl f x [a,b,c] = f (f (f x a) b) c" by simp}\\
 | 
| 71779 | 311  | 
@{lemma "successively (\<noteq>) [True,False,True,False]" by simp}\\
 | 
| 27381 | 312  | 
@{lemma "zip [a,b,c] [x,y,z] = [(a,x),(b,y),(c,z)]" by simp}\\
 | 
313  | 
@{lemma "zip [a,b] [x,y,z] = [(a,x),(b,y)]" by simp}\\
 | 
|
| 51173 | 314  | 
@{lemma "enumerate 3 [a,b,c] = [(3,a),(4,b),(5,c)]" by normalization}\\
 | 
| 
49948
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
315  | 
@{lemma "List.product [a,b] [c,d] = [(a, c), (a, d), (b, c), (b, d)]" by simp}\\
 | 
| 
53721
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
316  | 
@{lemma "product_lists [[a,b], [c], [d,e]] = [[a,c,d], [a,c,e], [b,c,d], [b,c,e]]" by simp}\\
 | 
| 27381 | 317  | 
@{lemma "splice [a,b,c] [x,y,z] = [a,x,b,y,c,z]" by simp}\\
 | 
318  | 
@{lemma "splice [a,b,c,d] [x,y] = [a,x,b,y,c,d]" by simp}\\
 | 
|
| 69107 | 319  | 
@{lemma "shuffles [a,b] [c,d] =  {[a,b,c,d],[a,c,b,d],[a,c,d,b],[c,a,b,d],[c,a,d,b],[c,d,a,b]}"
 | 
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
320  | 
by (simp add: insert_commute)}\\  | 
| 27381 | 321  | 
@{lemma "take 2 [a,b,c,d] = [a,b]" by simp}\\
 | 
322  | 
@{lemma "take 6 [a,b,c,d] = [a,b,c,d]" by simp}\\
 | 
|
323  | 
@{lemma "drop 2 [a,b,c,d] = [c,d]" by simp}\\
 | 
|
324  | 
@{lemma "drop 6 [a,b,c,d] = []" by simp}\\
 | 
|
325  | 
@{lemma "takeWhile (%n::nat. n<3) [1,2,3,0] = [1,2]" by simp}\\
 | 
|
326  | 
@{lemma "dropWhile (%n::nat. n<3) [1,2,3,0] = [3,0]" by simp}\\
 | 
|
327  | 
@{lemma "distinct [2,0,1::nat]" by simp}\\
 | 
|
328  | 
@{lemma "remdups [2,0,2,1::nat,2] = [0,1,2]" by simp}\\
 | 
|
| 
53721
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
329  | 
@{lemma "remdups_adj [2,2,3,1,1::nat,2,1] = [2,3,1,2,1]" by simp}\\
 | 
| 
34978
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
330  | 
@{lemma "List.insert 2 [0::nat,1,2] = [0,1,2]" by (simp add: List.insert_def)}\\
 | 
| 35295 | 331  | 
@{lemma "List.insert 3 [0::nat,1,2] = [3,0,1,2]" by (simp add: List.insert_def)}\\
 | 
| 57198 | 332  | 
@{lemma "List.union [2,3,4] [0::int,1,2] = [4,3,0,1,2]" by (simp add: List.insert_def List.union_def)}\\
 | 
| 47122 | 333  | 
@{lemma "List.find (%i::int. i>0) [0,0] = None" by simp}\\
 | 
334  | 
@{lemma "List.find (%i::int. i>0) [0,1,0,2] = Some 1" by simp}\\
 | 
|
| 60541 | 335  | 
@{lemma "count_list [0,1,0,2::int] 0 = 2" by (simp)}\\
 | 
| 55807 | 336  | 
@{lemma "List.extract (%i::int. i>0) [0,0] = None" by(simp add: extract_def)}\\
 | 
337  | 
@{lemma "List.extract (%i::int. i>0) [0,1,0,2] = Some([0], 1, [0,2])" by(simp add: extract_def)}\\
 | 
|
| 27381 | 338  | 
@{lemma "remove1 2 [2,0,2,1::nat,2] = [0,2,1,2]" by simp}\\
 | 
| 27693 | 339  | 
@{lemma "removeAll 2 [2,0,2,1::nat,2] = [0,1]" by simp}\\
 | 
| 27381 | 340  | 
@{lemma "nth [a,b,c,d] 2 = c" by simp}\\
 | 
341  | 
@{lemma "[a,b,c,d][2 := x] = [a,b,x,d]" by simp}\\
 | 
|
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
342  | 
@{lemma "nths [a,b,c,d,e] {0,2,3} = [a,c,d]" by (simp add:nths_def)}\\
 | 
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
343  | 
@{lemma "subseqs [a,b] = [[a, b], [a], [b], []]" by simp}\\
 | 
| 
49948
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
344  | 
@{lemma "List.n_lists 2 [a,b,c] = [[a, a], [b, a], [c, a], [a, b], [b, b], [c, b], [a, c], [b, c], [c, c]]" by (simp add: eval_nat_numeral)}\\
 | 
| 
46440
 
d4994e2e7364
use 'primrec' to define "rotate1", for uniformity (and to help first-order tools that rely on "Spec_Rules")
 
blanchet 
parents: 
46439 
diff
changeset
 | 
345  | 
@{lemma "rotate1 [a,b,c,d] = [b,c,d,a]" by simp}\\
 | 
| 
 
d4994e2e7364
use 'primrec' to define "rotate1", for uniformity (and to help first-order tools that rely on "Spec_Rules")
 
blanchet 
parents: 
46439 
diff
changeset
 | 
346  | 
@{lemma "rotate 3 [a,b,c,d] = [d,a,b,c]" by (simp add:rotate_def eval_nat_numeral)}\\
 | 
| 40077 | 347  | 
@{lemma "replicate 4 a = [a,a,a,a]" by (simp add:eval_nat_numeral)}\\
 | 
| 67170 | 348  | 
@{lemma "[2..<5] = [2,3,4]" by (simp add:eval_nat_numeral)}\\
 | 
349  | 
@{lemma "min_list [3,1,-2::int] = -2" by (simp)}\\
 | 
|
350  | 
@{lemma "arg_min_list (\<lambda>i. i*i) [3,-1,1,-2::int] = -1" by (simp)}
 | 
|
| 26771 | 351  | 
\end{tabular}}
 | 
352  | 
\caption{Characteristic examples}
 | 
|
353  | 
\label{fig:Characteristic}
 | 
|
354  | 
\end{figure}
 | 
|
| 29927 | 355  | 
Figure~\ref{fig:Characteristic} shows characteristic examples
 | 
| 26771 | 356  | 
that should give an intuitive understanding of the above functions.  | 
| 60758 | 357  | 
\<close>  | 
358  | 
||
| 71779 | 359  | 
text\<open>The following simple sort(ed) functions are intended for proofs,  | 
| 60758 | 360  | 
not for efficient implementations.\<close>  | 
| 24616 | 361  | 
|
| 
66434
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
362  | 
text \<open>A sorted predicate w.r.t. a relation:\<close>  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
363  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
364  | 
fun sorted_wrt :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> bool" where
 | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
365  | 
"sorted_wrt P [] = True" |  | 
| 68109 | 366  | 
"sorted_wrt P (x # ys) = ((\<forall>y \<in> set ys. P x y) \<and> sorted_wrt P ys)"  | 
| 
66434
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
367  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
368  | 
text \<open>A class-based sorted predicate:\<close>  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
369  | 
|
| 
25221
 
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
 
wenzelm 
parents: 
25215 
diff
changeset
 | 
370  | 
context linorder  | 
| 
 
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
 
wenzelm 
parents: 
25215 
diff
changeset
 | 
371  | 
begin  | 
| 67479 | 372  | 
|
| 73707 | 373  | 
abbreviation sorted :: "'a list \<Rightarrow> bool" where  | 
374  | 
"sorted \<equiv> sorted_wrt (\<le>)"  | 
|
| 67479 | 375  | 
|
| 73707 | 376  | 
lemma sorted_simps: "sorted [] = True" "sorted (x # ys) = ((\<forall>y \<in> set ys. x\<le>y) \<and> sorted ys)"  | 
377  | 
by auto  | 
|
378  | 
||
| 73709 | 379  | 
lemma strict_sorted_simps: "sorted_wrt (<) [] = True" "sorted_wrt (<) (x # ys) = ((\<forall>y \<in> set ys. x<y) \<and> sorted_wrt (<) ys)"  | 
| 73707 | 380  | 
by auto  | 
| 24697 | 381  | 
|
| 
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  | 
primrec insort_key :: "('b \<Rightarrow> 'a) \<Rightarrow> 'b \<Rightarrow> 'b list \<Rightarrow> 'b list" where
 | 
| 
72095
 
cfb6c22a5636
lemmas about sets and the enumerate operator
 
paulson <lp15@cam.ac.uk> 
parents: 
71991 
diff
changeset
 | 
383  | 
"insort_key f x [] = [x]" |  | 
| 
 
cfb6c22a5636
lemmas about sets and the enumerate operator
 
paulson <lp15@cam.ac.uk> 
parents: 
71991 
diff
changeset
 | 
384  | 
"insort_key f x (y#ys) =  | 
| 50548 | 385  | 
(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
 | 
386  | 
|
| 35195 | 387  | 
definition sort_key :: "('b \<Rightarrow> 'a) \<Rightarrow> 'b list \<Rightarrow> 'b list" where
 | 
| 
72095
 
cfb6c22a5636
lemmas about sets and the enumerate operator
 
paulson <lp15@cam.ac.uk> 
parents: 
71991 
diff
changeset
 | 
388  | 
"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
 | 
389  | 
|
| 
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
 | 
390  | 
definition insort_insert_key :: "('b \<Rightarrow> 'a) \<Rightarrow> 'b \<Rightarrow> 'b list \<Rightarrow> 'b list" where
 | 
| 
72095
 
cfb6c22a5636
lemmas about sets and the enumerate operator
 
paulson <lp15@cam.ac.uk> 
parents: 
71991 
diff
changeset
 | 
391  | 
"insort_insert_key f x xs =  | 
| 50548 | 392  | 
(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
 | 
393  | 
|
| 
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
 | 
394  | 
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
 | 
395  | 
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
 | 
396  | 
abbreviation "insort_insert \<equiv> insort_insert_key (\<lambda>x. x)"  | 
| 35608 | 397  | 
|
| 67684 | 398  | 
definition stable_sort_key :: "(('b \<Rightarrow> 'a) \<Rightarrow> 'b list \<Rightarrow> 'b list) \<Rightarrow> bool" where
 | 
| 
72095
 
cfb6c22a5636
lemmas about sets and the enumerate operator
 
paulson <lp15@cam.ac.uk> 
parents: 
71991 
diff
changeset
 | 
399  | 
"stable_sort_key sk =  | 
| 67684 | 400  | 
(\<forall>f xs k. filter (\<lambda>y. f y = k) (sk f xs) = filter (\<lambda>y. f y = k) xs)"  | 
401  | 
||
| 73709 | 402  | 
lemma strict_sorted_iff: "sorted_wrt (<) l \<longleftrightarrow> sorted l \<and> distinct l"  | 
| 
72095
 
cfb6c22a5636
lemmas about sets and the enumerate operator
 
paulson <lp15@cam.ac.uk> 
parents: 
71991 
diff
changeset
 | 
403  | 
by (induction l) (auto iff: antisym_conv1)  | 
| 
 
cfb6c22a5636
lemmas about sets and the enumerate operator
 
paulson <lp15@cam.ac.uk> 
parents: 
71991 
diff
changeset
 | 
404  | 
|
| 73709 | 405  | 
lemma strict_sorted_imp_sorted: "sorted_wrt (<) xs \<Longrightarrow> sorted xs"  | 
| 
72095
 
cfb6c22a5636
lemmas about sets and the enumerate operator
 
paulson <lp15@cam.ac.uk> 
parents: 
71991 
diff
changeset
 | 
406  | 
by (auto simp: strict_sorted_iff)  | 
| 71860 | 407  | 
|
| 
25221
 
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
 
wenzelm 
parents: 
25215 
diff
changeset
 | 
408  | 
end  | 
| 
 
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
 
wenzelm 
parents: 
25215 
diff
changeset
 | 
409  | 
|
| 24616 | 410  | 
|
| 60758 | 411  | 
subsubsection \<open>List comprehension\<close>  | 
412  | 
||
413  | 
text\<open>Input syntax for Haskell-like list comprehension notation.  | 
|
| 61799 | 414  | 
Typical example: \<open>[(x,y). x \<leftarrow> xs, y \<leftarrow> ys, x \<noteq> y]\<close>,  | 
415  | 
the list of all pairs of distinct elements from \<open>xs\<close> and \<open>ys\<close>.  | 
|
416  | 
The syntax is as in Haskell, except that \<open>|\<close> becomes a dot  | 
|
417  | 
(like in Isabelle's set comprehension): \<open>[e. x \<leftarrow> xs, \<dots>]\<close> rather than  | 
|
| 24349 | 418  | 
\verb![e| x <- xs, ...]!.  | 
419  | 
||
420  | 
The qualifiers after the dot are  | 
|
421  | 
\begin{description}
 | 
|
| 61799 | 422  | 
\item[generators] \<open>p \<leftarrow> xs\<close>,  | 
423  | 
where \<open>p\<close> is a pattern and \<open>xs\<close> an expression of list type, or  | 
|
424  | 
\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
 | 
425  | 
%\item[local bindings] @ {text"let x = e"}.
 | 
| 24349 | 426  | 
\end{description}
 | 
| 23240 | 427  | 
|
| 
24476
 
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
 
nipkow 
parents: 
24471 
diff
changeset
 | 
428  | 
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
 | 
429  | 
misunderstandings, the translation into desugared form is not reversed  | 
| 61799 | 430  | 
upon output. Note that the translation of \<open>[e. x \<leftarrow> xs]\<close> is  | 
| 69593 | 431  | 
optmized to \<^term>\<open>map (%x. e) xs\<close>.  | 
| 23240 | 432  | 
|
| 24349 | 433  | 
It is easy to write short list comprehensions which stand for complex  | 
434  | 
expressions. During proofs, they may become unreadable (and  | 
|
435  | 
mangled). In such cases it can be advisable to introduce separate  | 
|
| 60758 | 436  | 
definitions for the list comprehensions in question.\<close>  | 
| 24349 | 437  | 
|
| 
46138
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
438  | 
nonterminal lc_qual and lc_quals  | 
| 23192 | 439  | 
|
440  | 
syntax  | 
|
| 
46138
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
441  | 
  "_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
 | 
442  | 
  "_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
 | 
443  | 
  "_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
 | 
444  | 
  (*"_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
 | 
445  | 
  "_lc_end" :: "lc_quals" ("]")
 | 
| 
 
85f8d8a8c711
improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
 
wenzelm 
parents: 
46133 
diff
changeset
 | 
446  | 
  "_lc_quals" :: "lc_qual \<Rightarrow> lc_quals \<Rightarrow> lc_quals"  (", __")
 | 
| 23192 | 447  | 
|
| 
61955
 
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
 
wenzelm 
parents: 
61941 
diff
changeset
 | 
448  | 
syntax (ASCII)  | 
| 
 
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
 
wenzelm 
parents: 
61941 
diff
changeset
 | 
449  | 
  "_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
 | 
450  | 
|
| 60758 | 451  | 
parse_translation \<open>  | 
| 68362 | 452  | 
let  | 
| 69593 | 453  | 
val NilC = Syntax.const \<^const_syntax>\<open>Nil\<close>;  | 
454  | 
val ConsC = Syntax.const \<^const_syntax>\<open>Cons\<close>;  | 
|
455  | 
val mapC = Syntax.const \<^const_syntax>\<open>map\<close>;  | 
|
456  | 
val concatC = Syntax.const \<^const_syntax>\<open>concat\<close>;  | 
|
457  | 
val IfC = Syntax.const \<^const_syntax>\<open>If\<close>;  | 
|
458  | 
val dummyC = Syntax.const \<^const_syntax>\<open>Pure.dummy_pattern\<close>  | 
|
| 68362 | 459  | 
|
460  | 
fun single x = ConsC $ x $ NilC;  | 
|
461  | 
||
462  | 
fun pat_tr ctxt p e opti = (* %x. case x of p => e | _ => [] *)  | 
|
463  | 
let  | 
|
464  | 
(* FIXME proper name context!? *)  | 
|
465  | 
val x =  | 
|
466  | 
Free (singleton (Name.variant_list (fold Term.add_free_names [p, e] [])) "x", dummyT);  | 
|
467  | 
val e = if opti then single e else e;  | 
|
| 69593 | 468  | 
val case1 = Syntax.const \<^syntax_const>\<open>_case1\<close> $ p $ e;  | 
| 68362 | 469  | 
val case2 =  | 
| 69593 | 470  | 
Syntax.const \<^syntax_const>\<open>_case1\<close> $ dummyC $ NilC;  | 
471  | 
val cs = Syntax.const \<^syntax_const>\<open>_case2\<close> $ case1 $ case2;  | 
|
| 68362 | 472  | 
in Syntax_Trans.abs_tr [x, Case_Translation.case_tr false ctxt [x, cs]] end;  | 
473  | 
||
474  | 
fun pair_pat_tr (x as Free _) e = Syntax_Trans.abs_tr [x, e]  | 
|
475  | 
| pair_pat_tr (_ $ p1 $ p2) e =  | 
|
| 69593 | 476  | 
Syntax.const \<^const_syntax>\<open>case_prod\<close> $ pair_pat_tr p1 (pair_pat_tr p2 e)  | 
| 68362 | 477  | 
| pair_pat_tr dummy e = Syntax_Trans.abs_tr [Syntax.const "_idtdummy", e]  | 
478  | 
||
| 69593 | 479  | 
fun pair_pat ctxt (Const (\<^const_syntax>\<open>Pair\<close>,_) $ s $ t) =  | 
| 68362 | 480  | 
pair_pat ctxt s andalso pair_pat ctxt t  | 
481  | 
| pair_pat ctxt (Free (s,_)) =  | 
|
482  | 
let  | 
|
483  | 
val thy = Proof_Context.theory_of ctxt;  | 
|
484  | 
val s' = Proof_Context.intern_const ctxt s;  | 
|
485  | 
in not (Sign.declared_const thy s') end  | 
|
486  | 
| pair_pat _ t = (t = dummyC);  | 
|
487  | 
||
488  | 
fun abs_tr ctxt p e opti =  | 
|
489  | 
let val p = Term_Position.strip_positions p  | 
|
490  | 
in if pair_pat ctxt p  | 
|
491  | 
then (pair_pat_tr p e, true)  | 
|
492  | 
else (pat_tr ctxt p e opti, false)  | 
|
493  | 
end  | 
|
494  | 
||
| 69593 | 495  | 
fun lc_tr ctxt [e, Const (\<^syntax_const>\<open>_lc_test\<close>, _) $ b, qs] =  | 
| 68362 | 496  | 
let  | 
497  | 
val res =  | 
|
498  | 
(case qs of  | 
|
| 69593 | 499  | 
Const (\<^syntax_const>\<open>_lc_end\<close>, _) => single e  | 
500  | 
| Const (\<^syntax_const>\<open>_lc_quals\<close>, _) $ q $ qs => lc_tr ctxt [e, q, qs]);  | 
|
| 68362 | 501  | 
in IfC $ b $ res $ NilC end  | 
502  | 
| lc_tr ctxt  | 
|
| 69593 | 503  | 
[e, Const (\<^syntax_const>\<open>_lc_gen\<close>, _) $ p $ es,  | 
504  | 
Const(\<^syntax_const>\<open>_lc_end\<close>, _)] =  | 
|
| 68362 | 505  | 
(case abs_tr ctxt p e true of  | 
506  | 
(f, true) => mapC $ f $ es  | 
|
507  | 
| (f, false) => concatC $ (mapC $ f $ es))  | 
|
508  | 
| lc_tr ctxt  | 
|
| 69593 | 509  | 
[e, Const (\<^syntax_const>\<open>_lc_gen\<close>, _) $ p $ es,  | 
510  | 
Const (\<^syntax_const>\<open>_lc_quals\<close>, _) $ q $ qs] =  | 
|
| 68362 | 511  | 
let val e' = lc_tr ctxt [e, q, qs];  | 
512  | 
in concatC $ (mapC $ (fst (abs_tr ctxt p e' false)) $ es) end;  | 
|
513  | 
||
| 69593 | 514  | 
in [(\<^syntax_const>\<open>_listcompr\<close>, lc_tr)] end  | 
| 60758 | 515  | 
\<close>  | 
516  | 
||
517  | 
ML_val \<open>  | 
|
| 42167 | 518  | 
let  | 
| 69593 | 519  | 
val read = Syntax.read_term \<^context> o Syntax.implode_input;  | 
| 60160 | 520  | 
fun check s1 s2 =  | 
521  | 
read s1 aconv read s2 orelse  | 
|
522  | 
        error ("Check failed: " ^
 | 
|
| 
69349
 
7cef9e386ffe
more accurate positions for "name" (quoted string) and "embedded" (cartouche): refer to content without delimiters, which is e.g. relevant for systematic selection/renaming of scope groups;
 
wenzelm 
parents: 
69312 
diff
changeset
 | 
523  | 
quote (#1 (Input.source_content s1)) ^ Position.here_list [Input.pos_of s1, Input.pos_of s2]);  | 
| 42167 | 524  | 
in  | 
| 60160 | 525  | 
check \<open>[(x,y,z). b]\<close> \<open>if b then [(x, y, z)] else []\<close>;  | 
| 68362 | 526  | 
check \<open>[(x,y,z). (x,_,y)\<leftarrow>xs]\<close> \<open>map (\<lambda>(x,_,y). (x, y, z)) xs\<close>;  | 
527  | 
check \<open>[e x y. (x,_)\<leftarrow>xs, y\<leftarrow>ys]\<close> \<open>concat (map (\<lambda>(x,_). map (\<lambda>y. e x y) ys) xs)\<close>;  | 
|
| 60160 | 528  | 
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>;  | 
529  | 
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>;  | 
|
530  | 
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>;  | 
|
531  | 
check \<open>[(x,y). Cons True x \<leftarrow> xs]\<close>  | 
|
532  | 
\<open>concat (map (\<lambda>xa. case xa of [] \<Rightarrow> [] | True # x \<Rightarrow> [(x, y)] | False # x \<Rightarrow> []) xs)\<close>;  | 
|
533  | 
check \<open>[(x,y,z). Cons x [] \<leftarrow> xs]\<close>  | 
|
534  | 
\<open>concat (map (\<lambda>xa. case xa of [] \<Rightarrow> [] | [x] \<Rightarrow> [(x, y, z)] | x # aa # lista \<Rightarrow> []) xs)\<close>;  | 
|
535  | 
check \<open>[(x,y,z). x<a, x>b, x=d]\<close>  | 
|
536  | 
\<open>if x < a then if b < x then if x = d then [(x, y, z)] else [] else [] else []\<close>;  | 
|
537  | 
check \<open>[(x,y,z). x<a, x>b, y\<leftarrow>ys]\<close>  | 
|
538  | 
\<open>if x < a then if b < x then map (\<lambda>y. (x, y, z)) ys else [] else []\<close>;  | 
|
| 68362 | 539  | 
check \<open>[(x,y,z). x<a, (_,x)\<leftarrow>xs,y>b]\<close>  | 
540  | 
\<open>if x < a then concat (map (\<lambda>(_,x). if b < y then [(x, y, z)] else []) xs) else []\<close>;  | 
|
| 60160 | 541  | 
check \<open>[(x,y,z). x<a, x\<leftarrow>xs, y\<leftarrow>ys]\<close>  | 
542  | 
\<open>if x < a then concat (map (\<lambda>x. map (\<lambda>y. (x, y, z)) ys) xs) else []\<close>;  | 
|
543  | 
check \<open>[(x,y,z). x\<leftarrow>xs, x>b, y<a]\<close>  | 
|
544  | 
\<open>concat (map (\<lambda>x. if b < x then if y < a then [(x, y, z)] else [] else []) xs)\<close>;  | 
|
545  | 
check \<open>[(x,y,z). x\<leftarrow>xs, x>b, y\<leftarrow>ys]\<close>  | 
|
546  | 
\<open>concat (map (\<lambda>x. if b < x then map (\<lambda>y. (x, y, z)) ys else []) xs)\<close>;  | 
|
| 68362 | 547  | 
check \<open>[(x,y,z). x\<leftarrow>xs, (y,_)\<leftarrow>ys,y>x]\<close>  | 
548  | 
\<open>concat (map (\<lambda>x. concat (map (\<lambda>(y,_). if x < y then [(x, y, z)] else []) ys)) xs)\<close>;  | 
|
| 60160 | 549  | 
check \<open>[(x,y,z). x\<leftarrow>xs, y\<leftarrow>ys,z\<leftarrow>zs]\<close>  | 
550  | 
\<open>concat (map (\<lambda>x. concat (map (\<lambda>y. map (\<lambda>z. (x, y, z)) zs) ys)) xs)\<close>  | 
|
| 42167 | 551  | 
end;  | 
| 60758 | 552  | 
\<close>  | 
| 42167 | 553  | 
|
| 60758 | 554  | 
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
 | 
555  | 
(* 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
 | 
556  | 
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  | 
|
| 
 
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
 | 
558  | 
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
 | 
559  | 
sig  | 
| 
51717
 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 
wenzelm 
parents: 
51678 
diff
changeset
 | 
560  | 
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
 | 
561  | 
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
 | 
562  | 
|
| 
 
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  | 
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
 | 
564  | 
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
 | 
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  | 
(* 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
 | 
567  | 
|
| 
 
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
 
wenzelm 
parents: 
50134 
diff
changeset
 | 
568  | 
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
 | 
569  | 
(case Thm.term_of ct of  | 
| 69593 | 570  | 
Const (\<^const_name>\<open>Ex\<close>, _) $ Abs _ =>  | 
| 
50422
 
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
 
wenzelm 
parents: 
50134 
diff
changeset
 | 
571  | 
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
 | 
572  | 
| _ => 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  | 
|
| 
 
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
 
wenzelm 
parents: 
50134 
diff
changeset
 | 
574  | 
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
 | 
575  | 
(case Thm.term_of ct of  | 
| 69593 | 576  | 
Const (\<^const_name>\<open>Ex\<close>, _) $ Abs (_, _, Const (\<^const_name>\<open>Ex\<close>, _) $ _) =>  | 
| 
50422
 
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
 
wenzelm 
parents: 
50134 
diff
changeset
 | 
577  | 
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
 | 
578  | 
| _ => 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  | 
|
| 
 
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
 
wenzelm 
parents: 
50134 
diff
changeset
 | 
580  | 
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
 | 
581  | 
(case Thm.term_of ct of  | 
| 69593 | 582  | 
Const (\<^const_name>\<open>Collect\<close>, _) $ Abs _ => Conv.arg_conv (Conv.abs_conv cv ctxt) ct  | 
| 
50422
 
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
 
wenzelm 
parents: 
50134 
diff
changeset
 | 
583  | 
  | _ => 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
 | 
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 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
 | 
586  | 
|
| 
 
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
 | 
587  | 
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
 | 
588  | 
Conv.try_conv  | 
| 
51315
 
536a5603a138
provide common HOLogic.conj_conv and HOLogic.eq_conv;
 
wenzelm 
parents: 
51314 
diff
changeset
 | 
589  | 
    (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
 | 
590  | 
|
| 
 
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
 
wenzelm 
parents: 
50134 
diff
changeset
 | 
591  | 
fun right_hand_set_comprehension_conv conv ctxt =  | 
| 
51315
 
536a5603a138
provide common HOLogic.conj_conv and HOLogic.eq_conv;
 
wenzelm 
parents: 
51314 
diff
changeset
 | 
592  | 
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
 | 
593  | 
(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
 | 
594  | 
|
| 
 
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
 
wenzelm 
parents: 
50134 
diff
changeset
 | 
595  | 
|
| 
 
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
 
wenzelm 
parents: 
50134 
diff
changeset
 | 
596  | 
(* 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
 | 
597  | 
|
| 60156 | 598  | 
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
 | 
599  | 
|
| 60158 | 600  | 
local  | 
601  | 
||
602  | 
val set_Nil_I = @{lemma "set [] = {x. False}" by (simp add: empty_def [symmetric])}
 | 
|
603  | 
val set_singleton = @{lemma "set [a] = {x. x = a}" by simp}
 | 
|
604  | 
val inst_Collect_mem_eq = @{lemma "set A = {x. x \<in> set A}" by simp}
 | 
|
605  | 
val del_refl_eq = @{lemma "(t = t \<and> P) \<equiv> P" by simp}
 | 
|
606  | 
||
| 69593 | 607  | 
fun mk_set T = Const (\<^const_name>\<open>set\<close>, HOLogic.listT T --> HOLogic.mk_setT T)  | 
608  | 
fun dest_set (Const (\<^const_name>\<open>set\<close>, _) $ xs) = xs  | 
|
609  | 
||
610  | 
fun dest_singleton_list (Const (\<^const_name>\<open>Cons\<close>, _) $ t $ (Const (\<^const_name>\<open>Nil\<close>, _))) = t  | 
|
| 60158 | 611  | 
  | dest_singleton_list t = raise TERM ("dest_singleton_list", [t])
 | 
612  | 
||
613  | 
(*We check that one case returns a singleton list and all other cases  | 
|
614  | 
return [], and return the index of the one singleton list case.*)  | 
|
615  | 
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
 | 
616  | 
let  | 
| 60158 | 617  | 
fun check (i, case_t) s =  | 
618  | 
(case strip_abs_body case_t of  | 
|
| 69593 | 619  | 
(Const (\<^const_name>\<open>Nil\<close>, _)) => s  | 
| 60158 | 620  | 
| _ => (case s of SOME NONE => SOME (SOME i) | _ => NONE))  | 
621  | 
in  | 
|
622  | 
fold_index check cases (SOME NONE) |> the_default NONE  | 
|
623  | 
end  | 
|
624  | 
||
625  | 
(*returns condition continuing term option*)  | 
|
| 69593 | 626  | 
fun dest_if (Const (\<^const_name>\<open>If\<close>, _) $ cond $ then_t $ Const (\<^const_name>\<open>Nil\<close>, _)) =  | 
| 60158 | 627  | 
SOME (cond, then_t)  | 
628  | 
| dest_if _ = NONE  | 
|
629  | 
||
630  | 
(*returns (case_expr type index chosen_case constr_name) option*)  | 
|
631  | 
fun dest_case ctxt case_term =  | 
|
632  | 
let  | 
|
633  | 
val (case_const, args) = strip_comb case_term  | 
|
634  | 
in  | 
|
635  | 
(case try dest_Const case_const of  | 
|
636  | 
SOME (c, T) =>  | 
|
637  | 
(case Ctr_Sugar.ctr_sugar_of_case ctxt c of  | 
|
638  | 
          SOME {ctrs, ...} =>
 | 
|
639  | 
(case possible_index_of_singleton_case (fst (split_last args)) of  | 
|
640  | 
SOME i =>  | 
|
641  | 
let  | 
|
642  | 
val constr_names = map (fst o dest_Const) ctrs  | 
|
643  | 
val (Ts, _) = strip_type T  | 
|
644  | 
val T' = List.last Ts  | 
|
645  | 
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
 | 
646  | 
| 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
 | 
647  | 
| NONE => NONE)  | 
| 60158 | 648  | 
| NONE => NONE)  | 
649  | 
end  | 
|
650  | 
||
| 60752 | 651  | 
fun tac ctxt [] =  | 
652  | 
resolve_tac ctxt [set_singleton] 1 ORELSE  | 
|
653  | 
resolve_tac ctxt [inst_Collect_mem_eq] 1  | 
|
| 60158 | 654  | 
| tac ctxt (If :: cont) =  | 
| 62390 | 655  | 
      Splitter.split_tac ctxt @{thms if_split} 1
 | 
| 60752 | 656  | 
      THEN resolve_tac ctxt @{thms conjI} 1
 | 
657  | 
      THEN resolve_tac ctxt @{thms impI} 1
 | 
|
| 
60159
 
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
 
wenzelm 
parents: 
60158 
diff
changeset
 | 
658  | 
      THEN Subgoal.FOCUS (fn {prems, context = ctxt', ...} =>
 | 
| 60158 | 659  | 
CONVERSION (right_hand_set_comprehension_conv (K  | 
660  | 
          (HOLogic.conj_conv (Conv.rewr_conv (List.last prems RS @{thm Eq_TrueI})) Conv.all_conv
 | 
|
661  | 
then_conv  | 
|
| 
60159
 
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
 
wenzelm 
parents: 
60158 
diff
changeset
 | 
662  | 
           rewr_conv' @{lemma "(True \<and> P) = P" by simp})) ctxt') 1) ctxt 1
 | 
| 60158 | 663  | 
THEN tac ctxt cont  | 
| 60752 | 664  | 
      THEN resolve_tac ctxt @{thms impI} 1
 | 
| 
60159
 
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
 
wenzelm 
parents: 
60158 
diff
changeset
 | 
665  | 
      THEN Subgoal.FOCUS (fn {prems, context = ctxt', ...} =>
 | 
| 60158 | 666  | 
CONVERSION (right_hand_set_comprehension_conv (K  | 
667  | 
            (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
 | 
668  | 
             then_conv rewr_conv' @{lemma "(False \<and> P) = False" by simp})) ctxt') 1) ctxt 1
 | 
| 60752 | 669  | 
THEN resolve_tac ctxt [set_Nil_I] 1  | 
| 60158 | 670  | 
| tac ctxt (Case (T, i) :: cont) =  | 
671  | 
let  | 
|
672  | 
        val SOME {injects, distincts, case_thms, split, ...} =
 | 
|
673  | 
Ctr_Sugar.ctr_sugar_of ctxt (fst (dest_Type T))  | 
|
674  | 
in  | 
|
675  | 
(* do case distinction *)  | 
|
676  | 
Splitter.split_tac ctxt [split] 1  | 
|
677  | 
THEN EVERY (map_index (fn (i', _) =>  | 
|
| 60752 | 678  | 
          (if i' < length case_thms - 1 then resolve_tac ctxt @{thms conjI} 1 else all_tac)
 | 
679  | 
          THEN REPEAT_DETERM (resolve_tac ctxt @{thms allI} 1)
 | 
|
680  | 
          THEN resolve_tac ctxt @{thms impI} 1
 | 
|
| 60158 | 681  | 
THEN (if i' = i then  | 
682  | 
(* continue recursively *)  | 
|
| 
60159
 
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
 
wenzelm 
parents: 
60158 
diff
changeset
 | 
683  | 
            Subgoal.FOCUS (fn {prems, context = ctxt', ...} =>
 | 
| 60158 | 684  | 
CONVERSION (Thm.eta_conversion then_conv right_hand_set_comprehension_conv (K  | 
685  | 
((HOLogic.conj_conv  | 
|
686  | 
(HOLogic.eq_conv Conv.all_conv (rewr_conv' (List.last prems)) then_conv  | 
|
687  | 
(Conv.try_conv (Conv.rewrs_conv (map mk_meta_eq injects))))  | 
|
688  | 
Conv.all_conv)  | 
|
689  | 
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
 | 
690  | 
then_conv conjunct_assoc_conv)) ctxt'  | 
| 
 
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
 
wenzelm 
parents: 
60158 
diff
changeset
 | 
691  | 
then_conv  | 
| 
 
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
 
wenzelm 
parents: 
60158 
diff
changeset
 | 
692  | 
(HOLogic.Trueprop_conv  | 
| 
 
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
 
wenzelm 
parents: 
60158 
diff
changeset
 | 
693  | 
(HOLogic.eq_conv Conv.all_conv (Collect_conv (fn (_, ctxt'') =>  | 
| 
 
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
 
wenzelm 
parents: 
60158 
diff
changeset
 | 
694  | 
Conv.repeat_conv  | 
| 
 
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
 
wenzelm 
parents: 
60158 
diff
changeset
 | 
695  | 
(all_but_last_exists_conv  | 
| 
 
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
 
wenzelm 
parents: 
60158 
diff
changeset
 | 
696  | 
(K (rewr_conv'  | 
| 
 
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
 
wenzelm 
parents: 
60158 
diff
changeset
 | 
697  | 
                            @{lemma "(\<exists>x. x = t \<and> P x) = P t" by simp})) ctxt'')) ctxt')))) 1) ctxt 1
 | 
| 60158 | 698  | 
THEN tac ctxt cont  | 
699  | 
else  | 
|
| 
60159
 
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
 
wenzelm 
parents: 
60158 
diff
changeset
 | 
700  | 
            Subgoal.FOCUS (fn {prems, context = ctxt', ...} =>
 | 
| 60158 | 701  | 
CONVERSION  | 
702  | 
(right_hand_set_comprehension_conv (K  | 
|
703  | 
(HOLogic.conj_conv  | 
|
704  | 
((HOLogic.eq_conv Conv.all_conv  | 
|
705  | 
(rewr_conv' (List.last prems))) then_conv  | 
|
706  | 
                      (Conv.rewrs_conv (map (fn th => th RS @{thm Eq_FalseI}) distincts)))
 | 
|
707  | 
Conv.all_conv then_conv  | 
|
| 
60159
 
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
 
wenzelm 
parents: 
60158 
diff
changeset
 | 
708  | 
                    (rewr_conv' @{lemma "(False \<and> P) = False" by simp}))) ctxt' then_conv
 | 
| 60158 | 709  | 
HOLogic.Trueprop_conv  | 
710  | 
(HOLogic.eq_conv Conv.all_conv  | 
|
| 
60159
 
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
 
wenzelm 
parents: 
60158 
diff
changeset
 | 
711  | 
(Collect_conv (fn (_, ctxt'') =>  | 
| 60158 | 712  | 
Conv.repeat_conv  | 
713  | 
(Conv.bottom_conv  | 
|
| 
60159
 
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
 
wenzelm 
parents: 
60158 
diff
changeset
 | 
714  | 
                            (K (rewr_conv' @{lemma "(\<exists>x. P) = P" by simp})) ctxt'')) ctxt'))) 1) ctxt 1
 | 
| 60752 | 715  | 
THEN resolve_tac ctxt [set_Nil_I] 1)) case_thms)  | 
| 60158 | 716  | 
end  | 
717  | 
||
718  | 
in  | 
|
719  | 
||
720  | 
fun simproc ctxt redex =  | 
|
721  | 
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
 | 
722  | 
fun make_inner_eqs bound_vs Tis eqs t =  | 
| 60158 | 723  | 
(case dest_case ctxt t of  | 
| 
54404
 
9f0f1152c875
port list comprehension simproc to 'Ctr_Sugar' abstraction
 
blanchet 
parents: 
54295 
diff
changeset
 | 
724  | 
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
 | 
725  | 
let  | 
| 52131 | 726  | 
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
 | 
727  | 
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
 | 
728  | 
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
 | 
729  | 
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
 | 
730  | 
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
 | 
731  | 
(Const (constr_name, map snd vs ---> T), map Bound (((length vs) - 1) downto 0))  | 
| 69593 | 732  | 
val constr_eq = Const (\<^const_name>\<open>HOL.eq\<close>, T --> T --> \<^typ>\<open>bool\<close>) $ constr_t $ x'  | 
| 
50422
 
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
 
wenzelm 
parents: 
50134 
diff
changeset
 | 
733  | 
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
 | 
734  | 
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
 | 
735  | 
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
 | 
736  | 
| 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
 | 
737  | 
(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
 | 
738  | 
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
 | 
739  | 
| NONE =>  | 
| 60158 | 740  | 
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
 | 
741  | 
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
 | 
742  | 
let  | 
| 69593 | 743  | 
val Type (\<^type_name>\<open>list\<close>, [rT]) = fastype_of1 (map snd bound_vs, t)  | 
| 
50422
 
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
 
wenzelm 
parents: 
50134 
diff
changeset
 | 
744  | 
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
 | 
745  | 
(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
 | 
746  | 
SOME t' =>  | 
| 69593 | 747  | 
Const (\<^const_name>\<open>HOL.eq\<close>, rT --> rT --> \<^typ>\<open>bool\<close>) $  | 
| 
50422
 
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
 
wenzelm 
parents: 
50134 
diff
changeset
 | 
748  | 
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
 | 
749  | 
| NONE =>  | 
| 69593 | 750  | 
Const (\<^const_name>\<open>Set.member\<close>, rT --> HOLogic.mk_setT rT --> \<^typ>\<open>bool\<close>) $  | 
| 
50422
 
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
 
wenzelm 
parents: 
50134 
diff
changeset
 | 
751  | 
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
 | 
752  | 
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
 | 
753  | 
((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
 | 
754  | 
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
 | 
755  | 
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
 | 
756  | 
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
 | 
757  | 
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
 | 
758  | 
(rev bound_vs) (fold (curry HOLogic.mk_conj) eqs' pat_eq')  | 
| 59582 | 759  | 
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
 | 
760  | 
                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
 | 
761  | 
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
 | 
762  | 
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
 | 
763  | 
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
 | 
764  | 
((Goal.prove ctxt [] [] rewrite_rule_t  | 
| 
60159
 
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
 
wenzelm 
parents: 
60158 
diff
changeset
 | 
765  | 
                    (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
 | 
766  | 
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
 | 
767  | 
in  | 
| 59582 | 768  | 
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
 | 
769  | 
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
 | 
770  | 
|
| 
 
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
 
wenzelm 
parents: 
50134 
diff
changeset
 | 
771  | 
end  | 
| 60158 | 772  | 
|
773  | 
end  | 
|
| 60758 | 774  | 
\<close>  | 
| 
41463
 
edbf0a86fb1c
adding simproc to rewrite list comprehensions to set comprehensions; adopting proofs
 
bulwahn 
parents: 
41372 
diff
changeset
 | 
775  | 
|
| 
60159
 
879918f4ee0f
tuned -- avoid odd rebinding of "ctxt" and "context";
 
wenzelm 
parents: 
60158 
diff
changeset
 | 
776  | 
simproc_setup list_to_set_comprehension ("set xs") =
 | 
| 60758 | 777  | 
\<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
 | 
778  | 
|
| 
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
 | 
779  | 
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
 | 
780  | 
hide_const (open) coset  | 
| 35115 | 781  | 
|
| 
49948
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
782  | 
|
| 69593 | 783  | 
subsubsection \<open>\<^const>\<open>Nil\<close> and \<^const>\<open>Cons\<close>\<close>  | 
| 
21061
 
580dfc999ef6
added normal post setup; cleaned up "execution" constants
 
haftmann 
parents: 
21046 
diff
changeset
 | 
784  | 
|
| 
 
580dfc999ef6
added normal post setup; cleaned up "execution" constants
 
haftmann 
parents: 
21046 
diff
changeset
 | 
785  | 
lemma not_Cons_self [simp]:  | 
| 
 
580dfc999ef6
added normal post setup; cleaned up "execution" constants
 
haftmann 
parents: 
21046 
diff
changeset
 | 
786  | 
"xs \<noteq> x # xs"  | 
| 13145 | 787  | 
by (induct xs) auto  | 
| 13114 | 788  | 
|
| 58807 | 789  | 
lemma not_Cons_self2 [simp]: "x # xs \<noteq> xs"  | 
| 41697 | 790  | 
by (rule not_Cons_self [symmetric])  | 
| 13114 | 791  | 
|
| 13142 | 792  | 
lemma neq_Nil_conv: "(xs \<noteq> []) = (\<exists>y ys. xs = y # ys)"  | 
| 13145 | 793  | 
by (induct xs) auto  | 
| 13114 | 794  | 
|
| 67091 | 795  | 
lemma tl_Nil: "tl xs = [] \<longleftrightarrow> xs = [] \<or> (\<exists>x. xs = [x])"  | 
| 53689 | 796  | 
by (cases xs) auto  | 
797  | 
||
| 67091 | 798  | 
lemma Nil_tl: "[] = tl xs \<longleftrightarrow> xs = [] \<or> (\<exists>x. xs = [x])"  | 
| 53689 | 799  | 
by (cases xs) auto  | 
800  | 
||
| 13142 | 801  | 
lemma length_induct:  | 
| 
21061
 
580dfc999ef6
added normal post setup; cleaned up "execution" constants
 
haftmann 
parents: 
21046 
diff
changeset
 | 
802  | 
"(\<And>xs. \<forall>ys. length ys < length xs \<longrightarrow> P ys \<Longrightarrow> P xs) \<Longrightarrow> P xs"  | 
| 53689 | 803  | 
by (fact measure_induct)  | 
| 13114 | 804  | 
|
| 67168 | 805  | 
lemma induct_list012:  | 
| 70275 | 806  | 
"\<lbrakk>P []; \<And>x. P [x]; \<And>x y zs. \<lbrakk> P zs; P (y # zs) \<rbrakk> \<Longrightarrow> P (x # y # zs)\<rbrakk> \<Longrightarrow> P xs"  | 
| 67168 | 807  | 
by induction_schema (pat_completeness, lexicographic_order)  | 
808  | 
||
| 37289 | 809  | 
lemma list_nonempty_induct [consumes 1, case_names single cons]:  | 
| 67168 | 810  | 
"\<lbrakk> xs \<noteq> []; \<And>x. P [x]; \<And>x xs. xs \<noteq> [] \<Longrightarrow> P xs \<Longrightarrow> P (x # xs)\<rbrakk> \<Longrightarrow> P xs"  | 
811  | 
by(induction xs rule: induct_list012) auto  | 
|
| 37289 | 812  | 
|
| 45714 | 813  | 
lemma inj_split_Cons: "inj_on (\<lambda>(xs, n). n#xs) X"  | 
814  | 
by (auto intro!: inj_onI)  | 
|
| 13114 | 815  | 
|
| 67399 | 816  | 
lemma inj_on_Cons1 [simp]: "inj_on ((#) x) A"  | 
| 61630 | 817  | 
by(simp add: inj_on_def)  | 
| 
49948
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
818  | 
|
| 73307 | 819  | 
|
| 69593 | 820  | 
subsubsection \<open>\<^const>\<open>length\<close>\<close>  | 
| 60758 | 821  | 
|
822  | 
text \<open>  | 
|
| 61799 | 823  | 
Needs to come before \<open>@\<close> because of theorem \<open>append_eq_append_conv\<close>.  | 
| 60758 | 824  | 
\<close>  | 
| 13114 | 825  | 
|
| 13142 | 826  | 
lemma length_append [simp]: "length (xs @ ys) = length xs + length ys"  | 
| 13145 | 827  | 
by (induct xs) auto  | 
| 13114 | 828  | 
|
| 13142 | 829  | 
lemma length_map [simp]: "length (map f xs) = length xs"  | 
| 13145 | 830  | 
by (induct xs) auto  | 
| 13114 | 831  | 
|
| 13142 | 832  | 
lemma length_rev [simp]: "length (rev xs) = length xs"  | 
| 13145 | 833  | 
by (induct xs) auto  | 
| 13114 | 834  | 
|
| 13142 | 835  | 
lemma length_tl [simp]: "length (tl xs) = length xs - 1"  | 
| 13145 | 836  | 
by (cases xs) auto  | 
| 13114 | 837  | 
|
| 13142 | 838  | 
lemma length_0_conv [iff]: "(length xs = 0) = (xs = [])"  | 
| 13145 | 839  | 
by (induct xs) auto  | 
| 13114 | 840  | 
|
| 13142 | 841  | 
lemma length_greater_0_conv [iff]: "(0 < length xs) = (xs \<noteq> [])"  | 
| 13145 | 842  | 
by (induct xs) auto  | 
| 13114 | 843  | 
|
| 67613 | 844  | 
lemma length_pos_if_in_set: "x \<in> set xs \<Longrightarrow> length xs > 0"  | 
| 23479 | 845  | 
by auto  | 
846  | 
||
| 73307 | 847  | 
lemma length_Suc_conv: "(length xs = Suc n) = (\<exists>y ys. xs = y # ys \<and> length ys = n)"  | 
| 13145 | 848  | 
by (induct xs) auto  | 
| 13142 | 849  | 
|
| 14025 | 850  | 
lemma Suc_length_conv:  | 
| 58807 | 851  | 
"(Suc n = length xs) = (\<exists>y ys. xs = y # ys \<and> length ys = n)"  | 
| 73307 | 852  | 
by (induct xs; simp; blast)  | 
| 68709 | 853  | 
|
| 69312 | 854  | 
lemma Suc_le_length_iff:  | 
855  | 
"(Suc n \<le> length xs) = (\<exists>x ys. xs = x # ys \<and> n \<le> length ys)"  | 
|
856  | 
by (metis Suc_le_D[of n] Suc_le_mono[of n] Suc_length_conv[of _ xs])  | 
|
857  | 
||
| 71585 | 858  | 
lemma impossible_Cons: "length xs \<le> length ys \<Longrightarrow> xs = x # ys = False"  | 
| 58807 | 859  | 
by (induct xs) auto  | 
| 
25221
 
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
 
wenzelm 
parents: 
25215 
diff
changeset
 | 
860  | 
|
| 
26442
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
861  | 
lemma list_induct2 [consumes 1, case_names Nil Cons]:  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
862  | 
"length xs = length ys \<Longrightarrow> P [] [] \<Longrightarrow>  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
863  | 
(\<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
 | 
864  | 
\<Longrightarrow> P xs ys"  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
865  | 
proof (induct xs arbitrary: ys)  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
866  | 
case (Cons x xs ys) then show ?case by (cases ys) simp_all  | 
| 68709 | 867  | 
qed simp  | 
| 
26442
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
868  | 
|
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
869  | 
lemma list_induct3 [consumes 2, case_names Nil Cons]:  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
870  | 
"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
 | 
871  | 
(\<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
 | 
872  | 
\<Longrightarrow> P xs ys zs"  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
873  | 
proof (induct xs arbitrary: ys zs)  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
874  | 
case Nil then show ?case by simp  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
875  | 
next  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
876  | 
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
 | 
877  | 
(cases zs, simp_all)  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
878  | 
qed  | 
| 13114 | 879  | 
|
| 
36154
 
11c6106d7787
Respectfullness and preservation of list_rel
 
Cezary Kaliszyk <kaliszyk@in.tum.de> 
parents: 
35828 
diff
changeset
 | 
880  | 
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
 | 
881  | 
"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
 | 
882  | 
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
 | 
883  | 
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
 | 
884  | 
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
 | 
885  | 
proof (induct xs arbitrary: ys zs ws)  | 
| 
 
11c6106d7787
Respectfullness and preservation of list_rel
 
Cezary Kaliszyk <kaliszyk@in.tum.de> 
parents: 
35828 
diff
changeset
 | 
886  | 
case Nil then show ?case by simp  | 
| 
 
11c6106d7787
Respectfullness and preservation of list_rel
 
Cezary Kaliszyk <kaliszyk@in.tum.de> 
parents: 
35828 
diff
changeset
 | 
887  | 
next  | 
| 
 
11c6106d7787
Respectfullness and preservation of list_rel
 
Cezary Kaliszyk <kaliszyk@in.tum.de> 
parents: 
35828 
diff
changeset
 | 
888  | 
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
 | 
889  | 
qed  | 
| 
 
11c6106d7787
Respectfullness and preservation of list_rel
 
Cezary Kaliszyk <kaliszyk@in.tum.de> 
parents: 
35828 
diff
changeset
 | 
890  | 
|
| 64963 | 891  | 
lemma list_induct2':  | 
| 
22493
 
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
 
krauss 
parents: 
22422 
diff
changeset
 | 
892  | 
"\<lbrakk> P [] [];  | 
| 
 
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
 
krauss 
parents: 
22422 
diff
changeset
 | 
893  | 
\<And>x xs. P (x#xs) [];  | 
| 
 
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
 
krauss 
parents: 
22422 
diff
changeset
 | 
894  | 
\<And>y ys. P [] (y#ys);  | 
| 
 
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
 
krauss 
parents: 
22422 
diff
changeset
 | 
895  | 
\<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
 | 
896  | 
\<Longrightarrow> P xs ys"  | 
| 
 
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
 
krauss 
parents: 
22422 
diff
changeset
 | 
897  | 
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
 | 
898  | 
|
| 
55524
 
f41ef840f09d
folded 'list_all2' with the relator generated by 'datatype_new'
 
blanchet 
parents: 
55473 
diff
changeset
 | 
899  | 
lemma list_all2_iff:  | 
| 
 
f41ef840f09d
folded 'list_all2' with the relator generated by 'datatype_new'
 
blanchet 
parents: 
55473 
diff
changeset
 | 
900  | 
"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
 | 
901  | 
by (induct xs ys rule: list_induct2') auto  | 
| 
 
f41ef840f09d
folded 'list_all2' with the relator generated by 'datatype_new'
 
blanchet 
parents: 
55473 
diff
changeset
 | 
902  | 
|
| 
22143
 
cf58486ca11b
Added simproc list_neq (prompted by an application)
 
nipkow 
parents: 
21911 
diff
changeset
 | 
903  | 
lemma neq_if_length_neq: "length xs \<noteq> length ys \<Longrightarrow> (xs = ys) == False"  | 
| 24349 | 904  | 
by (rule Eq_FalseI) auto  | 
| 24037 | 905  | 
|
| 60758 | 906  | 
|
| 61799 | 907  | 
subsubsection \<open>\<open>@\<close> -- append\<close>  | 
| 13114 | 908  | 
|
| 63662 | 909  | 
global_interpretation append: monoid append Nil  | 
910  | 
proof  | 
|
911  | 
fix xs ys zs :: "'a list"  | 
|
912  | 
show "(xs @ ys) @ zs = xs @ (ys @ zs)"  | 
|
913  | 
by (induct xs) simp_all  | 
|
914  | 
show "xs @ [] = xs"  | 
|
915  | 
by (induct xs) simp_all  | 
|
916  | 
qed simp  | 
|
917  | 
||
| 13142 | 918  | 
lemma append_assoc [simp]: "(xs @ ys) @ zs = xs @ (ys @ zs)"  | 
| 63662 | 919  | 
by (fact append.assoc)  | 
920  | 
||
921  | 
lemma append_Nil2: "xs @ [] = xs"  | 
|
922  | 
by (fact append.right_neutral)  | 
|
| 3507 | 923  | 
|
| 13142 | 924  | 
lemma append_is_Nil_conv [iff]: "(xs @ ys = []) = (xs = [] \<and> ys = [])"  | 
| 13145 | 925  | 
by (induct xs) auto  | 
| 13114 | 926  | 
|
| 13142 | 927  | 
lemma Nil_is_append_conv [iff]: "([] = xs @ ys) = (xs = [] \<and> ys = [])"  | 
| 13145 | 928  | 
by (induct xs) auto  | 
| 13114 | 929  | 
|
| 13142 | 930  | 
lemma append_self_conv [iff]: "(xs @ ys = xs) = (ys = [])"  | 
| 13145 | 931  | 
by (induct xs) auto  | 
| 13114 | 932  | 
|
| 13142 | 933  | 
lemma self_append_conv [iff]: "(xs = xs @ ys) = (ys = [])"  | 
| 13145 | 934  | 
by (induct xs) auto  | 
| 13114 | 935  | 
|
| 
54147
 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 
blanchet 
parents: 
53954 
diff
changeset
 | 
936  | 
lemma append_eq_append_conv [simp]:  | 
| 58807 | 937  | 
"length xs = length ys \<or> length us = length vs  | 
| 71585 | 938  | 
\<Longrightarrow> (xs@us = ys@vs) = (xs=ys \<and> us=vs)"  | 
| 68709 | 939  | 
by (induct xs arbitrary: ys; case_tac ys; force)  | 
| 13142 | 940  | 
|
| 24526 | 941  | 
lemma append_eq_append_conv2: "(xs @ ys = zs @ ts) =  | 
| 67091 | 942  | 
(\<exists>us. xs = zs @ us \<and> us @ ys = ts \<or> xs @ us = zs \<and> ys = us @ ts)"  | 
| 68709 | 943  | 
proof (induct xs arbitrary: ys zs ts)  | 
944  | 
case (Cons x xs)  | 
|
945  | 
then show ?case  | 
|
| 69850 | 946  | 
by (cases zs) auto  | 
| 68709 | 947  | 
qed fastforce  | 
| 14495 | 948  | 
|
| 
34910
 
b23bd3ee4813
same_append_eq / append_same_eq are now used for simplifying induction rules.
 
berghofe 
parents: 
34064 
diff
changeset
 | 
949  | 
lemma same_append_eq [iff, induct_simp]: "(xs @ ys = xs @ zs) = (ys = zs)"  | 
| 13145 | 950  | 
by simp  | 
| 13142 | 951  | 
|
952  | 
lemma append1_eq_conv [iff]: "(xs @ [x] = ys @ [y]) = (xs = ys \<and> x = y)"  | 
|
| 13145 | 953  | 
by simp  | 
| 13114 | 954  | 
|
| 
34910
 
b23bd3ee4813
same_append_eq / append_same_eq are now used for simplifying induction rules.
 
berghofe 
parents: 
34064 
diff
changeset
 | 
955  | 
lemma append_same_eq [iff, induct_simp]: "(ys @ xs = zs @ xs) = (ys = zs)"  | 
| 13145 | 956  | 
by simp  | 
| 13114 | 957  | 
|
| 13142 | 958  | 
lemma append_self_conv2 [iff]: "(xs @ ys = ys) = (xs = [])"  | 
| 13145 | 959  | 
using append_same_eq [of _ _ "[]"] by auto  | 
| 3507 | 960  | 
|
| 13142 | 961  | 
lemma self_append_conv2 [iff]: "(ys = xs @ ys) = (xs = [])"  | 
| 13145 | 962  | 
using append_same_eq [of "[]"] by auto  | 
| 13114 | 963  | 
|
| 71585 | 964  | 
lemma hd_Cons_tl: "xs \<noteq> [] \<Longrightarrow> hd xs # tl xs = xs"  | 
| 63662 | 965  | 
by (fact list.collapse)  | 
| 13114 | 966  | 
|
| 13142 | 967  | 
lemma hd_append: "hd (xs @ ys) = (if xs = [] then hd ys else hd xs)"  | 
| 13145 | 968  | 
by (induct xs) auto  | 
| 13114 | 969  | 
|
| 71585 | 970  | 
lemma hd_append2 [simp]: "xs \<noteq> [] \<Longrightarrow> hd (xs @ ys) = hd xs"  | 
| 13145 | 971  | 
by (simp add: hd_append split: list.split)  | 
| 13114 | 972  | 
|
| 67091 | 973  | 
lemma tl_append: "tl (xs @ ys) = (case xs of [] \<Rightarrow> tl ys | z#zs \<Rightarrow> zs @ ys)"  | 
| 13145 | 974  | 
by (simp split: list.split)  | 
| 13114 | 975  | 
|
| 71585 | 976  | 
lemma tl_append2 [simp]: "xs \<noteq> [] \<Longrightarrow> tl (xs @ ys) = tl xs @ ys"  | 
| 13145 | 977  | 
by (simp add: tl_append split: list.split)  | 
| 13114 | 978  | 
|
979  | 
||
| 14300 | 980  | 
lemma Cons_eq_append_conv: "x#xs = ys@zs =  | 
| 67091 | 981  | 
(ys = [] \<and> x#xs = zs \<or> (\<exists>ys'. x#ys' = ys \<and> xs = ys'@zs))"  | 
| 14300 | 982  | 
by(cases ys) auto  | 
983  | 
||
| 15281 | 984  | 
lemma append_eq_Cons_conv: "(ys@zs = x#xs) =  | 
| 67091 | 985  | 
(ys = [] \<and> zs = x#xs \<or> (\<exists>ys'. ys = x#ys' \<and> ys'@zs = xs))"  | 
| 15281 | 986  | 
by(cases ys) auto  | 
987  | 
||
| 63173 | 988  | 
lemma longest_common_prefix:  | 
989  | 
"\<exists>ps xs' ys'. xs = ps @ xs' \<and> ys = ps @ ys'  | 
|
990  | 
\<and> (xs' = [] \<or> ys' = [] \<or> hd xs' \<noteq> hd ys')"  | 
|
991  | 
by (induct xs ys rule: list_induct2')  | 
|
992  | 
(blast, blast, blast,  | 
|
| 
73932
 
fd21b4a93043
added opaque_combs and renamed hide_lams to opaque_lifting
 
desharna 
parents: 
73832 
diff
changeset
 | 
993  | 
metis (no_types, opaque_lifting) append_Cons append_Nil list.sel(1))  | 
| 14300 | 994  | 
|
| 61799 | 995  | 
text \<open>Trivial rules for solving \<open>@\<close>-equations automatically.\<close>  | 
| 13114 | 996  | 
|
| 71585 | 997  | 
lemma eq_Nil_appendI: "xs = ys \<Longrightarrow> xs = [] @ ys"  | 
998  | 
by simp  | 
|
999  | 
||
1000  | 
lemma Cons_eq_appendI: "\<lbrakk>x # xs1 = ys; xs = xs1 @ zs\<rbrakk> \<Longrightarrow> x # xs = ys @ zs"  | 
|
1001  | 
by auto  | 
|
1002  | 
||
1003  | 
lemma append_eq_appendI: "\<lbrakk>xs @ xs1 = zs; ys = xs1 @ us\<rbrakk> \<Longrightarrow> xs @ ys = zs @ us"  | 
|
1004  | 
by auto  | 
|
| 13114 | 1005  | 
|
1006  | 
||
| 60758 | 1007  | 
text \<open>  | 
| 13145 | 1008  | 
Simplification procedure for all list equalities.  | 
| 61799 | 1009  | 
Currently only tries to rearrange \<open>@\<close> to see if  | 
| 13145 | 1010  | 
- both lists end in a singleton list,  | 
1011  | 
- or both lists end in the same list.  | 
|
| 60758 | 1012  | 
\<close>  | 
1013  | 
||
1014  | 
simproc_setup list_eq ("(xs::'a list) = ys")  = \<open>
 | 
|
| 13462 | 1015  | 
let  | 
| 69593 | 1016  | 
fun last (cons as Const (\<^const_name>\<open>Cons\<close>, _) $ _ $ xs) =  | 
1017  | 
(case xs of Const (\<^const_name>\<open>Nil\<close>, _) => cons | _ => last xs)  | 
|
1018  | 
| last (Const(\<^const_name>\<open>append\<close>,_) $ _ $ ys) = last ys  | 
|
| 43594 | 1019  | 
| last t = t;  | 
| 64963 | 1020  | 
|
| 69593 | 1021  | 
fun list1 (Const(\<^const_name>\<open>Cons\<close>,_) $ _ $ Const(\<^const_name>\<open>Nil\<close>,_)) = true  | 
| 43594 | 1022  | 
| list1 _ = false;  | 
| 64963 | 1023  | 
|
| 69593 | 1024  | 
fun butlast ((cons as Const(\<^const_name>\<open>Cons\<close>,_) $ x) $ xs) =  | 
1025  | 
(case xs of Const (\<^const_name>\<open>Nil\<close>, _) => xs | _ => cons $ butlast xs)  | 
|
1026  | 
| butlast ((app as Const (\<^const_name>\<open>append\<close>, _) $ xs) $ ys) = app $ butlast ys  | 
|
1027  | 
| butlast xs = Const(\<^const_name>\<open>Nil\<close>, fastype_of xs);  | 
|
| 64963 | 1028  | 
|
| 43594 | 1029  | 
val rearr_ss =  | 
| 69593 | 1030  | 
simpset_of (put_simpset HOL_basic_ss \<^context>  | 
| 
51717
 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 
wenzelm 
parents: 
51678 
diff
changeset
 | 
1031  | 
        addsimps [@{thm append_assoc}, @{thm append_Nil}, @{thm append_Cons}]);
 | 
| 64963 | 1032  | 
|
| 
51717
 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 
wenzelm 
parents: 
51678 
diff
changeset
 | 
1033  | 
fun list_eq ctxt (F as (eq as Const(_,eqT)) $ lhs $ rhs) =  | 
| 13462 | 1034  | 
let  | 
| 43594 | 1035  | 
val lastl = last lhs and lastr = last rhs;  | 
1036  | 
fun rearr conv =  | 
|
1037  | 
let  | 
|
1038  | 
val lhs1 = butlast lhs and rhs1 = butlast rhs;  | 
|
1039  | 
val Type(_,listT::_) = eqT  | 
|
1040  | 
val appT = [listT,listT] ---> listT  | 
|
| 69593 | 1041  | 
val app = Const(\<^const_name>\<open>append\<close>,appT)  | 
| 43594 | 1042  | 
val F2 = eq $ (app$lhs1$lastl) $ (app$rhs1$lastr)  | 
1043  | 
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
 | 
1044  | 
val thm = Goal.prove ctxt [] [] eq  | 
| 
 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 
wenzelm 
parents: 
51678 
diff
changeset
 | 
1045  | 
(K (simp_tac (put_simpset rearr_ss ctxt) 1));  | 
| 43594 | 1046  | 
in SOME ((conv RS (thm RS trans)) RS eq_reflection) end;  | 
1047  | 
in  | 
|
1048  | 
        if list1 lastl andalso list1 lastr then rearr @{thm append1_eq_conv}
 | 
|
1049  | 
        else if lastl aconv lastr then rearr @{thm append_same_eq}
 | 
|
1050  | 
else NONE  | 
|
1051  | 
end;  | 
|
| 69215 | 1052  | 
in fn _ => fn ctxt => fn ct => list_eq ctxt (Thm.term_of ct) end  | 
| 60758 | 1053  | 
\<close>  | 
1054  | 
||
1055  | 
||
| 69593 | 1056  | 
subsubsection \<open>\<^const>\<open>map\<close>\<close>  | 
| 13114 | 1057  | 
|
| 58807 | 1058  | 
lemma hd_map: "xs \<noteq> [] \<Longrightarrow> hd (map f xs) = f (hd xs)"  | 
1059  | 
by (cases xs) simp_all  | 
|
1060  | 
||
1061  | 
lemma map_tl: "map f (tl xs) = tl (map f xs)"  | 
|
1062  | 
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
 | 
1063  | 
|
| 71585 | 1064  | 
lemma map_ext: "(\<And>x. x \<in> set xs \<longrightarrow> f x = g x) \<Longrightarrow> map f xs = map g xs"  | 
| 13145 | 1065  | 
by (induct xs) simp_all  | 
| 13114 | 1066  | 
|
| 13142 | 1067  | 
lemma map_ident [simp]: "map (\<lambda>x. x) = (\<lambda>xs. xs)"  | 
| 13145 | 1068  | 
by (rule ext, induct_tac xs) auto  | 
| 13114 | 1069  | 
|
| 13142 | 1070  | 
lemma map_append [simp]: "map f (xs @ ys) = map f xs @ map f ys"  | 
| 13145 | 1071  | 
by (induct xs) auto  | 
| 13114 | 1072  | 
|
| 
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
 | 
1073  | 
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
 | 
1074  | 
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
 | 
1075  | 
|
| 67091 | 1076  | 
lemma map_comp_map[simp]: "((map f) \<circ> (map g)) = map(f \<circ> g)"  | 
| 58807 | 1077  | 
by (rule ext) simp  | 
| 35208 | 1078  | 
|
| 13142 | 1079  | 
lemma rev_map: "rev (map f xs) = map f (rev xs)"  | 
| 13145 | 1080  | 
by (induct xs) auto  | 
| 13114 | 1081  | 
|
| 67613 | 1082  | 
lemma map_eq_conv[simp]: "(map f xs = map g xs) = (\<forall>x \<in> set xs. f x = g x)"  | 
| 13737 | 1083  | 
by (induct xs) auto  | 
1084  | 
||
| 
44013
 
5cfc1c36ae97
moved recdef package to HOL/Library/Old_Recdef.thy
 
krauss 
parents: 
43594 
diff
changeset
 | 
1085  | 
lemma map_cong [fundef_cong]:  | 
| 
40122
 
1d8ad2ff3e01
dropped (almost) redundant distinct.induct rule; distinct_simps again named distinct.simps
 
haftmann 
parents: 
40077 
diff
changeset
 | 
1086  | 
"xs = ys \<Longrightarrow> (\<And>x. x \<in> set ys \<Longrightarrow> f x = g x) \<Longrightarrow> map f xs = map g ys"  | 
| 58807 | 1087  | 
by simp  | 
| 13114 | 1088  | 
|
| 13142 | 1089  | 
lemma map_is_Nil_conv [iff]: "(map f xs = []) = (xs = [])"  | 
| 13145 | 1090  | 
by (cases xs) auto  | 
| 13114 | 1091  | 
|
| 13142 | 1092  | 
lemma Nil_is_map_conv [iff]: "([] = map f xs) = (xs = [])"  | 
| 13145 | 1093  | 
by (cases xs) auto  | 
| 13114 | 1094  | 
|
| 18447 | 1095  | 
lemma map_eq_Cons_conv:  | 
| 58807 | 1096  | 
"(map f xs = y#ys) = (\<exists>z zs. xs = z#zs \<and> f z = y \<and> map f zs = ys)"  | 
| 13145 | 1097  | 
by (cases xs) auto  | 
| 13114 | 1098  | 
|
| 18447 | 1099  | 
lemma Cons_eq_map_conv:  | 
| 58807 | 1100  | 
"(x#xs = map f ys) = (\<exists>z zs. ys = z#zs \<and> x = f z \<and> xs = map f zs)"  | 
| 14025 | 1101  | 
by (cases ys) auto  | 
1102  | 
||
| 18447 | 1103  | 
lemmas map_eq_Cons_D = map_eq_Cons_conv [THEN iffD1]  | 
1104  | 
lemmas Cons_eq_map_D = Cons_eq_map_conv [THEN iffD1]  | 
|
1105  | 
declare map_eq_Cons_D [dest!] Cons_eq_map_D [dest!]  | 
|
1106  | 
||
| 14111 | 1107  | 
lemma ex_map_conv:  | 
| 67091 | 1108  | 
"(\<exists>xs. ys = map f xs) = (\<forall>y \<in> set ys. \<exists>x. y = f x)"  | 
| 18447 | 1109  | 
by(induct ys, auto simp add: Cons_eq_map_conv)  | 
| 14111 | 1110  | 
|
| 
15110
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
1111  | 
lemma map_eq_imp_length_eq:  | 
| 35510 | 1112  | 
assumes "map f xs = map g ys"  | 
| 26734 | 1113  | 
shows "length xs = length ys"  | 
| 
53374
 
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
 
wenzelm 
parents: 
53017 
diff
changeset
 | 
1114  | 
using assms  | 
| 
 
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
 
wenzelm 
parents: 
53017 
diff
changeset
 | 
1115  | 
proof (induct ys arbitrary: xs)  | 
| 26734 | 1116  | 
case Nil then show ?case by simp  | 
1117  | 
next  | 
|
1118  | 
case (Cons y ys) then obtain z zs where xs: "xs = z # zs" by auto  | 
|
| 35510 | 1119  | 
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
 | 
1120  | 
with Cons have "length zs = length ys" by blast  | 
| 26734 | 1121  | 
with xs show ?case by simp  | 
1122  | 
qed  | 
|
| 64963 | 1123  | 
|
| 
15110
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
1124  | 
lemma map_inj_on:  | 
| 68709 | 1125  | 
assumes map: "map f xs = map f ys" and inj: "inj_on f (set xs Un set ys)"  | 
1126  | 
shows "xs = ys"  | 
|
1127  | 
using map_eq_imp_length_eq [OF map] assms  | 
|
1128  | 
proof (induct rule: list_induct2)  | 
|
1129  | 
case (Cons x xs y ys)  | 
|
1130  | 
then show ?case  | 
|
1131  | 
by (auto intro: sym)  | 
|
1132  | 
qed auto  | 
|
| 
15110
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
1133  | 
|
| 
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
1134  | 
lemma inj_on_map_eq_map:  | 
| 58807 | 1135  | 
"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
 | 
1136  | 
by(blast dest:map_inj_on)  | 
| 
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
1137  | 
|
| 13114 | 1138  | 
lemma map_injective:  | 
| 71585 | 1139  | 
"map f xs = map f ys \<Longrightarrow> inj f \<Longrightarrow> xs = ys"  | 
| 24526 | 1140  | 
by (induct ys arbitrary: xs) (auto dest!:injD)  | 
| 13114 | 1141  | 
|
| 14339 | 1142  | 
lemma inj_map_eq_map[simp]: "inj f \<Longrightarrow> (map f xs = map f ys) = (xs = ys)"  | 
1143  | 
by(blast dest:map_injective)  | 
|
1144  | 
||
| 71585 | 1145  | 
lemma inj_mapI: "inj f \<Longrightarrow> inj (map f)"  | 
| 17589 | 1146  | 
by (iprover dest: map_injective injD intro: inj_onI)  | 
| 13114 | 1147  | 
|
| 71585 | 1148  | 
lemma inj_mapD: "inj (map f) \<Longrightarrow> inj f"  | 
| 
73932
 
fd21b4a93043
added opaque_combs and renamed hide_lams to opaque_lifting
 
desharna 
parents: 
73832 
diff
changeset
 | 
1149  | 
by (metis (no_types, opaque_lifting) injI list.inject list.simps(9) the_inv_f_f)  | 
| 13114 | 1150  | 
|
| 14339 | 1151  | 
lemma inj_map[iff]: "inj (map f) = inj f"  | 
| 13145 | 1152  | 
by (blast dest: inj_mapD intro: inj_mapI)  | 
| 13114 | 1153  | 
|
| 15303 | 1154  | 
lemma inj_on_mapI: "inj_on f (\<Union>(set ` A)) \<Longrightarrow> inj_on (map f) A"  | 
| 68709 | 1155  | 
by (blast intro:inj_onI dest:inj_onD map_inj_on)  | 
| 15303 | 1156  | 
|
| 14343 | 1157  | 
lemma map_idI: "(\<And>x. x \<in> set xs \<Longrightarrow> f x = x) \<Longrightarrow> map f xs = xs"  | 
1158  | 
by (induct xs, auto)  | 
|
| 13114 | 1159  | 
|
| 
14402
 
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
 
nipkow 
parents: 
14395 
diff
changeset
 | 
1160  | 
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
 | 
1161  | 
by (induct xs) auto  | 
| 
 
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
 
nipkow 
parents: 
14395 
diff
changeset
 | 
1162  | 
|
| 
15110
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
1163  | 
lemma map_fst_zip[simp]:  | 
| 
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
1164  | 
"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
 | 
1165  | 
by (induct rule:list_induct2, simp_all)  | 
| 
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
1166  | 
|
| 
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
1167  | 
lemma map_snd_zip[simp]:  | 
| 
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
1168  | 
"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
 | 
1169  | 
by (induct rule:list_induct2, simp_all)  | 
| 
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
1170  | 
|
| 68215 | 1171  | 
lemma map_fst_zip_take:  | 
1172  | 
"map fst (zip xs ys) = take (min (length xs) (length ys)) xs"  | 
|
1173  | 
by (induct xs ys rule: list_induct2') simp_all  | 
|
1174  | 
||
1175  | 
lemma map_snd_zip_take:  | 
|
1176  | 
"map snd (zip xs ys) = take (min (length xs) (length ys)) ys"  | 
|
1177  | 
by (induct xs ys rule: list_induct2') simp_all  | 
|
1178  | 
||
| 66853 | 1179  | 
lemma map2_map_map: "map2 h (map f xs) (map g xs) = map (\<lambda>x. h (f x) (g x)) xs"  | 
1180  | 
by (induction xs) (auto)  | 
|
1181  | 
||
| 
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
 | 
1182  | 
functor map: map  | 
| 47122 | 1183  | 
by (simp_all add: id_def)  | 
1184  | 
||
| 
49948
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
1185  | 
declare map.id [simp]  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
1186  | 
|
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
1187  | 
|
| 69593 | 1188  | 
subsubsection \<open>\<^const>\<open>rev\<close>\<close>  | 
| 13114 | 1189  | 
|
| 13142 | 1190  | 
lemma rev_append [simp]: "rev (xs @ ys) = rev ys @ rev xs"  | 
| 13145 | 1191  | 
by (induct xs) auto  | 
| 13114 | 1192  | 
|
| 13142 | 1193  | 
lemma rev_rev_ident [simp]: "rev (rev xs) = xs"  | 
| 13145 | 1194  | 
by (induct xs) auto  | 
| 13114 | 1195  | 
|
| 15870 | 1196  | 
lemma rev_swap: "(rev xs = ys) = (xs = rev ys)"  | 
1197  | 
by auto  | 
|
1198  | 
||
| 13142 | 1199  | 
lemma rev_is_Nil_conv [iff]: "(rev xs = []) = (xs = [])"  | 
| 13145 | 1200  | 
by (induct xs) auto  | 
| 13114 | 1201  | 
|
| 13142 | 1202  | 
lemma Nil_is_rev_conv [iff]: "([] = rev xs) = (xs = [])"  | 
| 13145 | 1203  | 
by (induct xs) auto  | 
| 13114 | 1204  | 
|
| 15870 | 1205  | 
lemma rev_singleton_conv [simp]: "(rev xs = [x]) = (xs = [x])"  | 
1206  | 
by (cases xs) auto  | 
|
1207  | 
||
1208  | 
lemma singleton_rev_conv [simp]: "([x] = rev xs) = (xs = [x])"  | 
|
1209  | 
by (cases xs) auto  | 
|
1210  | 
||
| 
54147
 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 
blanchet 
parents: 
53954 
diff
changeset
 | 
1211  | 
lemma rev_is_rev_conv [iff]: "(rev xs = rev ys) = (xs = ys)"  | 
| 69850 | 1212  | 
proof (induct xs arbitrary: ys)  | 
1213  | 
case Nil  | 
|
1214  | 
then show ?case by force  | 
|
1215  | 
next  | 
|
1216  | 
case Cons  | 
|
1217  | 
then show ?case by (cases ys) auto  | 
|
1218  | 
qed  | 
|
| 13114 | 1219  | 
|
| 15439 | 1220  | 
lemma inj_on_rev[iff]: "inj_on rev A"  | 
1221  | 
by(simp add:inj_on_def)  | 
|
1222  | 
||
| 13366 | 1223  | 
lemma rev_induct [case_names Nil snoc]:  | 
| 71585 | 1224  | 
assumes "P []" and "\<And>x xs. P xs \<Longrightarrow> P (xs @ [x])"  | 
1225  | 
shows "P xs"  | 
|
1226  | 
proof -  | 
|
1227  | 
have "P (rev (rev xs))"  | 
|
1228  | 
by (rule_tac list = "rev xs" in list.induct, simp_all add: assms)  | 
|
1229  | 
then show ?thesis by simp  | 
|
1230  | 
qed  | 
|
| 13114 | 1231  | 
|
| 13366 | 1232  | 
lemma rev_exhaust [case_names Nil snoc]:  | 
| 71585 | 1233  | 
"(xs = [] \<Longrightarrow> P) \<Longrightarrow>(\<And>ys y. xs = ys @ [y] \<Longrightarrow> P) \<Longrightarrow> P"  | 
| 13145 | 1234  | 
by (induct xs rule: rev_induct) auto  | 
| 13114 | 1235  | 
|
| 13366 | 1236  | 
lemmas rev_cases = rev_exhaust  | 
1237  | 
||
| 57577 | 1238  | 
lemma rev_nonempty_induct [consumes 1, case_names single snoc]:  | 
1239  | 
assumes "xs \<noteq> []"  | 
|
1240  | 
and single: "\<And>x. P [x]"  | 
|
1241  | 
and snoc': "\<And>x xs. xs \<noteq> [] \<Longrightarrow> P xs \<Longrightarrow> P (xs@[x])"  | 
|
1242  | 
shows "P xs"  | 
|
| 60758 | 1243  | 
using \<open>xs \<noteq> []\<close> proof (induct xs rule: rev_induct)  | 
| 57577 | 1244  | 
case (snoc x xs) then show ?case  | 
1245  | 
proof (cases xs)  | 
|
1246  | 
case Nil thus ?thesis by (simp add: single)  | 
|
1247  | 
next  | 
|
1248  | 
case Cons with snoc show ?thesis by (fastforce intro!: snoc')  | 
|
1249  | 
qed  | 
|
1250  | 
qed simp  | 
|
1251  | 
||
| 18423 | 1252  | 
lemma rev_eq_Cons_iff[iff]: "(rev xs = y#ys) = (xs = rev ys @ [y])"  | 
1253  | 
by(rule rev_cases[of xs]) auto  | 
|
1254  | 
||
| 13114 | 1255  | 
|
| 69593 | 1256  | 
subsubsection \<open>\<^const>\<open>set\<close>\<close>  | 
| 13114 | 1257  | 
|
| 
67443
 
3abf6a722518
standardized towards new-style formal comments: isabelle update_comments;
 
wenzelm 
parents: 
67399 
diff
changeset
 | 
1258  | 
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
 | 
1259  | 
|
| 13142 | 1260  | 
lemma finite_set [iff]: "finite (set xs)"  | 
| 13145 | 1261  | 
by (induct xs) auto  | 
| 13114 | 1262  | 
|
| 13142 | 1263  | 
lemma set_append [simp]: "set (xs @ ys) = (set xs \<union> set ys)"  | 
| 13145 | 1264  | 
by (induct xs) auto  | 
| 13114 | 1265  | 
|
| 67613 | 1266  | 
lemma hd_in_set[simp]: "xs \<noteq> [] \<Longrightarrow> hd xs \<in> set xs"  | 
| 17830 | 1267  | 
by(cases xs) auto  | 
| 14099 | 1268  | 
|
| 13142 | 1269  | 
lemma set_subset_Cons: "set xs \<subseteq> set (x # xs)"  | 
| 13145 | 1270  | 
by auto  | 
| 13114 | 1271  | 
|
| 64963 | 1272  | 
lemma set_ConsD: "y \<in> set (x # xs) \<Longrightarrow> y=x \<or> y \<in> set xs"  | 
| 14099 | 1273  | 
by auto  | 
1274  | 
||
| 13142 | 1275  | 
lemma set_empty [iff]: "(set xs = {}) = (xs = [])"
 | 
| 13145 | 1276  | 
by (induct xs) auto  | 
| 13114 | 1277  | 
|
| 15245 | 1278  | 
lemma set_empty2[iff]: "({} = set xs) = (xs = [])"
 | 
1279  | 
by(induct xs) auto  | 
|
1280  | 
||
| 13142 | 1281  | 
lemma set_rev [simp]: "set (rev xs) = set xs"  | 
| 13145 | 1282  | 
by (induct xs) auto  | 
| 13114 | 1283  | 
|
| 13142 | 1284  | 
lemma set_map [simp]: "set (map f xs) = f`(set xs)"  | 
| 13145 | 1285  | 
by (induct xs) auto  | 
| 13114 | 1286  | 
|
| 67613 | 1287  | 
lemma set_filter [simp]: "set (filter P xs) = {x. x \<in> set xs \<and> P x}"
 | 
| 13145 | 1288  | 
by (induct xs) auto  | 
| 13114 | 1289  | 
|
| 32417 | 1290  | 
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
 | 
1291  | 
by (induct j) auto  | 
| 13114 | 1292  | 
|
| 13142 | 1293  | 
|
| 67613 | 1294  | 
lemma split_list: "x \<in> set xs \<Longrightarrow> \<exists>ys zs. xs = ys @ x # zs"  | 
| 18049 | 1295  | 
proof (induct xs)  | 
| 26073 | 1296  | 
case Nil thus ?case by simp  | 
1297  | 
next  | 
|
1298  | 
case Cons thus ?case by (auto intro: Cons_eq_appendI)  | 
|
1299  | 
qed  | 
|
1300  | 
||
| 26734 | 1301  | 
lemma in_set_conv_decomp: "x \<in> set xs \<longleftrightarrow> (\<exists>ys zs. xs = ys @ x # zs)"  | 
1302  | 
by (auto elim: split_list)  | 
|
| 26073 | 1303  | 
|
| 67613 | 1304  | 
lemma split_list_first: "x \<in> set xs \<Longrightarrow> \<exists>ys zs. xs = ys @ x # zs \<and> x \<notin> set ys"  | 
| 26073 | 1305  | 
proof (induct xs)  | 
1306  | 
case Nil thus ?case by simp  | 
|
| 18049 | 1307  | 
next  | 
1308  | 
case (Cons a xs)  | 
|
1309  | 
show ?case  | 
|
1310  | 
proof cases  | 
|
| 
44890
 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 
nipkow 
parents: 
44635 
diff
changeset
 | 
1311  | 
assume "x = a" thus ?case using Cons by fastforce  | 
| 18049 | 1312  | 
next  | 
| 
44890
 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 
nipkow 
parents: 
44635 
diff
changeset
 | 
1313  | 
assume "x \<noteq> a" thus ?case using Cons by(fastforce intro!: Cons_eq_appendI)  | 
| 26073 | 1314  | 
qed  | 
1315  | 
qed  | 
|
1316  | 
||
1317  | 
lemma in_set_conv_decomp_first:  | 
|
| 67613 | 1318  | 
"(x \<in> set xs) = (\<exists>ys zs. xs = ys @ x # zs \<and> x \<notin> set ys)"  | 
| 26734 | 1319  | 
by (auto dest!: split_list_first)  | 
| 26073 | 1320  | 
|
| 
40122
 
1d8ad2ff3e01
dropped (almost) redundant distinct.induct rule; distinct_simps again named distinct.simps
 
haftmann 
parents: 
40077 
diff
changeset
 | 
1321  | 
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
 | 
1322  | 
proof (induct xs rule: rev_induct)  | 
| 26073 | 1323  | 
case Nil thus ?case by simp  | 
1324  | 
next  | 
|
1325  | 
case (snoc a xs)  | 
|
1326  | 
show ?case  | 
|
1327  | 
proof cases  | 
|
| 56085 | 1328  | 
assume "x = a" thus ?case using snoc by (auto intro!: exI)  | 
| 26073 | 1329  | 
next  | 
| 
44890
 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 
nipkow 
parents: 
44635 
diff
changeset
 | 
1330  | 
assume "x \<noteq> a" thus ?case using snoc by fastforce  | 
| 18049 | 1331  | 
qed  | 
1332  | 
qed  | 
|
1333  | 
||
| 26073 | 1334  | 
lemma in_set_conv_decomp_last:  | 
| 67613 | 1335  | 
"(x \<in> set xs) = (\<exists>ys zs. xs = ys @ x # zs \<and> x \<notin> set zs)"  | 
| 26734 | 1336  | 
by (auto dest!: split_list_last)  | 
| 26073 | 1337  | 
|
| 67091 | 1338  | 
lemma split_list_prop: "\<exists>x \<in> set xs. P x \<Longrightarrow> \<exists>ys x zs. xs = ys @ x # zs \<and> P x"  | 
| 26073 | 1339  | 
proof (induct xs)  | 
1340  | 
case Nil thus ?case by simp  | 
|
1341  | 
next  | 
|
1342  | 
case Cons thus ?case  | 
|
1343  | 
by(simp add:Bex_def)(metis append_Cons append.simps(1))  | 
|
1344  | 
qed  | 
|
1345  | 
||
1346  | 
lemma split_list_propE:  | 
|
| 26734 | 1347  | 
assumes "\<exists>x \<in> set xs. P x"  | 
1348  | 
obtains ys x zs where "xs = ys @ x # zs" and "P x"  | 
|
1349  | 
using split_list_prop [OF assms] by blast  | 
|
| 26073 | 1350  | 
|
1351  | 
lemma split_list_first_prop:  | 
|
1352  | 
"\<exists>x \<in> set xs. P x \<Longrightarrow>  | 
|
1353  | 
\<exists>ys x zs. xs = ys@x#zs \<and> P x \<and> (\<forall>y \<in> set ys. \<not> P y)"  | 
|
| 26734 | 1354  | 
proof (induct xs)  | 
| 26073 | 1355  | 
case Nil thus ?case by simp  | 
1356  | 
next  | 
|
1357  | 
case (Cons x xs)  | 
|
1358  | 
show ?case  | 
|
1359  | 
proof cases  | 
|
1360  | 
assume "P x"  | 
|
| 56085 | 1361  | 
hence "x # xs = [] @ x # xs \<and> P x \<and> (\<forall>y\<in>set []. \<not> P y)" by simp  | 
1362  | 
thus ?thesis by fast  | 
|
| 26073 | 1363  | 
next  | 
1364  | 
assume "\<not> P x"  | 
|
1365  | 
hence "\<exists>x\<in>set xs. P x" using Cons(2) by simp  | 
|
| 60758 | 1366  | 
thus ?thesis using \<open>\<not> P x\<close> Cons(1) by (metis append_Cons set_ConsD)  | 
| 26073 | 1367  | 
qed  | 
1368  | 
qed  | 
|
1369  | 
||
1370  | 
lemma split_list_first_propE:  | 
|
| 26734 | 1371  | 
assumes "\<exists>x \<in> set xs. P x"  | 
1372  | 
obtains ys x zs where "xs = ys @ x # zs" and "P x" and "\<forall>y \<in> set ys. \<not> P y"  | 
|
1373  | 
using split_list_first_prop [OF assms] by blast  | 
|
| 26073 | 1374  | 
|
1375  | 
lemma split_list_first_prop_iff:  | 
|
1376  | 
"(\<exists>x \<in> set xs. P x) \<longleftrightarrow>  | 
|
1377  | 
(\<exists>ys x zs. xs = ys@x#zs \<and> P x \<and> (\<forall>y \<in> set ys. \<not> P y))"  | 
|
| 26734 | 1378  | 
by (rule, erule split_list_first_prop) auto  | 
| 26073 | 1379  | 
|
1380  | 
lemma split_list_last_prop:  | 
|
1381  | 
"\<exists>x \<in> set xs. P x \<Longrightarrow>  | 
|
1382  | 
\<exists>ys x zs. xs = ys@x#zs \<and> P x \<and> (\<forall>z \<in> set zs. \<not> P z)"  | 
|
1383  | 
proof(induct xs rule:rev_induct)  | 
|
1384  | 
case Nil thus ?case by simp  | 
|
1385  | 
next  | 
|
1386  | 
case (snoc x xs)  | 
|
1387  | 
show ?case  | 
|
1388  | 
proof cases  | 
|
| 56085 | 1389  | 
assume "P x" thus ?thesis by (auto intro!: exI)  | 
| 26073 | 1390  | 
next  | 
1391  | 
assume "\<not> P x"  | 
|
1392  | 
hence "\<exists>x\<in>set xs. P x" using snoc(2) by simp  | 
|
| 60758 | 1393  | 
thus ?thesis using \<open>\<not> P x\<close> snoc(1) by fastforce  | 
| 26073 | 1394  | 
qed  | 
1395  | 
qed  | 
|
1396  | 
||
1397  | 
lemma split_list_last_propE:  | 
|
| 26734 | 1398  | 
assumes "\<exists>x \<in> set xs. P x"  | 
1399  | 
obtains ys x zs where "xs = ys @ x # zs" and "P x" and "\<forall>z \<in> set zs. \<not> P z"  | 
|
1400  | 
using split_list_last_prop [OF assms] by blast  | 
|
| 26073 | 1401  | 
|
1402  | 
lemma split_list_last_prop_iff:  | 
|
1403  | 
"(\<exists>x \<in> set xs. P x) \<longleftrightarrow>  | 
|
1404  | 
(\<exists>ys x zs. xs = ys@x#zs \<and> P x \<and> (\<forall>z \<in> set zs. \<not> P z))"  | 
|
| 56085 | 1405  | 
by rule (erule split_list_last_prop, auto)  | 
1406  | 
||
| 26073 | 1407  | 
|
| 67091 | 1408  | 
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
 | 
1409  | 
by (erule finite_induct) (auto simp add: list.set(2)[symmetric] simp del: list.set(2))  | 
| 13508 | 1410  | 
|
| 14388 | 1411  | 
lemma card_length: "card (set xs) \<le> length xs"  | 
1412  | 
by (induct xs) (auto simp add: card_insert_if)  | 
|
| 13114 | 1413  | 
|
| 
26442
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
1414  | 
lemma set_minus_filter_out:  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
1415  | 
  "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
 | 
1416  | 
by (induct xs) auto  | 
| 15168 | 1417  | 
|
| 66257 | 1418  | 
lemma append_Cons_eq_iff:  | 
1419  | 
"\<lbrakk> x \<notin> set xs; x \<notin> set ys \<rbrakk> \<Longrightarrow>  | 
|
1420  | 
xs @ x # ys = xs' @ x # ys' \<longleftrightarrow> (xs = xs' \<and> ys = ys')"  | 
|
1421  | 
by(auto simp: append_eq_Cons_conv Cons_eq_append_conv append_eq_append_conv2)  | 
|
1422  | 
||
| 35115 | 1423  | 
|
| 73307 | 1424  | 
subsubsection \<open>\<^const>\<open>concat\<close>\<close>  | 
1425  | 
||
1426  | 
lemma concat_append [simp]: "concat (xs @ ys) = concat xs @ concat ys"  | 
|
1427  | 
by (induct xs) auto  | 
|
1428  | 
||
1429  | 
lemma concat_eq_Nil_conv [simp]: "(concat xss = []) = (\<forall>xs \<in> set xss. xs = [])"  | 
|
1430  | 
by (induct xss) auto  | 
|
1431  | 
||
1432  | 
lemma Nil_eq_concat_conv [simp]: "([] = concat xss) = (\<forall>xs \<in> set xss. xs = [])"  | 
|
1433  | 
by (induct xss) auto  | 
|
1434  | 
||
1435  | 
lemma set_concat [simp]: "set (concat xs) = (\<Union>x\<in>set xs. set x)"  | 
|
1436  | 
by (induct xs) auto  | 
|
1437  | 
||
1438  | 
lemma concat_map_singleton[simp]: "concat(map (%x. [f x]) xs) = map f xs"  | 
|
1439  | 
by (induct xs) auto  | 
|
1440  | 
||
1441  | 
lemma map_concat: "map f (concat xs) = concat (map (map f) xs)"  | 
|
1442  | 
by (induct xs) auto  | 
|
1443  | 
||
1444  | 
lemma rev_concat: "rev (concat xs) = concat (map rev (rev xs))"  | 
|
1445  | 
by (induct xs) auto  | 
|
1446  | 
||
1447  | 
lemma length_concat_rev[simp]: "length (concat (rev xs)) = length (concat xs)"  | 
|
1448  | 
by (induction xs) auto  | 
|
1449  | 
||
1450  | 
lemma concat_eq_concat_iff: "\<forall>(x, y) \<in> set (zip xs ys). length x = length y \<Longrightarrow> length xs = length ys \<Longrightarrow> (concat xs = concat ys) = (xs = ys)"  | 
|
1451  | 
proof (induct xs arbitrary: ys)  | 
|
1452  | 
case (Cons x xs ys)  | 
|
1453  | 
thus ?case by (cases ys) auto  | 
|
1454  | 
qed (auto)  | 
|
1455  | 
||
1456  | 
lemma concat_injective: "concat xs = concat ys \<Longrightarrow> length xs = length ys \<Longrightarrow> \<forall>(x, y) \<in> set (zip xs ys). length x = length y \<Longrightarrow> xs = ys"  | 
|
1457  | 
by (simp add: concat_eq_concat_iff)  | 
|
1458  | 
||
1459  | 
lemma concat_eq_appendD:  | 
|
1460  | 
assumes "concat xss = ys @ zs" "xss \<noteq> []"  | 
|
1461  | 
shows "\<exists>xss1 xs xs' xss2. xss = xss1 @ (xs @ xs') # xss2 \<and> ys = concat xss1 @ xs \<and> zs = xs' @ concat xss2"  | 
|
1462  | 
using assms  | 
|
1463  | 
proof(induction xss arbitrary: ys)  | 
|
1464  | 
case (Cons xs xss)  | 
|
1465  | 
from Cons.prems consider  | 
|
1466  | 
us where "xs @ us = ys" "concat xss = us @ zs" |  | 
|
1467  | 
us where "xs = ys @ us" "us @ concat xss = zs"  | 
|
1468  | 
by(auto simp add: append_eq_append_conv2)  | 
|
1469  | 
then show ?case  | 
|
1470  | 
proof cases  | 
|
1471  | 
case 1  | 
|
1472  | 
then show ?thesis using Cons.IH[OF 1(2)]  | 
|
1473  | 
by(cases xss)(auto intro: exI[where x="[]"], metis append.assoc append_Cons concat.simps(2))  | 
|
1474  | 
qed(auto intro: exI[where x="[]"])  | 
|
1475  | 
qed simp  | 
|
1476  | 
||
1477  | 
lemma concat_eq_append_conv:  | 
|
1478  | 
"concat xss = ys @ zs \<longleftrightarrow>  | 
|
1479  | 
(if xss = [] then ys = [] \<and> zs = []  | 
|
1480  | 
else \<exists>xss1 xs xs' xss2. xss = xss1 @ (xs @ xs') # xss2 \<and> ys = concat xss1 @ xs \<and> zs = xs' @ concat xss2)"  | 
|
1481  | 
by(auto dest: concat_eq_appendD)  | 
|
1482  | 
||
1483  | 
lemma hd_concat: "\<lbrakk>xs \<noteq> []; hd xs \<noteq> []\<rbrakk> \<Longrightarrow> hd (concat xs) = hd (hd xs)"  | 
|
1484  | 
by (metis concat.simps(2) hd_Cons_tl hd_append2)  | 
|
1485  | 
||
1486  | 
||
1487  | 
simproc_setup list_neq ("(xs::'a list) = ys") = \<open>
 | 
|
1488  | 
(*  | 
|
1489  | 
Reduces xs=ys to False if xs and ys cannot be of the same length.  | 
|
1490  | 
This is the case if the atomic sublists of one are a submultiset  | 
|
1491  | 
of those of the other list and there are fewer Cons's in one than the other.  | 
|
1492  | 
*)  | 
|
1493  | 
||
1494  | 
let  | 
|
1495  | 
||
1496  | 
fun len (Const(\<^const_name>\<open>Nil\<close>,_)) acc = acc  | 
|
1497  | 
| len (Const(\<^const_name>\<open>Cons\<close>,_) $ _ $ xs) (ts,n) = len xs (ts,n+1)  | 
|
1498  | 
| len (Const(\<^const_name>\<open>append\<close>,_) $ xs $ ys) acc = len xs (len ys acc)  | 
|
1499  | 
| len (Const(\<^const_name>\<open>rev\<close>,_) $ xs) acc = len xs acc  | 
|
1500  | 
| len (Const(\<^const_name>\<open>map\<close>,_) $ _ $ xs) acc = len xs acc  | 
|
1501  | 
| len (Const(\<^const_name>\<open>concat\<close>,T) $ (Const(\<^const_name>\<open>rev\<close>,_) $ xss)) acc  | 
|
1502  | 
= len (Const(\<^const_name>\<open>concat\<close>,T) $ xss) acc  | 
|
1503  | 
| len t (ts,n) = (t::ts,n);  | 
|
1504  | 
||
1505  | 
val ss = simpset_of \<^context>;  | 
|
1506  | 
||
1507  | 
fun list_neq ctxt ct =  | 
|
1508  | 
let  | 
|
1509  | 
val (Const(_,eqT) $ lhs $ rhs) = Thm.term_of ct;  | 
|
1510  | 
val (ls,m) = len lhs ([],0) and (rs,n) = len rhs ([],0);  | 
|
1511  | 
fun prove_neq() =  | 
|
1512  | 
let  | 
|
1513  | 
val Type(_,listT::_) = eqT;  | 
|
1514  | 
val size = HOLogic.size_const listT;  | 
|
1515  | 
val eq_len = HOLogic.mk_eq (size $ lhs, size $ rhs);  | 
|
1516  | 
val neq_len = HOLogic.mk_Trueprop (HOLogic.Not $ eq_len);  | 
|
1517  | 
val thm = Goal.prove ctxt [] [] neq_len  | 
|
1518  | 
(K (simp_tac (put_simpset ss ctxt) 1));  | 
|
1519  | 
      in SOME (thm RS @{thm neq_if_length_neq}) end
 | 
|
1520  | 
in  | 
|
1521  | 
if m < n andalso submultiset (op aconv) (ls,rs) orelse  | 
|
1522  | 
n < m andalso submultiset (op aconv) (rs,ls)  | 
|
1523  | 
then prove_neq() else NONE  | 
|
1524  | 
end;  | 
|
1525  | 
in K list_neq end  | 
|
1526  | 
\<close>  | 
|
1527  | 
||
| 69593 | 1528  | 
subsubsection \<open>\<^const>\<open>filter\<close>\<close>  | 
| 13114 | 1529  | 
|
| 13142 | 1530  | 
lemma filter_append [simp]: "filter P (xs @ ys) = filter P xs @ filter P ys"  | 
| 13145 | 1531  | 
by (induct xs) auto  | 
| 13114 | 1532  | 
|
| 15305 | 1533  | 
lemma rev_filter: "rev (filter P xs) = filter P (rev xs)"  | 
1534  | 
by (induct xs) simp_all  | 
|
1535  | 
||
| 13142 | 1536  | 
lemma filter_filter [simp]: "filter P (filter Q xs) = filter (\<lambda>x. Q x \<and> P x) xs"  | 
| 13145 | 1537  | 
by (induct xs) auto  | 
| 13114 | 1538  | 
|
| 73307 | 1539  | 
lemma filter_concat: "filter p (concat xs) = concat (map (filter p) xs)"  | 
1540  | 
by (induct xs) auto  | 
|
1541  | 
||
| 16998 | 1542  | 
lemma length_filter_le [simp]: "length (filter P xs) \<le> length xs"  | 
1543  | 
by (induct xs) (auto simp add: le_SucI)  | 
|
1544  | 
||
| 18423 | 1545  | 
lemma sum_length_filter_compl:  | 
| 67091 | 1546  | 
"length(filter P xs) + length(filter (\<lambda>x. \<not>P x) xs) = length xs"  | 
| 18423 | 1547  | 
by(induct xs) simp_all  | 
1548  | 
||
| 71585 | 1549  | 
lemma filter_True [simp]: "\<forall>x \<in> set xs. P x \<Longrightarrow> filter P xs = xs"  | 
| 13145 | 1550  | 
by (induct xs) auto  | 
| 13114 | 1551  | 
|
| 71585 | 1552  | 
lemma filter_False [simp]: "\<forall>x \<in> set xs. \<not> P x \<Longrightarrow> filter P xs = []"  | 
| 13145 | 1553  | 
by (induct xs) auto  | 
| 13114 | 1554  | 
|
| 64963 | 1555  | 
lemma filter_empty_conv: "(filter P xs = []) = (\<forall>x\<in>set xs. \<not> P x)"  | 
| 24349 | 1556  | 
by (induct xs) simp_all  | 
| 16998 | 1557  | 
|
1558  | 
lemma filter_id_conv: "(filter P xs = xs) = (\<forall>x\<in>set xs. P x)"  | 
|
| 68709 | 1559  | 
proof (induct xs)  | 
1560  | 
case (Cons x xs)  | 
|
1561  | 
then show ?case  | 
|
1562  | 
using length_filter_le  | 
|
1563  | 
by (simp add: impossible_Cons)  | 
|
1564  | 
qed auto  | 
|
| 13114 | 1565  | 
|
| 67091 | 1566  | 
lemma filter_map: "filter P (map f xs) = map f (filter (P \<circ> f) xs)"  | 
| 16965 | 1567  | 
by (induct xs) simp_all  | 
1568  | 
||
1569  | 
lemma length_filter_map[simp]:  | 
|
| 67091 | 1570  | 
"length (filter P (map f xs)) = length(filter (P \<circ> f) xs)"  | 
| 16965 | 1571  | 
by (simp add:filter_map)  | 
1572  | 
||
| 13142 | 1573  | 
lemma filter_is_subset [simp]: "set (filter P xs) \<le> set xs"  | 
| 13145 | 1574  | 
by auto  | 
| 13114 | 1575  | 
|
| 15246 | 1576  | 
lemma length_filter_less:  | 
| 67091 | 1577  | 
"\<lbrakk> x \<in> set xs; \<not> P x \<rbrakk> \<Longrightarrow> length(filter P xs) < length xs"  | 
| 15246 | 1578  | 
proof (induct xs)  | 
1579  | 
case Nil thus ?case by simp  | 
|
1580  | 
next  | 
|
1581  | 
case (Cons x xs) thus ?case  | 
|
| 68719 | 1582  | 
using Suc_le_eq by fastforce  | 
| 15246 | 1583  | 
qed  | 
| 13114 | 1584  | 
|
| 15281 | 1585  | 
lemma length_filter_conv_card:  | 
| 67091 | 1586  | 
  "length(filter p xs) = card{i. i < length xs \<and> p(xs!i)}"
 | 
| 15281 | 1587  | 
proof (induct xs)  | 
1588  | 
case Nil thus ?case by simp  | 
|
1589  | 
next  | 
|
1590  | 
case (Cons x xs)  | 
|
| 67091 | 1591  | 
  let ?S = "{i. i < length xs \<and> p(xs!i)}"
 | 
| 15281 | 1592  | 
have fin: "finite ?S" by(fast intro: bounded_nat_set_is_finite)  | 
1593  | 
show ?case (is "?l = card ?S'")  | 
|
1594  | 
proof (cases)  | 
|
1595  | 
assume "p x"  | 
|
1596  | 
hence eq: "?S' = insert 0 (Suc ` ?S)"  | 
|
| 25162 | 1597  | 
by(auto simp: image_def split:nat.split dest:gr0_implies_Suc)  | 
| 15281 | 1598  | 
have "length (filter p (x # xs)) = Suc(card ?S)"  | 
| 60758 | 1599  | 
using Cons \<open>p x\<close> by simp  | 
| 15281 | 1600  | 
also have "\<dots> = Suc(card(Suc ` ?S))" using fin  | 
| 44921 | 1601  | 
by (simp add: card_image)  | 
| 15281 | 1602  | 
also have "\<dots> = card ?S'" using eq fin  | 
| 
71393
 
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
 
traytel 
parents: 
70911 
diff
changeset
 | 
1603  | 
by (simp add:card_insert_if)  | 
| 15281 | 1604  | 
finally show ?thesis .  | 
1605  | 
next  | 
|
1606  | 
assume "\<not> p x"  | 
|
1607  | 
hence eq: "?S' = Suc ` ?S"  | 
|
| 25162 | 1608  | 
by(auto simp add: image_def split:nat.split elim:lessE)  | 
| 15281 | 1609  | 
have "length (filter p (x # xs)) = card ?S"  | 
| 60758 | 1610  | 
using Cons \<open>\<not> p x\<close> by simp  | 
| 15281 | 1611  | 
also have "\<dots> = card(Suc ` ?S)" using fin  | 
| 44921 | 1612  | 
by (simp add: card_image)  | 
| 15281 | 1613  | 
also have "\<dots> = card ?S'" using eq fin  | 
1614  | 
by (simp add:card_insert_if)  | 
|
1615  | 
finally show ?thesis .  | 
|
1616  | 
qed  | 
|
1617  | 
qed  | 
|
1618  | 
||
| 17629 | 1619  | 
lemma Cons_eq_filterD:  | 
| 58807 | 1620  | 
"x#xs = filter P ys \<Longrightarrow>  | 
| 17629 | 1621  | 
\<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 | 1622  | 
(is "_ \<Longrightarrow> \<exists>us vs. ?P ys us vs")  | 
| 17629 | 1623  | 
proof(induct ys)  | 
1624  | 
case Nil thus ?case by simp  | 
|
1625  | 
next  | 
|
1626  | 
case (Cons y ys)  | 
|
1627  | 
show ?case (is "\<exists>x. ?Q x")  | 
|
1628  | 
proof cases  | 
|
1629  | 
assume Py: "P y"  | 
|
1630  | 
show ?thesis  | 
|
1631  | 
proof cases  | 
|
| 
25221
 
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
 
wenzelm 
parents: 
25215 
diff
changeset
 | 
1632  | 
assume "x = y"  | 
| 
 
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
 
wenzelm 
parents: 
25215 
diff
changeset
 | 
1633  | 
with Py Cons.prems have "?Q []" by simp  | 
| 
 
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
 
wenzelm 
parents: 
25215 
diff
changeset
 | 
1634  | 
then show ?thesis ..  | 
| 17629 | 1635  | 
next  | 
| 
25221
 
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
 
wenzelm 
parents: 
25215 
diff
changeset
 | 
1636  | 
assume "x \<noteq> y"  | 
| 
 
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
 
wenzelm 
parents: 
25215 
diff
changeset
 | 
1637  | 
with Py Cons.prems show ?thesis by simp  | 
| 17629 | 1638  | 
qed  | 
1639  | 
next  | 
|
| 
25221
 
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
 
wenzelm 
parents: 
25215 
diff
changeset
 | 
1640  | 
assume "\<not> P y"  | 
| 
44890
 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 
nipkow 
parents: 
44635 
diff
changeset
 | 
1641  | 
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
 | 
1642  | 
then have "?Q (y#us)" by simp  | 
| 
 
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
 
wenzelm 
parents: 
25215 
diff
changeset
 | 
1643  | 
then show ?thesis ..  | 
| 17629 | 1644  | 
qed  | 
1645  | 
qed  | 
|
1646  | 
||
1647  | 
lemma filter_eq_ConsD:  | 
|
| 58807 | 1648  | 
"filter P ys = x#xs \<Longrightarrow>  | 
| 17629 | 1649  | 
\<exists>us vs. ys = us @ x # vs \<and> (\<forall>u\<in>set us. \<not> P u) \<and> P x \<and> xs = filter P vs"  | 
| 68719 | 1650  | 
by(rule Cons_eq_filterD) simp  | 
| 17629 | 1651  | 
|
1652  | 
lemma filter_eq_Cons_iff:  | 
|
| 58807 | 1653  | 
"(filter P ys = x#xs) =  | 
| 17629 | 1654  | 
(\<exists>us vs. ys = us @ x # vs \<and> (\<forall>u\<in>set us. \<not> P u) \<and> P x \<and> xs = filter P vs)"  | 
| 68719 | 1655  | 
by(auto dest:filter_eq_ConsD)  | 
| 17629 | 1656  | 
|
1657  | 
lemma Cons_eq_filter_iff:  | 
|
| 58807 | 1658  | 
"(x#xs = filter P ys) =  | 
| 17629 | 1659  | 
(\<exists>us vs. ys = us @ x # vs \<and> (\<forall>u\<in>set us. \<not> P u) \<and> P x \<and> xs = filter P vs)"  | 
| 68719 | 1660  | 
by(auto dest:Cons_eq_filterD)  | 
| 17629 | 1661  | 
|
| 
61031
 
162bd20dae23
more lemmas on sorting and multisets (due to Thomas Sewell)
 
haftmann 
parents: 
60758 
diff
changeset
 | 
1662  | 
lemma inj_on_filter_key_eq:  | 
| 
 
162bd20dae23
more lemmas on sorting and multisets (due to Thomas Sewell)
 
haftmann 
parents: 
60758 
diff
changeset
 | 
1663  | 
assumes "inj_on f (insert y (set xs))"  | 
| 
68249
 
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
 
nipkow 
parents: 
68215 
diff
changeset
 | 
1664  | 
shows "filter (\<lambda>x. f y = f x) xs = filter (HOL.eq y) xs"  | 
| 
61031
 
162bd20dae23
more lemmas on sorting and multisets (due to Thomas Sewell)
 
haftmann 
parents: 
60758 
diff
changeset
 | 
1665  | 
using assms by (induct xs) auto  | 
| 
 
162bd20dae23
more lemmas on sorting and multisets (due to Thomas Sewell)
 
haftmann 
parents: 
60758 
diff
changeset
 | 
1666  | 
|
| 
44013
 
5cfc1c36ae97
moved recdef package to HOL/Library/Old_Recdef.thy
 
krauss 
parents: 
43594 
diff
changeset
 | 
1667  | 
lemma filter_cong[fundef_cong]:  | 
| 58807 | 1668  | 
"xs = ys \<Longrightarrow> (\<And>x. x \<in> set ys \<Longrightarrow> P x = Q x) \<Longrightarrow> filter P xs = filter Q ys"  | 
| 68709 | 1669  | 
by (induct ys arbitrary: xs) auto  | 
| 17501 | 1670  | 
|
| 15281 | 1671  | 
|
| 60758 | 1672  | 
subsubsection \<open>List partitioning\<close>  | 
| 
26442
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
1673  | 
|
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
1674  | 
primrec partition :: "('a \<Rightarrow> bool) \<Rightarrow>'a list \<Rightarrow> 'a list \<times> 'a list" where
 | 
| 68719 | 1675  | 
"partition P [] = ([], [])" |  | 
1676  | 
"partition P (x # xs) =  | 
|
| 50548 | 1677  | 
(let (yes, no) = partition P xs  | 
1678  | 
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
 | 
1679  | 
|
| 58807 | 1680  | 
lemma partition_filter1: "fst (partition P xs) = filter P xs"  | 
| 68719 | 1681  | 
by (induct xs) (auto simp add: Let_def split_def)  | 
| 
26442
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
1682  | 
|
| 67091 | 1683  | 
lemma partition_filter2: "snd (partition P xs) = filter (Not \<circ> P) xs"  | 
| 68719 | 1684  | 
by (induct xs) (auto simp add: Let_def split_def)  | 
| 
26442
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
1685  | 
|
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
1686  | 
lemma partition_P:  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
1687  | 
assumes "partition P xs = (yes, no)"  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
1688  | 
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
 | 
1689  | 
proof -  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
1690  | 
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
 | 
1691  | 
by simp_all  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
1692  | 
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
 | 
1693  | 
qed  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
1694  | 
|
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
1695  | 
lemma partition_set:  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
1696  | 
assumes "partition P xs = (yes, no)"  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
1697  | 
shows "set yes \<union> set no = set xs"  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
1698  | 
proof -  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
1699  | 
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
 | 
1700  | 
by simp_all  | 
| 64963 | 1701  | 
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
 | 
1702  | 
qed  | 
| 
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
1703  | 
|
| 
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
 | 
1704  | 
lemma partition_filter_conv[simp]:  | 
| 67091 | 1705  | 
"partition f xs = (filter f xs,filter (Not \<circ> f) xs)"  | 
| 68719 | 1706  | 
unfolding partition_filter2[symmetric]  | 
1707  | 
unfolding partition_filter1[symmetric] by simp  | 
|
| 
33639
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
1708  | 
|
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
1709  | 
declare partition.simps[simp del]  | 
| 
26442
 
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
 
haftmann 
parents: 
26300 
diff
changeset
 | 
1710  | 
|
| 35115 | 1711  | 
|
| 69593 | 1712  | 
subsubsection \<open>\<^const>\<open>nth\<close>\<close>  | 
| 13114 | 1713  | 
|
| 29827 | 1714  | 
lemma nth_Cons_0 [simp, code]: "(x # xs)!0 = x"  | 
| 68719 | 1715  | 
by auto  | 
| 13114 | 1716  | 
|
| 29827 | 1717  | 
lemma nth_Cons_Suc [simp, code]: "(x # xs)!(Suc n) = xs!n"  | 
| 68719 | 1718  | 
by auto  | 
| 13114 | 1719  | 
|
| 13142 | 1720  | 
declare nth.simps [simp del]  | 
| 13114 | 1721  | 
|
| 41842 | 1722  | 
lemma nth_Cons_pos[simp]: "0 < n \<Longrightarrow> (x#xs) ! n = xs ! (n - 1)"  | 
| 68719 | 1723  | 
by(auto simp: Nat.gr0_conv_Suc)  | 
| 41842 | 1724  | 
|
| 13114 | 1725  | 
lemma nth_append:  | 
| 24526 | 1726  | 
"(xs @ ys)!n = (if n < length xs then xs!n else ys!(n - length xs))"  | 
| 68709 | 1727  | 
proof (induct xs arbitrary: n)  | 
1728  | 
case (Cons x xs)  | 
|
1729  | 
then show ?case  | 
|
1730  | 
using less_Suc_eq_0_disj by auto  | 
|
1731  | 
qed simp  | 
|
| 13114 | 1732  | 
|
| 
14402
 
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
 
nipkow 
parents: 
14395 
diff
changeset
 | 
1733  | 
lemma nth_append_length [simp]: "(xs @ x # ys) ! length xs = x"  | 
| 68719 | 1734  | 
by (induct xs) auto  | 
| 
14402
 
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
 
nipkow 
parents: 
14395 
diff
changeset
 | 
1735  | 
|
| 
 
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
 
nipkow 
parents: 
14395 
diff
changeset
 | 
1736  | 
lemma nth_append_length_plus[simp]: "(xs @ ys) ! (length xs + n) = ys ! n"  | 
| 68719 | 1737  | 
by (induct xs) auto  | 
| 
14402
 
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
 
nipkow 
parents: 
14395 
diff
changeset
 | 
1738  | 
|
| 71585 | 1739  | 
lemma nth_map [simp]: "n < length xs \<Longrightarrow> (map f xs)!n = f(xs!n)"  | 
| 68709 | 1740  | 
proof (induct xs arbitrary: n)  | 
1741  | 
case (Cons x xs)  | 
|
1742  | 
then show ?case  | 
|
1743  | 
using less_Suc_eq_0_disj by auto  | 
|
1744  | 
qed simp  | 
|
| 13114 | 1745  | 
|
| 66847 | 1746  | 
lemma nth_tl: "n < length (tl xs) \<Longrightarrow> tl xs ! n = xs ! Suc n"  | 
| 68719 | 1747  | 
by (induction xs) auto  | 
| 45841 | 1748  | 
|
| 18423 | 1749  | 
lemma hd_conv_nth: "xs \<noteq> [] \<Longrightarrow> hd xs = xs!0"  | 
| 68719 | 1750  | 
by(cases xs) simp_all  | 
| 18423 | 1751  | 
|
| 18049 | 1752  | 
|
1753  | 
lemma list_eq_iff_nth_eq:  | 
|
| 67717 | 1754  | 
"(xs = ys) = (length xs = length ys \<and> (\<forall>i<length xs. xs!i = ys!i))"  | 
| 68709 | 1755  | 
proof (induct xs arbitrary: ys)  | 
1756  | 
case (Cons x xs ys)  | 
|
| 
71393
 
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
 
traytel 
parents: 
70911 
diff
changeset
 | 
1757  | 
show ?case  | 
| 68709 | 1758  | 
proof (cases ys)  | 
1759  | 
case (Cons y ys)  | 
|
1760  | 
then show ?thesis  | 
|
1761  | 
using Cons.hyps by fastforce  | 
|
1762  | 
qed simp  | 
|
1763  | 
qed force  | 
|
| 18049 | 1764  | 
|
| 13142 | 1765  | 
lemma set_conv_nth: "set xs = {xs!i | i. i < length xs}"
 | 
| 68709 | 1766  | 
proof (induct xs)  | 
1767  | 
case (Cons x xs)  | 
|
1768  | 
  have "insert x {xs ! i |i. i < length xs} = {(x # xs) ! i |i. i < Suc (length xs)}" (is "?L=?R")
 | 
|
1769  | 
proof  | 
|
1770  | 
show "?L \<subseteq> ?R"  | 
|
1771  | 
by force  | 
|
1772  | 
show "?R \<subseteq> ?L"  | 
|
1773  | 
using less_Suc_eq_0_disj by auto  | 
|
1774  | 
qed  | 
|
1775  | 
with Cons show ?case  | 
|
1776  | 
by simp  | 
|
1777  | 
qed simp  | 
|
| 13114 | 1778  | 
|
| 17501 | 1779  | 
lemma in_set_conv_nth: "(x \<in> set xs) = (\<exists>i < length xs. xs!i = x)"  | 
| 68719 | 1780  | 
by(auto simp:set_conv_nth)  | 
| 17501 | 1781  | 
|
| 
51160
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
1782  | 
lemma nth_equal_first_eq:  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
1783  | 
assumes "x \<notin> set xs"  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
1784  | 
assumes "n \<le> length xs"  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
1785  | 
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
 | 
1786  | 
proof  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
1787  | 
assume ?lhs  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
1788  | 
show ?rhs  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
1789  | 
proof (rule ccontr)  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
1790  | 
assume "n \<noteq> 0"  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
1791  | 
then have "n > 0" by simp  | 
| 60758 | 1792  | 
with \<open>?lhs\<close> have "xs ! (n - 1) = x" by simp  | 
1793  | 
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
 | 
1794  | 
ultimately have "\<exists>i<length xs. xs ! i = x" by auto  | 
| 60758 | 1795  | 
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
 | 
1796  | 
qed  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
1797  | 
next  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
1798  | 
assume ?rhs then show ?lhs by simp  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
1799  | 
qed  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
1800  | 
|
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
1801  | 
lemma nth_non_equal_first_eq:  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
1802  | 
assumes "x \<noteq> y"  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
1803  | 
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
 | 
1804  | 
proof  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
1805  | 
assume "?lhs" with assms have "n > 0" by (cases n) simp_all  | 
| 60758 | 1806  | 
with \<open>?lhs\<close> show ?rhs by simp  | 
| 
51160
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
1807  | 
next  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
1808  | 
assume "?rhs" then show "?lhs" by simp  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
1809  | 
qed  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
1810  | 
|
| 67613 | 1811  | 
lemma list_ball_nth: "\<lbrakk>n < length xs; \<forall>x \<in> set xs. P x\<rbrakk> \<Longrightarrow> P(xs!n)"  | 
| 68719 | 1812  | 
by (auto simp add: set_conv_nth)  | 
| 13114 | 1813  | 
|
| 67613 | 1814  | 
lemma nth_mem [simp]: "n < length xs \<Longrightarrow> xs!n \<in> set xs"  | 
| 68719 | 1815  | 
by (auto simp add: set_conv_nth)  | 
| 13114 | 1816  | 
|
1817  | 
lemma all_nth_imp_all_set:  | 
|
| 67717 | 1818  | 
"\<lbrakk>\<forall>i < length xs. P(xs!i); x \<in> set xs\<rbrakk> \<Longrightarrow> P x"  | 
| 68719 | 1819  | 
by (auto simp add: set_conv_nth)  | 
| 13114 | 1820  | 
|
1821  | 
lemma all_set_conv_all_nth:  | 
|
| 67091 | 1822  | 
"(\<forall>x \<in> set xs. P x) = (\<forall>i. i < length xs \<longrightarrow> P (xs ! i))"  | 
| 68719 | 1823  | 
by (auto simp add: set_conv_nth)  | 
| 13114 | 1824  | 
|
| 25296 | 1825  | 
lemma rev_nth:  | 
1826  | 
"n < size xs \<Longrightarrow> rev xs ! n = xs ! (length xs - Suc n)"  | 
|
1827  | 
proof (induct xs arbitrary: n)  | 
|
1828  | 
case Nil thus ?case by simp  | 
|
1829  | 
next  | 
|
1830  | 
case (Cons x xs)  | 
|
1831  | 
hence n: "n < Suc (length xs)" by simp  | 
|
1832  | 
moreover  | 
|
1833  | 
  { assume "n < length xs"
 | 
|
| 
53374
 
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
 
wenzelm 
parents: 
53017 
diff
changeset
 | 
1834  | 
with n obtain n' where n': "length xs - n = Suc n'"  | 
| 25296 | 1835  | 
by (cases "length xs - n", auto)  | 
1836  | 
moreover  | 
|
| 
53374
 
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
 
wenzelm 
parents: 
53017 
diff
changeset
 | 
1837  | 
from n' have "length xs - Suc n = n'" by simp  | 
| 25296 | 1838  | 
ultimately  | 
1839  | 
have "xs ! (length xs - Suc n) = (x # xs) ! (length xs - n)" by simp  | 
|
1840  | 
}  | 
|
1841  | 
ultimately  | 
|
1842  | 
show ?case by (clarsimp simp add: Cons nth_append)  | 
|
1843  | 
qed  | 
|
| 13114 | 1844  | 
|
| 31159 | 1845  | 
lemma Skolem_list_nth:  | 
| 67091 | 1846  | 
"(\<forall>i<k. \<exists>x. P i x) = (\<exists>xs. size xs = k \<and> (\<forall>i<k. P i (xs!i)))"  | 
1847  | 
(is "_ = (\<exists>xs. ?P k xs)")  | 
|
| 31159 | 1848  | 
proof(induct k)  | 
1849  | 
case 0 show ?case by simp  | 
|
1850  | 
next  | 
|
1851  | 
case (Suc k)  | 
|
| 67091 | 1852  | 
show ?case (is "?L = ?R" is "_ = (\<exists>xs. ?P' xs)")  | 
| 31159 | 1853  | 
proof  | 
1854  | 
assume "?R" thus "?L" using Suc by auto  | 
|
1855  | 
next  | 
|
1856  | 
assume "?L"  | 
|
| 67091 | 1857  | 
with Suc obtain x xs where "?P k xs \<and> P k x" by (metis less_Suc_eq)  | 
| 31159 | 1858  | 
hence "?P'(xs@[x])" by(simp add:nth_append less_Suc_eq)  | 
1859  | 
thus "?R" ..  | 
|
1860  | 
qed  | 
|
1861  | 
qed  | 
|
1862  | 
||
1863  | 
||
| 69593 | 1864  | 
subsubsection \<open>\<^const>\<open>list_update\<close>\<close>  | 
| 13114 | 1865  | 
|
| 24526 | 1866  | 
lemma length_list_update [simp]: "length(xs[i:=x]) = length xs"  | 
| 68719 | 1867  | 
by (induct xs arbitrary: i) (auto split: nat.split)  | 
| 13114 | 1868  | 
|
1869  | 
lemma nth_list_update:  | 
|
| 71585 | 1870  | 
"i < length xs\<Longrightarrow> (xs[i:=x])!j = (if i = j then x else xs!j)"  | 
| 68719 | 1871  | 
by (induct xs arbitrary: i j) (auto simp add: nth_Cons split: nat.split)  | 
| 13114 | 1872  | 
|
| 71585 | 1873  | 
lemma nth_list_update_eq [simp]: "i < length xs \<Longrightarrow> (xs[i:=x])!i = x"  | 
| 68719 | 1874  | 
by (simp add: nth_list_update)  | 
| 13114 | 1875  | 
|
| 71585 | 1876  | 
lemma nth_list_update_neq [simp]: "i \<noteq> j \<Longrightarrow> xs[i:=x]!j = xs!j"  | 
| 68719 | 1877  | 
by (induct xs arbitrary: i j) (auto simp add: nth_Cons split: nat.split)  | 
| 13114 | 1878  | 
|
| 24526 | 1879  | 
lemma list_update_id[simp]: "xs[i := xs!i] = xs"  | 
| 68719 | 1880  | 
by (induct xs arbitrary: i) (simp_all split:nat.splits)  | 
| 24526 | 1881  | 
|
1882  | 
lemma list_update_beyond[simp]: "length xs \<le> i \<Longrightarrow> xs[i:=x] = xs"  | 
|
| 68709 | 1883  | 
proof (induct xs arbitrary: i)  | 
1884  | 
case (Cons x xs i)  | 
|
1885  | 
then show ?case  | 
|
1886  | 
by (metis leD length_list_update list_eq_iff_nth_eq nth_list_update_neq)  | 
|
1887  | 
qed simp  | 
|
| 17501 | 1888  | 
|
| 31077 | 1889  | 
lemma list_update_nonempty[simp]: "xs[k:=x] = [] \<longleftrightarrow> xs=[]"  | 
| 68719 | 1890  | 
by (simp only: length_0_conv[symmetric] length_list_update)  | 
| 31077 | 1891  | 
|
| 13114 | 1892  | 
lemma list_update_same_conv:  | 
| 71585 | 1893  | 
"i < length xs \<Longrightarrow> (xs[i := x] = xs) = (xs!i = x)"  | 
| 68719 | 1894  | 
by (induct xs arbitrary: i) (auto split: nat.split)  | 
| 13114 | 1895  | 
|
| 14187 | 1896  | 
lemma list_update_append1:  | 
| 58807 | 1897  | 
"i < size xs \<Longrightarrow> (xs @ ys)[i:=x] = xs[i:=x] @ ys"  | 
| 68719 | 1898  | 
by (induct xs arbitrary: i)(auto split:nat.split)  | 
| 14187 | 1899  | 
|
| 15868 | 1900  | 
lemma list_update_append:  | 
| 64963 | 1901  | 
"(xs @ ys) [n:= x] =  | 
| 15868 | 1902  | 
(if n < length xs then xs[n:= x] @ ys else xs @ (ys [n-length xs:= x]))"  | 
| 68719 | 1903  | 
by (induct xs arbitrary: n) (auto split:nat.splits)  | 
| 15868 | 1904  | 
|
| 
14402
 
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
 
nipkow 
parents: 
14395 
diff
changeset
 | 
1905  | 
lemma list_update_length [simp]:  | 
| 58807 | 1906  | 
"(xs @ x # ys)[length xs := y] = (xs @ y # ys)"  | 
| 68719 | 1907  | 
by (induct xs, auto)  | 
| 
14402
 
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
 
nipkow 
parents: 
14395 
diff
changeset
 | 
1908  | 
|
| 31264 | 1909  | 
lemma map_update: "map f (xs[k:= y]) = (map f xs)[k := f y]"  | 
| 68719 | 1910  | 
by(induct xs arbitrary: k)(auto split:nat.splits)  | 
| 31264 | 1911  | 
|
1912  | 
lemma rev_update:  | 
|
1913  | 
"k < length xs \<Longrightarrow> rev (xs[k:= y]) = (rev xs)[length xs - k - 1 := y]"  | 
|
| 68719 | 1914  | 
by (induct xs arbitrary: k) (auto simp: list_update_append split:nat.splits)  | 
| 31264 | 1915  | 
|
| 13114 | 1916  | 
lemma update_zip:  | 
| 31080 | 1917  | 
"(zip xs ys)[i:=xy] = zip (xs[i:=fst xy]) (ys[i:=snd xy])"  | 
| 68719 | 1918  | 
by (induct ys arbitrary: i xy xs) (auto, case_tac xs, auto split: nat.split)  | 
| 24526 | 1919  | 
|
| 68709 | 1920  | 
lemma set_update_subset_insert: "set(xs[i:=x]) \<le> insert x (set xs)"  | 
| 68719 | 1921  | 
by (induct xs arbitrary: i) (auto split: nat.split)  | 
| 13114 | 1922  | 
|
| 67613 | 1923  | 
lemma set_update_subsetI: "\<lbrakk>set xs \<subseteq> A; x \<in> A\<rbrakk> \<Longrightarrow> set(xs[i := x]) \<subseteq> A"  | 
| 68719 | 1924  | 
by (blast dest!: set_update_subset_insert [THEN subsetD])  | 
| 13114 | 1925  | 
|
| 24526 | 1926  | 
lemma set_update_memI: "n < length xs \<Longrightarrow> x \<in> set (xs[n := x])"  | 
| 68719 | 1927  | 
by (induct xs arbitrary: n) (auto split:nat.splits)  | 
| 15868 | 1928  | 
|
| 31077 | 1929  | 
lemma list_update_overwrite[simp]:  | 
| 24796 | 1930  | 
"xs [i := x, i := y] = xs [i := y]"  | 
| 68709 | 1931  | 
by (induct xs arbitrary: i) (simp_all split: nat.split)  | 
| 24796 | 1932  | 
|
1933  | 
lemma list_update_swap:  | 
|
1934  | 
"i \<noteq> i' \<Longrightarrow> xs [i := x, i' := x'] = xs [i' := x', i := x]"  | 
|
| 68709 | 1935  | 
by (induct xs arbitrary: i i') (simp_all split: nat.split)  | 
| 24796 | 1936  | 
|
| 29827 | 1937  | 
lemma list_update_code [code]:  | 
1938  | 
"[][i := y] = []"  | 
|
1939  | 
"(x # xs)[0 := y] = y # xs"  | 
|
1940  | 
"(x # xs)[Suc i := y] = x # xs[i := y]"  | 
|
| 68719 | 1941  | 
by simp_all  | 
| 29827 | 1942  | 
|
| 13114 | 1943  | 
|
| 69593 | 1944  | 
subsubsection \<open>\<^const>\<open>last\<close> and \<^const>\<open>butlast\<close>\<close>  | 
| 13114 | 1945  | 
|
| 
73510
 
c526eb2c7ca0
removal of needless hypothesis in hd_rev and last_rev
 
paulson <lp15@cam.ac.uk> 
parents: 
73443 
diff
changeset
 | 
1946  | 
lemma hd_Nil_eq_last: "hd Nil = last Nil"  | 
| 
 
c526eb2c7ca0
removal of needless hypothesis in hd_rev and last_rev
 
paulson <lp15@cam.ac.uk> 
parents: 
73443 
diff
changeset
 | 
1947  | 
unfolding hd_def last_def by simp  | 
| 
 
c526eb2c7ca0
removal of needless hypothesis in hd_rev and last_rev
 
paulson <lp15@cam.ac.uk> 
parents: 
73443 
diff
changeset
 | 
1948  | 
|
| 13142 | 1949  | 
lemma last_snoc [simp]: "last (xs @ [x]) = x"  | 
| 68719 | 1950  | 
by (induct xs) auto  | 
| 13114 | 1951  | 
|
| 13142 | 1952  | 
lemma butlast_snoc [simp]: "butlast (xs @ [x]) = xs"  | 
| 68719 | 1953  | 
by (induct xs) auto  | 
| 13114 | 1954  | 
|
| 14302 | 1955  | 
lemma last_ConsL: "xs = [] \<Longrightarrow> last(x#xs) = x"  | 
| 68719 | 1956  | 
by simp  | 
| 14302 | 1957  | 
|
1958  | 
lemma last_ConsR: "xs \<noteq> [] \<Longrightarrow> last(x#xs) = last xs"  | 
|
| 68719 | 1959  | 
by simp  | 
| 14302 | 1960  | 
|
1961  | 
lemma last_append: "last(xs @ ys) = (if ys = [] then last xs else last ys)"  | 
|
| 68719 | 1962  | 
by (induct xs) (auto)  | 
| 14302 | 1963  | 
|
1964  | 
lemma last_appendL[simp]: "ys = [] \<Longrightarrow> last(xs @ ys) = last xs"  | 
|
| 68719 | 1965  | 
by(simp add:last_append)  | 
| 14302 | 1966  | 
|
1967  | 
lemma last_appendR[simp]: "ys \<noteq> [] \<Longrightarrow> last(xs @ ys) = last ys"  | 
|
| 68719 | 1968  | 
by(simp add:last_append)  | 
| 14302 | 1969  | 
|
| 45841 | 1970  | 
lemma last_tl: "xs = [] \<or> tl xs \<noteq> [] \<Longrightarrow>last (tl xs) = last xs"  | 
| 68719 | 1971  | 
by (induct xs) simp_all  | 
| 45841 | 1972  | 
|
1973  | 
lemma butlast_tl: "butlast (tl xs) = tl (butlast xs)"  | 
|
| 68719 | 1974  | 
by (induct xs) simp_all  | 
| 45841 | 1975  | 
|
| 
73510
 
c526eb2c7ca0
removal of needless hypothesis in hd_rev and last_rev
 
paulson <lp15@cam.ac.uk> 
parents: 
73443 
diff
changeset
 | 
1976  | 
lemma hd_rev: "hd(rev xs) = last xs"  | 
| 
 
c526eb2c7ca0
removal of needless hypothesis in hd_rev and last_rev
 
paulson <lp15@cam.ac.uk> 
parents: 
73443 
diff
changeset
 | 
1977  | 
by (metis hd_Cons_tl hd_Nil_eq_last last_snoc rev_eq_Cons_iff rev_is_Nil_conv)  | 
| 
 
c526eb2c7ca0
removal of needless hypothesis in hd_rev and last_rev
 
paulson <lp15@cam.ac.uk> 
parents: 
73443 
diff
changeset
 | 
1978  | 
|
| 
 
c526eb2c7ca0
removal of needless hypothesis in hd_rev and last_rev
 
paulson <lp15@cam.ac.uk> 
parents: 
73443 
diff
changeset
 | 
1979  | 
lemma last_rev: "last(rev xs) = hd xs"  | 
| 
 
c526eb2c7ca0
removal of needless hypothesis in hd_rev and last_rev
 
paulson <lp15@cam.ac.uk> 
parents: 
73443 
diff
changeset
 | 
1980  | 
by (metis hd_rev rev_swap)  | 
| 17762 | 1981  | 
|
| 17765 | 1982  | 
lemma last_in_set[simp]: "as \<noteq> [] \<Longrightarrow> last as \<in> set as"  | 
| 68719 | 1983  | 
by (induct as) auto  | 
| 17762 | 1984  | 
|
| 13142 | 1985  | 
lemma length_butlast [simp]: "length (butlast xs) = length xs - 1"  | 
| 68719 | 1986  | 
by (induct xs rule: rev_induct) auto  | 
| 13114 | 1987  | 
|
1988  | 
lemma butlast_append:  | 
|
| 24526 | 1989  | 
"butlast (xs @ ys) = (if ys = [] then butlast xs else xs @ butlast ys)"  | 
| 68719 | 1990  | 
by (induct xs arbitrary: ys) auto  | 
| 13114 | 1991  | 
|
| 13142 | 1992  | 
lemma append_butlast_last_id [simp]:  | 
| 67613 | 1993  | 
"xs \<noteq> [] \<Longrightarrow> butlast xs @ [last xs] = xs"  | 
| 68719 | 1994  | 
by (induct xs) auto  | 
| 13114 | 1995  | 
|
| 67613 | 1996  | 
lemma in_set_butlastD: "x \<in> set (butlast xs) \<Longrightarrow> x \<in> set xs"  | 
| 68719 | 1997  | 
by (induct xs) (auto split: if_split_asm)  | 
| 13114 | 1998  | 
|
1999  | 
lemma in_set_butlast_appendI:  | 
|
| 67091 | 2000  | 
"x \<in> set (butlast xs) \<or> x \<in> set (butlast ys) \<Longrightarrow> x \<in> set (butlast (xs @ ys))"  | 
| 68719 | 2001  | 
by (auto dest: in_set_butlastD simp add: butlast_append)  | 
| 13114 | 2002  | 
|
| 24526 | 2003  | 
lemma last_drop[simp]: "n < length xs \<Longrightarrow> last (drop n xs) = last xs"  | 
| 68719 | 2004  | 
by (induct xs arbitrary: n)(auto split:nat.split)  | 
| 17501 | 2005  | 
|
| 45841 | 2006  | 
lemma nth_butlast:  | 
2007  | 
assumes "n < length (butlast xs)" shows "butlast xs ! n = xs ! n"  | 
|
2008  | 
proof (cases xs)  | 
|
2009  | 
case (Cons y ys)  | 
|
2010  | 
moreover from assms have "butlast xs ! n = (butlast xs @ [last xs]) ! n"  | 
|
2011  | 
by (simp add: nth_append)  | 
|
2012  | 
ultimately show ?thesis using append_butlast_last_id by simp  | 
|
2013  | 
qed simp  | 
|
2014  | 
||
| 
30128
 
365ee7319b86
revert some Suc 0 lemmas back to their original forms; added some simp rules for (1::nat)
 
huffman 
parents: 
30079 
diff
changeset
 | 
2015  | 
lemma last_conv_nth: "xs\<noteq>[] \<Longrightarrow> last xs = xs!(length xs - 1)"  | 
| 68719 | 2016  | 
by(induct xs)(auto simp:neq_Nil_conv)  | 
| 17589 | 2017  | 
|
| 
30128
 
365ee7319b86
revert some Suc 0 lemmas back to their original forms; added some simp rules for (1::nat)
 
huffman 
parents: 
30079 
diff
changeset
 | 
2018  | 
lemma butlast_conv_take: "butlast xs = take (length xs - 1) xs"  | 
| 68719 | 2019  | 
by (induction xs rule: induct_list012) simp_all  | 
| 
26584
 
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
 
huffman 
parents: 
26480 
diff
changeset
 | 
2020  | 
|
| 31077 | 2021  | 
lemma last_list_update:  | 
2022  | 
"xs \<noteq> [] \<Longrightarrow> last(xs[k:=x]) = (if k = size xs - 1 then x else last xs)"  | 
|
| 68719 | 2023  | 
by (auto simp: last_conv_nth)  | 
| 31077 | 2024  | 
|
2025  | 
lemma butlast_list_update:  | 
|
2026  | 
"butlast(xs[k:=x]) =  | 
|
| 58807 | 2027  | 
(if k = size xs - 1 then butlast xs else (butlast xs)[k:=x])"  | 
| 68719 | 2028  | 
by(cases xs rule:rev_cases)(auto simp: list_update_append split: nat.splits)  | 
| 58807 | 2029  | 
|
2030  | 
lemma last_map: "xs \<noteq> [] \<Longrightarrow> last (map f xs) = f (last xs)"  | 
|
| 68719 | 2031  | 
by (cases xs rule: rev_cases) simp_all  | 
| 58807 | 2032  | 
|
2033  | 
lemma map_butlast: "map f (butlast xs) = butlast (map f xs)"  | 
|
| 68719 | 2034  | 
by (induct xs) simp_all  | 
| 36851 | 2035  | 
|
| 40230 | 2036  | 
lemma snoc_eq_iff_butlast:  | 
| 67091 | 2037  | 
"xs @ [x] = ys \<longleftrightarrow> (ys \<noteq> [] \<and> butlast ys = xs \<and> last ys = x)"  | 
| 68719 | 2038  | 
by fastforce  | 
| 40230 | 2039  | 
|
| 63173 | 2040  | 
corollary longest_common_suffix:  | 
2041  | 
"\<exists>ss xs' ys'. xs = xs' @ ss \<and> ys = ys' @ ss  | 
|
2042  | 
\<and> (xs' = [] \<or> ys' = [] \<or> last xs' \<noteq> last ys')"  | 
|
| 68719 | 2043  | 
using longest_common_prefix[of "rev xs" "rev ys"]  | 
2044  | 
unfolding rev_swap rev_append by (metis last_rev rev_is_Nil_conv)  | 
|
| 63173 | 2045  | 
|
| 
70183
 
3ea80c950023
incorporated various material from the AFP into the distribution
 
haftmann 
parents: 
69850 
diff
changeset
 | 
2046  | 
lemma butlast_rev [simp]: "butlast (rev xs) = rev (tl xs)"  | 
| 
 
3ea80c950023
incorporated various material from the AFP into the distribution
 
haftmann 
parents: 
69850 
diff
changeset
 | 
2047  | 
by (cases xs) simp_all  | 
| 
 
3ea80c950023
incorporated various material from the AFP into the distribution
 
haftmann 
parents: 
69850 
diff
changeset
 | 
2048  | 
|
| 24796 | 2049  | 
|
| 69593 | 2050  | 
subsubsection \<open>\<^const>\<open>take\<close> and \<^const>\<open>drop\<close>\<close>  | 
| 13114 | 2051  | 
|
| 66658 | 2052  | 
lemma take_0: "take 0 xs = []"  | 
| 68719 | 2053  | 
by (induct xs) auto  | 
| 66658 | 2054  | 
|
2055  | 
lemma drop_0: "drop 0 xs = xs"  | 
|
| 68719 | 2056  | 
by (induct xs) auto  | 
| 13114 | 2057  | 
|
| 66658 | 2058  | 
lemma take0[simp]: "take 0 = (\<lambda>xs. [])"  | 
| 68719 | 2059  | 
by(rule ext) (rule take_0)  | 
| 66658 | 2060  | 
|
2061  | 
lemma drop0[simp]: "drop 0 = (\<lambda>x. x)"  | 
|
| 68719 | 2062  | 
by(rule ext) (rule drop_0)  | 
| 13114 | 2063  | 
|
| 13142 | 2064  | 
lemma take_Suc_Cons [simp]: "take (Suc n) (x # xs) = x # take n xs"  | 
| 68719 | 2065  | 
by simp  | 
| 13114 | 2066  | 
|
| 13142 | 2067  | 
lemma drop_Suc_Cons [simp]: "drop (Suc n) (x # xs) = drop n xs"  | 
| 68719 | 2068  | 
by simp  | 
| 13114 | 2069  | 
|
| 13142 | 2070  | 
declare take_Cons [simp del] and drop_Cons [simp del]  | 
| 13114 | 2071  | 
|
| 67091 | 2072  | 
lemma take_Suc: "xs \<noteq> [] \<Longrightarrow> take (Suc n) xs = hd xs # take n (tl xs)"  | 
| 68719 | 2073  | 
by(clarsimp simp add:neq_Nil_conv)  | 
| 
15110
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
2074  | 
|
| 14187 | 2075  | 
lemma drop_Suc: "drop (Suc n) xs = drop n (tl xs)"  | 
| 68719 | 2076  | 
by(cases xs, simp_all)  | 
| 14187 | 2077  | 
|
| 66870 | 2078  | 
lemma hd_take[simp]: "j > 0 \<Longrightarrow> hd (take j xs) = hd xs"  | 
| 68719 | 2079  | 
by (metis gr0_conv_Suc list.sel(1) take.simps(1) take_Suc)  | 
| 66657 | 2080  | 
|
| 
26584
 
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
 
huffman 
parents: 
26480 
diff
changeset
 | 
2081  | 
lemma take_tl: "take n (tl xs) = tl (take (Suc n) xs)"  | 
| 68719 | 2082  | 
by (induct xs arbitrary: n) simp_all  | 
| 
26584
 
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
 
huffman 
parents: 
26480 
diff
changeset
 | 
2083  | 
|
| 24526 | 2084  | 
lemma drop_tl: "drop n (tl xs) = tl(drop n xs)"  | 
| 68719 | 2085  | 
by(induct xs arbitrary: n, simp_all add:drop_Cons drop_Suc split:nat.split)  | 
| 24526 | 2086  | 
|
| 
26584
 
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
 
huffman 
parents: 
26480 
diff
changeset
 | 
2087  | 
lemma tl_take: "tl (take n xs) = take (n - 1) (tl xs)"  | 
| 68719 | 2088  | 
by (cases n, simp, cases xs, auto)  | 
| 
26584
 
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
 
huffman 
parents: 
26480 
diff
changeset
 | 
2089  | 
|
| 
 
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
 
huffman 
parents: 
26480 
diff
changeset
 | 
2090  | 
lemma tl_drop: "tl (drop n xs) = drop n (tl xs)"  | 
| 68719 | 2091  | 
by (simp only: drop_tl)  | 
| 
26584
 
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
 
huffman 
parents: 
26480 
diff
changeset
 | 
2092  | 
|
| 24526 | 2093  | 
lemma nth_via_drop: "drop n xs = y#ys \<Longrightarrow> xs!n = y"  | 
| 68719 | 2094  | 
by (induct xs arbitrary: n, simp)(auto simp: drop_Cons nth_Cons split: nat.splits)  | 
| 14187 | 2095  | 
|
| 13913 | 2096  | 
lemma take_Suc_conv_app_nth:  | 
| 24526 | 2097  | 
"i < length xs \<Longrightarrow> take (Suc i) xs = take i xs @ [xs!i]"  | 
| 68709 | 2098  | 
proof (induct xs arbitrary: i)  | 
| 69850 | 2099  | 
case Nil  | 
2100  | 
then show ?case by simp  | 
|
2101  | 
next  | 
|
2102  | 
case Cons  | 
|
2103  | 
then show ?case by (cases i) auto  | 
|
2104  | 
qed  | 
|
| 13913 | 2105  | 
|
| 
58247
 
98d0f85d247f
enamed drop_Suc_conv_tl and nth_drop' to Cons_nth_drop_Suc
 
nipkow 
parents: 
58195 
diff
changeset
 | 
2106  | 
lemma Cons_nth_drop_Suc:  | 
| 24526 | 2107  | 
"i < length xs \<Longrightarrow> (xs!i) # (drop (Suc i) xs) = drop i xs"  | 
| 68709 | 2108  | 
proof (induct xs arbitrary: i)  | 
| 69850 | 2109  | 
case Nil  | 
2110  | 
then show ?case by simp  | 
|
2111  | 
next  | 
|
2112  | 
case Cons  | 
|
2113  | 
then show ?case by (cases i) auto  | 
|
2114  | 
qed  | 
|
| 14591 | 2115  | 
|
| 24526 | 2116  | 
lemma length_take [simp]: "length (take n xs) = min (length xs) n"  | 
| 68719 | 2117  | 
by (induct n arbitrary: xs) (auto, case_tac xs, auto)  | 
| 24526 | 2118  | 
|
2119  | 
lemma length_drop [simp]: "length (drop n xs) = (length xs - n)"  | 
|
| 68719 | 2120  | 
by (induct n arbitrary: xs) (auto, case_tac xs, auto)  | 
| 24526 | 2121  | 
|
| 71585 | 2122  | 
lemma take_all [simp]: "length xs \<le> n \<Longrightarrow> take n xs = xs"  | 
| 68719 | 2123  | 
by (induct n arbitrary: xs) (auto, case_tac xs, auto)  | 
| 24526 | 2124  | 
|
| 71585 | 2125  | 
lemma drop_all [simp]: "length xs \<le> n \<Longrightarrow> drop n xs = []"  | 
| 68719 | 2126  | 
by (induct n arbitrary: xs) (auto, case_tac xs, auto)  | 
| 13114 | 2127  | 
|
| 72852 | 2128  | 
lemma take_all_iff [simp]: "take n xs = xs \<longleftrightarrow> length xs \<le> n"  | 
2129  | 
by (metis length_take min.order_iff take_all)  | 
|
2130  | 
||
2131  | 
lemma drop_all_iff [simp]: "drop n xs = [] \<longleftrightarrow> length xs \<le> n"  | 
|
2132  | 
by (metis diff_is_0_eq drop_all length_drop list.size(3))  | 
|
2133  | 
||
| 13142 | 2134  | 
lemma take_append [simp]:  | 
| 24526 | 2135  | 
"take n (xs @ ys) = (take n xs @ take (n - length xs) ys)"  | 
| 68719 | 2136  | 
by (induct n arbitrary: xs) (auto, case_tac xs, auto)  | 
| 13114 | 2137  | 
|
| 13142 | 2138  | 
lemma drop_append [simp]:  | 
| 24526 | 2139  | 
"drop n (xs @ ys) = drop n xs @ drop (n - length xs) ys"  | 
| 68719 | 2140  | 
by (induct n arbitrary: xs) (auto, case_tac xs, auto)  | 
| 24526 | 2141  | 
|
2142  | 
lemma take_take [simp]: "take n (take m xs) = take (min n m) xs"  | 
|
| 68709 | 2143  | 
proof (induct m arbitrary: xs n)  | 
| 69850 | 2144  | 
case 0  | 
2145  | 
then show ?case by simp  | 
|
2146  | 
next  | 
|
2147  | 
case Suc  | 
|
2148  | 
then show ?case by (cases xs; cases n) simp_all  | 
|
2149  | 
qed  | 
|
| 13114 | 2150  | 
|
| 24526 | 2151  | 
lemma drop_drop [simp]: "drop n (drop m xs) = drop (n + m) xs"  | 
| 68709 | 2152  | 
proof (induct m arbitrary: xs)  | 
| 69850 | 2153  | 
case 0  | 
2154  | 
then show ?case by simp  | 
|
2155  | 
next  | 
|
2156  | 
case Suc  | 
|
2157  | 
then show ?case by (cases xs) simp_all  | 
|
2158  | 
qed  | 
|
| 13114 | 2159  | 
|
| 24526 | 2160  | 
lemma take_drop: "take n (drop m xs) = drop m (take (n + m) xs)"  | 
| 68709 | 2161  | 
proof (induct m arbitrary: xs n)  | 
| 69850 | 2162  | 
case 0  | 
2163  | 
then show ?case by simp  | 
|
2164  | 
next  | 
|
2165  | 
case Suc  | 
|
2166  | 
then show ?case by (cases xs; cases n) simp_all  | 
|
2167  | 
qed  | 
|
| 13114 | 2168  | 
|
| 24526 | 2169  | 
lemma drop_take: "drop n (take m xs) = take (m-n) (drop n xs)"  | 
| 68719 | 2170  | 
by(induct xs arbitrary: m n)(auto simp: take_Cons drop_Cons split: nat.split)  | 
| 14802 | 2171  | 
|
| 24526 | 2172  | 
lemma append_take_drop_id [simp]: "take n xs @ drop n xs = xs"  | 
| 68709 | 2173  | 
proof (induct n arbitrary: xs)  | 
| 69850 | 2174  | 
case 0  | 
2175  | 
then show ?case by simp  | 
|
2176  | 
next  | 
|
2177  | 
case Suc  | 
|
2178  | 
then show ?case by (cases xs) simp_all  | 
|
2179  | 
qed  | 
|
| 13114 | 2180  | 
|
| 24526 | 2181  | 
lemma take_eq_Nil[simp]: "(take n xs = []) = (n = 0 \<or> xs = [])"  | 
| 68719 | 2182  | 
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
 | 
2183  | 
|
| 68709 | 2184  | 
lemma drop_eq_Nil[simp]: "(drop n xs = []) = (length xs \<le> n)"  | 
| 68719 | 2185  | 
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
 | 
2186  | 
|
| 24526 | 2187  | 
lemma take_map: "take n (map f xs) = map f (take n xs)"  | 
| 68709 | 2188  | 
proof (induct n arbitrary: xs)  | 
| 69850 | 2189  | 
case 0  | 
2190  | 
then show ?case by simp  | 
|
2191  | 
next  | 
|
2192  | 
case Suc  | 
|
2193  | 
then show ?case by (cases xs) simp_all  | 
|
2194  | 
qed  | 
|
| 13114 | 2195  | 
|
| 24526 | 2196  | 
lemma drop_map: "drop n (map f xs) = map f (drop n xs)"  | 
| 68709 | 2197  | 
proof (induct n arbitrary: xs)  | 
| 69850 | 2198  | 
case 0  | 
2199  | 
then show ?case by simp  | 
|
2200  | 
next  | 
|
2201  | 
case Suc  | 
|
2202  | 
then show ?case by (cases xs) simp_all  | 
|
2203  | 
qed  | 
|
| 13114 | 2204  | 
|
| 24526 | 2205  | 
lemma rev_take: "rev (take i xs) = drop (length xs - i) (rev xs)"  | 
| 68709 | 2206  | 
proof (induct xs arbitrary: i)  | 
| 69850 | 2207  | 
case Nil  | 
2208  | 
then show ?case by simp  | 
|
2209  | 
next  | 
|
2210  | 
case Cons  | 
|
2211  | 
then show ?case by (cases i) auto  | 
|
2212  | 
qed  | 
|
| 13114 | 2213  | 
|
| 24526 | 2214  | 
lemma rev_drop: "rev (drop i xs) = take (length xs - i) (rev xs)"  | 
| 68709 | 2215  | 
proof (induct xs arbitrary: i)  | 
| 69850 | 2216  | 
case Nil  | 
2217  | 
then show ?case by simp  | 
|
2218  | 
next  | 
|
2219  | 
case Cons  | 
|
2220  | 
then show ?case by (cases i) auto  | 
|
2221  | 
qed  | 
|
| 13114 | 2222  | 
|
| 
61699
 
a81dc5c4d6a9
New theorems mostly from Peter Gammie
 
paulson <lp15@cam.ac.uk> 
parents: 
61682 
diff
changeset
 | 
2223  | 
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
 | 
2224  | 
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
 | 
2225  | 
|
| 
 
a81dc5c4d6a9
New theorems mostly from Peter Gammie
 
paulson <lp15@cam.ac.uk> 
parents: 
61682 
diff
changeset
 | 
2226  | 
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
 | 
2227  | 
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
 | 
2228  | 
|
| 71585 | 2229  | 
lemma nth_take [simp]: "i < n \<Longrightarrow> (take n xs)!i = xs!i"  | 
| 68709 | 2230  | 
proof (induct xs arbitrary: i n)  | 
| 69850 | 2231  | 
case Nil  | 
2232  | 
then show ?case by simp  | 
|
2233  | 
next  | 
|
2234  | 
case Cons  | 
|
2235  | 
then show ?case by (cases n; cases i) simp_all  | 
|
2236  | 
qed  | 
|
| 13114 | 2237  | 
|
| 13142 | 2238  | 
lemma nth_drop [simp]:  | 
| 71585 | 2239  | 
"n \<le> length xs \<Longrightarrow> (drop n xs)!i = xs!(n + i)"  | 
| 68709 | 2240  | 
proof (induct n arbitrary: xs)  | 
| 69850 | 2241  | 
case 0  | 
2242  | 
then show ?case by simp  | 
|
2243  | 
next  | 
|
2244  | 
case Suc  | 
|
2245  | 
then show ?case by (cases xs) simp_all  | 
|
2246  | 
qed  | 
|
| 3507 | 2247  | 
|
| 
26584
 
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
 
huffman 
parents: 
26480 
diff
changeset
 | 
2248  | 
lemma butlast_take:  | 
| 71585 | 2249  | 
"n \<le> length xs \<Longrightarrow> butlast (take n xs) = take (n - 1) xs"  | 
| 68719 | 2250  | 
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
 | 
2251  | 
|
| 
 
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
 
huffman 
parents: 
26480 
diff
changeset
 | 
2252  | 
lemma butlast_drop: "butlast (drop n xs) = drop n (butlast xs)"  | 
| 68719 | 2253  | 
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
 | 
2254  | 
|
| 71585 | 2255  | 
lemma take_butlast: "n < length xs \<Longrightarrow> take n (butlast xs) = take n xs"  | 
| 68719 | 2256  | 
by (simp add: butlast_conv_take min.absorb1)  | 
| 
26584
 
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
 
huffman 
parents: 
26480 
diff
changeset
 | 
2257  | 
|
| 
 
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
 
huffman 
parents: 
26480 
diff
changeset
 | 
2258  | 
lemma drop_butlast: "drop n (butlast xs) = butlast (drop n xs)"  | 
| 68719 | 2259  | 
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
 | 
2260  | 
|
| 72555 | 2261  | 
lemma butlast_power: "(butlast ^^ n) xs = take (length xs - n) xs"  | 
2262  | 
by (induct n) (auto simp: butlast_take)  | 
|
2263  | 
||
| 
46500
 
0196966d6d2d
removing unnecessary premises in theorems of List theory
 
bulwahn 
parents: 
46448 
diff
changeset
 | 
2264  | 
lemma hd_drop_conv_nth: "n < length xs \<Longrightarrow> hd(drop n xs) = xs!n"  | 
| 68719 | 2265  | 
by(simp add: hd_conv_nth)  | 
| 18423 | 2266  | 
|
| 35248 | 2267  | 
lemma set_take_subset_set_take:  | 
| 68709 | 2268  | 
"m \<le> n \<Longrightarrow> set(take m xs) \<le> set(take n xs)"  | 
2269  | 
proof (induct xs arbitrary: m n)  | 
|
2270  | 
case (Cons x xs m n) then show ?case  | 
|
2271  | 
by (cases n) (auto simp: take_Cons)  | 
|
2272  | 
qed simp  | 
|
| 35248 | 2273  | 
|
| 24526 | 2274  | 
lemma set_take_subset: "set(take n xs) \<subseteq> set xs"  | 
| 68719 | 2275  | 
by(induct xs arbitrary: n)(auto simp:take_Cons split:nat.split)  | 
| 24526 | 2276  | 
|
2277  | 
lemma set_drop_subset: "set(drop n xs) \<subseteq> set xs"  | 
|
| 68719 | 2278  | 
by(induct xs arbitrary: n)(auto simp:drop_Cons split:nat.split)  | 
| 14025 | 2279  | 
|
| 35248 | 2280  | 
lemma set_drop_subset_set_drop:  | 
| 68709 | 2281  | 
"m \<ge> n \<Longrightarrow> set(drop m xs) \<le> set(drop n xs)"  | 
2282  | 
proof (induct xs arbitrary: m n)  | 
|
2283  | 
case (Cons x xs m n)  | 
|
2284  | 
then show ?case  | 
|
2285  | 
by (clarsimp simp: drop_Cons split: nat.split) (metis set_drop_subset subset_iff)  | 
|
2286  | 
qed simp  | 
|
| 35248 | 2287  | 
|
| 67613 | 2288  | 
lemma in_set_takeD: "x \<in> set(take n xs) \<Longrightarrow> x \<in> set xs"  | 
| 68719 | 2289  | 
using set_take_subset by fast  | 
| 14187 | 2290  | 
|
| 67613 | 2291  | 
lemma in_set_dropD: "x \<in> set(drop n xs) \<Longrightarrow> x \<in> set xs"  | 
| 68719 | 2292  | 
using set_drop_subset by fast  | 
| 14187 | 2293  | 
|
| 13114 | 2294  | 
lemma append_eq_conv_conj:  | 
| 24526 | 2295  | 
"(xs @ ys = zs) = (xs = take (length xs) zs \<and> ys = drop (length xs) zs)"  | 
| 68709 | 2296  | 
proof (induct xs arbitrary: zs)  | 
2297  | 
case (Cons x xs zs) then show ?case  | 
|
2298  | 
by (cases zs, auto)  | 
|
2299  | 
qed auto  | 
|
| 13142 | 2300  | 
|
| 
71393
 
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
 
traytel 
parents: 
70911 
diff
changeset
 | 
2301  | 
lemma map_eq_append_conv:  | 
| 
 
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
 
traytel 
parents: 
70911 
diff
changeset
 | 
2302  | 
"map f xs = ys @ zs \<longleftrightarrow> (\<exists>us vs. xs = us @ vs \<and> ys = map f us \<and> zs = map f vs)"  | 
| 
 
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
 
traytel 
parents: 
70911 
diff
changeset
 | 
2303  | 
proof -  | 
| 
 
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
 
traytel 
parents: 
70911 
diff
changeset
 | 
2304  | 
have "map f xs \<noteq> ys @ zs \<and> map f xs \<noteq> ys @ zs \<or> map f xs \<noteq> ys @ zs \<or> map f xs = ys @ zs \<and>  | 
| 
 
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
 
traytel 
parents: 
70911 
diff
changeset
 | 
2305  | 
(\<exists>bs bsa. xs = bs @ bsa \<and> ys = map f bs \<and> zs = map f bsa)"  | 
| 
 
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
 
traytel 
parents: 
70911 
diff
changeset
 | 
2306  | 
by (metis append_eq_conv_conj append_take_drop_id drop_map take_map)  | 
| 
 
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
 
traytel 
parents: 
70911 
diff
changeset
 | 
2307  | 
then show ?thesis  | 
| 
 
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
 
traytel 
parents: 
70911 
diff
changeset
 | 
2308  | 
using map_append by blast  | 
| 
 
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
 
traytel 
parents: 
70911 
diff
changeset
 | 
2309  | 
qed  | 
| 
 
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
 
traytel 
parents: 
70911 
diff
changeset
 | 
2310  | 
|
| 
 
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
 
traytel 
parents: 
70911 
diff
changeset
 | 
2311  | 
lemma append_eq_map_conv:  | 
| 
 
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
 
traytel 
parents: 
70911 
diff
changeset
 | 
2312  | 
"ys @ zs = map f xs \<longleftrightarrow> (\<exists>us vs. xs = us @ vs \<and> ys = map f us \<and> zs = map f vs)"  | 
| 
 
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
 
traytel 
parents: 
70911 
diff
changeset
 | 
2313  | 
by (metis map_eq_append_conv)  | 
| 
 
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
 
traytel 
parents: 
70911 
diff
changeset
 | 
2314  | 
|
| 58807 | 2315  | 
lemma take_add: "take (i+j) xs = take i xs @ take j (drop i xs)"  | 
| 68709 | 2316  | 
proof (induct xs arbitrary: i)  | 
2317  | 
case (Cons x xs i) then show ?case  | 
|
2318  | 
by (cases i, auto)  | 
|
2319  | 
qed auto  | 
|
| 14050 | 2320  | 
|
| 14300 | 2321  | 
lemma append_eq_append_conv_if:  | 
| 58807 | 2322  | 
"(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
 | 
2323  | 
(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
 | 
2324  | 
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
 | 
2325  | 
else take (size ys\<^sub>1) xs\<^sub>1 = ys\<^sub>1 \<and> drop (size ys\<^sub>1) xs\<^sub>1 @ xs\<^sub>2 = ys\<^sub>2)"  | 
| 68709 | 2326  | 
proof (induct xs\<^sub>1 arbitrary: ys\<^sub>1)  | 
2327  | 
case (Cons a xs\<^sub>1 ys\<^sub>1) then show ?case  | 
|
2328  | 
by (cases ys\<^sub>1, auto)  | 
|
2329  | 
qed auto  | 
|
| 14300 | 2330  | 
|
| 
15110
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
2331  | 
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
 | 
2332  | 
"n < length xs \<Longrightarrow> take n xs @ [hd (drop n xs)] = take (Suc n) xs"  | 
| 68709 | 2333  | 
by (induct xs arbitrary: n) (simp_all add:drop_Cons split:nat.split)  | 
| 
15110
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
2334  | 
|
| 17501 | 2335  | 
lemma id_take_nth_drop:  | 
| 64963 | 2336  | 
"i < length xs \<Longrightarrow> xs = take i xs @ xs!i # drop (Suc i) xs"  | 
| 17501 | 2337  | 
proof -  | 
2338  | 
assume si: "i < length xs"  | 
|
2339  | 
hence "xs = take (Suc i) xs @ drop (Suc i) xs" by auto  | 
|
2340  | 
moreover  | 
|
2341  | 
from si have "take (Suc i) xs = take i xs @ [xs!i]"  | 
|
| 68709 | 2342  | 
using take_Suc_conv_app_nth by blast  | 
| 17501 | 2343  | 
ultimately show ?thesis by auto  | 
2344  | 
qed  | 
|
| 64963 | 2345  | 
|
| 59728 | 2346  | 
lemma take_update_cancel[simp]: "n \<le> m \<Longrightarrow> take n (xs[m := y]) = take n xs"  | 
| 68719 | 2347  | 
by(simp add: list_eq_iff_nth_eq)  | 
| 59728 | 2348  | 
|
2349  | 
lemma drop_update_cancel[simp]: "n < m \<Longrightarrow> drop m (xs[n := x]) = drop m xs"  | 
|
| 68719 | 2350  | 
by(simp add: list_eq_iff_nth_eq)  | 
| 59728 | 2351  | 
|
| 17501 | 2352  | 
lemma upd_conv_take_nth_drop:  | 
| 58807 | 2353  | 
"i < length xs \<Longrightarrow> xs[i:=a] = take i xs @ a # drop (Suc i) xs"  | 
| 17501 | 2354  | 
proof -  | 
2355  | 
assume i: "i < length xs"  | 
|
2356  | 
have "xs[i:=a] = (take i xs @ xs!i # drop (Suc i) xs)[i:=a]"  | 
|
2357  | 
by(rule arg_cong[OF id_take_nth_drop[OF i]])  | 
|
2358  | 
also have "\<dots> = take i xs @ a # drop (Suc i) xs"  | 
|
2359  | 
using i by (simp add: list_update_append)  | 
|
2360  | 
finally show ?thesis .  | 
|
2361  | 
qed  | 
|
2362  | 
||
| 
66891
 
5ec8cd4db7e2
drop a superfluous assumption that was found by the find_unused_assms command
 
bulwahn 
parents: 
66890 
diff
changeset
 | 
2363  | 
lemma take_update_swap: "take m (xs[n := x]) = (take m xs)[n := x]"  | 
| 68709 | 2364  | 
proof (cases "n \<ge> length xs")  | 
2365  | 
case False  | 
|
2366  | 
then show ?thesis  | 
|
2367  | 
by (simp add: upd_conv_take_nth_drop take_Cons drop_take min_def diff_Suc split: nat.split)  | 
|
2368  | 
qed auto  | 
|
2369  | 
||
| 
71393
 
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
 
traytel 
parents: 
70911 
diff
changeset
 | 
2370  | 
lemma drop_update_swap:  | 
| 68709 | 2371  | 
assumes "m \<le> n" shows "drop m (xs[n := x]) = (drop m xs)[n-m := x]"  | 
2372  | 
proof (cases "n \<ge> length xs")  | 
|
2373  | 
case False  | 
|
2374  | 
with assms show ?thesis  | 
|
2375  | 
by (simp add: upd_conv_take_nth_drop drop_take)  | 
|
2376  | 
qed auto  | 
|
| 59728 | 2377  | 
|
2378  | 
lemma nth_image: "l \<le> size xs \<Longrightarrow> nth xs ` {0..<l} = set(take l xs)"
 | 
|
| 68719 | 2379  | 
by(auto simp: set_conv_nth image_def) (metis Suc_le_eq nth_take order_trans)  | 
| 59728 | 2380  | 
|
| 13114 | 2381  | 
|
| 69593 | 2382  | 
subsubsection \<open>\<^const>\<open>takeWhile\<close> and \<^const>\<open>dropWhile\<close>\<close>  | 
| 13114 | 2383  | 
|
| 
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
 | 
2384  | 
lemma length_takeWhile_le: "length (takeWhile P xs) \<le> length xs"  | 
| 68719 | 2385  | 
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
 | 
2386  | 
|
| 13142 | 2387  | 
lemma takeWhile_dropWhile_id [simp]: "takeWhile P xs @ dropWhile P xs = xs"  | 
| 68719 | 2388  | 
by (induct xs) auto  | 
| 13114 | 2389  | 
|
| 13142 | 2390  | 
lemma takeWhile_append1 [simp]:  | 
| 67091 | 2391  | 
"\<lbrakk>x \<in> set xs; \<not>P(x)\<rbrakk> \<Longrightarrow> takeWhile P (xs @ ys) = takeWhile P xs"  | 
| 68719 | 2392  | 
by (induct xs) auto  | 
| 13114 | 2393  | 
|
| 13142 | 2394  | 
lemma takeWhile_append2 [simp]:  | 
| 67613 | 2395  | 
"(\<And>x. x \<in> set xs \<Longrightarrow> P x) \<Longrightarrow> takeWhile P (xs @ ys) = xs @ takeWhile P ys"  | 
| 68719 | 2396  | 
by (induct xs) auto  | 
| 13114 | 2397  | 
|
| 71778 | 2398  | 
lemma takeWhile_append:  | 
2399  | 
"takeWhile P (xs @ ys) = (if \<forall>x\<in>set xs. P x then xs @ takeWhile P ys else takeWhile P xs)"  | 
|
2400  | 
using takeWhile_append1[of _ xs P ys] takeWhile_append2[of xs P ys] by auto  | 
|
2401  | 
||
| 67613 | 2402  | 
lemma takeWhile_tail: "\<not> P x \<Longrightarrow> takeWhile P (xs @ (x#l)) = takeWhile P xs"  | 
| 68719 | 2403  | 
by (induct xs) auto  | 
| 13114 | 2404  | 
|
| 71778 | 2405  | 
lemma takeWhile_eq_Nil_iff: "takeWhile P xs = [] \<longleftrightarrow> xs = [] \<or> \<not>P (hd xs)"  | 
2406  | 
by (cases xs) auto  | 
|
2407  | 
||
| 
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  | 
lemma takeWhile_nth: "j < length (takeWhile P xs) \<Longrightarrow> takeWhile P xs ! j = xs ! j"  | 
| 68709 | 2409  | 
by (metis nth_append takeWhile_dropWhile_id)  | 
| 
33639
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
2410  | 
|
| 58807 | 2411  | 
lemma dropWhile_nth: "j < length (dropWhile P xs) \<Longrightarrow>  | 
2412  | 
dropWhile P xs ! j = xs ! (j + length (takeWhile P xs))"  | 
|
| 68709 | 2413  | 
by (metis add.commute nth_append_length_plus takeWhile_dropWhile_id)  | 
| 
33639
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
2414  | 
|
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
2415  | 
lemma length_dropWhile_le: "length (dropWhile P xs) \<le> length xs"  | 
| 68719 | 2416  | 
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
 | 
2417  | 
|
| 13142 | 2418  | 
lemma dropWhile_append1 [simp]:  | 
| 67091 | 2419  | 
"\<lbrakk>x \<in> set xs; \<not>P(x)\<rbrakk> \<Longrightarrow> dropWhile P (xs @ ys) = (dropWhile P xs)@ys"  | 
| 68719 | 2420  | 
by (induct xs) auto  | 
| 13114 | 2421  | 
|
| 13142 | 2422  | 
lemma dropWhile_append2 [simp]:  | 
| 71585 | 2423  | 
"(\<And>x. x \<in> set xs \<Longrightarrow> P(x)) \<Longrightarrow> dropWhile P (xs @ ys) = dropWhile P ys"  | 
| 68719 | 2424  | 
by (induct xs) auto  | 
| 13114 | 2425  | 
|
| 45841 | 2426  | 
lemma dropWhile_append3:  | 
2427  | 
"\<not> P y \<Longrightarrow>dropWhile P (xs @ y # ys) = dropWhile P xs @ y # ys"  | 
|
| 68719 | 2428  | 
by (induct xs) auto  | 
| 45841 | 2429  | 
|
| 71778 | 2430  | 
lemma dropWhile_append:  | 
2431  | 
"dropWhile P (xs @ ys) = (if \<forall>x\<in>set xs. P x then dropWhile P ys else dropWhile P xs @ ys)"  | 
|
2432  | 
using dropWhile_append1[of _ xs P ys] dropWhile_append2[of xs P ys] by auto  | 
|
2433  | 
||
| 45841 | 2434  | 
lemma dropWhile_last:  | 
2435  | 
"x \<in> set xs \<Longrightarrow> \<not> P x \<Longrightarrow> last (dropWhile P xs) = last xs"  | 
|
| 68719 | 2436  | 
by (auto simp add: dropWhile_append3 in_set_conv_decomp)  | 
| 45841 | 2437  | 
|
2438  | 
lemma set_dropWhileD: "x \<in> set (dropWhile P xs) \<Longrightarrow> x \<in> set xs"  | 
|
| 68719 | 2439  | 
by (induct xs) (auto split: if_split_asm)  | 
| 45841 | 2440  | 
|
| 67613 | 2441  | 
lemma set_takeWhileD: "x \<in> set (takeWhile P xs) \<Longrightarrow> x \<in> set xs \<and> P x"  | 
| 68719 | 2442  | 
by (induct xs) (auto split: if_split_asm)  | 
| 13114 | 2443  | 
|
| 13913 | 2444  | 
lemma takeWhile_eq_all_conv[simp]:  | 
| 58807 | 2445  | 
"(takeWhile P xs = xs) = (\<forall>x \<in> set xs. P x)"  | 
| 68719 | 2446  | 
by(induct xs, auto)  | 
| 13913 | 2447  | 
|
2448  | 
lemma dropWhile_eq_Nil_conv[simp]:  | 
|
| 58807 | 2449  | 
"(dropWhile P xs = []) = (\<forall>x \<in> set xs. P x)"  | 
| 68719 | 2450  | 
by(induct xs, auto)  | 
| 13913 | 2451  | 
|
2452  | 
lemma dropWhile_eq_Cons_conv:  | 
|
| 67091 | 2453  | 
"(dropWhile P xs = y#ys) = (xs = takeWhile P xs @ y # ys \<and> \<not> P y)"  | 
| 68719 | 2454  | 
by(induct xs, auto)  | 
| 13913 | 2455  | 
|
| 71778 | 2456  | 
lemma dropWhile_eq_self_iff: "dropWhile P xs = xs \<longleftrightarrow> xs = [] \<or> \<not>P (hd xs)"  | 
2457  | 
by (cases xs) (auto simp: dropWhile_eq_Cons_conv)  | 
|
2458  | 
||
| 71585 | 2459  | 
lemma distinct_takeWhile[simp]: "distinct xs \<Longrightarrow> distinct (takeWhile P xs)"  | 
| 68719 | 2460  | 
by (induct xs) (auto dest: set_takeWhileD)  | 
| 31077 | 2461  | 
|
| 71585 | 2462  | 
lemma distinct_dropWhile[simp]: "distinct xs \<Longrightarrow> distinct (dropWhile P xs)"  | 
| 68719 | 2463  | 
by (induct xs) auto  | 
| 31077 | 2464  | 
|
| 
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
 | 
2465  | 
lemma takeWhile_map: "takeWhile P (map f xs) = map f (takeWhile (P \<circ> f) xs)"  | 
| 68719 | 2466  | 
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
 | 
2467  | 
|
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
2468  | 
lemma dropWhile_map: "dropWhile P (map f xs) = map f (dropWhile (P \<circ> f) xs)"  | 
| 68719 | 2469  | 
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
 | 
2470  | 
|
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
2471  | 
lemma takeWhile_eq_take: "takeWhile P xs = take (length (takeWhile P xs)) xs"  | 
| 68719 | 2472  | 
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
 | 
2473  | 
|
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
2474  | 
lemma dropWhile_eq_drop: "dropWhile P xs = drop (length (takeWhile P xs)) xs"  | 
| 68719 | 2475  | 
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
 | 
2476  | 
|
| 58807 | 2477  | 
lemma hd_dropWhile: "dropWhile P xs \<noteq> [] \<Longrightarrow> \<not> P (hd (dropWhile P xs))"  | 
| 68719 | 2478  | 
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
 | 
2479  | 
|
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
2480  | 
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
 | 
2481  | 
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
 | 
2482  | 
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
 | 
2483  | 
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
 | 
2484  | 
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
 | 
2485  | 
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
 | 
2486  | 
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
 | 
2487  | 
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
 | 
2488  | 
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
 | 
2489  | 
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
 | 
2490  | 
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
 | 
2491  | 
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
 | 
2492  | 
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
 | 
2493  | 
|
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
2494  | 
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
 | 
2495  | 
"\<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
 | 
2496  | 
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
 | 
2497  | 
proof (induct xs arbitrary: n)  | 
| 60580 | 2498  | 
case Nil  | 
2499  | 
thus ?case by simp  | 
|
2500  | 
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
 | 
2501  | 
case (Cons x xs)  | 
| 60580 | 2502  | 
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
 | 
2503  | 
proof (cases n)  | 
| 60580 | 2504  | 
case 0  | 
2505  | 
with Cons show ?thesis by simp  | 
|
2506  | 
next  | 
|
2507  | 
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
 | 
2508  | 
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
 | 
2509  | 
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
 | 
2510  | 
proof (rule Cons.hyps)  | 
| 60580 | 2511  | 
fix i  | 
2512  | 
assume "i < n'" "i < length xs"  | 
|
2513  | 
thus "P (xs ! i)" using Cons.prems(1)[of "Suc i"] by simp  | 
|
2514  | 
next  | 
|
2515  | 
assume "n' < length xs"  | 
|
2516  | 
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
 | 
2517  | 
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
 | 
2518  | 
ultimately show ?thesis by simp  | 
| 68719 | 2519  | 
qed  | 
| 60580 | 2520  | 
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
 | 
2521  | 
|
| 
 
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  | 
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
 | 
2523  | 
"length (takeWhile P xs) < length xs \<Longrightarrow> \<not> P (xs ! length (takeWhile P xs))"  | 
| 68719 | 2524  | 
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
 | 
2525  | 
|
| 
 
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  | 
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
 | 
2527  | 
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
 | 
2528  | 
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
 | 
2529  | 
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
 | 
2530  | 
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
 | 
2531  | 
hence "length (takeWhile P xs) < length xs" using assms by simp  | 
| 60758 | 2532  | 
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
 | 
2533  | 
qed  | 
| 31077 | 2534  | 
|
| 17501 | 2535  | 
lemma takeWhile_neq_rev: "\<lbrakk>distinct xs; x \<in> set xs\<rbrakk> \<Longrightarrow>  | 
| 58807 | 2536  | 
takeWhile (\<lambda>y. y \<noteq> x) (rev xs) = rev (tl (dropWhile (\<lambda>y. y \<noteq> x) xs))"  | 
| 68719 | 2537  | 
by(induct xs) (auto simp: takeWhile_tail[where l="[]"])  | 
| 17501 | 2538  | 
|
2539  | 
lemma dropWhile_neq_rev: "\<lbrakk>distinct xs; x \<in> set xs\<rbrakk> \<Longrightarrow>  | 
|
2540  | 
dropWhile (\<lambda>y. y \<noteq> x) (rev xs) = x # rev (takeWhile (\<lambda>y. y \<noteq> x) xs)"  | 
|
| 68709 | 2541  | 
proof (induct xs)  | 
2542  | 
case (Cons a xs)  | 
|
2543  | 
then show ?case  | 
|
2544  | 
by(auto, subst dropWhile_append2, auto)  | 
|
2545  | 
qed simp  | 
|
| 17501 | 2546  | 
|
| 18423 | 2547  | 
lemma takeWhile_not_last:  | 
| 58807 | 2548  | 
"distinct xs \<Longrightarrow> takeWhile (\<lambda>y. y \<noteq> last xs) xs = butlast xs"  | 
| 68719 | 2549  | 
by(induction xs rule: induct_list012) auto  | 
| 18423 | 2550  | 
|
| 
44013
 
5cfc1c36ae97
moved recdef package to HOL/Library/Old_Recdef.thy
 
krauss 
parents: 
43594 
diff
changeset
 | 
2551  | 
lemma takeWhile_cong [fundef_cong]:  | 
| 67613 | 2552  | 
"\<lbrakk>l = k; \<And>x. x \<in> set l \<Longrightarrow> P x = Q x\<rbrakk>  | 
2553  | 
\<Longrightarrow> takeWhile P l = takeWhile Q k"  | 
|
| 68719 | 2554  | 
by (induct k arbitrary: l) (simp_all)  | 
| 
18336
 
1a2e30b37ed3
Added recdef congruence rules for bounded quantifiers and commonly used
 
krauss 
parents: 
18049 
diff
changeset
 | 
2555  | 
|
| 
44013
 
5cfc1c36ae97
moved recdef package to HOL/Library/Old_Recdef.thy
 
krauss 
parents: 
43594 
diff
changeset
 | 
2556  | 
lemma dropWhile_cong [fundef_cong]:  | 
| 67613 | 2557  | 
"\<lbrakk>l = k; \<And>x. x \<in> set l \<Longrightarrow> P x = Q x\<rbrakk>  | 
2558  | 
\<Longrightarrow> dropWhile P l = dropWhile Q k"  | 
|
| 68719 | 2559  | 
by (induct k arbitrary: l, simp_all)  | 
| 
18336
 
1a2e30b37ed3
Added recdef congruence rules for bounded quantifiers and commonly used
 
krauss 
parents: 
18049 
diff
changeset
 | 
2560  | 
|
| 52380 | 2561  | 
lemma takeWhile_idem [simp]:  | 
2562  | 
"takeWhile P (takeWhile P xs) = takeWhile P xs"  | 
|
| 68719 | 2563  | 
by (induct xs) auto  | 
| 52380 | 2564  | 
|
2565  | 
lemma dropWhile_idem [simp]:  | 
|
2566  | 
"dropWhile P (dropWhile P xs) = dropWhile P xs"  | 
|
| 68719 | 2567  | 
by (induct xs) auto  | 
| 52380 | 2568  | 
|
| 13114 | 2569  | 
|
| 69593 | 2570  | 
subsubsection \<open>\<^const>\<open>zip\<close>\<close>  | 
| 13114 | 2571  | 
|
| 13142 | 2572  | 
lemma zip_Nil [simp]: "zip [] ys = []"  | 
| 68719 | 2573  | 
by (induct ys) auto  | 
| 13114 | 2574  | 
|
| 13142 | 2575  | 
lemma zip_Cons_Cons [simp]: "zip (x # xs) (y # ys) = (x, y) # zip xs ys"  | 
| 68719 | 2576  | 
by simp  | 
| 13114 | 2577  | 
|
| 13142 | 2578  | 
declare zip_Cons [simp del]  | 
| 13114 | 2579  | 
|
| 36198 | 2580  | 
lemma [code]:  | 
2581  | 
"zip [] ys = []"  | 
|
2582  | 
"zip xs [] = []"  | 
|
2583  | 
"zip (x # xs) (y # ys) = (x, y) # zip xs ys"  | 
|
| 68719 | 2584  | 
by (fact zip_Nil zip.simps(1) zip_Cons_Cons)+  | 
| 36198 | 2585  | 
|
| 15281 | 2586  | 
lemma zip_Cons1:  | 
| 58807 | 2587  | 
"zip (x#xs) ys = (case ys of [] \<Rightarrow> [] | y#ys \<Rightarrow> (x,y)#zip xs ys)"  | 
| 68719 | 2588  | 
by(auto split:list.split)  | 
| 15281 | 2589  | 
|
| 13142 | 2590  | 
lemma length_zip [simp]:  | 
| 58807 | 2591  | 
"length (zip xs ys) = min (length xs) (length ys)"  | 
| 68719 | 2592  | 
by (induct xs ys rule:list_induct2') auto  | 
| 13114 | 2593  | 
|
| 
34978
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
2594  | 
lemma zip_obtain_same_length:  | 
| 
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
2595  | 
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
 | 
2596  | 
\<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
 | 
2597  | 
shows "P (zip xs ys)"  | 
| 
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
2598  | 
proof -  | 
| 
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
2599  | 
let ?n = "min (length xs) (length ys)"  | 
| 
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
2600  | 
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
 | 
2601  | 
by (rule assms) simp_all  | 
| 
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
2602  | 
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
 | 
2603  | 
proof (induct xs arbitrary: ys)  | 
| 
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
2604  | 
case Nil then show ?case by simp  | 
| 
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
2605  | 
next  | 
| 
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
2606  | 
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
 | 
2607  | 
qed  | 
| 
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
2608  | 
ultimately show ?thesis by simp  | 
| 
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
2609  | 
qed  | 
| 
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
2610  | 
|
| 13114 | 2611  | 
lemma zip_append1:  | 
| 58807 | 2612  | 
"zip (xs @ ys) zs =  | 
2613  | 
zip xs (take (length xs) zs) @ zip ys (drop (length xs) zs)"  | 
|
| 68719 | 2614  | 
by (induct xs zs rule:list_induct2') auto  | 
| 13114 | 2615  | 
|
2616  | 
lemma zip_append2:  | 
|
| 58807 | 2617  | 
"zip xs (ys @ zs) =  | 
2618  | 
zip (take (length ys) xs) ys @ zip (drop (length ys) xs) zs"  | 
|
| 68719 | 2619  | 
by (induct xs ys rule:list_induct2') auto  | 
| 13114 | 2620  | 
|
| 13142 | 2621  | 
lemma zip_append [simp]:  | 
| 71585 | 2622  | 
"\<lbrakk>length xs = length us\<rbrakk> \<Longrightarrow>  | 
| 58807 | 2623  | 
zip (xs@ys) (us@vs) = zip xs us @ zip ys vs"  | 
| 68719 | 2624  | 
by (simp add: zip_append1)  | 
| 13114 | 2625  | 
|
2626  | 
lemma zip_rev:  | 
|
| 71585 | 2627  | 
"length xs = length ys \<Longrightarrow> zip (rev xs) (rev ys) = rev (zip xs ys)"  | 
| 68719 | 2628  | 
by (induct rule:list_induct2, simp_all)  | 
| 13114 | 2629  | 
|
| 
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
 | 
2630  | 
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
 | 
2631  | 
"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
 | 
2632  | 
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
 | 
2633  | 
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
 | 
2634  | 
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
 | 
2635  | 
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
 | 
2636  | 
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
 | 
2637  | 
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
 | 
2638  | 
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
 | 
2639  | 
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
 | 
2640  | 
|
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
2641  | 
lemma zip_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
 | 
2642  | 
"zip (map f xs) ys = map (\<lambda>(x, y). (f x, y)) (zip xs ys)"  | 
| 68719 | 2643  | 
using zip_map_map[of f xs "\<lambda>x. x" ys] by simp  | 
| 
33639
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
2644  | 
|
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
2645  | 
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
 | 
2646  | 
"zip xs (map f ys) = map (\<lambda>(x, y). (x, f y)) (zip xs ys)"  | 
| 68719 | 2647  | 
using zip_map_map[of "\<lambda>x. x" xs f ys] by simp  | 
| 
33639
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
2648  | 
|
| 23096 | 2649  | 
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
 | 
2650  | 
"map f (zip (map g xs) ys) = map (%(x,y). f(g x, y)) (zip xs ys)"  | 
| 68719 | 2651  | 
by (auto simp: zip_map1)  | 
| 23096 | 2652  | 
|
2653  | 
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
 | 
2654  | 
"map f (zip xs (map g ys)) = map (%(x,y). f(x, g y)) (zip xs ys)"  | 
| 68719 | 2655  | 
by (auto simp: zip_map2)  | 
| 23096 | 2656  | 
|
| 60758 | 2657  | 
text\<open>Courtesy of Andreas Lochbihler:\<close>  | 
| 31080 | 2658  | 
lemma zip_same_conv_map: "zip xs xs = map (\<lambda>x. (x, x)) xs"  | 
| 68719 | 2659  | 
by(induct xs) auto  | 
| 31080 | 2660  | 
|
| 13142 | 2661  | 
lemma nth_zip [simp]:  | 
| 71585 | 2662  | 
"\<lbrakk>i < length xs; i < length ys\<rbrakk> \<Longrightarrow> (zip xs ys)!i = (xs!i, ys!i)"  | 
| 68709 | 2663  | 
proof (induct ys arbitrary: i xs)  | 
2664  | 
case (Cons y ys)  | 
|
2665  | 
then show ?case  | 
|
2666  | 
by (cases xs) (simp_all add: nth.simps split: nat.split)  | 
|
2667  | 
qed auto  | 
|
| 13114 | 2668  | 
|
2669  | 
lemma set_zip:  | 
|
| 58807 | 2670  | 
  "set (zip xs ys) = {(xs!i, ys!i) | i. i < min (length xs) (length ys)}"
 | 
| 68719 | 2671  | 
by(simp add: set_conv_nth cong: rev_conj_cong)  | 
| 13114 | 2672  | 
|
| 
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
 | 
2673  | 
lemma zip_same: "((a,b) \<in> set (zip xs xs)) = (a \<in> set xs \<and> a = b)"  | 
| 68719 | 2674  | 
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
 | 
2675  | 
|
| 68709 | 2676  | 
lemma zip_update: "zip (xs[i:=x]) (ys[i:=y]) = (zip xs ys)[i:=(x,y)]"  | 
2677  | 
by (simp add: update_zip)  | 
|
| 13114 | 2678  | 
|
| 13142 | 2679  | 
lemma zip_replicate [simp]:  | 
| 24526 | 2680  | 
"zip (replicate i x) (replicate j y) = replicate (min i j) (x,y)"  | 
| 68709 | 2681  | 
proof (induct i arbitrary: j)  | 
2682  | 
case (Suc i)  | 
|
2683  | 
then show ?case  | 
|
2684  | 
by (cases j, auto)  | 
|
2685  | 
qed auto  | 
|
| 13114 | 2686  | 
|
| 61630 | 2687  | 
lemma zip_replicate1: "zip (replicate n x) ys = map (Pair x) (take n ys)"  | 
| 68719 | 2688  | 
by(induction ys arbitrary: n)(case_tac [2] n, simp_all)  | 
| 61630 | 2689  | 
|
| 68709 | 2690  | 
lemma take_zip: "take n (zip xs ys) = zip (take n xs) (take n ys)"  | 
2691  | 
proof (induct n arbitrary: xs ys)  | 
|
| 69850 | 2692  | 
case 0  | 
2693  | 
then show ?case by simp  | 
|
2694  | 
next  | 
|
2695  | 
case Suc  | 
|
2696  | 
then show ?case by (cases xs; cases ys) simp_all  | 
|
2697  | 
qed  | 
|
| 68709 | 2698  | 
|
2699  | 
lemma drop_zip: "drop n (zip xs ys) = zip (drop n xs) (drop n ys)"  | 
|
2700  | 
proof (induct n arbitrary: xs ys)  | 
|
| 69850 | 2701  | 
case 0  | 
2702  | 
then show ?case by simp  | 
|
2703  | 
next  | 
|
2704  | 
case Suc  | 
|
2705  | 
then show ?case by (cases xs; cases ys) simp_all  | 
|
2706  | 
qed  | 
|
| 19487 | 2707  | 
|
| 
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
 | 
2708  | 
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
 | 
2709  | 
proof (induct xs arbitrary: ys)  | 
| 69850 | 2710  | 
case Nil  | 
2711  | 
then show ?case by simp  | 
|
2712  | 
next  | 
|
2713  | 
case Cons  | 
|
2714  | 
then show ?case by (cases ys) auto  | 
|
2715  | 
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
 | 
2716  | 
|
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
2717  | 
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
 | 
2718  | 
proof (induct xs arbitrary: ys)  | 
| 69850 | 2719  | 
case Nil  | 
2720  | 
then show ?case by simp  | 
|
2721  | 
next  | 
|
2722  | 
case Cons  | 
|
2723  | 
then show ?case by (cases ys) auto  | 
|
2724  | 
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
 | 
2725  | 
|
| 58807 | 2726  | 
lemma set_zip_leftD: "(x,y)\<in> set (zip xs ys) \<Longrightarrow> x \<in> set xs"  | 
| 68719 | 2727  | 
by (induct xs ys rule:list_induct2') auto  | 
| 
22493
 
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
 
krauss 
parents: 
22422 
diff
changeset
 | 
2728  | 
|
| 58807 | 2729  | 
lemma set_zip_rightD: "(x,y)\<in> set (zip xs ys) \<Longrightarrow> y \<in> set ys"  | 
| 68719 | 2730  | 
by (induct xs ys rule:list_induct2') auto  | 
| 13142 | 2731  | 
|
| 23983 | 2732  | 
lemma in_set_zipE:  | 
| 67613 | 2733  | 
"(x,y) \<in> set(zip xs ys) \<Longrightarrow> (\<lbrakk> x \<in> set xs; y \<in> set ys \<rbrakk> \<Longrightarrow> R) \<Longrightarrow> R"  | 
| 68719 | 2734  | 
by(blast dest: set_zip_leftD set_zip_rightD)  | 
| 23983 | 2735  | 
|
| 58807 | 2736  | 
lemma zip_map_fst_snd: "zip (map fst zs) (map snd zs) = zs"  | 
| 68719 | 2737  | 
by (induct zs) simp_all  | 
| 29829 | 2738  | 
|
2739  | 
lemma zip_eq_conv:  | 
|
2740  | 
"length xs = length ys \<Longrightarrow> zip xs ys = zs \<longleftrightarrow> map fst zs = xs \<and> map snd zs = ys"  | 
|
| 68719 | 2741  | 
by (auto simp add: zip_map_fst_snd)  | 
| 29829 | 2742  | 
|
| 51173 | 2743  | 
lemma in_set_zip:  | 
2744  | 
"p \<in> set (zip xs ys) \<longleftrightarrow> (\<exists>n. xs ! n = fst p \<and> ys ! n = snd p  | 
|
| 58807 | 2745  | 
\<and> n < length xs \<and> n < length ys)"  | 
| 68719 | 2746  | 
by (cases p) (auto simp add: set_zip)  | 
| 51173 | 2747  | 
|
| 66584 | 2748  | 
lemma in_set_impl_in_set_zip1:  | 
2749  | 
assumes "length xs = length ys"  | 
|
2750  | 
assumes "x \<in> set xs"  | 
|
2751  | 
obtains y where "(x, y) \<in> set (zip xs ys)"  | 
|
2752  | 
proof -  | 
|
2753  | 
from assms have "x \<in> set (map fst (zip xs ys))" by simp  | 
|
2754  | 
from this that show ?thesis by fastforce  | 
|
2755  | 
qed  | 
|
2756  | 
||
2757  | 
lemma in_set_impl_in_set_zip2:  | 
|
2758  | 
assumes "length xs = length ys"  | 
|
2759  | 
assumes "y \<in> set ys"  | 
|
2760  | 
obtains x where "(x, y) \<in> set (zip xs ys)"  | 
|
2761  | 
proof -  | 
|
2762  | 
from assms have "y \<in> set (map snd (zip xs ys))" by simp  | 
|
2763  | 
from this that show ?thesis by fastforce  | 
|
2764  | 
qed  | 
|
2765  | 
||
| 70226 | 2766  | 
lemma zip_eq_Nil_iff:  | 
2767  | 
"zip xs ys = [] \<longleftrightarrow> xs = [] \<or> ys = []"  | 
|
2768  | 
by (cases xs; cases ys) simp_all  | 
|
2769  | 
||
2770  | 
lemma zip_eq_ConsE:  | 
|
2771  | 
assumes "zip xs ys = xy # xys"  | 
|
2772  | 
obtains x xs' y ys' where "xs = x # xs'"  | 
|
2773  | 
and "ys = y # ys'" and "xy = (x, y)"  | 
|
2774  | 
and "xys = zip xs' ys'"  | 
|
2775  | 
proof -  | 
|
2776  | 
from assms have "xs \<noteq> []" and "ys \<noteq> []"  | 
|
2777  | 
using zip_eq_Nil_iff [of xs ys] by simp_all  | 
|
2778  | 
then obtain x xs' y ys' where xs: "xs = x # xs'"  | 
|
2779  | 
and ys: "ys = y # ys'"  | 
|
2780  | 
by (cases xs; cases ys) auto  | 
|
2781  | 
with assms have "xy = (x, y)" and "xys = zip xs' ys'"  | 
|
2782  | 
by simp_all  | 
|
2783  | 
with xs ys show ?thesis ..  | 
|
2784  | 
qed  | 
|
2785  | 
||
| 70911 | 2786  | 
lemma semilattice_map2:  | 
2787  | 
"semilattice (map2 (\<^bold>*))" if "semilattice (\<^bold>*)"  | 
|
2788  | 
for f (infixl "\<^bold>*" 70)  | 
|
2789  | 
proof -  | 
|
2790  | 
from that interpret semilattice f .  | 
|
2791  | 
show ?thesis  | 
|
2792  | 
proof  | 
|
2793  | 
show "map2 (\<^bold>*) (map2 (\<^bold>*) xs ys) zs = map2 (\<^bold>*) xs (map2 (\<^bold>*) ys zs)"  | 
|
2794  | 
for xs ys zs :: "'a list"  | 
|
2795  | 
proof (induction "zip xs (zip ys zs)" arbitrary: xs ys zs)  | 
|
2796  | 
case Nil  | 
|
2797  | 
from Nil [symmetric] show ?case  | 
|
2798  | 
by (auto simp add: zip_eq_Nil_iff)  | 
|
2799  | 
next  | 
|
2800  | 
case (Cons xyz xyzs)  | 
|
2801  | 
from Cons.hyps(2) [symmetric] show ?case  | 
|
2802  | 
by (rule zip_eq_ConsE) (erule zip_eq_ConsE,  | 
|
2803  | 
auto intro: Cons.hyps(1) simp add: ac_simps)  | 
|
2804  | 
qed  | 
|
2805  | 
show "map2 (\<^bold>*) xs ys = map2 (\<^bold>*) ys xs"  | 
|
2806  | 
for xs ys :: "'a list"  | 
|
2807  | 
proof (induction "zip xs ys" arbitrary: xs ys)  | 
|
2808  | 
case Nil  | 
|
2809  | 
then show ?case  | 
|
2810  | 
by (auto simp add: zip_eq_Nil_iff dest: sym)  | 
|
2811  | 
next  | 
|
2812  | 
case (Cons xy xys)  | 
|
2813  | 
from Cons.hyps(2) [symmetric] show ?case  | 
|
2814  | 
by (rule zip_eq_ConsE) (auto intro: Cons.hyps(1) simp add: ac_simps)  | 
|
2815  | 
qed  | 
|
2816  | 
show "map2 (\<^bold>*) xs xs = xs"  | 
|
2817  | 
for xs :: "'a list"  | 
|
2818  | 
by (induction xs) simp_all  | 
|
2819  | 
qed  | 
|
2820  | 
qed  | 
|
2821  | 
||
| 51173 | 2822  | 
lemma pair_list_eqI:  | 
2823  | 
assumes "map fst xs = map fst ys" and "map snd xs = map snd ys"  | 
|
2824  | 
shows "xs = ys"  | 
|
2825  | 
proof -  | 
|
2826  | 
from assms(1) have "length xs = length ys" by (rule map_eq_imp_length_eq)  | 
|
2827  | 
from this assms show ?thesis  | 
|
2828  | 
by (induct xs ys rule: list_induct2) (simp_all add: prod_eqI)  | 
|
2829  | 
qed  | 
|
2830  | 
||
| 71423 | 2831  | 
lemma hd_zip:  | 
2832  | 
\<open>hd (zip xs ys) = (hd xs, hd ys)\<close> if \<open>xs \<noteq> []\<close> and \<open>ys \<noteq> []\<close>  | 
|
2833  | 
using that by (cases xs; cases ys) simp_all  | 
|
2834  | 
||
2835  | 
lemma last_zip:  | 
|
2836  | 
\<open>last (zip xs ys) = (last xs, last ys)\<close> if \<open>xs \<noteq> []\<close> and \<open>ys \<noteq> []\<close>  | 
|
2837  | 
and \<open>length xs = length ys\<close>  | 
|
2838  | 
using that by (cases xs rule: rev_cases; cases ys rule: rev_cases) simp_all  | 
|
2839  | 
||
| 35115 | 2840  | 
|
| 69593 | 2841  | 
subsubsection \<open>\<^const>\<open>list_all2\<close>\<close>  | 
| 13114 | 2842  | 
|
| 64963 | 2843  | 
lemma list_all2_lengthD [intro?]:  | 
| 71585 | 2844  | 
"list_all2 P xs ys \<Longrightarrow> length xs = length ys"  | 
| 68719 | 2845  | 
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
 | 
2846  | 
|
| 19787 | 2847  | 
lemma list_all2_Nil [iff, code]: "list_all2 P [] ys = (ys = [])"  | 
| 68719 | 2848  | 
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
 | 
2849  | 
|
| 19787 | 2850  | 
lemma list_all2_Nil2 [iff, code]: "list_all2 P xs [] = (xs = [])"  | 
| 68719 | 2851  | 
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
 | 
2852  | 
|
| 
 
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
 
haftmann 
parents: 
19585 
diff
changeset
 | 
2853  | 
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
 | 
2854  | 
"list_all2 P (x # xs) (y # ys) = (P x y \<and> list_all2 P xs ys)"  | 
| 68719 | 2855  | 
by (auto simp add: list_all2_iff)  | 
| 13114 | 2856  | 
|
2857  | 
lemma list_all2_Cons1:  | 
|
| 58807 | 2858  | 
"list_all2 P (x # xs) ys = (\<exists>z zs. ys = z # zs \<and> P x z \<and> list_all2 P xs zs)"  | 
| 68719 | 2859  | 
by (cases ys) auto  | 
| 13114 | 2860  | 
|
2861  | 
lemma list_all2_Cons2:  | 
|
| 58807 | 2862  | 
"list_all2 P xs (y # ys) = (\<exists>z zs. xs = z # zs \<and> P z y \<and> list_all2 P zs ys)"  | 
| 68719 | 2863  | 
by (cases xs) auto  | 
| 13114 | 2864  | 
|
| 45794 | 2865  | 
lemma list_all2_induct  | 
2866  | 
[consumes 1, case_names Nil Cons, induct set: list_all2]:  | 
|
2867  | 
assumes P: "list_all2 P xs ys"  | 
|
2868  | 
assumes Nil: "R [] []"  | 
|
| 47640 | 2869  | 
assumes Cons: "\<And>x xs y ys.  | 
2870  | 
\<lbrakk>P x y; list_all2 P xs ys; R xs ys\<rbrakk> \<Longrightarrow> R (x # xs) (y # ys)"  | 
|
| 45794 | 2871  | 
shows "R xs ys"  | 
| 68719 | 2872  | 
using P  | 
2873  | 
by (induct xs arbitrary: ys) (auto simp add: list_all2_Cons1 Nil Cons)  | 
|
| 45794 | 2874  | 
|
| 13142 | 2875  | 
lemma list_all2_rev [iff]:  | 
| 58807 | 2876  | 
"list_all2 P (rev xs) (rev ys) = list_all2 P xs ys"  | 
| 68719 | 2877  | 
by (simp add: list_all2_iff zip_rev cong: conj_cong)  | 
| 13114 | 2878  | 
|
| 13863 | 2879  | 
lemma list_all2_rev1:  | 
| 58807 | 2880  | 
"list_all2 P (rev xs) ys = list_all2 P xs (rev ys)"  | 
| 68719 | 2881  | 
by (subst list_all2_rev [symmetric]) simp  | 
| 13863 | 2882  | 
|
| 13114 | 2883  | 
lemma list_all2_append1:  | 
| 58807 | 2884  | 
"list_all2 P (xs @ ys) zs =  | 
| 67091 | 2885  | 
(\<exists>us vs. zs = us @ vs \<and> length us = length xs \<and> length vs = length ys \<and>  | 
| 68709 | 2886  | 
list_all2 P xs us \<and> list_all2 P ys vs)" (is "?lhs = ?rhs")  | 
2887  | 
proof  | 
|
2888  | 
assume ?lhs  | 
|
2889  | 
then show ?rhs  | 
|
2890  | 
apply (rule_tac x = "take (length xs) zs" in exI)  | 
|
2891  | 
apply (rule_tac x = "drop (length xs) zs" in exI)  | 
|
2892  | 
apply (force split: nat_diff_split simp add: list_all2_iff zip_append1)  | 
|
2893  | 
done  | 
|
2894  | 
next  | 
|
2895  | 
assume ?rhs  | 
|
2896  | 
then show ?lhs  | 
|
2897  | 
by (auto simp add: list_all2_iff)  | 
|
2898  | 
qed  | 
|
| 13114 | 2899  | 
|
2900  | 
lemma list_all2_append2:  | 
|
| 58807 | 2901  | 
"list_all2 P xs (ys @ zs) =  | 
| 67091 | 2902  | 
(\<exists>us vs. xs = us @ vs \<and> length us = length ys \<and> length vs = length zs \<and>  | 
| 68709 | 2903  | 
list_all2 P us ys \<and> list_all2 P vs zs)" (is "?lhs = ?rhs")  | 
2904  | 
proof  | 
|
2905  | 
assume ?lhs  | 
|
2906  | 
then show ?rhs  | 
|
2907  | 
apply (rule_tac x = "take (length ys) xs" in exI)  | 
|
2908  | 
apply (rule_tac x = "drop (length ys) xs" in exI)  | 
|
2909  | 
apply (force split: nat_diff_split simp add: list_all2_iff zip_append2)  | 
|
2910  | 
done  | 
|
2911  | 
next  | 
|
2912  | 
assume ?rhs  | 
|
2913  | 
then show ?lhs  | 
|
2914  | 
by (auto simp add: list_all2_iff)  | 
|
2915  | 
qed  | 
|
| 13114 | 2916  | 
|
| 13863 | 2917  | 
lemma list_all2_append:  | 
| 14247 | 2918  | 
"length xs = length ys \<Longrightarrow>  | 
2919  | 
list_all2 P (xs@us) (ys@vs) = (list_all2 P xs ys \<and> list_all2 P us vs)"  | 
|
| 68719 | 2920  | 
by (induct rule:list_induct2, simp_all)  | 
| 13863 | 2921  | 
|
2922  | 
lemma list_all2_appendI [intro?, trans]:  | 
|
2923  | 
"\<lbrakk> list_all2 P a b; list_all2 P c d \<rbrakk> \<Longrightarrow> list_all2 P (a@c) (b@d)"  | 
|
| 68719 | 2924  | 
by (simp add: list_all2_append list_all2_lengthD)  | 
| 13863 | 2925  | 
|
| 13114 | 2926  | 
lemma list_all2_conv_all_nth:  | 
| 58807 | 2927  | 
"list_all2 P xs ys =  | 
2928  | 
(length xs = length ys \<and> (\<forall>i < length xs. P (xs!i) (ys!i)))"  | 
|
| 68719 | 2929  | 
by (force simp add: list_all2_iff set_zip)  | 
| 13114 | 2930  | 
|
| 
13883
 
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
 
berghofe 
parents: 
13863 
diff
changeset
 | 
2931  | 
lemma list_all2_trans:  | 
| 71585 | 2932  | 
assumes tr: "!!a b c. P1 a b \<Longrightarrow> P2 b c \<Longrightarrow> P3 a c"  | 
2933  | 
shows "!!bs cs. list_all2 P1 as bs \<Longrightarrow> list_all2 P2 bs cs \<Longrightarrow> list_all2 P3 as cs"  | 
|
| 68719 | 2934  | 
(is "!!bs cs. PROP ?Q as bs cs")  | 
| 
13883
 
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
 
berghofe 
parents: 
13863 
diff
changeset
 | 
2935  | 
proof (induct as)  | 
| 
 
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
 
berghofe 
parents: 
13863 
diff
changeset
 | 
2936  | 
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
 | 
2937  | 
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
 | 
2938  | 
proof (induct bs)  | 
| 
 
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
 
berghofe 
parents: 
13863 
diff
changeset
 | 
2939  | 
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
 | 
2940  | 
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
 | 
2941  | 
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
 | 
2942  | 
qed simp  | 
| 
 
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
 
berghofe 
parents: 
13863 
diff
changeset
 | 
2943  | 
qed simp  | 
| 
 
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
 
berghofe 
parents: 
13863 
diff
changeset
 | 
2944  | 
|
| 13863 | 2945  | 
lemma list_all2_all_nthI [intro?]:  | 
2946  | 
"length a = length b \<Longrightarrow> (\<And>n. n < length a \<Longrightarrow> P (a!n) (b!n)) \<Longrightarrow> list_all2 P a b"  | 
|
| 68719 | 2947  | 
by (simp add: list_all2_conv_all_nth)  | 
| 13863 | 2948  | 
|
| 14395 | 2949  | 
lemma list_all2I:  | 
| 
61032
 
b57df8eecad6
standardized some occurences of ancient "split" alias
 
haftmann 
parents: 
61031 
diff
changeset
 | 
2950  | 
"\<forall>x \<in> set (zip a b). case_prod P x \<Longrightarrow> length a = length b \<Longrightarrow> list_all2 P a b"  | 
| 68719 | 2951  | 
by (simp add: list_all2_iff)  | 
| 14395 | 2952  | 
|
| 14328 | 2953  | 
lemma list_all2_nthD:  | 
| 13863 | 2954  | 
"\<lbrakk> list_all2 P xs ys; p < size xs \<rbrakk> \<Longrightarrow> P (xs!p) (ys!p)"  | 
| 68719 | 2955  | 
by (simp add: list_all2_conv_all_nth)  | 
| 13863 | 2956  | 
|
| 14302 | 2957  | 
lemma list_all2_nthD2:  | 
2958  | 
"\<lbrakk>list_all2 P xs ys; p < size ys\<rbrakk> \<Longrightarrow> P (xs!p) (ys!p)"  | 
|
| 68719 | 2959  | 
by (frule list_all2_lengthD) (auto intro: list_all2_nthD)  | 
| 14302 | 2960  | 
|
| 64963 | 2961  | 
lemma list_all2_map1:  | 
| 13863 | 2962  | 
"list_all2 P (map f as) bs = list_all2 (\<lambda>x y. P (f x) y) as bs"  | 
| 68719 | 2963  | 
by (simp add: list_all2_conv_all_nth)  | 
| 13863 | 2964  | 
|
| 64963 | 2965  | 
lemma list_all2_map2:  | 
| 13863 | 2966  | 
"list_all2 P as (map f bs) = list_all2 (\<lambda>x y. P x (f y)) as bs"  | 
| 68719 | 2967  | 
by (auto simp add: list_all2_conv_all_nth)  | 
| 13863 | 2968  | 
|
| 
14316
 
91b897b9a2dc
added some [intro?] and [trans] for list_all2 lemmas
 
kleing 
parents: 
14302 
diff
changeset
 | 
2969  | 
lemma list_all2_refl [intro?]:  | 
| 13863 | 2970  | 
"(\<And>x. P x x) \<Longrightarrow> list_all2 P xs xs"  | 
| 68719 | 2971  | 
by (simp add: list_all2_conv_all_nth)  | 
| 13863 | 2972  | 
|
2973  | 
lemma list_all2_update_cong:  | 
|
| 
46669
 
c1d2ab32174a
one general list_all2_update_cong instead of two special ones
 
bulwahn 
parents: 
46664 
diff
changeset
 | 
2974  | 
"\<lbrakk> list_all2 P xs ys; P x y \<rbrakk> \<Longrightarrow> list_all2 P (xs[i:=x]) (ys[i:=y])"  | 
| 68719 | 2975  | 
by (cases "i < length ys") (auto simp add: list_all2_conv_all_nth nth_list_update)  | 
| 13863 | 2976  | 
|
| 14302 | 2977  | 
lemma list_all2_takeI [simp,intro?]:  | 
| 24526 | 2978  | 
"list_all2 P xs ys \<Longrightarrow> list_all2 P (take n xs) (take n ys)"  | 
| 68709 | 2979  | 
proof (induct xs arbitrary: n ys)  | 
2980  | 
case (Cons x xs)  | 
|
2981  | 
then show ?case  | 
|
2982  | 
by (cases n) (auto simp: list_all2_Cons1)  | 
|
2983  | 
qed auto  | 
|
| 14302 | 2984  | 
|
2985  | 
lemma list_all2_dropI [simp,intro?]:  | 
|
| 68709 | 2986  | 
"list_all2 P xs ys \<Longrightarrow> list_all2 P (drop n xs) (drop n ys)"  | 
2987  | 
proof (induct xs arbitrary: n ys)  | 
|
2988  | 
case (Cons x xs)  | 
|
2989  | 
then show ?case  | 
|
2990  | 
by (cases n) (auto simp: list_all2_Cons1)  | 
|
2991  | 
qed auto  | 
|
| 13863 | 2992  | 
|
| 14327 | 2993  | 
lemma list_all2_mono [intro?]:  | 
| 24526 | 2994  | 
"list_all2 P xs ys \<Longrightarrow> (\<And>xs ys. P xs ys \<Longrightarrow> Q xs ys) \<Longrightarrow> list_all2 Q xs ys"  | 
| 68709 | 2995  | 
by (rule list.rel_mono_strong)  | 
| 13863 | 2996  | 
|
| 22551 | 2997  | 
lemma list_all2_eq:  | 
| 67399 | 2998  | 
"xs = ys \<longleftrightarrow> list_all2 (=) xs ys"  | 
| 68719 | 2999  | 
by (induct xs ys rule: list_induct2') auto  | 
| 22551 | 3000  | 
|
| 40230 | 3001  | 
lemma list_eq_iff_zip_eq:  | 
3002  | 
"xs = ys \<longleftrightarrow> length xs = length ys \<and> (\<forall>(x,y) \<in> set (zip xs ys). x = y)"  | 
|
| 68719 | 3003  | 
by(auto simp add: set_zip list_all2_eq list_all2_conv_all_nth cong: conj_cong)  | 
| 40230 | 3004  | 
|
| 57308 | 3005  | 
lemma list_all2_same: "list_all2 P xs xs \<longleftrightarrow> (\<forall>x\<in>set xs. P x x)"  | 
| 68719 | 3006  | 
by(auto simp add: list_all2_conv_all_nth set_conv_nth)  | 
| 13142 | 3007  | 
|
| 61630 | 3008  | 
lemma zip_assoc:  | 
3009  | 
"zip xs (zip ys zs) = map (\<lambda>((x, y), z). (x, y, z)) (zip (zip xs ys) zs)"  | 
|
| 68719 | 3010  | 
by(rule list_all2_all_nthI[where P="(=)", unfolded list.rel_eq]) simp_all  | 
| 61630 | 3011  | 
|
3012  | 
lemma zip_commute: "zip xs ys = map (\<lambda>(x, y). (y, x)) (zip ys xs)"  | 
|
| 68719 | 3013  | 
by(rule list_all2_all_nthI[where P="(=)", unfolded list.rel_eq]) simp_all  | 
| 61630 | 3014  | 
|
3015  | 
lemma zip_left_commute:  | 
|
3016  | 
"zip xs (zip ys zs) = map (\<lambda>(y, (x, z)). (x, y, z)) (zip ys (zip xs zs))"  | 
|
| 68719 | 3017  | 
by(rule list_all2_all_nthI[where P="(=)", unfolded list.rel_eq]) simp_all  | 
| 61630 | 3018  | 
|
3019  | 
lemma zip_replicate2: "zip xs (replicate n y) = map (\<lambda>x. (x, y)) (take n xs)"  | 
|
| 68719 | 3020  | 
by(subst zip_commute)(simp add: zip_replicate1)  | 
| 61630 | 3021  | 
|
| 69593 | 3022  | 
subsubsection \<open>\<^const>\<open>List.product\<close> and \<^const>\<open>product_lists\<close>\<close>  | 
| 
49948
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
3023  | 
|
| 63720 | 3024  | 
lemma product_concat_map:  | 
3025  | 
"List.product xs ys = concat (map (\<lambda>x. map (\<lambda>y. (x,y)) ys) xs)"  | 
|
| 68719 | 3026  | 
by(induction xs) (simp)+  | 
| 63720 | 3027  | 
|
| 58807 | 3028  | 
lemma set_product[simp]: "set (List.product xs ys) = set xs \<times> set ys"  | 
| 68719 | 3029  | 
by (induct xs) auto  | 
| 
49948
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
3030  | 
|
| 
51160
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
3031  | 
lemma length_product [simp]:  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
3032  | 
"length (List.product xs ys) = length xs * length ys"  | 
| 68719 | 3033  | 
by (induct xs) simp_all  | 
| 
51160
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
3034  | 
|
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
3035  | 
lemma product_nth:  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
3036  | 
assumes "n < length xs * length ys"  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
3037  | 
shows "List.product xs ys ! n = (xs ! (n div length ys), ys ! (n mod length ys))"  | 
| 68719 | 3038  | 
using assms proof (induct xs arbitrary: n)  | 
| 
51160
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
3039  | 
case Nil then show ?case by simp  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
3040  | 
next  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
3041  | 
case (Cons x xs n)  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
3042  | 
then have "length ys > 0" by auto  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
3043  | 
with Cons show ?case  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
3044  | 
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
 | 
3045  | 
qed  | 
| 
 
599ff65b85e2
systematic conversions between nat and nibble/char;
 
haftmann 
parents: 
51112 
diff
changeset
 | 
3046  | 
|
| 64963 | 3047  | 
lemma in_set_product_lists_length:  | 
| 
53721
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3048  | 
"xs \<in> set (product_lists xss) \<Longrightarrow> length xs = length xss"  | 
| 68719 | 3049  | 
by (induct xss arbitrary: xs) auto  | 
| 
53721
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3050  | 
|
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3051  | 
lemma product_lists_set:  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3052  | 
  "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
 | 
3053  | 
proof (intro equalityI subsetI, unfold mem_Collect_eq)  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3054  | 
fix xs assume "xs \<in> ?L"  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3055  | 
then have "length xs = length xss" by (rule in_set_product_lists_length)  | 
| 60758 | 3056  | 
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
 | 
3057  | 
next  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3058  | 
fix xs assume "?R xs"  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3059  | 
then show "xs \<in> ?L" by induct auto  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3060  | 
qed  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3061  | 
|
| 
49948
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
3062  | 
|
| 69593 | 3063  | 
subsubsection \<open>\<^const>\<open>fold\<close> with natural argument order\<close>  | 
| 60758 | 3064  | 
|
| 61799 | 3065  | 
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
 | 
3066  | 
"fold f [] s = s"  | 
| 64963 | 3067  | 
"fold f (x # xs) s = fold f xs (f x s)"  | 
| 68719 | 3068  | 
by simp_all  | 
| 
48828
 
441a4eed7823
prefer eta-expanded code equations for fold, to accomodate tail recursion optimisation in Scala
 
haftmann 
parents: 
48619 
diff
changeset
 | 
3069  | 
|
| 
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
 | 
3070  | 
lemma fold_remove1_split:  | 
| 58807 | 3071  | 
"\<lbrakk> \<And>x y. x \<in> set xs \<Longrightarrow> y \<in> set xs \<Longrightarrow> f x \<circ> f y = f y \<circ> f x;  | 
3072  | 
x \<in> set xs \<rbrakk>  | 
|
3073  | 
\<Longrightarrow> fold f xs = fold f (remove1 x xs) \<circ> f x"  | 
|
| 68719 | 3074  | 
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
 | 
3075  | 
|
| 
 
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
 
haftmann 
parents: 
46125 
diff
changeset
 | 
3076  | 
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
 | 
3077  | 
"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
 | 
3078  | 
\<Longrightarrow> fold f xs a = fold g ys b"  | 
| 68719 | 3079  | 
by (induct ys arbitrary: a b xs) simp_all  | 
| 58807 | 3080  | 
|
3081  | 
lemma fold_id: "(\<And>x. x \<in> set xs \<Longrightarrow> f x = id) \<Longrightarrow> fold f xs = id"  | 
|
| 68719 | 3082  | 
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
 | 
3083  | 
|
| 
 
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
 
haftmann 
parents: 
46125 
diff
changeset
 | 
3084  | 
lemma fold_commute:  | 
| 58807 | 3085  | 
"(\<And>x. x \<in> set xs \<Longrightarrow> h \<circ> g x = f x \<circ> h) \<Longrightarrow> h \<circ> fold g xs = fold f xs \<circ> h"  | 
| 68719 | 3086  | 
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
 | 
3087  | 
|
| 
 
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
 
haftmann 
parents: 
46125 
diff
changeset
 | 
3088  | 
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
 | 
3089  | 
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
 | 
3090  | 
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
 | 
3091  | 
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
 | 
3092  | 
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
 | 
3093  | 
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
 | 
3094  | 
qed  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
3095  | 
|
| 64963 | 3096  | 
lemma fold_invariant:  | 
| 58807 | 3097  | 
"\<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>  | 
3098  | 
\<Longrightarrow> P (fold f xs s)"  | 
|
| 68719 | 3099  | 
by (induct xs arbitrary: s) simp_all  | 
| 58807 | 3100  | 
|
3101  | 
lemma fold_append [simp]: "fold f (xs @ ys) = fold f ys \<circ> fold f xs"  | 
|
| 68719 | 3102  | 
by (induct xs) simp_all  | 
| 58807 | 3103  | 
|
| 67091 | 3104  | 
lemma fold_map [code_unfold]: "fold g (map f xs) = fold (g \<circ> f) xs"  | 
| 68719 | 3105  | 
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
 | 
3106  | 
|
| 58437 | 3107  | 
lemma fold_filter:  | 
3108  | 
"fold f (filter P xs) = fold (\<lambda>x. if P x then f x else id) xs"  | 
|
| 68719 | 3109  | 
by (induct xs) simp_all  | 
| 58437 | 3110  | 
|
| 
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
 | 
3111  | 
lemma fold_rev:  | 
| 58807 | 3112  | 
"(\<And>x y. x \<in> set xs \<Longrightarrow> y \<in> set xs \<Longrightarrow> f y \<circ> f x = f x \<circ> f y)  | 
3113  | 
\<Longrightarrow> fold f (rev xs) = fold f xs"  | 
|
| 68719 | 3114  | 
by (induct xs) (simp_all add: fold_commute_apply fun_eq_iff)  | 
| 58807 | 3115  | 
|
3116  | 
lemma fold_Cons_rev: "fold Cons xs = append (rev xs)"  | 
|
| 68719 | 3117  | 
by (induct xs) simp_all  | 
| 58807 | 3118  | 
|
3119  | 
lemma rev_conv_fold [code]: "rev xs = fold Cons xs []"  | 
|
| 68719 | 3120  | 
by (simp add: fold_Cons_rev)  | 
| 58807 | 3121  | 
|
3122  | 
lemma fold_append_concat_rev: "fold append xss = append (concat (rev xss))"  | 
|
| 68719 | 3123  | 
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
 | 
3124  | 
|
| 69593 | 3125  | 
text \<open>\<^const>\<open>Finite_Set.fold\<close> and \<^const>\<open>fold\<close>\<close>  | 
| 
46133
 
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
 
haftmann 
parents: 
46125 
diff
changeset
 | 
3126  | 
|
| 73832 | 3127  | 
lemma (in comp_fun_commute_on) fold_set_fold_remdups:  | 
3128  | 
assumes "set xs \<subseteq> S"  | 
|
3129  | 
shows "Finite_Set.fold f y (set xs) = fold f (remdups xs) y"  | 
|
3130  | 
by (rule sym, use assms in \<open>induct xs arbitrary: y\<close>)  | 
|
3131  | 
(simp_all add: insert_absorb fold_fun_left_comm)  | 
|
3132  | 
||
3133  | 
lemma (in comp_fun_idem_on) fold_set_fold:  | 
|
3134  | 
assumes "set xs \<subseteq> S"  | 
|
3135  | 
shows "Finite_Set.fold f y (set xs) = fold f xs y"  | 
|
3136  | 
by (rule sym, use assms in \<open>induct xs arbitrary: y\<close>) (simp_all add: fold_fun_left_comm)  | 
|
| 58807 | 3137  | 
|
3138  | 
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
 | 
3139  | 
proof -  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
3140  | 
interpret comp_fun_idem Set.insert  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
3141  | 
by (fact comp_fun_idem_insert)  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
3142  | 
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
 | 
3143  | 
qed  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
3144  | 
|
| 
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
 | 
3145  | 
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
 | 
3146  | 
"List.coset xs \<union> A = List.coset (List.filter (\<lambda>x. x \<notin> A) xs)"  | 
| 68719 | 3147  | 
by auto  | 
| 58807 | 3148  | 
|
3149  | 
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
 | 
3150  | 
proof -  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
3151  | 
interpret comp_fun_idem Set.remove  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
3152  | 
by (fact comp_fun_idem_remove)  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
3153  | 
show ?thesis  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
3154  | 
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
 | 
3155  | 
qed  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
3156  | 
|
| 
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
 | 
3157  | 
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
 | 
3158  | 
"A - List.coset xs = set (List.filter (\<lambda>x. x \<in> A) xs)"  | 
| 68719 | 3159  | 
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
 | 
3160  | 
|
| 
 
d654c73e4b12
no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
 
haftmann 
parents: 
47131 
diff
changeset
 | 
3161  | 
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
 | 
3162  | 
"A \<inter> set xs = set (List.filter (\<lambda>x. x \<in> A) xs)"  | 
| 68719 | 3163  | 
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
 | 
3164  | 
|
| 
 
d654c73e4b12
no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
 
haftmann 
parents: 
47131 
diff
changeset
 | 
3165  | 
lemma 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
 | 
3166  | 
"A \<inter> List.coset xs = fold Set.remove xs A"  | 
| 68719 | 3167  | 
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
 | 
3168  | 
|
| 54885 | 3169  | 
lemma (in semilattice_set) set_eq_fold [code]:  | 
| 51489 | 3170  | 
"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
 | 
3171  | 
proof -  | 
| 51489 | 3172  | 
interpret comp_fun_idem f  | 
| 61169 | 3173  | 
by standard (simp_all add: fun_eq_iff left_commute)  | 
| 51489 | 3174  | 
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
 | 
3175  | 
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
 | 
3176  | 
|
| 
 
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
 
haftmann 
parents: 
46125 
diff
changeset
 | 
3177  | 
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
 | 
3178  | 
"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
 | 
3179  | 
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
 | 
3180  | 
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
 | 
3181  | 
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
 | 
3182  | 
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
 | 
3183  | 
qed  | 
| 
 
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
 
haftmann 
parents: 
46125 
diff
changeset
 | 
3184  | 
|
| 
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
 | 
3185  | 
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
 | 
3186  | 
|
| 
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
 | 
3187  | 
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
 | 
3188  | 
"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
 | 
3189  | 
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
 | 
3190  | 
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
 | 
3191  | 
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
 | 
3192  | 
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
 | 
3193  | 
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
 | 
3194  | 
|
| 
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
 | 
3195  | 
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
 | 
3196  | 
|
| 
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
 | 
3197  | 
lemma (in complete_lattice) INF_set_fold:  | 
| 69275 | 3198  | 
"\<Sqinter>(f ` set xs) = fold (inf \<circ> f) xs top"  | 
| 68781 | 3199  | 
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
 | 
3200  | 
|
| 
 
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
 
haftmann 
parents: 
46125 
diff
changeset
 | 
3201  | 
lemma (in complete_lattice) SUP_set_fold:  | 
| 69275 | 3202  | 
"\<Squnion>(f ` set xs) = fold (sup \<circ> f) xs bot"  | 
| 68781 | 3203  | 
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
 | 
3204  | 
|
| 
49948
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
3205  | 
|
| 69593 | 3206  | 
subsubsection \<open>Fold variants: \<^const>\<open>foldr\<close> and \<^const>\<open>foldl\<close>\<close>  | 
| 60758 | 3207  | 
|
3208  | 
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
 | 
3209  | 
|
| 58807 | 3210  | 
lemma foldr_conv_fold [code_abbrev]: "foldr f xs = fold f (rev xs)"  | 
| 68719 | 3211  | 
by (induct xs) simp_all  | 
| 58807 | 3212  | 
|
3213  | 
lemma foldl_conv_fold: "foldl f s xs = fold (\<lambda>x s. f s x) xs s"  | 
|
| 68719 | 3214  | 
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
 | 
3215  | 
|
| 61799 | 3216  | 
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
 | 
3217  | 
"foldr f xs a = foldl (\<lambda>x y. f y x) a (rev xs)"  | 
| 68719 | 3218  | 
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
 | 
3219  | 
|
| 
 
d654c73e4b12
no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
 
haftmann 
parents: 
47131 
diff
changeset
 | 
3220  | 
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
 | 
3221  | 
"foldl f a xs = foldr (\<lambda>x y. f y x) (rev xs) a"  | 
| 68719 | 3222  | 
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
 | 
3223  | 
|
| 
 
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
 
haftmann 
parents: 
46125 
diff
changeset
 | 
3224  | 
lemma foldr_fold:  | 
| 58807 | 3225  | 
"(\<And>x y. x \<in> set xs \<Longrightarrow> y \<in> set xs \<Longrightarrow> f y \<circ> f x = f x \<circ> f y)  | 
3226  | 
\<Longrightarrow> foldr f xs = fold f xs"  | 
|
| 68719 | 3227  | 
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
 | 
3228  | 
|
| 
 
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
 
haftmann 
parents: 
46125 
diff
changeset
 | 
3229  | 
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
 | 
3230  | 
"a = b \<Longrightarrow> l = k \<Longrightarrow> (\<And>a x. x \<in> set l \<Longrightarrow> f x a = g x a) \<Longrightarrow> foldr f l a = foldr g k b"  | 
| 68719 | 3231  | 
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
 | 
3232  | 
|
| 
 
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
 
haftmann 
parents: 
46125 
diff
changeset
 | 
3233  | 
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
 | 
3234  | 
"a = b \<Longrightarrow> l = k \<Longrightarrow> (\<And>a x. x \<in> set l \<Longrightarrow> f a x = g a x) \<Longrightarrow> foldl f a l = foldl g b k"  | 
| 68719 | 3235  | 
by (auto simp add: foldl_conv_fold intro!: fold_cong)  | 
| 58807 | 3236  | 
|
3237  | 
lemma foldr_append [simp]: "foldr f (xs @ ys) a = foldr f xs (foldr f ys a)"  | 
|
| 68719 | 3238  | 
by (simp add: foldr_conv_fold)  | 
| 58807 | 3239  | 
|
3240  | 
lemma foldl_append [simp]: "foldl f a (xs @ ys) = foldl f (foldl f a xs) ys"  | 
|
| 68719 | 3241  | 
by (simp add: foldl_conv_fold)  | 
| 58807 | 3242  | 
|
| 67091 | 3243  | 
lemma foldr_map [code_unfold]: "foldr g (map f xs) a = foldr (g \<circ> f) xs a"  | 
| 68719 | 3244  | 
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
 | 
3245  | 
|
| 58437 | 3246  | 
lemma foldr_filter:  | 
3247  | 
"foldr f (filter P xs) = foldr (\<lambda>x. if P x then f x else id) xs"  | 
|
| 68719 | 3248  | 
by (simp add: foldr_conv_fold rev_filter fold_filter)  | 
| 64963 | 3249  | 
|
| 
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
 | 
3250  | 
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
 | 
3251  | 
"foldl g a (map f xs) = foldl (\<lambda>a x. g a (f x)) a xs"  | 
| 68719 | 3252  | 
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
 | 
3253  | 
|
| 
 
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
 
haftmann 
parents: 
46125 
diff
changeset
 | 
3254  | 
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
 | 
3255  | 
"concat xss = foldr append xss []"  | 
| 68719 | 3256  | 
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
 | 
3257  | 
|
| 35115 | 3258  | 
|
| 69593 | 3259  | 
subsubsection \<open>\<^const>\<open>upt\<close>\<close>  | 
| 13114 | 3260  | 
|
| 17090 | 3261  | 
lemma upt_rec[code]: "[i..<j] = (if i<j then i#[Suc i..<j] else [])"  | 
| 68719 | 3262  | 
\<comment> \<open>simp does not terminate!\<close>  | 
3263  | 
by (induct j) auto  | 
|
| 13142 | 3264  | 
|
| 
47108
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46898 
diff
changeset
 | 
3265  | 
lemmas upt_rec_numeral[simp] = upt_rec[of "numeral m" "numeral n"] for m n  | 
| 32005 | 3266  | 
|
| 71585 | 3267  | 
lemma upt_conv_Nil [simp]: "j \<le> i \<Longrightarrow> [i..<j] = []"  | 
| 68719 | 3268  | 
by (subst upt_rec) simp  | 
| 13114 | 3269  | 
|
| 68709 | 3270  | 
lemma upt_eq_Nil_conv[simp]: "([i..<j] = []) = (j = 0 \<or> j \<le> i)"  | 
| 68719 | 3271  | 
by(induct j)simp_all  | 
| 15281 | 3272  | 
|
3273  | 
lemma upt_eq_Cons_conv:  | 
|
| 68719 | 3274  | 
"([i..<j] = x#xs) = (i < j \<and> i = x \<and> [i+1..<j] = xs)"  | 
| 68709 | 3275  | 
proof (induct j arbitrary: x xs)  | 
3276  | 
case (Suc j)  | 
|
3277  | 
then show ?case  | 
|
3278  | 
by (simp add: upt_rec)  | 
|
3279  | 
qed simp  | 
|
3280  | 
||
| 71585 | 3281  | 
lemma upt_Suc_append: "i \<le> j \<Longrightarrow> [i..<(Suc j)] = [i..<j]@[j]"  | 
| 68719 | 3282  | 
\<comment> \<open>Only needed if \<open>upt_Suc\<close> is deleted from the simpset.\<close>  | 
3283  | 
by simp  | 
|
| 13114 | 3284  | 
|
| 71585 | 3285  | 
lemma upt_conv_Cons: "i < j \<Longrightarrow> [i..<j] = i # [Suc i..<j]"  | 
| 68719 | 3286  | 
by (simp add: upt_rec)  | 
| 13114 | 3287  | 
|
| 63145 | 3288  | 
lemma upt_conv_Cons_Cons: \<comment> \<open>no precondition\<close>  | 
| 62580 | 3289  | 
"m # n # ns = [m..<q] \<longleftrightarrow> n # ns = [Suc m..<q]"  | 
3290  | 
proof (cases "m < q")  | 
|
3291  | 
case False then show ?thesis by simp  | 
|
3292  | 
next  | 
|
3293  | 
case True then show ?thesis by (simp add: upt_conv_Cons)  | 
|
3294  | 
qed  | 
|
3295  | 
||
| 71585 | 3296  | 
lemma upt_add_eq_append: "i<=j \<Longrightarrow> [i..<j+k] = [i..<j]@[j..<j+k]"  | 
| 68719 | 3297  | 
\<comment> \<open>LOOPS as a simprule, since \<open>j \<le> j\<close>.\<close>  | 
3298  | 
by (induct k) auto  | 
|
| 13114 | 3299  | 
|
| 15425 | 3300  | 
lemma length_upt [simp]: "length [i..<j] = j - i"  | 
| 68719 | 3301  | 
by (induct j) (auto simp add: Suc_diff_le)  | 
| 13114 | 3302  | 
|
| 71585 | 3303  | 
lemma nth_upt [simp]: "i + k < j \<Longrightarrow> [i..<j] ! k = i + k"  | 
| 68719 | 3304  | 
by (induct j) (auto simp add: less_Suc_eq nth_append split: nat_diff_split)  | 
| 17906 | 3305  | 
|
3306  | 
lemma hd_upt[simp]: "i < j \<Longrightarrow> hd[i..<j] = i"  | 
|
| 68719 | 3307  | 
by(simp add:upt_conv_Cons)  | 
| 17906 | 3308  | 
|
| 
70183
 
3ea80c950023
incorporated various material from the AFP into the distribution
 
haftmann 
parents: 
69850 
diff
changeset
 | 
3309  | 
lemma tl_upt [simp]: "tl [m..<n] = [Suc m..<n]"  | 
| 68719 | 3310  | 
by (simp add: upt_rec)  | 
| 
63317
 
ca187a9f66da
Various additions to polynomials, FPSs, Gamma function
 
eberlm 
parents: 
63173 
diff
changeset
 | 
3311  | 
|
| 17906 | 3312  | 
lemma last_upt[simp]: "i < j \<Longrightarrow> last[i..<j] = j - 1"  | 
| 68719 | 3313  | 
by(cases j)(auto simp: upt_Suc_append)  | 
| 17906 | 3314  | 
|
| 71585 | 3315  | 
lemma take_upt [simp]: "i+m \<le> n \<Longrightarrow> take m [i..<n] = [i..<i+m]"  | 
| 68709 | 3316  | 
proof (induct m arbitrary: i)  | 
3317  | 
case (Suc m)  | 
|
3318  | 
then show ?case  | 
|
3319  | 
by (subst take_Suc_conv_app_nth) auto  | 
|
3320  | 
qed simp  | 
|
| 3507 | 3321  | 
|
| 17501 | 3322  | 
lemma drop_upt[simp]: "drop m [i..<j] = [i+m..<j]"  | 
| 68719 | 3323  | 
by(induct j) auto  | 
| 17501 | 3324  | 
|
| 24645 | 3325  | 
lemma map_Suc_upt: "map Suc [m..<n] = [Suc m..<Suc n]"  | 
| 68719 | 3326  | 
by (induct n) auto  | 
| 13114 | 3327  | 
|
| 
54496
 
178922b63b58
add lemmas Suc_funpow and id_funpow to simpset; add lemma map_add_upt
 
hoelzl 
parents: 
54404 
diff
changeset
 | 
3328  | 
lemma map_add_upt: "map (\<lambda>i. i + n) [0..<m] = [n..<m + n]"  | 
| 68719 | 3329  | 
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
 | 
3330  | 
|
| 71585 | 3331  | 
lemma nth_map_upt: "i < n-m \<Longrightarrow> (map f [m..<n]) ! i = f(m+i)"  | 
| 68709 | 3332  | 
proof (induct n m arbitrary: i rule: diff_induct)  | 
| 68719 | 3333  | 
case (3 x y)  | 
| 68709 | 3334  | 
then show ?case  | 
3335  | 
by (metis add.commute length_upt less_diff_conv nth_map nth_upt)  | 
|
3336  | 
qed auto  | 
|
| 13114 | 3337  | 
|
| 58807 | 3338  | 
lemma map_decr_upt: "map (\<lambda>n. n - Suc 0) [Suc m..<Suc n] = [m..<n]"  | 
| 68719 | 3339  | 
by (induct n) simp_all  | 
| 
66550
 
e5d82cf3c387
Some small lemmas about polynomials and FPSs
 
eberlm <eberlm@in.tum.de> 
parents: 
66502 
diff
changeset
 | 
3340  | 
|
| 
 
e5d82cf3c387
Some small lemmas about polynomials and FPSs
 
eberlm <eberlm@in.tum.de> 
parents: 
66502 
diff
changeset
 | 
3341  | 
lemma map_upt_Suc: "map f [0 ..< Suc n] = f 0 # map (\<lambda>i. f (Suc i)) [0 ..< n]"  | 
| 68719 | 3342  | 
by (induct n arbitrary: f) auto  | 
| 52380 | 3343  | 
|
| 
13883
 
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
 
berghofe 
parents: 
13863 
diff
changeset
 | 
3344  | 
lemma nth_take_lemma:  | 
| 67091 | 3345  | 
"k \<le> length xs \<Longrightarrow> k \<le> length ys \<Longrightarrow>  | 
3346  | 
(\<And>i. i < k \<longrightarrow> xs!i = ys!i) \<Longrightarrow> take k xs = take k ys"  | 
|
| 68709 | 3347  | 
proof (induct k arbitrary: xs ys)  | 
3348  | 
case (Suc k)  | 
|
3349  | 
then show ?case  | 
|
3350  | 
apply (simp add: less_Suc_eq_0_disj)  | 
|
3351  | 
by (simp add: Suc.prems(3) take_Suc_conv_app_nth)  | 
|
3352  | 
qed simp  | 
|
| 13114 | 3353  | 
|
3354  | 
lemma nth_equalityI:  | 
|
| 
68975
 
5ce4d117cea7
A few new results, elimination of duplicates and more use of "pairwise"
 
paulson <lp15@cam.ac.uk> 
parents: 
68781 
diff
changeset
 | 
3355  | 
"\<lbrakk>length xs = length ys; \<And>i. i < length xs \<Longrightarrow> xs!i = ys!i\<rbrakk> \<Longrightarrow> xs = ys"  | 
| 68719 | 3356  | 
by (frule nth_take_lemma [OF le_refl eq_imp_le]) simp_all  | 
| 13142 | 3357  | 
|
| 24796 | 3358  | 
lemma map_nth:  | 
3359  | 
"map (\<lambda>i. xs ! i) [0..<length xs] = xs"  | 
|
| 68719 | 3360  | 
by (rule nth_equalityI, auto)  | 
| 58807 | 3361  | 
|
| 13863 | 3362  | 
lemma list_all2_antisym:  | 
| 64963 | 3363  | 
"\<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 | 3364  | 
\<Longrightarrow> xs = ys"  | 
| 68719 | 3365  | 
by (simp add: list_all2_conv_all_nth nth_equalityI)  | 
| 13863 | 3366  | 
|
| 71585 | 3367  | 
lemma take_equalityI: "(\<forall>i. take i xs = take i ys) \<Longrightarrow> xs = ys"  | 
| 61799 | 3368  | 
\<comment> \<open>The famous take-lemma.\<close>  | 
| 68719 | 3369  | 
by (metis length_take min.commute order_refl take_all)  | 
| 13142 | 3370  | 
|
| 15302 | 3371  | 
lemma take_Cons':  | 
| 58807 | 3372  | 
"take n (x # xs) = (if n = 0 then [] else x # take (n - 1) xs)"  | 
| 15302 | 3373  | 
by (cases n) simp_all  | 
3374  | 
||
3375  | 
lemma drop_Cons':  | 
|
| 58807 | 3376  | 
"drop n (x # xs) = (if n = 0 then x # xs else drop (n - 1) xs)"  | 
| 15302 | 3377  | 
by (cases n) simp_all  | 
3378  | 
||
3379  | 
lemma nth_Cons': "(x # xs)!n = (if n = 0 then x else xs!(n - 1))"  | 
|
3380  | 
by (cases n) simp_all  | 
|
3381  | 
||
| 
47108
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46898 
diff
changeset
 | 
3382  | 
lemma take_Cons_numeral [simp]:  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46898 
diff
changeset
 | 
3383  | 
"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
 | 
3384  | 
by (simp add: take_Cons')  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46898 
diff
changeset
 | 
3385  | 
|
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46898 
diff
changeset
 | 
3386  | 
lemma drop_Cons_numeral [simp]:  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46898 
diff
changeset
 | 
3387  | 
"drop (numeral v) (x # xs) = drop (numeral v - 1) xs"  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46898 
diff
changeset
 | 
3388  | 
by (simp add: drop_Cons')  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46898 
diff
changeset
 | 
3389  | 
|
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46898 
diff
changeset
 | 
3390  | 
lemma nth_Cons_numeral [simp]:  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46898 
diff
changeset
 | 
3391  | 
"(x # xs) ! numeral v = xs ! (numeral v - 1)"  | 
| 73301 | 3392  | 
by (simp add: nth_Cons')  | 
3393  | 
||
3394  | 
lemma map_upt_eqI:  | 
|
3395  | 
\<open>map f [m..<n] = xs\<close> if \<open>length xs = n - m\<close>  | 
|
3396  | 
\<open>\<And>i. i < length xs \<Longrightarrow> xs ! i = f (m + i)\<close>  | 
|
3397  | 
proof (rule nth_equalityI)  | 
|
3398  | 
from \<open>length xs = n - m\<close> show \<open>length (map f [m..<n]) = length xs\<close>  | 
|
3399  | 
by simp  | 
|
3400  | 
next  | 
|
3401  | 
fix i  | 
|
3402  | 
assume \<open>i < length (map f [m..<n])\<close>  | 
|
3403  | 
then have \<open>i < n - m\<close>  | 
|
3404  | 
by simp  | 
|
3405  | 
with that have \<open>xs ! i = f (m + i)\<close>  | 
|
3406  | 
by simp  | 
|
3407  | 
with \<open>i < n - m\<close> show \<open>map f [m..<n] ! i = xs ! i\<close>  | 
|
3408  | 
by simp  | 
|
3409  | 
qed  | 
|
| 15302 | 3410  | 
|
3411  | 
||
| 69593 | 3412  | 
subsubsection \<open>\<open>upto\<close>: interval-list on \<^typ>\<open>int\<close>\<close>  | 
| 
32415
 
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
 
nipkow 
parents: 
32078 
diff
changeset
 | 
3413  | 
|
| 
 
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
 | 
3414  | 
function upto :: "int \<Rightarrow> int \<Rightarrow> int list" ("(1[_../_])") where
 | 
| 51166 | 3415  | 
"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
 | 
3416  | 
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
 | 
3417  | 
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
 | 
3418  | 
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
 | 
3419  | 
|
| 51166 | 3420  | 
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
 | 
3421  | 
|
| 
47108
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46898 
diff
changeset
 | 
3422  | 
lemmas upto_rec_numeral [simp] =  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46898 
diff
changeset
 | 
3423  | 
upto.simps[of "numeral m" "numeral n"]  | 
| 
54489
 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 
haftmann 
parents: 
54404 
diff
changeset
 | 
3424  | 
upto.simps[of "numeral m" "- numeral n"]  | 
| 
 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 
haftmann 
parents: 
54404 
diff
changeset
 | 
3425  | 
upto.simps[of "- numeral m" "numeral n"]  | 
| 
 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 
haftmann 
parents: 
54404 
diff
changeset
 | 
3426  | 
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
 | 
3427  | 
|
| 
 
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
 | 
3428  | 
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
 | 
3429  | 
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
 | 
3430  | 
|
| 67942 | 3431  | 
lemma upto_single[simp]: "[i..i] = [i]"  | 
3432  | 
by(simp add: upto.simps)  | 
|
3433  | 
||
| 67124 | 3434  | 
lemma upto_Nil[simp]: "[i..j] = [] \<longleftrightarrow> j < i"  | 
3435  | 
by (simp add: upto.simps)  | 
|
3436  | 
||
| 67168 | 3437  | 
lemma upto_Nil2[simp]: "[] = [i..j] \<longleftrightarrow> j < i"  | 
3438  | 
by (simp add: upto.simps)  | 
|
3439  | 
||
| 51166 | 3440  | 
lemma upto_rec1: "i \<le> j \<Longrightarrow> [i..j] = i#[i+1..j]"  | 
3441  | 
by(simp add: upto.simps)  | 
|
3442  | 
||
3443  | 
lemma upto_rec2: "i \<le> j \<Longrightarrow> [i..j] = [i..j - 1]@[j]"  | 
|
3444  | 
proof(induct "nat(j-i)" arbitrary: i j)  | 
|
3445  | 
case 0 thus ?case by(simp add: upto.simps)  | 
|
3446  | 
next  | 
|
3447  | 
case (Suc n)  | 
|
3448  | 
hence "n = nat (j - (i + 1))" "i < j" by linarith+  | 
|
3449  | 
from this(2) Suc.hyps(1)[OF this(1)] Suc(2,3) upto_rec1 show ?case by simp  | 
|
3450  | 
qed  | 
|
3451  | 
||
| 67949 | 3452  | 
lemma length_upto[simp]: "length [i..j] = nat(j - i + 1)"  | 
3453  | 
by(induction i j rule: upto.induct) (auto simp: upto.simps)  | 
|
3454  | 
||
| 
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
 | 
3455  | 
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
 | 
3456  | 
proof(induct i j rule:upto.induct)  | 
| 
 
edbf0a86fb1c
adding simproc to rewrite list comprehensions to set comprehensions; adopting proofs
 
bulwahn 
parents: 
41372 
diff
changeset
 | 
3457  | 
case (1 i j)  | 
| 
 
edbf0a86fb1c
adding simproc to rewrite list comprehensions to set comprehensions; adopting proofs
 
bulwahn 
parents: 
41372 
diff
changeset
 | 
3458  | 
from this show ?case  | 
| 55811 | 3459  | 
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
 | 
3460  | 
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
 | 
3461  | 
|
| 69125 | 3462  | 
lemma nth_upto[simp]: "i + int k \<le> j \<Longrightarrow> [i..j] ! k = i + int k"  | 
| 71585 | 3463  | 
proof(induction i j arbitrary: k rule: upto.induct)  | 
3464  | 
case (1 i j)  | 
|
3465  | 
then show ?case  | 
|
3466  | 
by (auto simp add: upto_rec1 [of i j] nth_Cons')  | 
|
3467  | 
qed  | 
|
| 67949 | 3468  | 
|
| 
71393
 
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
 
traytel 
parents: 
70911 
diff
changeset
 | 
3469  | 
lemma upto_split1:  | 
| 67081 | 3470  | 
"i \<le> j \<Longrightarrow> j \<le> k \<Longrightarrow> [i..k] = [i..j-1] @ [j..k]"  | 
3471  | 
proof (induction j rule: int_ge_induct)  | 
|
3472  | 
case base thus ?case by (simp add: upto_rec1)  | 
|
3473  | 
next  | 
|
3474  | 
case step thus ?case using upto_rec1 upto_rec2 by simp  | 
|
3475  | 
qed  | 
|
3476  | 
||
| 
71393
 
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
 
traytel 
parents: 
70911 
diff
changeset
 | 
3477  | 
lemma upto_split2:  | 
| 67081 | 3478  | 
"i \<le> j \<Longrightarrow> j \<le> k \<Longrightarrow> [i..k] = [i..j] @ [j+1..k]"  | 
3479  | 
using upto_rec1 upto_rec2 upto_split1 by auto  | 
|
3480  | 
||
| 67124 | 3481  | 
lemma upto_split3: "\<lbrakk> i \<le> j; j \<le> k \<rbrakk> \<Longrightarrow> [i..k] = [i..j-1] @ j # [j+1..k]"  | 
3482  | 
using upto_rec1 upto_split1 by auto  | 
|
3483  | 
||
| 60758 | 3484  | 
text\<open>Tail recursive version for code generation:\<close>  | 
| 51166 | 3485  | 
|
| 51170 | 3486  | 
definition upto_aux :: "int \<Rightarrow> int \<Rightarrow> int list \<Rightarrow> int list" where  | 
3487  | 
"upto_aux i j js = [i..j] @ js"  | 
|
3488  | 
||
3489  | 
lemma upto_aux_rec [code]:  | 
|
| 51166 | 3490  | 
"upto_aux i j js = (if j<i then js else upto_aux i (j - 1) (j#js))"  | 
| 58807 | 3491  | 
by (simp add: upto_aux_def upto_rec2)  | 
| 51166 | 3492  | 
|
3493  | 
lemma upto_code[code]: "[i..j] = upto_aux i j []"  | 
|
| 51170 | 3494  | 
by(simp add: upto_aux_def)  | 
| 51166 | 3495  | 
|
| 
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
 | 
3496  | 
|
| 71779 | 3497  | 
|
3498  | 
subsubsection \<open>\<^const>\<open>successively\<close>\<close>  | 
|
3499  | 
||
3500  | 
lemma successively_Cons:  | 
|
3501  | 
"successively P (x # xs) \<longleftrightarrow> xs = [] \<or> P x (hd xs) \<and> successively P xs"  | 
|
3502  | 
by (cases xs) auto  | 
|
3503  | 
||
3504  | 
lemma successively_cong [cong]:  | 
|
3505  | 
assumes "\<And>x y. x \<in> set xs \<Longrightarrow> y \<in> set xs \<Longrightarrow> P x y \<longleftrightarrow> Q x y" "xs = ys"  | 
|
3506  | 
shows "successively P xs \<longleftrightarrow> successively Q ys"  | 
|
3507  | 
unfolding assms(2) [symmetric] using assms(1)  | 
|
3508  | 
by (induction xs) (auto simp: successively_Cons)  | 
|
3509  | 
||
3510  | 
||
3511  | 
lemma successively_append_iff:  | 
|
3512  | 
"successively P (xs @ ys) \<longleftrightarrow>  | 
|
3513  | 
successively P xs \<and> successively P ys \<and>  | 
|
3514  | 
(xs = [] \<or> ys = [] \<or> P (last xs) (hd ys))"  | 
|
3515  | 
by (induction xs) (auto simp: successively_Cons)  | 
|
3516  | 
||
3517  | 
lemma successively_if_sorted_wrt: "sorted_wrt P xs \<Longrightarrow> successively P xs"  | 
|
3518  | 
by (induction xs rule: induct_list012) auto  | 
|
3519  | 
||
3520  | 
||
3521  | 
lemma successively_iff_sorted_wrt_strong:  | 
|
3522  | 
assumes "\<And>x y z. x \<in> set xs \<Longrightarrow> y \<in> set xs \<Longrightarrow> z \<in> set xs \<Longrightarrow>  | 
|
3523  | 
P x y \<Longrightarrow> P y z \<Longrightarrow> P x z"  | 
|
3524  | 
shows "successively P xs \<longleftrightarrow> sorted_wrt P xs"  | 
|
3525  | 
proof  | 
|
3526  | 
assume "successively P xs"  | 
|
3527  | 
from this and assms show "sorted_wrt P xs"  | 
|
3528  | 
proof (induction xs rule: induct_list012)  | 
|
3529  | 
case (3 x y xs)  | 
|
3530  | 
from "3.prems" have "P x y"  | 
|
3531  | 
by auto  | 
|
3532  | 
have IH: "sorted_wrt P (y # xs)"  | 
|
3533  | 
using "3.prems"  | 
|
3534  | 
by(intro "3.IH"(2) list.set_intros(2))(simp, blast intro: list.set_intros(2))  | 
|
3535  | 
have "P x z" if asm: "z \<in> set xs" for z  | 
|
3536  | 
proof -  | 
|
3537  | 
from IH and asm have "P y z"  | 
|
3538  | 
by auto  | 
|
3539  | 
with \<open>P x y\<close> show "P x z"  | 
|
3540  | 
using "3.prems" asm by auto  | 
|
3541  | 
qed  | 
|
3542  | 
with IH and \<open>P x y\<close> show ?case by auto  | 
|
3543  | 
qed auto  | 
|
3544  | 
qed (use successively_if_sorted_wrt in blast)  | 
|
3545  | 
||
3546  | 
lemma successively_conv_sorted_wrt:  | 
|
3547  | 
assumes "transp P"  | 
|
3548  | 
shows "successively P xs \<longleftrightarrow> sorted_wrt P xs"  | 
|
3549  | 
using assms unfolding transp_def  | 
|
3550  | 
by (intro successively_iff_sorted_wrt_strong) blast  | 
|
3551  | 
||
3552  | 
lemma successively_rev [simp]: "successively P (rev xs) \<longleftrightarrow> successively (\<lambda>x y. P y x) xs"  | 
|
3553  | 
by (induction xs rule: remdups_adj.induct)  | 
|
3554  | 
(auto simp: successively_append_iff successively_Cons)  | 
|
3555  | 
||
3556  | 
lemma successively_map: "successively P (map f xs) \<longleftrightarrow> successively (\<lambda>x y. P (f x) (f y)) xs"  | 
|
3557  | 
by (induction xs rule: induct_list012) auto  | 
|
3558  | 
||
3559  | 
lemma successively_mono:  | 
|
3560  | 
assumes "successively P xs"  | 
|
3561  | 
assumes "\<And>x y. x \<in> set xs \<Longrightarrow> y \<in> set xs \<Longrightarrow> P x y \<Longrightarrow> Q x y"  | 
|
3562  | 
shows "successively Q xs"  | 
|
3563  | 
using assms by (induction Q xs rule: successively.induct) auto  | 
|
3564  | 
||
3565  | 
lemma successively_altdef:  | 
|
3566  | 
"successively = (\<lambda>P. rec_list True (\<lambda>x xs b. case xs of [] \<Rightarrow> True | y # _ \<Rightarrow> P x y \<and> b))"  | 
|
3567  | 
proof (intro ext)  | 
|
3568  | 
fix P and xs :: "'a list"  | 
|
3569  | 
show "successively P xs = rec_list True (\<lambda>x xs b. case xs of [] \<Rightarrow> True | y # _ \<Rightarrow> P x y \<and> b) xs"  | 
|
3570  | 
by (induction xs) (auto simp: successively_Cons split: list.splits)  | 
|
3571  | 
qed  | 
|
3572  | 
||
3573  | 
||
| 69593 | 3574  | 
subsubsection \<open>\<^const>\<open>distinct\<close> and \<^const>\<open>remdups\<close> and \<^const>\<open>remdups_adj\<close>\<close>  | 
| 13142 | 3575  | 
|
| 58807 | 3576  | 
lemma distinct_tl: "distinct xs \<Longrightarrow> distinct (tl xs)"  | 
3577  | 
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
 | 
3578  | 
|
| 13142 | 3579  | 
lemma distinct_append [simp]:  | 
| 58807 | 3580  | 
  "distinct (xs @ ys) = (distinct xs \<and> distinct ys \<and> set xs \<inter> set ys = {})"
 | 
| 13145 | 3581  | 
by (induct xs) auto  | 
| 13142 | 3582  | 
|
| 15305 | 3583  | 
lemma distinct_rev[simp]: "distinct(rev xs) = distinct xs"  | 
3584  | 
by(induct xs) auto  | 
|
3585  | 
||
| 13142 | 3586  | 
lemma set_remdups [simp]: "set (remdups xs) = set xs"  | 
| 13145 | 3587  | 
by (induct xs) (auto simp add: insert_absorb)  | 
| 13142 | 3588  | 
|
3589  | 
lemma distinct_remdups [iff]: "distinct (remdups xs)"  | 
|
| 13145 | 3590  | 
by (induct xs) auto  | 
| 13142 | 3591  | 
|
| 71585 | 3592  | 
lemma distinct_remdups_id: "distinct xs \<Longrightarrow> remdups xs = xs"  | 
| 25287 | 3593  | 
by (induct xs, auto)  | 
3594  | 
||
| 26734 | 3595  | 
lemma remdups_id_iff_distinct [simp]: "remdups xs = xs \<longleftrightarrow> distinct xs"  | 
3596  | 
by (metis distinct_remdups distinct_remdups_id)  | 
|
| 25287 | 3597  | 
|
| 67091 | 3598  | 
lemma finite_distinct_list: "finite A \<Longrightarrow> \<exists>xs. set xs = A \<and> distinct xs"  | 
| 24632 | 3599  | 
by (metis distinct_remdups finite_list set_remdups)  | 
| 24566 | 3600  | 
|
| 15072 | 3601  | 
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
 | 
3602  | 
by (induct x, auto)  | 
| 15072 | 3603  | 
|
3604  | 
lemma remdups_eq_nil_right_iff [simp]: "([] = remdups x) = (x = [])"  | 
|
| 24349 | 3605  | 
by (induct x, auto)  | 
| 15072 | 3606  | 
|
| 68709 | 3607  | 
lemma length_remdups_leq[iff]: "length(remdups xs) \<le> length xs"  | 
| 15245 | 3608  | 
by (induct xs) auto  | 
3609  | 
||
3610  | 
lemma length_remdups_eq[iff]:  | 
|
3611  | 
"(length (remdups xs) = length xs) = (remdups xs = xs)"  | 
|
| 68719 | 3612  | 
proof (induct xs)  | 
3613  | 
case (Cons a xs)  | 
|
3614  | 
then show ?case  | 
|
3615  | 
by simp (metis Suc_n_not_le_n impossible_Cons length_remdups_leq)  | 
|
3616  | 
qed auto  | 
|
| 15245 | 3617  | 
|
| 33945 | 3618  | 
lemma remdups_filter: "remdups(filter P xs) = filter P (remdups xs)"  | 
| 58807 | 3619  | 
by (induct xs) auto  | 
| 18490 | 3620  | 
|
3621  | 
lemma distinct_map:  | 
|
| 67091 | 3622  | 
"distinct(map f xs) = (distinct xs \<and> inj_on f (set xs))"  | 
| 18490 | 3623  | 
by (induct xs) auto  | 
3624  | 
||
| 58195 | 3625  | 
lemma distinct_map_filter:  | 
3626  | 
"distinct (map f xs) \<Longrightarrow> distinct (map f (filter P xs))"  | 
|
| 58807 | 3627  | 
by (induct xs) auto  | 
| 58195 | 3628  | 
|
| 71585 | 3629  | 
lemma distinct_filter [simp]: "distinct xs \<Longrightarrow> distinct (filter P xs)"  | 
| 13145 | 3630  | 
by (induct xs) auto  | 
| 13114 | 3631  | 
|
| 17501 | 3632  | 
lemma distinct_upt[simp]: "distinct[i..<j]"  | 
3633  | 
by (induct j) auto  | 
|
3634  | 
||
| 
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
 | 
3635  | 
lemma distinct_upto[simp]: "distinct[i..j]"  | 
| 71585 | 3636  | 
proof (induction i j rule: upto.induct)  | 
3637  | 
case (1 i j)  | 
|
3638  | 
then show ?case  | 
|
3639  | 
by (simp add: upto.simps [of i])  | 
|
3640  | 
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
 | 
3641  | 
|
| 24526 | 3642  | 
lemma distinct_take[simp]: "distinct xs \<Longrightarrow> distinct (take i xs)"  | 
| 68719 | 3643  | 
proof (induct xs arbitrary: i)  | 
3644  | 
case (Cons a xs)  | 
|
3645  | 
then show ?case  | 
|
3646  | 
by (metis Cons.prems append_take_drop_id distinct_append)  | 
|
3647  | 
qed auto  | 
|
| 17501 | 3648  | 
|
| 24526 | 3649  | 
lemma distinct_drop[simp]: "distinct xs \<Longrightarrow> distinct (drop i xs)"  | 
| 68719 | 3650  | 
proof (induct xs arbitrary: i)  | 
3651  | 
case (Cons a xs)  | 
|
3652  | 
then show ?case  | 
|
3653  | 
by (metis Cons.prems append_take_drop_id distinct_append)  | 
|
3654  | 
qed auto  | 
|
| 17501 | 3655  | 
|
3656  | 
lemma distinct_list_update:  | 
|
| 68719 | 3657  | 
  assumes d: "distinct xs" and a: "a \<notin> set xs - {xs!i}"
 | 
3658  | 
shows "distinct (xs[i:=a])"  | 
|
| 17501 | 3659  | 
proof (cases "i < length xs")  | 
3660  | 
case True  | 
|
| 68719 | 3661  | 
  with a have anot: "a \<notin> set (take i xs @ xs ! i # drop (Suc i) xs) - {xs!i}"
 | 
3662  | 
by simp (metis in_set_dropD in_set_takeD)  | 
|
3663  | 
show ?thesis  | 
|
3664  | 
proof (cases "a = xs!i")  | 
|
3665  | 
case True  | 
|
3666  | 
with d show ?thesis  | 
|
3667  | 
by auto  | 
|
3668  | 
next  | 
|
3669  | 
case False  | 
|
| 71585 | 3670  | 
    have "set (take i xs) \<inter> set (drop (Suc i) xs) = {}"
 | 
3671  | 
by (metis True d disjoint_insert(1) distinct_append id_take_nth_drop list.set(2))  | 
|
| 68719 | 3672  | 
then show ?thesis  | 
| 71585 | 3673  | 
using d False anot \<open>i < length xs\<close> by (simp add: upd_conv_take_nth_drop)  | 
| 68719 | 3674  | 
qed  | 
| 17501 | 3675  | 
next  | 
3676  | 
case False with d show ?thesis by auto  | 
|
3677  | 
qed  | 
|
3678  | 
||
| 
31363
 
7493b571b37d
Added theorems about distinct & concat, map & replicate and concat & replicate
 
hoelzl 
parents: 
31264 
diff
changeset
 | 
3679  | 
lemma distinct_concat:  | 
| 58807 | 3680  | 
"\<lbrakk> distinct xs;  | 
3681  | 
\<And> ys. ys \<in> set xs \<Longrightarrow> distinct ys;  | 
|
3682  | 
     \<And> ys zs. \<lbrakk> ys \<in> set xs ; zs \<in> set xs ; ys \<noteq> zs \<rbrakk> \<Longrightarrow> set ys \<inter> set zs = {}
 | 
|
3683  | 
\<rbrakk> \<Longrightarrow> distinct (concat xs)"  | 
|
3684  | 
by (induct xs) auto  | 
|
| 17501 | 3685  | 
|
| 71593 | 3686  | 
text \<open>An iff-version of @{thm distinct_concat} is available further down as \<open>distinct_concat_iff\<close>.\<close>
 | 
3687  | 
||
3688  | 
text \<open>It is best to avoid the following indexed version of distinct, but sometimes it is useful.\<close>  | 
|
| 17501 | 3689  | 
|
| 68719 | 3690  | 
lemma distinct_conv_nth: "distinct xs = (\<forall>i < size xs. \<forall>j < size xs. i \<noteq> j \<longrightarrow> xs!i \<noteq> xs!j)"  | 
3691  | 
proof (induct xs)  | 
|
3692  | 
case (Cons x xs)  | 
|
3693  | 
show ?case  | 
|
3694  | 
apply (auto simp add: Cons nth_Cons split: nat.split_asm)  | 
|
3695  | 
apply (metis Suc_less_eq2 in_set_conv_nth less_not_refl zero_less_Suc)+  | 
|
3696  | 
done  | 
|
3697  | 
qed auto  | 
|
| 13114 | 3698  | 
|
| 18490 | 3699  | 
lemma nth_eq_iff_index_eq:  | 
| 58807 | 3700  | 
"\<lbrakk> distinct xs; i < length xs; j < length xs \<rbrakk> \<Longrightarrow> (xs!i = xs!j) = (i = j)"  | 
| 18490 | 3701  | 
by(auto simp: distinct_conv_nth)  | 
3702  | 
||
| 64963 | 3703  | 
lemma distinct_Ex1:  | 
| 
63099
 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 
eberlm 
parents: 
63092 
diff
changeset
 | 
3704  | 
"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
 | 
3705  | 
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
 | 
3706  | 
|
| 59728 | 3707  | 
lemma inj_on_nth: "distinct xs \<Longrightarrow> \<forall>i \<in> I. i < length xs \<Longrightarrow> inj_on (nth xs) I"  | 
3708  | 
by (rule inj_onI) (simp add: nth_eq_iff_index_eq)  | 
|
3709  | 
||
| 
63099
 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 
eberlm 
parents: 
63092 
diff
changeset
 | 
3710  | 
lemma bij_betw_nth:  | 
| 64963 | 3711  | 
  assumes "distinct xs" "A = {..<length xs}" "B = set xs"
 | 
| 67399 | 3712  | 
shows "bij_betw ((!) xs) A B"  | 
| 
63099
 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 
eberlm 
parents: 
63092 
diff
changeset
 | 
3713  | 
using assms unfolding bij_betw_def  | 
| 
 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 
eberlm 
parents: 
63092 
diff
changeset
 | 
3714  | 
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
 | 
3715  | 
|
| 56953 | 3716  | 
lemma set_update_distinct: "\<lbrakk> distinct xs; n < length xs \<rbrakk> \<Longrightarrow>  | 
3717  | 
  set(xs[n := x]) = insert x (set xs - {xs!n})"
 | 
|
3718  | 
by(auto simp: set_eq_iff in_set_conv_nth nth_list_update nth_eq_iff_index_eq)  | 
|
3719  | 
||
| 71585 | 3720  | 
lemma distinct_swap[simp]: "\<lbrakk> i < size xs; j < size xs\<rbrakk> \<Longrightarrow>  | 
| 57537 | 3721  | 
distinct(xs[i := xs!j, j := xs!i]) = distinct xs"  | 
| 68719 | 3722  | 
apply (simp add: distinct_conv_nth nth_list_update)  | 
| 71585 | 3723  | 
apply (safe; metis)  | 
3724  | 
done  | 
|
| 57537 | 3725  | 
|
3726  | 
lemma set_swap[simp]:  | 
|
3727  | 
"\<lbrakk> i < size xs; j < size xs \<rbrakk> \<Longrightarrow> set(xs[i := xs!j, j := xs!i]) = set xs"  | 
|
3728  | 
by(simp add: set_conv_nth nth_list_update) metis  | 
|
3729  | 
||
| 71585 | 3730  | 
lemma distinct_card: "distinct xs \<Longrightarrow> card (set xs) = size xs"  | 
| 24349 | 3731  | 
by (induct xs) auto  | 
| 14388 | 3732  | 
|
| 71585 | 3733  | 
lemma card_distinct: "card (set xs) = size xs \<Longrightarrow> distinct xs"  | 
| 14388 | 3734  | 
proof (induct xs)  | 
3735  | 
case (Cons x xs)  | 
|
3736  | 
show ?case  | 
|
3737  | 
proof (cases "x \<in> set xs")  | 
|
3738  | 
case False with Cons show ?thesis by simp  | 
|
3739  | 
next  | 
|
3740  | 
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
 | 
3741  | 
have "card (set xs) = Suc (length xs)"  | 
| 62390 | 3742  | 
by (simp add: card_insert_if split: if_split_asm)  | 
| 14388 | 3743  | 
moreover have "card (set xs) \<le> length xs" by (rule card_length)  | 
3744  | 
ultimately have False by simp  | 
|
3745  | 
thus ?thesis ..  | 
|
3746  | 
qed  | 
|
| 68719 | 3747  | 
qed simp  | 
| 14388 | 3748  | 
|
| 
45115
 
93c1ac6727a3
adding lemma to List library for executable equation of the (refl) transitive closure
 
bulwahn 
parents: 
44928 
diff
changeset
 | 
3749  | 
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
 | 
3750  | 
by (induct xs) (auto)  | 
| 
 
93c1ac6727a3
adding lemma to List library for executable equation of the (refl) transitive closure
 
bulwahn 
parents: 
44928 
diff
changeset
 | 
3751  | 
|
| 67091 | 3752  | 
lemma not_distinct_decomp: "\<not> distinct ws \<Longrightarrow> \<exists>xs ys zs y. ws = xs@[y]@ys@[y]@zs"  | 
| 68719 | 3753  | 
proof (induct n == "length ws" arbitrary:ws)  | 
3754  | 
case (Suc n ws)  | 
|
3755  | 
then show ?case  | 
|
3756  | 
using length_Suc_conv [of ws n]  | 
|
3757  | 
apply (auto simp: eq_commute)  | 
|
3758  | 
apply (metis append_Nil in_set_conv_decomp_first)  | 
|
3759  | 
by (metis append_Cons)  | 
|
3760  | 
qed simp  | 
|
| 18490 | 3761  | 
|
| 45841 | 3762  | 
lemma not_distinct_conv_prefix:  | 
3763  | 
defines "dec as xs y ys \<equiv> y \<in> set xs \<and> distinct xs \<and> as = xs @ y # ys"  | 
|
3764  | 
shows "\<not>distinct as \<longleftrightarrow> (\<exists>xs y ys. dec as xs y ys)" (is "?L = ?R")  | 
|
3765  | 
proof  | 
|
3766  | 
assume "?L" then show "?R"  | 
|
3767  | 
proof (induct "length as" arbitrary: as rule: less_induct)  | 
|
3768  | 
case less  | 
|
3769  | 
obtain xs ys zs y where decomp: "as = (xs @ y # ys) @ y # zs"  | 
|
3770  | 
using not_distinct_decomp[OF less.prems] by auto  | 
|
3771  | 
show ?case  | 
|
3772  | 
proof (cases "distinct (xs @ y # ys)")  | 
|
3773  | 
case True  | 
|
3774  | 
with decomp have "dec as (xs @ y # ys) y zs" by (simp add: dec_def)  | 
|
3775  | 
then show ?thesis by blast  | 
|
3776  | 
next  | 
|
3777  | 
case False  | 
|
3778  | 
with less decomp obtain xs' y' ys' where "dec (xs @ y # ys) xs' y' ys'"  | 
|
3779  | 
by atomize_elim auto  | 
|
3780  | 
with decomp have "dec as xs' y' (ys' @ y # zs)" by (simp add: dec_def)  | 
|
3781  | 
then show ?thesis by blast  | 
|
3782  | 
qed  | 
|
3783  | 
qed  | 
|
3784  | 
qed (auto simp: dec_def)  | 
|
3785  | 
||
| 
49948
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
3786  | 
lemma distinct_product:  | 
| 57247 | 3787  | 
"distinct xs \<Longrightarrow> distinct ys \<Longrightarrow> distinct (List.product xs ys)"  | 
3788  | 
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
 | 
3789  | 
|
| 
53721
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3790  | 
lemma distinct_product_lists:  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3791  | 
assumes "\<forall>xs \<in> set xss. distinct xs"  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3792  | 
shows "distinct (product_lists xss)"  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3793  | 
using assms proof (induction xss)  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3794  | 
case (Cons xs xss) note * = this  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3795  | 
then show ?case  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3796  | 
proof (cases "product_lists xss")  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3797  | 
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
 | 
3798  | 
next  | 
| 64963 | 3799  | 
case (Cons ps pss) with * show ?thesis  | 
| 
53721
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3800  | 
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
 | 
3801  | 
qed  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3802  | 
qed simp  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
3803  | 
|
| 18490 | 3804  | 
lemma length_remdups_concat:  | 
| 44921 | 3805  | 
"length (remdups (concat xss)) = card (\<Union>xs\<in>set xss. set xs)"  | 
| 58807 | 3806  | 
by (simp add: distinct_card [symmetric])  | 
| 17906 | 3807  | 
|
| 
71393
 
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
 
traytel 
parents: 
70911 
diff
changeset
 | 
3808  | 
lemma remdups_append2:  | 
| 
 
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
 
traytel 
parents: 
70911 
diff
changeset
 | 
3809  | 
"remdups (xs @ remdups ys) = remdups (xs @ ys)"  | 
| 
 
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
 
traytel 
parents: 
70911 
diff
changeset
 | 
3810  | 
by(induction xs) auto  | 
| 
 
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
 
traytel 
parents: 
70911 
diff
changeset
 | 
3811  | 
|
| 
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
 | 
3812  | 
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
 | 
3813  | 
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
 | 
3814  | 
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
 | 
3815  | 
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
 | 
3816  | 
qed  | 
| 17906 | 3817  | 
|
| 58807 | 3818  | 
lemma remdups_remdups: "remdups (remdups xs) = remdups xs"  | 
3819  | 
by (induct xs) simp_all  | 
|
| 36275 | 3820  | 
|
| 36851 | 3821  | 
lemma distinct_butlast:  | 
| 
46500
 
0196966d6d2d
removing unnecessary premises in theorems of List theory
 
bulwahn 
parents: 
46448 
diff
changeset
 | 
3822  | 
assumes "distinct xs"  | 
| 36851 | 3823  | 
shows "distinct (butlast xs)"  | 
| 
46500
 
0196966d6d2d
removing unnecessary premises in theorems of List theory
 
bulwahn 
parents: 
46448 
diff
changeset
 | 
3824  | 
proof (cases "xs = []")  | 
| 
 
0196966d6d2d
removing unnecessary premises in theorems of List theory
 
bulwahn 
parents: 
46448 
diff
changeset
 | 
3825  | 
case False  | 
| 60758 | 3826  | 
from \<open>xs \<noteq> []\<close> obtain ys y where "xs = ys @ [y]" by (cases xs rule: rev_cases) auto  | 
3827  | 
with \<open>distinct xs\<close> show ?thesis by simp  | 
|
| 
46500
 
0196966d6d2d
removing unnecessary premises in theorems of List theory
 
bulwahn 
parents: 
46448 
diff
changeset
 | 
3828  | 
qed (auto)  | 
| 36851 | 3829  | 
|
| 39728 | 3830  | 
lemma remdups_map_remdups:  | 
3831  | 
"remdups (map f (remdups xs)) = remdups (map f xs)"  | 
|
| 58807 | 3832  | 
by (induct xs) simp_all  | 
| 39728 | 3833  | 
|
| 
39915
 
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
 
haftmann 
parents: 
39774 
diff
changeset
 | 
3834  | 
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
 | 
3835  | 
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
 | 
3836  | 
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
 | 
3837  | 
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
 | 
3838  | 
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
 | 
3839  | 
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
 | 
3840  | 
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
 | 
3841  | 
with assms have "distinct xs'" by simp  | 
| 60758 | 3842  | 
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
 | 
3843  | 
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
 | 
3844  | 
qed  | 
| 
 
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
 
haftmann 
parents: 
39774 
diff
changeset
 | 
3845  | 
|
| 
 
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
 
haftmann 
parents: 
39774 
diff
changeset
 | 
3846  | 
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
 | 
3847  | 
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
 | 
3848  | 
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
 | 
3849  | 
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
 | 
3850  | 
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
 | 
3851  | 
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
 | 
3852  | 
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
 | 
3853  | 
with assms have "distinct ys'" by simp  | 
| 60758 | 3854  | 
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
 | 
3855  | 
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
 | 
3856  | 
qed  | 
| 
 
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
 
haftmann 
parents: 
39774 
diff
changeset
 | 
3857  | 
|
| 47122 | 3858  | 
lemma set_take_disj_set_drop_if_distinct:  | 
3859  | 
  "distinct vs \<Longrightarrow> i \<le> j \<Longrightarrow> set (take i vs) \<inter> set (drop j vs) = {}"
 | 
|
3860  | 
by (auto simp: in_set_conv_nth distinct_conv_nth)  | 
|
3861  | 
||
| 
44635
 
3d046864ebe6
added two lemmas about "distinct" to help Sledgehammer
 
blanchet 
parents: 
44619 
diff
changeset
 | 
3862  | 
(* The next two lemmas help Sledgehammer. *)  | 
| 
 
3d046864ebe6
added two lemmas about "distinct" to help Sledgehammer
 
blanchet 
parents: 
44619 
diff
changeset
 | 
3863  | 
|
| 
 
3d046864ebe6
added two lemmas about "distinct" to help Sledgehammer
 
blanchet 
parents: 
44619 
diff
changeset
 | 
3864  | 
lemma distinct_singleton: "distinct [x]" by simp  | 
| 
 
3d046864ebe6
added two lemmas about "distinct" to help Sledgehammer
 
blanchet 
parents: 
44619 
diff
changeset
 | 
3865  | 
|
| 
 
3d046864ebe6
added two lemmas about "distinct" to help Sledgehammer
 
blanchet 
parents: 
44619 
diff
changeset
 | 
3866  | 
lemma distinct_length_2_or_more:  | 
| 58807 | 3867  | 
"distinct (a # b # xs) \<longleftrightarrow> (a \<noteq> b \<and> distinct (a # xs) \<and> distinct (b # xs))"  | 
| 56085 | 3868  | 
by force  | 
| 
44635
 
3d046864ebe6
added two lemmas about "distinct" to help Sledgehammer
 
blanchet 
parents: 
44619 
diff
changeset
 | 
3869  | 
|
| 58969 | 3870  | 
lemma remdups_adj_altdef: "(remdups_adj xs = ys) \<longleftrightarrow>  | 
| 67091 | 3871  | 
  (\<exists>f::nat => nat. mono f \<and> f ` {0 ..< size xs} = {0 ..< size ys}
 | 
| 58969 | 3872  | 
\<and> (\<forall>i < size xs. xs!i = ys!(f i))  | 
| 61941 | 3873  | 
\<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 | 3874  | 
proof  | 
3875  | 
assume ?L  | 
|
3876  | 
then show "\<exists>f. ?p f xs ys"  | 
|
3877  | 
proof (induct xs arbitrary: ys rule: remdups_adj.induct)  | 
|
3878  | 
case (1 ys)  | 
|
3879  | 
thus ?case by (intro exI[of _ id]) (auto simp: mono_def)  | 
|
3880  | 
next  | 
|
3881  | 
case (2 x ys)  | 
|
3882  | 
thus ?case by (intro exI[of _ id]) (auto simp: mono_def)  | 
|
3883  | 
next  | 
|
3884  | 
case (3 x1 x2 xs ys)  | 
|
3885  | 
let ?xs = "x1 # x2 # xs"  | 
|
3886  | 
let ?cond = "x1 = x2"  | 
|
| 63040 | 3887  | 
define zs where "zs = remdups_adj (x2 # xs)"  | 
| 58969 | 3888  | 
from 3(1-2)[of zs]  | 
3889  | 
obtain f where p: "?p f (x2 # xs) zs" unfolding zs_def by (cases ?cond) auto  | 
|
3890  | 
then have f0: "f 0 = 0"  | 
|
3891  | 
by (intro mono_image_least[where f=f]) blast+  | 
|
3892  | 
    from p have mono: "mono f" and f_xs_zs: "f ` {0..<length (x2 # xs)} = {0..<length zs}" by auto
 | 
|
3893  | 
have ys: "ys = (if x1 = x2 then zs else x1 # zs)"  | 
|
3894  | 
unfolding 3(3)[symmetric] zs_def by auto  | 
|
3895  | 
have zs0: "zs ! 0 = x2" unfolding zs_def by (induct xs) auto  | 
|
3896  | 
have zsne: "zs \<noteq> []" unfolding zs_def by (induct xs) auto  | 
|
3897  | 
let ?Succ = "if ?cond then id else Suc"  | 
|
3898  | 
let ?x1 = "if ?cond then id else Cons x1"  | 
|
3899  | 
let ?f = "\<lambda> i. if i = 0 then 0 else ?Succ (f (i - 1))"  | 
|
3900  | 
have ys: "ys = ?x1 zs" unfolding ys by (cases ?cond, auto)  | 
|
| 60758 | 3901  | 
have mono: "mono ?f" using \<open>mono f\<close> unfolding mono_def by auto  | 
| 58969 | 3902  | 
show ?case unfolding ys  | 
3903  | 
proof (intro exI[of _ ?f] conjI allI impI)  | 
|
3904  | 
show "mono ?f" by fact  | 
|
3905  | 
next  | 
|
3906  | 
fix i assume i: "i < length ?xs"  | 
|
3907  | 
with p show "?xs ! i = ?x1 zs ! (?f i)" using zs0 by auto  | 
|
3908  | 
next  | 
|
3909  | 
fix i assume i: "i + 1 < length ?xs"  | 
|
3910  | 
with p show "(?xs ! i = ?xs ! (i + 1)) = (?f i = ?f (i + 1))"  | 
|
3911  | 
by (cases i) (auto simp: f0)  | 
|
3912  | 
next  | 
|
3913  | 
      have id: "{0 ..< length (?x1 zs)} = insert 0 (?Succ ` {0 ..< length zs})"
 | 
|
3914  | 
using zsne by (cases ?cond, auto)  | 
|
3915  | 
      { fix i  assume "i < Suc (length xs)"
 | 
|
| 67399 | 3916  | 
        hence "Suc i \<in> {0..<Suc (Suc (length xs))} \<inter> Collect ((<) 0)" by auto
 | 
| 58969 | 3917  | 
from imageI[OF this, of "\<lambda>i. ?Succ (f (i - Suc 0))"]  | 
| 67399 | 3918  | 
        have "?Succ (f i) \<in> (\<lambda>i. ?Succ (f (i - Suc 0))) ` ({0..<Suc (Suc (length xs))} \<inter> Collect ((<) 0))" by auto
 | 
| 58969 | 3919  | 
}  | 
3920  | 
      then show "?f ` {0 ..< length ?xs} = {0 ..< length (?x1  zs)}"
 | 
|
3921  | 
unfolding id f_xs_zs[symmetric] by auto  | 
|
3922  | 
qed  | 
|
3923  | 
qed  | 
|
3924  | 
next  | 
|
3925  | 
assume "\<exists> f. ?p f xs ys"  | 
|
3926  | 
then show ?L  | 
|
3927  | 
proof (induct xs arbitrary: ys rule: remdups_adj.induct)  | 
|
3928  | 
case 1 then show ?case by auto  | 
|
3929  | 
next  | 
|
3930  | 
    case (2 x) then obtain f where f_img: "f ` {0 ..< size [x]} = {0 ..< size ys}"
 | 
|
3931  | 
and f_nth: "\<And>i. i < size [x] \<Longrightarrow> [x]!i = ys!(f i)"  | 
|
3932  | 
by blast  | 
|
3933  | 
||
3934  | 
    have "length ys = card (f ` {0 ..< size [x]})"
 | 
|
3935  | 
using f_img by auto  | 
|
| 63540 | 3936  | 
then have *: "length ys = 1" by auto  | 
| 58969 | 3937  | 
then have "f 0 = 0" using f_img by auto  | 
| 63540 | 3938  | 
with * show ?case using f_nth by (cases ys) auto  | 
| 58969 | 3939  | 
next  | 
3940  | 
case (3 x1 x2 xs)  | 
|
3941  | 
from "3.prems" obtain f where f_mono: "mono f"  | 
|
3942  | 
      and f_img: "f ` {0..<length (x1 # x2 # xs)} = {0..<length ys}"
 | 
|
3943  | 
and f_nth:  | 
|
3944  | 
"\<And>i. i < length (x1 # x2 # xs) \<Longrightarrow> (x1 # x2 # xs) ! i = ys ! f i"  | 
|
3945  | 
"\<And>i. i + 1 < length (x1 # x2 #xs) \<Longrightarrow>  | 
|
3946  | 
((x1 # x2 # xs) ! i = (x1 # x2 # xs) ! (i + 1)) = (f i = f (i + 1))"  | 
|
3947  | 
by blast  | 
|
3948  | 
||
3949  | 
show ?case  | 
|
3950  | 
proof cases  | 
|
3951  | 
assume "x1 = x2"  | 
|
3952  | 
||
| 67091 | 3953  | 
let ?f' = "f \<circ> Suc"  | 
| 58969 | 3954  | 
|
3955  | 
have "remdups_adj (x1 # xs) = ys"  | 
|
3956  | 
proof (intro "3.hyps" exI conjI impI allI)  | 
|
3957  | 
show "mono ?f'"  | 
|
3958  | 
using f_mono by (simp add: mono_iff_le_Suc)  | 
|
3959  | 
next  | 
|
3960  | 
        have "?f' ` {0 ..< length (x1 # xs)} = f ` {Suc 0 ..< length (x1 # x2 # xs)}"
 | 
|
| 71585 | 3961  | 
using less_Suc_eq_0_disj by auto  | 
| 58969 | 3962  | 
        also have "\<dots> = f ` {0 ..< length (x1 # x2 # xs)}"
 | 
3963  | 
proof -  | 
|
3964  | 
have "f 0 = f (Suc 0)" using \<open>x1 = x2\<close> f_nth[of 0] by simp  | 
|
| 69850 | 3965  | 
then show ?thesis  | 
| 71585 | 3966  | 
using less_Suc_eq_0_disj by auto  | 
| 58969 | 3967  | 
qed  | 
3968  | 
        also have "\<dots> = {0 ..< length ys}" by fact
 | 
|
3969  | 
        finally show  "?f' ` {0 ..< length (x1 # xs)} = {0 ..< length ys}" .
 | 
|
3970  | 
qed (insert f_nth[of "Suc i" for i], auto simp: \<open>x1 = x2\<close>)  | 
|
3971  | 
then show ?thesis using \<open>x1 = x2\<close> by simp  | 
|
3972  | 
next  | 
|
3973  | 
assume "x1 \<noteq> x2"  | 
|
3974  | 
||
| 71585 | 3975  | 
have two: "Suc (Suc 0) \<le> length ys"  | 
| 58969 | 3976  | 
proof -  | 
3977  | 
        have "2 = card {f 0, f 1}" using \<open>x1 \<noteq> x2\<close> f_nth[of 0] by auto
 | 
|
3978  | 
        also have "\<dots> \<le> card (f ` {0..< length (x1 # x2 # xs)})"
 | 
|
3979  | 
by (rule card_mono) auto  | 
|
3980  | 
finally show ?thesis using f_img by simp  | 
|
3981  | 
qed  | 
|
3982  | 
||
3983  | 
have "f 0 = 0" using f_mono f_img by (rule mono_image_least) simp  | 
|
3984  | 
||
3985  | 
have "f (Suc 0) = Suc 0"  | 
|
3986  | 
proof (rule ccontr)  | 
|
3987  | 
assume "f (Suc 0) \<noteq> Suc 0"  | 
|
3988  | 
then have "Suc 0 < f (Suc 0)" using f_nth[of 0] \<open>x1 \<noteq> x2\<close> \<open>f 0 = 0\<close> by auto  | 
|
3989  | 
then have "\<And>i. Suc 0 < f (Suc i)"  | 
|
3990  | 
using f_mono  | 
|
3991  | 
by (meson Suc_le_mono le0 less_le_trans monoD)  | 
|
| 69850 | 3992  | 
then have "Suc 0 \<noteq> f i" for i using \<open>f 0 = 0\<close>  | 
3993  | 
by (cases i) fastforce+  | 
|
| 58969 | 3994  | 
        then have "Suc 0 \<notin> f ` {0 ..< length (x1 # x2 # xs)}" by auto
 | 
| 71585 | 3995  | 
then show False using f_img two by auto  | 
| 58969 | 3996  | 
qed  | 
3997  | 
obtain ys' where "ys = x1 # x2 # ys'"  | 
|
| 71585 | 3998  | 
using two f_nth[of 0] f_nth[of 1]  | 
3999  | 
by (auto simp: Suc_le_length_iff \<open>f 0 = 0\<close> \<open>f (Suc 0) = Suc 0\<close>)  | 
|
4000  | 
||
4001  | 
have Suc0_le_f_Suc: "Suc 0 \<le> f (Suc i)" for i  | 
|
4002  | 
by (metis Suc_le_mono \<open>f (Suc 0) = Suc 0\<close> f_mono le0 mono_def)  | 
|
| 58969 | 4003  | 
|
| 63040 | 4004  | 
define f' where "f' x = f (Suc x) - 1" for x  | 
| 71585 | 4005  | 
have f_Suc: "f (Suc i) = Suc (f' i)" for i  | 
| 58969 | 4006  | 
using Suc0_le_f_Suc[of i] by (auto simp: f'_def)  | 
4007  | 
||
4008  | 
have "remdups_adj (x2 # xs) = (x2 # ys')"  | 
|
4009  | 
proof (intro "3.hyps" exI conjI impI allI)  | 
|
4010  | 
show "mono f'"  | 
|
4011  | 
using Suc0_le_f_Suc f_mono by (auto simp: f'_def mono_iff_le_Suc le_diff_iff)  | 
|
4012  | 
next  | 
|
4013  | 
        have "f' ` {0 ..< length (x2 # xs)} = (\<lambda>x. f x - 1) ` {0 ..< length (x1 # x2 #xs)}"
 | 
|
| 68719 | 4014  | 
by (auto simp: f'_def \<open>f 0 = 0\<close> \<open>f (Suc 0) = Suc 0\<close> image_def Bex_def less_Suc_eq_0_disj)  | 
| 58969 | 4015  | 
        also have "\<dots> = (\<lambda>x. x - 1) ` f ` {0 ..< length (x1 # x2 #xs)}"
 | 
4016  | 
by (auto simp: image_comp)  | 
|
4017  | 
        also have "\<dots> = (\<lambda>x. x - 1) ` {0 ..< length ys}"
 | 
|
4018  | 
by (simp only: f_img)  | 
|
4019  | 
        also have "\<dots> = {0 ..< length (x2 # ys')}"
 | 
|
4020  | 
using \<open>ys = _\<close> by (fastforce intro: rev_image_eqI)  | 
|
4021  | 
        finally show  "f' ` {0 ..< length (x2 # xs)} = {0 ..< length (x2 # ys')}" .
 | 
|
4022  | 
qed (insert f_nth[of "Suc i" for i] \<open>x1 \<noteq> x2\<close>, auto simp add: f_Suc \<open>ys = _\<close>)  | 
|
4023  | 
then show ?case using \<open>ys = _\<close> \<open>x1 \<noteq> x2\<close> by simp  | 
|
4024  | 
qed  | 
|
4025  | 
qed  | 
|
4026  | 
qed  | 
|
4027  | 
||
| 58041 | 4028  | 
lemma hd_remdups_adj[simp]: "hd (remdups_adj xs) = hd xs"  | 
| 71585 | 4029  | 
by (induction xs rule: remdups_adj.induct) simp_all  | 
| 58041 | 4030  | 
|
| 
53721
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
4031  | 
lemma remdups_adj_Cons: "remdups_adj (x # xs) =  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
4032  | 
(case remdups_adj xs of [] \<Rightarrow> [x] | y # xs \<Rightarrow> if x = y then y # xs else x # y # xs)"  | 
| 71585 | 4033  | 
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
 | 
4034  | 
|
| 64963 | 4035  | 
lemma remdups_adj_append_two:  | 
| 
53721
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
4036  | 
"remdups_adj (xs @ [x,y]) = remdups_adj (xs @ [x]) @ (if x = y then [] else [y])"  | 
| 71585 | 4037  | 
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
 | 
4038  | 
|
| 58041 | 4039  | 
lemma remdups_adj_adjacent:  | 
4040  | 
"Suc i < length (remdups_adj xs) \<Longrightarrow> remdups_adj xs ! i \<noteq> remdups_adj xs ! Suc i"  | 
|
4041  | 
proof (induction xs arbitrary: i rule: remdups_adj.induct)  | 
|
4042  | 
case (3 x y xs i)  | 
|
4043  | 
thus ?case by (cases i, cases "x = y") (simp, auto simp: hd_conv_nth[symmetric])  | 
|
4044  | 
qed simp_all  | 
|
4045  | 
||
| 
53721
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
4046  | 
lemma remdups_adj_rev[simp]: "remdups_adj (rev xs) = rev (remdups_adj xs)"  | 
| 58807 | 4047  | 
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
 | 
4048  | 
|
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
4049  | 
lemma remdups_adj_length[simp]: "length (remdups_adj xs) \<le> length xs"  | 
| 58807 | 4050  | 
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
 | 
4051  | 
|
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
4052  | 
lemma remdups_adj_length_ge1[simp]: "xs \<noteq> [] \<Longrightarrow> length (remdups_adj xs) \<ge> Suc 0"  | 
| 58807 | 4053  | 
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
 | 
4054  | 
|
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
4055  | 
lemma remdups_adj_Nil_iff[simp]: "remdups_adj xs = [] \<longleftrightarrow> xs = []"  | 
| 58807 | 4056  | 
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
 | 
4057  | 
|
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
4058  | 
lemma remdups_adj_set[simp]: "set (remdups_adj xs) = set xs"  | 
| 58807 | 4059  | 
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
 | 
4060  | 
|
| 71778 | 4061  | 
lemma last_remdups_adj [simp]: "last (remdups_adj xs) = last xs"  | 
4062  | 
by (induction xs rule: remdups_adj.induct) auto  | 
|
4063  | 
||
| 
53721
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
4064  | 
lemma remdups_adj_Cons_alt[simp]: "x # tl (remdups_adj (x # xs)) = remdups_adj (x # xs)"  | 
| 58807 | 4065  | 
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
 | 
4066  | 
|
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
4067  | 
lemma remdups_adj_distinct: "distinct xs \<Longrightarrow> remdups_adj xs = xs"  | 
| 58807 | 4068  | 
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
 | 
4069  | 
|
| 64963 | 4070  | 
lemma remdups_adj_append:  | 
| 
53721
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
4071  | 
"remdups_adj (xs\<^sub>1 @ x # xs\<^sub>2) = remdups_adj (xs\<^sub>1 @ [x]) @ tl (remdups_adj (x # xs\<^sub>2))"  | 
| 58807 | 4072  | 
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
 | 
4073  | 
|
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
4074  | 
lemma remdups_adj_singleton:  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
4075  | 
"remdups_adj xs = [x] \<Longrightarrow> xs = replicate (length xs) x"  | 
| 62390 | 4076  | 
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
 | 
4077  | 
|
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
4078  | 
lemma remdups_adj_map_injective:  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
4079  | 
assumes "inj f"  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
4080  | 
shows "remdups_adj (map f xs) = map f (remdups_adj xs)"  | 
| 58807 | 4081  | 
by (induct xs rule: remdups_adj.induct) (auto simp add: injD[OF assms])  | 
4082  | 
||
| 62065 | 4083  | 
lemma remdups_adj_replicate:  | 
4084  | 
"remdups_adj (replicate n x) = (if n = 0 then [] else [x])"  | 
|
4085  | 
by (induction n) (auto simp: remdups_adj_Cons)  | 
|
4086  | 
||
| 58807 | 4087  | 
lemma remdups_upt [simp]: "remdups [m..<n] = [m..<n]"  | 
| 58437 | 4088  | 
proof (cases "m \<le> n")  | 
4089  | 
case False then show ?thesis by simp  | 
|
4090  | 
next  | 
|
4091  | 
case True then obtain q where "n = m + q"  | 
|
4092  | 
by (auto simp add: le_iff_add)  | 
|
4093  | 
moreover have "remdups [m..<m + q] = [m..<m + q]"  | 
|
4094  | 
by (induct q) simp_all  | 
|
4095  | 
ultimately show ?thesis by simp  | 
|
4096  | 
qed  | 
|
4097  | 
||
| 71779 | 4098  | 
lemma successively_remdups_adjI:  | 
4099  | 
"successively P xs \<Longrightarrow> successively P (remdups_adj xs)"  | 
|
4100  | 
by (induction xs rule: remdups_adj.induct) (auto simp: successively_Cons)  | 
|
4101  | 
||
4102  | 
lemma successively_remdups_adj_iff:  | 
|
4103  | 
"(\<And>x. x \<in> set xs \<Longrightarrow> P x x) \<Longrightarrow>  | 
|
4104  | 
successively P (remdups_adj xs) \<longleftrightarrow> successively P xs"  | 
|
4105  | 
by (induction xs rule: remdups_adj.induct)(auto simp: successively_Cons)  | 
|
4106  | 
||
| 71789 | 4107  | 
lemma remdups_adj_Cons':  | 
4108  | 
"remdups_adj (x # xs) = x # remdups_adj (dropWhile (\<lambda>y. y = x) xs)"  | 
|
4109  | 
by (induction xs) auto  | 
|
4110  | 
||
4111  | 
lemma remdups_adj_singleton_iff:  | 
|
4112  | 
"length (remdups_adj xs) = Suc 0 \<longleftrightarrow> xs \<noteq> [] \<and> xs = replicate (length xs) (hd xs)"  | 
|
4113  | 
proof safe  | 
|
4114  | 
assume *: "xs = replicate (length xs) (hd xs)" and [simp]: "xs \<noteq> []"  | 
|
4115  | 
show "length (remdups_adj xs) = Suc 0"  | 
|
4116  | 
by (subst *) (auto simp: remdups_adj_replicate)  | 
|
4117  | 
next  | 
|
4118  | 
assume "length (remdups_adj xs) = Suc 0"  | 
|
4119  | 
thus "xs = replicate (length xs) (hd xs)"  | 
|
4120  | 
by (induction xs rule: remdups_adj.induct) (auto split: if_splits)  | 
|
4121  | 
qed auto  | 
|
4122  | 
||
4123  | 
lemma tl_remdups_adj:  | 
|
4124  | 
"ys \<noteq> [] \<Longrightarrow> tl (remdups_adj ys) = remdups_adj (dropWhile (\<lambda>x. x = hd ys) (tl ys))"  | 
|
4125  | 
by (cases ys) (simp_all add: remdups_adj_Cons')  | 
|
4126  | 
||
4127  | 
lemma remdups_adj_append_dropWhile:  | 
|
4128  | 
"remdups_adj (xs @ y # ys) = remdups_adj (xs @ [y]) @ remdups_adj (dropWhile (\<lambda>x. x = y) ys)"  | 
|
4129  | 
by (subst remdups_adj_append) (simp add: tl_remdups_adj)  | 
|
4130  | 
||
4131  | 
lemma remdups_adj_append':  | 
|
4132  | 
assumes "xs = [] \<or> ys = [] \<or> last xs \<noteq> hd ys"  | 
|
4133  | 
shows "remdups_adj (xs @ ys) = remdups_adj xs @ remdups_adj ys"  | 
|
4134  | 
proof -  | 
|
4135  | 
have ?thesis if [simp]: "xs \<noteq> []" "ys \<noteq> []" and "last xs \<noteq> hd ys"  | 
|
4136  | 
proof -  | 
|
4137  | 
obtain x xs' where xs: "xs = xs' @ [x]"  | 
|
4138  | 
by (cases xs rule: rev_cases) auto  | 
|
4139  | 
have "remdups_adj (xs' @ x # ys) = remdups_adj (xs' @ [x]) @ remdups_adj ys"  | 
|
4140  | 
using \<open>last xs \<noteq> hd ys\<close> unfolding xs  | 
|
4141  | 
by (metis (full_types) dropWhile_eq_self_iff last_snoc remdups_adj_append_dropWhile)  | 
|
4142  | 
thus ?thesis by (simp add: xs)  | 
|
4143  | 
qed  | 
|
4144  | 
thus ?thesis using assms  | 
|
4145  | 
by (cases "xs = []"; cases "ys = []") auto  | 
|
4146  | 
qed  | 
|
4147  | 
||
4148  | 
lemma remdups_adj_append'': "xs \<noteq> []  | 
|
4149  | 
\<Longrightarrow> remdups_adj (xs @ ys) = remdups_adj xs @ remdups_adj (dropWhile (\<lambda>y. y = last xs) ys)"  | 
|
4150  | 
by (induction xs rule: remdups_adj.induct) (auto simp: remdups_adj_Cons')  | 
|
4151  | 
||
| 71779 | 4152  | 
|
4153  | 
subsection \<open>@{const distinct_adj}\<close>
 | 
|
4154  | 
||
4155  | 
lemma distinct_adj_Nil [simp]: "distinct_adj []"  | 
|
4156  | 
and distinct_adj_singleton [simp]: "distinct_adj [x]"  | 
|
4157  | 
and distinct_adj_Cons_Cons [simp]: "distinct_adj (x # y # xs) \<longleftrightarrow> x \<noteq> y \<and> distinct_adj (y # xs)"  | 
|
4158  | 
by (auto simp: distinct_adj_def)  | 
|
4159  | 
||
4160  | 
lemma distinct_adj_Cons: "distinct_adj (x # xs) \<longleftrightarrow> xs = [] \<or> x \<noteq> hd xs \<and> distinct_adj xs"  | 
|
4161  | 
by (cases xs) auto  | 
|
4162  | 
||
4163  | 
lemma distinct_adj_ConsD: "distinct_adj (x # xs) \<Longrightarrow> distinct_adj xs"  | 
|
4164  | 
by (cases xs) auto  | 
|
4165  | 
||
4166  | 
lemma distinct_adj_remdups_adj[simp]: "distinct_adj (remdups_adj xs)"  | 
|
4167  | 
by (induction xs rule: remdups_adj.induct) (auto simp: distinct_adj_Cons)  | 
|
4168  | 
||
4169  | 
lemma distinct_adj_altdef: "distinct_adj xs \<longleftrightarrow> remdups_adj xs = xs"  | 
|
4170  | 
proof  | 
|
4171  | 
assume "remdups_adj xs = xs"  | 
|
4172  | 
with distinct_adj_remdups_adj[of xs] show "distinct_adj xs"  | 
|
4173  | 
by simp  | 
|
4174  | 
next  | 
|
4175  | 
assume "distinct_adj xs"  | 
|
4176  | 
thus "remdups_adj xs = xs"  | 
|
4177  | 
by (induction xs rule: induct_list012) auto  | 
|
4178  | 
qed  | 
|
4179  | 
||
4180  | 
lemma distinct_adj_rev [simp]: "distinct_adj (rev xs) \<longleftrightarrow> distinct_adj xs"  | 
|
4181  | 
by (simp add: distinct_adj_def eq_commute)  | 
|
4182  | 
||
4183  | 
lemma distinct_adj_append_iff:  | 
|
4184  | 
"distinct_adj (xs @ ys) \<longleftrightarrow>  | 
|
4185  | 
distinct_adj xs \<and> distinct_adj ys \<and> (xs = [] \<or> ys = [] \<or> last xs \<noteq> hd ys)"  | 
|
4186  | 
by (auto simp: distinct_adj_def successively_append_iff)  | 
|
4187  | 
||
4188  | 
lemma distinct_adj_appendD1 [dest]: "distinct_adj (xs @ ys) \<Longrightarrow> distinct_adj xs"  | 
|
4189  | 
and distinct_adj_appendD2 [dest]: "distinct_adj (xs @ ys) \<Longrightarrow> distinct_adj ys"  | 
|
4190  | 
by (auto simp: distinct_adj_append_iff)  | 
|
4191  | 
||
4192  | 
lemma distinct_adj_mapI: "distinct_adj xs \<Longrightarrow> inj_on f (set xs) \<Longrightarrow> distinct_adj (map f xs)"  | 
|
4193  | 
unfolding distinct_adj_def successively_map  | 
|
4194  | 
by (erule successively_mono) (auto simp: inj_on_def)  | 
|
4195  | 
||
4196  | 
lemma distinct_adj_mapD: "distinct_adj (map f xs) \<Longrightarrow> distinct_adj xs"  | 
|
4197  | 
unfolding distinct_adj_def successively_map by (erule successively_mono) auto  | 
|
4198  | 
||
4199  | 
lemma distinct_adj_map_iff: "inj_on f (set xs) \<Longrightarrow> distinct_adj (map f xs) \<longleftrightarrow> distinct_adj xs"  | 
|
4200  | 
using distinct_adj_mapD distinct_adj_mapI by blast  | 
|
4201  | 
||
| 
49948
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4202  | 
|
| 69593 | 4203  | 
subsubsection \<open>\<^const>\<open>insert\<close>\<close>  | 
| 
34978
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
4204  | 
|
| 
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
4205  | 
lemma in_set_insert [simp]:  | 
| 
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
4206  | 
"x \<in> set xs \<Longrightarrow> List.insert x xs = xs"  | 
| 58807 | 4207  | 
by (simp add: List.insert_def)  | 
| 
34978
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
4208  | 
|
| 
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
4209  | 
lemma not_in_set_insert [simp]:  | 
| 
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
4210  | 
"x \<notin> set xs \<Longrightarrow> List.insert x xs = x # xs"  | 
| 58807 | 4211  | 
by (simp add: List.insert_def)  | 
4212  | 
||
4213  | 
lemma insert_Nil [simp]: "List.insert x [] = [x]"  | 
|
4214  | 
by simp  | 
|
4215  | 
||
4216  | 
lemma set_insert [simp]: "set (List.insert x xs) = insert x (set xs)"  | 
|
4217  | 
by (auto simp add: List.insert_def)  | 
|
4218  | 
||
4219  | 
lemma distinct_insert [simp]: "distinct (List.insert x xs) = distinct xs"  | 
|
4220  | 
by (simp add: List.insert_def)  | 
|
| 35295 | 4221  | 
|
| 36275 | 4222  | 
lemma insert_remdups:  | 
4223  | 
"List.insert x (remdups xs) = remdups (List.insert x xs)"  | 
|
| 58807 | 4224  | 
by (simp add: List.insert_def)  | 
| 36275 | 4225  | 
|
| 
34978
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
4226  | 
|
| 69593 | 4227  | 
subsubsection \<open>\<^const>\<open>List.union\<close>\<close>  | 
| 60758 | 4228  | 
|
4229  | 
text\<open>This is all one should need to know about union:\<close>  | 
|
| 57198 | 4230  | 
lemma set_union[simp]: "set (List.union xs ys) = set xs \<union> set ys"  | 
4231  | 
unfolding List.union_def  | 
|
4232  | 
by(induct xs arbitrary: ys) simp_all  | 
|
4233  | 
||
4234  | 
lemma distinct_union[simp]: "distinct(List.union xs ys) = distinct ys"  | 
|
4235  | 
unfolding List.union_def  | 
|
4236  | 
by(induct xs arbitrary: ys) simp_all  | 
|
4237  | 
||
4238  | 
||
| 69593 | 4239  | 
subsubsection \<open>\<^const>\<open>List.find\<close>\<close>  | 
| 47122 | 4240  | 
|
4241  | 
lemma find_None_iff: "List.find P xs = None \<longleftrightarrow> \<not> (\<exists>x. x \<in> set xs \<and> P x)"  | 
|
4242  | 
proof (induction xs)  | 
|
4243  | 
case Nil thus ?case by simp  | 
|
4244  | 
next  | 
|
4245  | 
case (Cons x xs) thus ?case by (fastforce split: if_splits)  | 
|
4246  | 
qed  | 
|
4247  | 
||
4248  | 
lemma find_Some_iff:  | 
|
4249  | 
"List.find P xs = Some x \<longleftrightarrow>  | 
|
4250  | 
(\<exists>i<length xs. P (xs!i) \<and> x = xs!i \<and> (\<forall>j<i. \<not> P (xs!j)))"  | 
|
4251  | 
proof (induction xs)  | 
|
4252  | 
case Nil thus ?case by simp  | 
|
4253  | 
next  | 
|
4254  | 
case (Cons x xs) thus ?case  | 
|
| 56085 | 4255  | 
apply(auto simp: nth_Cons' split: if_splits)  | 
4256  | 
using diff_Suc_1[unfolded One_nat_def] less_Suc_eq_0_disj by fastforce  | 
|
| 47122 | 4257  | 
qed  | 
4258  | 
||
4259  | 
lemma find_cong[fundef_cong]:  | 
|
| 64963 | 4260  | 
assumes "xs = ys" and "\<And>x. x \<in> set ys \<Longrightarrow> P x = Q x"  | 
| 47122 | 4261  | 
shows "List.find P xs = List.find Q ys"  | 
4262  | 
proof (cases "List.find P xs")  | 
|
4263  | 
case None thus ?thesis by (metis find_None_iff assms)  | 
|
4264  | 
next  | 
|
4265  | 
case (Some x)  | 
|
4266  | 
hence "List.find Q ys = Some x" using assms  | 
|
4267  | 
by (auto simp add: find_Some_iff)  | 
|
4268  | 
thus ?thesis using Some by auto  | 
|
4269  | 
qed  | 
|
4270  | 
||
| 52379 | 4271  | 
lemma find_dropWhile:  | 
4272  | 
"List.find P xs = (case dropWhile (Not \<circ> P) xs  | 
|
4273  | 
of [] \<Rightarrow> None  | 
|
4274  | 
| x # _ \<Rightarrow> Some x)"  | 
|
| 58807 | 4275  | 
by (induct xs) simp_all  | 
| 52379 | 4276  | 
|
| 47122 | 4277  | 
|
| 69593 | 4278  | 
subsubsection \<open>\<^const>\<open>count_list\<close>\<close>  | 
| 60541 | 4279  | 
|
4280  | 
lemma count_notin[simp]: "x \<notin> set xs \<Longrightarrow> count_list xs x = 0"  | 
|
| 59728 | 4281  | 
by (induction xs) auto  | 
4282  | 
||
| 60541 | 4283  | 
lemma count_le_length: "count_list xs x \<le> length xs"  | 
| 59728 | 4284  | 
by (induction xs) auto  | 
4285  | 
||
| 64267 | 4286  | 
lemma sum_count_set:  | 
4287  | 
"set xs \<subseteq> X \<Longrightarrow> finite X \<Longrightarrow> sum (count_list xs) X = length xs"  | 
|
| 68719 | 4288  | 
proof (induction xs arbitrary: X)  | 
4289  | 
case (Cons x xs)  | 
|
4290  | 
then show ?case  | 
|
| 71585 | 4291  | 
using sum.remove [of X x "count_list xs"]  | 
4292  | 
by (auto simp: sum.If_cases simp flip: diff_eq)  | 
|
| 68719 | 4293  | 
qed simp  | 
| 59728 | 4294  | 
|
4295  | 
||
| 69593 | 4296  | 
subsubsection \<open>\<^const>\<open>List.extract\<close>\<close>  | 
| 55807 | 4297  | 
|
4298  | 
lemma extract_None_iff: "List.extract P xs = None \<longleftrightarrow> \<not> (\<exists> x\<in>set xs. P x)"  | 
|
4299  | 
by(auto simp: extract_def dropWhile_eq_Cons_conv split: list.splits)  | 
|
4300  | 
(metis in_set_conv_decomp)  | 
|
4301  | 
||
4302  | 
lemma extract_SomeE:  | 
|
4303  | 
"List.extract P xs = Some (ys, y, zs) \<Longrightarrow>  | 
|
| 64963 | 4304  | 
xs = ys @ y # zs \<and> P y \<and> \<not> (\<exists> y \<in> set ys. P y)"  | 
| 55807 | 4305  | 
by(auto simp: extract_def dropWhile_eq_Cons_conv split: list.splits)  | 
4306  | 
||
4307  | 
lemma extract_Some_iff:  | 
|
4308  | 
"List.extract P xs = Some (ys, y, zs) \<longleftrightarrow>  | 
|
| 64963 | 4309  | 
xs = ys @ y # zs \<and> P y \<and> \<not> (\<exists> y \<in> set ys. P y)"  | 
| 55807 | 4310  | 
by(auto simp: extract_def dropWhile_eq_Cons_conv dest: set_takeWhileD split: list.splits)  | 
4311  | 
||
4312  | 
lemma extract_Nil_code[code]: "List.extract P [] = None"  | 
|
4313  | 
by(simp add: extract_def)  | 
|
4314  | 
||
4315  | 
lemma extract_Cons_code[code]:  | 
|
4316  | 
"List.extract P (x # xs) = (if P x then Some ([], x, xs) else  | 
|
4317  | 
(case List.extract P xs of  | 
|
4318  | 
None \<Rightarrow> None |  | 
|
4319  | 
Some (ys, y, zs) \<Rightarrow> Some (x#ys, y, zs)))"  | 
|
| 56085 | 4320  | 
by(auto simp add: extract_def comp_def split: list.splits)  | 
4321  | 
(metis dropWhile_eq_Nil_conv list.distinct(1))  | 
|
| 55807 | 4322  | 
|
4323  | 
||
| 69593 | 4324  | 
subsubsection \<open>\<^const>\<open>remove1\<close>\<close>  | 
| 
15110
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
4325  | 
|
| 18049 | 4326  | 
lemma remove1_append:  | 
4327  | 
"remove1 x (xs @ ys) =  | 
|
4328  | 
(if x \<in> set xs then remove1 x xs @ ys else xs @ remove1 x ys)"  | 
|
4329  | 
by (induct xs) auto  | 
|
4330  | 
||
| 36903 | 4331  | 
lemma remove1_commute: "remove1 x (remove1 y zs) = remove1 y (remove1 x zs)"  | 
4332  | 
by (induct zs) auto  | 
|
4333  | 
||
| 23479 | 4334  | 
lemma in_set_remove1[simp]:  | 
| 67613 | 4335  | 
"a \<noteq> b \<Longrightarrow> a \<in> set(remove1 b xs) = (a \<in> set xs)"  | 
| 68719 | 4336  | 
by (induct xs) auto  | 
| 23479 | 4337  | 
|
| 67613 | 4338  | 
lemma set_remove1_subset: "set(remove1 x xs) \<subseteq> set xs"  | 
| 68719 | 4339  | 
by (induct xs) auto  | 
| 
15110
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
4340  | 
|
| 67613 | 4341  | 
lemma set_remove1_eq [simp]: "distinct xs \<Longrightarrow> set(remove1 x xs) = set xs - {x}"
 | 
| 68719 | 4342  | 
by (induct xs) auto  | 
| 
15110
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
4343  | 
|
| 23479 | 4344  | 
lemma length_remove1:  | 
| 67613 | 4345  | 
"length(remove1 x xs) = (if x \<in> set xs then length xs - 1 else length xs)"  | 
| 58807 | 4346  | 
by (induct xs) (auto dest!:length_pos_if_in_set)  | 
| 23479 | 4347  | 
|
| 18049 | 4348  | 
lemma remove1_filter_not[simp]:  | 
4349  | 
"\<not> P x \<Longrightarrow> remove1 x (filter P xs) = filter P xs"  | 
|
4350  | 
by(induct xs) auto  | 
|
4351  | 
||
| 39073 | 4352  | 
lemma filter_remove1:  | 
4353  | 
"filter Q (remove1 x xs) = remove1 x (filter Q xs)"  | 
|
4354  | 
by (induct xs) auto  | 
|
4355  | 
||
| 67613 | 4356  | 
lemma notin_set_remove1[simp]: "x \<notin> set xs \<Longrightarrow> x \<notin> set(remove1 y xs)"  | 
| 58807 | 4357  | 
by(insert set_remove1_subset) fast  | 
| 
15110
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
4358  | 
|
| 67613 | 4359  | 
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
 | 
4360  | 
by (induct xs) simp_all  | 
| 
 
78b5636eabc7
Added a number of new thms and the new function remove1
 
nipkow 
parents: 
15072 
diff
changeset
 | 
4361  | 
|
| 36275 | 4362  | 
lemma remove1_remdups:  | 
4363  | 
"distinct xs \<Longrightarrow> remove1 x (remdups xs) = remdups (remove1 x xs)"  | 
|
| 58807 | 4364  | 
by (induct xs) simp_all  | 
4365  | 
||
4366  | 
lemma remove1_idem: "x \<notin> set xs \<Longrightarrow> remove1 x xs = xs"  | 
|
4367  | 
by (induct xs) simp_all  | 
|
| 37107 | 4368  | 
|
| 73442 | 4369  | 
lemma remove1_split:  | 
| 73443 | 4370  | 
"a \<in> set xs \<Longrightarrow> remove1 a xs = ys \<longleftrightarrow> (\<exists>ls rs. xs = ls @ a # rs \<and> a \<notin> set ls \<and> ys = ls @ rs)"  | 
| 73442 | 4371  | 
by (metis remove1.simps(2) remove1_append split_list_first)  | 
4372  | 
||
| 13114 | 4373  | 
|
| 69593 | 4374  | 
subsubsection \<open>\<^const>\<open>removeAll\<close>\<close>  | 
| 27693 | 4375  | 
|
| 
34978
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
4376  | 
lemma removeAll_filter_not_eq:  | 
| 
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
4377  | 
"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
 | 
4378  | 
proof  | 
| 
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
4379  | 
fix xs  | 
| 
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
4380  | 
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
 | 
4381  | 
by (induct xs) auto  | 
| 
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
4382  | 
qed  | 
| 
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
4383  | 
|
| 27693 | 4384  | 
lemma removeAll_append[simp]:  | 
4385  | 
"removeAll x (xs @ ys) = removeAll x xs @ removeAll x ys"  | 
|
4386  | 
by (induct xs) auto  | 
|
4387  | 
||
4388  | 
lemma set_removeAll[simp]: "set(removeAll x xs) = set xs - {x}"
 | 
|
4389  | 
by (induct xs) auto  | 
|
4390  | 
||
4391  | 
lemma removeAll_id[simp]: "x \<notin> set xs \<Longrightarrow> removeAll x xs = xs"  | 
|
4392  | 
by (induct xs) auto  | 
|
4393  | 
||
| 
46448
 
f1201fac7398
more specification of the quotient package in IsarRef
 
Cezary Kaliszyk <cezarykaliszyk@gmail.com> 
parents: 
46440 
diff
changeset
 | 
4394  | 
(* Needs count:: 'a \<Rightarrow> 'a list \<Rightarrow> nat  | 
| 27693 | 4395  | 
lemma length_removeAll:  | 
4396  | 
"length(removeAll x xs) = length xs - count x xs"  | 
|
4397  | 
*)  | 
|
4398  | 
||
4399  | 
lemma removeAll_filter_not[simp]:  | 
|
4400  | 
"\<not> P x \<Longrightarrow> removeAll x (filter P xs) = filter P xs"  | 
|
4401  | 
by(induct xs) auto  | 
|
4402  | 
||
| 
34978
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
4403  | 
lemma distinct_removeAll:  | 
| 
 
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
 
haftmann 
parents: 
34942 
diff
changeset
 | 
4404  | 
"distinct xs \<Longrightarrow> distinct (removeAll x xs)"  | 
| 58807 | 4405  | 
by (simp add: removeAll_filter_not_eq)  | 
| 27693 | 4406  | 
|
4407  | 
lemma distinct_remove1_removeAll:  | 
|
| 67613 | 4408  | 
"distinct xs \<Longrightarrow> remove1 x xs = removeAll x xs"  | 
| 27693 | 4409  | 
by (induct xs) simp_all  | 
4410  | 
||
4411  | 
lemma map_removeAll_inj_on: "inj_on f (insert x (set xs)) \<Longrightarrow>  | 
|
4412  | 
map f (removeAll x xs) = removeAll (f x) (map f xs)"  | 
|
4413  | 
by (induct xs) (simp_all add:inj_on_def)  | 
|
4414  | 
||
4415  | 
lemma map_removeAll_inj: "inj f \<Longrightarrow>  | 
|
4416  | 
map f (removeAll x xs) = removeAll (f x) (map f xs)"  | 
|
| 56085 | 4417  | 
by (rule map_removeAll_inj_on, erule subset_inj_on, rule subset_UNIV)  | 
| 27693 | 4418  | 
|
| 63365 | 4419  | 
lemma length_removeAll_less_eq [simp]:  | 
4420  | 
"length (removeAll x xs) \<le> length xs"  | 
|
4421  | 
by (simp add: removeAll_filter_not_eq)  | 
|
4422  | 
||
4423  | 
lemma length_removeAll_less [termination_simp]:  | 
|
4424  | 
"x \<in> set xs \<Longrightarrow> length (removeAll x xs) < length xs"  | 
|
4425  | 
by (auto dest: length_filter_less simp add: removeAll_filter_not_eq)  | 
|
4426  | 
||
| 71593 | 4427  | 
lemma distinct_concat_iff: "distinct (concat xs) \<longleftrightarrow>  | 
4428  | 
distinct (removeAll [] xs) \<and>  | 
|
4429  | 
(\<forall>ys. ys \<in> set xs \<longrightarrow> distinct ys) \<and>  | 
|
4430  | 
  (\<forall>ys zs. ys \<in> set xs \<and> zs \<in> set xs \<and> ys \<noteq> zs \<longrightarrow> set ys \<inter> set zs = {})"
 | 
|
4431  | 
apply (induct xs)  | 
|
4432  | 
apply(simp_all, safe, auto)  | 
|
4433  | 
by (metis Int_iff UN_I empty_iff equals0I set_empty)  | 
|
4434  | 
||
| 27693 | 4435  | 
|
| 69593 | 4436  | 
subsubsection \<open>\<^const>\<open>replicate\<close>\<close>  | 
| 13114 | 4437  | 
|
| 13142 | 4438  | 
lemma length_replicate [simp]: "length (replicate n x) = n"  | 
| 13145 | 4439  | 
by (induct n) auto  | 
| 13124 | 4440  | 
|
| 58437 | 4441  | 
lemma replicate_eqI:  | 
4442  | 
assumes "length xs = n" and "\<And>y. y \<in> set xs \<Longrightarrow> y = x"  | 
|
4443  | 
shows "xs = replicate n x"  | 
|
| 67613 | 4444  | 
using assms  | 
4445  | 
proof (induct xs arbitrary: n)  | 
|
| 58437 | 4446  | 
case Nil then show ?case by simp  | 
4447  | 
next  | 
|
4448  | 
case (Cons x xs) then show ?case by (cases n) simp_all  | 
|
4449  | 
qed  | 
|
4450  | 
||
| 
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
 | 
4451  | 
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
 | 
4452  | 
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
 | 
4453  | 
|
| 13142 | 4454  | 
lemma map_replicate [simp]: "map f (replicate n x) = replicate n (f x)"  | 
| 13145 | 4455  | 
by (induct n) auto  | 
| 13114 | 4456  | 
|
| 
31363
 
7493b571b37d
Added theorems about distinct & concat, map & replicate and concat & replicate
 
hoelzl 
parents: 
31264 
diff
changeset
 | 
4457  | 
lemma map_replicate_const:  | 
| 
 
7493b571b37d
Added theorems about distinct & concat, map & replicate and concat & replicate
 
hoelzl 
parents: 
31264 
diff
changeset
 | 
4458  | 
"map (\<lambda> x. k) lst = replicate (length lst) k"  | 
| 66853 | 4459  | 
by (induct lst) auto  | 
| 
31363
 
7493b571b37d
Added theorems about distinct & concat, map & replicate and concat & replicate
 
hoelzl 
parents: 
31264 
diff
changeset
 | 
4460  | 
|
| 13114 | 4461  | 
lemma replicate_app_Cons_same:  | 
| 13145 | 4462  | 
"(replicate n x) @ (x # xs) = x # replicate n x @ xs"  | 
4463  | 
by (induct n) auto  | 
|
| 13114 | 4464  | 
|
| 13142 | 4465  | 
lemma rev_replicate [simp]: "rev (replicate n x) = replicate n x"  | 
| 58807 | 4466  | 
by (induct n) (auto simp: replicate_app_Cons_same)  | 
| 13114 | 4467  | 
|
| 13142 | 4468  | 
lemma replicate_add: "replicate (n + m) x = replicate n x @ replicate m x"  | 
| 13145 | 4469  | 
by (induct n) auto  | 
| 13114 | 4470  | 
|
| 60758 | 4471  | 
text\<open>Courtesy of Matthias Daum:\<close>  | 
| 16397 | 4472  | 
lemma append_replicate_commute:  | 
4473  | 
"replicate n x @ replicate k x = replicate k x @ replicate n x"  | 
|
| 68719 | 4474  | 
by (metis add.commute replicate_add)  | 
| 16397 | 4475  | 
|
| 60758 | 4476  | 
text\<open>Courtesy of Andreas Lochbihler:\<close>  | 
| 31080 | 4477  | 
lemma filter_replicate:  | 
4478  | 
"filter P (replicate n x) = (if P x then replicate n x else [])"  | 
|
4479  | 
by(induct n) auto  | 
|
4480  | 
||
| 71585 | 4481  | 
lemma hd_replicate [simp]: "n \<noteq> 0 \<Longrightarrow> hd (replicate n x) = x"  | 
| 13145 | 4482  | 
by (induct n) auto  | 
| 13114 | 4483  | 
|
| 
46500
 
0196966d6d2d
removing unnecessary premises in theorems of List theory
 
bulwahn 
parents: 
46448 
diff
changeset
 | 
4484  | 
lemma tl_replicate [simp]: "tl (replicate n x) = replicate (n - 1) x"  | 
| 13145 | 4485  | 
by (induct n) auto  | 
| 13114 | 4486  | 
|
| 71585 | 4487  | 
lemma last_replicate [simp]: "n \<noteq> 0 \<Longrightarrow> last (replicate n x) = x"  | 
| 13145 | 4488  | 
by (atomize (full), induct n) auto  | 
| 13114 | 4489  | 
|
| 71585 | 4490  | 
lemma nth_replicate[simp]: "i < n \<Longrightarrow> (replicate n x)!i = x"  | 
| 58807 | 4491  | 
by (induct n arbitrary: i)(auto simp: nth_Cons split: nat.split)  | 
| 13114 | 4492  | 
|
| 60758 | 4493  | 
text\<open>Courtesy of Matthias Daum (2 lemmas):\<close>  | 
| 16397 | 4494  | 
lemma take_replicate[simp]: "take i (replicate k x) = replicate (min i k) x"  | 
| 68719 | 4495  | 
proof (cases "k \<le> i")  | 
4496  | 
case True  | 
|
4497  | 
then show ?thesis  | 
|
4498  | 
by (simp add: min_def)  | 
|
4499  | 
next  | 
|
4500  | 
case False  | 
|
4501  | 
then have "replicate k x = replicate i x @ replicate (k - i) x"  | 
|
4502  | 
by (simp add: replicate_add [symmetric])  | 
|
4503  | 
then show ?thesis  | 
|
4504  | 
by (simp add: min_def)  | 
|
4505  | 
qed  | 
|
| 16397 | 4506  | 
|
| 24526 | 4507  | 
lemma drop_replicate[simp]: "drop i (replicate k x) = replicate (k-i) x"  | 
| 68719 | 4508  | 
proof (induct k arbitrary: i)  | 
4509  | 
case (Suc k)  | 
|
4510  | 
then show ?case  | 
|
4511  | 
by (simp add: drop_Cons')  | 
|
4512  | 
qed simp  | 
|
| 16397 | 4513  | 
|
| 13142 | 4514  | 
lemma set_replicate_Suc: "set (replicate (Suc n) x) = {x}"
 | 
| 13145 | 4515  | 
by (induct n) auto  | 
| 13114 | 4516  | 
|
| 71585 | 4517  | 
lemma set_replicate [simp]: "n \<noteq> 0 \<Longrightarrow> set (replicate n x) = {x}"
 | 
| 13145 | 4518  | 
by (fast dest!: not0_implies_Suc intro!: set_replicate_Suc)  | 
| 13114 | 4519  | 
|
| 13142 | 4520  | 
lemma set_replicate_conv_if: "set (replicate n x) = (if n = 0 then {} else {x})"
 | 
| 13145 | 4521  | 
by auto  | 
| 13114 | 4522  | 
|
| 67091 | 4523  | 
lemma in_set_replicate[simp]: "(x \<in> set (replicate n y)) = (x = y \<and> n \<noteq> 0)"  | 
| 37456 | 4524  | 
by (simp add: set_replicate_conv_if)  | 
4525  | 
||
| 37454 | 4526  | 
lemma Ball_set_replicate[simp]:  | 
| 67091 | 4527  | 
"(\<forall>x \<in> set(replicate n a). P x) = (P a \<or> n=0)"  | 
| 37454 | 4528  | 
by(simp add: set_replicate_conv_if)  | 
4529  | 
||
4530  | 
lemma Bex_set_replicate[simp]:  | 
|
| 67091 | 4531  | 
"(\<exists>x \<in> set(replicate n a). P x) = (P a \<and> n\<noteq>0)"  | 
| 37454 | 4532  | 
by(simp add: set_replicate_conv_if)  | 
| 13114 | 4533  | 
|
| 24796 | 4534  | 
lemma replicate_append_same:  | 
4535  | 
"replicate i x @ [x] = x # replicate i x"  | 
|
4536  | 
by (induct i) simp_all  | 
|
4537  | 
||
4538  | 
lemma map_replicate_trivial:  | 
|
4539  | 
"map (\<lambda>i. x) [0..<i] = replicate i x"  | 
|
| 66853 | 4540  | 
by (induct i) (simp_all add: replicate_append_same)  | 
| 24796 | 4541  | 
|
| 
31363
 
7493b571b37d
Added theorems about distinct & concat, map & replicate and concat & replicate
 
hoelzl 
parents: 
31264 
diff
changeset
 | 
4542  | 
lemma concat_replicate_trivial[simp]:  | 
| 
 
7493b571b37d
Added theorems about distinct & concat, map & replicate and concat & replicate
 
hoelzl 
parents: 
31264 
diff
changeset
 | 
4543  | 
"concat (replicate i []) = []"  | 
| 
 
7493b571b37d
Added theorems about distinct & concat, map & replicate and concat & replicate
 
hoelzl 
parents: 
31264 
diff
changeset
 | 
4544  | 
by (induct i) (auto simp add: map_replicate_const)  | 
| 13114 | 4545  | 
|
| 28642 | 4546  | 
lemma replicate_empty[simp]: "(replicate n x = []) \<longleftrightarrow> n=0"  | 
4547  | 
by (induct n) auto  | 
|
4548  | 
||
4549  | 
lemma empty_replicate[simp]: "([] = replicate n x) \<longleftrightarrow> n=0"  | 
|
4550  | 
by (induct n) auto  | 
|
4551  | 
||
4552  | 
lemma replicate_eq_replicate[simp]:  | 
|
| 67091 | 4553  | 
"(replicate m x = replicate n y) \<longleftrightarrow> (m=n \<and> (m\<noteq>0 \<longrightarrow> x=y))"  | 
| 68719 | 4554  | 
proof (induct m arbitrary: n)  | 
4555  | 
case (Suc m n)  | 
|
4556  | 
then show ?case  | 
|
4557  | 
by (induct n) auto  | 
|
4558  | 
qed simp  | 
|
| 28642 | 4559  | 
|
| 71778 | 4560  | 
lemma takeWhile_replicate[simp]:  | 
4561  | 
"takeWhile P (replicate n x) = (if P x then replicate n x else [])"  | 
|
4562  | 
using takeWhile_eq_Nil_iff by fastforce  | 
|
4563  | 
||
4564  | 
lemma dropWhile_replicate[simp]:  | 
|
4565  | 
"dropWhile P (replicate n x) = (if P x then [] else replicate n x)"  | 
|
4566  | 
using dropWhile_eq_self_iff by fastforce  | 
|
4567  | 
||
| 
39534
 
c798d4f1b682
generalized lemma insort_remove1 to insort_key_remove1
 
haftmann 
parents: 
39302 
diff
changeset
 | 
4568  | 
lemma replicate_length_filter:  | 
| 
 
c798d4f1b682
generalized lemma insort_remove1 to insort_key_remove1
 
haftmann 
parents: 
39302 
diff
changeset
 | 
4569  | 
"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
 | 
4570  | 
by (induct xs) auto  | 
| 
 
c798d4f1b682
generalized lemma insort_remove1 to insort_key_remove1
 
haftmann 
parents: 
39302 
diff
changeset
 | 
4571  | 
|
| 
42714
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4572  | 
lemma comm_append_are_replicate:  | 
| 72732 | 4573  | 
"xs @ ys = ys @ xs \<Longrightarrow> \<exists>m n zs. concat (replicate m zs) = xs \<and> concat (replicate n zs) = ys"  | 
| 
72735
 
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
 
paulson <lp15@cam.ac.uk> 
parents: 
72555 
diff
changeset
 | 
4574  | 
proof (induction "length (xs @ ys) + length xs" arbitrary: xs ys rule: less_induct)  | 
| 
42714
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4575  | 
case less  | 
| 72732 | 4576  | 
consider (1) "length ys < length xs" | (2) "xs = []" | (3) "length xs \<le> length ys \<and> xs \<noteq> []"  | 
| 
72735
 
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
 
paulson <lp15@cam.ac.uk> 
parents: 
72555 
diff
changeset
 | 
4577  | 
by linarith  | 
| 
 
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
 
paulson <lp15@cam.ac.uk> 
parents: 
72555 
diff
changeset
 | 
4578  | 
then show ?case  | 
| 
 
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
 
paulson <lp15@cam.ac.uk> 
parents: 
72555 
diff
changeset
 | 
4579  | 
proof (cases)  | 
| 72732 | 4580  | 
case 1  | 
| 
72735
 
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
 
paulson <lp15@cam.ac.uk> 
parents: 
72555 
diff
changeset
 | 
4581  | 
then show ?thesis  | 
| 
 
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
 
paulson <lp15@cam.ac.uk> 
parents: 
72555 
diff
changeset
 | 
4582  | 
using less.hyps[OF _ less.prems[symmetric]] nat_add_left_cancel_less by auto  | 
| 
 
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
 
paulson <lp15@cam.ac.uk> 
parents: 
72555 
diff
changeset
 | 
4583  | 
next  | 
| 72732 | 4584  | 
case 2  | 
| 
72735
 
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
 
paulson <lp15@cam.ac.uk> 
parents: 
72555 
diff
changeset
 | 
4585  | 
then have "concat (replicate 0 ys) = xs \<and> concat (replicate 1 ys) = ys"  | 
| 
 
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
 
paulson <lp15@cam.ac.uk> 
parents: 
72555 
diff
changeset
 | 
4586  | 
by simp  | 
| 72732 | 4587  | 
then show ?thesis  | 
| 
72735
 
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
 
paulson <lp15@cam.ac.uk> 
parents: 
72555 
diff
changeset
 | 
4588  | 
by blast  | 
| 
42714
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4589  | 
next  | 
| 72732 | 4590  | 
case 3  | 
| 
72735
 
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
 
paulson <lp15@cam.ac.uk> 
parents: 
72555 
diff
changeset
 | 
4591  | 
then have "length xs \<le> length ys" and "xs \<noteq> []"  | 
| 
 
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
 
paulson <lp15@cam.ac.uk> 
parents: 
72555 
diff
changeset
 | 
4592  | 
by blast+  | 
| 
 
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
 
paulson <lp15@cam.ac.uk> 
parents: 
72555 
diff
changeset
 | 
4593  | 
from \<open>length xs \<le> length ys\<close> and \<open>xs @ ys = ys @ xs\<close>  | 
| 
 
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
 
paulson <lp15@cam.ac.uk> 
parents: 
72555 
diff
changeset
 | 
4594  | 
obtain ws where "ys = xs @ ws"  | 
| 
 
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
 
paulson <lp15@cam.ac.uk> 
parents: 
72555 
diff
changeset
 | 
4595  | 
by (auto simp: append_eq_append_conv2)  | 
| 
 
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
 
paulson <lp15@cam.ac.uk> 
parents: 
72555 
diff
changeset
 | 
4596  | 
from this and \<open>xs \<noteq> []\<close>  | 
| 
 
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
 
paulson <lp15@cam.ac.uk> 
parents: 
72555 
diff
changeset
 | 
4597  | 
have "length ws < length ys"  | 
| 
 
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
 
paulson <lp15@cam.ac.uk> 
parents: 
72555 
diff
changeset
 | 
4598  | 
by simp  | 
| 
 
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
 
paulson <lp15@cam.ac.uk> 
parents: 
72555 
diff
changeset
 | 
4599  | 
from \<open>xs @ ys = ys @ xs\<close>[unfolded \<open>ys = xs @ ws\<close>]  | 
| 
 
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
 
paulson <lp15@cam.ac.uk> 
parents: 
72555 
diff
changeset
 | 
4600  | 
have "xs @ ws = ws @ xs"  | 
| 
 
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
 
paulson <lp15@cam.ac.uk> 
parents: 
72555 
diff
changeset
 | 
4601  | 
by simp  | 
| 
 
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
 
paulson <lp15@cam.ac.uk> 
parents: 
72555 
diff
changeset
 | 
4602  | 
from less.hyps[OF _ this] \<open>length ws < length ys\<close>  | 
| 
 
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
 
paulson <lp15@cam.ac.uk> 
parents: 
72555 
diff
changeset
 | 
4603  | 
obtain m n' zs where "concat (replicate m zs) = xs" and "concat (replicate n' zs) = ws"  | 
| 
 
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
 
paulson <lp15@cam.ac.uk> 
parents: 
72555 
diff
changeset
 | 
4604  | 
by auto  | 
| 
 
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
 
paulson <lp15@cam.ac.uk> 
parents: 
72555 
diff
changeset
 | 
4605  | 
then have "concat (replicate (m+n') zs) = ys"  | 
| 
 
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
 
paulson <lp15@cam.ac.uk> 
parents: 
72555 
diff
changeset
 | 
4606  | 
using \<open>ys = xs @ ws\<close>  | 
| 
42714
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4607  | 
by (simp add: replicate_add)  | 
| 72732 | 4608  | 
then show ?thesis  | 
| 
72735
 
bbe5d3ef2052
Stepan Holub's stronger version of comm_append_are_replicate, and a de-applied Word.thy
 
paulson <lp15@cam.ac.uk> 
parents: 
72555 
diff
changeset
 | 
4609  | 
using \<open>concat (replicate m zs) = xs\<close> by blast  | 
| 
42714
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4610  | 
qed  | 
| 
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4611  | 
qed  | 
| 
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4612  | 
|
| 
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4613  | 
lemma comm_append_is_replicate:  | 
| 
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4614  | 
fixes xs ys :: "'a list"  | 
| 
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4615  | 
assumes "xs \<noteq> []" "ys \<noteq> []"  | 
| 
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4616  | 
assumes "xs @ ys = ys @ xs"  | 
| 
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4617  | 
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
 | 
4618  | 
proof -  | 
| 
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4619  | 
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
 | 
4620  | 
and "concat (replicate n zs) = ys"  | 
| 72732 | 4621  | 
using comm_append_are_replicate[OF assms(3)] by blast  | 
| 
42714
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4622  | 
then have "m + n > 1" and "concat (replicate (m+n) zs) = xs @ ys"  | 
| 60758 | 4623  | 
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
 | 
4624  | 
by (auto simp: replicate_add)  | 
| 
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4625  | 
then show ?thesis by blast  | 
| 
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4626  | 
qed  | 
| 
 
fcba668b0839
add a lemma about commutative append to List.thy
 
noschinl 
parents: 
42713 
diff
changeset
 | 
4627  | 
|
| 52380 | 4628  | 
lemma Cons_replicate_eq:  | 
4629  | 
"x # xs = replicate n y \<longleftrightarrow> x = y \<and> n > 0 \<and> xs = replicate (n - 1) x"  | 
|
| 66853 | 4630  | 
by (induct n) auto  | 
| 52380 | 4631  | 
|
4632  | 
lemma replicate_length_same:  | 
|
4633  | 
"(\<forall>y\<in>set xs. y = x) \<Longrightarrow> replicate (length xs) x = xs"  | 
|
| 66853 | 4634  | 
by (induct xs) simp_all  | 
| 52380 | 4635  | 
|
4636  | 
lemma foldr_replicate [simp]:  | 
|
4637  | 
"foldr f (replicate n x) = f x ^^ n"  | 
|
| 66853 | 4638  | 
by (induct n) (simp_all)  | 
| 52380 | 4639  | 
|
4640  | 
lemma fold_replicate [simp]:  | 
|
4641  | 
"fold f (replicate n x) = f x ^^ n"  | 
|
| 66853 | 4642  | 
by (subst foldr_fold [symmetric]) simp_all  | 
| 52380 | 4643  | 
|
| 28642 | 4644  | 
|
| 69593 | 4645  | 
subsubsection \<open>\<^const>\<open>enumerate\<close>\<close>  | 
| 51173 | 4646  | 
|
4647  | 
lemma enumerate_simps [simp, code]:  | 
|
4648  | 
"enumerate n [] = []"  | 
|
4649  | 
"enumerate n (x # xs) = (n, x) # enumerate (Suc n) xs"  | 
|
| 68719 | 4650  | 
by (simp_all add: enumerate_eq_zip upt_rec)  | 
| 51173 | 4651  | 
|
4652  | 
lemma length_enumerate [simp]:  | 
|
4653  | 
"length (enumerate n xs) = length xs"  | 
|
| 66853 | 4654  | 
by (simp add: enumerate_eq_zip)  | 
| 51173 | 4655  | 
|
4656  | 
lemma map_fst_enumerate [simp]:  | 
|
4657  | 
"map fst (enumerate n xs) = [n..<n + length xs]"  | 
|
| 66853 | 4658  | 
by (simp add: enumerate_eq_zip)  | 
| 51173 | 4659  | 
|
4660  | 
lemma map_snd_enumerate [simp]:  | 
|
4661  | 
"map snd (enumerate n xs) = xs"  | 
|
| 66853 | 4662  | 
by (simp add: enumerate_eq_zip)  | 
| 64963 | 4663  | 
|
| 51173 | 4664  | 
lemma in_set_enumerate_eq:  | 
4665  | 
"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"  | 
|
4666  | 
proof -  | 
|
4667  | 
  { fix m
 | 
|
4668  | 
assume "n \<le> m"  | 
|
4669  | 
moreover assume "m < length xs + n"  | 
|
4670  | 
ultimately have "[n..<n + length xs] ! (m - n) = m \<and>  | 
|
4671  | 
xs ! (m - n) = xs ! (m - n) \<and> m - n < length xs" by auto  | 
|
4672  | 
then have "\<exists>q. [n..<n + length xs] ! q = m \<and>  | 
|
4673  | 
xs ! q = xs ! (m - n) \<and> q < length xs" ..  | 
|
4674  | 
} then show ?thesis by (cases p) (auto simp add: enumerate_eq_zip in_set_zip)  | 
|
4675  | 
qed  | 
|
4676  | 
||
| 66853 | 4677  | 
lemma nth_enumerate_eq: "m < length xs \<Longrightarrow> enumerate n xs ! m = (n + m, xs ! m)"  | 
4678  | 
by (simp add: enumerate_eq_zip)  | 
|
| 51173 | 4679  | 
|
4680  | 
lemma enumerate_replicate_eq:  | 
|
4681  | 
"enumerate n (replicate m a) = map (\<lambda>q. (q, a)) [n..<n + m]"  | 
|
| 66853 | 4682  | 
by (rule pair_list_eqI)  | 
4683  | 
(simp_all add: enumerate_eq_zip comp_def map_replicate_const)  | 
|
| 51173 | 4684  | 
|
4685  | 
lemma enumerate_Suc_eq:  | 
|
4686  | 
"enumerate (Suc n) xs = map (apfst Suc) (enumerate n xs)"  | 
|
| 66853 | 4687  | 
by (rule pair_list_eqI)  | 
4688  | 
(simp_all add: not_le, simp del: map_map add: map_Suc_upt map_map [symmetric])  | 
|
| 51173 | 4689  | 
|
| 52379 | 4690  | 
lemma distinct_enumerate [simp]:  | 
4691  | 
"distinct (enumerate n xs)"  | 
|
| 66853 | 4692  | 
by (simp add: enumerate_eq_zip distinct_zipI1)  | 
| 52379 | 4693  | 
|
| 58437 | 4694  | 
lemma enumerate_append_eq:  | 
4695  | 
"enumerate n (xs @ ys) = enumerate n xs @ enumerate (n + length xs) ys"  | 
|
| 68719 | 4696  | 
by (simp add: enumerate_eq_zip add.assoc zip_append2)  | 
| 58437 | 4697  | 
|
4698  | 
lemma enumerate_map_upt:  | 
|
4699  | 
"enumerate n (map f [n..<m]) = map (\<lambda>k. (k, f k)) [n..<m]"  | 
|
| 66853 | 4700  | 
by (cases "n \<le> m") (simp_all add: zip_map2 zip_same_conv_map enumerate_eq_zip)  | 
| 64963 | 4701  | 
|
| 51173 | 4702  | 
|
| 69593 | 4703  | 
subsubsection \<open>\<^const>\<open>rotate1\<close> and \<^const>\<open>rotate\<close>\<close>  | 
| 15302 | 4704  | 
|
4705  | 
lemma rotate0[simp]: "rotate 0 = id"  | 
|
4706  | 
by(simp add:rotate_def)  | 
|
4707  | 
||
4708  | 
lemma rotate_Suc[simp]: "rotate (Suc n) xs = rotate1(rotate n xs)"  | 
|
4709  | 
by(simp add:rotate_def)  | 
|
4710  | 
||
4711  | 
lemma rotate_add:  | 
|
| 67091 | 4712  | 
"rotate (m+n) = rotate m \<circ> rotate n"  | 
| 15302 | 4713  | 
by(simp add:rotate_def funpow_add)  | 
4714  | 
||
4715  | 
lemma rotate_rotate: "rotate m (rotate n xs) = rotate (m+n) xs"  | 
|
4716  | 
by(simp add:rotate_add)  | 
|
4717  | 
||
| 
71393
 
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
 
traytel 
parents: 
70911 
diff
changeset
 | 
4718  | 
lemma rotate1_map: "rotate1 (map f xs) = map f (rotate1 xs)"  | 
| 
 
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
 
traytel 
parents: 
70911 
diff
changeset
 | 
4719  | 
by(cases xs) simp_all  | 
| 
 
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
 
traytel 
parents: 
70911 
diff
changeset
 | 
4720  | 
|
| 18049 | 4721  | 
lemma rotate1_rotate_swap: "rotate1 (rotate n xs) = rotate n (rotate1 xs)"  | 
4722  | 
by(simp add:rotate_def funpow_swap1)  | 
|
4723  | 
||
| 68709 | 4724  | 
lemma rotate1_length01[simp]: "length xs \<le> 1 \<Longrightarrow> rotate1 xs = xs"  | 
| 15302 | 4725  | 
by(cases xs) simp_all  | 
4726  | 
||
| 68709 | 4727  | 
lemma rotate_length01[simp]: "length xs \<le> 1 \<Longrightarrow> rotate n xs = xs"  | 
| 68719 | 4728  | 
by (induct n) (simp_all add:rotate_def)  | 
| 13114 | 4729  | 
|
| 15302 | 4730  | 
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
 | 
4731  | 
by (cases xs) simp_all  | 
| 15302 | 4732  | 
|
4733  | 
lemma rotate_drop_take:  | 
|
4734  | 
"rotate n xs = drop (n mod length xs) xs @ take (n mod length xs) xs"  | 
|
| 68719 | 4735  | 
proof (induct n)  | 
4736  | 
case (Suc n)  | 
|
4737  | 
show ?case  | 
|
4738  | 
proof (cases "xs = []")  | 
|
4739  | 
case False  | 
|
4740  | 
then show ?thesis  | 
|
4741  | 
proof (cases "n mod length xs = 0")  | 
|
4742  | 
case True  | 
|
4743  | 
then show ?thesis  | 
|
| 71585 | 4744  | 
by (auto simp add: mod_Suc False Suc.hyps drop_Suc rotate1_hd_tl take_Suc Suc_length_conv)  | 
| 68719 | 4745  | 
next  | 
4746  | 
case False  | 
|
4747  | 
with \<open>xs \<noteq> []\<close> Suc  | 
|
4748  | 
show ?thesis  | 
|
4749  | 
by (simp add: rotate_def mod_Suc rotate1_hd_tl drop_Suc[symmetric] drop_tl[symmetric]  | 
|
4750  | 
take_hd_drop linorder_not_le)  | 
|
4751  | 
qed  | 
|
4752  | 
qed simp  | 
|
4753  | 
qed simp  | 
|
| 13114 | 4754  | 
|
| 15302 | 4755  | 
lemma rotate_conv_mod: "rotate n xs = rotate (n mod length xs) xs"  | 
| 71585 | 4756  | 
by(simp add:rotate_drop_take)  | 
| 15302 | 4757  | 
|
4758  | 
lemma rotate_id[simp]: "n mod length xs = 0 \<Longrightarrow> rotate n xs = xs"  | 
|
| 71585 | 4759  | 
by(simp add:rotate_drop_take)  | 
| 15302 | 4760  | 
|
4761  | 
lemma length_rotate1[simp]: "length(rotate1 xs) = length xs"  | 
|
| 71585 | 4762  | 
by (cases xs) simp_all  | 
| 15302 | 4763  | 
|
| 24526 | 4764  | 
lemma length_rotate[simp]: "length(rotate n xs) = length xs"  | 
| 71585 | 4765  | 
by (induct n arbitrary: xs) (simp_all add:rotate_def)  | 
| 15302 | 4766  | 
|
4767  | 
lemma distinct1_rotate[simp]: "distinct(rotate1 xs) = distinct xs"  | 
|
| 71585 | 4768  | 
by (cases xs) auto  | 
| 15302 | 4769  | 
|
4770  | 
lemma distinct_rotate[simp]: "distinct(rotate n xs) = distinct xs"  | 
|
| 71585 | 4771  | 
by (induct n) (simp_all add:rotate_def)  | 
| 15302 | 4772  | 
|
4773  | 
lemma rotate_map: "rotate n (map f xs) = map f (rotate n xs)"  | 
|
| 71585 | 4774  | 
by(simp add:rotate_drop_take take_map drop_map)  | 
| 15302 | 4775  | 
|
4776  | 
lemma set_rotate1[simp]: "set(rotate1 xs) = set xs"  | 
|
| 71585 | 4777  | 
by (cases xs) auto  | 
| 15302 | 4778  | 
|
4779  | 
lemma set_rotate[simp]: "set(rotate n xs) = set xs"  | 
|
| 71585 | 4780  | 
by (induct n) (simp_all add:rotate_def)  | 
| 15302 | 4781  | 
|
4782  | 
lemma rotate1_is_Nil_conv[simp]: "(rotate1 xs = []) = (xs = [])"  | 
|
| 71585 | 4783  | 
by (cases xs) auto  | 
| 15302 | 4784  | 
|
4785  | 
lemma rotate_is_Nil_conv[simp]: "(rotate n xs = []) = (xs = [])"  | 
|
| 71585 | 4786  | 
by (induct n) (simp_all add:rotate_def)  | 
| 13114 | 4787  | 
|
| 15439 | 4788  | 
lemma rotate_rev:  | 
4789  | 
"rotate n (rev xs) = rev(rotate (length xs - (n mod length xs)) xs)"  | 
|
| 
68527
 
2f4e2aab190a
Generalising and renaming some basic results
 
paulson <lp15@cam.ac.uk> 
parents: 
68362 
diff
changeset
 | 
4790  | 
proof (cases "length xs = 0 \<or> n mod length xs = 0")  | 
| 
 
2f4e2aab190a
Generalising and renaming some basic results
 
paulson <lp15@cam.ac.uk> 
parents: 
68362 
diff
changeset
 | 
4791  | 
case False  | 
| 
 
2f4e2aab190a
Generalising and renaming some basic results
 
paulson <lp15@cam.ac.uk> 
parents: 
68362 
diff
changeset
 | 
4792  | 
then show ?thesis  | 
| 
 
2f4e2aab190a
Generalising and renaming some basic results
 
paulson <lp15@cam.ac.uk> 
parents: 
68362 
diff
changeset
 | 
4793  | 
by(simp add:rotate_drop_take rev_drop rev_take)  | 
| 
 
2f4e2aab190a
Generalising and renaming some basic results
 
paulson <lp15@cam.ac.uk> 
parents: 
68362 
diff
changeset
 | 
4794  | 
qed force  | 
| 15439 | 4795  | 
|
| 68719 | 4796  | 
lemma hd_rotate_conv_nth:  | 
4797  | 
assumes "xs \<noteq> []" shows "hd(rotate n xs) = xs!(n mod length xs)"  | 
|
4798  | 
proof -  | 
|
4799  | 
have "n mod length xs < length xs"  | 
|
4800  | 
using assms by simp  | 
|
4801  | 
then show ?thesis  | 
|
4802  | 
by (metis drop_eq_Nil hd_append2 hd_drop_conv_nth leD rotate_drop_take)  | 
|
4803  | 
qed  | 
|
| 18423 | 4804  | 
|
| 
68527
 
2f4e2aab190a
Generalising and renaming some basic results
 
paulson <lp15@cam.ac.uk> 
parents: 
68362 
diff
changeset
 | 
4805  | 
lemma rotate_append: "rotate (length l) (l @ q) = q @ l"  | 
| 
 
2f4e2aab190a
Generalising and renaming some basic results
 
paulson <lp15@cam.ac.uk> 
parents: 
68362 
diff
changeset
 | 
4806  | 
by (induct l arbitrary: q) (auto simp add: rotate1_rotate_swap)  | 
| 
 
2f4e2aab190a
Generalising and renaming some basic results
 
paulson <lp15@cam.ac.uk> 
parents: 
68362 
diff
changeset
 | 
4807  | 
|
| 71991 | 4808  | 
lemma nth_rotate:  | 
4809  | 
\<open>rotate m xs ! n = xs ! ((m + n) mod length xs)\<close> if \<open>n < length xs\<close>  | 
|
4810  | 
using that apply (auto simp add: rotate_drop_take nth_append not_less less_diff_conv ac_simps dest!: le_Suc_ex)  | 
|
4811  | 
apply (metis add.commute mod_add_right_eq mod_less)  | 
|
4812  | 
apply (metis (no_types, lifting) Nat.diff_diff_right add.commute add_diff_cancel_right' diff_le_self dual_order.strict_trans2 length_greater_0_conv less_nat_zero_code list.size(3) mod_add_right_eq mod_add_self2 mod_le_divisor mod_less)  | 
|
4813  | 
done  | 
|
4814  | 
||
4815  | 
lemma nth_rotate1:  | 
|
4816  | 
\<open>rotate1 xs ! n = xs ! (Suc n mod length xs)\<close> if \<open>n < length xs\<close>  | 
|
4817  | 
using that nth_rotate [of n xs 1] by simp  | 
|
4818  | 
||
| 13114 | 4819  | 
|
| 69593 | 4820  | 
subsubsection \<open>\<^const>\<open>nths\<close> --- a generalization of \<^const>\<open>nth\<close> to sets\<close>  | 
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4821  | 
|
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4822  | 
lemma nths_empty [simp]: "nths xs {} = []"
 | 
| 71585 | 4823  | 
by (auto simp add: nths_def)  | 
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4824  | 
|
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4825  | 
lemma nths_nil [simp]: "nths [] A = []"  | 
| 71585 | 4826  | 
by (auto simp add: nths_def)  | 
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4827  | 
|
| 69203 | 4828  | 
lemma nths_all: "\<forall>i < length xs. i \<in> I \<Longrightarrow> nths xs I = xs"  | 
4829  | 
apply (simp add: nths_def)  | 
|
4830  | 
apply (subst filter_True)  | 
|
| 71585 | 4831  | 
apply (auto simp: in_set_zip subset_iff)  | 
| 69203 | 4832  | 
done  | 
4833  | 
||
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4834  | 
lemma length_nths:  | 
| 67613 | 4835  | 
  "length (nths xs I) = card{i. i < length xs \<and> i \<in> I}"
 | 
| 71585 | 4836  | 
by(simp add: nths_def length_filter_conv_card cong:conj_cong)  | 
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4837  | 
|
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4838  | 
lemma nths_shift_lemma_Suc:  | 
| 68719 | 4839  | 
"map fst (filter (\<lambda>p. P(Suc(snd p))) (zip xs is)) =  | 
4840  | 
map fst (filter (\<lambda>p. P(snd p)) (zip xs (map Suc is)))"  | 
|
4841  | 
proof (induct xs arbitrary: "is")  | 
|
4842  | 
case (Cons x xs "is")  | 
|
4843  | 
show ?case  | 
|
4844  | 
by (cases "is") (auto simp add: Cons.hyps)  | 
|
4845  | 
qed simp  | 
|
| 15281 | 4846  | 
|
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4847  | 
lemma nths_shift_lemma:  | 
| 
68249
 
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
 
nipkow 
parents: 
68215 
diff
changeset
 | 
4848  | 
"map fst (filter (\<lambda>p. snd p \<in> A) (zip xs [i..<i + length xs])) =  | 
| 
 
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
 
nipkow 
parents: 
68215 
diff
changeset
 | 
4849  | 
map fst (filter (\<lambda>p. snd p + i \<in> A) (zip xs [0..<length xs]))"  | 
| 
57512
 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 
haftmann 
parents: 
57418 
diff
changeset
 | 
4850  | 
by (induct xs rule: rev_induct) (simp_all add: add.commute)  | 
| 13114 | 4851  | 
|
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4852  | 
lemma nths_append:  | 
| 67613 | 4853  | 
  "nths (l @ l') A = nths l A @ nths l' {j. j + length l \<in> A}"
 | 
| 68719 | 4854  | 
unfolding nths_def  | 
4855  | 
proof (induct l' rule: rev_induct)  | 
|
4856  | 
case (snoc x xs)  | 
|
4857  | 
then show ?case  | 
|
4858  | 
by (simp add: upt_add_eq_append[of 0] nths_shift_lemma add.commute)  | 
|
4859  | 
qed auto  | 
|
| 13114 | 4860  | 
|
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4861  | 
lemma nths_Cons:  | 
| 67613 | 4862  | 
  "nths (x # l) A = (if 0 \<in> A then [x] else []) @ nths l {j. Suc j \<in> A}"
 | 
| 68719 | 4863  | 
proof (induct l rule: rev_induct)  | 
4864  | 
case (snoc x xs)  | 
|
4865  | 
then show ?case  | 
|
4866  | 
by (simp flip: append_Cons add: nths_append)  | 
|
4867  | 
qed (auto simp: nths_def)  | 
|
| 13114 | 4868  | 
|
| 66853 | 4869  | 
lemma nths_map: "nths (map f xs) I = map f (nths xs I)"  | 
| 71585 | 4870  | 
by(induction xs arbitrary: I) (simp_all add: nths_Cons)  | 
| 66853 | 4871  | 
|
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4872  | 
lemma set_nths: "set(nths xs I) = {xs!i|i. i<size xs \<and> i \<in> I}"
 | 
| 71585 | 4873  | 
by (induct xs arbitrary: I) (auto simp: nths_Cons nth_Cons split:nat.split dest!: gr0_implies_Suc)  | 
| 15281 | 4874  | 
|
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4875  | 
lemma set_nths_subset: "set(nths xs I) \<subseteq> set xs"  | 
| 71585 | 4876  | 
by(auto simp add:set_nths)  | 
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4877  | 
|
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4878  | 
lemma notin_set_nthsI[simp]: "x \<notin> set xs \<Longrightarrow> x \<notin> set(nths xs I)"  | 
| 71585 | 4879  | 
by(auto simp add:set_nths)  | 
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4880  | 
|
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4881  | 
lemma in_set_nthsD: "x \<in> set(nths xs I) \<Longrightarrow> x \<in> set xs"  | 
| 71585 | 4882  | 
by(auto simp add:set_nths)  | 
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4883  | 
|
| 67613 | 4884  | 
lemma nths_singleton [simp]: "nths [x] A = (if 0 \<in> A then [x] else [])"  | 
| 71585 | 4885  | 
by (simp add: nths_Cons)  | 
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4886  | 
|
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4887  | 
lemma distinct_nthsI[simp]: "distinct xs \<Longrightarrow> distinct (nths xs I)"  | 
| 71585 | 4888  | 
by (induct xs arbitrary: I) (auto simp: nths_Cons)  | 
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4889  | 
|
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4890  | 
lemma nths_upt_eq_take [simp]: "nths l {..<n} = take n l"
 | 
| 71585 | 4891  | 
by (induct l rule: rev_induct) (simp_all split: nat_diff_split add: nths_append)  | 
| 66656 | 4892  | 
|
| 69203 | 4893  | 
lemma nths_nths: "nths (nths xs A) B = nths xs {i \<in> A. \<exists>j \<in> B. card {i' \<in> A. i' < i} = j}"
 | 
| 71585 | 4894  | 
by (induction xs arbitrary: A B) (auto simp add: nths_Cons card_less_Suc card_less_Suc2)  | 
| 69203 | 4895  | 
|
4896  | 
lemma drop_eq_nths: "drop n xs = nths xs {i. i \<ge> n}"
 | 
|
| 71585 | 4897  | 
by (induction xs arbitrary: n) (auto simp add: nths_Cons nths_all drop_Cons' intro: arg_cong2[where f=nths, OF refl])  | 
| 69203 | 4898  | 
|
4899  | 
lemma nths_drop: "nths (drop n xs) I = nths xs ((+) n ` I)"  | 
|
4900  | 
by(force simp: drop_eq_nths nths_nths simp flip: atLeastLessThan_iff  | 
|
4901  | 
intro: arg_cong2[where f=nths, OF refl])  | 
|
4902  | 
||
| 66656 | 4903  | 
lemma filter_eq_nths: "filter P xs = nths xs {i. i<length xs \<and> P(xs!i)}"
 | 
| 71585 | 4904  | 
by(induction xs) (auto simp: nths_Cons)  | 
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4905  | 
|
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4906  | 
lemma filter_in_nths:  | 
| 66656 | 4907  | 
"distinct xs \<Longrightarrow> filter (%x. x \<in> set (nths xs s)) xs = nths xs s"  | 
| 24526 | 4908  | 
proof (induct xs arbitrary: s)  | 
| 17501 | 4909  | 
case Nil thus ?case by simp  | 
4910  | 
next  | 
|
4911  | 
case (Cons a xs)  | 
|
| 67091 | 4912  | 
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
 | 
4913  | 
with Cons show ?case by(simp add: nths_Cons cong:filter_cong)  | 
| 17501 | 4914  | 
qed  | 
4915  | 
||
| 13114 | 4916  | 
|
| 69593 | 4917  | 
subsubsection \<open>\<^const>\<open>subseqs\<close> and \<^const>\<open>List.n_lists\<close>\<close>  | 
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4918  | 
|
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4919  | 
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
 | 
4920  | 
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
 | 
4921  | 
|
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4922  | 
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
 | 
4923  | 
proof -  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4924  | 
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
 | 
4925  | 
by (auto simp add: image_def)  | 
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4926  | 
have "set (map set (subseqs xs)) = Pow (set xs)"  | 
| 64963 | 4927  | 
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
 | 
4928  | 
then show ?thesis by simp  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4929  | 
qed  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4930  | 
|
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4931  | 
lemma distinct_set_subseqs:  | 
| 
49948
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4932  | 
assumes "distinct xs"  | 
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4933  | 
shows "distinct (map set (subseqs xs))"  | 
| 
49948
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4934  | 
proof (rule card_distinct)  | 
| 64963 | 4935  | 
have "finite (set xs)" ..  | 
4936  | 
then have "card (Pow (set xs)) = 2 ^ card (set xs)"  | 
|
4937  | 
by (rule card_Pow)  | 
|
4938  | 
with assms distinct_card [of xs] have "card (Pow (set xs)) = 2 ^ length xs"  | 
|
4939  | 
by simp  | 
|
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4940  | 
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
 | 
4941  | 
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
 | 
4942  | 
qed  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4943  | 
|
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4944  | 
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
 | 
4945  | 
by (induct n) simp_all  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4946  | 
|
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4947  | 
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
 | 
4948  | 
by (induct n arbitrary: ys) auto  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4949  | 
|
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4950  | 
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
 | 
4951  | 
proof (rule set_eqI)  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4952  | 
fix ys :: "'a list"  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4953  | 
  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
 | 
4954  | 
proof -  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4955  | 
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
 | 
4956  | 
by (induct n arbitrary: ys) auto  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4957  | 
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
 | 
4958  | 
by (induct n arbitrary: ys) auto  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4959  | 
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
 | 
4960  | 
by (induct ys) auto  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4961  | 
ultimately show ?thesis by auto  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4962  | 
qed  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4963  | 
qed  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4964  | 
|
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4965  | 
lemma subseqs_refl: "xs \<in> set (subseqs xs)"  | 
| 64963 | 4966  | 
by (induct xs) (simp_all add: Let_def)  | 
| 
63561
 
fba08009ff3e
add lemmas contributed by Peter Gammie
 
Andreas Lochbihler 
parents: 
63540 
diff
changeset
 | 
4967  | 
|
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4968  | 
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
 | 
4969  | 
unfolding subseqs_powset by simp  | 
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4970  | 
|
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4971  | 
lemma Cons_in_subseqsD: "y # ys \<in> set (subseqs xs) \<Longrightarrow> ys \<in> set (subseqs xs)"  | 
| 64963 | 4972  | 
by (induct xs) (auto simp: Let_def)  | 
| 
63561
 
fba08009ff3e
add lemmas contributed by Peter Gammie
 
Andreas Lochbihler 
parents: 
63540 
diff
changeset
 | 
4973  | 
|
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4974  | 
lemma subseqs_distinctD: "\<lbrakk> ys \<in> set (subseqs xs); distinct xs \<rbrakk> \<Longrightarrow> distinct ys"  | 
| 64963 | 4975  | 
proof (induct xs arbitrary: ys)  | 
| 
63561
 
fba08009ff3e
add lemmas contributed by Peter Gammie
 
Andreas Lochbihler 
parents: 
63540 
diff
changeset
 | 
4976  | 
case (Cons x xs ys)  | 
| 
 
fba08009ff3e
add lemmas contributed by Peter Gammie
 
Andreas Lochbihler 
parents: 
63540 
diff
changeset
 | 
4977  | 
then show ?case  | 
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
4978  | 
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
 | 
4979  | 
qed simp  | 
| 
 
fba08009ff3e
add lemmas contributed by Peter Gammie
 
Andreas Lochbihler 
parents: 
63540 
diff
changeset
 | 
4980  | 
|
| 
49948
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
4981  | 
|
| 69593 | 4982  | 
subsubsection \<open>\<^const>\<open>splice\<close>\<close>  | 
| 19390 | 4983  | 
|
| 69075 | 4984  | 
lemma splice_Nil2 [simp]: "splice xs [] = xs"  | 
| 71585 | 4985  | 
by (cases xs) simp_all  | 
| 19390 | 4986  | 
|
| 24526 | 4987  | 
lemma length_splice[simp]: "length(splice xs ys) = length xs + length ys"  | 
| 71585 | 4988  | 
by (induct xs ys rule: splice.induct) auto  | 
| 69136 | 4989  | 
|
4990  | 
lemma split_Nil_iff[simp]: "splice xs ys = [] \<longleftrightarrow> xs = [] \<and> ys = []"  | 
|
| 71585 | 4991  | 
by (induct xs ys rule: splice.induct) auto  | 
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4992  | 
|
| 69140 | 4993  | 
lemma splice_replicate[simp]: "splice (replicate m x) (replicate n x) = replicate (m+n) x"  | 
| 71585 | 4994  | 
proof (induction "replicate m x" "replicate n x" arbitrary: m n rule: splice.induct)  | 
4995  | 
case (2 x xs)  | 
|
4996  | 
then show ?case  | 
|
4997  | 
by (auto simp add: Cons_replicate_eq dest: gr0_implies_Suc)  | 
|
4998  | 
qed auto  | 
|
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
4999  | 
|
| 69593 | 5000  | 
subsubsection \<open>\<^const>\<open>shuffles\<close>\<close>  | 
| 69107 | 5001  | 
|
5002  | 
lemma shuffles_commutes: "shuffles xs ys = shuffles ys xs"  | 
|
5003  | 
by (induction xs ys rule: shuffles.induct) (simp_all add: Un_commute)  | 
|
5004  | 
||
5005  | 
lemma Nil_in_shuffles[simp]: "[] \<in> shuffles xs ys \<longleftrightarrow> xs = [] \<and> ys = []"  | 
|
5006  | 
by (induct xs ys rule: shuffles.induct) auto  | 
|
5007  | 
||
5008  | 
lemma shufflesE:  | 
|
5009  | 
"zs \<in> shuffles xs ys \<Longrightarrow>  | 
|
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5010  | 
(zs = xs \<Longrightarrow> ys = [] \<Longrightarrow> P) \<Longrightarrow>  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5011  | 
(zs = ys \<Longrightarrow> xs = [] \<Longrightarrow> P) \<Longrightarrow>  | 
| 69107 | 5012  | 
(\<And>x xs' z zs'. xs = x # xs' \<Longrightarrow> zs = z # zs' \<Longrightarrow> x = z \<Longrightarrow> zs' \<in> shuffles xs' ys \<Longrightarrow> P) \<Longrightarrow>  | 
5013  | 
(\<And>y ys' z zs'. ys = y # ys' \<Longrightarrow> zs = z # zs' \<Longrightarrow> y = z \<Longrightarrow> zs' \<in> shuffles xs ys' \<Longrightarrow> P) \<Longrightarrow> P"  | 
|
5014  | 
by (induct xs ys rule: shuffles.induct) auto  | 
|
5015  | 
||
5016  | 
lemma Cons_in_shuffles_iff:  | 
|
5017  | 
"z # zs \<in> shuffles xs ys \<longleftrightarrow>  | 
|
5018  | 
(xs \<noteq> [] \<and> hd xs = z \<and> zs \<in> shuffles (tl xs) ys \<or>  | 
|
5019  | 
ys \<noteq> [] \<and> hd ys = z \<and> zs \<in> shuffles xs (tl ys))"  | 
|
5020  | 
by (induct xs ys rule: shuffles.induct) auto  | 
|
5021  | 
||
5022  | 
lemma splice_in_shuffles [simp, intro]: "splice xs ys \<in> shuffles xs ys"  | 
|
| 71585 | 5023  | 
by (induction xs ys rule: splice.induct) (simp_all add: Cons_in_shuffles_iff shuffles_commutes)  | 
| 69107 | 5024  | 
|
5025  | 
lemma Nil_in_shufflesI: "xs = [] \<Longrightarrow> ys = [] \<Longrightarrow> [] \<in> shuffles xs ys"  | 
|
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5026  | 
by simp  | 
| 66892 | 5027  | 
|
| 69107 | 5028  | 
lemma Cons_in_shuffles_leftI: "zs \<in> shuffles xs ys \<Longrightarrow> z # zs \<in> shuffles (z # xs) ys"  | 
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5029  | 
by (cases ys) auto  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5030  | 
|
| 69107 | 5031  | 
lemma Cons_in_shuffles_rightI: "zs \<in> shuffles xs ys \<Longrightarrow> z # zs \<in> shuffles xs (z # ys)"  | 
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5032  | 
by (cases xs) auto  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5033  | 
|
| 69107 | 5034  | 
lemma finite_shuffles [simp, intro]: "finite (shuffles xs ys)"  | 
5035  | 
by (induction xs ys rule: shuffles.induct) simp_all  | 
|
5036  | 
||
5037  | 
lemma length_shuffles: "zs \<in> shuffles xs ys \<Longrightarrow> length zs = length xs + length ys"  | 
|
5038  | 
by (induction xs ys arbitrary: zs rule: shuffles.induct) auto  | 
|
5039  | 
||
5040  | 
lemma set_shuffles: "zs \<in> shuffles xs ys \<Longrightarrow> set zs = set xs \<union> set ys"  | 
|
5041  | 
by (induction xs ys arbitrary: zs rule: shuffles.induct) auto  | 
|
5042  | 
||
5043  | 
lemma distinct_disjoint_shuffles:  | 
|
5044  | 
  assumes "distinct xs" "distinct ys" "set xs \<inter> set ys = {}" "zs \<in> shuffles xs ys"
 | 
|
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5045  | 
shows "distinct zs"  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5046  | 
using assms  | 
| 69107 | 5047  | 
proof (induction xs ys arbitrary: zs rule: shuffles.induct)  | 
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5048  | 
case (3 x xs y ys)  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5049  | 
show ?case  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5050  | 
proof (cases zs)  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5051  | 
case (Cons z zs')  | 
| 69107 | 5052  | 
with "3.prems" and "3.IH"[of zs'] show ?thesis by (force dest: set_shuffles)  | 
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5053  | 
qed simp_all  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5054  | 
qed simp_all  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5055  | 
|
| 69107 | 5056  | 
lemma Cons_shuffles_subset1: "(#) x ` shuffles xs ys \<subseteq> shuffles (x # xs) ys"  | 
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5057  | 
by (cases ys) auto  | 
| 66892 | 5058  | 
|
| 69107 | 5059  | 
lemma Cons_shuffles_subset2: "(#) y ` shuffles xs ys \<subseteq> shuffles xs (y # ys)"  | 
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5060  | 
by (cases xs) auto  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5061  | 
|
| 69107 | 5062  | 
lemma filter_shuffles:  | 
5063  | 
"filter P ` shuffles xs ys = shuffles (filter P xs) (filter P ys)"  | 
|
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5064  | 
proof -  | 
| 67399 | 5065  | 
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
 | 
5066  | 
by (auto simp: image_image)  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5067  | 
show ?thesis  | 
| 69107 | 5068  | 
by (induction xs ys rule: shuffles.induct)  | 
| 66892 | 5069  | 
(simp_all split: if_splits add: image_Un * Un_absorb1 Un_absorb2  | 
| 69107 | 5070  | 
Cons_shuffles_subset1 Cons_shuffles_subset2)  | 
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5071  | 
qed  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5072  | 
|
| 69107 | 5073  | 
lemma filter_shuffles_disjoint1:  | 
5074  | 
  assumes "set xs \<inter> set ys = {}" "zs \<in> shuffles xs ys"
 | 
|
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5075  | 
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
 | 
5076  | 
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
 | 
5077  | 
using assms  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5078  | 
proof -  | 
| 69107 | 5079  | 
from assms have "filter ?P zs \<in> filter ?P ` shuffles xs ys" by blast  | 
5080  | 
also have "filter ?P ` shuffles xs ys = shuffles (filter ?P xs) (filter ?P ys)"  | 
|
5081  | 
by (rule filter_shuffles)  | 
|
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5082  | 
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
 | 
5083  | 
also have "filter ?P ys = []" by (rule filter_False) (insert assms(1), auto)  | 
| 69107 | 5084  | 
  also have "shuffles xs [] = {xs}" by simp
 | 
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5085  | 
finally show "filter ?P zs = xs" by simp  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5086  | 
next  | 
| 69107 | 5087  | 
from assms have "filter ?Q zs \<in> filter ?Q ` shuffles xs ys" by blast  | 
5088  | 
also have "filter ?Q ` shuffles xs ys = shuffles (filter ?Q xs) (filter ?Q ys)"  | 
|
5089  | 
by (rule filter_shuffles)  | 
|
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5090  | 
also have "filter ?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
 | 
5091  | 
also have "filter ?Q xs = []" by (rule filter_False) (insert assms(1), auto)  | 
| 69107 | 5092  | 
  also have "shuffles [] ys = {ys}" by simp
 | 
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5093  | 
finally show "filter ?Q zs = ys" by simp  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5094  | 
qed  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5095  | 
|
| 69107 | 5096  | 
lemma filter_shuffles_disjoint2:  | 
5097  | 
  assumes "set xs \<inter> set ys = {}" "zs \<in> shuffles xs ys"
 | 
|
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5098  | 
shows "filter (\<lambda>x. x \<in> set ys) zs = ys" "filter (\<lambda>x. x \<notin> set ys) zs = xs"  | 
| 69107 | 5099  | 
using filter_shuffles_disjoint1[of ys xs zs] assms  | 
5100  | 
by (simp_all add: shuffles_commutes Int_commute)  | 
|
5101  | 
||
5102  | 
lemma partition_in_shuffles:  | 
|
5103  | 
"xs \<in> shuffles (filter P xs) (filter (\<lambda>x. \<not>P x) xs)"  | 
|
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5104  | 
proof (induction xs)  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5105  | 
case (Cons x xs)  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5106  | 
show ?case  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5107  | 
proof (cases "P x")  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5108  | 
case True  | 
| 69107 | 5109  | 
hence "x # xs \<in> (#) x ` shuffles (filter P xs) (filter (\<lambda>x. \<not>P x) xs)"  | 
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5110  | 
by (intro imageI Cons.IH)  | 
| 69107 | 5111  | 
also have "\<dots> \<subseteq> shuffles (filter P (x # xs)) (filter (\<lambda>x. \<not>P x) (x # xs))"  | 
5112  | 
by (simp add: True Cons_shuffles_subset1)  | 
|
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5113  | 
finally show ?thesis .  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5114  | 
next  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5115  | 
case False  | 
| 69107 | 5116  | 
hence "x # xs \<in> (#) x ` shuffles (filter P xs) (filter (\<lambda>x. \<not>P x) xs)"  | 
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5117  | 
by (intro imageI Cons.IH)  | 
| 69107 | 5118  | 
also have "\<dots> \<subseteq> shuffles (filter P (x # xs)) (filter (\<lambda>x. \<not>P x) (x # xs))"  | 
5119  | 
by (simp add: False Cons_shuffles_subset2)  | 
|
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5120  | 
finally show ?thesis .  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5121  | 
qed  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5122  | 
qed auto  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5123  | 
|
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5124  | 
lemma inv_image_partition:  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5125  | 
assumes "\<And>x. x \<in> set xs \<Longrightarrow> P x" "\<And>y. y \<in> set ys \<Longrightarrow> \<not>P y"  | 
| 69107 | 5126  | 
  shows   "partition P -` {(xs, ys)} = shuffles xs ys"
 | 
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5127  | 
proof (intro equalityI subsetI)  | 
| 69107 | 5128  | 
fix zs assume zs: "zs \<in> shuffles xs ys"  | 
5129  | 
hence [simp]: "set zs = set xs \<union> set ys" by (rule set_shuffles)  | 
|
| 66892 | 5130  | 
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
 | 
5131  | 
"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
 | 
5132  | 
by (intro filter_cong refl; force)+  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5133  | 
  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
 | 
5134  | 
  ultimately show "zs \<in> partition P -` {(xs, ys)}" using zs
 | 
| 69107 | 5135  | 
by (simp add: o_def filter_shuffles_disjoint1 filter_shuffles_disjoint2)  | 
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5136  | 
next  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5137  | 
  fix zs assume "zs \<in> partition P -` {(xs, ys)}"
 | 
| 69107 | 5138  | 
thus "zs \<in> shuffles xs ys" using partition_in_shuffles[of zs] by (auto simp: o_def)  | 
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
5139  | 
qed  | 
| 22793 | 5140  | 
|
| 35115 | 5141  | 
|
| 60758 | 5142  | 
subsubsection \<open>Transpose\<close>  | 
| 34933 | 5143  | 
|
5144  | 
function transpose where  | 
|
5145  | 
"transpose [] = []" |  | 
|
5146  | 
"transpose ([] # xss) = transpose xss" |  | 
|
5147  | 
"transpose ((x#xs) # xss) =  | 
|
5148  | 
(x # [h. (h#t) \<leftarrow> xss]) # transpose (xs # [t. (h#t) \<leftarrow> xss])"  | 
|
5149  | 
by pat_completeness auto  | 
|
5150  | 
||
5151  | 
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
 | 
5152  | 
"concat (map (case_list [] (\<lambda>h t. [h])) xss) =  | 
| 
68249
 
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
 
nipkow 
parents: 
68215 
diff
changeset
 | 
5153  | 
map (\<lambda>xs. hd xs) (filter (\<lambda>ys. ys \<noteq> []) xss)"  | 
| 34933 | 5154  | 
by (induct xss) (auto split: list.split)  | 
5155  | 
||
5156  | 
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
 | 
5157  | 
"concat (map (case_list [] (\<lambda>h t. [t])) xss) =  | 
| 
68249
 
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
 
nipkow 
parents: 
68215 
diff
changeset
 | 
5158  | 
map (\<lambda>xs. tl xs) (filter (\<lambda>ys. ys \<noteq> []) xss)"  | 
| 34933 | 5159  | 
by (induct xss) (auto split: list.split)  | 
5160  | 
||
5161  | 
lemma transpose_aux_max:  | 
|
5162  | 
"max (Suc (length xs)) (foldr (\<lambda>xs. max (length xs)) xss 0) =  | 
|
| 
68249
 
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
 
nipkow 
parents: 
68215 
diff
changeset
 | 
5163  | 
Suc (max (length xs) (foldr (\<lambda>x. max (length x - Suc 0)) (filter (\<lambda>ys. ys \<noteq> []) xss) 0))"  | 
| 34933 | 5164  | 
(is "max _ ?foldB = Suc (max _ ?foldA)")  | 
| 
68249
 
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
 
nipkow 
parents: 
68215 
diff
changeset
 | 
5165  | 
proof (cases "(filter (\<lambda>ys. ys \<noteq> []) xss) = []")  | 
| 34933 | 5166  | 
case True  | 
5167  | 
hence "foldr (\<lambda>xs. max (length xs)) xss 0 = 0"  | 
|
5168  | 
proof (induct xss)  | 
|
5169  | 
case (Cons x xs)  | 
|
| 
53374
 
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
 
wenzelm 
parents: 
53017 
diff
changeset
 | 
5170  | 
then have "x = []" by (cases x) auto  | 
| 
 
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
 
wenzelm 
parents: 
53017 
diff
changeset
 | 
5171  | 
with Cons show ?case by auto  | 
| 34933 | 5172  | 
qed simp  | 
5173  | 
thus ?thesis using True by simp  | 
|
5174  | 
next  | 
|
5175  | 
case False  | 
|
5176  | 
||
| 
68249
 
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
 
nipkow 
parents: 
68215 
diff
changeset
 | 
5177  | 
have foldA: "?foldA = foldr (\<lambda>x. max (length x)) (filter (\<lambda>ys. ys \<noteq> []) xss) 0 - 1"  | 
| 34933 | 5178  | 
by (induct xss) auto  | 
| 
68249
 
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
 
nipkow 
parents: 
68215 
diff
changeset
 | 
5179  | 
have foldB: "?foldB = foldr (\<lambda>x. max (length x)) (filter (\<lambda>ys. ys \<noteq> []) xss) 0"  | 
| 34933 | 5180  | 
by (induct xss) auto  | 
5181  | 
||
5182  | 
have "0 < ?foldB"  | 
|
5183  | 
proof -  | 
|
5184  | 
from False  | 
|
| 
68249
 
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
 
nipkow 
parents: 
68215 
diff
changeset
 | 
5185  | 
obtain z zs where zs: "(filter (\<lambda>ys. ys \<noteq> []) xss) = z#zs" by (auto simp: neq_Nil_conv)  | 
| 
 
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
 
nipkow 
parents: 
68215 
diff
changeset
 | 
5186  | 
hence "z \<in> set (filter (\<lambda>ys. ys \<noteq> []) xss)" by auto  | 
| 34933 | 5187  | 
hence "z \<noteq> []" by auto  | 
5188  | 
thus ?thesis  | 
|
5189  | 
unfolding foldB zs  | 
|
5190  | 
by (auto simp: max_def intro: less_le_trans)  | 
|
5191  | 
qed  | 
|
5192  | 
thus ?thesis  | 
|
5193  | 
unfolding foldA foldB max_Suc_Suc[symmetric]  | 
|
5194  | 
by simp  | 
|
5195  | 
qed  | 
|
5196  | 
||
5197  | 
termination transpose  | 
|
5198  | 
by (relation "measure (\<lambda>xs. foldr (\<lambda>xs. max (length xs)) xs 0 + length xs)")  | 
|
5199  | 
(auto simp: transpose_aux_filter_tail foldr_map comp_def transpose_aux_max less_Suc_eq_le)  | 
|
5200  | 
||
5201  | 
lemma transpose_empty: "(transpose xs = []) \<longleftrightarrow> (\<forall>x \<in> set xs. x = [])"  | 
|
5202  | 
by (induct rule: transpose.induct) simp_all  | 
|
5203  | 
||
5204  | 
lemma length_transpose:  | 
|
5205  | 
fixes xs :: "'a list list"  | 
|
5206  | 
shows "length (transpose xs) = foldr (\<lambda>xs. max (length xs)) xs 0"  | 
|
5207  | 
by (induct rule: transpose.induct)  | 
|
5208  | 
(auto simp: transpose_aux_filter_tail foldr_map comp_def transpose_aux_max  | 
|
5209  | 
max_Suc_Suc[symmetric] simp del: max_Suc_Suc)  | 
|
5210  | 
||
5211  | 
lemma nth_transpose:  | 
|
5212  | 
fixes xs :: "'a list list"  | 
|
5213  | 
assumes "i < length (transpose xs)"  | 
|
| 
68249
 
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
 
nipkow 
parents: 
68215 
diff
changeset
 | 
5214  | 
shows "transpose xs ! i = map (\<lambda>xs. xs ! i) (filter (\<lambda>ys. i < length ys) xs)"  | 
| 34933 | 5215  | 
using assms proof (induct arbitrary: i rule: transpose.induct)  | 
5216  | 
case (3 x xs xss)  | 
|
| 63040 | 5217  | 
define XS where "XS = (x # xs) # xss"  | 
| 34933 | 5218  | 
hence [simp]: "XS \<noteq> []" by auto  | 
5219  | 
thus ?case  | 
|
5220  | 
proof (cases i)  | 
|
5221  | 
case 0  | 
|
5222  | 
thus ?thesis by (simp add: transpose_aux_filter_head hd_conv_nth)  | 
|
5223  | 
next  | 
|
5224  | 
case (Suc j)  | 
|
5225  | 
have *: "\<And>xss. xs # map tl xss = map tl ((x#xs)#xss)" by simp  | 
|
5226  | 
have **: "\<And>xss. (x#xs) # filter (\<lambda>ys. ys \<noteq> []) xss = filter (\<lambda>ys. ys \<noteq> []) ((x#xs)#xss)" by simp  | 
|
5227  | 
    { fix x have "Suc j < length x \<longleftrightarrow> x \<noteq> [] \<and> j < length x - Suc 0"
 | 
|
5228  | 
by (cases x) simp_all  | 
|
5229  | 
} note *** = this  | 
|
5230  | 
||
| 
55404
 
5cb95b79a51f
transformed 'option' and 'list' into new-style datatypes (but register them as old-style as well)
 
blanchet 
parents: 
55148 
diff
changeset
 | 
5231  | 
have j_less: "j < length (transpose (xs # concat (map (case_list [] (\<lambda>h t. [t])) xss)))"  | 
| 34933 | 5232  | 
using "3.prems" by (simp add: transpose_aux_filter_tail length_transpose Suc)  | 
5233  | 
||
5234  | 
show ?thesis  | 
|
| 60758 | 5235  | 
unfolding transpose.simps \<open>i = Suc j\<close> nth_Cons_Suc "3.hyps"[OF j_less]  | 
| 34933 | 5236  | 
apply (auto simp: transpose_aux_filter_tail filter_map comp_def length_transpose * ** *** XS_def[symmetric])  | 
| 68719 | 5237  | 
by (simp add: nth_tl)  | 
| 34933 | 5238  | 
qed  | 
5239  | 
qed simp_all  | 
|
5240  | 
||
5241  | 
lemma transpose_map_map:  | 
|
5242  | 
"transpose (map (map f) xs) = map (map f) (transpose xs)"  | 
|
| 
68975
 
5ce4d117cea7
A few new results, elimination of duplicates and more use of "pairwise"
 
paulson <lp15@cam.ac.uk> 
parents: 
68781 
diff
changeset
 | 
5243  | 
proof (rule nth_equalityI)  | 
| 34933 | 5244  | 
have [simp]: "length (transpose (map (map f) xs)) = length (transpose xs)"  | 
5245  | 
by (simp add: length_transpose foldr_map comp_def)  | 
|
5246  | 
show "length (transpose (map (map f) xs)) = length (map (map f) (transpose xs))" by simp  | 
|
5247  | 
||
5248  | 
fix i assume "i < length (transpose (map (map f) xs))"  | 
|
5249  | 
thus "transpose (map (map f) xs) ! i = map (map f) (transpose xs) ! i"  | 
|
5250  | 
by (simp add: nth_transpose filter_map comp_def)  | 
|
5251  | 
qed  | 
|
| 24616 | 5252  | 
|
| 69593 | 5253  | 
subsubsection \<open>\<^const>\<open>min\<close> and \<^const>\<open>arg_min\<close>\<close>  | 
| 67170 | 5254  | 
|
5255  | 
lemma min_list_Min: "xs \<noteq> [] \<Longrightarrow> min_list xs = Min (set xs)"  | 
|
| 71585 | 5256  | 
by (induction xs rule: induct_list012)(auto)  | 
| 67170 | 5257  | 
|
5258  | 
lemma f_arg_min_list_f: "xs \<noteq> [] \<Longrightarrow> f (arg_min_list f xs) = Min (f ` (set xs))"  | 
|
| 71585 | 5259  | 
by(induction f xs rule: arg_min_list.induct) (auto simp: min_def intro!: antisym)  | 
| 67170 | 5260  | 
|
| 67171 | 5261  | 
lemma arg_min_list_in: "xs \<noteq> [] \<Longrightarrow> arg_min_list f xs \<in> set xs"  | 
| 71585 | 5262  | 
by(induction xs rule: induct_list012) (auto simp: Let_def)  | 
| 67171 | 5263  | 
|
| 35115 | 5264  | 
|
| 60758 | 5265  | 
subsubsection \<open>(In)finiteness\<close>  | 
| 28642 | 5266  | 
|
5267  | 
lemma finite_maxlen:  | 
|
| 67091 | 5268  | 
"finite (M::'a list set) \<Longrightarrow> \<exists>n. \<forall>s\<in>M. size s < n"  | 
| 28642 | 5269  | 
proof (induct rule: finite.induct)  | 
5270  | 
case emptyI show ?case by simp  | 
|
5271  | 
next  | 
|
5272  | 
case (insertI M xs)  | 
|
5273  | 
then obtain n where "\<forall>s\<in>M. length s < n" by blast  | 
|
| 67613 | 5274  | 
hence "\<forall>s\<in>insert xs M. size s < max n (size xs) + 1" by auto  | 
| 28642 | 5275  | 
thus ?case ..  | 
5276  | 
qed  | 
|
5277  | 
||
| 45714 | 5278  | 
lemma lists_length_Suc_eq:  | 
5279  | 
  "{xs. set xs \<subseteq> A \<and> length xs = Suc n} =
 | 
|
5280  | 
    (\<lambda>(xs, n). n#xs) ` ({xs. set xs \<subseteq> A \<and> length xs = n} \<times> A)"
 | 
|
5281  | 
by (auto simp: length_Suc_conv)  | 
|
5282  | 
||
5283  | 
lemma  | 
|
5284  | 
assumes "finite A"  | 
|
5285  | 
  shows finite_lists_length_eq: "finite {xs. set xs \<subseteq> A \<and> length xs = n}"
 | 
|
5286  | 
  and card_lists_length_eq: "card {xs. set xs \<subseteq> A \<and> length xs = n} = (card A)^n"
 | 
|
| 60758 | 5287  | 
using \<open>finite A\<close>  | 
| 45714 | 5288  | 
by (induct n)  | 
5289  | 
(auto simp: card_image inj_split_Cons lists_length_Suc_eq cong: conj_cong)  | 
|
| 31557 | 5290  | 
|
5291  | 
lemma finite_lists_length_le:  | 
|
5292  | 
  assumes "finite A" shows "finite {xs. set xs \<subseteq> A \<and> length xs \<le> n}"
 | 
|
5293  | 
(is "finite ?S")  | 
|
5294  | 
proof-  | 
|
5295  | 
  have "?S = (\<Union>n\<in>{0..n}. {xs. set xs \<subseteq> A \<and> length xs = n})" by auto
 | 
|
| 60758 | 5296  | 
thus ?thesis by (auto intro!: finite_lists_length_eq[OF \<open>finite A\<close>] simp only:)  | 
| 31557 | 5297  | 
qed  | 
5298  | 
||
| 45714 | 5299  | 
lemma card_lists_length_le:  | 
5300  | 
  assumes "finite A" shows "card {xs. set xs \<subseteq> A \<and> length xs \<le> n} = (\<Sum>i\<le>n. card A^i)"
 | 
|
5301  | 
proof -  | 
|
5302  | 
  have "(\<Sum>i\<le>n. card A^i) = card (\<Union>i\<le>n. {xs. set xs \<subseteq> A \<and> length xs = i})"
 | 
|
| 60758 | 5303  | 
using \<open>finite A\<close>  | 
| 45714 | 5304  | 
by (subst card_UN_disjoint)  | 
5305  | 
(auto simp add: card_lists_length_eq finite_lists_length_eq)  | 
|
5306  | 
  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}"
 | 
|
5307  | 
by auto  | 
|
5308  | 
finally show ?thesis by simp  | 
|
5309  | 
qed  | 
|
5310  | 
||
| 
67478
 
14d3163588ae
add lemma on lists from Falling_Factorial_Sum entry
 
bulwahn 
parents: 
67443 
diff
changeset
 | 
5311  | 
lemma finite_lists_distinct_length_eq [intro]:  | 
| 
 
14d3163588ae
add lemma on lists from Falling_Factorial_Sum entry
 
bulwahn 
parents: 
67443 
diff
changeset
 | 
5312  | 
assumes "finite A"  | 
| 
 
14d3163588ae
add lemma on lists from Falling_Factorial_Sum entry
 
bulwahn 
parents: 
67443 
diff
changeset
 | 
5313  | 
  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
 | 
5314  | 
proof -  | 
| 
 
14d3163588ae
add lemma on lists from Falling_Factorial_Sum entry
 
bulwahn 
parents: 
67443 
diff
changeset
 | 
5315  | 
  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
 | 
5316  | 
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
 | 
5317  | 
  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
 | 
5318  | 
ultimately show ?thesis using finite_subset by auto  | 
| 
 
14d3163588ae
add lemma on lists from Falling_Factorial_Sum entry
 
bulwahn 
parents: 
67443 
diff
changeset
 | 
5319  | 
qed  | 
| 
 
14d3163588ae
add lemma on lists from Falling_Factorial_Sum entry
 
bulwahn 
parents: 
67443 
diff
changeset
 | 
5320  | 
|
| 45932 | 5321  | 
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
 | 
5322  | 
assumes "finite A" "k \<le> card A"  | 
| 45932 | 5323  | 
  shows "card {xs. length xs = k \<and> distinct xs \<and> set xs \<subseteq> A} = \<Prod>{card A - k + 1 .. card A}"
 | 
5324  | 
using assms  | 
|
5325  | 
proof (induct k)  | 
|
5326  | 
case 0  | 
|
5327  | 
  then have "{xs. length xs = 0 \<and> distinct xs \<and> set xs \<subseteq> A} = {[]}" by auto
 | 
|
5328  | 
then show ?case by simp  | 
|
5329  | 
next  | 
|
5330  | 
case (Suc k)  | 
|
5331  | 
let "?k_list" = "\<lambda>k xs. length xs = k \<and> distinct xs \<and> set xs \<subseteq> A"  | 
|
5332  | 
have inj_Cons: "\<And>A. inj_on (\<lambda>(xs, n). n # xs) A" by (rule inj_onI) auto  | 
|
5333  | 
||
| 
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
 | 
5334  | 
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
 | 
5335  | 
moreover note \<open>finite A\<close>  | 
| 45932 | 5336  | 
  moreover have "finite {xs. ?k_list k xs}"
 | 
| 63834 | 5337  | 
by (rule finite_subset) (use finite_lists_length_eq[OF \<open>finite A\<close>, of k] in auto)  | 
| 45932 | 5338  | 
  moreover have "\<And>i j. i \<noteq> j \<longrightarrow> {i} \<times> (A - set i) \<inter> {j} \<times> (A - set j) = {}"
 | 
5339  | 
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
 | 
5340  | 
  moreover have "\<And>i. i \<in> {xs. ?k_list k xs} \<Longrightarrow> card (A - set i) = card A - k"
 | 
| 45932 | 5341  | 
by (simp add: card_Diff_subset distinct_card)  | 
5342  | 
  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
 | 
5343  | 
      (\<lambda>(xs, n). n#xs) ` \<Union>((\<lambda>xs. {xs} \<times> (A - set xs)) ` {xs. ?k_list k xs})"
 | 
| 45932 | 5344  | 
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
 | 
5345  | 
moreover have "Suc (card A - Suc k) = card A - k" using Suc.prems by simp  | 
| 45932 | 5346  | 
  then have "(card A - k) * \<Prod>{Suc (card A - k)..card A} = \<Prod>{Suc (card A - Suc k)..card A}"
 | 
| 64272 | 5347  | 
by (subst prod.insert[symmetric]) (simp add: atLeastAtMost_insertL)+  | 
| 45932 | 5348  | 
ultimately show ?case  | 
5349  | 
by (simp add: card_image inj_Cons card_UN_disjoint Suc.hyps algebra_simps)  | 
|
5350  | 
qed  | 
|
5351  | 
||
| 
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
 | 
5352  | 
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
 | 
5353  | 
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
 | 
5354  | 
  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
 | 
5355  | 
proof -  | 
| 
72302
 
d7d90ed4c74e
fixed some remarkably ugly proofs
 
paulson <lp15@cam.ac.uk> 
parents: 
72184 
diff
changeset
 | 
5356  | 
from \<open>k < card A\<close> have "finite A" and "k \<le> card A" using card.infinite by force+  | 
| 
66358
 
fab9a53158f8
slightly generalized card_lists_distinct_length_eq; renamed specialized card_lists_distinct_length_eq to card_lists_distinct_length_eq'; tuned
 
bulwahn 
parents: 
66257 
diff
changeset
 | 
5357  | 
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
 | 
5358  | 
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
 | 
5359  | 
|
| 67091 | 5360  | 
lemma infinite_UNIV_listI: "\<not> finite(UNIV::'a list set)"  | 
| 68719 | 5361  | 
by (metis UNIV_I finite_maxlen length_replicate less_irrefl)  | 
| 28642 | 5362  | 
|
| 
71404
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
5363  | 
lemma same_length_different:  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
5364  | 
assumes "xs \<noteq> ys" and "length xs = length ys"  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
5365  | 
shows "\<exists>pre x xs' y ys'. x\<noteq>y \<and> xs = pre @ [x] @ xs' \<and> ys = pre @ [y] @ ys'"  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
5366  | 
using assms  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
5367  | 
proof (induction xs arbitrary: ys)  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
5368  | 
case Nil  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
5369  | 
then show ?case by auto  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
5370  | 
next  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
5371  | 
case (Cons x xs)  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
5372  | 
then obtain z zs where ys: "ys = Cons z zs"  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
5373  | 
by (metis length_Suc_conv)  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
5374  | 
show ?case  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
5375  | 
proof (cases "x=z")  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
5376  | 
case True  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
5377  | 
then have "xs \<noteq> zs" "length xs = length zs"  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
5378  | 
using Cons.prems ys by auto  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
5379  | 
then obtain pre u xs' v ys' where "u\<noteq>v" and xs: "xs = pre @ [u] @ xs'" and zs: "zs = pre @ [v] @ys'"  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
5380  | 
using Cons.IH by meson  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
5381  | 
then have "x # xs = (z#pre) @ [u] @ xs' \<and> ys = (z#pre) @ [v] @ ys'"  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
5382  | 
by (simp add: True ys)  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
5383  | 
with \<open>u\<noteq>v\<close> show ?thesis  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
5384  | 
by blast  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
5385  | 
next  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
5386  | 
case False  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
5387  | 
then have "x # xs = [] @ [x] @ xs \<and> ys = [] @ [z] @ zs"  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
5388  | 
by (simp add: ys)  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
5389  | 
then show ?thesis  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
5390  | 
using False by blast  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
5391  | 
qed  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
5392  | 
qed  | 
| 28642 | 5393  | 
|
| 60758 | 5394  | 
subsection \<open>Sorting\<close>  | 
5395  | 
||
| 69593 | 5396  | 
subsubsection \<open>\<^const>\<open>sorted_wrt\<close>\<close>  | 
5397  | 
||
5398  | 
text \<open>Sometimes the second equation in the definition of \<^const>\<open>sorted_wrt\<close> is too aggressive  | 
|
| 68125 | 5399  | 
because it relates each list element to \emph{all} its successors. Then this equation
 | 
5400  | 
should be removed and \<open>sorted_wrt2_simps\<close> should be added instead.\<close>  | 
|
5401  | 
||
5402  | 
lemma sorted_wrt1: "sorted_wrt P [x] = True"  | 
|
5403  | 
by(simp)  | 
|
5404  | 
||
5405  | 
lemma sorted_wrt2: "transp P \<Longrightarrow> sorted_wrt P (x # y # zs) = (P x y \<and> sorted_wrt P (y # zs))"  | 
|
| 68719 | 5406  | 
proof (induction zs arbitrary: x y)  | 
5407  | 
case (Cons z zs)  | 
|
5408  | 
then show ?case  | 
|
5409  | 
by simp (meson transpD)+  | 
|
5410  | 
qed auto  | 
|
| 68125 | 5411  | 
|
5412  | 
lemmas sorted_wrt2_simps = sorted_wrt1 sorted_wrt2  | 
|
| 
66434
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5413  | 
|
| 68141 | 5414  | 
lemma sorted_wrt_true [simp]:  | 
5415  | 
"sorted_wrt (\<lambda>_ _. True) xs"  | 
|
5416  | 
by (induction xs) simp_all  | 
|
5417  | 
||
| 
66434
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5418  | 
lemma sorted_wrt_append:  | 
| 68109 | 5419  | 
"sorted_wrt P (xs @ ys) \<longleftrightarrow>  | 
| 66892 | 5420  | 
sorted_wrt P xs \<and> sorted_wrt P ys \<and> (\<forall>x\<in>set xs. \<forall>y\<in>set ys. P x y)"  | 
| 68109 | 5421  | 
by (induction xs) auto  | 
| 
66890
 
e92d48a42a01
drop a superfluous assumption that was found by the find_unused_assms command and tune proof
 
bulwahn 
parents: 
66889 
diff
changeset
 | 
5422  | 
|
| 68141 | 5423  | 
lemma sorted_wrt_map:  | 
5424  | 
"sorted_wrt R (map f xs) = sorted_wrt (\<lambda>x y. R (f x) (f y)) xs"  | 
|
5425  | 
by (induction xs) simp_all  | 
|
5426  | 
||
| 71444 | 5427  | 
lemma  | 
5428  | 
assumes "sorted_wrt f xs"  | 
|
5429  | 
shows sorted_wrt_take: "sorted_wrt f (take n xs)"  | 
|
5430  | 
and sorted_wrt_drop: "sorted_wrt f (drop n xs)"  | 
|
5431  | 
proof -  | 
|
5432  | 
from assms have "sorted_wrt f (take n xs @ drop n xs)" by simp  | 
|
5433  | 
thus "sorted_wrt f (take n xs)" and "sorted_wrt f (drop n xs)"  | 
|
5434  | 
unfolding sorted_wrt_append by simp_all  | 
|
5435  | 
qed  | 
|
5436  | 
||
5437  | 
lemma sorted_wrt_filter:  | 
|
5438  | 
"sorted_wrt f xs \<Longrightarrow> sorted_wrt f (filter P xs)"  | 
|
5439  | 
by (induction xs) auto  | 
|
5440  | 
||
| 
66890
 
e92d48a42a01
drop a superfluous assumption that was found by the find_unused_assms command and tune proof
 
bulwahn 
parents: 
66889 
diff
changeset
 | 
5441  | 
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
 | 
5442  | 
"sorted_wrt P (rev xs) = sorted_wrt (\<lambda>x y. P y x) xs"  | 
| 68109 | 5443  | 
by (induction xs) (auto simp add: sorted_wrt_append)  | 
| 
66434
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5444  | 
|
| 68141 | 5445  | 
lemma sorted_wrt_mono_rel:  | 
5446  | 
"(\<And>x y. \<lbrakk> x \<in> set xs; y \<in> set xs; P x y \<rbrakk> \<Longrightarrow> Q x y) \<Longrightarrow> sorted_wrt P xs \<Longrightarrow> sorted_wrt Q xs"  | 
|
| 68109 | 5447  | 
by(induction xs)(auto)  | 
| 66442 | 5448  | 
|
| 67973 | 5449  | 
lemma sorted_wrt01: "length xs \<le> 1 \<Longrightarrow> sorted_wrt P xs"  | 
5450  | 
by(auto simp: le_Suc_eq length_Suc_conv)  | 
|
5451  | 
||
| 68175 | 5452  | 
lemma sorted_wrt_iff_nth_less:  | 
| 68156 | 5453  | 
"sorted_wrt P xs = (\<forall>i j. i < j \<longrightarrow> j < length xs \<longrightarrow> P (xs ! i) (xs ! j))"  | 
| 68719 | 5454  | 
by (induction xs) (auto simp add: in_set_conv_nth Ball_def nth_Cons split: nat.split)  | 
| 68156 | 5455  | 
|
5456  | 
lemma sorted_wrt_nth_less:  | 
|
5457  | 
"\<lbrakk> sorted_wrt P xs; i < j; j < length xs \<rbrakk> \<Longrightarrow> P (xs ! i) (xs ! j)"  | 
|
| 68175 | 5458  | 
by(auto simp: sorted_wrt_iff_nth_less)  | 
| 
66434
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5459  | 
|
| 73017 | 5460  | 
lemma sorted_wrt_iff_nth_Suc_transp: assumes "transp P"  | 
5461  | 
shows "sorted_wrt P xs \<longleftrightarrow> (\<forall>i. Suc i < length xs \<longrightarrow> P (xs!i) (xs!(Suc i)))" (is "?L = ?R")  | 
|
5462  | 
proof  | 
|
5463  | 
assume ?L  | 
|
5464  | 
thus ?R  | 
|
5465  | 
by (simp add: sorted_wrt_iff_nth_less)  | 
|
5466  | 
next  | 
|
5467  | 
assume ?R  | 
|
5468  | 
have "i < j \<Longrightarrow> j < length xs \<Longrightarrow> P (xs ! i) (xs ! j)" for i j  | 
|
5469  | 
by(induct i j rule: less_Suc_induct)(simp add: \<open>?R\<close>, meson assms transpE transp_less)  | 
|
5470  | 
thus ?L  | 
|
5471  | 
by (simp add: sorted_wrt_iff_nth_less)  | 
|
5472  | 
qed  | 
|
5473  | 
||
| 68141 | 5474  | 
lemma sorted_wrt_upt[simp]: "sorted_wrt (<) [m..<n]"  | 
| 
66434
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5475  | 
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
 | 
5476  | 
|
| 68191 | 5477  | 
lemma sorted_wrt_upto[simp]: "sorted_wrt (<) [i..j]"  | 
| 68719 | 5478  | 
proof(induct i j rule:upto.induct)  | 
5479  | 
case (1 i j)  | 
|
5480  | 
from this show ?case  | 
|
5481  | 
unfolding upto.simps[of i j] by auto  | 
|
5482  | 
qed  | 
|
| 68175 | 5483  | 
|
| 
66434
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5484  | 
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
 | 
5485  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5486  | 
lemma sorted_wrt_less_idx:  | 
| 67399 | 5487  | 
"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
 | 
5488  | 
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
 | 
5489  | 
case Nil thus ?case by simp  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5490  | 
next  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5491  | 
case snoc  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5492  | 
thus ?case  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5493  | 
by (auto simp: nth_append sorted_wrt_append)  | 
| 66892 | 5494  | 
(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
 | 
5495  | 
qed  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5496  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5497  | 
|
| 69593 | 5498  | 
subsubsection \<open>\<^const>\<open>sorted\<close>\<close>  | 
| 24617 | 5499  | 
|
| 24616 | 5500  | 
context linorder  | 
5501  | 
begin  | 
|
5502  | 
||
| 69593 | 5503  | 
text \<open>Sometimes the second equation in the definition of \<^const>\<open>sorted\<close> is too aggressive  | 
| 68111 | 5504  | 
because it relates each list element to \emph{all} its successors. Then this equation
 | 
| 68118 | 5505  | 
should be removed and \<open>sorted2_simps\<close> should be added instead.  | 
5506  | 
Executable code is one such use case.\<close>  | 
|
5507  | 
||
| 73707 | 5508  | 
lemma sorted0: "sorted [] = True"  | 
5509  | 
by simp  | 
|
5510  | 
||
| 68118 | 5511  | 
lemma sorted1: "sorted [x] = True"  | 
| 73707 | 5512  | 
by simp  | 
| 68111 | 5513  | 
|
5514  | 
lemma sorted2: "sorted (x # y # zs) = (x \<le> y \<and> sorted (y # zs))"  | 
|
| 73707 | 5515  | 
by(induction zs) auto  | 
| 68111 | 5516  | 
|
5517  | 
lemmas sorted2_simps = sorted1 sorted2  | 
|
5518  | 
||
| 73707 | 5519  | 
lemmas [code] = sorted0 sorted2_simps  | 
| 68118 | 5520  | 
|
| 68175 | 5521  | 
lemma sorted_append:  | 
5522  | 
"sorted (xs@ys) = (sorted xs \<and> sorted ys \<and> (\<forall>x \<in> set xs. \<forall>y \<in> set ys. x\<le>y))"  | 
|
| 73707 | 5523  | 
by (simp add: sorted_wrt_append)  | 
| 68175 | 5524  | 
|
5525  | 
lemma sorted_map:  | 
|
5526  | 
"sorted (map f xs) = sorted_wrt (\<lambda>x y. f x \<le> f y) xs"  | 
|
| 73707 | 5527  | 
by (simp add: sorted_wrt_map)  | 
| 68175 | 5528  | 
|
| 68160 | 5529  | 
lemma sorted01: "length xs \<le> 1 \<Longrightarrow> sorted xs"  | 
| 73707 | 5530  | 
by (simp add: sorted_wrt01)  | 
| 68160 | 5531  | 
|
| 
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
 | 
5532  | 
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
 | 
5533  | 
"sorted xs \<Longrightarrow> sorted (tl xs)"  | 
| 73707 | 5534  | 
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
 | 
5535  | 
|
| 68186 | 5536  | 
lemma sorted_iff_nth_mono_less:  | 
| 68175 | 5537  | 
"sorted xs = (\<forall>i j. i < j \<longrightarrow> j < length xs \<longrightarrow> xs ! i \<le> xs ! j)"  | 
| 73707 | 5538  | 
by (simp add: sorted_wrt_iff_nth_less)  | 
| 24616 | 5539  | 
|
| 68186 | 5540  | 
lemma sorted_iff_nth_mono:  | 
5541  | 
"sorted xs = (\<forall>i j. i \<le> j \<longrightarrow> j < length xs \<longrightarrow> xs ! i \<le> xs ! j)"  | 
|
| 73707 | 5542  | 
by (auto simp: sorted_iff_nth_mono_less nat_less_le)  | 
| 68186 | 5543  | 
|
| 31201 | 5544  | 
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
 | 
5545  | 
"sorted xs \<Longrightarrow> i \<le> j \<Longrightarrow> j < length xs \<Longrightarrow> xs!i \<le> xs!j"  | 
| 73707 | 5546  | 
by (auto simp: sorted_iff_nth_mono)  | 
| 31201 | 5547  | 
|
| 73017 | 5548  | 
lemma sorted_iff_nth_Suc:  | 
5549  | 
"sorted xs \<longleftrightarrow> (\<forall>i. Suc i < length xs \<longrightarrow> xs!i \<le> xs!(Suc i))"  | 
|
| 73707 | 5550  | 
by(simp add: sorted_wrt_iff_nth_Suc_transp)  | 
| 73017 | 5551  | 
|
| 
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
 | 
5552  | 
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
 | 
5553  | 
"sorted (rev xs) \<Longrightarrow> i \<le> j \<Longrightarrow> j < length xs \<Longrightarrow> xs!j \<le> xs!i"  | 
| 73707 | 5554  | 
using sorted_nth_mono[ of "rev xs" "length xs - j - 1" "length xs - i - 1"]  | 
5555  | 
rev_nth[of "length xs - i - 1" "xs"] rev_nth[of "length xs - j - 1" "xs"]  | 
|
5556  | 
by auto  | 
|
| 68176 | 5557  | 
|
| 73017 | 5558  | 
lemma sorted_rev_iff_nth_mono:  | 
5559  | 
"sorted (rev xs) \<longleftrightarrow> (\<forall> i j. i \<le> j \<longrightarrow> j < length xs \<longrightarrow> xs!j \<le> xs!i)" (is "?L = ?R")  | 
|
5560  | 
proof  | 
|
5561  | 
assume ?L thus ?R  | 
|
5562  | 
by (blast intro: sorted_rev_nth_mono)  | 
|
5563  | 
next  | 
|
5564  | 
assume ?R  | 
|
5565  | 
have "rev xs ! k \<le> rev xs ! l" if asms: "k \<le> l" "l < length(rev xs)" for k l  | 
|
5566  | 
proof -  | 
|
5567  | 
have "k < length xs" "l < length xs"  | 
|
5568  | 
"length xs - Suc l \<le> length xs - Suc k" "length xs - Suc k < length xs"  | 
|
5569  | 
using asms by auto  | 
|
5570  | 
thus "rev xs ! k \<le> rev xs ! l"  | 
|
5571  | 
using \<open>?R\<close> \<open>k \<le> l\<close> unfolding rev_nth[OF \<open>k < length xs\<close>] rev_nth[OF \<open>l < length xs\<close>] by blast  | 
|
5572  | 
qed  | 
|
5573  | 
thus ?L by (simp add: sorted_iff_nth_mono)  | 
|
5574  | 
qed  | 
|
5575  | 
||
5576  | 
lemma sorted_rev_iff_nth_Suc:  | 
|
5577  | 
"sorted (rev xs) \<longleftrightarrow> (\<forall>i. Suc i < length xs \<longrightarrow> xs!(Suc i) \<le> xs!i)"  | 
|
5578  | 
proof-  | 
|
5579  | 
interpret dual: linorder "(\<lambda>x y. y \<le> x)" "(\<lambda>x y. y < x)"  | 
|
5580  | 
using dual_linorder .  | 
|
5581  | 
show ?thesis  | 
|
5582  | 
using dual_linorder dual.sorted_iff_nth_Suc dual.sorted_iff_nth_mono  | 
|
5583  | 
unfolding sorted_rev_iff_nth_mono by simp  | 
|
5584  | 
qed  | 
|
5585  | 
||
| 
66434
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5586  | 
lemma sorted_map_remove1:  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5587  | 
"sorted (map f xs) \<Longrightarrow> sorted (map f (remove1 x xs))"  | 
| 68109 | 5588  | 
by (induct xs) (auto)  | 
| 
66434
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5589  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5590  | 
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
 | 
5591  | 
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
 | 
5592  | 
|
| 36851 | 5593  | 
lemma sorted_butlast:  | 
5594  | 
assumes "xs \<noteq> []" and "sorted xs"  | 
|
5595  | 
shows "sorted (butlast xs)"  | 
|
5596  | 
proof -  | 
|
| 
66434
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5597  | 
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
 | 
5598  | 
by (cases xs rule: rev_cases) auto  | 
| 60758 | 5599  | 
with \<open>sorted xs\<close> show ?thesis by (simp add: sorted_append)  | 
| 36851 | 5600  | 
qed  | 
| 64963 | 5601  | 
|
| 66905 | 5602  | 
lemma sorted_replicate [simp]: "sorted(replicate n x)"  | 
| 68109 | 5603  | 
by(induction n) (auto)  | 
| 66905 | 5604  | 
|
| 
26143
 
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
 
bulwahn 
parents: 
26073 
diff
changeset
 | 
5605  | 
lemma sorted_remdups[simp]:  | 
| 68109 | 5606  | 
"sorted xs \<Longrightarrow> sorted (remdups xs)"  | 
5607  | 
by (induct xs) (auto)  | 
|
| 
26143
 
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
 
bulwahn 
parents: 
26073 
diff
changeset
 | 
5608  | 
|
| 
53721
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
5609  | 
lemma sorted_remdups_adj[simp]:  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
5610  | 
"sorted xs \<Longrightarrow> sorted (remdups_adj xs)"  | 
| 68109 | 5611  | 
by (induct xs rule: remdups_adj.induct, simp_all split: if_split_asm)  | 
| 
53721
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
5612  | 
|
| 66853 | 5613  | 
lemma sorted_nths: "sorted xs \<Longrightarrow> sorted (nths xs I)"  | 
| 68109 | 5614  | 
by(induction xs arbitrary: I)(auto simp: nths_Cons)  | 
| 66853 | 5615  | 
|
| 24645 | 5616  | 
lemma sorted_distinct_set_unique:  | 
5617  | 
assumes "sorted xs" "distinct xs" "sorted ys" "distinct ys" "set xs = set ys"  | 
|
5618  | 
shows "xs = ys"  | 
|
5619  | 
proof -  | 
|
| 26734 | 5620  | 
from assms have 1: "length xs = length ys" by (auto dest!: distinct_card)  | 
| 24645 | 5621  | 
from assms show ?thesis  | 
5622  | 
proof(induct rule:list_induct2[OF 1])  | 
|
5623  | 
case 1 show ?case by simp  | 
|
5624  | 
next  | 
|
| 73411 | 5625  | 
case (2 x xs y ys)  | 
5626  | 
then show ?case  | 
|
5627  | 
by (cases \<open>x = y\<close>) (auto simp add: insert_eq_iff)  | 
|
| 24645 | 5628  | 
qed  | 
5629  | 
qed  | 
|
5630  | 
||
| 35603 | 5631  | 
lemma map_sorted_distinct_set_unique:  | 
5632  | 
assumes "inj_on f (set xs \<union> set ys)"  | 
|
5633  | 
assumes "sorted (map f xs)" "distinct (map f xs)"  | 
|
5634  | 
"sorted (map f ys)" "distinct (map f ys)"  | 
|
5635  | 
assumes "set xs = set ys"  | 
|
5636  | 
shows "xs = ys"  | 
|
5637  | 
proof -  | 
|
5638  | 
from assms have "map f xs = map f ys"  | 
|
5639  | 
by (simp add: sorted_distinct_set_unique)  | 
|
| 60758 | 5640  | 
with \<open>inj_on f (set xs \<union> set ys)\<close> show "xs = ys"  | 
| 35603 | 5641  | 
by (blast intro: map_inj_on)  | 
5642  | 
qed  | 
|
5643  | 
||
| 
39915
 
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
 
haftmann 
parents: 
39774 
diff
changeset
 | 
5644  | 
lemma  | 
| 
 
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
 
haftmann 
parents: 
39774 
diff
changeset
 | 
5645  | 
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
 | 
5646  | 
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
 | 
5647  | 
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
 | 
5648  | 
proof -  | 
| 
 
ecf97cf3d248
turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
 
haftmann 
parents: 
39774 
diff
changeset
 | 
5649  | 
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
 | 
5650  | 
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
 | 
5651  | 
unfolding sorted_append by simp_all  | 
| 29626 | 5652  | 
qed  | 
5653  | 
||
| 
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
 | 
5654  | 
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
 | 
5655  | 
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
 | 
5656  | 
|
| 
 
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
 
hoelzl 
parents: 
33593 
diff
changeset
 | 
5657  | 
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
 | 
5658  | 
by (subst takeWhile_eq_take) (auto dest: sorted_take)  | 
| 29626 | 5659  | 
|
| 34933 | 5660  | 
lemma sorted_filter:  | 
5661  | 
"sorted (map f xs) \<Longrightarrow> sorted (map f (filter P xs))"  | 
|
| 68109 | 5662  | 
by (induct xs) simp_all  | 
| 34933 | 5663  | 
|
5664  | 
lemma foldr_max_sorted:  | 
|
5665  | 
assumes "sorted (rev xs)"  | 
|
5666  | 
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
 | 
5667  | 
using assms  | 
| 
 
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
 
wenzelm 
parents: 
53017 
diff
changeset
 | 
5668  | 
proof (induct xs)  | 
| 34933 | 5669  | 
case (Cons x xs)  | 
| 
53374
 
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
 
wenzelm 
parents: 
53017 
diff
changeset
 | 
5670  | 
then have "sorted (rev xs)" using sorted_append by auto  | 
| 
 
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
 
wenzelm 
parents: 
53017 
diff
changeset
 | 
5671  | 
with Cons show ?case  | 
| 
 
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
 
wenzelm 
parents: 
53017 
diff
changeset
 | 
5672  | 
by (cases xs) (auto simp add: sorted_append max_def)  | 
| 34933 | 5673  | 
qed simp  | 
5674  | 
||
5675  | 
lemma filter_equals_takeWhile_sorted_rev:  | 
|
5676  | 
assumes sorted: "sorted (rev (map f xs))"  | 
|
| 
68249
 
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
 
nipkow 
parents: 
68215 
diff
changeset
 | 
5677  | 
shows "filter (\<lambda>x. t < f x) xs = takeWhile (\<lambda> x. t < f x) xs"  | 
| 34933 | 5678  | 
(is "filter ?P xs = ?tW")  | 
5679  | 
proof (rule takeWhile_eq_filter[symmetric])  | 
|
5680  | 
let "?dW" = "dropWhile ?P xs"  | 
|
5681  | 
fix x assume "x \<in> set ?dW"  | 
|
5682  | 
then obtain i where i: "i < length ?dW" and nth_i: "x = ?dW ! i"  | 
|
5683  | 
unfolding in_set_conv_nth by auto  | 
|
5684  | 
hence "length ?tW + i < length (?tW @ ?dW)"  | 
|
5685  | 
unfolding length_append by simp  | 
|
5686  | 
hence i': "length (map f ?tW) + i < length (map f xs)" by simp  | 
|
5687  | 
have "(map f ?tW @ map f ?dW) ! (length (map f ?tW) + i) \<le>  | 
|
5688  | 
(map f ?tW @ map f ?dW) ! (length (map f ?tW) + 0)"  | 
|
5689  | 
using sorted_rev_nth_mono[OF sorted _ i', of "length ?tW"]  | 
|
5690  | 
unfolding map_append[symmetric] by simp  | 
|
5691  | 
hence "f x \<le> f (?dW ! 0)"  | 
|
5692  | 
unfolding nth_append_length_plus nth_i  | 
|
5693  | 
using i preorder_class.le_less_trans[OF le0 i] by simp  | 
|
5694  | 
also have "... \<le> t"  | 
|
5695  | 
using hd_dropWhile[of "?P" xs] le0[THEN preorder_class.le_less_trans, OF i]  | 
|
5696  | 
using hd_conv_nth[of "?dW"] by simp  | 
|
5697  | 
finally show "\<not> t < f x" by simp  | 
|
5698  | 
qed  | 
|
5699  | 
||
| 
66434
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5700  | 
lemma sorted_map_same:  | 
| 
68249
 
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
 
nipkow 
parents: 
68215 
diff
changeset
 | 
5701  | 
"sorted (map f (filter (\<lambda>x. f x = g xs) xs))"  | 
| 
66434
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5702  | 
proof (induct xs arbitrary: g)  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5703  | 
case Nil then show ?case by simp  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5704  | 
next  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5705  | 
case (Cons x xs)  | 
| 
68249
 
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
 
nipkow 
parents: 
68215 
diff
changeset
 | 
5706  | 
then have "sorted (map f (filter (\<lambda>y. f y = (\<lambda>xs. f x) xs) xs))" .  | 
| 
 
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
 
nipkow 
parents: 
68215 
diff
changeset
 | 
5707  | 
moreover from Cons have "sorted (map f (filter (\<lambda>y. f y = (g \<circ> Cons x) xs) xs))" .  | 
| 68109 | 5708  | 
ultimately show ?case by simp_all  | 
| 
66434
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5709  | 
qed  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5710  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5711  | 
lemma sorted_same:  | 
| 
68249
 
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
 
nipkow 
parents: 
68215 
diff
changeset
 | 
5712  | 
"sorted (filter (\<lambda>x. x = g xs) xs)"  | 
| 
66434
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5713  | 
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
 | 
5714  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5715  | 
end  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5716  | 
|
| 68190 | 5717  | 
lemma sorted_upt[simp]: "sorted [m..<n]"  | 
| 73707 | 5718  | 
by(simp add: sorted_wrt_mono_rel[OF _ sorted_wrt_upt])  | 
| 68190 | 5719  | 
|
5720  | 
lemma sorted_upto[simp]: "sorted [m..n]"  | 
|
| 73707 | 5721  | 
by(simp add: sorted_wrt_mono_rel[OF _ sorted_wrt_upto])  | 
| 68190 | 5722  | 
|
| 
66434
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5723  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5724  | 
subsubsection \<open>Sorting functions\<close>  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5725  | 
|
| 69593 | 5726  | 
text\<open>Currently it is not shown that \<^const>\<open>sort\<close> returns a  | 
| 
66434
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5727  | 
permutation of its input because the nicest proof is via multisets,  | 
| 66654 | 5728  | 
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
 | 
5729  | 
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
 | 
5730  | 
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
 | 
5731  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5732  | 
context linorder  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5733  | 
begin  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5734  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5735  | 
lemma set_insort_key:  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5736  | 
"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
 | 
5737  | 
by (induct xs) auto  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5738  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5739  | 
lemma length_insort [simp]:  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5740  | 
"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
 | 
5741  | 
by (induct xs) simp_all  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5742  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5743  | 
lemma insort_key_left_comm:  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5744  | 
assumes "f x \<noteq> f y"  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5745  | 
shows "insort_key f y (insort_key f x xs) = insort_key f x (insort_key f y xs)"  | 
| 73411 | 5746  | 
by (induct xs) (auto simp add: assms dest: order.antisym)  | 
| 
66434
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5747  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5748  | 
lemma insort_left_comm:  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5749  | 
"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
 | 
5750  | 
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
 | 
5751  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5752  | 
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
 | 
5753  | 
proof  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5754  | 
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
 | 
5755  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5756  | 
lemma sort_key_simps [simp]:  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5757  | 
"sort_key f [] = []"  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5758  | 
"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
 | 
5759  | 
by (simp_all add: sort_key_def)  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5760  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5761  | 
lemma sort_key_conv_fold:  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5762  | 
assumes "inj_on f (set xs)"  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5763  | 
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
 | 
5764  | 
proof -  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5765  | 
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
 | 
5766  | 
proof (rule fold_rev, rule ext)  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5767  | 
fix zs  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5768  | 
fix x y  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5769  | 
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
 | 
5770  | 
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
 | 
5771  | 
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
 | 
5772  | 
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
 | 
5773  | 
by (induct zs) (auto intro: * simp add: **)  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5774  | 
qed  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5775  | 
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
 | 
5776  | 
qed  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5777  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5778  | 
lemma sort_conv_fold:  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5779  | 
"sort xs = fold insort xs []"  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5780  | 
by (rule sort_key_conv_fold) simp  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5781  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5782  | 
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
 | 
5783  | 
by (induct xs, auto)  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5784  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5785  | 
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
 | 
5786  | 
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
 | 
5787  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5788  | 
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
 | 
5789  | 
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
 | 
5790  | 
|
| 73832 | 5791  | 
lemma distinct_insort_key:  | 
5792  | 
"distinct (map f (insort_key f x xs)) = (f x \<notin> f ` set xs \<and> (distinct (map f xs)))"  | 
|
5793  | 
by (induct xs) (auto simp: set_insort_key)  | 
|
5794  | 
||
| 
66434
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5795  | 
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
 | 
5796  | 
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
 | 
5797  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5798  | 
lemma sorted_insort_key: "sorted (map f (insort_key f x xs)) = sorted (map f xs)"  | 
| 68109 | 5799  | 
by (induct xs) (auto simp: set_insort_key)  | 
| 
66434
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5800  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5801  | 
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
 | 
5802  | 
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
 | 
5803  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5804  | 
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
 | 
5805  | 
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
 | 
5806  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5807  | 
theorem sorted_sort [simp]: "sorted (sort xs)"  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5808  | 
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
 | 
5809  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5810  | 
lemma insort_not_Nil [simp]:  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5811  | 
"insort_key f a xs \<noteq> []"  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5812  | 
by (induction xs) simp_all  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5813  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5814  | 
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
 | 
5815  | 
by (cases xs) auto  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5816  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5817  | 
lemma sorted_sort_id: "sorted xs \<Longrightarrow> sort xs = xs"  | 
| 68109 | 5818  | 
by (induct xs) (auto simp add: insort_is_Cons)  | 
| 
66434
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5819  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5820  | 
lemma insort_key_remove1:  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5821  | 
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
 | 
5822  | 
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
 | 
5823  | 
using assms proof (induct xs)  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5824  | 
case (Cons x xs)  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5825  | 
then show ?case  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5826  | 
proof (cases "x = a")  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5827  | 
case False  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5828  | 
then have "f x \<noteq> f a" using Cons.prems by auto  | 
| 68109 | 5829  | 
then have "f x < f a" using Cons.prems by auto  | 
5830  | 
with \<open>f x \<noteq> f a\<close> show ?thesis using Cons by (auto simp: insort_is_Cons)  | 
|
5831  | 
qed (auto simp: insort_is_Cons)  | 
|
| 
66434
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5832  | 
qed simp  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5833  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5834  | 
lemma insort_remove1:  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5835  | 
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
 | 
5836  | 
shows "insort a (remove1 a xs) = xs"  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5837  | 
proof (rule insort_key_remove1)  | 
| 67399 | 5838  | 
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
 | 
5839  | 
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
 | 
5840  | 
from \<open>sorted xs\<close> show "sorted (map (\<lambda>x. x) xs)" by simp  | 
| 67399 | 5841  | 
from \<open>a \<in> set xs\<close> have "a \<in> set (filter ((=) a) xs)" by auto  | 
5842  | 
  then have "set (filter ((=) a) xs) \<noteq> {}" by auto
 | 
|
5843  | 
then have "filter ((=) a) xs \<noteq> []" by (auto simp only: set_empty)  | 
|
5844  | 
then have "length (filter ((=) a) xs) > 0" by simp  | 
|
5845  | 
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
 | 
5846  | 
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
 | 
5847  | 
by simp  | 
| 67399 | 5848  | 
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
 | 
5849  | 
qed  | 
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5850  | 
|
| 
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5851  | 
lemma finite_sorted_distinct_unique:  | 
| 68719 | 5852  | 
assumes "finite A" shows "\<exists>!xs. set xs = A \<and> sorted xs \<and> distinct xs"  | 
5853  | 
proof -  | 
|
5854  | 
obtain xs where "distinct xs" "A = set xs"  | 
|
5855  | 
using finite_distinct_list [OF assms] by metis  | 
|
5856  | 
then show ?thesis  | 
|
5857  | 
by (rule_tac a="sort xs" in ex1I) (auto simp: sorted_distinct_set_unique)  | 
|
5858  | 
qed  | 
|
| 
66434
 
5d7e770c7d5d
added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
 
nipkow 
parents: 
66358 
diff
changeset
 | 
5859  | 
|
| 
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
 | 
5860  | 
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
 | 
5861  | 
"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
 | 
5862  | 
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
 | 
5863  | 
|
| 
 
aee7ef725330
sorting: avoid _key suffix if lemma applies both to simple and generalized variant; generalized insort_insert to insort_insert_key; additional lemmas
 
haftmann 
parents: 
40195 
diff
changeset
 | 
5864  | 
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
 | 
5865  | 
"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
 | 
5866  | 
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
 | 
5867  | 
|
| 
 
aee7ef725330
sorting: avoid _key suffix if lemma applies both to simple and generalized variant; generalized insort_insert to insort_insert_key; additional lemmas
 
haftmann 
parents: 
40195 
diff
changeset
 | 
5868  | 
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
 | 
5869  | 
"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
 | 
5870  | 
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
 | 
5871  | 
|
| 
 
aee7ef725330
sorting: avoid _key suffix if lemma applies both to simple and generalized variant; generalized insort_insert to insort_insert_key; additional lemmas
 
haftmann 
parents: 
40195 
diff
changeset
 | 
5872  | 
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
 | 
5873  | 
"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
 | 
5874  | 
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
 | 
5875  | 
|
| 35608 | 5876  | 
lemma set_insort_insert:  | 
5877  | 
"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
 | 
5878  | 
by (auto simp add: insort_insert_key_def set_insort_key)  | 
| 35608 | 5879  | 
|
5880  | 
lemma distinct_insort_insert:  | 
|
5881  | 
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
 | 
5882  | 
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
 | 
5883  | 
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
 | 
5884  | 
|
| 
 
aee7ef725330
sorting: avoid _key suffix if lemma applies both to simple and generalized variant; generalized insort_insert to insort_insert_key; additional lemmas
 
haftmann 
parents: 
40195 
diff
changeset
 | 
5885  | 
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
 | 
5886  | 
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
 | 
5887  | 
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
 | 
5888  | 
using assms by (simp add: insort_insert_key_def sorted_insort_key)  | 
| 35608 | 5889  | 
|
5890  | 
lemma sorted_insort_insert:  | 
|
5891  | 
assumes "sorted xs"  | 
|
5892  | 
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
 | 
5893  | 
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
 | 
5894  | 
|
| 
 
aee7ef725330
sorting: avoid _key suffix if lemma applies both to simple and generalized variant; generalized insort_insert to insort_insert_key; additional lemmas
 
haftmann 
parents: 
40195 
diff
changeset
 | 
5895  | 
lemma filter_insort_triv:  | 
| 37107 | 5896  | 
"\<not> P x \<Longrightarrow> filter P (insort_key f x xs) = filter P xs"  | 
5897  | 
by (induct xs) simp_all  | 
|
5898  | 
||
| 
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
 | 
5899  | 
lemma filter_insort:  | 
| 37107 | 5900  | 
"sorted (map f xs) \<Longrightarrow> P x \<Longrightarrow> filter P (insort_key f x xs) = insort_key f x (filter P xs)"  | 
| 68109 | 5901  | 
by (induct xs) (auto, subst insort_is_Cons, auto)  | 
| 37107 | 5902  | 
|
| 
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
 | 
5903  | 
lemma filter_sort:  | 
| 37107 | 5904  | 
"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
 | 
5905  | 
by (induct xs) (simp_all add: filter_insort_triv filter_insort)  | 
| 37107 | 5906  | 
|
| 73832 | 5907  | 
lemma remove1_insort_key [simp]:  | 
5908  | 
"remove1 x (insort_key f x xs) = xs"  | 
|
| 37107 | 5909  | 
by (induct xs) simp_all  | 
5910  | 
||
| 24616 | 5911  | 
end  | 
5912  | 
||
| 68191 | 5913  | 
lemma sort_upt [simp]: "sort [m..<n] = [m..<n]"  | 
5914  | 
by (rule sorted_sort_id) simp  | 
|
5915  | 
||
5916  | 
lemma sort_upto [simp]: "sort [i..j] = [i..j]"  | 
|
5917  | 
by (rule sorted_sort_id) simp  | 
|
| 
32415
 
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
 
nipkow 
parents: 
32078 
diff
changeset
 | 
5918  | 
|
| 52379 | 5919  | 
lemma sorted_find_Min:  | 
| 67479 | 5920  | 
  "sorted xs \<Longrightarrow> \<exists>x \<in> set xs. P x \<Longrightarrow> List.find P xs = Some (Min {x\<in>set xs. P x})"
 | 
5921  | 
proof (induct xs)  | 
|
| 52379 | 5922  | 
case Nil then show ?case by simp  | 
5923  | 
next  | 
|
| 67479 | 5924  | 
case (Cons x xs) show ?case proof (cases "P x")  | 
5925  | 
case True  | 
|
| 68109 | 5926  | 
with Cons show ?thesis by (auto intro: Min_eqI [symmetric])  | 
| 52379 | 5927  | 
next  | 
5928  | 
    case False then have "{y. (y = x \<or> y \<in> set xs) \<and> P y} = {y \<in> set xs. P y}"
 | 
|
5929  | 
by auto  | 
|
| 68109 | 5930  | 
with Cons False show ?thesis by (simp_all)  | 
| 52379 | 5931  | 
qed  | 
5932  | 
qed  | 
|
5933  | 
||
| 66853 | 5934  | 
lemma sorted_enumerate [simp]: "sorted (map fst (enumerate n xs))"  | 
5935  | 
by (simp add: enumerate_eq_zip)  | 
|
| 58437 | 5936  | 
|
| 69593 | 5937  | 
text \<open>Stability of \<^const>\<open>sort_key\<close>:\<close>  | 
| 67684 | 5938  | 
|
| 
68249
 
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
 
nipkow 
parents: 
68215 
diff
changeset
 | 
5939  | 
lemma sort_key_stable: "filter (\<lambda>y. f y = k) (sort_key f xs) = filter (\<lambda>y. f y = k) xs"  | 
| 70296 | 5940  | 
by (induction xs) (auto simp: filter_insort insort_is_Cons filter_insort_triv)  | 
| 66654 | 5941  | 
|
| 67684 | 5942  | 
corollary stable_sort_key_sort_key: "stable_sort_key sort_key"  | 
5943  | 
by(simp add: stable_sort_key_def sort_key_stable)  | 
|
5944  | 
||
| 67606 | 5945  | 
lemma sort_key_const: "sort_key (\<lambda>x. c) xs = xs"  | 
| 67684 | 5946  | 
by (metis (mono_tags) filter_True sort_key_stable)  | 
| 67606 | 5947  | 
|
| 35115 | 5948  | 
|
| 69593 | 5949  | 
subsubsection \<open>\<^const>\<open>transpose\<close> on sorted lists\<close>  | 
| 34933 | 5950  | 
|
| 66853 | 5951  | 
lemma sorted_transpose[simp]: "sorted (rev (map length (transpose xs)))"  | 
| 68175 | 5952  | 
by (auto simp: sorted_iff_nth_mono rev_nth nth_transpose  | 
| 34933 | 5953  | 
length_filter_conv_card intro: card_mono)  | 
5954  | 
||
5955  | 
lemma transpose_max_length:  | 
|
| 
68249
 
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
 
nipkow 
parents: 
68215 
diff
changeset
 | 
5956  | 
"foldr (\<lambda>xs. max (length xs)) (transpose xs) 0 = length (filter (\<lambda>x. x \<noteq> []) xs)"  | 
| 34933 | 5957  | 
(is "?L = ?R")  | 
5958  | 
proof (cases "transpose xs = []")  | 
|
5959  | 
case False  | 
|
5960  | 
have "?L = foldr max (map length (transpose xs)) 0"  | 
|
5961  | 
by (simp add: foldr_map comp_def)  | 
|
5962  | 
also have "... = length (transpose xs ! 0)"  | 
|
5963  | 
using False sorted_transpose by (simp add: foldr_max_sorted)  | 
|
5964  | 
finally show ?thesis  | 
|
5965  | 
using False by (simp add: nth_transpose)  | 
|
5966  | 
next  | 
|
5967  | 
case True  | 
|
| 
68249
 
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
 
nipkow 
parents: 
68215 
diff
changeset
 | 
5968  | 
hence "filter (\<lambda>x. x \<noteq> []) xs = []"  | 
| 34933 | 5969  | 
by (auto intro!: filter_False simp: transpose_empty)  | 
5970  | 
thus ?thesis by (simp add: transpose_empty True)  | 
|
5971  | 
qed  | 
|
5972  | 
||
5973  | 
lemma length_transpose_sorted:  | 
|
5974  | 
fixes xs :: "'a list list"  | 
|
5975  | 
assumes sorted: "sorted (rev (map length xs))"  | 
|
5976  | 
shows "length (transpose xs) = (if xs = [] then 0 else length (xs ! 0))"  | 
|
5977  | 
proof (cases "xs = []")  | 
|
5978  | 
case False  | 
|
5979  | 
thus ?thesis  | 
|
5980  | 
using foldr_max_sorted[OF sorted] False  | 
|
5981  | 
unfolding length_transpose foldr_map comp_def  | 
|
5982  | 
by simp  | 
|
5983  | 
qed simp  | 
|
5984  | 
||
5985  | 
lemma nth_nth_transpose_sorted[simp]:  | 
|
5986  | 
fixes xs :: "'a list list"  | 
|
5987  | 
assumes sorted: "sorted (rev (map length xs))"  | 
|
5988  | 
and i: "i < length (transpose xs)"  | 
|
| 
68249
 
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
 
nipkow 
parents: 
68215 
diff
changeset
 | 
5989  | 
and j: "j < length (filter (\<lambda>ys. i < length ys) xs)"  | 
| 34933 | 5990  | 
shows "transpose xs ! i ! j = xs ! j ! i"  | 
| 66853 | 5991  | 
using j filter_equals_takeWhile_sorted_rev[OF sorted, of i]  | 
| 34933 | 5992  | 
nth_transpose[OF i] nth_map[OF j]  | 
| 66853 | 5993  | 
by (simp add: takeWhile_nth)  | 
| 34933 | 5994  | 
|
5995  | 
lemma transpose_column_length:  | 
|
5996  | 
fixes xs :: "'a list list"  | 
|
5997  | 
assumes sorted: "sorted (rev (map length xs))" and "i < length xs"  | 
|
5998  | 
shows "length (filter (\<lambda>ys. i < length ys) (transpose xs)) = length (xs ! i)"  | 
|
5999  | 
proof -  | 
|
| 60758 | 6000  | 
have "xs \<noteq> []" using \<open>i < length xs\<close> by auto  | 
| 34933 | 6001  | 
note filter_equals_takeWhile_sorted_rev[OF sorted, simp]  | 
6002  | 
  { fix j assume "j \<le> i"
 | 
|
| 60758 | 6003  | 
note sorted_rev_nth_mono[OF sorted, of j i, simplified, OF this \<open>i < length xs\<close>]  | 
| 34933 | 6004  | 
} note sortedE = this[consumes 1]  | 
6005  | 
||
6006  | 
  have "{j. j < length (transpose xs) \<and> i < length (transpose xs ! j)}
 | 
|
6007  | 
    = {..< length (xs ! i)}"
 | 
|
6008  | 
proof safe  | 
|
6009  | 
fix j  | 
|
6010  | 
assume "j < length (transpose xs)" and "i < length (transpose xs ! j)"  | 
|
6011  | 
with this(2) nth_transpose[OF this(1)]  | 
|
6012  | 
have "i < length (takeWhile (\<lambda>ys. j < length ys) xs)" by simp  | 
|
6013  | 
from nth_mem[OF this] takeWhile_nth[OF this]  | 
|
6014  | 
show "j < length (xs ! i)" by (auto dest: set_takeWhileD)  | 
|
6015  | 
next  | 
|
6016  | 
fix j assume "j < length (xs ! i)"  | 
|
6017  | 
thus "j < length (transpose xs)"  | 
|
| 60758 | 6018  | 
using foldr_max_sorted[OF sorted] \<open>xs \<noteq> []\<close> sortedE[OF le0]  | 
| 34933 | 6019  | 
by (auto simp: length_transpose comp_def foldr_map)  | 
6020  | 
||
6021  | 
have "Suc i \<le> length (takeWhile (\<lambda>ys. j < length ys) xs)"  | 
|
| 60758 | 6022  | 
using \<open>i < length xs\<close> \<open>j < length (xs ! i)\<close> less_Suc_eq_le  | 
| 34933 | 6023  | 
by (auto intro!: length_takeWhile_less_P_nth dest!: sortedE)  | 
| 60758 | 6024  | 
with nth_transpose[OF \<open>j < length (transpose xs)\<close>]  | 
| 34933 | 6025  | 
show "i < length (transpose xs ! j)" by simp  | 
6026  | 
qed  | 
|
6027  | 
thus ?thesis by (simp add: length_filter_conv_card)  | 
|
6028  | 
qed  | 
|
6029  | 
||
6030  | 
lemma transpose_column:  | 
|
6031  | 
fixes xs :: "'a list list"  | 
|
6032  | 
assumes sorted: "sorted (rev (map length xs))" and "i < length xs"  | 
|
6033  | 
shows "map (\<lambda>ys. ys ! i) (filter (\<lambda>ys. i < length ys) (transpose xs))  | 
|
6034  | 
= xs ! i" (is "?R = _")  | 
|
| 
68975
 
5ce4d117cea7
A few new results, elimination of duplicates and more use of "pairwise"
 
paulson <lp15@cam.ac.uk> 
parents: 
68781 
diff
changeset
 | 
6035  | 
proof (rule nth_equalityI)  | 
| 34933 | 6036  | 
show length: "length ?R = length (xs ! i)"  | 
6037  | 
using transpose_column_length[OF assms] by simp  | 
|
6038  | 
||
6039  | 
fix j assume j: "j < length ?R"  | 
|
6040  | 
note * = less_le_trans[OF this, unfolded length_map, OF length_filter_le]  | 
|
6041  | 
from j have j_less: "j < length (xs ! i)" using length by simp  | 
|
6042  | 
have i_less_tW: "Suc i \<le> length (takeWhile (\<lambda>ys. Suc j \<le> length ys) xs)"  | 
|
6043  | 
proof (rule length_takeWhile_less_P_nth)  | 
|
| 60758 | 6044  | 
show "Suc i \<le> length xs" using \<open>i < length xs\<close> by simp  | 
| 34933 | 6045  | 
fix k assume "k < Suc i"  | 
6046  | 
hence "k \<le> i" by auto  | 
|
| 60758 | 6047  | 
with sorted_rev_nth_mono[OF sorted this] \<open>i < length xs\<close>  | 
| 34933 | 6048  | 
have "length (xs ! i) \<le> length (xs ! k)" by simp  | 
6049  | 
thus "Suc j \<le> length (xs ! k)" using j_less by simp  | 
|
6050  | 
qed  | 
|
| 
68249
 
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
 
nipkow 
parents: 
68215 
diff
changeset
 | 
6051  | 
have i_less_filter: "i < length (filter (\<lambda>ys. j < length ys) xs) "  | 
| 34933 | 6052  | 
unfolding filter_equals_takeWhile_sorted_rev[OF sorted, of j]  | 
6053  | 
using i_less_tW by (simp_all add: Suc_le_eq)  | 
|
6054  | 
from j show "?R ! j = xs ! i ! j"  | 
|
6055  | 
unfolding filter_equals_takeWhile_sorted_rev[OF sorted_transpose, of i]  | 
|
6056  | 
by (simp add: takeWhile_nth nth_nth_transpose_sorted[OF sorted * i_less_filter])  | 
|
6057  | 
qed  | 
|
6058  | 
||
6059  | 
lemma transpose_transpose:  | 
|
6060  | 
fixes xs :: "'a list list"  | 
|
6061  | 
assumes sorted: "sorted (rev (map length xs))"  | 
|
6062  | 
shows "transpose (transpose xs) = takeWhile (\<lambda>x. x \<noteq> []) xs" (is "?L = ?R")  | 
|
6063  | 
proof -  | 
|
6064  | 
have len: "length ?L = length ?R"  | 
|
6065  | 
unfolding length_transpose transpose_max_length  | 
|
6066  | 
using filter_equals_takeWhile_sorted_rev[OF sorted, of 0]  | 
|
6067  | 
by simp  | 
|
6068  | 
||
6069  | 
  { fix i assume "i < length ?R"
 | 
|
6070  | 
with less_le_trans[OF _ length_takeWhile_le[of _ xs]]  | 
|
6071  | 
have "i < length xs" by simp  | 
|
6072  | 
} note * = this  | 
|
6073  | 
show ?thesis  | 
|
6074  | 
by (rule nth_equalityI)  | 
|
6075  | 
(simp_all add: len nth_transpose transpose_column[OF sorted] * takeWhile_nth)  | 
|
6076  | 
qed  | 
|
| 24616 | 6077  | 
|
| 
34934
 
440605046777
Added transpose_rectangle, when the input list is rectangular.
 
hoelzl 
parents: 
34933 
diff
changeset
 | 
6078  | 
theorem transpose_rectangle:  | 
| 
 
440605046777
Added transpose_rectangle, when the input list is rectangular.
 
hoelzl 
parents: 
34933 
diff
changeset
 | 
6079  | 
assumes "xs = [] \<Longrightarrow> n = 0"  | 
| 
 
440605046777
Added transpose_rectangle, when the input list is rectangular.
 
hoelzl 
parents: 
34933 
diff
changeset
 | 
6080  | 
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
 | 
6081  | 
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
 | 
6082  | 
(is "?trans = ?map")  | 
| 
 
440605046777
Added transpose_rectangle, when the input list is rectangular.
 
hoelzl 
parents: 
34933 
diff
changeset
 | 
6083  | 
proof (rule nth_equalityI)  | 
| 
 
440605046777
Added transpose_rectangle, when the input list is rectangular.
 
hoelzl 
parents: 
34933 
diff
changeset
 | 
6084  | 
have "sorted (rev (map length xs))"  | 
| 68175 | 6085  | 
by (auto simp: rev_nth rect sorted_iff_nth_mono)  | 
| 
34934
 
440605046777
Added transpose_rectangle, when the input list is rectangular.
 
hoelzl 
parents: 
34933 
diff
changeset
 | 
6086  | 
from foldr_max_sorted[OF this] assms  | 
| 
 
440605046777
Added transpose_rectangle, when the input list is rectangular.
 
hoelzl 
parents: 
34933 
diff
changeset
 | 
6087  | 
show len: "length ?trans = length ?map"  | 
| 
 
440605046777
Added transpose_rectangle, when the input list is rectangular.
 
hoelzl 
parents: 
34933 
diff
changeset
 | 
6088  | 
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
 | 
6089  | 
moreover  | 
| 
68249
 
949d93804740
First step to remove nonstandard "[x <- xs. P]" syntax: only input
 
nipkow 
parents: 
68215 
diff
changeset
 | 
6090  | 
  { fix i assume "i < n" hence "filter (\<lambda>ys. i < length ys) xs = xs"
 | 
| 
34934
 
440605046777
Added transpose_rectangle, when the input list is rectangular.
 
hoelzl 
parents: 
34933 
diff
changeset
 | 
6091  | 
using rect by (auto simp: in_set_conv_nth intro!: filter_True) }  | 
| 
68975
 
5ce4d117cea7
A few new results, elimination of duplicates and more use of "pairwise"
 
paulson <lp15@cam.ac.uk> 
parents: 
68781 
diff
changeset
 | 
6092  | 
ultimately show "\<And>i. i < length (transpose xs) \<Longrightarrow> ?trans ! i = ?map ! i"  | 
| 
34934
 
440605046777
Added transpose_rectangle, when the input list is rectangular.
 
hoelzl 
parents: 
34933 
diff
changeset
 | 
6093  | 
by (auto simp: nth_transpose intro: nth_equalityI)  | 
| 
 
440605046777
Added transpose_rectangle, when the input list is rectangular.
 
hoelzl 
parents: 
34933 
diff
changeset
 | 
6094  | 
qed  | 
| 24616 | 6095  | 
|
| 35115 | 6096  | 
|
| 73832 | 6097  | 
subsubsection \<open>\<open>sorted_key_list_of_set\<close>\<close>  | 
6098  | 
||
6099  | 
text\<open>  | 
|
6100  | 
This function maps (finite) linearly ordered sets to sorted lists.  | 
|
6101  | 
The linear order is obtained by a key function that maps the elements of the set to a type  | 
|
6102  | 
that is linearly ordered.  | 
|
6103  | 
Warning: in most cases it is not a good idea to convert from  | 
|
6104  | 
sets to lists but one should convert in the other direction (via \<^const>\<open>set\<close>).  | 
|
6105  | 
||
6106  | 
Note: this is a generalisation of the older \<open>sorted_list_of_set\<close> that is obtained by setting  | 
|
6107  | 
the key function to the identity. Consequently, new theorems should be added to the locale  | 
|
6108  | 
below. They should also be aliased to more convenient names for use with \<open>sorted_list_of_set\<close>  | 
|
6109  | 
as seen further below.  | 
|
6110  | 
\<close>  | 
|
6111  | 
||
6112  | 
definition (in linorder) sorted_key_list_of_set :: "('b \<Rightarrow> 'a) \<Rightarrow> 'b set \<Rightarrow> 'b list"
 | 
|
6113  | 
where "sorted_key_list_of_set f \<equiv> folding_on.F (insort_key f) []"  | 
|
6114  | 
||
6115  | 
locale folding_insort_key = lo?: linorder "less_eq :: 'a \<Rightarrow> 'a \<Rightarrow> bool" less  | 
|
6116  | 
for less_eq (infix "\<preceq>" 50) and less (infix "\<prec>" 50) +  | 
|
6117  | 
fixes S  | 
|
6118  | 
fixes f :: "'b \<Rightarrow> 'a"  | 
|
6119  | 
assumes inj_on: "inj_on f S"  | 
|
| 54868 | 6120  | 
begin  | 
6121  | 
||
| 73832 | 6122  | 
lemma insort_key_commute:  | 
6123  | 
"x \<in> S \<Longrightarrow> y \<in> S \<Longrightarrow> insort_key f y o insort_key f x = insort_key f x o insort_key f y"  | 
|
6124  | 
proof(rule ext, goal_cases)  | 
|
6125  | 
case (1 xs)  | 
|
6126  | 
with inj_on show ?case by (induction xs) (auto simp: inj_onD)  | 
|
6127  | 
qed  | 
|
6128  | 
||
6129  | 
sublocale fold_insort_key: folding_on S "insort_key f" "[]"  | 
|
6130  | 
rewrites "folding_on.F (insort_key f) [] = sorted_key_list_of_set f"  | 
|
| 51489 | 6131  | 
proof -  | 
| 73832 | 6132  | 
show "folding_on S (insort_key f)"  | 
6133  | 
by standard (simp add: insort_key_commute)  | 
|
6134  | 
qed (simp add: sorted_key_list_of_set_def)  | 
|
6135  | 
||
6136  | 
lemma idem_if_sorted_distinct:  | 
|
6137  | 
assumes "set xs \<subseteq> S" and "sorted (map f xs)" "distinct xs"  | 
|
6138  | 
shows "sorted_key_list_of_set f (set xs) = xs"  | 
|
6139  | 
proof(cases "S = {}")
 | 
|
6140  | 
case True  | 
|
6141  | 
then show ?thesis using \<open>set xs \<subseteq> S\<close> by auto  | 
|
6142  | 
next  | 
|
6143  | 
case False  | 
|
6144  | 
with assms show ?thesis  | 
|
6145  | 
proof(induction xs)  | 
|
6146  | 
case (Cons a xs)  | 
|
6147  | 
with Cons show ?case by (cases xs) auto  | 
|
6148  | 
qed simp  | 
|
6149  | 
qed  | 
|
6150  | 
||
6151  | 
lemma sorted_key_list_of_set_empty:  | 
|
6152  | 
  "sorted_key_list_of_set f {} = []"
 | 
|
6153  | 
by (fact fold_insort_key.empty)  | 
|
6154  | 
||
6155  | 
lemma sorted_key_list_of_set_insert:  | 
|
6156  | 
assumes "insert x A \<subseteq> S" and "finite A" "x \<notin> A"  | 
|
6157  | 
shows "sorted_key_list_of_set f (insert x A)  | 
|
6158  | 
= insort_key f x (sorted_key_list_of_set f A)"  | 
|
6159  | 
using assms by (fact fold_insort_key.insert)  | 
|
6160  | 
||
6161  | 
lemma sorted_key_list_of_set_insert_remove [simp]:  | 
|
6162  | 
assumes "insert x A \<subseteq> S" and "finite A"  | 
|
6163  | 
shows "sorted_key_list_of_set f (insert x A)  | 
|
6164  | 
        = insort_key f x (sorted_key_list_of_set f (A - {x}))"
 | 
|
6165  | 
using assms by (fact fold_insort_key.insert_remove)  | 
|
6166  | 
||
6167  | 
lemma sorted_key_list_of_set_eq_Nil_iff [simp]:  | 
|
6168  | 
assumes "A \<subseteq> S" and "finite A"  | 
|
6169  | 
  shows "sorted_key_list_of_set f A = [] \<longleftrightarrow> A = {}"
 | 
|
6170  | 
using assms by (auto simp: fold_insort_key.remove)  | 
|
6171  | 
||
6172  | 
lemma set_sorted_key_list_of_set [simp]:  | 
|
6173  | 
assumes "A \<subseteq> S" and "finite A"  | 
|
6174  | 
shows "set (sorted_key_list_of_set f A) = A"  | 
|
6175  | 
using assms(2,1)  | 
|
6176  | 
by (induct A rule: finite_induct) (simp_all add: set_insort_key)  | 
|
6177  | 
||
6178  | 
lemma sorted_sorted_key_list_of_set [simp]:  | 
|
6179  | 
assumes "A \<subseteq> S"  | 
|
6180  | 
shows "sorted (map f (sorted_key_list_of_set f A))"  | 
|
| 68083 | 6181  | 
proof (cases "finite A")  | 
| 73832 | 6182  | 
case True thus ?thesis using \<open>A \<subseteq> S\<close>  | 
6183  | 
by (induction A) (simp_all add: sorted_insort_key)  | 
|
| 68083 | 6184  | 
next  | 
6185  | 
case False thus ?thesis by simp  | 
|
6186  | 
qed  | 
|
6187  | 
||
| 73832 | 6188  | 
lemma distinct_if_distinct_map: "distinct (map f xs) \<Longrightarrow> distinct xs"  | 
6189  | 
using inj_on by (simp add: distinct_map)  | 
|
6190  | 
||
6191  | 
lemma distinct_sorted_key_list_of_set [simp]:  | 
|
6192  | 
assumes "A \<subseteq> S"  | 
|
6193  | 
shows "distinct (map f (sorted_key_list_of_set f A))"  | 
|
| 68083 | 6194  | 
proof (cases "finite A")  | 
| 73832 | 6195  | 
case True thus ?thesis using \<open>A \<subseteq> S\<close> inj_on  | 
6196  | 
by (induction A) (force simp: distinct_insort_key dest: inj_onD)+  | 
|
6197  | 
next  | 
|
| 68083 | 6198  | 
case False thus ?thesis by simp  | 
6199  | 
qed  | 
|
| 52122 | 6200  | 
|
| 73832 | 6201  | 
lemma length_sorted_key_list_of_set [simp]:  | 
6202  | 
assumes "A \<subseteq> S"  | 
|
6203  | 
shows "length (sorted_key_list_of_set f A) = card A"  | 
|
| 71860 | 6204  | 
proof (cases "finite A")  | 
6205  | 
case True  | 
|
| 73832 | 6206  | 
with assms inj_on show ?thesis  | 
6207  | 
using distinct_card[symmetric, OF distinct_sorted_key_list_of_set]  | 
|
6208  | 
by (auto simp: subset_inj_on intro!: card_image)  | 
|
| 71860 | 6209  | 
qed auto  | 
| 71855 | 6210  | 
|
| 73832 | 6211  | 
lemmas sorted_key_list_of_set =  | 
6212  | 
set_sorted_key_list_of_set sorted_sorted_key_list_of_set distinct_sorted_key_list_of_set  | 
|
6213  | 
||
6214  | 
lemma sorted_key_list_of_set_remove:  | 
|
6215  | 
assumes "insert x A \<subseteq> S" and "finite A"  | 
|
6216  | 
  shows "sorted_key_list_of_set f (A - {x}) = remove1 x (sorted_key_list_of_set f A)"
 | 
|
| 37107 | 6217  | 
proof (cases "x \<in> A")  | 
| 73832 | 6218  | 
case False with assms have "x \<notin> set (sorted_key_list_of_set f A)" by simp  | 
| 37107 | 6219  | 
with False show ?thesis by (simp add: remove1_idem)  | 
6220  | 
next  | 
|
6221  | 
case True then obtain B where A: "A = insert x B" by (rule Set.set_insert)  | 
|
6222  | 
with assms show ?thesis by simp  | 
|
6223  | 
qed  | 
|
6224  | 
||
| 73832 | 6225  | 
lemma strict_sorted_key_list_of_set [simp]:  | 
6226  | 
"A \<subseteq> S \<Longrightarrow> sorted_wrt (\<prec>) (map f (sorted_key_list_of_set f A))"  | 
|
6227  | 
by (cases "finite A") (auto simp: strict_sorted_iff subset_inj_on[OF inj_on])  | 
|
| 
71404
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
6228  | 
|
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
6229  | 
lemma finite_set_strict_sorted:  | 
| 73832 | 6230  | 
assumes "A \<subseteq> S" and "finite A"  | 
6231  | 
obtains l where "sorted_wrt (\<prec>) (map f l)" "set l = A" "length l = card A"  | 
|
6232  | 
using assms  | 
|
6233  | 
by (meson length_sorted_key_list_of_set set_sorted_key_list_of_set strict_sorted_key_list_of_set)  | 
|
6234  | 
||
6235  | 
lemma (in linorder) strict_sorted_equal:  | 
|
| 73709 | 6236  | 
assumes "sorted_wrt (<) xs"  | 
| 73832 | 6237  | 
and "sorted_wrt (<) ys"  | 
6238  | 
and "set ys = set xs"  | 
|
6239  | 
shows "ys = xs"  | 
|
| 71827 | 6240  | 
using assms  | 
6241  | 
proof (induction xs arbitrary: ys)  | 
|
6242  | 
case (Cons x xs)  | 
|
6243  | 
show ?case  | 
|
6244  | 
proof (cases ys)  | 
|
6245  | 
case Nil  | 
|
6246  | 
then show ?thesis  | 
|
6247  | 
using Cons.prems by auto  | 
|
6248  | 
next  | 
|
6249  | 
case (Cons y ys')  | 
|
6250  | 
then have "xs = ys'"  | 
|
6251  | 
by (metis Cons.prems list.inject sorted_distinct_set_unique strict_sorted_iff)  | 
|
6252  | 
moreover have "x = y"  | 
|
6253  | 
using Cons.prems \<open>xs = ys'\<close> local.Cons by fastforce  | 
|
6254  | 
ultimately show ?thesis  | 
|
6255  | 
using local.Cons by blast  | 
|
6256  | 
qed  | 
|
6257  | 
qed auto  | 
|
| 73832 | 6258  | 
|
6259  | 
lemma (in linorder) strict_sorted_equal_Uniq: "\<exists>\<^sub>\<le>\<^sub>1xs. sorted_wrt (<) xs \<and> set xs = A"  | 
|
| 71827 | 6260  | 
by (simp add: Uniq_def strict_sorted_equal)  | 
6261  | 
||
| 73832 | 6262  | 
lemma sorted_key_list_of_set_inject:  | 
6263  | 
assumes "A \<subseteq> S" "B \<subseteq> S"  | 
|
6264  | 
assumes "sorted_key_list_of_set f A = sorted_key_list_of_set f B" "finite A" "finite B"  | 
|
| 
71857
 
d73955442df5
a few new lemmas about functions
 
paulson <lp15@cam.ac.uk> 
parents: 
71856 
diff
changeset
 | 
6265  | 
shows "A = B"  | 
| 73832 | 6266  | 
using assms set_sorted_key_list_of_set by metis  | 
6267  | 
||
6268  | 
lemma sorted_key_list_of_set_unique:  | 
|
6269  | 
assumes "A \<subseteq> S" and "finite A"  | 
|
6270  | 
shows "sorted_wrt (\<prec>) (map f l) \<and> set l = A \<and> length l = card A  | 
|
6271  | 
\<longleftrightarrow> sorted_key_list_of_set f A = l"  | 
|
6272  | 
using assms  | 
|
6273  | 
by (auto simp: strict_sorted_iff card_distinct idem_if_sorted_distinct)  | 
|
| 
71857
 
d73955442df5
a few new lemmas about functions
 
paulson <lp15@cam.ac.uk> 
parents: 
71856 
diff
changeset
 | 
6274  | 
|
| 71860 | 6275  | 
end  | 
6276  | 
||
| 73832 | 6277  | 
context linorder  | 
6278  | 
begin  | 
|
6279  | 
||
6280  | 
definition "sorted_list_of_set \<equiv> sorted_key_list_of_set (\<lambda>x::'a. x)"  | 
|
6281  | 
||
6282  | 
text \<open>  | 
|
6283  | 
We abuse the \<open>rewrites\<close> functionality of locales to remove trivial assumptions that result  | 
|
6284  | 
from instantiating the key function to the identity.  | 
|
6285  | 
\<close>  | 
|
6286  | 
sublocale sorted_list_of_set: folding_insort_key "(\<le>)" "(<)" UNIV "(\<lambda>x. x)"  | 
|
6287  | 
rewrites "sorted_key_list_of_set (\<lambda>x. x) = sorted_list_of_set"  | 
|
6288  | 
and "\<And>xs. map (\<lambda>x. x) xs \<equiv> xs"  | 
|
6289  | 
and "\<And>X. (X \<subseteq> UNIV) \<equiv> True"  | 
|
6290  | 
and "\<And>x. x \<in> UNIV \<equiv> True"  | 
|
6291  | 
and "\<And>P. (True \<Longrightarrow> P) \<equiv> Trueprop P"  | 
|
6292  | 
and "\<And>P Q. (True \<Longrightarrow> PROP P \<Longrightarrow> PROP Q) \<equiv> (PROP P \<Longrightarrow> True \<Longrightarrow> PROP Q)"  | 
|
6293  | 
proof -  | 
|
6294  | 
show "folding_insort_key (\<le>) (<) UNIV (\<lambda>x. x)"  | 
|
6295  | 
by standard simp  | 
|
6296  | 
qed (simp_all add: sorted_list_of_set_def)  | 
|
6297  | 
||
6298  | 
text \<open>Alias theorems for backwards compatibility and ease of use.\<close>  | 
|
6299  | 
lemmas sorted_list_of_set = sorted_list_of_set.sorted_key_list_of_set and  | 
|
6300  | 
sorted_list_of_set_empty = sorted_list_of_set.sorted_key_list_of_set_empty and  | 
|
6301  | 
sorted_list_of_set_insert = sorted_list_of_set.sorted_key_list_of_set_insert and  | 
|
6302  | 
sorted_list_of_set_insert_remove = sorted_list_of_set.sorted_key_list_of_set_insert_remove and  | 
|
6303  | 
sorted_list_of_set_eq_Nil_iff = sorted_list_of_set.sorted_key_list_of_set_eq_Nil_iff and  | 
|
6304  | 
set_sorted_list_of_set = sorted_list_of_set.set_sorted_key_list_of_set and  | 
|
6305  | 
sorted_sorted_list_of_set = sorted_list_of_set.sorted_sorted_key_list_of_set and  | 
|
6306  | 
distinct_sorted_list_of_set = sorted_list_of_set.distinct_sorted_key_list_of_set and  | 
|
6307  | 
length_sorted_list_of_set = sorted_list_of_set.length_sorted_key_list_of_set and  | 
|
6308  | 
sorted_list_of_set_remove = sorted_list_of_set.sorted_key_list_of_set_remove and  | 
|
6309  | 
strict_sorted_list_of_set = sorted_list_of_set.strict_sorted_key_list_of_set and  | 
|
6310  | 
sorted_list_of_set_inject = sorted_list_of_set.sorted_key_list_of_set_inject and  | 
|
6311  | 
sorted_list_of_set_unique = sorted_list_of_set.sorted_key_list_of_set_unique and  | 
|
6312  | 
finite_set_strict_sorted = sorted_list_of_set.finite_set_strict_sorted  | 
|
6313  | 
||
6314  | 
lemma sorted_list_of_set_sort_remdups [code]:  | 
|
6315  | 
"sorted_list_of_set (set xs) = sort (remdups xs)"  | 
|
6316  | 
proof -  | 
|
6317  | 
interpret comp_fun_commute insort by (fact comp_fun_commute_insort)  | 
|
6318  | 
show ?thesis  | 
|
6319  | 
by (simp add: sorted_list_of_set.fold_insort_key.eq_fold sort_conv_fold fold_set_fold_remdups)  | 
|
6320  | 
qed  | 
|
6321  | 
||
6322  | 
end  | 
|
6323  | 
||
6324  | 
||
| 71860 | 6325  | 
lemma sorted_list_of_set_range [simp]:  | 
6326  | 
  "sorted_list_of_set {m..<n} = [m..<n]"
 | 
|
6327  | 
by (rule sorted_distinct_set_unique) simp_all  | 
|
| 
71857
 
d73955442df5
a few new lemmas about functions
 
paulson <lp15@cam.ac.uk> 
parents: 
71856 
diff
changeset
 | 
6328  | 
|
| 
 
d73955442df5
a few new lemmas about functions
 
paulson <lp15@cam.ac.uk> 
parents: 
71856 
diff
changeset
 | 
6329  | 
lemma sorted_list_of_set_lessThan_Suc [simp]:  | 
| 
 
d73955442df5
a few new lemmas about functions
 
paulson <lp15@cam.ac.uk> 
parents: 
71856 
diff
changeset
 | 
6330  | 
  "sorted_list_of_set {..<Suc k} = sorted_list_of_set {..<k} @ [k]"
 | 
| 
73683
 
60a788467639
strict_sorted now an abbreviation
 
paulson <lp15@cam.ac.uk> 
parents: 
73510 
diff
changeset
 | 
6331  | 
using le0 lessThan_atLeast0 sorted_list_of_set_range upt_Suc_append by presburger  | 
| 
71857
 
d73955442df5
a few new lemmas about functions
 
paulson <lp15@cam.ac.uk> 
parents: 
71856 
diff
changeset
 | 
6332  | 
|
| 
 
d73955442df5
a few new lemmas about functions
 
paulson <lp15@cam.ac.uk> 
parents: 
71856 
diff
changeset
 | 
6333  | 
lemma sorted_list_of_set_atMost_Suc [simp]:  | 
| 
 
d73955442df5
a few new lemmas about functions
 
paulson <lp15@cam.ac.uk> 
parents: 
71856 
diff
changeset
 | 
6334  | 
  "sorted_list_of_set {..Suc k} = sorted_list_of_set {..k} @ [Suc k]"
 | 
| 
 
d73955442df5
a few new lemmas about functions
 
paulson <lp15@cam.ac.uk> 
parents: 
71856 
diff
changeset
 | 
6335  | 
using lessThan_Suc_atMost sorted_list_of_set_lessThan_Suc by fastforce  | 
| 
 
d73955442df5
a few new lemmas about functions
 
paulson <lp15@cam.ac.uk> 
parents: 
71856 
diff
changeset
 | 
6336  | 
|
| 
72095
 
cfb6c22a5636
lemmas about sets and the enumerate operator
 
paulson <lp15@cam.ac.uk> 
parents: 
71991 
diff
changeset
 | 
6337  | 
lemma sorted_list_of_set_nonempty:  | 
| 
 
cfb6c22a5636
lemmas about sets and the enumerate operator
 
paulson <lp15@cam.ac.uk> 
parents: 
71991 
diff
changeset
 | 
6338  | 
  assumes "finite A" "A \<noteq> {}"
 | 
| 
 
cfb6c22a5636
lemmas about sets and the enumerate operator
 
paulson <lp15@cam.ac.uk> 
parents: 
71991 
diff
changeset
 | 
6339  | 
  shows "sorted_list_of_set A = Min A # sorted_list_of_set (A - {Min A})"
 | 
| 73832 | 6340  | 
using assms  | 
6341  | 
by (auto simp: less_le simp flip: sorted_list_of_set.sorted_key_list_of_set_unique intro: Min_in)  | 
|
| 
72095
 
cfb6c22a5636
lemmas about sets and the enumerate operator
 
paulson <lp15@cam.ac.uk> 
parents: 
71991 
diff
changeset
 | 
6342  | 
|
| 
71857
 
d73955442df5
a few new lemmas about functions
 
paulson <lp15@cam.ac.uk> 
parents: 
71856 
diff
changeset
 | 
6343  | 
lemma sorted_list_of_set_greaterThanLessThan:  | 
| 
 
d73955442df5
a few new lemmas about functions
 
paulson <lp15@cam.ac.uk> 
parents: 
71856 
diff
changeset
 | 
6344  | 
assumes "Suc i < j"  | 
| 
 
d73955442df5
a few new lemmas about functions
 
paulson <lp15@cam.ac.uk> 
parents: 
71856 
diff
changeset
 | 
6345  | 
    shows "sorted_list_of_set {i<..<j} = Suc i # sorted_list_of_set {Suc i<..<j}"
 | 
| 
 
d73955442df5
a few new lemmas about functions
 
paulson <lp15@cam.ac.uk> 
parents: 
71856 
diff
changeset
 | 
6346  | 
proof -  | 
| 
 
d73955442df5
a few new lemmas about functions
 
paulson <lp15@cam.ac.uk> 
parents: 
71856 
diff
changeset
 | 
6347  | 
  have "{i<..<j} = insert (Suc i) {Suc i<..<j}"
 | 
| 
 
d73955442df5
a few new lemmas about functions
 
paulson <lp15@cam.ac.uk> 
parents: 
71856 
diff
changeset
 | 
6348  | 
using assms by auto  | 
| 
 
d73955442df5
a few new lemmas about functions
 
paulson <lp15@cam.ac.uk> 
parents: 
71856 
diff
changeset
 | 
6349  | 
then show ?thesis  | 
| 
 
d73955442df5
a few new lemmas about functions
 
paulson <lp15@cam.ac.uk> 
parents: 
71856 
diff
changeset
 | 
6350  | 
by (metis assms atLeastSucLessThan_greaterThanLessThan sorted_list_of_set_range upt_conv_Cons)  | 
| 
 
d73955442df5
a few new lemmas about functions
 
paulson <lp15@cam.ac.uk> 
parents: 
71856 
diff
changeset
 | 
6351  | 
qed  | 
| 
 
d73955442df5
a few new lemmas about functions
 
paulson <lp15@cam.ac.uk> 
parents: 
71856 
diff
changeset
 | 
6352  | 
|
| 
 
d73955442df5
a few new lemmas about functions
 
paulson <lp15@cam.ac.uk> 
parents: 
71856 
diff
changeset
 | 
6353  | 
lemma sorted_list_of_set_greaterThanAtMost:  | 
| 
 
d73955442df5
a few new lemmas about functions
 
paulson <lp15@cam.ac.uk> 
parents: 
71856 
diff
changeset
 | 
6354  | 
assumes "Suc i \<le> j"  | 
| 
 
d73955442df5
a few new lemmas about functions
 
paulson <lp15@cam.ac.uk> 
parents: 
71856 
diff
changeset
 | 
6355  | 
    shows "sorted_list_of_set {i<..j} = Suc i # sorted_list_of_set {Suc i<..j}"
 | 
| 
 
d73955442df5
a few new lemmas about functions
 
paulson <lp15@cam.ac.uk> 
parents: 
71856 
diff
changeset
 | 
6356  | 
using sorted_list_of_set_greaterThanLessThan [of i "Suc j"]  | 
| 
 
d73955442df5
a few new lemmas about functions
 
paulson <lp15@cam.ac.uk> 
parents: 
71856 
diff
changeset
 | 
6357  | 
by (metis assms greaterThanAtMost_def greaterThanLessThan_eq le_imp_less_Suc lessThan_Suc_atMost)  | 
| 
 
d73955442df5
a few new lemmas about functions
 
paulson <lp15@cam.ac.uk> 
parents: 
71856 
diff
changeset
 | 
6358  | 
|
| 
 
d73955442df5
a few new lemmas about functions
 
paulson <lp15@cam.ac.uk> 
parents: 
71856 
diff
changeset
 | 
6359  | 
lemma nth_sorted_list_of_set_greaterThanLessThan:  | 
| 
 
d73955442df5
a few new lemmas about functions
 
paulson <lp15@cam.ac.uk> 
parents: 
71856 
diff
changeset
 | 
6360  | 
  "n < j - Suc i \<Longrightarrow> sorted_list_of_set {i<..<j} ! n = Suc (i+n)"
 | 
| 
 
d73955442df5
a few new lemmas about functions
 
paulson <lp15@cam.ac.uk> 
parents: 
71856 
diff
changeset
 | 
6361  | 
by (induction n arbitrary: i) (auto simp: sorted_list_of_set_greaterThanLessThan)  | 
| 
 
d73955442df5
a few new lemmas about functions
 
paulson <lp15@cam.ac.uk> 
parents: 
71856 
diff
changeset
 | 
6362  | 
|
| 
 
d73955442df5
a few new lemmas about functions
 
paulson <lp15@cam.ac.uk> 
parents: 
71856 
diff
changeset
 | 
6363  | 
lemma nth_sorted_list_of_set_greaterThanAtMost:  | 
| 
 
d73955442df5
a few new lemmas about functions
 
paulson <lp15@cam.ac.uk> 
parents: 
71856 
diff
changeset
 | 
6364  | 
  "n < j - i \<Longrightarrow> sorted_list_of_set {i<..j} ! n = Suc (i+n)"
 | 
| 
 
d73955442df5
a few new lemmas about functions
 
paulson <lp15@cam.ac.uk> 
parents: 
71856 
diff
changeset
 | 
6365  | 
using nth_sorted_list_of_set_greaterThanLessThan [of n "Suc j" i]  | 
| 
 
d73955442df5
a few new lemmas about functions
 
paulson <lp15@cam.ac.uk> 
parents: 
71856 
diff
changeset
 | 
6366  | 
by (simp add: greaterThanAtMost_def greaterThanLessThan_eq lessThan_Suc_atMost)  | 
| 
 
d73955442df5
a few new lemmas about functions
 
paulson <lp15@cam.ac.uk> 
parents: 
71856 
diff
changeset
 | 
6367  | 
|
| 
 
d73955442df5
a few new lemmas about functions
 
paulson <lp15@cam.ac.uk> 
parents: 
71856 
diff
changeset
 | 
6368  | 
|
| 61799 | 6369  | 
subsubsection \<open>\<open>lists\<close>: the list-forming operator over sets\<close>  | 
| 15302 | 6370  | 
|
| 23740 | 6371  | 
inductive_set  | 
| 22262 | 6372  | 
lists :: "'a set => 'a list set"  | 
| 23740 | 6373  | 
for A :: "'a set"  | 
6374  | 
where  | 
|
| 67613 | 6375  | 
Nil [intro!, simp]: "[] \<in> lists A"  | 
6376  | 
| Cons [intro!, simp]: "\<lbrakk>a \<in> A; l \<in> lists A\<rbrakk> \<Longrightarrow> a#l \<in> lists A"  | 
|
6377  | 
||
6378  | 
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
 | 
6379  | 
inductive_cases listspE [elim!]: "listsp A (x # l)"  | 
| 23740 | 6380  | 
|
| 46313 | 6381  | 
inductive_simps listsp_simps[code]:  | 
6382  | 
"listsp A []"  | 
|
6383  | 
"listsp A (x # xs)"  | 
|
6384  | 
||
| 71585 | 6385  | 
lemma listsp_mono [mono]: "A \<le> B \<Longrightarrow> listsp A \<le> listsp B"  | 
| 46884 | 6386  | 
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
 | 
6387  | 
|
| 
46176
 
1898e61e89c4
pred_subset/equals_eq are now standard pred_set_conv rules
 
berghofe 
parents: 
46156 
diff
changeset
 | 
6388  | 
lemmas lists_mono = listsp_mono [to_set]  | 
| 22262 | 6389  | 
|
| 
22422
 
ee19cdb07528
stepping towards uniform lattice theory development in HOL
 
haftmann 
parents: 
22262 
diff
changeset
 | 
6390  | 
lemma listsp_infI:  | 
| 71585 | 6391  | 
assumes l: "listsp A l" shows "listsp B l \<Longrightarrow> listsp (inf A B) l" using l  | 
| 24349 | 6392  | 
by induct blast+  | 
| 15302 | 6393  | 
|
| 
22422
 
ee19cdb07528
stepping towards uniform lattice theory development in HOL
 
haftmann 
parents: 
22262 
diff
changeset
 | 
6394  | 
lemmas lists_IntI = listsp_infI [to_set]  | 
| 
 
ee19cdb07528
stepping towards uniform lattice theory development in HOL
 
haftmann 
parents: 
22262 
diff
changeset
 | 
6395  | 
|
| 
 
ee19cdb07528
stepping towards uniform lattice theory development in HOL
 
haftmann 
parents: 
22262 
diff
changeset
 | 
6396  | 
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
 | 
6397  | 
proof (rule mono_inf [where f=listsp, THEN order_antisym])  | 
| 22262 | 6398  | 
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
 | 
6399  | 
show "inf (listsp A) (listsp B) \<le> listsp (inf A B)" by (blast intro!: listsp_infI)  | 
| 14388 | 6400  | 
qed  | 
6401  | 
||
| 
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
 | 
6402  | 
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
 | 
6403  | 
|
| 
46176
 
1898e61e89c4
pred_subset/equals_eq are now standard pred_set_conv rules
 
berghofe 
parents: 
46156 
diff
changeset
 | 
6404  | 
lemmas lists_Int_eq [simp] = listsp_inf_eq [to_set]  | 
| 22262 | 6405  | 
|
| 67613 | 6406  | 
lemma Cons_in_lists_iff[simp]: "x#xs \<in> lists A \<longleftrightarrow> x \<in> A \<and> xs \<in> lists A"  | 
| 39613 | 6407  | 
by auto  | 
6408  | 
||
| 22262 | 6409  | 
lemma append_in_listsp_conv [iff]:  | 
6410  | 
"(listsp A (xs @ ys)) = (listsp A xs \<and> listsp A ys)"  | 
|
| 15302 | 6411  | 
by (induct xs) auto  | 
6412  | 
||
| 22262 | 6413  | 
lemmas append_in_lists_conv [iff] = append_in_listsp_conv [to_set]  | 
6414  | 
||
6415  | 
lemma in_listsp_conv_set: "(listsp A xs) = (\<forall>x \<in> set xs. A x)"  | 
|
| 61799 | 6416  | 
\<comment> \<open>eliminate \<open>listsp\<close> in favour of \<open>set\<close>\<close>  | 
| 15302 | 6417  | 
by (induct xs) auto  | 
6418  | 
||
| 46313 | 6419  | 
lemmas in_lists_conv_set [code_unfold] = in_listsp_conv_set [to_set]  | 
| 22262 | 6420  | 
|
| 71585 | 6421  | 
lemma in_listspD [dest!]: "listsp A xs \<Longrightarrow> \<forall>x\<in>set xs. A x"  | 
| 22262 | 6422  | 
by (rule in_listsp_conv_set [THEN iffD1])  | 
6423  | 
||
| 
54147
 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 
blanchet 
parents: 
53954 
diff
changeset
 | 
6424  | 
lemmas in_listsD [dest!] = in_listspD [to_set]  | 
| 
 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 
blanchet 
parents: 
53954 
diff
changeset
 | 
6425  | 
|
| 71585 | 6426  | 
lemma in_listspI [intro!]: "\<forall>x\<in>set xs. A x \<Longrightarrow> listsp A xs"  | 
| 22262 | 6427  | 
by (rule in_listsp_conv_set [THEN iffD2])  | 
6428  | 
||
| 
54147
 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 
blanchet 
parents: 
53954 
diff
changeset
 | 
6429  | 
lemmas in_listsI [intro!] = in_listspI [to_set]  | 
| 15302 | 6430  | 
|
| 68709 | 6431  | 
lemma lists_eq_set: "lists A = {xs. set xs \<le> A}"
 | 
| 39597 | 6432  | 
by auto  | 
6433  | 
||
| 39613 | 6434  | 
lemma lists_empty [simp]: "lists {} = {[]}"
 | 
6435  | 
by auto  | 
|
6436  | 
||
| 15302 | 6437  | 
lemma lists_UNIV [simp]: "lists UNIV = UNIV"  | 
6438  | 
by auto  | 
|
6439  | 
||
| 50134 | 6440  | 
lemma lists_image: "lists (f`A) = map f ` lists A"  | 
6441  | 
proof -  | 
|
6442  | 
  { fix xs have "\<forall>x\<in>set xs. x \<in> f ` A \<Longrightarrow> xs \<in> map f ` lists A"
 | 
|
| 55465 | 6443  | 
by (induct xs) (auto simp del: list.map simp add: list.map[symmetric] intro!: imageI) }  | 
| 50134 | 6444  | 
then show ?thesis by auto  | 
6445  | 
qed  | 
|
| 17086 | 6446  | 
|
| 60758 | 6447  | 
subsubsection \<open>Inductive definition for membership\<close>  | 
| 17086 | 6448  | 
|
| 23740 | 6449  | 
inductive ListMem :: "'a \<Rightarrow> 'a list \<Rightarrow> bool"  | 
| 22262 | 6450  | 
where  | 
6451  | 
elem: "ListMem x (x # xs)"  | 
|
6452  | 
| insert: "ListMem x xs \<Longrightarrow> ListMem x (y # xs)"  | 
|
6453  | 
||
6454  | 
lemma ListMem_iff: "(ListMem x xs) = (x \<in> set xs)"  | 
|
| 68719 | 6455  | 
proof  | 
6456  | 
show "ListMem x xs \<Longrightarrow> x \<in> set xs"  | 
|
6457  | 
by (induct set: ListMem) auto  | 
|
6458  | 
show "x \<in> set xs \<Longrightarrow> ListMem x xs"  | 
|
6459  | 
by (induct xs) (auto intro: ListMem.intros)  | 
|
6460  | 
qed  | 
|
| 17086 | 6461  | 
|
6462  | 
||
| 60758 | 6463  | 
subsubsection \<open>Lists as Cartesian products\<close>  | 
6464  | 
||
| 61799 | 6465  | 
text\<open>\<open>set_Cons A Xs\<close>: the set of lists with head drawn from  | 
| 69593 | 6466  | 
\<^term>\<open>A\<close> and tail drawn from \<^term>\<open>Xs\<close>.\<close>  | 
| 15302 | 6467  | 
|
| 50548 | 6468  | 
definition set_Cons :: "'a set \<Rightarrow> 'a list set \<Rightarrow> 'a list set" where  | 
6469  | 
"set_Cons A XS = {z. \<exists>x xs. z = x # xs \<and> x \<in> A \<and> xs \<in> XS}"
 | 
|
| 15302 | 6470  | 
|
| 17724 | 6471  | 
lemma set_Cons_sing_Nil [simp]: "set_Cons A {[]} = (%x. [x])`A"
 | 
| 15302 | 6472  | 
by (auto simp add: set_Cons_def)  | 
6473  | 
||
| 60758 | 6474  | 
text\<open>Yields the set of lists, all of the same length as the argument and  | 
6475  | 
with elements drawn from the corresponding element of the argument.\<close>  | 
|
| 15302 | 6476  | 
|
| 50548 | 6477  | 
primrec listset :: "'a set list \<Rightarrow> 'a list set" where  | 
6478  | 
"listset [] = {[]}" |
 | 
|
6479  | 
"listset (A # As) = set_Cons A (listset As)"  | 
|
| 15302 | 6480  | 
|
6481  | 
||
| 60758 | 6482  | 
subsection \<open>Relations on Lists\<close>  | 
6483  | 
||
6484  | 
subsubsection \<open>Length Lexicographic Ordering\<close>  | 
|
6485  | 
||
| 64963 | 6486  | 
text\<open>These orderings preserve well-foundedness: shorter lists  | 
| 60758 | 6487  | 
precede longer lists. These ordering are not used in dictionaries.\<close>  | 
| 64963 | 6488  | 
|
| 61799 | 6489  | 
primrec \<comment> \<open>The lexicographic ordering for lists of the specified length\<close>  | 
| 34941 | 6490  | 
  lexn :: "('a \<times> 'a) set \<Rightarrow> nat \<Rightarrow> ('a list \<times> 'a list) set" where
 | 
| 50548 | 6491  | 
"lexn r 0 = {}" |
 | 
6492  | 
"lexn r (Suc n) =  | 
|
| 55932 | 6493  | 
(map_prod (%(x, xs). x#xs) (%(x, xs). x#xs) ` (r <*lex*> lexn r n)) Int  | 
| 50548 | 6494  | 
  {(xs, ys). length xs = Suc n \<and> length ys = Suc n}"
 | 
6495  | 
||
6496  | 
definition lex :: "('a \<times> 'a) set \<Rightarrow> ('a list \<times> 'a list) set" where
 | 
|
| 61799 | 6497  | 
"lex r = (\<Union>n. lexn r n)" \<comment> \<open>Holds only between lists of the same length\<close>  | 
| 50548 | 6498  | 
|
6499  | 
definition lenlex :: "('a \<times> 'a) set => ('a list \<times> 'a list) set" where
 | 
|
6500  | 
"lenlex r = inv_image (less_than <*lex*> lex r) (\<lambda>xs. (length xs, xs))"  | 
|
| 61799 | 6501  | 
\<comment> \<open>Compares lists by their length and then lexicographically\<close>  | 
| 15302 | 6502  | 
|
| 68719 | 6503  | 
lemma wf_lexn: assumes "wf r" shows "wf (lexn r n)"  | 
6504  | 
proof (induct n)  | 
|
6505  | 
case (Suc n)  | 
|
6506  | 
have inj: "inj (\<lambda>(x, xs). x # xs)"  | 
|
6507  | 
using assms by (auto simp: inj_on_def)  | 
|
6508  | 
have wf: "wf (map_prod (\<lambda>(x, xs). x # xs) (\<lambda>(x, xs). x # xs) ` (r <*lex*> lexn r n))"  | 
|
6509  | 
by (simp add: Suc.hyps assms wf_lex_prod wf_map_prod_image [OF _ inj])  | 
|
6510  | 
then show ?case  | 
|
6511  | 
by (rule wf_subset) auto  | 
|
6512  | 
qed auto  | 
|
| 15302 | 6513  | 
|
6514  | 
lemma lexn_length:  | 
|
| 67613 | 6515  | 
"(xs, ys) \<in> lexn r n \<Longrightarrow> length xs = n \<and> length ys = n"  | 
| 71585 | 6516  | 
by (induct n arbitrary: xs ys) auto  | 
6517  | 
||
6518  | 
lemma wf_lex [intro!]:  | 
|
6519  | 
assumes "wf r" shows "wf (lex r)"  | 
|
| 68719 | 6520  | 
unfolding lex_def  | 
| 71585 | 6521  | 
proof (rule wf_UN)  | 
6522  | 
show "wf (lexn r i)" for i  | 
|
6523  | 
by (simp add: assms wf_lexn)  | 
|
6524  | 
  show "\<And>i j. lexn r i \<noteq> lexn r j \<Longrightarrow> Domain (lexn r i) \<inter> Range (lexn r j) = {}"
 | 
|
6525  | 
by (metis DomainE Int_emptyI RangeE lexn_length)  | 
|
6526  | 
qed  | 
|
6527  | 
||
| 15302 | 6528  | 
lemma lexn_conv:  | 
| 15656 | 6529  | 
"lexn r n =  | 
6530  | 
    {(xs,ys). length xs = n \<and> length ys = n \<and>
 | 
|
| 72184 | 6531  | 
(\<exists>xys x y xs' ys'. xs= xys @ x#xs' \<and> ys= xys @ y # ys' \<and> (x, y) \<in> r)}"  | 
| 71585 | 6532  | 
proof (induction n)  | 
6533  | 
case (Suc n)  | 
|
| 72184 | 6534  | 
then show ?case  | 
6535  | 
apply (simp add: image_Collect lex_prod_def, safe, blast)  | 
|
| 71585 | 6536  | 
apply (rule_tac x = "ab # xys" in exI, simp)  | 
6537  | 
apply (case_tac xys; force)  | 
|
6538  | 
done  | 
|
6539  | 
qed auto  | 
|
| 15302 | 6540  | 
|
| 62175 | 6541  | 
text\<open>By Mathias Fleury:\<close>  | 
| 
71435
 
d8fb621fea02
some lemmas about the lex ordering on lists, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
71423 
diff
changeset
 | 
6542  | 
proposition lexn_transI:  | 
| 72184 | 6543  | 
assumes "trans r" shows "trans (lexn r n)"  | 
| 62090 | 6544  | 
unfolding trans_def  | 
6545  | 
proof (intro allI impI)  | 
|
6546  | 
fix as bs cs  | 
|
6547  | 
assume asbs: "(as, bs) \<in> lexn r n" and bscs: "(bs, cs) \<in> lexn r n"  | 
|
6548  | 
obtain abs a b as' bs' where  | 
|
6549  | 
n: "length as = n" and "length bs = n" and  | 
|
6550  | 
as: "as = abs @ a # as'" and  | 
|
6551  | 
bs: "bs = abs @ b # bs'" and  | 
|
| 72184 | 6552  | 
abr: "(a, b) \<in> r"  | 
| 62090 | 6553  | 
using asbs unfolding lexn_conv by blast  | 
6554  | 
obtain bcs b' c' cs' bs' where  | 
|
6555  | 
n': "length cs = n" and "length bs = n" and  | 
|
6556  | 
bs': "bs = bcs @ b' # bs'" and  | 
|
6557  | 
cs: "cs = bcs @ c' # cs'" and  | 
|
| 72184 | 6558  | 
b'c'r: "(b', c') \<in> r"  | 
| 62090 | 6559  | 
using bscs unfolding lexn_conv by blast  | 
6560  | 
consider (le) "length bcs < length abs"  | 
|
6561  | 
| (eq) "length bcs = length abs"  | 
|
6562  | 
| (ge) "length bcs > length abs" by linarith  | 
|
6563  | 
thus "(as, cs) \<in> lexn r n"  | 
|
6564  | 
proof cases  | 
|
6565  | 
let ?k = "length bcs"  | 
|
6566  | 
case le  | 
|
6567  | 
hence "as ! ?k = bs ! ?k" unfolding as bs by (simp add: nth_append)  | 
|
| 72184 | 6568  | 
hence "(as ! ?k, cs ! ?k) \<in> r" using b'c'r unfolding bs' cs by auto  | 
| 62090 | 6569  | 
moreover  | 
6570  | 
have "length bcs < length as" using le unfolding as by simp  | 
|
6571  | 
from id_take_nth_drop[OF this]  | 
|
6572  | 
have "as = take ?k as @ as ! ?k # drop (Suc ?k) as" .  | 
|
6573  | 
moreover  | 
|
6574  | 
have "length bcs < length cs" unfolding cs by simp  | 
|
6575  | 
from id_take_nth_drop[OF this]  | 
|
6576  | 
have "cs = take ?k cs @ cs ! ?k # drop (Suc ?k) cs" .  | 
|
6577  | 
moreover have "take ?k as = take ?k cs"  | 
|
6578  | 
using le arg_cong[OF bs, of "take (length bcs)"]  | 
|
6579  | 
unfolding cs as bs' by auto  | 
|
| 72184 | 6580  | 
ultimately show ?thesis using n n' unfolding lexn_conv by auto  | 
| 62090 | 6581  | 
next  | 
6582  | 
let ?k = "length abs"  | 
|
6583  | 
case ge  | 
|
6584  | 
hence "bs ! ?k = cs ! ?k" unfolding bs' cs by (simp add: nth_append)  | 
|
| 72184 | 6585  | 
hence "(as ! ?k, cs ! ?k) \<in> r" using abr unfolding as bs by auto  | 
| 62090 | 6586  | 
moreover  | 
6587  | 
have "length abs < length as" using ge unfolding as by simp  | 
|
6588  | 
from id_take_nth_drop[OF this]  | 
|
6589  | 
have "as = take ?k as @ as ! ?k # drop (Suc ?k) as" .  | 
|
6590  | 
moreover have "length abs < length cs" using n n' unfolding as by simp  | 
|
6591  | 
from id_take_nth_drop[OF this]  | 
|
6592  | 
have "cs = take ?k cs @ cs ! ?k # drop (Suc ?k) cs" .  | 
|
6593  | 
moreover have "take ?k as = take ?k cs"  | 
|
6594  | 
using ge arg_cong[OF bs', of "take (length abs)"]  | 
|
6595  | 
unfolding cs as bs by auto  | 
|
6596  | 
ultimately show ?thesis using n n' unfolding lexn_conv by auto  | 
|
6597  | 
next  | 
|
6598  | 
let ?k = "length abs"  | 
|
6599  | 
case eq  | 
|
| 63540 | 6600  | 
hence *: "abs = bcs" "b = b'" using bs bs' by auto  | 
| 72184 | 6601  | 
hence "(a, c') \<in> r"  | 
6602  | 
using abr b'c'r assms unfolding trans_def by blast  | 
|
6603  | 
with * show ?thesis using n n' unfolding lexn_conv as bs cs by auto  | 
|
| 62090 | 6604  | 
qed  | 
6605  | 
qed  | 
|
6606  | 
||
| 
71435
 
d8fb621fea02
some lemmas about the lex ordering on lists, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
71423 
diff
changeset
 | 
6607  | 
corollary lex_transI:  | 
| 72184 | 6608  | 
assumes "trans r" shows "trans (lex r)"  | 
| 
71435
 
d8fb621fea02
some lemmas about the lex ordering on lists, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
71423 
diff
changeset
 | 
6609  | 
using lexn_transI [OF assms]  | 
| 
 
d8fb621fea02
some lemmas about the lex ordering on lists, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
71423 
diff
changeset
 | 
6610  | 
by (clarsimp simp add: lex_def trans_def) (metis lexn_length)  | 
| 
 
d8fb621fea02
some lemmas about the lex ordering on lists, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
71423 
diff
changeset
 | 
6611  | 
|
| 15302 | 6612  | 
lemma lex_conv:  | 
| 15656 | 6613  | 
"lex r =  | 
6614  | 
    {(xs,ys). length xs = length ys \<and>
 | 
|
| 72184 | 6615  | 
(\<exists>xys x y xs' ys'. xs = xys @ x # xs' \<and> ys = xys @ y # ys' \<and> (x, y) \<in> r)}"  | 
| 15302 | 6616  | 
by (force simp add: lex_def lexn_conv)  | 
6617  | 
||
| 71585 | 6618  | 
lemma wf_lenlex [intro!]: "wf r \<Longrightarrow> wf (lenlex r)"  | 
| 15693 | 6619  | 
by (unfold lenlex_def) blast  | 
6620  | 
||
6621  | 
lemma lenlex_conv:  | 
|
| 67091 | 6622  | 
    "lenlex r = {(xs,ys). length xs < length ys \<or>
 | 
6623  | 
length xs = length ys \<and> (xs, ys) \<in> lex r}"  | 
|
| 
72164
 
b7c54ff7f2dd
S Holub's proposed generalisation of the lexicographic product of two orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
72095 
diff
changeset
 | 
6624  | 
by (auto simp add: lenlex_def Id_on_def lex_prod_def inv_image_def)  | 
| 15302 | 6625  | 
|
| 
71404
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
6626  | 
lemma total_lenlex:  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
6627  | 
assumes "total r"  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
6628  | 
shows "total (lenlex r)"  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
6629  | 
proof -  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
6630  | 
have "(xs,ys) \<in> lexn r (length xs) \<or> (ys,xs) \<in> lexn r (length xs)"  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
6631  | 
if "xs \<noteq> ys" and len: "length xs = length ys" for xs ys  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
6632  | 
proof -  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
6633  | 
obtain pre x xs' y ys' where "x\<noteq>y" and xs: "xs = pre @ [x] @ xs'" and ys: "ys = pre @ [y] @ys'"  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
6634  | 
by (meson len \<open>xs \<noteq> ys\<close> same_length_different)  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
6635  | 
then consider "(x,y) \<in> r" | "(y,x) \<in> r"  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
6636  | 
by (meson UNIV_I assms total_on_def)  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
6637  | 
then show ?thesis  | 
| 72184 | 6638  | 
by cases (use len in \<open>(force simp add: lexn_conv xs ys)+\<close>)  | 
| 
71404
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
6639  | 
qed  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
6640  | 
then show ?thesis  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
6641  | 
by (fastforce simp: lenlex_def total_on_def lex_def)  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
6642  | 
qed  | 
| 
 
f2b783abfbe7
A few lemmas connected with orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
71393 
diff
changeset
 | 
6643  | 
|
| 72184 | 6644  | 
lemma lenlex_transI [intro]: "trans r \<Longrightarrow> trans (lenlex r)"  | 
| 
71435
 
d8fb621fea02
some lemmas about the lex ordering on lists, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
71423 
diff
changeset
 | 
6645  | 
unfolding lenlex_def  | 
| 72184 | 6646  | 
by (meson lex_transI trans_inv_image trans_less_than trans_lex_prod)  | 
| 
71435
 
d8fb621fea02
some lemmas about the lex ordering on lists, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
71423 
diff
changeset
 | 
6647  | 
|
| 15302 | 6648  | 
lemma Nil_notin_lex [iff]: "([], ys) \<notin> lex r"  | 
| 71585 | 6649  | 
by (simp add: lex_conv)  | 
| 15302 | 6650  | 
|
6651  | 
lemma Nil2_notin_lex [iff]: "(xs, []) \<notin> lex r"  | 
|
| 71585 | 6652  | 
by (simp add:lex_conv)  | 
| 15302 | 6653  | 
|
| 18447 | 6654  | 
lemma Cons_in_lex [simp]:  | 
| 72184 | 6655  | 
"(x # xs, y # ys) \<in> lex r \<longleftrightarrow> (x, y) \<in> r \<and> length xs = length ys \<or> x = y \<and> (xs, ys) \<in> lex r"  | 
6656  | 
(is "?lhs = ?rhs")  | 
|
| 71585 | 6657  | 
proof  | 
6658  | 
assume ?lhs then show ?rhs  | 
|
6659  | 
by (simp add: lex_conv) (metis hd_append list.sel(1) list.sel(3) tl_append2)  | 
|
6660  | 
next  | 
|
6661  | 
assume ?rhs then show ?lhs  | 
|
6662  | 
by (simp add: lex_conv) (blast intro: Cons_eq_appendI)  | 
|
6663  | 
qed  | 
|
| 66502 | 6664  | 
|
| 
71435
 
d8fb621fea02
some lemmas about the lex ordering on lists, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
71423 
diff
changeset
 | 
6665  | 
lemma Nil_lenlex_iff1 [simp]: "([], ns) \<in> lenlex r \<longleftrightarrow> ns \<noteq> []"  | 
| 
 
d8fb621fea02
some lemmas about the lex ordering on lists, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
71423 
diff
changeset
 | 
6666  | 
and Nil_lenlex_iff2 [simp]: "(ns,[]) \<notin> lenlex r"  | 
| 
 
d8fb621fea02
some lemmas about the lex ordering on lists, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
71423 
diff
changeset
 | 
6667  | 
by (auto simp: lenlex_def)  | 
| 
 
d8fb621fea02
some lemmas about the lex ordering on lists, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
71423 
diff
changeset
 | 
6668  | 
|
| 
 
d8fb621fea02
some lemmas about the lex ordering on lists, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
71423 
diff
changeset
 | 
6669  | 
lemma Cons_lenlex_iff:  | 
| 
 
d8fb621fea02
some lemmas about the lex ordering on lists, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
71423 
diff
changeset
 | 
6670  | 
"((m # ms, n # ns) \<in> lenlex r) \<longleftrightarrow>  | 
| 
 
d8fb621fea02
some lemmas about the lex ordering on lists, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
71423 
diff
changeset
 | 
6671  | 
length ms < length ns  | 
| 72184 | 6672  | 
\<or> length ms = length ns \<and> (m,n) \<in> r  | 
| 
71435
 
d8fb621fea02
some lemmas about the lex ordering on lists, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
71423 
diff
changeset
 | 
6673  | 
\<or> (m = n \<and> (ms,ns) \<in> lenlex r)"  | 
| 
 
d8fb621fea02
some lemmas about the lex ordering on lists, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
71423 
diff
changeset
 | 
6674  | 
by (auto simp: lenlex_def)  | 
| 
 
d8fb621fea02
some lemmas about the lex ordering on lists, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
71423 
diff
changeset
 | 
6675  | 
|
| 
71766
 
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
 
paulson <lp15@cam.ac.uk> 
parents: 
71593 
diff
changeset
 | 
6676  | 
lemma lenlex_irreflexive: "(\<And>x. (x,x) \<notin> r) \<Longrightarrow> (xs,xs) \<notin> lenlex r"  | 
| 
 
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
 
paulson <lp15@cam.ac.uk> 
parents: 
71593 
diff
changeset
 | 
6677  | 
by (induction xs) (auto simp add: Cons_lenlex_iff)  | 
| 
 
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
 
paulson <lp15@cam.ac.uk> 
parents: 
71593 
diff
changeset
 | 
6678  | 
|
| 
 
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
 
paulson <lp15@cam.ac.uk> 
parents: 
71593 
diff
changeset
 | 
6679  | 
lemma lenlex_trans:  | 
| 72184 | 6680  | 
"\<lbrakk>(x,y) \<in> lenlex r; (y,z) \<in> lenlex r; trans r\<rbrakk> \<Longrightarrow> (x,z) \<in> lenlex r"  | 
| 
71766
 
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
 
paulson <lp15@cam.ac.uk> 
parents: 
71593 
diff
changeset
 | 
6681  | 
by (meson lenlex_transI transD)  | 
| 
 
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
 
paulson <lp15@cam.ac.uk> 
parents: 
71593 
diff
changeset
 | 
6682  | 
|
| 
71435
 
d8fb621fea02
some lemmas about the lex ordering on lists, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
71423 
diff
changeset
 | 
6683  | 
lemma lenlex_length: "(ms, ns) \<in> lenlex r \<Longrightarrow> length ms \<le> length ns"  | 
| 
 
d8fb621fea02
some lemmas about the lex ordering on lists, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
71423 
diff
changeset
 | 
6684  | 
by (auto simp: lenlex_def)  | 
| 
 
d8fb621fea02
some lemmas about the lex ordering on lists, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
71423 
diff
changeset
 | 
6685  | 
|
| 66502 | 6686  | 
lemma lex_append_rightI:  | 
6687  | 
"(xs, ys) \<in> lex r \<Longrightarrow> length vs = length us \<Longrightarrow> (xs @ us, ys @ vs) \<in> lex r"  | 
|
| 71585 | 6688  | 
by (fastforce simp: lex_def lexn_conv)  | 
| 66502 | 6689  | 
|
6690  | 
lemma lex_append_leftI:  | 
|
6691  | 
"(ys, zs) \<in> lex r \<Longrightarrow> (xs @ ys, xs @ zs) \<in> lex r"  | 
|
| 71585 | 6692  | 
by (induct xs) auto  | 
| 66502 | 6693  | 
|
6694  | 
lemma lex_append_leftD:  | 
|
6695  | 
"\<forall>x. (x,x) \<notin> r \<Longrightarrow> (xs @ ys, xs @ zs) \<in> lex r \<Longrightarrow> (ys, zs) \<in> lex r"  | 
|
| 71585 | 6696  | 
by (induct xs) auto  | 
| 66502 | 6697  | 
|
6698  | 
lemma lex_append_left_iff:  | 
|
6699  | 
"\<forall>x. (x,x) \<notin> r \<Longrightarrow> (xs @ ys, xs @ zs) \<in> lex r \<longleftrightarrow> (ys, zs) \<in> lex r"  | 
|
| 71585 | 6700  | 
by(metis lex_append_leftD lex_append_leftI)  | 
| 66502 | 6701  | 
|
6702  | 
lemma lex_take_index:  | 
|
6703  | 
assumes "(xs, ys) \<in> lex r"  | 
|
| 71585 | 6704  | 
obtains i where "i < length xs" and "i < length ys" and "take i xs = take i ys"  | 
| 66502 | 6705  | 
and "(xs ! i, ys ! i) \<in> r"  | 
6706  | 
proof -  | 
|
6707  | 
obtain n us x xs' y ys' where "(xs, ys) \<in> lexn r n" and "length xs = n" and "length ys = n"  | 
|
6708  | 
and "xs = us @ x # xs'" and "ys = us @ y # ys'" and "(x, y) \<in> r"  | 
|
6709  | 
using assms by (fastforce simp: lex_def lexn_conv)  | 
|
6710  | 
then show ?thesis by (intro that [of "length us"]) auto  | 
|
6711  | 
qed  | 
|
| 15302 | 6712  | 
|
| 
71848
 
3c7852327787
A few new theorems, plus some tidying up
 
paulson <lp15@cam.ac.uk> 
parents: 
71827 
diff
changeset
 | 
6713  | 
lemma irrefl_lex: "irrefl r \<Longrightarrow> irrefl (lex r)"  | 
| 
 
3c7852327787
A few new theorems, plus some tidying up
 
paulson <lp15@cam.ac.uk> 
parents: 
71827 
diff
changeset
 | 
6714  | 
by (meson irrefl_def lex_take_index)  | 
| 
 
3c7852327787
A few new theorems, plus some tidying up
 
paulson <lp15@cam.ac.uk> 
parents: 
71827 
diff
changeset
 | 
6715  | 
|
| 
72095
 
cfb6c22a5636
lemmas about sets and the enumerate operator
 
paulson <lp15@cam.ac.uk> 
parents: 
71991 
diff
changeset
 | 
6716  | 
lemma lexl_not_refl [simp]: "irrefl r \<Longrightarrow> (x,x) \<notin> lex r"  | 
| 
 
cfb6c22a5636
lemmas about sets and the enumerate operator
 
paulson <lp15@cam.ac.uk> 
parents: 
71991 
diff
changeset
 | 
6717  | 
by (meson irrefl_def lex_take_index)  | 
| 
 
cfb6c22a5636
lemmas about sets and the enumerate operator
 
paulson <lp15@cam.ac.uk> 
parents: 
71991 
diff
changeset
 | 
6718  | 
|
| 
71848
 
3c7852327787
A few new theorems, plus some tidying up
 
paulson <lp15@cam.ac.uk> 
parents: 
71827 
diff
changeset
 | 
6719  | 
|
| 60758 | 6720  | 
subsubsection \<open>Lexicographic Ordering\<close>  | 
6721  | 
||
6722  | 
text \<open>Classical lexicographic ordering on lists, ie. "a" < "ab" < "b".  | 
|
| 15656 | 6723  | 
    This ordering does \emph{not} preserve well-foundedness.
 | 
| 64963 | 6724  | 
Author: N. Voelker, March 2005.\<close>  | 
| 15656 | 6725  | 
|
| 50548 | 6726  | 
definition lexord :: "('a \<times> 'a) set \<Rightarrow> ('a list \<times> 'a list) set" where
 | 
6727  | 
"lexord r = {(x,y). \<exists> a v. y = x @ a # v \<or>
 | 
|
| 72184 | 6728  | 
(\<exists> u a b v w. (a,b) \<in> r \<and> x = u @ (a # v) \<and> y = u @ (b # w))}"  | 
| 15656 | 6729  | 
|
6730  | 
lemma lexord_Nil_left[simp]: "([],y) \<in> lexord r = (\<exists> a x. y = a # x)"  | 
|
| 72184 | 6731  | 
by (unfold lexord_def, induct_tac y, auto)  | 
| 15656 | 6732  | 
|
6733  | 
lemma lexord_Nil_right[simp]: "(x,[]) \<notin> lexord r"  | 
|
| 72184 | 6734  | 
by (unfold lexord_def, induct_tac x, auto)  | 
| 15656 | 6735  | 
|
6736  | 
lemma lexord_cons_cons[simp]:  | 
|
| 72184 | 6737  | 
"(a # x, b # y) \<in> lexord r \<longleftrightarrow> (a,b)\<in> r \<or> (a = b \<and> (x,y)\<in> lexord r)" (is "?lhs = ?rhs")  | 
| 71585 | 6738  | 
proof  | 
6739  | 
assume ?lhs  | 
|
6740  | 
then show ?rhs  | 
|
6741  | 
apply (simp add: lexord_def)  | 
|
| 68719 | 6742  | 
apply (metis hd_append list.sel(1) list.sel(3) tl_append2)  | 
| 71585 | 6743  | 
done  | 
| 72184 | 6744  | 
qed (auto simp add: lexord_def; (blast | meson Cons_eq_appendI))  | 
| 15656 | 6745  | 
|
6746  | 
lemmas lexord_simps = lexord_Nil_left lexord_Nil_right lexord_cons_cons  | 
|
6747  | 
||
| 73018 | 6748  | 
lemma lexord_same_pref_iff:  | 
6749  | 
"(xs @ ys, xs @ zs) \<in> lexord r \<longleftrightarrow> (\<exists>x \<in> set xs. (x,x) \<in> r) \<or> (ys, zs) \<in> lexord r"  | 
|
6750  | 
by(induction xs) auto  | 
|
6751  | 
||
6752  | 
lemma lexord_same_pref_if_irrefl[simp]:  | 
|
6753  | 
"irrefl r \<Longrightarrow> (xs @ ys, xs @ zs) \<in> lexord r \<longleftrightarrow> (ys, zs) \<in> lexord r"  | 
|
6754  | 
by (simp add: irrefl_def lexord_same_pref_iff)  | 
|
6755  | 
||
| 15656 | 6756  | 
lemma lexord_append_rightI: "\<exists> b z. y = b # z \<Longrightarrow> (x, x @ y) \<in> lexord r"  | 
| 73018 | 6757  | 
by (metis append_Nil2 lexord_Nil_left lexord_same_pref_iff)  | 
| 15656 | 6758  | 
|
6759  | 
lemma lexord_append_left_rightI:  | 
|
| 72184 | 6760  | 
"(a,b) \<in> r \<Longrightarrow> (u @ a # x, u @ b # y) \<in> lexord r"  | 
| 73018 | 6761  | 
by (simp add: lexord_same_pref_iff)  | 
6762  | 
||
6763  | 
lemma lexord_append_leftI: "(u,v) \<in> lexord r \<Longrightarrow> (x @ u, x @ v) \<in> lexord r"  | 
|
6764  | 
by (simp add: lexord_same_pref_iff)  | 
|
| 15656 | 6765  | 
|
6766  | 
lemma lexord_append_leftD:  | 
|
| 71585 | 6767  | 
"\<lbrakk>(x @ u, x @ v) \<in> lexord r; (\<forall>a. (a,a) \<notin> r) \<rbrakk> \<Longrightarrow> (u,v) \<in> lexord r"  | 
| 73018 | 6768  | 
by (simp add: lexord_same_pref_iff)  | 
| 15656 | 6769  | 
|
| 64963 | 6770  | 
lemma lexord_take_index_conv:  | 
| 67091 | 6771  | 
"((x,y) \<in> lexord r) =  | 
| 64963 | 6772  | 
((length x < length y \<and> take (length x) y = x) \<or>  | 
| 72184 | 6773  | 
(\<exists>i. i < min(length x)(length y) \<and> take i x = take i y \<and> (x!i,y!i) \<in> r))"  | 
| 71585 | 6774  | 
proof -  | 
6775  | 
have "(\<exists>a v. y = x @ a # v) = (length x < length y \<and> take (length x) y = x)"  | 
|
6776  | 
by (metis Cons_nth_drop_Suc append_eq_conv_conj drop_all list.simps(3) not_le)  | 
|
6777  | 
moreover  | 
|
| 72184 | 6778  | 
have "(\<exists>u a b. (a, b) \<in> r \<and> (\<exists>v. x = u @ a # v) \<and> (\<exists>w. y = u @ b # w)) =  | 
6779  | 
(\<exists>i<length x. i < length y \<and> take i x = take i y \<and> (x ! i, y ! i) \<in> r)"  | 
|
| 71585 | 6780  | 
apply safe  | 
6781  | 
using less_iff_Suc_add apply auto[1]  | 
|
6782  | 
by (metis id_take_nth_drop)  | 
|
6783  | 
ultimately show ?thesis  | 
|
6784  | 
by (auto simp: lexord_def Let_def)  | 
|
6785  | 
qed  | 
|
| 64963 | 6786  | 
|
6787  | 
\<comment> \<open>lexord is extension of partial ordering List.lex\<close>  | 
|
| 41986 | 6788  | 
lemma lexord_lex: "(x,y) \<in> lex r = ((x,y) \<in> lexord r \<and> length x = length y)"  | 
| 68719 | 6789  | 
proof (induction x arbitrary: y)  | 
6790  | 
case (Cons a x y) then show ?case  | 
|
6791  | 
by (cases y) (force+)  | 
|
6792  | 
qed auto  | 
|
| 15656 | 6793  | 
|
| 73018 | 6794  | 
lemma lexord_sufI:  | 
6795  | 
assumes "(u,w) \<in> lexord r" "length w \<le> length u"  | 
|
6796  | 
shows "(u@v,w@z) \<in> lexord r"  | 
|
6797  | 
proof-  | 
|
6798  | 
from leD[OF assms(2)] assms(1)[unfolded lexord_take_index_conv[of u w r] min_absorb2[OF assms(2)]]  | 
|
6799  | 
obtain i where "take i u = take i w" and "(u!i,w!i) \<in> r" and "i < length w"  | 
|
6800  | 
by blast  | 
|
6801  | 
hence "((u@v)!i, (w@z)!i) \<in> r"  | 
|
6802  | 
unfolding nth_append using less_le_trans[OF \<open>i < length w\<close> assms(2)] \<open>(u!i,w!i) \<in> r\<close>  | 
|
6803  | 
by presburger  | 
|
6804  | 
moreover have "i < min (length (u@v)) (length (w@z))"  | 
|
6805  | 
using assms(2) \<open>i < length w\<close> by simp  | 
|
6806  | 
moreover have "take i (u@v) = take i (w@z)"  | 
|
6807  | 
using assms(2) \<open>i < length w\<close> \<open>take i u = take i w\<close> by simp  | 
|
6808  | 
ultimately show ?thesis  | 
|
6809  | 
using lexord_take_index_conv by blast  | 
|
6810  | 
qed  | 
|
6811  | 
||
6812  | 
lemma lexord_sufE:  | 
|
6813  | 
assumes "(xs@zs,ys@qs) \<in> lexord r" "xs \<noteq> ys" "length xs = length ys" "length zs = length qs"  | 
|
6814  | 
shows "(xs,ys) \<in> lexord r"  | 
|
6815  | 
proof-  | 
|
6816  | 
obtain i where "i < length (xs@zs)" and "i < length (ys@qs)" and "take i (xs@zs) = take i (ys@qs)"  | 
|
6817  | 
and "((xs@zs) ! i, (ys@qs) ! i) \<in> r"  | 
|
6818  | 
using assms(1) lex_take_index[unfolded lexord_lex,of "xs @ zs" "ys @ qs" r]  | 
|
6819  | 
length_append[of xs zs, unfolded assms(3,4), folded length_append[of ys qs]]  | 
|
6820  | 
by blast  | 
|
6821  | 
have "length (take i xs) = length (take i ys)"  | 
|
6822  | 
by (simp add: assms(3))  | 
|
6823  | 
have "i < length xs"  | 
|
6824  | 
using assms(2,3) le_less_linear take_all[of xs i] take_all[of ys i]  | 
|
6825  | 
\<open>take i (xs @ zs) = take i (ys @ qs)\<close> append_eq_append_conv take_append  | 
|
6826  | 
by metis  | 
|
6827  | 
hence "(xs ! i, ys ! i) \<in> r"  | 
|
6828  | 
using \<open>((xs @ zs) ! i, (ys @ qs) ! i) \<in> r\<close> assms(3) by (simp add: nth_append)  | 
|
6829  | 
moreover have "take i xs = take i ys"  | 
|
6830  | 
using assms(3) \<open>take i (xs @ zs) = take i (ys @ qs)\<close> by auto  | 
|
6831  | 
ultimately show ?thesis  | 
|
6832  | 
unfolding lexord_take_index_conv using \<open>i < length xs\<close> assms(3) by fastforce  | 
|
6833  | 
qed  | 
|
6834  | 
||
| 67091 | 6835  | 
lemma lexord_irreflexive: "\<forall>x. (x,x) \<notin> r \<Longrightarrow> (xs,xs) \<notin> lexord r"  | 
| 72184 | 6836  | 
by (induct xs) auto  | 
| 41986 | 6837  | 
|
| 60758 | 6838  | 
text\<open>By Ren\'e Thiemann:\<close>  | 
| 64963 | 6839  | 
lemma lexord_partial_trans:  | 
| 41986 | 6840  | 
"(\<And>x y z. x \<in> set xs \<Longrightarrow> (x,y) \<in> r \<Longrightarrow> (y,z) \<in> r \<Longrightarrow> (x,z) \<in> r)  | 
6841  | 
\<Longrightarrow> (xs,ys) \<in> lexord r \<Longrightarrow> (ys,zs) \<in> lexord r \<Longrightarrow> (xs,zs) \<in> lexord r"  | 
|
6842  | 
proof (induct xs arbitrary: ys zs)  | 
|
6843  | 
case Nil  | 
|
6844  | 
from Nil(3) show ?case unfolding lexord_def by (cases zs, auto)  | 
|
6845  | 
next  | 
|
6846  | 
case (Cons x xs yys zzs)  | 
|
6847  | 
from Cons(3) obtain y ys where yys: "yys = y # ys" unfolding lexord_def  | 
|
6848  | 
by (cases yys, auto)  | 
|
6849  | 
note Cons = Cons[unfolded yys]  | 
|
| 72184 | 6850  | 
from Cons(3) have one: "(x,y) \<in> r \<or> x = y \<and> (xs,ys) \<in> lexord r" by auto  | 
| 41986 | 6851  | 
from Cons(4) obtain z zs where zzs: "zzs = z # zs" unfolding lexord_def  | 
6852  | 
by (cases zzs, auto)  | 
|
6853  | 
note Cons = Cons[unfolded zzs]  | 
|
| 72184 | 6854  | 
from Cons(4) have two: "(y,z) \<in> r \<or> y = z \<and> (ys,zs) \<in> lexord r" by auto  | 
| 41986 | 6855  | 
  {
 | 
6856  | 
assume "(xs,ys) \<in> lexord r" and "(ys,zs) \<in> lexord r"  | 
|
6857  | 
from Cons(1)[OF _ this] Cons(2)  | 
|
6858  | 
have "(xs,zs) \<in> lexord r" by auto  | 
|
6859  | 
} note ind1 = this  | 
|
6860  | 
  {
 | 
|
6861  | 
assume "(x,y) \<in> r" and "(y,z) \<in> r"  | 
|
6862  | 
from Cons(2)[OF _ this] have "(x,z) \<in> r" by auto  | 
|
6863  | 
} note ind2 = this  | 
|
6864  | 
from one two ind1 ind2  | 
|
| 72184 | 6865  | 
have "(x,z) \<in> r \<or> x = z \<and> (xs,zs) \<in> lexord r" by blast  | 
6866  | 
thus ?case unfolding zzs by auto  | 
|
| 41986 | 6867  | 
qed  | 
| 15656 | 6868  | 
|
| 64963 | 6869  | 
lemma lexord_trans:  | 
| 72184 | 6870  | 
"\<lbrakk> (x, y) \<in> lexord r; (y, z) \<in> lexord r; trans r \<rbrakk> \<Longrightarrow> (x, z) \<in> lexord r"  | 
6871  | 
by(auto simp: trans_def intro:lexord_partial_trans)  | 
|
6872  | 
||
6873  | 
lemma lexord_transI: "trans r \<Longrightarrow> trans (lexord r)"  | 
|
| 
71935
 
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
 
paulson <lp15@cam.ac.uk> 
parents: 
71860 
diff
changeset
 | 
6874  | 
by (meson lexord_trans transI)  | 
| 15656 | 6875  | 
|
| 
71766
 
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
 
paulson <lp15@cam.ac.uk> 
parents: 
71593 
diff
changeset
 | 
6876  | 
lemma total_lexord: "total r \<Longrightarrow> total (lexord r)"  | 
| 
 
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
 
paulson <lp15@cam.ac.uk> 
parents: 
71593 
diff
changeset
 | 
6877  | 
unfolding total_on_def  | 
| 
 
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
 
paulson <lp15@cam.ac.uk> 
parents: 
71593 
diff
changeset
 | 
6878  | 
proof clarsimp  | 
| 
 
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
 
paulson <lp15@cam.ac.uk> 
parents: 
71593 
diff
changeset
 | 
6879  | 
fix x y  | 
| 
 
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
 
paulson <lp15@cam.ac.uk> 
parents: 
71593 
diff
changeset
 | 
6880  | 
assume "\<forall>x y. x \<noteq> y \<longrightarrow> (x, y) \<in> r \<or> (y, x) \<in> r"  | 
| 
 
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
 
paulson <lp15@cam.ac.uk> 
parents: 
71593 
diff
changeset
 | 
6881  | 
and "(x::'a list) \<noteq> y"  | 
| 
 
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
 
paulson <lp15@cam.ac.uk> 
parents: 
71593 
diff
changeset
 | 
6882  | 
and "(y, x) \<notin> lexord r"  | 
| 
 
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
 
paulson <lp15@cam.ac.uk> 
parents: 
71593 
diff
changeset
 | 
6883  | 
then  | 
| 
 
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
 
paulson <lp15@cam.ac.uk> 
parents: 
71593 
diff
changeset
 | 
6884  | 
show "(x, y) \<in> lexord r"  | 
| 
 
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
 
paulson <lp15@cam.ac.uk> 
parents: 
71593 
diff
changeset
 | 
6885  | 
proof (induction x arbitrary: y)  | 
| 
 
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
 
paulson <lp15@cam.ac.uk> 
parents: 
71593 
diff
changeset
 | 
6886  | 
case Nil  | 
| 
 
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
 
paulson <lp15@cam.ac.uk> 
parents: 
71593 
diff
changeset
 | 
6887  | 
then show ?case  | 
| 
 
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
 
paulson <lp15@cam.ac.uk> 
parents: 
71593 
diff
changeset
 | 
6888  | 
by (metis lexord_Nil_left list.exhaust)  | 
| 
 
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
 
paulson <lp15@cam.ac.uk> 
parents: 
71593 
diff
changeset
 | 
6889  | 
next  | 
| 
 
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
 
paulson <lp15@cam.ac.uk> 
parents: 
71593 
diff
changeset
 | 
6890  | 
case (Cons a x y) then show ?case  | 
| 72184 | 6891  | 
by (cases y) (force+)  | 
| 
71766
 
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
 
paulson <lp15@cam.ac.uk> 
parents: 
71593 
diff
changeset
 | 
6892  | 
qed  | 
| 
 
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
 
paulson <lp15@cam.ac.uk> 
parents: 
71593 
diff
changeset
 | 
6893  | 
qed  | 
| 
 
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
 
paulson <lp15@cam.ac.uk> 
parents: 
71593 
diff
changeset
 | 
6894  | 
|
| 
 
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
 
paulson <lp15@cam.ac.uk> 
parents: 
71593 
diff
changeset
 | 
6895  | 
corollary lexord_linear: "(\<forall>a b. (a,b) \<in> r \<or> a = b \<or> (b,a) \<in> r) \<Longrightarrow> (x,y) \<in> lexord r \<or> x = y \<or> (y,x) \<in> lexord r"  | 
| 
 
1249b998e377
New theory Library/List_Lenlexorder.thy, a type class instantiation for well-ordering lists
 
paulson <lp15@cam.ac.uk> 
parents: 
71593 
diff
changeset
 | 
6896  | 
using total_lexord by (metis UNIV_I total_on_def)  | 
| 15656 | 6897  | 
|
| 56545 | 6898  | 
lemma lexord_irrefl:  | 
6899  | 
"irrefl R \<Longrightarrow> irrefl (lexord R)"  | 
|
| 68085 | 6900  | 
by (simp add: irrefl_def lexord_irreflexive)  | 
| 64963 | 6901  | 
|
| 56545 | 6902  | 
lemma lexord_asym:  | 
6903  | 
assumes "asym R"  | 
|
6904  | 
shows "asym (lexord R)"  | 
|
| 
71935
 
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
 
paulson <lp15@cam.ac.uk> 
parents: 
71860 
diff
changeset
 | 
6905  | 
proof  | 
| 56545 | 6906  | 
fix xs ys  | 
6907  | 
assume "(xs, ys) \<in> lexord R"  | 
|
6908  | 
then show "(ys, xs) \<notin> lexord R"  | 
|
6909  | 
proof (induct xs arbitrary: ys)  | 
|
6910  | 
case Nil  | 
|
6911  | 
then show ?case by simp  | 
|
6912  | 
next  | 
|
6913  | 
case (Cons x xs)  | 
|
6914  | 
then obtain z zs where ys: "ys = z # zs" by (cases ys) auto  | 
|
6915  | 
with assms Cons show ?case by (auto elim: asym.cases)  | 
|
6916  | 
qed  | 
|
6917  | 
qed  | 
|
| 64963 | 6918  | 
|
| 56545 | 6919  | 
lemma lexord_asymmetric:  | 
6920  | 
assumes "asym R"  | 
|
6921  | 
assumes hyp: "(a, b) \<in> lexord R"  | 
|
6922  | 
shows "(b, a) \<notin> lexord R"  | 
|
6923  | 
proof -  | 
|
| 60758 | 6924  | 
from \<open>asym R\<close> have "asym (lexord R)" by (rule lexord_asym)  | 
| 56545 | 6925  | 
then show ?thesis by (rule asym.cases) (auto simp add: hyp)  | 
6926  | 
qed  | 
|
6927  | 
||
| 
71935
 
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
 
paulson <lp15@cam.ac.uk> 
parents: 
71860 
diff
changeset
 | 
6928  | 
lemma asym_lex: "asym R \<Longrightarrow> asym (lex R)"  | 
| 
 
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
 
paulson <lp15@cam.ac.uk> 
parents: 
71860 
diff
changeset
 | 
6929  | 
by (meson asym.simps irrefl_lex lexord_asym lexord_lex)  | 
| 
 
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
 
paulson <lp15@cam.ac.uk> 
parents: 
71860 
diff
changeset
 | 
6930  | 
|
| 
 
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
 
paulson <lp15@cam.ac.uk> 
parents: 
71860 
diff
changeset
 | 
6931  | 
lemma asym_lenlex: "asym R \<Longrightarrow> asym (lenlex R)"  | 
| 
 
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
 
paulson <lp15@cam.ac.uk> 
parents: 
71860 
diff
changeset
 | 
6932  | 
by (simp add: lenlex_def asym_inv_image asym_less_than asym_lex asym_lex_prod)  | 
| 
 
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
 
paulson <lp15@cam.ac.uk> 
parents: 
71860 
diff
changeset
 | 
6933  | 
|
| 
 
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
 
paulson <lp15@cam.ac.uk> 
parents: 
71860 
diff
changeset
 | 
6934  | 
lemma lenlex_append1:  | 
| 
 
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
 
paulson <lp15@cam.ac.uk> 
parents: 
71860 
diff
changeset
 | 
6935  | 
assumes len: "(us,xs) \<in> lenlex R" and eq: "length vs = length ys"  | 
| 
 
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
 
paulson <lp15@cam.ac.uk> 
parents: 
71860 
diff
changeset
 | 
6936  | 
shows "(us @ vs, xs @ ys) \<in> lenlex R"  | 
| 
 
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
 
paulson <lp15@cam.ac.uk> 
parents: 
71860 
diff
changeset
 | 
6937  | 
using len  | 
| 
 
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
 
paulson <lp15@cam.ac.uk> 
parents: 
71860 
diff
changeset
 | 
6938  | 
proof (induction us)  | 
| 
 
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
 
paulson <lp15@cam.ac.uk> 
parents: 
71860 
diff
changeset
 | 
6939  | 
case Nil  | 
| 
 
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
 
paulson <lp15@cam.ac.uk> 
parents: 
71860 
diff
changeset
 | 
6940  | 
then show ?case  | 
| 
 
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
 
paulson <lp15@cam.ac.uk> 
parents: 
71860 
diff
changeset
 | 
6941  | 
by (simp add: lenlex_def eq)  | 
| 
 
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
 
paulson <lp15@cam.ac.uk> 
parents: 
71860 
diff
changeset
 | 
6942  | 
next  | 
| 
 
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
 
paulson <lp15@cam.ac.uk> 
parents: 
71860 
diff
changeset
 | 
6943  | 
case (Cons u us)  | 
| 
 
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
 
paulson <lp15@cam.ac.uk> 
parents: 
71860 
diff
changeset
 | 
6944  | 
with lex_append_rightI show ?case  | 
| 
 
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
 
paulson <lp15@cam.ac.uk> 
parents: 
71860 
diff
changeset
 | 
6945  | 
by (fastforce simp add: lenlex_def eq)  | 
| 
 
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
 
paulson <lp15@cam.ac.uk> 
parents: 
71860 
diff
changeset
 | 
6946  | 
qed  | 
| 
 
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
 
paulson <lp15@cam.ac.uk> 
parents: 
71860 
diff
changeset
 | 
6947  | 
|
| 
 
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
 
paulson <lp15@cam.ac.uk> 
parents: 
71860 
diff
changeset
 | 
6948  | 
lemma lenlex_append2 [simp]:  | 
| 
 
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
 
paulson <lp15@cam.ac.uk> 
parents: 
71860 
diff
changeset
 | 
6949  | 
assumes "irrefl R"  | 
| 
 
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
 
paulson <lp15@cam.ac.uk> 
parents: 
71860 
diff
changeset
 | 
6950  | 
shows "(us @ xs, us @ ys) \<in> lenlex R \<longleftrightarrow> (xs, ys) \<in> lenlex R"  | 
| 
 
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
 
paulson <lp15@cam.ac.uk> 
parents: 
71860 
diff
changeset
 | 
6951  | 
proof (induction us)  | 
| 
 
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
 
paulson <lp15@cam.ac.uk> 
parents: 
71860 
diff
changeset
 | 
6952  | 
case Nil  | 
| 
 
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
 
paulson <lp15@cam.ac.uk> 
parents: 
71860 
diff
changeset
 | 
6953  | 
then show ?case  | 
| 
 
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
 
paulson <lp15@cam.ac.uk> 
parents: 
71860 
diff
changeset
 | 
6954  | 
by (simp add: lenlex_def)  | 
| 
 
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
 
paulson <lp15@cam.ac.uk> 
parents: 
71860 
diff
changeset
 | 
6955  | 
next  | 
| 
 
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
 
paulson <lp15@cam.ac.uk> 
parents: 
71860 
diff
changeset
 | 
6956  | 
case (Cons u us)  | 
| 
 
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
 
paulson <lp15@cam.ac.uk> 
parents: 
71860 
diff
changeset
 | 
6957  | 
with assms show ?case  | 
| 
 
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
 
paulson <lp15@cam.ac.uk> 
parents: 
71860 
diff
changeset
 | 
6958  | 
by (auto simp: lenlex_def irrefl_def)  | 
| 
 
82b00b8f1871
fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
 
paulson <lp15@cam.ac.uk> 
parents: 
71860 
diff
changeset
 | 
6959  | 
qed  | 
| 56545 | 6960  | 
|
| 60758 | 6961  | 
text \<open>  | 
| 
54593
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6962  | 
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
 | 
6963  | 
Author: Andreas Lochbihler  | 
| 60758 | 6964  | 
\<close>  | 
| 
54593
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6965  | 
|
| 
72170
 
7fa9605b226c
Another go with lex: now lexordp back in class ord
 
paulson <lp15@cam.ac.uk> 
parents: 
72164 
diff
changeset
 | 
6966  | 
context ord  | 
| 
61681
 
ca53150406c9
option "inductive_defs" controls exposure of def and mono facts;
 
wenzelm 
parents: 
61630 
diff
changeset
 | 
6967  | 
begin  | 
| 
 
ca53150406c9
option "inductive_defs" controls exposure of def and mono facts;
 
wenzelm 
parents: 
61630 
diff
changeset
 | 
6968  | 
|
| 
 
ca53150406c9
option "inductive_defs" controls exposure of def and mono facts;
 
wenzelm 
parents: 
61630 
diff
changeset
 | 
6969  | 
context  | 
| 62093 | 6970  | 
notes [[inductive_internals]]  | 
| 
61681
 
ca53150406c9
option "inductive_defs" controls exposure of def and mono facts;
 
wenzelm 
parents: 
61630 
diff
changeset
 | 
6971  | 
begin  | 
| 
54593
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6972  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6973  | 
inductive lexordp :: "'a list \<Rightarrow> 'a list \<Rightarrow> bool"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6974  | 
where  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6975  | 
Nil: "lexordp [] (y # ys)"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6976  | 
| Cons: "x < y \<Longrightarrow> lexordp (x # xs) (y # ys)"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6977  | 
| Cons_eq:  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6978  | 
"\<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
 | 
6979  | 
|
| 
61681
 
ca53150406c9
option "inductive_defs" controls exposure of def and mono facts;
 
wenzelm 
parents: 
61630 
diff
changeset
 | 
6980  | 
end  | 
| 
 
ca53150406c9
option "inductive_defs" controls exposure of def and mono facts;
 
wenzelm 
parents: 
61630 
diff
changeset
 | 
6981  | 
|
| 
54593
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6982  | 
lemma lexordp_simps [simp]:  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6983  | 
"lexordp [] ys = (ys \<noteq> [])"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6984  | 
"lexordp xs [] = False"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6985  | 
"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
 | 
6986  | 
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
 | 
6987  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6988  | 
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
 | 
6989  | 
Nil: "lexordp_eq [] ys"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6990  | 
| 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
 | 
6991  | 
| 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
 | 
6992  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6993  | 
lemma lexordp_eq_simps [simp]:  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6994  | 
"lexordp_eq [] ys = True"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6995  | 
"lexordp_eq xs [] \<longleftrightarrow> xs = []"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6996  | 
"lexordp_eq (x # xs) [] = False"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6997  | 
"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
 | 
6998  | 
by(subst lexordp_eq.simps, fastforce)+  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
6999  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7000  | 
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
 | 
7001  | 
by(induct xs)(auto simp add: neq_Nil_conv)  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7002  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7003  | 
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
 | 
7004  | 
by(induct us) auto  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7005  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7006  | 
lemma lexordp_eq_refl: "lexordp_eq xs xs"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7007  | 
by(induct xs) simp_all  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7008  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7009  | 
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
 | 
7010  | 
by(induct xs) auto  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7011  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7012  | 
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
 | 
7013  | 
by(induct xs) auto  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7014  | 
|
| 64963 | 7015  | 
lemma lexordp_irreflexive:  | 
| 
54593
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7016  | 
assumes irrefl: "\<forall>x. \<not> x < x"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7017  | 
shows "\<not> lexordp xs xs"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7018  | 
proof  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7019  | 
assume "lexordp xs xs"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7020  | 
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
 | 
7021  | 
qed  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7022  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7023  | 
lemma lexordp_into_lexordp_eq:  | 
| 73018 | 7024  | 
"lexordp xs ys \<Longrightarrow> lexordp_eq xs ys"  | 
7025  | 
by (induction rule: lexordp.induct) simp_all  | 
|
7026  | 
||
7027  | 
lemma lexordp_eq_pref: "lexordp_eq u (u @ v)"  | 
|
7028  | 
by (metis append_Nil2 lexordp_append_rightI lexordp_eq_refl lexordp_into_lexordp_eq)  | 
|
| 
54593
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7029  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7030  | 
end  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7031  | 
|
| 
72170
 
7fa9605b226c
Another go with lex: now lexordp back in class ord
 
paulson <lp15@cam.ac.uk> 
parents: 
72164 
diff
changeset
 | 
7032  | 
declare ord.lexordp_simps [simp, code]  | 
| 
 
7fa9605b226c
Another go with lex: now lexordp back in class ord
 
paulson <lp15@cam.ac.uk> 
parents: 
72164 
diff
changeset
 | 
7033  | 
declare ord.lexordp_eq_simps [code, simp]  | 
| 
54593
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7034  | 
|
| 
61681
 
ca53150406c9
option "inductive_defs" controls exposure of def and mono facts;
 
wenzelm 
parents: 
61630 
diff
changeset
 | 
7035  | 
context order  | 
| 
 
ca53150406c9
option "inductive_defs" controls exposure of def and mono facts;
 
wenzelm 
parents: 
61630 
diff
changeset
 | 
7036  | 
begin  | 
| 
54593
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7037  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7038  | 
lemma lexordp_antisym:  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7039  | 
assumes "lexordp xs ys" "lexordp ys xs"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7040  | 
shows False  | 
| 
72164
 
b7c54ff7f2dd
S Holub's proposed generalisation of the lexicographic product of two orderings
 
paulson <lp15@cam.ac.uk> 
parents: 
72095 
diff
changeset
 | 
7041  | 
using assms by induct auto  | 
| 
54593
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7042  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7043  | 
lemma lexordp_irreflexive': "\<not> lexordp xs xs"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7044  | 
by(rule lexordp_irreflexive) simp  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7045  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7046  | 
end  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7047  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7048  | 
context linorder begin  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7049  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7050  | 
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
 | 
7051  | 
assumes "lexordp xs ys"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7052  | 
obtains (Nil) y ys' where "xs = []" "ys = y # ys'"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7053  | 
| (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
 | 
7054  | 
| (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
 | 
7055  | 
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
 | 
7056  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7057  | 
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
 | 
7058  | 
assumes major: "lexordp xs ys"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7059  | 
and Nil: "\<And>y ys. P [] (y # ys)"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7060  | 
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
 | 
7061  | 
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
 | 
7062  | 
shows "P xs ys"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7063  | 
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
 | 
7064  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7065  | 
lemma lexordp_iff:  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7066  | 
"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
 | 
7067  | 
(is "?lhs = ?rhs")  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7068  | 
proof  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7069  | 
assume ?lhs thus ?rhs  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7070  | 
proof induct  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7071  | 
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
 | 
7072  | 
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
 | 
7073  | 
next  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7074  | 
assume ?rhs thus ?lhs  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7075  | 
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
 | 
7076  | 
qed  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7077  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7078  | 
lemma lexordp_conv_lexord:  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7079  | 
  "lexordp xs ys \<longleftrightarrow> (xs, ys) \<in> lexord {(x, y). x < y}"
 | 
| 72184 | 7080  | 
by(simp add: lexordp_iff lexord_def)  | 
| 
54593
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7081  | 
|
| 64963 | 7082  | 
lemma lexordp_eq_antisym:  | 
7083  | 
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
 | 
7084  | 
shows "xs = ys"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7085  | 
using assms by induct simp_all  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7086  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7087  | 
lemma lexordp_eq_trans:  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7088  | 
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
 | 
7089  | 
shows "lexordp_eq xs zs"  | 
| 68719 | 7090  | 
using assms  | 
7091  | 
by (induct arbitrary: zs) (case_tac zs; auto)+  | 
|
| 
54593
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7092  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7093  | 
lemma lexordp_trans:  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7094  | 
assumes "lexordp xs ys" "lexordp ys zs"  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7095  | 
shows "lexordp xs zs"  | 
| 68719 | 7096  | 
using assms  | 
7097  | 
by (induct arbitrary: zs) (case_tac zs; auto)+  | 
|
| 
54593
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7098  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7099  | 
lemma lexordp_linear: "lexordp xs ys \<or> xs = ys \<or> lexordp ys xs"  | 
| 68719 | 7100  | 
by(induct xs arbitrary: ys; case_tac ys; fastforce)  | 
| 
54593
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7101  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7102  | 
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
 | 
7103  | 
(is "?lhs \<longleftrightarrow> ?rhs")  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7104  | 
proof  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7105  | 
assume ?lhs  | 
| 63540 | 7106  | 
hence "\<not> lexordp_eq ys xs" by induct simp_all  | 
7107  | 
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
 | 
7108  | 
next  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7109  | 
assume ?rhs  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7110  | 
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
 | 
7111  | 
thus ?lhs by induct simp_all  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7112  | 
qed  | 
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7113  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7114  | 
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
 | 
7115  | 
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
 | 
7116  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7117  | 
lemma lexordp_eq_linear: "lexordp_eq xs ys \<or> lexordp_eq ys xs"  | 
| 68719 | 7118  | 
by (induct xs arbitrary: ys) (case_tac ys; auto)+  | 
| 
54593
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7119  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7120  | 
lemma lexordp_linorder: "class.linorder lexordp_eq lexordp"  | 
| 68719 | 7121  | 
by unfold_locales  | 
7122  | 
(auto simp add: lexordp_conv_lexordp_eq lexordp_eq_refl lexordp_eq_antisym intro: lexordp_eq_trans del: disjCI intro: lexordp_eq_linear)  | 
|
| 
54593
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7123  | 
|
| 
 
8c0a27b9c1bd
add predicate version of lexicographic order on lists
 
Andreas Lochbihler 
parents: 
54498 
diff
changeset
 | 
7124  | 
end  | 
| 15656 | 7125  | 
|
| 64886 | 7126  | 
lemma sorted_insort_is_snoc: "sorted xs \<Longrightarrow> \<forall>x \<in> set xs. a \<ge> x \<Longrightarrow> insort a xs = xs @ [a]"  | 
| 68109 | 7127  | 
by (induct xs) (auto dest!: insort_is_Cons)  | 
| 64886 | 7128  | 
|
7129  | 
||
| 60758 | 7130  | 
subsubsection \<open>Lexicographic combination of measure functions\<close>  | 
7131  | 
||
7132  | 
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
 | 
7133  | 
|
| 50548 | 7134  | 
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
 | 
7135  | 
|
| 
44013
 
5cfc1c36ae97
moved recdef package to HOL/Library/Old_Recdef.thy
 
krauss 
parents: 
43594 
diff
changeset
 | 
7136  | 
lemma wf_measures[simp]: "wf (measures fs)"  | 
| 24349 | 7137  | 
unfolding measures_def  | 
7138  | 
by blast  | 
|
| 
21103
 
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
 
krauss 
parents: 
21079 
diff
changeset
 | 
7139  | 
|
| 64963 | 7140  | 
lemma in_measures[simp]:  | 
| 
21103
 
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
 
krauss 
parents: 
21079 
diff
changeset
 | 
7141  | 
"(x, y) \<in> measures [] = False"  | 
| 
 
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
 
krauss 
parents: 
21079 
diff
changeset
 | 
7142  | 
"(x, y) \<in> measures (f # fs)  | 
| 64963 | 7143  | 
= (f x < f y \<or> (f x = f y \<and> (x, y) \<in> measures fs))"  | 
| 24349 | 7144  | 
unfolding measures_def  | 
7145  | 
by auto  | 
|
| 
21103
 
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
 
krauss 
parents: 
21079 
diff
changeset
 | 
7146  | 
|
| 71585 | 7147  | 
lemma measures_less: "f x < f y \<Longrightarrow> (x, y) \<in> measures (f#fs)"  | 
| 24349 | 7148  | 
by simp  | 
| 
21103
 
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
 
krauss 
parents: 
21079 
diff
changeset
 | 
7149  | 
|
| 71585 | 7150  | 
lemma measures_lesseq: "f x \<le> f y \<Longrightarrow> (x, y) \<in> measures fs \<Longrightarrow> (x, y) \<in> measures (f#fs)"  | 
| 24349 | 7151  | 
by auto  | 
| 
21103
 
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
 
krauss 
parents: 
21079 
diff
changeset
 | 
7152  | 
|
| 
 
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
 
krauss 
parents: 
21079 
diff
changeset
 | 
7153  | 
|
| 60758 | 7154  | 
subsubsection \<open>Lifting Relations to Lists: one element\<close>  | 
| 40230 | 7155  | 
|
7156  | 
definition listrel1 :: "('a \<times> 'a) set \<Rightarrow> ('a list \<times> 'a list) set" where
 | 
|
7157  | 
"listrel1 r = {(xs,ys).
 | 
|
7158  | 
\<exists>us z z' vs. xs = us @ z # vs \<and> (z,z') \<in> r \<and> ys = us @ z' # vs}"  | 
|
7159  | 
||
7160  | 
lemma listrel1I:  | 
|
7161  | 
"\<lbrakk> (x, y) \<in> r; xs = us @ x # vs; ys = us @ y # vs \<rbrakk> \<Longrightarrow>  | 
|
7162  | 
(xs, ys) \<in> listrel1 r"  | 
|
7163  | 
unfolding listrel1_def by auto  | 
|
7164  | 
||
7165  | 
lemma listrel1E:  | 
|
7166  | 
"\<lbrakk> (xs, ys) \<in> listrel1 r;  | 
|
7167  | 
!!x y us vs. \<lbrakk> (x, y) \<in> r; xs = us @ x # vs; ys = us @ y # vs \<rbrakk> \<Longrightarrow> P  | 
|
7168  | 
\<rbrakk> \<Longrightarrow> P"  | 
|
7169  | 
unfolding listrel1_def by auto  | 
|
7170  | 
||
7171  | 
lemma not_Nil_listrel1 [iff]: "([], xs) \<notin> listrel1 r"  | 
|
7172  | 
unfolding listrel1_def by blast  | 
|
7173  | 
||
7174  | 
lemma not_listrel1_Nil [iff]: "(xs, []) \<notin> listrel1 r"  | 
|
7175  | 
unfolding listrel1_def by blast  | 
|
7176  | 
||
7177  | 
lemma Cons_listrel1_Cons [iff]:  | 
|
7178  | 
"(x # xs, y # ys) \<in> listrel1 r \<longleftrightarrow>  | 
|
7179  | 
(x,y) \<in> r \<and> xs = ys \<or> x = y \<and> (xs, ys) \<in> listrel1 r"  | 
|
7180  | 
by (simp add: listrel1_def Cons_eq_append_conv) (blast)  | 
|
7181  | 
||
7182  | 
lemma listrel1I1: "(x,y) \<in> r \<Longrightarrow> (x # xs, y # xs) \<in> listrel1 r"  | 
|
| 56085 | 7183  | 
by fast  | 
| 40230 | 7184  | 
|
7185  | 
lemma listrel1I2: "(xs, ys) \<in> listrel1 r \<Longrightarrow> (x # xs, x # ys) \<in> listrel1 r"  | 
|
| 56085 | 7186  | 
by fast  | 
| 40230 | 7187  | 
|
7188  | 
lemma append_listrel1I:  | 
|
7189  | 
"(xs, ys) \<in> listrel1 r \<and> us = vs \<or> xs = ys \<and> (us, vs) \<in> listrel1 r  | 
|
7190  | 
\<Longrightarrow> (xs @ us, ys @ vs) \<in> listrel1 r"  | 
|
7191  | 
unfolding listrel1_def  | 
|
7192  | 
by auto (blast intro: append_eq_appendI)+  | 
|
7193  | 
||
7194  | 
lemma Cons_listrel1E1[elim!]:  | 
|
7195  | 
assumes "(x # xs, ys) \<in> listrel1 r"  | 
|
7196  | 
and "\<And>y. ys = y # xs \<Longrightarrow> (x, y) \<in> r \<Longrightarrow> R"  | 
|
7197  | 
and "\<And>zs. ys = x # zs \<Longrightarrow> (xs, zs) \<in> listrel1 r \<Longrightarrow> R"  | 
|
7198  | 
shows R  | 
|
7199  | 
using assms by (cases ys) blast+  | 
|
7200  | 
||
7201  | 
lemma Cons_listrel1E2[elim!]:  | 
|
7202  | 
assumes "(xs, y # ys) \<in> listrel1 r"  | 
|
7203  | 
and "\<And>x. xs = x # ys \<Longrightarrow> (x, y) \<in> r \<Longrightarrow> R"  | 
|
7204  | 
and "\<And>zs. xs = y # zs \<Longrightarrow> (zs, ys) \<in> listrel1 r \<Longrightarrow> R"  | 
|
7205  | 
shows R  | 
|
7206  | 
using assms by (cases xs) blast+  | 
|
7207  | 
||
7208  | 
lemma snoc_listrel1_snoc_iff:  | 
|
7209  | 
"(xs @ [x], ys @ [y]) \<in> listrel1 r  | 
|
7210  | 
\<longleftrightarrow> (xs, ys) \<in> listrel1 r \<and> x = y \<or> xs = ys \<and> (x,y) \<in> r" (is "?L \<longleftrightarrow> ?R")  | 
|
7211  | 
proof  | 
|
7212  | 
assume ?L thus ?R  | 
|
| 
44890
 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 
nipkow 
parents: 
44635 
diff
changeset
 | 
7213  | 
by (fastforce simp: listrel1_def snoc_eq_iff_butlast butlast_append)  | 
| 40230 | 7214  | 
next  | 
7215  | 
assume ?R then show ?L unfolding listrel1_def by force  | 
|
7216  | 
qed  | 
|
7217  | 
||
7218  | 
lemma listrel1_eq_len: "(xs,ys) \<in> listrel1 r \<Longrightarrow> length xs = length ys"  | 
|
7219  | 
unfolding listrel1_def by auto  | 
|
7220  | 
||
7221  | 
lemma listrel1_mono:  | 
|
7222  | 
"r \<subseteq> s \<Longrightarrow> listrel1 r \<subseteq> listrel1 s"  | 
|
7223  | 
unfolding listrel1_def by blast  | 
|
7224  | 
||
7225  | 
||
| 67613 | 7226  | 
lemma listrel1_converse: "listrel1 (r\<inverse>) = (listrel1 r)\<inverse>"  | 
| 40230 | 7227  | 
unfolding listrel1_def by blast  | 
7228  | 
||
7229  | 
lemma in_listrel1_converse:  | 
|
| 67613 | 7230  | 
"(x,y) \<in> listrel1 (r\<inverse>) \<longleftrightarrow> (x,y) \<in> (listrel1 r)\<inverse>"  | 
| 40230 | 7231  | 
unfolding listrel1_def by blast  | 
7232  | 
||
7233  | 
lemma listrel1_iff_update:  | 
|
7234  | 
"(xs,ys) \<in> (listrel1 r)  | 
|
7235  | 
\<longleftrightarrow> (\<exists>y n. (xs ! n, y) \<in> r \<and> n < length xs \<and> ys = xs[n:=y])" (is "?L \<longleftrightarrow> ?R")  | 
|
7236  | 
proof  | 
|
7237  | 
assume "?L"  | 
|
7238  | 
then obtain x y u v where "xs = u @ x # v" "ys = u @ y # v" "(x,y) \<in> r"  | 
|
7239  | 
unfolding listrel1_def by auto  | 
|
7240  | 
then have "ys = xs[length u := y]" and "length u < length xs"  | 
|
7241  | 
and "(xs ! length u, y) \<in> r" by auto  | 
|
7242  | 
then show "?R" by auto  | 
|
7243  | 
next  | 
|
7244  | 
assume "?R"  | 
|
7245  | 
then obtain x y n where "(xs!n, y) \<in> r" "n < size xs" "ys = xs[n:=y]" "x = xs!n"  | 
|
7246  | 
by auto  | 
|
7247  | 
then obtain u v where "xs = u @ x # v" and "ys = u @ y # v" and "(x, y) \<in> r"  | 
|
7248  | 
by (auto intro: upd_conv_take_nth_drop id_take_nth_drop)  | 
|
7249  | 
then show "?L" by (auto simp: listrel1_def)  | 
|
7250  | 
qed  | 
|
7251  | 
||
7252  | 
||
| 60758 | 7253  | 
text\<open>Accessible part and wellfoundedness:\<close>  | 
| 40230 | 7254  | 
|
7255  | 
lemma Cons_acc_listrel1I [intro!]:  | 
|
| 54295 | 7256  | 
"x \<in> Wellfounded.acc r \<Longrightarrow> xs \<in> Wellfounded.acc (listrel1 r) \<Longrightarrow> (x # xs) \<in> Wellfounded.acc (listrel1 r)"  | 
7257  | 
apply (induct arbitrary: xs set: Wellfounded.acc)  | 
|
| 40230 | 7258  | 
apply (erule thin_rl)  | 
7259  | 
apply (erule acc_induct)  | 
|
| 68719 | 7260  | 
apply (rule accI)  | 
| 40230 | 7261  | 
apply (blast)  | 
7262  | 
done  | 
|
7263  | 
||
| 54295 | 7264  | 
lemma lists_accD: "xs \<in> lists (Wellfounded.acc r) \<Longrightarrow> xs \<in> Wellfounded.acc (listrel1 r)"  | 
| 68719 | 7265  | 
proof (induct set: lists)  | 
7266  | 
case Nil  | 
|
7267  | 
then show ?case  | 
|
7268  | 
by (meson acc.intros not_listrel1_Nil)  | 
|
7269  | 
next  | 
|
7270  | 
case (Cons a l)  | 
|
7271  | 
then show ?case  | 
|
7272  | 
by blast  | 
|
7273  | 
qed  | 
|
| 40230 | 7274  | 
|
| 54295 | 7275  | 
lemma lists_accI: "xs \<in> Wellfounded.acc (listrel1 r) \<Longrightarrow> xs \<in> lists (Wellfounded.acc r)"  | 
7276  | 
apply (induct set: Wellfounded.acc)  | 
|
| 40230 | 7277  | 
apply clarify  | 
7278  | 
apply (rule accI)  | 
|
| 
44890
 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 
nipkow 
parents: 
44635 
diff
changeset
 | 
7279  | 
apply (fastforce dest!: in_set_conv_decomp[THEN iffD1] simp: listrel1_def)  | 
| 40230 | 7280  | 
done  | 
7281  | 
||
| 44510 | 7282  | 
lemma wf_listrel1_iff[simp]: "wf(listrel1 r) = wf r"  | 
| 56085 | 7283  | 
by (auto simp: wf_acc_iff  | 
7284  | 
intro: lists_accD lists_accI[THEN Cons_in_lists_iff[THEN iffD1, THEN conjunct1]])  | 
|
| 40230 | 7285  | 
|
| 60758 | 7286  | 
subsubsection \<open>Lifting Relations to Lists: all elements\<close>  | 
| 15302 | 7287  | 
|
| 23740 | 7288  | 
inductive_set  | 
| 46317 | 7289  | 
  listrel :: "('a \<times> 'b) set \<Rightarrow> ('a list \<times> 'b list) set"
 | 
7290  | 
  for r :: "('a \<times> 'b) set"
 | 
|
| 22262 | 7291  | 
where  | 
| 23740 | 7292  | 
Nil: "([],[]) \<in> listrel r"  | 
| 71585 | 7293  | 
| Cons: "\<lbrakk>(x,y) \<in> r; (xs,ys) \<in> listrel r\<rbrakk> \<Longrightarrow> (x#xs, y#ys) \<in> listrel r"  | 
| 23740 | 7294  | 
|
7295  | 
inductive_cases listrel_Nil1 [elim!]: "([],xs) \<in> listrel r"  | 
|
7296  | 
inductive_cases listrel_Nil2 [elim!]: "(xs,[]) \<in> listrel r"  | 
|
7297  | 
inductive_cases listrel_Cons1 [elim!]: "(y#ys,xs) \<in> listrel r"  | 
|
7298  | 
inductive_cases listrel_Cons2 [elim!]: "(xs,y#ys) \<in> listrel r"  | 
|
| 15302 | 7299  | 
|
7300  | 
||
| 40230 | 7301  | 
lemma listrel_eq_len: "(xs, ys) \<in> listrel r \<Longrightarrow> length xs = length ys"  | 
| 71813 | 7302  | 
by(induct rule: listrel.induct) auto  | 
| 40230 | 7303  | 
|
| 67091 | 7304  | 
lemma listrel_iff_zip [code_unfold]: "(xs,ys) \<in> listrel r \<longleftrightarrow>  | 
7305  | 
length xs = length ys \<and> (\<forall>(x,y) \<in> set(zip xs ys). (x,y) \<in> r)" (is "?L \<longleftrightarrow> ?R")  | 
|
| 40230 | 7306  | 
proof  | 
7307  | 
assume ?L thus ?R by induct (auto intro: listrel_eq_len)  | 
|
7308  | 
next  | 
|
7309  | 
assume ?R thus ?L  | 
|
7310  | 
apply (clarify)  | 
|
7311  | 
by (induct rule: list_induct2) (auto intro: listrel.intros)  | 
|
7312  | 
qed  | 
|
7313  | 
||
| 67091 | 7314  | 
lemma listrel_iff_nth: "(xs,ys) \<in> listrel r \<longleftrightarrow>  | 
7315  | 
length xs = length ys \<and> (\<forall>n < length xs. (xs!n, ys!n) \<in> r)" (is "?L \<longleftrightarrow> ?R")  | 
|
| 71813 | 7316  | 
by (auto simp add: all_set_conv_all_nth listrel_iff_zip)  | 
| 40230 | 7317  | 
|
| 15302 | 7318  | 
lemma listrel_mono: "r \<subseteq> s \<Longrightarrow> listrel r \<subseteq> listrel s"  | 
| 68719 | 7319  | 
by (meson listrel_iff_nth subrelI subset_eq)  | 
| 15302 | 7320  | 
|
| 71813 | 7321  | 
lemma listrel_subset:  | 
7322  | 
assumes "r \<subseteq> A \<times> A" shows "listrel r \<subseteq> lists A \<times> lists A"  | 
|
7323  | 
proof clarify  | 
|
7324  | 
show "a \<in> lists A \<and> b \<in> lists A" if "(a, b) \<in> listrel r" for a b  | 
|
7325  | 
using that assms by (induction rule: listrel.induct, auto)  | 
|
7326  | 
qed  | 
|
7327  | 
||
7328  | 
lemma listrel_refl_on:  | 
|
7329  | 
assumes "refl_on A r" shows "refl_on (lists A) (listrel r)"  | 
|
7330  | 
proof -  | 
|
7331  | 
have "l \<in> lists A \<Longrightarrow> (l, l) \<in> listrel r" for l  | 
|
7332  | 
using assms unfolding refl_on_def  | 
|
7333  | 
by (induction l, auto intro: listrel.intros)  | 
|
7334  | 
then show ?thesis  | 
|
7335  | 
by (meson assms listrel_subset refl_on_def)  | 
|
7336  | 
qed  | 
|
| 15302 | 7337  | 
|
| 64963 | 7338  | 
lemma listrel_sym: "sym r \<Longrightarrow> sym (listrel r)"  | 
| 68719 | 7339  | 
by (simp add: listrel_iff_nth sym_def)  | 
| 15302 | 7340  | 
|
| 71813 | 7341  | 
lemma listrel_trans:  | 
7342  | 
assumes "trans r" shows "trans (listrel r)"  | 
|
7343  | 
proof -  | 
|
7344  | 
have "(x, z) \<in> listrel r" if "(x, y) \<in> listrel r" "(y, z) \<in> listrel r" for x y z  | 
|
7345  | 
using that  | 
|
7346  | 
proof induction  | 
|
7347  | 
case (Cons x y xs ys)  | 
|
7348  | 
then show ?case  | 
|
7349  | 
by clarsimp (metis assms listrel.Cons listrel_iff_nth transD)  | 
|
7350  | 
qed auto  | 
|
7351  | 
then show ?thesis  | 
|
7352  | 
using transI by blast  | 
|
7353  | 
qed  | 
|
| 15302 | 7354  | 
|
7355  | 
theorem equiv_listrel: "equiv A r \<Longrightarrow> equiv (lists A) (listrel r)"  | 
|
| 71813 | 7356  | 
by (simp add: equiv_def listrel_refl_on listrel_sym listrel_trans)  | 
| 15302 | 7357  | 
|
| 67613 | 7358  | 
lemma listrel_rtrancl_refl[iff]: "(xs,xs) \<in> listrel(r\<^sup>*)"  | 
| 71813 | 7359  | 
using listrel_refl_on[of UNIV, OF refl_rtrancl]  | 
7360  | 
by(auto simp: refl_on_def)  | 
|
| 40230 | 7361  | 
|
7362  | 
lemma listrel_rtrancl_trans:  | 
|
| 71813 | 7363  | 
"\<lbrakk>(xs,ys) \<in> listrel(r\<^sup>*); (ys,zs) \<in> listrel(r\<^sup>*)\<rbrakk> \<Longrightarrow> (xs,zs) \<in> listrel(r\<^sup>*)"  | 
7364  | 
by (metis listrel_trans trans_def trans_rtrancl)  | 
|
| 40230 | 7365  | 
|
| 15302 | 7366  | 
lemma listrel_Nil [simp]: "listrel r `` {[]} = {[]}"
 | 
| 71813 | 7367  | 
by (blast intro: listrel.intros)  | 
| 15302 | 7368  | 
|
7369  | 
lemma listrel_Cons:  | 
|
| 71813 | 7370  | 
  "listrel r `` {x#xs} = set_Cons (r``{x}) (listrel r `` {xs})"
 | 
7371  | 
by (auto simp add: set_Cons_def intro: listrel.intros)  | 
|
| 15302 | 7372  | 
|
| 69593 | 7373  | 
text \<open>Relating \<^term>\<open>listrel1\<close>, \<^term>\<open>listrel\<close> and closures:\<close>  | 
| 40230 | 7374  | 
|
| 71813 | 7375  | 
lemma listrel1_rtrancl_subset_rtrancl_listrel1: "listrel1 (r\<^sup>*) \<subseteq> (listrel1 r)\<^sup>*"  | 
| 40230 | 7376  | 
proof (rule subrelI)  | 
| 67613 | 7377  | 
fix xs ys assume 1: "(xs,ys) \<in> listrel1 (r\<^sup>*)"  | 
| 40230 | 7378  | 
  { fix x y us vs
 | 
| 67613 | 7379  | 
have "(x,y) \<in> r\<^sup>* \<Longrightarrow> (us @ x # vs, us @ y # vs) \<in> (listrel1 r)\<^sup>*"  | 
| 40230 | 7380  | 
proof(induct rule: rtrancl.induct)  | 
7381  | 
case rtrancl_refl show ?case by simp  | 
|
7382  | 
next  | 
|
7383  | 
case rtrancl_into_rtrancl thus ?case  | 
|
7384  | 
by (metis listrel1I rtrancl.rtrancl_into_rtrancl)  | 
|
7385  | 
qed }  | 
|
| 67613 | 7386  | 
thus "(xs,ys) \<in> (listrel1 r)\<^sup>*" using 1 by(blast elim: listrel1E)  | 
| 40230 | 7387  | 
qed  | 
7388  | 
||
| 67613 | 7389  | 
lemma rtrancl_listrel1_eq_len: "(x,y) \<in> (listrel1 r)\<^sup>* \<Longrightarrow> length x = length y"  | 
| 71813 | 7390  | 
by (induct rule: rtrancl.induct) (auto intro: listrel1_eq_len)  | 
| 40230 | 7391  | 
|
7392  | 
lemma rtrancl_listrel1_ConsI1:  | 
|
| 67613 | 7393  | 
"(xs,ys) \<in> (listrel1 r)\<^sup>* \<Longrightarrow> (x#xs,x#ys) \<in> (listrel1 r)\<^sup>*"  | 
| 71813 | 7394  | 
proof (induction rule: rtrancl.induct)  | 
7395  | 
case (rtrancl_into_rtrancl a b c)  | 
|
7396  | 
then show ?case  | 
|
7397  | 
by (metis listrel1I2 rtrancl.rtrancl_into_rtrancl)  | 
|
7398  | 
qed auto  | 
|
| 40230 | 7399  | 
|
7400  | 
lemma rtrancl_listrel1_ConsI2:  | 
|
| 71813 | 7401  | 
"(x,y) \<in> r\<^sup>* \<Longrightarrow> (xs, ys) \<in> (listrel1 r)\<^sup>* \<Longrightarrow> (x # xs, y # ys) \<in> (listrel1 r)\<^sup>*"  | 
7402  | 
by (meson in_mono listrel1I1 listrel1_rtrancl_subset_rtrancl_listrel1 rtrancl_listrel1_ConsI1 rtrancl_trans)  | 
|
| 40230 | 7403  | 
|
7404  | 
lemma listrel1_subset_listrel:  | 
|
7405  | 
"r \<subseteq> r' \<Longrightarrow> refl r' \<Longrightarrow> listrel1 r \<subseteq> listrel(r')"  | 
|
| 71813 | 7406  | 
by(auto elim!: listrel1E simp add: listrel_iff_zip set_zip refl_on_def)  | 
| 40230 | 7407  | 
|
7408  | 
lemma listrel_reflcl_if_listrel1:  | 
|
| 67613 | 7409  | 
"(xs,ys) \<in> listrel1 r \<Longrightarrow> (xs,ys) \<in> listrel(r\<^sup>*)"  | 
| 71813 | 7410  | 
by(erule listrel1E)(auto simp add: listrel_iff_zip set_zip)  | 
| 40230 | 7411  | 
|
| 67613 | 7412  | 
lemma listrel_rtrancl_eq_rtrancl_listrel1: "listrel (r\<^sup>*) = (listrel1 r)\<^sup>*"  | 
| 40230 | 7413  | 
proof  | 
| 67613 | 7414  | 
  { fix x y assume "(x,y) \<in> listrel (r\<^sup>*)"
 | 
7415  | 
then have "(x,y) \<in> (listrel1 r)\<^sup>*"  | 
|
| 40230 | 7416  | 
by induct (auto intro: rtrancl_listrel1_ConsI2) }  | 
| 67613 | 7417  | 
then show "listrel (r\<^sup>*) \<subseteq> (listrel1 r)\<^sup>*"  | 
| 40230 | 7418  | 
by (rule subrelI)  | 
7419  | 
next  | 
|
| 67613 | 7420  | 
show "listrel (r\<^sup>*) \<supseteq> (listrel1 r)\<^sup>*"  | 
| 40230 | 7421  | 
proof(rule subrelI)  | 
| 67613 | 7422  | 
fix xs ys assume "(xs,ys) \<in> (listrel1 r)\<^sup>*"  | 
7423  | 
then show "(xs,ys) \<in> listrel (r\<^sup>*)"  | 
|
| 40230 | 7424  | 
proof induct  | 
7425  | 
case base show ?case by(auto simp add: listrel_iff_zip set_zip)  | 
|
7426  | 
next  | 
|
7427  | 
case (step ys zs)  | 
|
| 56085 | 7428  | 
thus ?case by (metis listrel_reflcl_if_listrel1 listrel_rtrancl_trans)  | 
| 40230 | 7429  | 
qed  | 
7430  | 
qed  | 
|
7431  | 
qed  | 
|
7432  | 
||
7433  | 
lemma rtrancl_listrel1_if_listrel:  | 
|
| 67613 | 7434  | 
"(xs,ys) \<in> listrel r \<Longrightarrow> (xs,ys) \<in> (listrel1 r)\<^sup>*"  | 
| 71813 | 7435  | 
by(metis listrel_rtrancl_eq_rtrancl_listrel1 subsetD[OF listrel_mono] r_into_rtrancl subsetI)  | 
| 40230 | 7436  | 
|
| 67613 | 7437  | 
lemma listrel_subset_rtrancl_listrel1: "listrel r \<subseteq> (listrel1 r)\<^sup>*"  | 
| 71813 | 7438  | 
by(fast intro:rtrancl_listrel1_if_listrel)  | 
| 40230 | 7439  | 
|
| 15302 | 7440  | 
|
| 60758 | 7441  | 
subsection \<open>Size function\<close>  | 
| 
26749
 
397a1aeede7d
* New attribute "termination_simp": Simp rules for termination proofs
 
krauss 
parents: 
26734 
diff
changeset
 | 
7442  | 
|
| 
56643
 
41d3596d8a64
move size hooks together, with new one preceding old one and sharing same theory data
 
blanchet 
parents: 
56545 
diff
changeset
 | 
7443  | 
lemma [measure_function]: "is_measure f \<Longrightarrow> is_measure (size_list f)"  | 
| 71813 | 7444  | 
by (rule is_measure_trivial)  | 
| 
26875
 
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
 
krauss 
parents: 
26795 
diff
changeset
 | 
7445  | 
|
| 
56643
 
41d3596d8a64
move size hooks together, with new one preceding old one and sharing same theory data
 
blanchet 
parents: 
56545 
diff
changeset
 | 
7446  | 
lemma [measure_function]: "is_measure f \<Longrightarrow> is_measure (size_option f)"  | 
| 71813 | 7447  | 
by (rule is_measure_trivial)  | 
| 
26875
 
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
 
krauss 
parents: 
26795 
diff
changeset
 | 
7448  | 
|
| 64963 | 7449  | 
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
 | 
7450  | 
"x \<in> set xs \<Longrightarrow> y < f x \<Longrightarrow> y < size_list f xs"  | 
| 71813 | 7451  | 
by (induct xs) auto  | 
| 
26749
 
397a1aeede7d
* New attribute "termination_simp": Simp rules for termination proofs
 
krauss 
parents: 
26734 
diff
changeset
 | 
7452  | 
|
| 64963 | 7453  | 
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
 | 
7454  | 
"x \<in> set xs \<Longrightarrow> y \<le> f x \<Longrightarrow> y \<le> size_list f xs"  | 
| 71813 | 7455  | 
by (induct xs) auto  | 
| 
26875
 
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
 
krauss 
parents: 
26795 
diff
changeset
 | 
7456  | 
|
| 67091 | 7457  | 
lemma size_list_map[simp]: "size_list f (map g xs) = size_list (f \<circ> g) xs"  | 
| 71813 | 7458  | 
by (induct xs) auto  | 
| 
26875
 
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
 
krauss 
parents: 
26795 
diff
changeset
 | 
7459  | 
|
| 
56643
 
41d3596d8a64
move size hooks together, with new one preceding old one and sharing same theory data
 
blanchet 
parents: 
56545 
diff
changeset
 | 
7460  | 
lemma size_list_append[simp]: "size_list f (xs @ ys) = size_list f xs + size_list f ys"  | 
| 71813 | 7461  | 
by (induct xs, auto)  | 
| 
44619
 
fd520fa2fb09
adding list_size_append (thanks to Rene Thiemann)
 
bulwahn 
parents: 
44618 
diff
changeset
 | 
7462  | 
|
| 64963 | 7463  | 
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
 | 
7464  | 
"(\<And>x. x \<in> set xs \<Longrightarrow> f x \<le> g x) \<Longrightarrow> size_list f xs \<le> size_list g xs"  | 
| 71813 | 7465  | 
by (induct xs) force+  | 
| 
26749
 
397a1aeede7d
* New attribute "termination_simp": Simp rules for termination proofs
 
krauss 
parents: 
26734 
diff
changeset
 | 
7466  | 
|
| 
31048
 
ac146fc38b51
refined HOL string theories and corresponding ML fragments
 
haftmann 
parents: 
31022 
diff
changeset
 | 
7467  | 
|
| 60758 | 7468  | 
subsection \<open>Monad operation\<close>  | 
| 46143 | 7469  | 
|
7470  | 
definition bind :: "'a list \<Rightarrow> ('a \<Rightarrow> 'b list) \<Rightarrow> 'b list" where
 | 
|
| 50548 | 7471  | 
"bind xs f = concat (map f xs)"  | 
| 46143 | 7472  | 
|
7473  | 
hide_const (open) bind  | 
|
7474  | 
||
7475  | 
lemma bind_simps [simp]:  | 
|
7476  | 
"List.bind [] f = []"  | 
|
7477  | 
"List.bind (x # xs) f = f x @ List.bind xs f"  | 
|
7478  | 
by (simp_all add: bind_def)  | 
|
7479  | 
||
| 
63099
 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 
eberlm 
parents: 
63092 
diff
changeset
 | 
7480  | 
lemma list_bind_cong [fundef_cong]:  | 
| 
 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 
eberlm 
parents: 
63092 
diff
changeset
 | 
7481  | 
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
 | 
7482  | 
shows "List.bind xs f = List.bind ys g"  | 
| 
 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 
eberlm 
parents: 
63092 
diff
changeset
 | 
7483  | 
proof -  | 
| 
 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 
eberlm 
parents: 
63092 
diff
changeset
 | 
7484  | 
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
 | 
7485  | 
by (induction xs) simp_all  | 
| 
 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 
eberlm 
parents: 
63092 
diff
changeset
 | 
7486  | 
with assms(1) show ?thesis by simp  | 
| 
 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 
eberlm 
parents: 
63092 
diff
changeset
 | 
7487  | 
qed  | 
| 
 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 
eberlm 
parents: 
63092 
diff
changeset
 | 
7488  | 
|
| 
 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 
eberlm 
parents: 
63092 
diff
changeset
 | 
7489  | 
lemma set_list_bind: "set (List.bind xs f) = (\<Union>x\<in>set xs. set (f x))"  | 
| 64963 | 7490  | 
by (induction xs) simp_all  | 
| 
63099
 
af0e964aad7b
Moved material from AFP/Randomised_Social_Choice to distribution
 
eberlm 
parents: 
63092 
diff
changeset
 | 
7491  | 
|
| 46143 | 7492  | 
|
| 60758 | 7493  | 
subsection \<open>Code generation\<close>  | 
7494  | 
||
| 69593 | 7495  | 
text\<open>Optional tail recursive version of \<^const>\<open>map\<close>. Can avoid  | 
| 60758 | 7496  | 
stack overflow in some target languages.\<close>  | 
| 
51875
 
dafd097dd1f4
tail recursive version of map, for code generation, optionally
 
nipkow 
parents: 
51738 
diff
changeset
 | 
7497  | 
|
| 
 
dafd097dd1f4
tail recursive version of map, for code generation, optionally
 
nipkow 
parents: 
51738 
diff
changeset
 | 
7498  | 
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
 | 
7499  | 
"map_tailrec_rev f [] bs = bs" |  | 
| 
 
dafd097dd1f4
tail recursive version of map, for code generation, optionally
 
nipkow 
parents: 
51738 
diff
changeset
 | 
7500  | 
"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
 | 
7501  | 
|
| 
 
dafd097dd1f4
tail recursive version of map, for code generation, optionally
 
nipkow 
parents: 
51738 
diff
changeset
 | 
7502  | 
lemma map_tailrec_rev:  | 
| 
 
dafd097dd1f4
tail recursive version of map, for code generation, optionally
 
nipkow 
parents: 
51738 
diff
changeset
 | 
7503  | 
"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
 | 
7504  | 
by(induction as arbitrary: bs) simp_all  | 
| 
 
dafd097dd1f4
tail recursive version of map, for code generation, optionally
 
nipkow 
parents: 
51738 
diff
changeset
 | 
7505  | 
|
| 
 
dafd097dd1f4
tail recursive version of map, for code generation, optionally
 
nipkow 
parents: 
51738 
diff
changeset
 | 
7506  | 
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
 | 
7507  | 
"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
 | 
7508  | 
|
| 60758 | 7509  | 
text\<open>Code equation:\<close>  | 
| 
51875
 
dafd097dd1f4
tail recursive version of map, for code generation, optionally
 
nipkow 
parents: 
51738 
diff
changeset
 | 
7510  | 
lemma map_eq_map_tailrec: "map = map_tailrec"  | 
| 
 
dafd097dd1f4
tail recursive version of map, for code generation, optionally
 
nipkow 
parents: 
51738 
diff
changeset
 | 
7511  | 
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
 | 
7512  | 
|
| 
 
dafd097dd1f4
tail recursive version of map, for code generation, optionally
 
nipkow 
parents: 
51738 
diff
changeset
 | 
7513  | 
|
| 60758 | 7514  | 
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
 | 
7515  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7516  | 
definition member :: "'a list \<Rightarrow> 'a \<Rightarrow> bool" where  | 
| 50548 | 7517  | 
[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
 | 
7518  | 
|
| 60758 | 7519  | 
text \<open>  | 
| 61799 | 7520  | 
Use \<open>member\<close> only for generating executable code. Otherwise use  | 
| 69593 | 7521  | 
\<^prop>\<open>x \<in> set xs\<close> instead --- it is much easier to reason about.  | 
| 60758 | 7522  | 
\<close>  | 
| 
37605
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7523  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7524  | 
lemma member_rec [code]:  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7525  | 
"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
 | 
7526  | 
"member [] y \<longleftrightarrow> False"  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7527  | 
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
 | 
7528  | 
|
| 
46030
 
51b2f3412a03
attribute code_abbrev superseedes code_unfold_post; tuned text
 
haftmann 
parents: 
45993 
diff
changeset
 | 
7529  | 
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
 | 
7530  | 
"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
 | 
7531  | 
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
 | 
7532  | 
|
| 62328 | 7533  | 
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
 | 
7534  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7535  | 
definition list_ex :: "('a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> bool" where
 | 
| 50548 | 7536  | 
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
 | 
7537  | 
|
| 
 
51b2f3412a03
attribute code_abbrev superseedes code_unfold_post; tuned text
 
haftmann 
parents: 
45993 
diff
changeset
 | 
7538  | 
definition list_ex1 :: "('a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> bool" where
 | 
| 50548 | 7539  | 
list_ex1_iff [code_abbrev]: "list_ex1 P xs \<longleftrightarrow> (\<exists>! x. x \<in> set xs \<and> P x)"  | 
| 40652 | 7540  | 
|
| 60758 | 7541  | 
text \<open>  | 
| 61799 | 7542  | 
Usually you should prefer \<open>\<forall>x\<in>set xs\<close>, \<open>\<exists>x\<in>set xs\<close>  | 
| 69593 | 7543  | 
and \<open>\<exists>!x. x\<in>set xs \<and> _\<close> over \<^const>\<open>list_all\<close>, \<^const>\<open>list_ex\<close>  | 
7544  | 
and \<^const>\<open>list_ex1\<close> in specifications.  | 
|
| 60758 | 7545  | 
\<close>  | 
| 
37605
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7546  | 
|
| 
56527
 
907f04603177
make list_all an abbreviation of pred_list - prevent duplication
 
kuncar 
parents: 
56525 
diff
changeset
 | 
7547  | 
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
 | 
7548  | 
"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
 | 
7549  | 
"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
 | 
7550  | 
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
 | 
7551  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7552  | 
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
 | 
7553  | 
"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
 | 
7554  | 
"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
 | 
7555  | 
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
 | 
7556  | 
|
| 40652 | 7557  | 
lemma list_ex1_simps [simp, code]:  | 
7558  | 
"list_ex1 P [] = False"  | 
|
7559  | 
"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
 | 
7560  | 
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
 | 
7561  | 
|
| 
 
51b2f3412a03
attribute code_abbrev superseedes code_unfold_post; tuned text
 
haftmann 
parents: 
45993 
diff
changeset
 | 
7562  | 
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
 | 
7563  | 
"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
 | 
7564  | 
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
 | 
7565  | 
|
| 
46030
 
51b2f3412a03
attribute code_abbrev superseedes code_unfold_post; tuned text
 
haftmann 
parents: 
45993 
diff
changeset
 | 
7566  | 
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
 | 
7567  | 
"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
 | 
7568  | 
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
 | 
7569  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7570  | 
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
 | 
7571  | 
"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
 | 
7572  | 
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
 | 
7573  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7574  | 
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
 | 
7575  | 
"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
 | 
7576  | 
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
 | 
7577  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7578  | 
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
 | 
7579  | 
"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
 | 
7580  | 
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
 | 
7581  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7582  | 
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
 | 
7583  | 
"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
 | 
7584  | 
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
 | 
7585  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7586  | 
lemma list_all_length:  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7587  | 
"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
 | 
7588  | 
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
 | 
7589  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7590  | 
lemma list_ex_length:  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7591  | 
"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
 | 
7592  | 
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
 | 
7593  | 
|
| 62328 | 7594  | 
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
 | 
7595  | 
|
| 47131 | 7596  | 
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
 | 
7597  | 
"xs = ys \<Longrightarrow> (\<And>x. x \<in> set ys \<Longrightarrow> f x = g x) \<Longrightarrow> list_ex f xs = list_ex g ys"  | 
| 47131 | 7598  | 
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
 | 
7599  | 
|
| 50548 | 7600  | 
definition can_select :: "('a \<Rightarrow> bool) \<Rightarrow> 'a set \<Rightarrow> bool" where
 | 
7601  | 
[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
 | 
7602  | 
|
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
7603  | 
lemma can_select_set_list_ex1 [code]:  | 
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
7604  | 
"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
 | 
7605  | 
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
 | 
7606  | 
|
| 
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
7607  | 
|
| 60758 | 7608  | 
text \<open>Executable checks for relations on sets\<close>  | 
| 46313 | 7609  | 
|
7610  | 
definition listrel1p :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> 'a list \<Rightarrow> bool" where
 | 
|
7611  | 
"listrel1p r xs ys = ((xs, ys) \<in> listrel1 {(x, y). r x y})"
 | 
|
7612  | 
||
7613  | 
lemma [code_unfold]:  | 
|
7614  | 
"(xs, ys) \<in> listrel1 r = listrel1p (\<lambda>x y. (x, y) \<in> r) xs ys"  | 
|
7615  | 
unfolding listrel1p_def by auto  | 
|
7616  | 
||
7617  | 
lemma [code]:  | 
|
7618  | 
"listrel1p r [] xs = False"  | 
|
7619  | 
"listrel1p r xs [] = False"  | 
|
7620  | 
"listrel1p r (x # xs) (y # ys) \<longleftrightarrow>  | 
|
7621  | 
r x y \<and> xs = ys \<or> x = y \<and> listrel1p r xs ys"  | 
|
7622  | 
by (simp add: listrel1p_def)+  | 
|
7623  | 
||
7624  | 
definition  | 
|
7625  | 
  lexordp :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> 'a list \<Rightarrow> bool" where
 | 
|
7626  | 
  "lexordp r xs ys = ((xs, ys) \<in> lexord {(x, y). r x y})"
 | 
|
7627  | 
||
7628  | 
lemma [code_unfold]:  | 
|
7629  | 
"(xs, ys) \<in> lexord r = lexordp (\<lambda>x y. (x, y) \<in> r) xs ys"  | 
|
7630  | 
unfolding lexordp_def by auto  | 
|
7631  | 
||
7632  | 
lemma [code]:  | 
|
7633  | 
"lexordp r xs [] = False"  | 
|
7634  | 
"lexordp r [] (y#ys) = True"  | 
|
| 72184 | 7635  | 
"lexordp r (x # xs) (y # ys) = (r x y \<or> (x = y \<and> lexordp r xs ys))"  | 
7636  | 
unfolding lexordp_def by auto  | 
|
| 46313 | 7637  | 
|
| 60758 | 7638  | 
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
 | 
7639  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7640  | 
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
 | 
7641  | 
  "{..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
 | 
7642  | 
by auto  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7643  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7644  | 
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
 | 
7645  | 
  "{..<n} = set [0..<n]"
 | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7646  | 
by auto  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7647  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7648  | 
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
 | 
7649  | 
  "{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
 | 
7650  | 
by auto  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7651  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7652  | 
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
 | 
7653  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7654  | 
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
 | 
7655  | 
  "{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
 | 
7656  | 
by auto  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7657  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7658  | 
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
 | 
7659  | 
  "{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
 | 
7660  | 
by auto  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7661  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7662  | 
lemma all_nat_less_eq [code_unfold]:  | 
| 61076 | 7663  | 
  "(\<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
 | 
7664  | 
by auto  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7665  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7666  | 
lemma ex_nat_less_eq [code_unfold]:  | 
| 61076 | 7667  | 
  "(\<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
 | 
7668  | 
by auto  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7669  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7670  | 
lemma all_nat_less [code_unfold]:  | 
| 61076 | 7671  | 
  "(\<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
 | 
7672  | 
by auto  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7673  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7674  | 
lemma ex_nat_less [code_unfold]:  | 
| 61076 | 7675  | 
  "(\<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
 | 
7676  | 
by auto  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7677  | 
|
| 61799 | 7678  | 
text\<open>Bounded \<open>LEAST\<close> operator:\<close>  | 
| 53954 | 7679  | 
|
7680  | 
definition "Bleast S P = (LEAST x. x \<in> S \<and> P x)"  | 
|
7681  | 
||
7682  | 
definition "abort_Bleast S P = (LEAST x. x \<in> S \<and> P x)"  | 
|
7683  | 
||
| 
54890
 
cb892d835803
fundamental treatment of undefined vs. universally partial replaces code_abort
 
haftmann 
parents: 
54885 
diff
changeset
 | 
7684  | 
declare [[code abort: abort_Bleast]]  | 
| 53954 | 7685  | 
|
7686  | 
lemma Bleast_code [code]:  | 
|
7687  | 
"Bleast (set xs) P = (case filter P (sort xs) of  | 
|
7688  | 
x#xs \<Rightarrow> x |  | 
|
7689  | 
[] \<Rightarrow> abort_Bleast (set xs) P)"  | 
|
7690  | 
proof (cases "filter P (sort xs)")  | 
|
7691  | 
case Nil thus ?thesis by (simp add: Bleast_def abort_Bleast_def)  | 
|
7692  | 
next  | 
|
7693  | 
case (Cons x ys)  | 
|
7694  | 
have "(LEAST x. x \<in> set xs \<and> P x) = x"  | 
|
7695  | 
proof (rule Least_equality)  | 
|
7696  | 
show "x \<in> set xs \<and> P x"  | 
|
7697  | 
by (metis Cons Cons_eq_filter_iff in_set_conv_decomp set_sort)  | 
|
7698  | 
next  | 
|
| 67613 | 7699  | 
fix y assume "y \<in> set xs \<and> P y"  | 
7700  | 
hence "y \<in> set (filter P xs)" by auto  | 
|
| 53954 | 7701  | 
thus "x \<le> y"  | 
| 73707 | 7702  | 
by (metis Cons eq_iff filter_sort set_ConsD set_sort sorted_wrt.simps(2) sorted_sort)  | 
| 53954 | 7703  | 
qed  | 
7704  | 
thus ?thesis using Cons by (simp add: Bleast_def)  | 
|
7705  | 
qed  | 
|
7706  | 
||
7707  | 
declare Bleast_def[symmetric, code_unfold]  | 
|
7708  | 
||
| 60758 | 7709  | 
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
 | 
7710  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7711  | 
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
 | 
7712  | 
  "{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
 | 
7713  | 
by auto  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7714  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7715  | 
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
 | 
7716  | 
  "{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
 | 
7717  | 
by auto  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7718  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7719  | 
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
 | 
7720  | 
  "{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
 | 
7721  | 
by auto  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7722  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7723  | 
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
 | 
7724  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7725  | 
|
| 60758 | 7726  | 
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
 | 
7727  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7728  | 
definition null :: "'a list \<Rightarrow> bool" where  | 
| 
46030
 
51b2f3412a03
attribute code_abbrev superseedes code_unfold_post; tuned text
 
haftmann 
parents: 
45993 
diff
changeset
 | 
7729  | 
[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
 | 
7730  | 
|
| 60758 | 7731  | 
text \<open>  | 
| 69593 | 7732  | 
Efficient emptyness check is implemented by \<^const>\<open>null\<close>.  | 
| 60758 | 7733  | 
\<close>  | 
| 
37605
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7734  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7735  | 
lemma null_rec [code]:  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7736  | 
"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
 | 
7737  | 
"null [] \<longleftrightarrow> True"  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7738  | 
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
 | 
7739  | 
|
| 
46030
 
51b2f3412a03
attribute code_abbrev superseedes code_unfold_post; tuned text
 
haftmann 
parents: 
45993 
diff
changeset
 | 
7740  | 
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
 | 
7741  | 
"xs = [] \<longleftrightarrow> null xs"  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7742  | 
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
 | 
7743  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7744  | 
lemma equal_Nil_null [code_unfold]:  | 
| 
38857
 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 
haftmann 
parents: 
38715 
diff
changeset
 | 
7745  | 
"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
 | 
7746  | 
"HOL.equal [] = null"  | 
| 
 
36cf426cb1c6
Added symmetric code_unfold-lemmas for null and is_none
 
lammich <lammich@in.tum.de> 
parents: 
53721 
diff
changeset
 | 
7747  | 
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
 | 
7748  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7749  | 
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
 | 
7750  | 
[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
 | 
7751  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7752  | 
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
 | 
7753  | 
[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
 | 
7754  | 
|
| 60758 | 7755  | 
text \<open>  | 
| 69593 | 7756  | 
Operations \<^const>\<open>maps\<close> and \<^const>\<open>map_filter\<close> avoid  | 
| 
37605
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7757  | 
intermediate lists on execution -- do not use for proving.  | 
| 60758 | 7758  | 
\<close>  | 
| 
37605
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7759  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7760  | 
lemma maps_simps [code]:  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7761  | 
"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
 | 
7762  | 
"maps f [] = []"  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7763  | 
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
 | 
7764  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7765  | 
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
 | 
7766  | 
"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
 | 
7767  | 
"map_filter f [] = []"  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7768  | 
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
 | 
7769  | 
|
| 
46030
 
51b2f3412a03
attribute code_abbrev superseedes code_unfold_post; tuned text
 
haftmann 
parents: 
45993 
diff
changeset
 | 
7770  | 
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
 | 
7771  | 
"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
 | 
7772  | 
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
 | 
7773  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7774  | 
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
 | 
7775  | 
"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
 | 
7776  | 
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
 | 
7777  | 
|
| 61799 | 7778  | 
text \<open>Optimized code for \<open>\<forall>i\<in>{a..b::int}\<close> and \<open>\<forall>n:{a..<b::nat}\<close>
 | 
7779  | 
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
 | 
7780  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7781  | 
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
 | 
7782  | 
  "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
 | 
7783  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7784  | 
lemma [code]:  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7785  | 
"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
 | 
7786  | 
proof -  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7787  | 
  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
 | 
7788  | 
proof -  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7789  | 
fix n  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7790  | 
    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
 | 
7791  | 
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
 | 
7792  | 
qed  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7793  | 
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
 | 
7794  | 
qed  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7795  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7796  | 
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
 | 
7797  | 
"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
 | 
7798  | 
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
 | 
7799  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7800  | 
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
 | 
7801  | 
"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
 | 
7802  | 
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
 | 
7803  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7804  | 
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
 | 
7805  | 
  "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
 | 
7806  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7807  | 
lemma [code]:  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7808  | 
"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
 | 
7809  | 
proof -  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7810  | 
  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
 | 
7811  | 
proof -  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7812  | 
fix k  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7813  | 
    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
 | 
7814  | 
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
 | 
7815  | 
qed  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7816  | 
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
 | 
7817  | 
qed  | 
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7818  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7819  | 
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
 | 
7820  | 
"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
 | 
7821  | 
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
 | 
7822  | 
|
| 
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7823  | 
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
 | 
7824  | 
"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
 | 
7825  | 
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
 | 
7826  | 
|
| 69593 | 7827  | 
text \<open>optimized code (tail-recursive) for \<^term>\<open>length\<close>\<close>  | 
| 
49808
 
418991ce7567
tail-recursive implementation for length
 
Andreas Lochbihler 
parents: 
49757 
diff
changeset
 | 
7828  | 
|
| 
 
418991ce7567
tail-recursive implementation for length
 
Andreas Lochbihler 
parents: 
49757 
diff
changeset
 | 
7829  | 
definition gen_length :: "nat \<Rightarrow> 'a list \<Rightarrow> nat"  | 
| 
 
418991ce7567
tail-recursive implementation for length
 
Andreas Lochbihler 
parents: 
49757 
diff
changeset
 | 
7830  | 
where "gen_length n xs = n + length xs"  | 
| 
 
418991ce7567
tail-recursive implementation for length
 
Andreas Lochbihler 
parents: 
49757 
diff
changeset
 | 
7831  | 
|
| 
 
418991ce7567
tail-recursive implementation for length
 
Andreas Lochbihler 
parents: 
49757 
diff
changeset
 | 
7832  | 
lemma gen_length_code [code]:  | 
| 
 
418991ce7567
tail-recursive implementation for length
 
Andreas Lochbihler 
parents: 
49757 
diff
changeset
 | 
7833  | 
"gen_length n [] = n"  | 
| 
 
418991ce7567
tail-recursive implementation for length
 
Andreas Lochbihler 
parents: 
49757 
diff
changeset
 | 
7834  | 
"gen_length n (x # xs) = gen_length (Suc n) xs"  | 
| 
 
418991ce7567
tail-recursive implementation for length
 
Andreas Lochbihler 
parents: 
49757 
diff
changeset
 | 
7835  | 
by(simp_all add: gen_length_def)  | 
| 
 
418991ce7567
tail-recursive implementation for length
 
Andreas Lochbihler 
parents: 
49757 
diff
changeset
 | 
7836  | 
|
| 
 
418991ce7567
tail-recursive implementation for length
 
Andreas Lochbihler 
parents: 
49757 
diff
changeset
 | 
7837  | 
declare list.size(3-4)[code del]  | 
| 
 
418991ce7567
tail-recursive implementation for length
 
Andreas Lochbihler 
parents: 
49757 
diff
changeset
 | 
7838  | 
|
| 
 
418991ce7567
tail-recursive implementation for length
 
Andreas Lochbihler 
parents: 
49757 
diff
changeset
 | 
7839  | 
lemma length_code [code]: "length = gen_length 0"  | 
| 
 
418991ce7567
tail-recursive implementation for length
 
Andreas Lochbihler 
parents: 
49757 
diff
changeset
 | 
7840  | 
by(simp add: gen_length_def fun_eq_iff)  | 
| 
 
418991ce7567
tail-recursive implementation for length
 
Andreas Lochbihler 
parents: 
49757 
diff
changeset
 | 
7841  | 
|
| 
 
418991ce7567
tail-recursive implementation for length
 
Andreas Lochbihler 
parents: 
49757 
diff
changeset
 | 
7842  | 
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
 | 
7843  | 
|
| 
49948
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
7844  | 
|
| 60758 | 7845  | 
subsubsection \<open>Pretty lists\<close>  | 
7846  | 
||
7847  | 
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
 | 
7848  | 
(* 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
 | 
7849  | 
|
| 
 
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
 | 
7850  | 
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
 | 
7851  | 
sig  | 
| 
 
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
 
wenzelm 
parents: 
50134 
diff
changeset
 | 
7852  | 
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
 | 
7853  | 
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
 | 
7854  | 
|
| 
 
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
 | 
7855  | 
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
 | 
7856  | 
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
 | 
7857  | 
|
| 
 
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
 | 
7858  | 
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
 | 
7859  | 
|
| 
55148
 
7e1b7cb54114
avoid (now superfluous) indirect passing of constant names
 
haftmann 
parents: 
55147 
diff
changeset
 | 
7860  | 
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
 | 
7861  | 
let  | 
| 69593 | 7862  | 
    fun dest_cons (IConst { sym = Code_Symbol.Constant \<^const_name>\<open>Cons\<close>, ... } `$ t1 `$ t2) = SOME (t1, t2)
 | 
| 
50422
 
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
 
wenzelm 
parents: 
50134 
diff
changeset
 | 
7863  | 
| 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
 | 
7864  | 
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
 | 
7865  | 
in case t'  | 
| 69593 | 7866  | 
   of IConst { sym = Code_Symbol.Constant \<^const_name>\<open>Nil\<close>, ... } => SOME ts
 | 
| 
50422
 
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
 
wenzelm 
parents: 
50134 
diff
changeset
 | 
7867  | 
| _ => 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
 | 
7868  | 
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
 | 
7869  | 
|
| 68028 | 7870  | 
fun print_list (target_fxy, target_cons) pr fxy t1 t2 =  | 
| 
50422
 
ee729dbd1b7f
avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
 
wenzelm 
parents: 
50134 
diff
changeset
 | 
7871  | 
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
 | 
7872  | 
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
 | 
7873  | 
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
 | 
7874  | 
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
 | 
7875  | 
);  | 
| 
 
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
 | 
7876  | 
|
| 
 
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
 | 
7877  | 
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
 | 
7878  | 
let  | 
| 
55148
 
7e1b7cb54114
avoid (now superfluous) indirect passing of constant names
 
haftmann 
parents: 
55147 
diff
changeset
 | 
7879  | 
fun pretty literals pr _ vars fxy [(t1, _), (t2, _)] =  | 
| 
 
7e1b7cb54114
avoid (now superfluous) indirect passing of constant names
 
haftmann 
parents: 
55147 
diff
changeset
 | 
7880  | 
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
 | 
7881  | 
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
 | 
7882  | 
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
 | 
7883  | 
| NONE =>  | 
| 68028 | 7884  | 
print_list (Code_Printer.infix_cons literals) (pr vars) fxy t1 t2;  | 
| 
52435
 
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
 
haftmann 
parents: 
52380 
diff
changeset
 | 
7885  | 
in  | 
| 69593 | 7886  | 
Code_Target.set_printings (Code_Symbol.Constant (\<^const_name>\<open>Cons\<close>,  | 
| 
55148
 
7e1b7cb54114
avoid (now superfluous) indirect passing of constant names
 
haftmann 
parents: 
55147 
diff
changeset
 | 
7887  | 
[(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
 | 
7888  | 
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
 | 
7889  | 
|
| 
 
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
 | 
7890  | 
end;  | 
| 60758 | 7891  | 
\<close>  | 
| 
31055
 
2cf6efca6c71
proper structures for list and string code generation stuff
 
haftmann 
parents: 
31048 
diff
changeset
 | 
7892  | 
|
| 
52435
 
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
 
haftmann 
parents: 
52380 
diff
changeset
 | 
7893  | 
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
 | 
7894  | 
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
 | 
7895  | 
(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
 | 
7896  | 
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
 | 
7897  | 
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
 | 
7898  | 
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
 | 
7899  | 
| 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
 | 
7900  | 
(SML) "[]"  | 
| 
 
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
 
haftmann 
parents: 
52380 
diff
changeset
 | 
7901  | 
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
 | 
7902  | 
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
 | 
7903  | 
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
 | 
7904  | 
| 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
 | 
7905  | 
(Haskell) -  | 
| 
 
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
 
haftmann 
parents: 
52380 
diff
changeset
 | 
7906  | 
| 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
 | 
7907  | 
(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
 | 
7908  | 
|
| 60758 | 7909  | 
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
 | 
7910  | 
|
| 
 
ac146fc38b51
refined HOL string theories and corresponding ML fragments
 
haftmann 
parents: 
31022 
diff
changeset
 | 
7911  | 
code_reserved SML  | 
| 
 
ac146fc38b51
refined HOL string theories and corresponding ML fragments
 
haftmann 
parents: 
31022 
diff
changeset
 | 
7912  | 
list  | 
| 
 
ac146fc38b51
refined HOL string theories and corresponding ML fragments
 
haftmann 
parents: 
31022 
diff
changeset
 | 
7913  | 
|
| 
 
ac146fc38b51
refined HOL string theories and corresponding ML fragments
 
haftmann 
parents: 
31022 
diff
changeset
 | 
7914  | 
code_reserved OCaml  | 
| 
 
ac146fc38b51
refined HOL string theories and corresponding ML fragments
 
haftmann 
parents: 
31022 
diff
changeset
 | 
7915  | 
list  | 
| 
 
ac146fc38b51
refined HOL string theories and corresponding ML fragments
 
haftmann 
parents: 
31022 
diff
changeset
 | 
7916  | 
|
| 
21061
 
580dfc999ef6
added normal post setup; cleaned up "execution" constants
 
haftmann 
parents: 
21046 
diff
changeset
 | 
7917  | 
|
| 60758 | 7918  | 
subsubsection \<open>Use convenient predefined operations\<close>  | 
| 
37424
 
ed431cc99f17
use various predefined Haskell operations when generating code
 
haftmann 
parents: 
37408 
diff
changeset
 | 
7919  | 
|
| 
52435
 
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
 
haftmann 
parents: 
52380 
diff
changeset
 | 
7920  | 
code_printing  | 
| 67399 | 7921  | 
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
 | 
7922  | 
(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
 | 
7923  | 
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
 | 
7924  | 
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
 | 
7925  | 
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
 | 
7926  | 
| 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
 | 
7927  | 
(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
 | 
7928  | 
| 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
 | 
7929  | 
(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
 | 
7930  | 
| 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
 | 
7931  | 
(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
 | 
7932  | 
| 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
 | 
7933  | 
(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
 | 
7934  | 
| 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
 | 
7935  | 
(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
 | 
7936  | 
| 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
 | 
7937  | 
(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
 | 
7938  | 
| 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
 | 
7939  | 
(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
 | 
7940  | 
| 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
 | 
7941  | 
(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
 | 
7942  | 
| 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
 | 
7943  | 
(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
 | 
7944  | 
| 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
 | 
7945  | 
(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
 | 
7946  | 
| 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
 | 
7947  | 
(Haskell) "any"  | 
| 
37605
 
625bc011768a
put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
 
haftmann 
parents: 
37465 
diff
changeset
 | 
7948  | 
|
| 
46147
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7949  | 
|
| 60758 | 7950  | 
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
 | 
7951  | 
|
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7952  | 
lemma is_empty_set [code]:  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7953  | 
"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
 | 
7954  | 
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
 | 
7955  | 
|
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7956  | 
lemma empty_set [code]:  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7957  | 
  "{} = set []"
 | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7958  | 
by simp  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7959  | 
|
| 46156 | 7960  | 
lemma UNIV_coset [code]:  | 
7961  | 
"UNIV = List.coset []"  | 
|
7962  | 
by simp  | 
|
7963  | 
||
7964  | 
lemma compl_set [code]:  | 
|
7965  | 
"- set xs = List.coset xs"  | 
|
7966  | 
by simp  | 
|
7967  | 
||
7968  | 
lemma compl_coset [code]:  | 
|
7969  | 
"- List.coset xs = set xs"  | 
|
7970  | 
by simp  | 
|
7971  | 
||
| 
46147
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7972  | 
lemma [code]:  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7973  | 
"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
 | 
7974  | 
"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
 | 
7975  | 
by (simp_all add: member_def)  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7976  | 
|
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7977  | 
lemma insert_code [code]:  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7978  | 
"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
 | 
7979  | 
"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
 | 
7980  | 
by simp_all  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7981  | 
|
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7982  | 
lemma remove_code [code]:  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
7983  | 
"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
 | 
7984  | 
"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
 | 
7985  | 
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
 | 
7986  | 
|
| 
49757
 
73ab6d4a9236
rename Set.project to Set.filter - more appropriate name
 
kuncar 
parents: 
49739 
diff
changeset
 | 
7987  | 
lemma filter_set [code]:  | 
| 
 
73ab6d4a9236
rename Set.project to Set.filter - more appropriate name
 
kuncar 
parents: 
49739 
diff
changeset
 | 
7988  | 
"Set.filter P (set xs) = set (filter P xs)"  | 
| 46156 | 7989  | 
by auto  | 
7990  | 
||
7991  | 
lemma image_set [code]:  | 
|
7992  | 
"image f (set xs) = set (map f xs)"  | 
|
7993  | 
by simp  | 
|
7994  | 
||
| 47398 | 7995  | 
lemma subset_code [code]:  | 
7996  | 
"set xs \<le> B \<longleftrightarrow> (\<forall>x\<in>set xs. x \<in> B)"  | 
|
7997  | 
"A \<le> List.coset ys \<longleftrightarrow> (\<forall>y\<in>set ys. y \<notin> A)"  | 
|
| 68709 | 7998  | 
"List.coset [] \<subseteq> set [] \<longleftrightarrow> False"  | 
| 47398 | 7999  | 
by auto  | 
8000  | 
||
| 60758 | 8001  | 
text \<open>A frequent case -- avoid intermediate sets\<close>  | 
| 47398 | 8002  | 
lemma [code_unfold]:  | 
8003  | 
"set xs \<subseteq> set ys \<longleftrightarrow> list_all (\<lambda>x. x \<in> set ys) xs"  | 
|
8004  | 
by (auto simp: list_all_iff)  | 
|
8005  | 
||
| 
46147
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
8006  | 
lemma Ball_set [code]:  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
8007  | 
"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
 | 
8008  | 
by (simp add: list_all_iff)  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
8009  | 
|
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
8010  | 
lemma Bex_set [code]:  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
8011  | 
"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
 | 
8012  | 
by (simp add: list_ex_iff)  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
8013  | 
|
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
8014  | 
lemma card_set [code]:  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
8015  | 
"card (set xs) = length (remdups xs)"  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
8016  | 
proof -  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
8017  | 
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
 | 
8018  | 
by (rule distinct_card) simp  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
8019  | 
then show ?thesis by simp  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
8020  | 
qed  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
8021  | 
|
| 46156 | 8022  | 
lemma the_elem_set [code]:  | 
8023  | 
"the_elem (set [x]) = x"  | 
|
8024  | 
by simp  | 
|
8025  | 
||
8026  | 
lemma Pow_set [code]:  | 
|
8027  | 
  "Pow (set []) = {{}}"
 | 
|
8028  | 
"Pow (set (x # xs)) = (let A = Pow (set xs) in A \<union> insert x ` A)"  | 
|
8029  | 
by (simp_all add: Pow_insert Let_def)  | 
|
8030  | 
||
| 
46424
 
b447318e5e1a
adding code equation for Relation.image; adding map_project as correspondence to map_filter on lists
 
bulwahn 
parents: 
46418 
diff
changeset
 | 
8031  | 
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
 | 
8032  | 
  "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
 | 
8033  | 
|
| 
 
b447318e5e1a
adding code equation for Relation.image; adding map_project as correspondence to map_filter on lists
 
bulwahn 
parents: 
46418 
diff
changeset
 | 
8034  | 
lemma [code]:  | 
| 
 
b447318e5e1a
adding code equation for Relation.image; adding map_project as correspondence to map_filter on lists
 
bulwahn 
parents: 
46418 
diff
changeset
 | 
8035  | 
"map_project f (set xs) = set (List.map_filter f xs)"  | 
| 47398 | 8036  | 
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
 | 
8037  | 
|
| 
 
b447318e5e1a
adding code equation for Relation.image; adding map_project as correspondence to map_filter on lists
 
bulwahn 
parents: 
46418 
diff
changeset
 | 
8038  | 
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
 | 
8039  | 
|
| 
49948
 
744934b818c7
moved quite generic material from theory Enum to more appropriate places
 
haftmann 
parents: 
49808 
diff
changeset
 | 
8040  | 
|
| 60758 | 8041  | 
text \<open>Operations on relations\<close>  | 
| 
46147
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
8042  | 
|
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
8043  | 
lemma product_code [code]:  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
8044  | 
"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
 | 
8045  | 
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
 | 
8046  | 
|
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
8047  | 
lemma Id_on_set [code]:  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
8048  | 
"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
 | 
8049  | 
by (auto simp add: Id_on_def)  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
8050  | 
|
| 
46424
 
b447318e5e1a
adding code equation for Relation.image; adding map_project as correspondence to map_filter on lists
 
bulwahn 
parents: 
46418 
diff
changeset
 | 
8051  | 
lemma [code]:  | 
| 67613 | 8052  | 
"R `` S = List.map_project (\<lambda>(x, y). if x \<in> S then Some y else None) R"  | 
| 62390 | 8053  | 
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
 | 
8054  | 
|
| 
46147
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
8055  | 
lemma trancl_set_ntrancl [code]:  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
8056  | 
"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
 | 
8057  | 
by (simp add: finite_trancl_ntranl)  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
8058  | 
|
| 
47433
 
07f4bf913230
renamed "rel_comp" to "relcomp" (to be consistent with, e.g., "relpow")
 
griff 
parents: 
47131 
diff
changeset
 | 
8059  | 
lemma set_relcomp [code]:  | 
| 
46147
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
8060  | 
"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
 | 
8061  | 
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
 | 
8062  | 
|
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
8063  | 
lemma wf_set [code]:  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
8064  | 
"wf (set xs) = acyclic (set xs)"  | 
| 
 
2c4d8de91c4c
moved lemmas about List.set and set operations to List theory
 
haftmann 
parents: 
46143 
diff
changeset
 | 
8065  | 
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
 | 
8066  | 
|
| 
55129
 
26bd1cba3ab5
killed 'More_BNFs' by moving its various bits where they (now) belong
 
blanchet 
parents: 
54890 
diff
changeset
 | 
8067  | 
|
| 60758 | 8068  | 
subsection \<open>Setup for Lifting/Transfer\<close>  | 
8069  | 
||
8070  | 
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
 | 
8071  | 
|
| 63343 | 8072  | 
context includes lifting_syntax  | 
| 
53012
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8073  | 
begin  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8074  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8075  | 
lemma tl_transfer [transfer_rule]:  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8076  | 
"(list_all2 A ===> list_all2 A) tl tl"  | 
| 
55405
 
0a155051bd9d
use new selector support to define 'the', 'hd', 'tl'
 
blanchet 
parents: 
55404 
diff
changeset
 | 
8077  | 
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
 | 
8078  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8079  | 
lemma butlast_transfer [transfer_rule]:  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8080  | 
"(list_all2 A ===> list_all2 A) butlast butlast"  | 
| 55945 | 8081  | 
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
 | 
8082  | 
|
| 55465 | 8083  | 
lemma map_rec: "map f xs = rec_list Nil (%x _ y. Cons (f x) y) xs"  | 
8084  | 
by (induct xs) auto  | 
|
8085  | 
||
| 
53012
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8086  | 
lemma append_transfer [transfer_rule]:  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8087  | 
"(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
 | 
8088  | 
unfolding List.append_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8089  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8090  | 
lemma rev_transfer [transfer_rule]:  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8091  | 
"(list_all2 A ===> list_all2 A) rev rev"  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8092  | 
unfolding List.rev_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8093  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8094  | 
lemma filter_transfer [transfer_rule]:  | 
| 67399 | 8095  | 
"((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
 | 
8096  | 
unfolding List.filter_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8097  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8098  | 
lemma fold_transfer [transfer_rule]:  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8099  | 
"((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
 | 
8100  | 
unfolding List.fold_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8101  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8102  | 
lemma foldr_transfer [transfer_rule]:  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8103  | 
"((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
 | 
8104  | 
unfolding List.foldr_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8105  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8106  | 
lemma foldl_transfer [transfer_rule]:  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8107  | 
"((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
 | 
8108  | 
unfolding List.foldl_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8109  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8110  | 
lemma concat_transfer [transfer_rule]:  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8111  | 
"(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
 | 
8112  | 
unfolding List.concat_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8113  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8114  | 
lemma drop_transfer [transfer_rule]:  | 
| 67399 | 8115  | 
"((=) ===> 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
 | 
8116  | 
unfolding List.drop_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8117  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8118  | 
lemma take_transfer [transfer_rule]:  | 
| 67399 | 8119  | 
"((=) ===> 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
 | 
8120  | 
unfolding List.take_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8121  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8122  | 
lemma list_update_transfer [transfer_rule]:  | 
| 67399 | 8123  | 
"(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
 | 
8124  | 
unfolding list_update_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8125  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8126  | 
lemma takeWhile_transfer [transfer_rule]:  | 
| 67399 | 8127  | 
"((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
 | 
8128  | 
unfolding takeWhile_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8129  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8130  | 
lemma dropWhile_transfer [transfer_rule]:  | 
| 67399 | 8131  | 
"((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
 | 
8132  | 
unfolding dropWhile_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8133  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8134  | 
lemma zip_transfer [transfer_rule]:  | 
| 55944 | 8135  | 
"(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
 | 
8136  | 
unfolding zip_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8137  | 
|
| 
53721
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
8138  | 
lemma product_transfer [transfer_rule]:  | 
| 55944 | 8139  | 
"(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
 | 
8140  | 
unfolding List.product_def by transfer_prover  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
8141  | 
|
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
8142  | 
lemma product_lists_transfer [transfer_rule]:  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
8143  | 
"(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
 | 
8144  | 
unfolding product_lists_def by transfer_prover  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
8145  | 
|
| 
53012
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8146  | 
lemma insert_transfer [transfer_rule]:  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8147  | 
assumes [transfer_rule]: "bi_unique A"  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8148  | 
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
 | 
8149  | 
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
 | 
8150  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8151  | 
lemma find_transfer [transfer_rule]:  | 
| 67399 | 8152  | 
"((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
 | 
8153  | 
unfolding List.find_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8154  | 
|
| 
63521
 
32da860241b8
added missing transfer rule
 
Lars Hupel <lars.hupel@mytum.de> 
parents: 
63365 
diff
changeset
 | 
8155  | 
lemma those_transfer [transfer_rule]:  | 
| 
 
32da860241b8
added missing transfer rule
 
Lars Hupel <lars.hupel@mytum.de> 
parents: 
63365 
diff
changeset
 | 
8156  | 
"(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
 | 
8157  | 
unfolding List.those_def by transfer_prover  | 
| 
 
32da860241b8
added missing transfer rule
 
Lars Hupel <lars.hupel@mytum.de> 
parents: 
63365 
diff
changeset
 | 
8158  | 
|
| 
53012
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8159  | 
lemma remove1_transfer [transfer_rule]:  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8160  | 
assumes [transfer_rule]: "bi_unique A"  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8161  | 
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
 | 
8162  | 
unfolding remove1_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8163  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8164  | 
lemma removeAll_transfer [transfer_rule]:  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8165  | 
assumes [transfer_rule]: "bi_unique A"  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8166  | 
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
 | 
8167  | 
unfolding removeAll_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8168  | 
|
| 71779 | 8169  | 
lemma successively_transfer [transfer_rule]:  | 
8170  | 
"((A ===> A ===> (=)) ===> list_all2 A ===> (=)) successively successively"  | 
|
8171  | 
unfolding successively_altdef by transfer_prover  | 
|
8172  | 
||
| 
53012
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8173  | 
lemma distinct_transfer [transfer_rule]:  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8174  | 
assumes [transfer_rule]: "bi_unique A"  | 
| 67399 | 8175  | 
shows "(list_all2 A ===> (=)) distinct distinct"  | 
| 
53012
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8176  | 
unfolding distinct_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8177  | 
|
| 71779 | 8178  | 
lemma distinct_adj_transfer [transfer_rule]:  | 
8179  | 
assumes "bi_unique A"  | 
|
8180  | 
shows "(list_all2 A ===> (=)) distinct_adj distinct_adj"  | 
|
8181  | 
unfolding rel_fun_def  | 
|
8182  | 
proof (intro allI impI)  | 
|
8183  | 
fix xs ys assume "list_all2 A xs ys"  | 
|
8184  | 
thus "distinct_adj xs \<longleftrightarrow> distinct_adj ys"  | 
|
8185  | 
proof (induction rule: list_all2_induct)  | 
|
8186  | 
case (Cons x xs y ys)  | 
|
8187  | 
note * = this  | 
|
8188  | 
show ?case  | 
|
8189  | 
proof (cases xs)  | 
|
8190  | 
case [simp]: (Cons x' xs')  | 
|
8191  | 
with * obtain y' ys' where [simp]: "ys = y' # ys'"  | 
|
8192  | 
by (cases ys) auto  | 
|
8193  | 
from * show ?thesis  | 
|
8194  | 
using assms by (auto simp: distinct_adj_Cons bi_unique_def)  | 
|
8195  | 
qed (use * in auto)  | 
|
8196  | 
qed auto  | 
|
8197  | 
qed  | 
|
8198  | 
||
| 
53012
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8199  | 
lemma remdups_transfer [transfer_rule]:  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8200  | 
assumes [transfer_rule]: "bi_unique A"  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8201  | 
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
 | 
8202  | 
unfolding remdups_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8203  | 
|
| 
53721
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
8204  | 
lemma remdups_adj_transfer [transfer_rule]:  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
8205  | 
assumes [transfer_rule]: "bi_unique A"  | 
| 
 
ccaceea6c768
added two functions to List (one contributed by Manuel Eberl)
 
traytel 
parents: 
53689 
diff
changeset
 | 
8206  | 
shows "(list_all2 A ===> list_all2 A) remdups_adj remdups_adj"  | 
| 55945 | 8207  | 
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
 | 
8208  | 
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
 | 
8209  | 
|
| 
53012
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8210  | 
lemma replicate_transfer [transfer_rule]:  | 
| 67399 | 8211  | 
"((=) ===> A ===> list_all2 A) replicate replicate"  | 
| 
53012
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8212  | 
unfolding replicate_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8213  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8214  | 
lemma length_transfer [transfer_rule]:  | 
| 67399 | 8215  | 
"(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
 | 
8216  | 
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
 | 
8217  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8218  | 
lemma rotate1_transfer [transfer_rule]:  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8219  | 
"(list_all2 A ===> list_all2 A) rotate1 rotate1"  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8220  | 
unfolding rotate1_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8221  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8222  | 
lemma rotate_transfer [transfer_rule]:  | 
| 67399 | 8223  | 
"((=) ===> 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
 | 
8224  | 
unfolding rotate_def [abs_def] by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8225  | 
|
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
8226  | 
lemma nths_transfer [transfer_rule]:  | 
| 67399 | 8227  | 
"(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
 | 
8228  | 
unfolding nths_def [abs_def] by transfer_prover  | 
| 66892 | 8229  | 
|
| 
65956
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
8230  | 
lemma subseqs_transfer [transfer_rule]:  | 
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
8231  | 
"(list_all2 A ===> list_all2 (list_all2 A)) subseqs subseqs"  | 
| 
 
639eb3617a86
reorganised material on sublists
 
eberlm <eberlm@in.tum.de> 
parents: 
65350 
diff
changeset
 | 
8232  | 
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
 | 
8233  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8234  | 
lemma partition_transfer [transfer_rule]:  | 
| 67399 | 8235  | 
"((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
 | 
8236  | 
partition partition"  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8237  | 
unfolding partition_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8238  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8239  | 
lemma lists_transfer [transfer_rule]:  | 
| 55938 | 8240  | 
"(rel_set A ===> rel_set (list_all2 A)) lists lists"  | 
| 71813 | 8241  | 
proof (rule rel_funI, rule rel_setI)  | 
8242  | 
show "\<lbrakk>l \<in> lists X; rel_set A X Y\<rbrakk> \<Longrightarrow> \<exists>y\<in>lists Y. list_all2 A l y" for X Y l  | 
|
8243  | 
proof (induction l rule: lists.induct)  | 
|
8244  | 
case (Cons a l)  | 
|
8245  | 
then show ?case  | 
|
8246  | 
by (simp only: rel_set_def list_all2_Cons1, metis lists.Cons)  | 
|
8247  | 
qed auto  | 
|
8248  | 
show "\<lbrakk>l \<in> lists Y; rel_set A X Y\<rbrakk> \<Longrightarrow> \<exists>x\<in>lists X. list_all2 A x l" for X Y l  | 
|
8249  | 
proof (induction l rule: lists.induct)  | 
|
8250  | 
case (Cons a l)  | 
|
8251  | 
then show ?case  | 
|
8252  | 
by (simp only: rel_set_def list_all2_Cons2, metis lists.Cons)  | 
|
8253  | 
qed auto  | 
|
8254  | 
qed  | 
|
| 
53012
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8255  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8256  | 
lemma set_Cons_transfer [transfer_rule]:  | 
| 55938 | 8257  | 
"(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
 | 
8258  | 
set_Cons set_Cons"  | 
| 55945 | 8259  | 
unfolding rel_fun_def rel_set_def set_Cons_def  | 
| 68719 | 8260  | 
by (fastforce simp add: list_all2_Cons1 list_all2_Cons2)  | 
| 
53012
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8261  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8262  | 
lemma listset_transfer [transfer_rule]:  | 
| 55938 | 8263  | 
"(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
 | 
8264  | 
unfolding listset_def by transfer_prover  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8265  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8266  | 
lemma null_transfer [transfer_rule]:  | 
| 67399 | 8267  | 
"(list_all2 A ===> (=)) List.null List.null"  | 
| 55945 | 8268  | 
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
 | 
8269  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8270  | 
lemma list_all_transfer [transfer_rule]:  | 
| 67399 | 8271  | 
"((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
 | 
8272  | 
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
 | 
8273  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8274  | 
lemma list_ex_transfer [transfer_rule]:  | 
| 67399 | 8275  | 
"((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
 | 
8276  | 
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
 | 
8277  | 
|
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8278  | 
lemma splice_transfer [transfer_rule]:  | 
| 
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8279  | 
"(list_all2 A ===> list_all2 A ===> list_all2 A) splice splice"  | 
| 55945 | 8280  | 
apply (rule rel_funI, erule list_all2_induct, simp add: rel_fun_def, simp)  | 
8281  | 
apply (rule rel_funI)  | 
|
8282  | 
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
 | 
8283  | 
done  | 
| 66892 | 8284  | 
|
| 69107 | 8285  | 
lemma shuffles_transfer [transfer_rule]:  | 
8286  | 
"(list_all2 A ===> list_all2 A ===> rel_set (list_all2 A)) shuffles shuffles"  | 
|
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
8287  | 
proof (intro rel_funI, goal_cases)  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
8288  | 
case (1 xs xs' ys ys')  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
8289  | 
thus ?case  | 
| 69107 | 8290  | 
proof (induction xs ys arbitrary: xs' ys' rule: shuffles.induct)  | 
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
8291  | 
case (3 x xs y ys xs' ys')  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
8292  | 
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
 | 
8293  | 
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
 | 
8294  | 
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
 | 
8295  | 
using "3.prems" by (simp_all add: xs' ys')  | 
| 69107 | 8296  | 
have [transfer_rule]: "rel_set (list_all2 A) (shuffles xs (y # ys)) (shuffles xs'' ys')" and  | 
8297  | 
[transfer_rule]: "rel_set (list_all2 A) (shuffles (x # xs) ys) (shuffles xs' ys'')"  | 
|
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
8298  | 
using "3.prems" by (auto intro!: "3.IH" simp: xs' ys')  | 
| 69107 | 8299  | 
have "rel_set (list_all2 A) ((#) x ` shuffles xs (y # ys) \<union> (#) y ` shuffles (x # xs) ys)  | 
8300  | 
((#) x' ` shuffles xs'' ys' \<union> (#) y' ` shuffles xs' ys'')" by transfer_prover  | 
|
| 
65350
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
8301  | 
thus ?case by (simp add: xs' ys')  | 
| 
 
b149abe619f7
added shuffle product to HOL/List
 
eberlm <eberlm@in.tum.de> 
parents: 
64966 
diff
changeset
 | 
8302  | 
qed (auto simp: rel_set_def)  | 
| 66892 | 8303  | 
qed  | 
| 
53012
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8304  | 
|
| 57599 | 8305  | 
lemma rtrancl_parametric [transfer_rule]:  | 
8306  | 
assumes [transfer_rule]: "bi_unique A" "bi_total A"  | 
|
8307  | 
shows "(rel_set (rel_prod A A) ===> rel_set (rel_prod A A)) rtrancl rtrancl"  | 
|
8308  | 
unfolding rtrancl_def by transfer_prover  | 
|
8309  | 
||
| 
59516
 
d92b74f3f6e3
add parametricity rules for monotone, fun_lub, and fun_ord
 
Andreas Lochbihler 
parents: 
59199 
diff
changeset
 | 
8310  | 
lemma monotone_parametric [transfer_rule]:  | 
| 
 
d92b74f3f6e3
add parametricity rules for monotone, fun_lub, and fun_ord
 
Andreas Lochbihler 
parents: 
59199 
diff
changeset
 | 
8311  | 
assumes [transfer_rule]: "bi_total A"  | 
| 67399 | 8312  | 
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
 | 
8313  | 
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
 | 
8314  | 
|
| 
 
d92b74f3f6e3
add parametricity rules for monotone, fun_lub, and fun_ord
 
Andreas Lochbihler 
parents: 
59199 
diff
changeset
 | 
8315  | 
lemma fun_ord_parametric [transfer_rule]:  | 
| 
 
d92b74f3f6e3
add parametricity rules for monotone, fun_lub, and fun_ord
 
Andreas Lochbihler 
parents: 
59199 
diff
changeset
 | 
8316  | 
assumes [transfer_rule]: "bi_total C"  | 
| 67399 | 8317  | 
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
 | 
8318  | 
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
 | 
8319  | 
|
| 
 
d92b74f3f6e3
add parametricity rules for monotone, fun_lub, and fun_ord
 
Andreas Lochbihler 
parents: 
59199 
diff
changeset
 | 
8320  | 
lemma fun_lub_parametric [transfer_rule]:  | 
| 
 
d92b74f3f6e3
add parametricity rules for monotone, fun_lub, and fun_ord
 
Andreas Lochbihler 
parents: 
59199 
diff
changeset
 | 
8321  | 
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
 | 
8322  | 
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
 | 
8323  | 
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
 | 
8324  | 
|
| 23388 | 8325  | 
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
 | 
8326  | 
|
| 
53012
 
cb82606b8215
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
 
kuncar 
parents: 
52435 
diff
changeset
 | 
8327  | 
end  |