src/HOL/List.thy
author wenzelm
Mon, 25 Mar 2019 17:21:26 +0100
changeset 69981 3dced198b9ec
parent 69850 5f993636ac07
child 70183 3ea80c950023
permissions -rw-r--r--
more strict AFP properties;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13366
diff changeset
     1
(*  Title:      HOL/List.thy
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
     2
    Author:     Tobias Nipkow; proofs tidied by LCP
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     3
*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     4
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
     5
section \<open>The datatype of finite lists\<close>
13122
wenzelm
parents: 13114
diff changeset
     6
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15113
diff changeset
     7
theory List
58916
229765cc3414 more complete fp_sugars for sum and prod;
traytel
parents: 58889
diff changeset
     8
imports Sledgehammer Code_Numeral Lifting_Set
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15113
diff changeset
     9
begin
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    10
58310
91ea607a34d8 updated news
blanchet
parents: 58247
diff changeset
    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
532ad8de5d61 call the predicator of list list_all
traytel
parents: 62175
diff changeset
    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
186076d100d3 compatibility names
blanchet
parents: 55405
diff changeset
    23
lemma [case_names Nil Cons, cases type: list]:
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
    24
  \<comment> \<open>for backward compatibility -- names of variables differ\<close>
55406
186076d100d3 compatibility names
blanchet
parents: 55405
diff changeset
    25
  "(y = [] \<Longrightarrow> P) \<Longrightarrow> (\<And>a list. y = a # list \<Longrightarrow> P) \<Longrightarrow> P"
186076d100d3 compatibility names
blanchet
parents: 55405
diff changeset
    26
by (rule list.exhaust)
186076d100d3 compatibility names
blanchet
parents: 55405
diff changeset
    27
186076d100d3 compatibility names
blanchet
parents: 55405
diff changeset
    28
lemma [case_names Nil Cons, induct type: list]:
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
    29
  \<comment> \<open>for backward compatibility -- names of variables differ\<close>
55406
186076d100d3 compatibility names
blanchet
parents: 55405
diff changeset
    30
  "P [] \<Longrightarrow> (\<And>a list. P list \<Longrightarrow> P (a # list)) \<Longrightarrow> P list"
186076d100d3 compatibility names
blanchet
parents: 55405
diff changeset
    31
by (rule list.induct)
186076d100d3 compatibility names
blanchet
parents: 55405
diff changeset
    32
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
    33
text \<open>Compatibility:\<close>
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
    34
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
    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
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
    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
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
    45
syntax
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
    46
  \<comment> \<open>list Enumeration\<close>
35115
446c5063e4fd modernized translations;
wenzelm
parents: 35028
diff changeset
    47
  "_list" :: "args => 'a list"    ("[(_)]")
34941
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
    48
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
    49
translations
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
    50
  "[x, xs]" == "x#[xs]"
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
    51
  "[x]" == "x#[]"
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
    52
35115
446c5063e4fd modernized translations;
wenzelm
parents: 35028
diff changeset
    53
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
    54
subsection \<open>Basic list processing functions\<close>
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
    55
58135
0774d32fe74f silenced nonexhaustive primrec warnings
traytel
parents: 58101
diff changeset
    56
primrec (nonexhaustive) last :: "'a list \<Rightarrow> 'a" where
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    57
"last (x # xs) = (if xs = [] then x else last xs)"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    58
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    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
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    61
"butlast (x # xs) = (if xs = [] then [] else x # butlast xs)"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    62
55584
a879f14b6f95 merged 'List.set' with BNF-generated 'set'
blanchet
parents: 55564
diff changeset
    63
lemma set_rec: "set xs = rec_list {} (\<lambda>x _. insert x) xs"
a879f14b6f95 merged 'List.set' with BNF-generated 'set'
blanchet
parents: 55564
diff changeset
    64
  by (induct xs) auto
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    65
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    66
definition coset :: "'a list \<Rightarrow> 'a set" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    67
[simp]: "coset xs = - set xs"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    68
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    69
primrec append :: "'a list \<Rightarrow> 'a list \<Rightarrow> 'a list" (infixr "@" 65) where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    70
append_Nil: "[] @ ys = ys" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    71
append_Cons: "(x#xs) @ ys = x # xs @ ys"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    72
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    73
primrec rev :: "'a list \<Rightarrow> 'a list" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    74
"rev [] = []" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    75
"rev (x # xs) = rev xs @ [x]"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    76
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    77
primrec filter:: "('a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> 'a list" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    78
"filter P [] = []" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    79
"filter P (x # xs) = (if P x then x # filter P xs else filter P xs)"
34941
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
    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
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
    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
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
    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
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
    88
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    89
primrec fold :: "('a \<Rightarrow> 'b \<Rightarrow> 'b) \<Rightarrow> 'a list \<Rightarrow> 'b \<Rightarrow> 'b" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    90
fold_Nil:  "fold f [] = id" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    91
fold_Cons: "fold f (x # xs) = fold f xs \<circ> f x"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    92
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    93
primrec foldr :: "('a \<Rightarrow> 'b \<Rightarrow> 'b) \<Rightarrow> 'a list \<Rightarrow> 'b \<Rightarrow> 'b" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    94
foldr_Nil:  "foldr f [] = id" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    95
foldr_Cons: "foldr f (x # xs) = f x \<circ> foldr f xs"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    96
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    97
primrec foldl :: "('b \<Rightarrow> 'a \<Rightarrow> 'b) \<Rightarrow> 'b \<Rightarrow> 'a list \<Rightarrow> 'b" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    98
foldl_Nil:  "foldl f a [] = a" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    99
foldl_Cons: "foldl f a (x # xs) = foldl f (f a x) xs"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   100
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   101
primrec concat:: "'a list list \<Rightarrow> 'a list" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   102
"concat [] = []" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   103
"concat (x # xs) = x @ concat xs"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   104
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   105
primrec drop:: "nat \<Rightarrow> 'a list \<Rightarrow> 'a list" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   106
drop_Nil: "drop n [] = []" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   107
drop_Cons: "drop n (x # xs) = (case n of 0 \<Rightarrow> x # xs | Suc m \<Rightarrow> drop m xs)"
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
   108
  \<comment> \<open>Warning: simpset does not contain this definition, but separate
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
   109
       theorems for \<open>n = 0\<close> and \<open>n = Suc k\<close>\<close>
34941
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
   110
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   111
primrec take:: "nat \<Rightarrow> 'a list \<Rightarrow> 'a list" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   112
take_Nil:"take n [] = []" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   113
take_Cons: "take n (x # xs) = (case n of 0 \<Rightarrow> [] | Suc m \<Rightarrow> x # take m xs)"
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
   114
  \<comment> \<open>Warning: simpset does not contain this definition, but separate
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
   115
       theorems for \<open>n = 0\<close> and \<open>n = Suc k\<close>\<close>
34941
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
   116
58135
0774d32fe74f silenced nonexhaustive primrec warnings
traytel
parents: 58101
diff changeset
   117
primrec (nonexhaustive) nth :: "'a list => nat => 'a" (infixl "!" 100) where
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   118
nth_Cons: "(x # xs) ! n = (case n of 0 \<Rightarrow> x | Suc k \<Rightarrow> xs ! k)"
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
   119
  \<comment> \<open>Warning: simpset does not contain this definition, but separate
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
   120
       theorems for \<open>n = 0\<close> and \<open>n = Suc k\<close>\<close>
34941
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
   121
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   122
primrec list_update :: "'a list \<Rightarrow> nat \<Rightarrow> 'a \<Rightarrow> 'a list" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   123
"list_update [] i v = []" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   124
"list_update (x # xs) i v =
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   125
  (case i of 0 \<Rightarrow> v # xs | Suc j \<Rightarrow> x # list_update xs j v)"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   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
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   129
syntax
13366
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
   130
  "_lupdbind":: "['a, 'a] => lupdbind"    ("(2_ :=/ _)")
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
   131
  "" :: "lupdbind => lupdbinds"    ("_")
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
   132
  "_lupdbinds" :: "[lupdbind, lupdbinds] => lupdbinds"    ("_,/ _")
69084
c7c38c901267 avoid confusing precedences
nipkow
parents: 69075
diff changeset
   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
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   135
translations
35115
446c5063e4fd modernized translations;
wenzelm
parents: 35028
diff changeset
   136
  "_LUpdate xs (_lupdbinds b bs)" == "_LUpdate (_LUpdate xs b) bs"
34941
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
   137
  "xs[i:=x]" == "CONST list_update xs i x"
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
   138
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   139
primrec takeWhile :: "('a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> 'a list" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   140
"takeWhile P [] = []" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   141
"takeWhile P (x # xs) = (if P x then x # takeWhile P xs else [])"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   142
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   143
primrec dropWhile :: "('a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> 'a list" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   144
"dropWhile P [] = []" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   145
"dropWhile P (x # xs) = (if P x then dropWhile P xs else x # xs)"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   146
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   147
primrec zip :: "'a list \<Rightarrow> 'b list \<Rightarrow> ('a \<times> 'b) list" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   148
"zip xs [] = []" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   149
zip_Cons: "zip xs (y # ys) =
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
   150
  (case xs of [] \<Rightarrow> [] | z # zs \<Rightarrow> (z, y) # zip zs ys)"
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
   151
  \<comment> \<open>Warning: simpset does not contain this definition, but separate
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
   152
       theorems for \<open>xs = []\<close> and \<open>xs = z # zs\<close>\<close>
34941
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
   153
66656
8f4d252ce2fe added lemma; zip_with -> map2
nipkow
parents: 66655
diff changeset
   154
abbreviation map2 :: "('a \<Rightarrow> 'b \<Rightarrow> 'c) \<Rightarrow> 'a list \<Rightarrow> 'b list \<Rightarrow> 'c list" where
8f4d252ce2fe added lemma; zip_with -> map2
nipkow
parents: 66655
diff changeset
   155
"map2 f xs ys \<equiv> map (\<lambda>(x,y). f x y) (zip xs ys)"
66655
e9be3d6995f9 introduced zip_with
nipkow
parents: 66654
diff changeset
   156
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   157
primrec product :: "'a list \<Rightarrow> 'b list \<Rightarrow> ('a \<times> 'b) list" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   158
"product [] _ = []" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   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
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   167
primrec upt :: "nat \<Rightarrow> nat \<Rightarrow> nat list" ("(1[_..</_'])") where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   168
upt_0: "[i..<0] = []" |
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
   169
upt_Suc: "[i..<(Suc j)] = (if i \<le> j then [i..<j] @ [j] else [])"
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   170
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   171
definition insert :: "'a \<Rightarrow> 'a list \<Rightarrow> 'a list" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   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
159e1b043495 added List.union
nipkow
parents: 57123
diff changeset
   174
definition union :: "'a list \<Rightarrow> 'a list \<Rightarrow> 'a list" where
159e1b043495 added List.union
nipkow
parents: 57123
diff changeset
   175
"union = fold insert"
159e1b043495 added List.union
nipkow
parents: 57123
diff changeset
   176
159e1b043495 added List.union
nipkow
parents: 57123
diff changeset
   177
hide_const (open) insert union
159e1b043495 added List.union
nipkow
parents: 57123
diff changeset
   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
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
   180
primrec find :: "('a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> 'a option" where
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   181
"find _ [] = None" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   182
"find P (x#xs) = (if P x then Some x else find P xs)"
47122
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
   183
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
   184
text \<open>In the context of multisets, \<open>count_list\<close> is equivalent to
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   185
  \<^term>\<open>count \<circ> mset\<close> and it it advisable to use the latter.\<close>
60541
4246da644cca modernized name
nipkow
parents: 60160
diff changeset
   186
primrec count_list :: "'a list \<Rightarrow> 'a \<Rightarrow> nat" where
4246da644cca modernized name
nipkow
parents: 60160
diff changeset
   187
"count_list [] y = 0" |
4246da644cca modernized name
nipkow
parents: 60160
diff changeset
   188
"count_list (x#xs) y = (if x=y then count_list xs y + 1 else count_list xs y)"
59728
0bb88aa34768 added lemmas
nipkow
parents: 59582
diff changeset
   189
55807
fd31d0e70eb8 added function "List.extract"
nipkow
parents: 55642
diff changeset
   190
definition
fd31d0e70eb8 added function "List.extract"
nipkow
parents: 55642
diff changeset
   191
   "extract" :: "('a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> ('a list * 'a * 'a list) option"
fd31d0e70eb8 added function "List.extract"
nipkow
parents: 55642
diff changeset
   192
where "extract P xs =
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
   193
  (case dropWhile (Not \<circ> P) xs of
55807
fd31d0e70eb8 added function "List.extract"
nipkow
parents: 55642
diff changeset
   194
     [] \<Rightarrow> None |
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
   195
     y#ys \<Rightarrow> Some(takeWhile (Not \<circ> P) xs, y, ys))"
55807
fd31d0e70eb8 added function "List.extract"
nipkow
parents: 55642
diff changeset
   196
fd31d0e70eb8 added function "List.extract"
nipkow
parents: 55642
diff changeset
   197
hide_const (open) "extract"
fd31d0e70eb8 added function "List.extract"
nipkow
parents: 55642
diff changeset
   198
51096
60e4b75fefe1 combinator List.those;
haftmann
parents: 50548
diff changeset
   199
primrec those :: "'a option list \<Rightarrow> 'a list option"
60e4b75fefe1 combinator List.those;
haftmann
parents: 50548
diff changeset
   200
where
60e4b75fefe1 combinator List.those;
haftmann
parents: 50548
diff changeset
   201
"those [] = Some []" |
60e4b75fefe1 combinator List.those;
haftmann
parents: 50548
diff changeset
   202
"those (x # xs) = (case x of
60e4b75fefe1 combinator List.those;
haftmann
parents: 50548
diff changeset
   203
  None \<Rightarrow> None
55466
786edc984c98 merged 'Option.map' and 'Option.map_option'
blanchet
parents: 55465
diff changeset
   204
| Some y \<Rightarrow> map_option (Cons y) (those xs))"
51096
60e4b75fefe1 combinator List.those;
haftmann
parents: 50548
diff changeset
   205
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   206
primrec remove1 :: "'a \<Rightarrow> 'a list \<Rightarrow> 'a list" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   207
"remove1 x [] = []" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   208
"remove1 x (y # xs) = (if x = y then xs else y # remove1 x xs)"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   209
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   210
primrec removeAll :: "'a \<Rightarrow> 'a list \<Rightarrow> 'a list" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   211
"removeAll x [] = []" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   212
"removeAll x (y # xs) = (if x = y then removeAll x xs else y # removeAll x xs)"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   213
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   214
primrec distinct :: "'a list \<Rightarrow> bool" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   215
"distinct [] \<longleftrightarrow> True" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   216
"distinct (x # xs) \<longleftrightarrow> x \<notin> set xs \<and> distinct xs"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   217
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   218
primrec remdups :: "'a list \<Rightarrow> 'a list" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   219
"remdups [] = []" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   220
"remdups (x # xs) = (if x \<in> set xs then remdups xs else x # remdups xs)"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   221
53721
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
   222
fun remdups_adj :: "'a list \<Rightarrow> 'a list" where
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
   223
"remdups_adj [] = []" |
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
   224
"remdups_adj [x] = [x]" |
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
   225
"remdups_adj (x # y # xs) = (if x = y then remdups_adj (x # xs) else x # remdups_adj (y # xs))"
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
   226
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   227
primrec replicate :: "nat \<Rightarrow> 'a \<Rightarrow> 'a list" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   228
replicate_0: "replicate 0 x = []" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   229
replicate_Suc: "replicate (Suc n) x = x # replicate n x"
3342
ec3b55fcb165 New operator "lists" for formalizing sets of lists
paulson
parents: 3320
diff changeset
   230
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
   231
text \<open>
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
   232
  Function \<open>size\<close> is overloaded for all datatypes. Users may
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
   233
  refer to the list version as \<open>length\<close>.\<close>
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   234
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   235
abbreviation length :: "'a list \<Rightarrow> nat" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   236
"length \<equiv> size"
15307
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   237
51173
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
   238
definition enumerate :: "nat \<Rightarrow> 'a list \<Rightarrow> (nat \<times> 'a) list" where
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
   239
enumerate_eq_zip: "enumerate n xs = zip [n..<n + length xs] xs"
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
   240
46440
d4994e2e7364 use 'primrec' to define "rotate1", for uniformity (and to help first-order tools that rely on "Spec_Rules")
blanchet
parents: 46439
diff changeset
   241
primrec rotate1 :: "'a list \<Rightarrow> 'a list" where
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   242
"rotate1 [] = []" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   243
"rotate1 (x # xs) = xs @ [x]"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   244
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   245
definition rotate :: "nat \<Rightarrow> 'a list \<Rightarrow> 'a list" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   246
"rotate n = rotate1 ^^ n"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   247
65956
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
   248
definition nths :: "'a list => nat set => 'a list" where
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
   249
"nths xs A = map fst (filter (\<lambda>p. snd p \<in> A) (zip xs [0..<size xs]))"
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
   250
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
   251
primrec subseqs :: "'a list \<Rightarrow> 'a list list" where
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
   252
"subseqs [] = [[]]" |
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
   253
"subseqs (x#xs) = (let xss = subseqs xs in map (Cons x) xss @ xss)"
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   254
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   255
primrec n_lists :: "nat \<Rightarrow> 'a list \<Rightarrow> 'a list list" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   256
"n_lists 0 xs = [[]]" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   257
"n_lists (Suc n) xs = concat (map (\<lambda>ys. map (\<lambda>y. y # ys) xs) (n_lists n xs))"
49948
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
   258
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
   259
hide_const (open) n_lists
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
   260
69075
6e1b569ccce1 simpler def
nipkow
parents: 68975
diff changeset
   261
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
   262
"splice [] ys = ys" |
69075
6e1b569ccce1 simpler def
nipkow
parents: 68975
diff changeset
   263
"splice (x#xs) ys = x # splice ys xs"
6e1b569ccce1 simpler def
nipkow
parents: 68975
diff changeset
   264
by pat_completeness auto
6e1b569ccce1 simpler def
nipkow
parents: 68975
diff changeset
   265
6e1b569ccce1 simpler def
nipkow
parents: 68975
diff changeset
   266
termination
6e1b569ccce1 simpler def
nipkow
parents: 68975
diff changeset
   267
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
   268
69107
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
   269
function shuffles where
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
   270
  "shuffles [] ys = {ys}"
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
   271
| "shuffles xs [] = {xs}"
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
   272
| "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
   273
  by pat_completeness simp_all
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
   274
termination by lexicographic_order
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
   275
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   276
text\<open>Use only if you cannot use \<^const>\<open>Min\<close> instead:\<close>
67170
9bfe79084443 added min_list and arg_min_list
nipkow
parents: 67168
diff changeset
   277
fun min_list :: "'a::ord list \<Rightarrow> 'a" where
9bfe79084443 added min_list and arg_min_list
nipkow
parents: 67168
diff changeset
   278
"min_list (x # xs) = (case xs of [] \<Rightarrow> x | _ \<Rightarrow> min x (min_list xs))"
9bfe79084443 added min_list and arg_min_list
nipkow
parents: 67168
diff changeset
   279
9bfe79084443 added min_list and arg_min_list
nipkow
parents: 67168
diff changeset
   280
text\<open>Returns first minimum:\<close>
9bfe79084443 added min_list and arg_min_list
nipkow
parents: 67168
diff changeset
   281
fun arg_min_list :: "('a \<Rightarrow> ('b::linorder)) \<Rightarrow> 'a list \<Rightarrow> 'a" where
9bfe79084443 added min_list and arg_min_list
nipkow
parents: 67168
diff changeset
   282
"arg_min_list f [x] = x" |
9bfe79084443 added min_list and arg_min_list
nipkow
parents: 67168
diff changeset
   283
"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)"
9bfe79084443 added min_list and arg_min_list
nipkow
parents: 67168
diff changeset
   284
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
   285
text\<open>
26771
1d67ab20f358 Added documentation
nipkow
parents: 26749
diff changeset
   286
\begin{figure}[htbp]
1d67ab20f358 Added documentation
nipkow
parents: 26749
diff changeset
   287
\fbox{
1d67ab20f358 Added documentation
nipkow
parents: 26749
diff changeset
   288
\begin{tabular}{l}
27381
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   289
@{lemma "[a,b]@[c,d] = [a,b,c,d]" by simp}\\
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   290
@{lemma "length [a,b,c] = 3" by simp}\\
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   291
@{lemma "set [a,b,c] = {a,b,c}" by simp}\\
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   292
@{lemma "map f [a,b,c] = [f a, f b, f c]" by simp}\\
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   293
@{lemma "rev [a,b,c] = [c,b,a]" by simp}\\
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   294
@{lemma "hd [a,b,c,d] = a" by simp}\\
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   295
@{lemma "tl [a,b,c,d] = [b,c,d]" by simp}\\
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   296
@{lemma "last [a,b,c,d] = d" by simp}\\
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   297
@{lemma "butlast [a,b,c,d] = [a,b,c]" by simp}\\
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   298
@{lemma[source] "filter (\<lambda>n::nat. n<2) [0,2,1] = [0,1]" by simp}\\
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   299
@{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
   300
@{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
   301
@{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
   302
@{lemma "foldl f x [a,b,c] = f (f (f x a) b) c" by simp}\\
27381
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   303
@{lemma "zip [a,b,c] [x,y,z] = [(a,x),(b,y),(c,z)]" by simp}\\
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   304
@{lemma "zip [a,b] [x,y,z] = [(a,x),(b,y)]" by simp}\\
51173
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
   305
@{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
   306
@{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
   307
@{lemma "product_lists [[a,b], [c], [d,e]] = [[a,c,d], [a,c,e], [b,c,d], [b,c,e]]" by simp}\\
27381
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   308
@{lemma "splice [a,b,c] [x,y,z] = [a,x,b,y,c,z]" by simp}\\
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   309
@{lemma "splice [a,b,c,d] [x,y] = [a,x,b,y,c,d]" by simp}\\
69107
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
   310
@{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
   311
    by (simp add: insert_commute)}\\
27381
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   312
@{lemma "take 2 [a,b,c,d] = [a,b]" by simp}\\
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   313
@{lemma "take 6 [a,b,c,d] = [a,b,c,d]" by simp}\\
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   314
@{lemma "drop 2 [a,b,c,d] = [c,d]" by simp}\\
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   315
@{lemma "drop 6 [a,b,c,d] = []" by simp}\\
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   316
@{lemma "takeWhile (%n::nat. n<3) [1,2,3,0] = [1,2]" by simp}\\
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   317
@{lemma "dropWhile (%n::nat. n<3) [1,2,3,0] = [3,0]" by simp}\\
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   318
@{lemma "distinct [2,0,1::nat]" by simp}\\
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   319
@{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
   320
@{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
   321
@{lemma "List.insert 2 [0::nat,1,2] = [0,1,2]" by (simp add: List.insert_def)}\\
35295
397295fa8387 lemma distinct_insert
haftmann
parents: 35248
diff changeset
   322
@{lemma "List.insert 3 [0::nat,1,2] = [3,0,1,2]" by (simp add: List.insert_def)}\\
57198
159e1b043495 added List.union
nipkow
parents: 57123
diff changeset
   323
@{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
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
   324
@{lemma "List.find (%i::int. i>0) [0,0] = None" by simp}\\
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
   325
@{lemma "List.find (%i::int. i>0) [0,1,0,2] = Some 1" by simp}\\
60541
4246da644cca modernized name
nipkow
parents: 60160
diff changeset
   326
@{lemma "count_list [0,1,0,2::int] 0 = 2" by (simp)}\\
55807
fd31d0e70eb8 added function "List.extract"
nipkow
parents: 55642
diff changeset
   327
@{lemma "List.extract (%i::int. i>0) [0,0] = None" by(simp add: extract_def)}\\
fd31d0e70eb8 added function "List.extract"
nipkow
parents: 55642
diff changeset
   328
@{lemma "List.extract (%i::int. i>0) [0,1,0,2] = Some([0], 1, [0,2])" by(simp add: extract_def)}\\
27381
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   329
@{lemma "remove1 2 [2,0,2,1::nat,2] = [0,2,1,2]" by simp}\\
27693
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
   330
@{lemma "removeAll 2 [2,0,2,1::nat,2] = [0,1]" by simp}\\
27381
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   331
@{lemma "nth [a,b,c,d] 2 = c" by simp}\\
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   332
@{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
   333
@{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
   334
@{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
   335
@{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
   336
@{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
   337
@{lemma "rotate 3 [a,b,c,d] = [d,a,b,c]" by (simp add:rotate_def eval_nat_numeral)}\\
40077
c8a9eaaa2f59 nat_number -> eval_nat_numeral
nipkow
parents: 39963
diff changeset
   338
@{lemma "replicate 4 a = [a,a,a,a]" by (simp add:eval_nat_numeral)}\\
67170
9bfe79084443 added min_list and arg_min_list
nipkow
parents: 67168
diff changeset
   339
@{lemma "[2..<5] = [2,3,4]" by (simp add:eval_nat_numeral)}\\
9bfe79084443 added min_list and arg_min_list
nipkow
parents: 67168
diff changeset
   340
@{lemma "min_list [3,1,-2::int] = -2" by (simp)}\\
9bfe79084443 added min_list and arg_min_list
nipkow
parents: 67168
diff changeset
   341
@{lemma "arg_min_list (\<lambda>i. i*i) [3,-1,1,-2::int] = -1" by (simp)}
26771
1d67ab20f358 Added documentation
nipkow
parents: 26749
diff changeset
   342
\end{tabular}}
1d67ab20f358 Added documentation
nipkow
parents: 26749
diff changeset
   343
\caption{Characteristic examples}
1d67ab20f358 Added documentation
nipkow
parents: 26749
diff changeset
   344
\label{fig:Characteristic}
1d67ab20f358 Added documentation
nipkow
parents: 26749
diff changeset
   345
\end{figure}
29927
ae8f42c245b2 Added nitpick attribute, and fixed typo.
blanchet
parents: 29856
diff changeset
   346
Figure~\ref{fig:Characteristic} shows characteristic examples
26771
1d67ab20f358 Added documentation
nipkow
parents: 26749
diff changeset
   347
that should give an intuitive understanding of the above functions.
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
   348
\<close>
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
   349
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
   350
text\<open>The following simple sort functions are intended for proofs,
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
   351
not for efficient implementations.\<close>
24616
fac3dd4ade83 sorting
nipkow
parents: 24566
diff changeset
   352
66434
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
   353
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
   354
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
   355
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
   356
"sorted_wrt P [] = True" |
68109
cebf36c14226 new def of sorted and sorted_wrt
nipkow
parents: 68085
diff changeset
   357
"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
   358
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
   359
(* FIXME: define sorted in terms of sorted_wrt *)
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
   360
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
   361
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
   362
25221
5ded95dda5df append/member: more light-weight way to declare authentic syntax;
wenzelm
parents: 25215
diff changeset
   363
context linorder
5ded95dda5df append/member: more light-weight way to declare authentic syntax;
wenzelm
parents: 25215
diff changeset
   364
begin
67479
31d04ba28893 imported patch sorted
nipkow
parents: 67443
diff changeset
   365
31d04ba28893 imported patch sorted
nipkow
parents: 67443
diff changeset
   366
fun sorted :: "'a list \<Rightarrow> bool" where
31d04ba28893 imported patch sorted
nipkow
parents: 67443
diff changeset
   367
"sorted [] = True" |
68109
cebf36c14226 new def of sorted and sorted_wrt
nipkow
parents: 68085
diff changeset
   368
"sorted (x # ys) = ((\<forall>y \<in> set ys. x \<le> y) \<and> sorted ys)"
67479
31d04ba28893 imported patch sorted
nipkow
parents: 67443
diff changeset
   369
31d04ba28893 imported patch sorted
nipkow
parents: 67443
diff changeset
   370
lemma sorted_sorted_wrt: "sorted = sorted_wrt (\<le>)"
31d04ba28893 imported patch sorted
nipkow
parents: 67443
diff changeset
   371
proof (rule ext)
31d04ba28893 imported patch sorted
nipkow
parents: 67443
diff changeset
   372
  fix xs show "sorted xs = sorted_wrt (\<le>) xs"
31d04ba28893 imported patch sorted
nipkow
parents: 67443
diff changeset
   373
    by(induction xs rule: sorted.induct) auto
31d04ba28893 imported patch sorted
nipkow
parents: 67443
diff changeset
   374
qed
24697
b37d3980da3c fixed haftmann bug
nipkow
parents: 24657
diff changeset
   375
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
   376
primrec insort_key :: "('b \<Rightarrow> 'a) \<Rightarrow> 'b \<Rightarrow> 'b list \<Rightarrow> 'b list" where
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   377
"insort_key f x [] = [x]" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   378
"insort_key f x (y#ys) =
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   379
  (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
   380
35195
5163c2d00904 more lemmas about sort(_key)
haftmann
parents: 35115
diff changeset
   381
definition sort_key :: "('b \<Rightarrow> 'a) \<Rightarrow> 'b list \<Rightarrow> 'b list" where
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   382
"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
   383
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
   384
definition insort_insert_key :: "('b \<Rightarrow> 'a) \<Rightarrow> 'b \<Rightarrow> 'b list \<Rightarrow> 'b list" where
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   385
"insort_insert_key f x xs =
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   386
  (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
   387
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
   388
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
   389
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
   390
abbreviation "insort_insert \<equiv> insort_insert_key (\<lambda>x. x)"
35608
db4045d1406e added insort_insert
haftmann
parents: 35603
diff changeset
   391
67684
6987b0c36f12 simplified def of stable
nipkow
parents: 67613
diff changeset
   392
definition stable_sort_key :: "(('b \<Rightarrow> 'a) \<Rightarrow> 'b list \<Rightarrow> 'b list) \<Rightarrow> bool" where
6987b0c36f12 simplified def of stable
nipkow
parents: 67613
diff changeset
   393
"stable_sort_key sk =
6987b0c36f12 simplified def of stable
nipkow
parents: 67613
diff changeset
   394
   (\<forall>f xs k. filter (\<lambda>y. f y = k) (sk f xs) = filter (\<lambda>y. f y = k) xs)"
6987b0c36f12 simplified def of stable
nipkow
parents: 67613
diff changeset
   395
25221
5ded95dda5df append/member: more light-weight way to declare authentic syntax;
wenzelm
parents: 25215
diff changeset
   396
end
5ded95dda5df append/member: more light-weight way to declare authentic syntax;
wenzelm
parents: 25215
diff changeset
   397
24616
fac3dd4ade83 sorting
nipkow
parents: 24566
diff changeset
   398
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
   399
subsubsection \<open>List comprehension\<close>
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
   400
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
   401
text\<open>Input syntax for Haskell-like list comprehension notation.
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
   402
Typical example: \<open>[(x,y). x \<leftarrow> xs, y \<leftarrow> ys, x \<noteq> y]\<close>,
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
   403
the list of all pairs of distinct elements from \<open>xs\<close> and \<open>ys\<close>.
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
   404
The syntax is as in Haskell, except that \<open>|\<close> becomes a dot
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
   405
(like in Isabelle's set comprehension): \<open>[e. x \<leftarrow> xs, \<dots>]\<close> rather than
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   406
\verb![e| x <- xs, ...]!.
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   407
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   408
The qualifiers after the dot are
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   409
\begin{description}
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
   410
\item[generators] \<open>p \<leftarrow> xs\<close>,
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
   411
 where \<open>p\<close> is a pattern and \<open>xs\<close> an expression of list type, or
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
   412
\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
   413
%\item[local bindings] @ {text"let x = e"}.
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   414
\end{description}
23240
7077dc80a14b tuned list comprehension
nipkow
parents: 23235
diff changeset
   415
24476
f7ad9fbbeeaa turned list comprehension translations into ML to optimize base case
nipkow
parents: 24471
diff changeset
   416
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
   417
misunderstandings, the translation into desugared form is not reversed
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
   418
upon output. Note that the translation of \<open>[e. x \<leftarrow> xs]\<close> is
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   419
optmized to \<^term>\<open>map (%x. e) xs\<close>.
23240
7077dc80a14b tuned list comprehension
nipkow
parents: 23235
diff changeset
   420
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   421
It is easy to write short list comprehensions which stand for complex
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   422
expressions. During proofs, they may become unreadable (and
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   423
mangled). In such cases it can be advisable to introduce separate
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
   424
definitions for the list comprehensions in question.\<close>
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   425
46138
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   426
nonterminal lc_qual and lc_quals
23192
ec73b9707d48 Moved list comprehension into List
nipkow
parents: 23096
diff changeset
   427
ec73b9707d48 Moved list comprehension into List
nipkow
parents: 23096
diff changeset
   428
syntax
46138
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   429
  "_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
   430
  "_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
   431
  "_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
   432
  (*"_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
   433
  "_lc_end" :: "lc_quals" ("]")
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   434
  "_lc_quals" :: "lc_qual \<Rightarrow> lc_quals \<Rightarrow> lc_quals"  (", __")
23192
ec73b9707d48 Moved list comprehension into List
nipkow
parents: 23096
diff changeset
   435
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61941
diff changeset
   436
syntax (ASCII)
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61941
diff changeset
   437
  "_lc_gen" :: "'a \<Rightarrow> 'a list \<Rightarrow> lc_qual"  ("_ <- _")
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61941
diff changeset
   438
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
   439
parse_translation \<open>
68362
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   440
let
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   441
  val NilC = Syntax.const \<^const_syntax>\<open>Nil\<close>;
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   442
  val ConsC = Syntax.const \<^const_syntax>\<open>Cons\<close>;
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   443
  val mapC = Syntax.const \<^const_syntax>\<open>map\<close>;
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   444
  val concatC = Syntax.const \<^const_syntax>\<open>concat\<close>;
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   445
  val IfC = Syntax.const \<^const_syntax>\<open>If\<close>;
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   446
  val dummyC = Syntax.const \<^const_syntax>\<open>Pure.dummy_pattern\<close>
68362
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   447
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   448
  fun single x = ConsC $ x $ NilC;
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   449
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   450
  fun pat_tr ctxt p e opti = (* %x. case x of p => e | _ => [] *)
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   451
    let
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   452
      (* FIXME proper name context!? *)
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   453
      val x =
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   454
        Free (singleton (Name.variant_list (fold Term.add_free_names [p, e] [])) "x", dummyT);
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   455
      val e = if opti then single e else e;
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   456
      val case1 = Syntax.const \<^syntax_const>\<open>_case1\<close> $ p $ e;
68362
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   457
      val case2 =
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   458
        Syntax.const \<^syntax_const>\<open>_case1\<close> $ dummyC $ NilC;
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   459
      val cs = Syntax.const \<^syntax_const>\<open>_case2\<close> $ case1 $ case2;
68362
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   460
    in Syntax_Trans.abs_tr [x, Case_Translation.case_tr false ctxt [x, cs]] end;
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   461
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   462
  fun pair_pat_tr (x as Free _) e = Syntax_Trans.abs_tr [x, e]
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   463
    | pair_pat_tr (_ $ p1 $ p2) e =
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   464
        Syntax.const \<^const_syntax>\<open>case_prod\<close> $ pair_pat_tr p1 (pair_pat_tr p2 e)
68362
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   465
    | pair_pat_tr dummy e = Syntax_Trans.abs_tr [Syntax.const "_idtdummy", e]
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   466
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   467
  fun pair_pat ctxt (Const (\<^const_syntax>\<open>Pair\<close>,_) $ s $ t) =
68362
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   468
        pair_pat ctxt s andalso pair_pat ctxt t
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   469
    | pair_pat ctxt (Free (s,_)) =
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   470
        let
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   471
          val thy = Proof_Context.theory_of ctxt;
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   472
          val s' = Proof_Context.intern_const ctxt s;
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   473
        in not (Sign.declared_const thy s') end
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   474
    | pair_pat _ t = (t = dummyC);
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   475
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   476
  fun abs_tr ctxt p e opti =
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   477
    let val p = Term_Position.strip_positions p
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   478
    in if pair_pat ctxt p
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   479
       then (pair_pat_tr p e, true)
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   480
       else (pat_tr ctxt p e opti, false)
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   481
    end
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   482
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   483
  fun lc_tr ctxt [e, Const (\<^syntax_const>\<open>_lc_test\<close>, _) $ b, qs] =
68362
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   484
    let
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   485
      val res =
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   486
        (case qs of
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   487
           Const (\<^syntax_const>\<open>_lc_end\<close>, _) => single e
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   488
         | Const (\<^syntax_const>\<open>_lc_quals\<close>, _) $ q $ qs => lc_tr ctxt [e, q, qs]);
68362
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   489
    in IfC $ b $ res $ NilC end
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   490
  | lc_tr ctxt
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   491
      [e, Const (\<^syntax_const>\<open>_lc_gen\<close>, _) $ p $ es,
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   492
          Const(\<^syntax_const>\<open>_lc_end\<close>, _)] =
68362
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   493
      (case abs_tr ctxt p e true of
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   494
         (f, true) => mapC $ f $ es
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   495
       | (f, false) => concatC $ (mapC $ f $ es))
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   496
  | lc_tr ctxt
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   497
      [e, Const (\<^syntax_const>\<open>_lc_gen\<close>, _) $ p $ es,
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   498
          Const (\<^syntax_const>\<open>_lc_quals\<close>, _) $ q $ qs] =
68362
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   499
      let val e' = lc_tr ctxt [e, q, qs];
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   500
      in concatC $ (mapC $ (fst (abs_tr ctxt p e' false)) $ es) end;
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   501
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   502
in [(\<^syntax_const>\<open>_listcompr\<close>, lc_tr)] end
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
   503
\<close>
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
   504
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
   505
ML_val \<open>
42167
7d8cb105373c actually check list comprehension examples;
wenzelm
parents: 42144
diff changeset
   506
  let
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   507
    val read = Syntax.read_term \<^context> o Syntax.implode_input;
60160
52aa014308cb more formal source, more PIDE markup;
wenzelm
parents: 60159
diff changeset
   508
    fun check s1 s2 =
52aa014308cb more formal source, more PIDE markup;
wenzelm
parents: 60159
diff changeset
   509
      read s1 aconv read s2 orelse
52aa014308cb more formal source, more PIDE markup;
wenzelm
parents: 60159
diff changeset
   510
        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
   511
          quote (#1 (Input.source_content s1)) ^ Position.here_list [Input.pos_of s1, Input.pos_of s2]);
42167
7d8cb105373c actually check list comprehension examples;
wenzelm
parents: 42144
diff changeset
   512
  in
60160
52aa014308cb more formal source, more PIDE markup;
wenzelm
parents: 60159
diff changeset
   513
    check \<open>[(x,y,z). b]\<close> \<open>if b then [(x, y, z)] else []\<close>;
68362
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   514
    check \<open>[(x,y,z). (x,_,y)\<leftarrow>xs]\<close> \<open>map (\<lambda>(x,_,y). (x, y, z)) xs\<close>;
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   515
    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
52aa014308cb more formal source, more PIDE markup;
wenzelm
parents: 60159
diff changeset
   516
    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>;
52aa014308cb more formal source, more PIDE markup;
wenzelm
parents: 60159
diff changeset
   517
    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>;
52aa014308cb more formal source, more PIDE markup;
wenzelm
parents: 60159
diff changeset
   518
    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>;
52aa014308cb more formal source, more PIDE markup;
wenzelm
parents: 60159
diff changeset
   519
    check \<open>[(x,y). Cons True x \<leftarrow> xs]\<close>
52aa014308cb more formal source, more PIDE markup;
wenzelm
parents: 60159
diff changeset
   520
      \<open>concat (map (\<lambda>xa. case xa of [] \<Rightarrow> [] | True # x \<Rightarrow> [(x, y)] | False # x \<Rightarrow> []) xs)\<close>;
52aa014308cb more formal source, more PIDE markup;
wenzelm
parents: 60159
diff changeset
   521
    check \<open>[(x,y,z). Cons x [] \<leftarrow> xs]\<close>
52aa014308cb more formal source, more PIDE markup;
wenzelm
parents: 60159
diff changeset
   522
      \<open>concat (map (\<lambda>xa. case xa of [] \<Rightarrow> [] | [x] \<Rightarrow> [(x, y, z)] | x # aa # lista \<Rightarrow> []) xs)\<close>;
52aa014308cb more formal source, more PIDE markup;
wenzelm
parents: 60159
diff changeset
   523
    check \<open>[(x,y,z). x<a, x>b, x=d]\<close>
52aa014308cb more formal source, more PIDE markup;
wenzelm
parents: 60159
diff changeset
   524
      \<open>if x < a then if b < x then if x = d then [(x, y, z)] else [] else [] else []\<close>;
52aa014308cb more formal source, more PIDE markup;
wenzelm
parents: 60159
diff changeset
   525
    check \<open>[(x,y,z). x<a, x>b, y\<leftarrow>ys]\<close>
52aa014308cb more formal source, more PIDE markup;
wenzelm
parents: 60159
diff changeset
   526
      \<open>if x < a then if b < x then map (\<lambda>y. (x, y, z)) ys else [] else []\<close>;
68362
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   527
    check \<open>[(x,y,z). x<a, (_,x)\<leftarrow>xs,y>b]\<close>
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   528
      \<open>if x < a then concat (map (\<lambda>(_,x). if b < y then [(x, y, z)] else []) xs) else []\<close>;
60160
52aa014308cb more formal source, more PIDE markup;
wenzelm
parents: 60159
diff changeset
   529
    check \<open>[(x,y,z). x<a, x\<leftarrow>xs, y\<leftarrow>ys]\<close>
52aa014308cb more formal source, more PIDE markup;
wenzelm
parents: 60159
diff changeset
   530
      \<open>if x < a then concat (map (\<lambda>x. map (\<lambda>y. (x, y, z)) ys) xs) else []\<close>;
52aa014308cb more formal source, more PIDE markup;
wenzelm
parents: 60159
diff changeset
   531
    check \<open>[(x,y,z). x\<leftarrow>xs, x>b, y<a]\<close>
52aa014308cb more formal source, more PIDE markup;
wenzelm
parents: 60159
diff changeset
   532
      \<open>concat (map (\<lambda>x. if b < x then if y < a then [(x, y, z)] else [] else []) xs)\<close>;
52aa014308cb more formal source, more PIDE markup;
wenzelm
parents: 60159
diff changeset
   533
    check \<open>[(x,y,z). x\<leftarrow>xs, x>b, y\<leftarrow>ys]\<close>
52aa014308cb more formal source, more PIDE markup;
wenzelm
parents: 60159
diff changeset
   534
      \<open>concat (map (\<lambda>x. if b < x then map (\<lambda>y. (x, y, z)) ys else []) xs)\<close>;
68362
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   535
    check \<open>[(x,y,z). x\<leftarrow>xs, (y,_)\<leftarrow>ys,y>x]\<close>
27237ee2e889 allow tuple patterns in list comprehensions
nipkow
parents: 68325
diff changeset
   536
      \<open>concat (map (\<lambda>x. concat (map (\<lambda>(y,_). if x < y then [(x, y, z)] else []) ys)) xs)\<close>;
60160
52aa014308cb more formal source, more PIDE markup;
wenzelm
parents: 60159
diff changeset
   537
    check \<open>[(x,y,z). x\<leftarrow>xs, y\<leftarrow>ys,z\<leftarrow>zs]\<close>
52aa014308cb more formal source, more PIDE markup;
wenzelm
parents: 60159
diff changeset
   538
      \<open>concat (map (\<lambda>x. concat (map (\<lambda>y. map (\<lambda>z. (x, y, z)) zs) ys)) xs)\<close>
42167
7d8cb105373c actually check list comprehension examples;
wenzelm
parents: 42144
diff changeset
   539
  end;
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
   540
\<close>
42167
7d8cb105373c actually check list comprehension examples;
wenzelm
parents: 42144
diff changeset
   541
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
   542
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
   543
(* 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
   544
   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
   545
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   546
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
   547
sig
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51678
diff changeset
   548
  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
   549
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
   550
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   551
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
   552
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
   553
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   554
(* 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
   555
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   556
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
   557
  (case Thm.term_of ct of
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   558
    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
   559
      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
   560
  | _ => 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
   561
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency 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
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
   563
  (case Thm.term_of ct of
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   564
    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
   565
      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
   566
  | _ => cv ctxt ct)
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   567
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency 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 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
   569
  (case Thm.term_of ct of
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   570
    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
   571
  | _ => 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
   572
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency 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
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
   574
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency 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
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
   576
  Conv.try_conv
51315
536a5603a138 provide common HOLogic.conj_conv and HOLogic.eq_conv;
wenzelm
parents: 51314
diff changeset
   577
    (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
   578
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   579
fun right_hand_set_comprehension_conv conv ctxt =
51315
536a5603a138 provide common HOLogic.conj_conv and HOLogic.eq_conv;
wenzelm
parents: 51314
diff changeset
   580
  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
   581
    (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
   582
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   583
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency 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
(* 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
   585
60156
wenzelm
parents: 59728
diff changeset
   586
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
   587
60158
wenzelm
parents: 60156
diff changeset
   588
local
wenzelm
parents: 60156
diff changeset
   589
wenzelm
parents: 60156
diff changeset
   590
val set_Nil_I = @{lemma "set [] = {x. False}" by (simp add: empty_def [symmetric])}
wenzelm
parents: 60156
diff changeset
   591
val set_singleton = @{lemma "set [a] = {x. x = a}" by simp}
wenzelm
parents: 60156
diff changeset
   592
val inst_Collect_mem_eq = @{lemma "set A = {x. x \<in> set A}" by simp}
wenzelm
parents: 60156
diff changeset
   593
val del_refl_eq = @{lemma "(t = t \<and> P) \<equiv> P" by simp}
wenzelm
parents: 60156
diff changeset
   594
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   595
fun mk_set T = Const (\<^const_name>\<open>set\<close>, HOLogic.listT T --> HOLogic.mk_setT T)
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   596
fun dest_set (Const (\<^const_name>\<open>set\<close>, _) $ xs) = xs
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   597
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   598
fun dest_singleton_list (Const (\<^const_name>\<open>Cons\<close>, _) $ t $ (Const (\<^const_name>\<open>Nil\<close>, _))) = t
60158
wenzelm
parents: 60156
diff changeset
   599
  | dest_singleton_list t = raise TERM ("dest_singleton_list", [t])
wenzelm
parents: 60156
diff changeset
   600
wenzelm
parents: 60156
diff changeset
   601
(*We check that one case returns a singleton list and all other cases
wenzelm
parents: 60156
diff changeset
   602
  return [], and return the index of the one singleton list case.*)
wenzelm
parents: 60156
diff changeset
   603
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
   604
  let
60158
wenzelm
parents: 60156
diff changeset
   605
    fun check (i, case_t) s =
wenzelm
parents: 60156
diff changeset
   606
      (case strip_abs_body case_t of
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   607
        (Const (\<^const_name>\<open>Nil\<close>, _)) => s
60158
wenzelm
parents: 60156
diff changeset
   608
      | _ => (case s of SOME NONE => SOME (SOME i) | _ => NONE))
wenzelm
parents: 60156
diff changeset
   609
  in
wenzelm
parents: 60156
diff changeset
   610
    fold_index check cases (SOME NONE) |> the_default NONE
wenzelm
parents: 60156
diff changeset
   611
  end
wenzelm
parents: 60156
diff changeset
   612
wenzelm
parents: 60156
diff changeset
   613
(*returns condition continuing term option*)
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   614
fun dest_if (Const (\<^const_name>\<open>If\<close>, _) $ cond $ then_t $ Const (\<^const_name>\<open>Nil\<close>, _)) =
60158
wenzelm
parents: 60156
diff changeset
   615
      SOME (cond, then_t)
wenzelm
parents: 60156
diff changeset
   616
  | dest_if _ = NONE
wenzelm
parents: 60156
diff changeset
   617
wenzelm
parents: 60156
diff changeset
   618
(*returns (case_expr type index chosen_case constr_name) option*)
wenzelm
parents: 60156
diff changeset
   619
fun dest_case ctxt case_term =
wenzelm
parents: 60156
diff changeset
   620
  let
wenzelm
parents: 60156
diff changeset
   621
    val (case_const, args) = strip_comb case_term
wenzelm
parents: 60156
diff changeset
   622
  in
wenzelm
parents: 60156
diff changeset
   623
    (case try dest_Const case_const of
wenzelm
parents: 60156
diff changeset
   624
      SOME (c, T) =>
wenzelm
parents: 60156
diff changeset
   625
        (case Ctr_Sugar.ctr_sugar_of_case ctxt c of
wenzelm
parents: 60156
diff changeset
   626
          SOME {ctrs, ...} =>
wenzelm
parents: 60156
diff changeset
   627
            (case possible_index_of_singleton_case (fst (split_last args)) of
wenzelm
parents: 60156
diff changeset
   628
              SOME i =>
wenzelm
parents: 60156
diff changeset
   629
                let
wenzelm
parents: 60156
diff changeset
   630
                  val constr_names = map (fst o dest_Const) ctrs
wenzelm
parents: 60156
diff changeset
   631
                  val (Ts, _) = strip_type T
wenzelm
parents: 60156
diff changeset
   632
                  val T' = List.last Ts
wenzelm
parents: 60156
diff changeset
   633
                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
   634
            | 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
   635
        | NONE => NONE)
60158
wenzelm
parents: 60156
diff changeset
   636
    | NONE => NONE)
wenzelm
parents: 60156
diff changeset
   637
  end
wenzelm
parents: 60156
diff changeset
   638
60752
b48830b670a1 prefer tactics with explicit context;
wenzelm
parents: 60580
diff changeset
   639
fun tac ctxt [] =
b48830b670a1 prefer tactics with explicit context;
wenzelm
parents: 60580
diff changeset
   640
      resolve_tac ctxt [set_singleton] 1 ORELSE
b48830b670a1 prefer tactics with explicit context;
wenzelm
parents: 60580
diff changeset
   641
      resolve_tac ctxt [inst_Collect_mem_eq] 1
60158
wenzelm
parents: 60156
diff changeset
   642
  | tac ctxt (If :: cont) =
62390
842917225d56 more canonical names
nipkow
parents: 62343
diff changeset
   643
      Splitter.split_tac ctxt @{thms if_split} 1
60752
b48830b670a1 prefer tactics with explicit context;
wenzelm
parents: 60580
diff changeset
   644
      THEN resolve_tac ctxt @{thms conjI} 1
b48830b670a1 prefer tactics with explicit context;
wenzelm
parents: 60580
diff changeset
   645
      THEN resolve_tac ctxt @{thms impI} 1
60159
879918f4ee0f tuned -- avoid odd rebinding of "ctxt" and "context";
wenzelm
parents: 60158
diff changeset
   646
      THEN Subgoal.FOCUS (fn {prems, context = ctxt', ...} =>
60158
wenzelm
parents: 60156
diff changeset
   647
        CONVERSION (right_hand_set_comprehension_conv (K
wenzelm
parents: 60156
diff changeset
   648
          (HOLogic.conj_conv (Conv.rewr_conv (List.last prems RS @{thm Eq_TrueI})) Conv.all_conv
wenzelm
parents: 60156
diff changeset
   649
           then_conv
60159
879918f4ee0f tuned -- avoid odd rebinding of "ctxt" and "context";
wenzelm
parents: 60158
diff changeset
   650
           rewr_conv' @{lemma "(True \<and> P) = P" by simp})) ctxt') 1) ctxt 1
60158
wenzelm
parents: 60156
diff changeset
   651
      THEN tac ctxt cont
60752
b48830b670a1 prefer tactics with explicit context;
wenzelm
parents: 60580
diff changeset
   652
      THEN resolve_tac ctxt @{thms impI} 1
60159
879918f4ee0f tuned -- avoid odd rebinding of "ctxt" and "context";
wenzelm
parents: 60158
diff changeset
   653
      THEN Subgoal.FOCUS (fn {prems, context = ctxt', ...} =>
60158
wenzelm
parents: 60156
diff changeset
   654
          CONVERSION (right_hand_set_comprehension_conv (K
wenzelm
parents: 60156
diff changeset
   655
            (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
   656
             then_conv rewr_conv' @{lemma "(False \<and> P) = False" by simp})) ctxt') 1) ctxt 1
60752
b48830b670a1 prefer tactics with explicit context;
wenzelm
parents: 60580
diff changeset
   657
      THEN resolve_tac ctxt [set_Nil_I] 1
60158
wenzelm
parents: 60156
diff changeset
   658
  | tac ctxt (Case (T, i) :: cont) =
wenzelm
parents: 60156
diff changeset
   659
      let
wenzelm
parents: 60156
diff changeset
   660
        val SOME {injects, distincts, case_thms, split, ...} =
wenzelm
parents: 60156
diff changeset
   661
          Ctr_Sugar.ctr_sugar_of ctxt (fst (dest_Type T))
wenzelm
parents: 60156
diff changeset
   662
      in
wenzelm
parents: 60156
diff changeset
   663
        (* do case distinction *)
wenzelm
parents: 60156
diff changeset
   664
        Splitter.split_tac ctxt [split] 1
wenzelm
parents: 60156
diff changeset
   665
        THEN EVERY (map_index (fn (i', _) =>
60752
b48830b670a1 prefer tactics with explicit context;
wenzelm
parents: 60580
diff changeset
   666
          (if i' < length case_thms - 1 then resolve_tac ctxt @{thms conjI} 1 else all_tac)
b48830b670a1 prefer tactics with explicit context;
wenzelm
parents: 60580
diff changeset
   667
          THEN REPEAT_DETERM (resolve_tac ctxt @{thms allI} 1)
b48830b670a1 prefer tactics with explicit context;
wenzelm
parents: 60580
diff changeset
   668
          THEN resolve_tac ctxt @{thms impI} 1
60158
wenzelm
parents: 60156
diff changeset
   669
          THEN (if i' = i then
wenzelm
parents: 60156
diff changeset
   670
            (* continue recursively *)
60159
879918f4ee0f tuned -- avoid odd rebinding of "ctxt" and "context";
wenzelm
parents: 60158
diff changeset
   671
            Subgoal.FOCUS (fn {prems, context = ctxt', ...} =>
60158
wenzelm
parents: 60156
diff changeset
   672
              CONVERSION (Thm.eta_conversion then_conv right_hand_set_comprehension_conv (K
wenzelm
parents: 60156
diff changeset
   673
                  ((HOLogic.conj_conv
wenzelm
parents: 60156
diff changeset
   674
                    (HOLogic.eq_conv Conv.all_conv (rewr_conv' (List.last prems)) then_conv
wenzelm
parents: 60156
diff changeset
   675
                      (Conv.try_conv (Conv.rewrs_conv (map mk_meta_eq injects))))
wenzelm
parents: 60156
diff changeset
   676
                    Conv.all_conv)
wenzelm
parents: 60156
diff changeset
   677
                    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
   678
                    then_conv conjunct_assoc_conv)) ctxt'
879918f4ee0f tuned -- avoid odd rebinding of "ctxt" and "context";
wenzelm
parents: 60158
diff changeset
   679
                then_conv
879918f4ee0f tuned -- avoid odd rebinding of "ctxt" and "context";
wenzelm
parents: 60158
diff changeset
   680
                  (HOLogic.Trueprop_conv
879918f4ee0f tuned -- avoid odd rebinding of "ctxt" and "context";
wenzelm
parents: 60158
diff changeset
   681
                    (HOLogic.eq_conv Conv.all_conv (Collect_conv (fn (_, ctxt'') =>
879918f4ee0f tuned -- avoid odd rebinding of "ctxt" and "context";
wenzelm
parents: 60158
diff changeset
   682
                      Conv.repeat_conv
879918f4ee0f tuned -- avoid odd rebinding of "ctxt" and "context";
wenzelm
parents: 60158
diff changeset
   683
                        (all_but_last_exists_conv
879918f4ee0f tuned -- avoid odd rebinding of "ctxt" and "context";
wenzelm
parents: 60158
diff changeset
   684
                          (K (rewr_conv'
879918f4ee0f tuned -- avoid odd rebinding of "ctxt" and "context";
wenzelm
parents: 60158
diff changeset
   685
                            @{lemma "(\<exists>x. x = t \<and> P x) = P t" by simp})) ctxt'')) ctxt')))) 1) ctxt 1
60158
wenzelm
parents: 60156
diff changeset
   686
            THEN tac ctxt cont
wenzelm
parents: 60156
diff changeset
   687
          else
60159
879918f4ee0f tuned -- avoid odd rebinding of "ctxt" and "context";
wenzelm
parents: 60158
diff changeset
   688
            Subgoal.FOCUS (fn {prems, context = ctxt', ...} =>
60158
wenzelm
parents: 60156
diff changeset
   689
              CONVERSION
wenzelm
parents: 60156
diff changeset
   690
                (right_hand_set_comprehension_conv (K
wenzelm
parents: 60156
diff changeset
   691
                  (HOLogic.conj_conv
wenzelm
parents: 60156
diff changeset
   692
                    ((HOLogic.eq_conv Conv.all_conv
wenzelm
parents: 60156
diff changeset
   693
                      (rewr_conv' (List.last prems))) then_conv
wenzelm
parents: 60156
diff changeset
   694
                      (Conv.rewrs_conv (map (fn th => th RS @{thm Eq_FalseI}) distincts)))
wenzelm
parents: 60156
diff changeset
   695
                    Conv.all_conv then_conv
60159
879918f4ee0f tuned -- avoid odd rebinding of "ctxt" and "context";
wenzelm
parents: 60158
diff changeset
   696
                    (rewr_conv' @{lemma "(False \<and> P) = False" by simp}))) ctxt' then_conv
60158
wenzelm
parents: 60156
diff changeset
   697
                  HOLogic.Trueprop_conv
wenzelm
parents: 60156
diff changeset
   698
                    (HOLogic.eq_conv Conv.all_conv
60159
879918f4ee0f tuned -- avoid odd rebinding of "ctxt" and "context";
wenzelm
parents: 60158
diff changeset
   699
                      (Collect_conv (fn (_, ctxt'') =>
60158
wenzelm
parents: 60156
diff changeset
   700
                        Conv.repeat_conv
wenzelm
parents: 60156
diff changeset
   701
                          (Conv.bottom_conv
60159
879918f4ee0f tuned -- avoid odd rebinding of "ctxt" and "context";
wenzelm
parents: 60158
diff changeset
   702
                            (K (rewr_conv' @{lemma "(\<exists>x. P) = P" by simp})) ctxt'')) ctxt'))) 1) ctxt 1
60752
b48830b670a1 prefer tactics with explicit context;
wenzelm
parents: 60580
diff changeset
   703
            THEN resolve_tac ctxt [set_Nil_I] 1)) case_thms)
60158
wenzelm
parents: 60156
diff changeset
   704
      end
wenzelm
parents: 60156
diff changeset
   705
wenzelm
parents: 60156
diff changeset
   706
in
wenzelm
parents: 60156
diff changeset
   707
wenzelm
parents: 60156
diff changeset
   708
fun simproc ctxt redex =
wenzelm
parents: 60156
diff changeset
   709
  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
   710
    fun make_inner_eqs bound_vs Tis eqs t =
60158
wenzelm
parents: 60156
diff changeset
   711
      (case dest_case ctxt t of
54404
9f0f1152c875 port list comprehension simproc to 'Ctr_Sugar' abstraction
blanchet
parents: 54295
diff changeset
   712
        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
   713
          let
52131
366fa32ee2a3 tuned signature;
wenzelm
parents: 52122
diff changeset
   714
            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
   715
            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
   716
            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
   717
            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
   718
              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
   719
                (Const (constr_name, map snd vs ---> T), map Bound (((length vs) - 1) downto 0))
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   720
            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
   721
          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
   722
            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
   723
          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
   724
      | 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
   725
          (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
   726
            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
   727
          | NONE =>
60158
wenzelm
parents: 60156
diff changeset
   728
            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
   729
            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
   730
              let
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   731
                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
   732
                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
   733
                  (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
   734
                    SOME t' =>
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   735
                      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
   736
                        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
   737
                  | NONE =>
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   738
                      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
   739
                        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
   740
                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
   741
                  ((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
   742
                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
   743
                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
   744
                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
   745
                  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
   746
                    (rev bound_vs) (fold (curry HOLogic.mk_conj) eqs' pat_eq')
59582
0fbed69ff081 tuned signature -- prefer qualified names;
wenzelm
parents: 59516
diff changeset
   747
                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
   748
                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
   749
                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
   750
              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
   751
                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
   752
                  ((Goal.prove ctxt [] [] rewrite_rule_t
60159
879918f4ee0f tuned -- avoid odd rebinding of "ctxt" and "context";
wenzelm
parents: 60158
diff changeset
   753
                    (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
   754
              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
   755
  in
59582
0fbed69ff081 tuned signature -- prefer qualified names;
wenzelm
parents: 59516
diff changeset
   756
    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
   757
  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
   758
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   759
end
60158
wenzelm
parents: 60156
diff changeset
   760
wenzelm
parents: 60156
diff changeset
   761
end
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
   762
\<close>
41463
edbf0a86fb1c adding simproc to rewrite list comprehensions to set comprehensions; adopting proofs
bulwahn
parents: 41372
diff changeset
   763
60159
879918f4ee0f tuned -- avoid odd rebinding of "ctxt" and "context";
wenzelm
parents: 60158
diff changeset
   764
simproc_setup list_to_set_comprehension ("set xs") =
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
   765
  \<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
   766
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
   767
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
   768
hide_const (open) coset
35115
446c5063e4fd modernized translations;
wenzelm
parents: 35028
diff changeset
   769
49948
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
   770
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   771
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
   772
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
   773
lemma not_Cons_self [simp]:
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
   774
  "xs \<noteq> x # xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   775
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   776
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
   777
lemma not_Cons_self2 [simp]: "x # xs \<noteq> xs"
41697
19890332febc explicit is better than implicit;
wenzelm
parents: 41505
diff changeset
   778
by (rule not_Cons_self [symmetric])
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   779
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   780
lemma neq_Nil_conv: "(xs \<noteq> []) = (\<exists>y ys. xs = y # ys)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   781
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   782
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
   783
lemma tl_Nil: "tl xs = [] \<longleftrightarrow> xs = [] \<or> (\<exists>x. xs = [x])"
53689
705f0b728b1b added and tuned lemmas
nipkow
parents: 53412
diff changeset
   784
by (cases xs) auto
705f0b728b1b added and tuned lemmas
nipkow
parents: 53412
diff changeset
   785
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
   786
lemma Nil_tl: "[] = tl xs \<longleftrightarrow> xs = [] \<or> (\<exists>x. xs = [x])"
53689
705f0b728b1b added and tuned lemmas
nipkow
parents: 53412
diff changeset
   787
by (cases xs) auto
705f0b728b1b added and tuned lemmas
nipkow
parents: 53412
diff changeset
   788
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   789
lemma length_induct:
21061
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
   790
  "(\<And>xs. \<forall>ys. length ys < length xs \<longrightarrow> P ys \<Longrightarrow> P xs) \<Longrightarrow> P xs"
53689
705f0b728b1b added and tuned lemmas
nipkow
parents: 53412
diff changeset
   791
by (fact measure_induct)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   792
67168
bea1258d9a27 added lemmas
nipkow
parents: 67124
diff changeset
   793
lemma induct_list012:
bea1258d9a27 added lemmas
nipkow
parents: 67124
diff changeset
   794
  "\<lbrakk>P []; \<And>x. P [x]; \<And>x y zs. P (y # zs) \<Longrightarrow> P (x # y # zs)\<rbrakk> \<Longrightarrow> P xs"
bea1258d9a27 added lemmas
nipkow
parents: 67124
diff changeset
   795
by induction_schema (pat_completeness, lexicographic_order)
bea1258d9a27 added lemmas
nipkow
parents: 67124
diff changeset
   796
37289
881fa5012451 induction over non-empty lists
haftmann
parents: 37123
diff changeset
   797
lemma list_nonempty_induct [consumes 1, case_names single cons]:
67168
bea1258d9a27 added lemmas
nipkow
parents: 67124
diff changeset
   798
  "\<lbrakk> xs \<noteq> []; \<And>x. P [x]; \<And>x xs. xs \<noteq> [] \<Longrightarrow> P xs \<Longrightarrow> P (x # xs)\<rbrakk> \<Longrightarrow> P xs"
bea1258d9a27 added lemmas
nipkow
parents: 67124
diff changeset
   799
by(induction xs rule: induct_list012) auto
37289
881fa5012451 induction over non-empty lists
haftmann
parents: 37123
diff changeset
   800
45714
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
   801
lemma inj_split_Cons: "inj_on (\<lambda>(xs, n). n#xs) X"
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
   802
  by (auto intro!: inj_onI)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   803
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67171
diff changeset
   804
lemma inj_on_Cons1 [simp]: "inj_on ((#) x) A"
61630
608520e0e8e2 add various lemmas
Andreas Lochbihler
parents: 61605
diff changeset
   805
by(simp add: inj_on_def)
49948
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
   806
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   807
subsubsection \<open>\<^const>\<open>length\<close>\<close>
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
   808
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
   809
text \<open>
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
   810
  Needs to come before \<open>@\<close> because of theorem \<open>append_eq_append_conv\<close>.
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
   811
\<close>
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   812
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   813
lemma length_append [simp]: "length (xs @ ys) = length xs + length ys"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   814
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   815
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   816
lemma length_map [simp]: "length (map f xs) = length xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   817
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   818
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   819
lemma length_rev [simp]: "length (rev xs) = length xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   820
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   821
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   822
lemma length_tl [simp]: "length (tl xs) = length xs - 1"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   823
by (cases xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   824
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   825
lemma length_0_conv [iff]: "(length xs = 0) = (xs = [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   826
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   827
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   828
lemma length_greater_0_conv [iff]: "(0 < length xs) = (xs \<noteq> [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   829
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   830
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
   831
lemma length_pos_if_in_set: "x \<in> set xs \<Longrightarrow> length xs > 0"
23479
10adbdcdc65b new lemmas
nipkow
parents: 23388
diff changeset
   832
by auto
10adbdcdc65b new lemmas
nipkow
parents: 23388
diff changeset
   833
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   834
lemma length_Suc_conv:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   835
"(length xs = Suc n) = (\<exists>y ys. xs = y # ys \<and> length ys = n)"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   836
by (induct xs) auto
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   837
14025
d9b155757dc8 *** empty log message ***
nipkow
parents: 13913
diff changeset
   838
lemma Suc_length_conv:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
   839
  "(Suc n = length xs) = (\<exists>y ys. xs = y # ys \<and> length ys = n)"
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
   840
  by (induct xs; simp; blast)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
   841
69312
e0f68a507683 added and tuned lemmas
nipkow
parents: 69276
diff changeset
   842
lemma Suc_le_length_iff:
e0f68a507683 added and tuned lemmas
nipkow
parents: 69276
diff changeset
   843
  "(Suc n \<le> length xs) = (\<exists>x ys. xs = x # ys \<and> n \<le> length ys)"
e0f68a507683 added and tuned lemmas
nipkow
parents: 69276
diff changeset
   844
by (metis Suc_le_D[of n] Suc_le_mono[of n] Suc_length_conv[of _ xs])
e0f68a507683 added and tuned lemmas
nipkow
parents: 69276
diff changeset
   845
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
   846
lemma impossible_Cons: "length xs \<le> length ys ==> xs = x # ys = False"
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
   847
by (induct xs) auto
25221
5ded95dda5df append/member: more light-weight way to declare authentic syntax;
wenzelm
parents: 25215
diff changeset
   848
26442
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
   849
lemma list_induct2 [consumes 1, case_names Nil Cons]:
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
   850
  "length xs = length ys \<Longrightarrow> P [] [] \<Longrightarrow>
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
   851
   (\<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
   852
   \<Longrightarrow> P xs ys"
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
   853
proof (induct xs arbitrary: ys)
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
   854
  case (Cons x xs ys) then show ?case by (cases ys) simp_all
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
   855
qed simp
26442
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
   856
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
   857
lemma list_induct3 [consumes 2, case_names Nil Cons]:
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
   858
  "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
   859
   (\<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
   860
   \<Longrightarrow> P xs ys zs"
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
   861
proof (induct xs arbitrary: ys zs)
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
   862
  case Nil then show ?case by simp
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
   863
next
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
   864
  case (Cons x xs ys zs) then show ?case by (cases ys, simp_all)
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
   865
    (cases zs, simp_all)
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
   866
qed
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   867
36154
11c6106d7787 Respectfullness and preservation of list_rel
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 35828
diff changeset
   868
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
   869
  "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
   870
   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
   871
   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
   872
   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
   873
proof (induct xs arbitrary: ys zs ws)
11c6106d7787 Respectfullness and preservation of list_rel
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 35828
diff changeset
   874
  case Nil then show ?case by simp
11c6106d7787 Respectfullness and preservation of list_rel
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 35828
diff changeset
   875
next
11c6106d7787 Respectfullness and preservation of list_rel
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 35828
diff changeset
   876
  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
   877
qed
11c6106d7787 Respectfullness and preservation of list_rel
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 35828
diff changeset
   878
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
   879
lemma list_induct2':
22493
db930e490fe5 added another rule for simultaneous induction, and lemmas for zip
krauss
parents: 22422
diff changeset
   880
  "\<lbrakk> P [] [];
db930e490fe5 added another rule for simultaneous induction, and lemmas for zip
krauss
parents: 22422
diff changeset
   881
  \<And>x xs. P (x#xs) [];
db930e490fe5 added another rule for simultaneous induction, and lemmas for zip
krauss
parents: 22422
diff changeset
   882
  \<And>y ys. P [] (y#ys);
db930e490fe5 added another rule for simultaneous induction, and lemmas for zip
krauss
parents: 22422
diff changeset
   883
   \<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
   884
 \<Longrightarrow> P xs ys"
db930e490fe5 added another rule for simultaneous induction, and lemmas for zip
krauss
parents: 22422
diff changeset
   885
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
   886
55524
f41ef840f09d folded 'list_all2' with the relator generated by 'datatype_new'
blanchet
parents: 55473
diff changeset
   887
lemma list_all2_iff:
f41ef840f09d folded 'list_all2' with the relator generated by 'datatype_new'
blanchet
parents: 55473
diff changeset
   888
  "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
   889
by (induct xs ys rule: list_induct2') auto
f41ef840f09d folded 'list_all2' with the relator generated by 'datatype_new'
blanchet
parents: 55473
diff changeset
   890
22143
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   891
lemma neq_if_length_neq: "length xs \<noteq> length ys \<Longrightarrow> (xs = ys) == False"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   892
by (rule Eq_FalseI) auto
24037
0a41d2ebc0cd proper simproc_setup for "list_neq";
wenzelm
parents: 23983
diff changeset
   893
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
   894
simproc_setup list_neq ("(xs::'a list) = ys") = \<open>
22143
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   895
(*
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   896
Reduces xs=ys to False if xs and ys cannot be of the same length.
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   897
This is the case if the atomic sublists of one are a submultiset
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   898
of those of the other list and there are fewer Cons's in one than the other.
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   899
*)
24037
0a41d2ebc0cd proper simproc_setup for "list_neq";
wenzelm
parents: 23983
diff changeset
   900
0a41d2ebc0cd proper simproc_setup for "list_neq";
wenzelm
parents: 23983
diff changeset
   901
let
22143
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   902
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   903
fun len (Const(\<^const_name>\<open>Nil\<close>,_)) acc = acc
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   904
  | len (Const(\<^const_name>\<open>Cons\<close>,_) $ _ $ xs) (ts,n) = len xs (ts,n+1)
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   905
  | len (Const(\<^const_name>\<open>append\<close>,_) $ xs $ ys) acc = len xs (len ys acc)
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   906
  | len (Const(\<^const_name>\<open>rev\<close>,_) $ xs) acc = len xs acc
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   907
  | len (Const(\<^const_name>\<open>map\<close>,_) $ _ $ xs) acc = len xs acc
22143
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   908
  | len t (ts,n) = (t::ts,n);
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   909
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
   910
val ss = simpset_of \<^context>;
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51678
diff changeset
   911
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51678
diff changeset
   912
fun list_neq ctxt ct =
22143
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   913
  let
24037
0a41d2ebc0cd proper simproc_setup for "list_neq";
wenzelm
parents: 23983
diff changeset
   914
    val (Const(_,eqT) $ lhs $ rhs) = Thm.term_of ct;
22143
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   915
    val (ls,m) = len lhs ([],0) and (rs,n) = len rhs ([],0);
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   916
    fun prove_neq() =
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   917
      let
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   918
        val Type(_,listT::_) = eqT;
22994
02440636214f abstract size function in hologic.ML
haftmann
parents: 22940
diff changeset
   919
        val size = HOLogic.size_const listT;
22143
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   920
        val eq_len = HOLogic.mk_eq (size $ lhs, size $ rhs);
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   921
        val neq_len = HOLogic.mk_Trueprop (HOLogic.Not $ eq_len);
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51678
diff changeset
   922
        val thm = Goal.prove ctxt [] [] neq_len
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51678
diff changeset
   923
          (K (simp_tac (put_simpset ss ctxt) 1));
22633
haftmann
parents: 22551
diff changeset
   924
      in SOME (thm RS @{thm neq_if_length_neq}) end
22143
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   925
  in
69215
wenzelm
parents: 69203
diff changeset
   926
    if m < n andalso submultiset (op aconv) (ls,rs) orelse
wenzelm
parents: 69203
diff changeset
   927
       n < m andalso submultiset (op aconv) (rs,ls)
22143
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   928
    then prove_neq() else NONE
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   929
  end;
69215
wenzelm
parents: 69203
diff changeset
   930
in K list_neq end
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
   931
\<close>
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
   932
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
   933
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
   934
subsubsection \<open>\<open>@\<close> -- append\<close>
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   935
63662
5cdcd51a4dad lists form a monoid
haftmann
parents: 63561
diff changeset
   936
global_interpretation append: monoid append Nil
5cdcd51a4dad lists form a monoid
haftmann
parents: 63561
diff changeset
   937
proof
5cdcd51a4dad lists form a monoid
haftmann
parents: 63561
diff changeset
   938
  fix xs ys zs :: "'a list"
5cdcd51a4dad lists form a monoid
haftmann
parents: 63561
diff changeset
   939
  show "(xs @ ys) @ zs = xs @ (ys @ zs)"
5cdcd51a4dad lists form a monoid
haftmann
parents: 63561
diff changeset
   940
    by (induct xs) simp_all
5cdcd51a4dad lists form a monoid
haftmann
parents: 63561
diff changeset
   941
  show "xs @ [] = xs"
5cdcd51a4dad lists form a monoid
haftmann
parents: 63561
diff changeset
   942
    by (induct xs) simp_all
5cdcd51a4dad lists form a monoid
haftmann
parents: 63561
diff changeset
   943
qed simp
5cdcd51a4dad lists form a monoid
haftmann
parents: 63561
diff changeset
   944
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   945
lemma append_assoc [simp]: "(xs @ ys) @ zs = xs @ (ys @ zs)"
63662
5cdcd51a4dad lists form a monoid
haftmann
parents: 63561
diff changeset
   946
  by (fact append.assoc)
5cdcd51a4dad lists form a monoid
haftmann
parents: 63561
diff changeset
   947
5cdcd51a4dad lists form a monoid
haftmann
parents: 63561
diff changeset
   948
lemma append_Nil2: "xs @ [] = xs"
5cdcd51a4dad lists form a monoid
haftmann
parents: 63561
diff changeset
   949
  by (fact append.right_neutral)
3507
157be29ad5ba Improved length = size translation.
nipkow
parents: 3465
diff changeset
   950
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   951
lemma append_is_Nil_conv [iff]: "(xs @ ys = []) = (xs = [] \<and> ys = [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   952
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   953
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   954
lemma Nil_is_append_conv [iff]: "([] = xs @ ys) = (xs = [] \<and> ys = [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   955
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   956
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   957
lemma append_self_conv [iff]: "(xs @ ys = xs) = (ys = [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   958
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   959
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   960
lemma self_append_conv [iff]: "(xs = xs @ ys) = (ys = [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   961
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   962
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53954
diff changeset
   963
lemma append_eq_append_conv [simp]:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
   964
  "length xs = length ys \<or> length us = length vs
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
   965
  ==> (xs@us = ys@vs) = (xs=ys \<and> us=vs)"
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
   966
  by (induct xs arbitrary: ys; case_tac ys; force)
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   967
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
   968
lemma append_eq_append_conv2: "(xs @ ys = zs @ ts) =
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
   969
  (\<exists>us. xs = zs @ us \<and> us @ ys = ts \<or> xs @ us = zs \<and> ys = us @ ts)"
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
   970
proof (induct xs arbitrary: ys zs ts)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
   971
  case (Cons x xs)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
   972
  then show ?case
69850
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
   973
    by (cases zs) auto
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
   974
qed fastforce
14495
e2a1c31cf6d3 Added append_eq_append_conv2
nipkow
parents: 14402
diff changeset
   975
34910
b23bd3ee4813 same_append_eq / append_same_eq are now used for simplifying induction rules.
berghofe
parents: 34064
diff changeset
   976
lemma same_append_eq [iff, induct_simp]: "(xs @ ys = xs @ zs) = (ys = zs)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   977
by simp
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   978
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   979
lemma append1_eq_conv [iff]: "(xs @ [x] = ys @ [y]) = (xs = ys \<and> x = y)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   980
by simp
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   981
34910
b23bd3ee4813 same_append_eq / append_same_eq are now used for simplifying induction rules.
berghofe
parents: 34064
diff changeset
   982
lemma append_same_eq [iff, induct_simp]: "(ys @ xs = zs @ xs) = (ys = zs)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   983
by simp
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   984
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   985
lemma append_self_conv2 [iff]: "(xs @ ys = ys) = (xs = [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   986
using append_same_eq [of _ _ "[]"] by auto
3507
157be29ad5ba Improved length = size translation.
nipkow
parents: 3465
diff changeset
   987
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   988
lemma self_append_conv2 [iff]: "(ys = xs @ ys) = (xs = [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   989
using append_same_eq [of "[]"] by auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   990
63662
5cdcd51a4dad lists form a monoid
haftmann
parents: 63561
diff changeset
   991
lemma hd_Cons_tl: "xs \<noteq> [] ==> hd xs # tl xs = xs"
5cdcd51a4dad lists form a monoid
haftmann
parents: 63561
diff changeset
   992
  by (fact list.collapse)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   993
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   994
lemma hd_append: "hd (xs @ ys) = (if xs = [] then hd ys else hd xs)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   995
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   996
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   997
lemma hd_append2 [simp]: "xs \<noteq> [] ==> hd (xs @ ys) = hd xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   998
by (simp add: hd_append split: list.split)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   999
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  1000
lemma tl_append: "tl (xs @ ys) = (case xs of [] \<Rightarrow> tl ys | z#zs \<Rightarrow> zs @ ys)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1001
by (simp split: list.split)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1002
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1003
lemma tl_append2 [simp]: "xs \<noteq> [] ==> tl (xs @ ys) = tl xs @ ys"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1004
by (simp add: tl_append split: list.split)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1005
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1006
14300
bf8b8c9425c3 *** empty log message ***
nipkow
parents: 14247
diff changeset
  1007
lemma Cons_eq_append_conv: "x#xs = ys@zs =
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  1008
 (ys = [] \<and> x#xs = zs \<or> (\<exists>ys'. x#ys' = ys \<and> xs = ys'@zs))"
14300
bf8b8c9425c3 *** empty log message ***
nipkow
parents: 14247
diff changeset
  1009
by(cases ys) auto
bf8b8c9425c3 *** empty log message ***
nipkow
parents: 14247
diff changeset
  1010
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1011
lemma append_eq_Cons_conv: "(ys@zs = x#xs) =
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  1012
 (ys = [] \<and> zs = x#xs \<or> (\<exists>ys'. ys = x#ys' \<and> ys'@zs = xs))"
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1013
by(cases ys) auto
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1014
63173
3413b1cf30cd added subtheory of longest common prefix
nipkow
parents: 63145
diff changeset
  1015
lemma longest_common_prefix:
3413b1cf30cd added subtheory of longest common prefix
nipkow
parents: 63145
diff changeset
  1016
  "\<exists>ps xs' ys'. xs = ps @ xs' \<and> ys = ps @ ys'
3413b1cf30cd added subtheory of longest common prefix
nipkow
parents: 63145
diff changeset
  1017
       \<and> (xs' = [] \<or> ys' = [] \<or> hd xs' \<noteq> hd ys')"
3413b1cf30cd added subtheory of longest common prefix
nipkow
parents: 63145
diff changeset
  1018
by (induct xs ys rule: list_induct2')
3413b1cf30cd added subtheory of longest common prefix
nipkow
parents: 63145
diff changeset
  1019
   (blast, blast, blast,
3413b1cf30cd added subtheory of longest common prefix
nipkow
parents: 63145
diff changeset
  1020
    metis (no_types, hide_lams) append_Cons append_Nil list.sel(1))
14300
bf8b8c9425c3 *** empty log message ***
nipkow
parents: 14247
diff changeset
  1021
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
  1022
text \<open>Trivial rules for solving \<open>@\<close>-equations automatically.\<close>
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1023
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1024
lemma eq_Nil_appendI: "xs = ys ==> xs = [] @ ys"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1025
by simp
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1026
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1027
lemma Cons_eq_appendI:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1028
"[| x # xs1 = ys; xs = xs1 @ zs |] ==> x # xs = ys @ zs"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1029
by (drule sym) simp
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1030
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1031
lemma append_eq_appendI:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1032
"[| xs @ xs1 = zs; ys = xs1 @ us |] ==> xs @ ys = zs @ us"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1033
by (drule sym) simp
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1034
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1035
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  1036
text \<open>
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1037
Simplification procedure for all list equalities.
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
  1038
Currently only tries to rearrange \<open>@\<close> to see if
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1039
- both lists end in a singleton list,
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1040
- or both lists end in the same list.
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  1041
\<close>
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  1042
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  1043
simproc_setup list_eq ("(xs::'a list) = ys")  = \<open>
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13366
diff changeset
  1044
  let
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  1045
    fun last (cons as Const (\<^const_name>\<open>Cons\<close>, _) $ _ $ xs) =
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  1046
          (case xs of Const (\<^const_name>\<open>Nil\<close>, _) => cons | _ => last xs)
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  1047
      | last (Const(\<^const_name>\<open>append\<close>,_) $ _ $ ys) = last ys
43594
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1048
      | last t = t;
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  1049
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  1050
    fun list1 (Const(\<^const_name>\<open>Cons\<close>,_) $ _ $ Const(\<^const_name>\<open>Nil\<close>,_)) = true
43594
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1051
      | list1 _ = false;
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  1052
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  1053
    fun butlast ((cons as Const(\<^const_name>\<open>Cons\<close>,_) $ x) $ xs) =
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  1054
          (case xs of Const (\<^const_name>\<open>Nil\<close>, _) => xs | _ => cons $ butlast xs)
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  1055
      | butlast ((app as Const (\<^const_name>\<open>append\<close>, _) $ xs) $ ys) = app $ butlast ys
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  1056
      | butlast xs = Const(\<^const_name>\<open>Nil\<close>, fastype_of xs);
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  1057
43594
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1058
    val rearr_ss =
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  1059
      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
  1060
        addsimps [@{thm append_assoc}, @{thm append_Nil}, @{thm append_Cons}]);
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  1061
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51678
diff changeset
  1062
    fun list_eq ctxt (F as (eq as Const(_,eqT)) $ lhs $ rhs) =
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13366
diff changeset
  1063
      let
43594
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1064
        val lastl = last lhs and lastr = last rhs;
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1065
        fun rearr conv =
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1066
          let
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1067
            val lhs1 = butlast lhs and rhs1 = butlast rhs;
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1068
            val Type(_,listT::_) = eqT
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1069
            val appT = [listT,listT] ---> listT
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  1070
            val app = Const(\<^const_name>\<open>append\<close>,appT)
43594
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1071
            val F2 = eq $ (app$lhs1$lastl) $ (app$rhs1$lastr)
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1072
            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
  1073
            val thm = Goal.prove ctxt [] [] eq
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51678
diff changeset
  1074
              (K (simp_tac (put_simpset rearr_ss ctxt) 1));
43594
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1075
          in SOME ((conv RS (thm RS trans)) RS eq_reflection) end;
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1076
      in
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1077
        if list1 lastl andalso list1 lastr then rearr @{thm append1_eq_conv}
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1078
        else if lastl aconv lastr then rearr @{thm append_same_eq}
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1079
        else NONE
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1080
      end;
69215
wenzelm
parents: 69203
diff changeset
  1081
  in fn _ => fn ctxt => fn ct => list_eq ctxt (Thm.term_of ct) end
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  1082
\<close>
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  1083
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  1084
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  1085
subsubsection \<open>\<^const>\<open>map\<close>\<close>
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1086
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  1087
lemma hd_map: "xs \<noteq> [] \<Longrightarrow> hd (map f xs) = f (hd xs)"
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  1088
by (cases xs) simp_all
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  1089
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  1090
lemma map_tl: "map f (tl xs) = tl (map f xs)"
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  1091
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
  1092
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  1093
lemma map_ext: "(\<And>x. x \<in> set xs \<longrightarrow> f x = g x) ==> map f xs = map g xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1094
by (induct xs) simp_all
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1095
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1096
lemma map_ident [simp]: "map (\<lambda>x. x) = (\<lambda>xs. xs)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1097
by (rule ext, induct_tac xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1098
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1099
lemma map_append [simp]: "map f (xs @ ys) = map f xs @ map f ys"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1100
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1101
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
  1102
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
  1103
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
  1104
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  1105
lemma map_comp_map[simp]: "((map f) \<circ> (map g)) = map(f \<circ> g)"
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  1106
by (rule ext) simp
35208
2b9bce05e84b added lemma
nipkow
parents: 35195
diff changeset
  1107
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1108
lemma rev_map: "rev (map f xs) = map f (rev xs)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1109
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1110
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  1111
lemma map_eq_conv[simp]: "(map f xs = map g xs) = (\<forall>x \<in> set xs. f x = g x)"
13737
e564c3d2d174 added a few lemmas
nipkow
parents: 13601
diff changeset
  1112
by (induct xs) auto
e564c3d2d174 added a few lemmas
nipkow
parents: 13601
diff changeset
  1113
44013
5cfc1c36ae97 moved recdef package to HOL/Library/Old_Recdef.thy
krauss
parents: 43594
diff changeset
  1114
lemma map_cong [fundef_cong]:
40122
1d8ad2ff3e01 dropped (almost) redundant distinct.induct rule; distinct_simps again named distinct.simps
haftmann
parents: 40077
diff changeset
  1115
  "xs = ys \<Longrightarrow> (\<And>x. x \<in> set ys \<Longrightarrow> f x = g x) \<Longrightarrow> map f xs = map g ys"
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  1116
by simp
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1117
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1118
lemma map_is_Nil_conv [iff]: "(map f xs = []) = (xs = [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1119
by (cases xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1120
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1121
lemma Nil_is_map_conv [iff]: "([] = map f xs) = (xs = [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1122
by (cases xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1123
18447
da548623916a removed or modified some instances of [iff]
paulson
parents: 18423
diff changeset
  1124
lemma map_eq_Cons_conv:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  1125
  "(map f xs = y#ys) = (\<exists>z zs. xs = z#zs \<and> f z = y \<and> map f zs = ys)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1126
by (cases xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1127
18447
da548623916a removed or modified some instances of [iff]
paulson
parents: 18423
diff changeset
  1128
lemma Cons_eq_map_conv:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  1129
  "(x#xs = map f ys) = (\<exists>z zs. ys = z#zs \<and> x = f z \<and> xs = map f zs)"
14025
d9b155757dc8 *** empty log message ***
nipkow
parents: 13913
diff changeset
  1130
by (cases ys) auto
d9b155757dc8 *** empty log message ***
nipkow
parents: 13913
diff changeset
  1131
18447
da548623916a removed or modified some instances of [iff]
paulson
parents: 18423
diff changeset
  1132
lemmas map_eq_Cons_D = map_eq_Cons_conv [THEN iffD1]
da548623916a removed or modified some instances of [iff]
paulson
parents: 18423
diff changeset
  1133
lemmas Cons_eq_map_D = Cons_eq_map_conv [THEN iffD1]
da548623916a removed or modified some instances of [iff]
paulson
parents: 18423
diff changeset
  1134
declare map_eq_Cons_D [dest!]  Cons_eq_map_D [dest!]
da548623916a removed or modified some instances of [iff]
paulson
parents: 18423
diff changeset
  1135
14111
993471c762b8 Some new thm (ex_map_conv?)
nipkow
parents: 14099
diff changeset
  1136
lemma ex_map_conv:
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  1137
  "(\<exists>xs. ys = map f xs) = (\<forall>y \<in> set ys. \<exists>x. y = f x)"
18447
da548623916a removed or modified some instances of [iff]
paulson
parents: 18423
diff changeset
  1138
by(induct ys, auto simp add: Cons_eq_map_conv)
14111
993471c762b8 Some new thm (ex_map_conv?)
nipkow
parents: 14099
diff changeset
  1139
15110
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1140
lemma map_eq_imp_length_eq:
35510
64d2d54cbf03 Slightly generalised a theorem
paulson
parents: 35296
diff changeset
  1141
  assumes "map f xs = map g ys"
26734
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  1142
  shows "length xs = length ys"
53374
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53017
diff changeset
  1143
  using assms
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53017
diff changeset
  1144
proof (induct ys arbitrary: xs)
26734
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  1145
  case Nil then show ?case by simp
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  1146
next
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  1147
  case (Cons y ys) then obtain z zs where xs: "xs = z # zs" by auto
35510
64d2d54cbf03 Slightly generalised a theorem
paulson
parents: 35296
diff changeset
  1148
  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
  1149
  with Cons have "length zs = length ys" by blast
26734
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  1150
  with xs show ?case by simp
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  1151
qed
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  1152
15110
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1153
lemma map_inj_on:
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1154
  assumes map: "map f xs = map f ys" and inj: "inj_on f (set xs Un set ys)"
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1155
  shows "xs = ys"
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1156
  using map_eq_imp_length_eq [OF map] assms
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1157
proof (induct rule: list_induct2)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1158
  case (Cons x xs y ys)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1159
  then show ?case
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1160
    by (auto intro: sym)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1161
qed auto
15110
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1162
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1163
lemma inj_on_map_eq_map:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  1164
  "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
  1165
by(blast dest:map_inj_on)
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1166
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1167
lemma map_injective:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  1168
  "map f xs = map f ys ==> inj f ==> xs = ys"
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1169
by (induct ys arbitrary: xs) (auto dest!:injD)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1170
14339
ec575b7bde7a *** empty log message ***
nipkow
parents: 14338
diff changeset
  1171
lemma inj_map_eq_map[simp]: "inj f \<Longrightarrow> (map f xs = map f ys) = (xs = ys)"
ec575b7bde7a *** empty log message ***
nipkow
parents: 14338
diff changeset
  1172
by(blast dest:map_injective)
ec575b7bde7a *** empty log message ***
nipkow
parents: 14338
diff changeset
  1173
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1174
lemma inj_mapI: "inj f ==> inj (map f)"
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17501
diff changeset
  1175
by (iprover dest: map_injective injD intro: inj_onI)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1176
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1177
lemma inj_mapD: "inj (map f) ==> inj f"
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1178
  by (metis (no_types, hide_lams) injI list.inject list.simps(9) the_inv_f_f)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1179
14339
ec575b7bde7a *** empty log message ***
nipkow
parents: 14338
diff changeset
  1180
lemma inj_map[iff]: "inj (map f) = inj f"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1181
by (blast dest: inj_mapD intro: inj_mapI)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1182
15303
eedbb8d22ca2 added lemmas
nipkow
parents: 15302
diff changeset
  1183
lemma inj_on_mapI: "inj_on f (\<Union>(set ` A)) \<Longrightarrow> inj_on (map f) A"
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1184
  by (blast intro:inj_onI dest:inj_onD map_inj_on)
15303
eedbb8d22ca2 added lemmas
nipkow
parents: 15302
diff changeset
  1185
14343
6bc647f472b9 map_idI
kleing
parents: 14339
diff changeset
  1186
lemma map_idI: "(\<And>x. x \<in> set xs \<Longrightarrow> f x = x) \<Longrightarrow> map f xs = xs"
6bc647f472b9 map_idI
kleing
parents: 14339
diff changeset
  1187
by (induct xs, auto)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1188
14402
4201e1916482 moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents: 14395
diff changeset
  1189
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
  1190
by (induct xs) auto
4201e1916482 moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents: 14395
diff changeset
  1191
15110
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1192
lemma map_fst_zip[simp]:
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1193
  "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
  1194
by (induct rule:list_induct2, simp_all)
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1195
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1196
lemma map_snd_zip[simp]:
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1197
  "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
  1198
by (induct rule:list_induct2, simp_all)
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1199
68215
a477f78a9365 added lemmas
nipkow
parents: 68191
diff changeset
  1200
lemma map_fst_zip_take:
a477f78a9365 added lemmas
nipkow
parents: 68191
diff changeset
  1201
  "map fst (zip xs ys) = take (min (length xs) (length ys)) xs"
a477f78a9365 added lemmas
nipkow
parents: 68191
diff changeset
  1202
by (induct xs ys rule: list_induct2') simp_all
a477f78a9365 added lemmas
nipkow
parents: 68191
diff changeset
  1203
a477f78a9365 added lemmas
nipkow
parents: 68191
diff changeset
  1204
lemma map_snd_zip_take:
a477f78a9365 added lemmas
nipkow
parents: 68191
diff changeset
  1205
  "map snd (zip xs ys) = take (min (length xs) (length ys)) ys"
a477f78a9365 added lemmas
nipkow
parents: 68191
diff changeset
  1206
by (induct xs ys rule: list_induct2') simp_all
a477f78a9365 added lemmas
nipkow
parents: 68191
diff changeset
  1207
66853
24e4fc6b8151 added lemmas, tuned spaces
nipkow
parents: 66847
diff changeset
  1208
lemma map2_map_map: "map2 h (map f xs) (map g xs) = map (\<lambda>x. h (f x) (g x)) xs"
24e4fc6b8151 added lemmas, tuned spaces
nipkow
parents: 66847
diff changeset
  1209
by (induction xs) (auto)
24e4fc6b8151 added lemmas, tuned spaces
nipkow
parents: 66847
diff changeset
  1210
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
  1211
functor map: map
47122
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  1212
by (simp_all add: id_def)
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  1213
49948
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  1214
declare map.id [simp]
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  1215
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  1216
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  1217
subsubsection \<open>\<^const>\<open>rev\<close>\<close>
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1218
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1219
lemma rev_append [simp]: "rev (xs @ ys) = rev ys @ rev xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1220
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1221
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1222
lemma rev_rev_ident [simp]: "rev (rev xs) = xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1223
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1224
15870
4320bce5873f more on rev
kleing
parents: 15868
diff changeset
  1225
lemma rev_swap: "(rev xs = ys) = (xs = rev ys)"
4320bce5873f more on rev
kleing
parents: 15868
diff changeset
  1226
by auto
4320bce5873f more on rev
kleing
parents: 15868
diff changeset
  1227
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1228
lemma rev_is_Nil_conv [iff]: "(rev xs = []) = (xs = [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1229
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1230
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1231
lemma Nil_is_rev_conv [iff]: "([] = rev xs) = (xs = [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1232
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1233
15870
4320bce5873f more on rev
kleing
parents: 15868
diff changeset
  1234
lemma rev_singleton_conv [simp]: "(rev xs = [x]) = (xs = [x])"
4320bce5873f more on rev
kleing
parents: 15868
diff changeset
  1235
by (cases xs) auto
4320bce5873f more on rev
kleing
parents: 15868
diff changeset
  1236
4320bce5873f more on rev
kleing
parents: 15868
diff changeset
  1237
lemma singleton_rev_conv [simp]: "([x] = rev xs) = (xs = [x])"
4320bce5873f more on rev
kleing
parents: 15868
diff changeset
  1238
by (cases xs) auto
4320bce5873f more on rev
kleing
parents: 15868
diff changeset
  1239
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53954
diff changeset
  1240
lemma rev_is_rev_conv [iff]: "(rev xs = rev ys) = (xs = ys)"
69850
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  1241
proof (induct xs arbitrary: ys)
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  1242
  case Nil
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  1243
  then show ?case by force
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  1244
next
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  1245
  case Cons
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  1246
  then show ?case by (cases ys) auto
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  1247
qed
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1248
15439
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15426
diff changeset
  1249
lemma inj_on_rev[iff]: "inj_on rev A"
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15426
diff changeset
  1250
by(simp add:inj_on_def)
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15426
diff changeset
  1251
13366
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
  1252
lemma rev_induct [case_names Nil snoc]:
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
  1253
  "[| P []; !!x xs. P xs ==> P (xs @ [x]) |] ==> P xs"
68723
60611540bcff recovered HOL-Proofs-Lambda from 8aedca31957d: avoid problems with program extraction according to d136af442665;
wenzelm
parents: 68719
diff changeset
  1254
apply(simplesubst rev_rev_ident[symmetric])
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1255
apply(rule_tac list = "rev xs" in list.induct, simp_all)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1256
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1257
13366
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
  1258
lemma rev_exhaust [case_names Nil snoc]:
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
  1259
  "(xs = [] ==> P) ==>(!!ys y. xs = ys @ [y] ==> P) ==> P"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1260
by (induct xs rule: rev_induct) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1261
13366
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
  1262
lemmas rev_cases = rev_exhaust
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
  1263
57577
e848a17d9dee reverse induction over nonempty lists
haftmann
parents: 57537
diff changeset
  1264
lemma rev_nonempty_induct [consumes 1, case_names single snoc]:
e848a17d9dee reverse induction over nonempty lists
haftmann
parents: 57537
diff changeset
  1265
  assumes "xs \<noteq> []"
e848a17d9dee reverse induction over nonempty lists
haftmann
parents: 57537
diff changeset
  1266
  and single: "\<And>x. P [x]"
e848a17d9dee reverse induction over nonempty lists
haftmann
parents: 57537
diff changeset
  1267
  and snoc': "\<And>x xs. xs \<noteq> [] \<Longrightarrow> P xs \<Longrightarrow> P (xs@[x])"
e848a17d9dee reverse induction over nonempty lists
haftmann
parents: 57537
diff changeset
  1268
  shows "P xs"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  1269
using \<open>xs \<noteq> []\<close> proof (induct xs rule: rev_induct)
57577
e848a17d9dee reverse induction over nonempty lists
haftmann
parents: 57537
diff changeset
  1270
  case (snoc x xs) then show ?case
e848a17d9dee reverse induction over nonempty lists
haftmann
parents: 57537
diff changeset
  1271
  proof (cases xs)
e848a17d9dee reverse induction over nonempty lists
haftmann
parents: 57537
diff changeset
  1272
    case Nil thus ?thesis by (simp add: single)
e848a17d9dee reverse induction over nonempty lists
haftmann
parents: 57537
diff changeset
  1273
  next
e848a17d9dee reverse induction over nonempty lists
haftmann
parents: 57537
diff changeset
  1274
    case Cons with snoc show ?thesis by (fastforce intro!: snoc')
e848a17d9dee reverse induction over nonempty lists
haftmann
parents: 57537
diff changeset
  1275
  qed
e848a17d9dee reverse induction over nonempty lists
haftmann
parents: 57537
diff changeset
  1276
qed simp
e848a17d9dee reverse induction over nonempty lists
haftmann
parents: 57537
diff changeset
  1277
18423
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  1278
lemma rev_eq_Cons_iff[iff]: "(rev xs = y#ys) = (xs = rev ys @ [y])"
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  1279
by(rule rev_cases[of xs]) auto
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  1280
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1281
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  1282
subsubsection \<open>\<^const>\<open>set\<close>\<close>
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1283
67443
3abf6a722518 standardized towards new-style formal comments: isabelle update_comments;
wenzelm
parents: 67399
diff changeset
  1284
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
  1285
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1286
lemma finite_set [iff]: "finite (set xs)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1287
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1288
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1289
lemma set_append [simp]: "set (xs @ ys) = (set xs \<union> set ys)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1290
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1291
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  1292
lemma hd_in_set[simp]: "xs \<noteq> [] \<Longrightarrow> hd xs \<in> set xs"
17830
695a2365d32f added hd lemma
nipkow
parents: 17765
diff changeset
  1293
by(cases xs) auto
14099
55d244f3c86d added fold_red, o2l, postfix, some thms
oheimb
parents: 14050
diff changeset
  1294
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1295
lemma set_subset_Cons: "set xs \<subseteq> set (x # xs)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1296
by auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1297
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  1298
lemma set_ConsD: "y \<in> set (x # xs) \<Longrightarrow> y=x \<or> y \<in> set xs"
14099
55d244f3c86d added fold_red, o2l, postfix, some thms
oheimb
parents: 14050
diff changeset
  1299
by auto
55d244f3c86d added fold_red, o2l, postfix, some thms
oheimb
parents: 14050
diff changeset
  1300
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1301
lemma set_empty [iff]: "(set xs = {}) = (xs = [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1302
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1303
15245
5a21d9a8f14b Added a few lemmas
nipkow
parents: 15236
diff changeset
  1304
lemma set_empty2[iff]: "({} = set xs) = (xs = [])"
5a21d9a8f14b Added a few lemmas
nipkow
parents: 15236
diff changeset
  1305
by(induct xs) auto
5a21d9a8f14b Added a few lemmas
nipkow
parents: 15236
diff changeset
  1306
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1307
lemma set_rev [simp]: "set (rev xs) = set xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1308
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1309
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1310
lemma set_map [simp]: "set (map f xs) = f`(set xs)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1311
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1312
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  1313
lemma set_filter [simp]: "set (filter P xs) = {x. x \<in> set xs \<and> P x}"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1314
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1315
32417
e87d9c78910c tuned code generation for lists
nipkow
parents: 32415
diff changeset
  1316
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
  1317
by (induct j) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1318
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1319
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  1320
lemma split_list: "x \<in> set xs \<Longrightarrow> \<exists>ys zs. xs = ys @ x # zs"
18049
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  1321
proof (induct xs)
26073
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1322
  case Nil thus ?case by simp
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1323
next
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1324
  case Cons thus ?case by (auto intro: Cons_eq_appendI)
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1325
qed
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1326
26734
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  1327
lemma in_set_conv_decomp: "x \<in> set xs \<longleftrightarrow> (\<exists>ys zs. xs = ys @ x # zs)"
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  1328
  by (auto elim: split_list)
26073
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1329
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  1330
lemma split_list_first: "x \<in> set xs \<Longrightarrow> \<exists>ys zs. xs = ys @ x # zs \<and> x \<notin> set ys"
26073
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1331
proof (induct xs)
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1332
  case Nil thus ?case by simp
18049
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  1333
next
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  1334
  case (Cons a xs)
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  1335
  show ?case
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  1336
  proof cases
44890
22f665a2e91c new fastforce replacing fastsimp - less confusing name
nipkow
parents: 44635
diff changeset
  1337
    assume "x = a" thus ?case using Cons by fastforce
18049
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  1338
  next
44890
22f665a2e91c new fastforce replacing fastsimp - less confusing name
nipkow
parents: 44635
diff changeset
  1339
    assume "x \<noteq> a" thus ?case using Cons by(fastforce intro!: Cons_eq_appendI)
26073
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1340
  qed
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1341
qed
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1342
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1343
lemma in_set_conv_decomp_first:
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  1344
  "(x \<in> set xs) = (\<exists>ys zs. xs = ys @ x # zs \<and> x \<notin> set ys)"
26734
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  1345
  by (auto dest!: split_list_first)
26073
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1346
40122
1d8ad2ff3e01 dropped (almost) redundant distinct.induct rule; distinct_simps again named distinct.simps
haftmann
parents: 40077
diff changeset
  1347
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
  1348
proof (induct xs rule: rev_induct)
26073
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1349
  case Nil thus ?case by simp
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1350
next
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1351
  case (snoc a xs)
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1352
  show ?case
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1353
  proof cases
56085
3d11892ea537 killed a few 'metis' calls
blanchet
parents: 55945
diff changeset
  1354
    assume "x = a" thus ?case using snoc by (auto intro!: exI)
26073
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1355
  next
44890
22f665a2e91c new fastforce replacing fastsimp - less confusing name
nipkow
parents: 44635
diff changeset
  1356
    assume "x \<noteq> a" thus ?case using snoc by fastforce
18049
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  1357
  qed
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  1358
qed
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  1359
26073
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1360
lemma in_set_conv_decomp_last:
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  1361
  "(x \<in> set xs) = (\<exists>ys zs. xs = ys @ x # zs \<and> x \<notin> set zs)"
26734
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  1362
  by (auto dest!: split_list_last)
26073
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1363
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  1364
lemma split_list_prop: "\<exists>x \<in> set xs. P x \<Longrightarrow> \<exists>ys x zs. xs = ys @ x # zs \<and> P x"
26073
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1365
proof (induct xs)
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1366
  case Nil thus ?case by simp
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1367
next
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1368
  case Cons thus ?case
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1369
    by(simp add:Bex_def)(metis append_Cons append.simps(1))
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1370
qed
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1371
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1372
lemma split_list_propE:
26734
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  1373
  assumes "\<exists>x \<in> set xs. P x"
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  1374
  obtains ys x zs where "xs = ys @ x # zs" and "P x"
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  1375
using split_list_prop [OF assms] by blast
26073
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1376
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1377
lemma split_list_first_prop:
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1378
  "\<exists>x \<in> set xs. P x \<Longrightarrow>
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1379
   \<exists>ys x zs. xs = ys@x#zs \<and> P x \<and> (\<forall>y \<in> set ys. \<not> P y)"
26734
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  1380
proof (induct xs)
26073
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1381
  case Nil thus ?case by simp
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1382
next
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1383
  case (Cons x xs)
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1384
  show ?case
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1385
  proof cases
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1386
    assume "P x"
56085
3d11892ea537 killed a few 'metis' calls
blanchet
parents: 55945
diff changeset
  1387
    hence "x # xs = [] @ x # xs \<and> P x \<and> (\<forall>y\<in>set []. \<not> P y)" by simp
3d11892ea537 killed a few 'metis' calls
blanchet
parents: 55945
diff changeset
  1388
    thus ?thesis by fast
26073
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1389
  next
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1390
    assume "\<not> P x"
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1391
    hence "\<exists>x\<in>set xs. P x" using Cons(2) by simp
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  1392
    thus ?thesis using \<open>\<not> P x\<close> Cons(1) by (metis append_Cons set_ConsD)
26073
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1393
  qed
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1394
qed
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1395
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1396
lemma split_list_first_propE:
26734
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  1397
  assumes "\<exists>x \<in> set xs. P x"
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  1398
  obtains ys x zs where "xs = ys @ x # zs" and "P x" and "\<forall>y \<in> set ys. \<not> P y"
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  1399
using split_list_first_prop [OF assms] by blast
26073
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1400
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1401
lemma split_list_first_prop_iff:
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1402
  "(\<exists>x \<in> set xs. P x) \<longleftrightarrow>
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1403
   (\<exists>ys x zs. xs = ys@x#zs \<and> P x \<and> (\<forall>y \<in> set ys. \<not> P y))"
26734
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  1404
by (rule, erule split_list_first_prop) auto
26073
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1405
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1406
lemma split_list_last_prop:
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1407
  "\<exists>x \<in> set xs. P x \<Longrightarrow>
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1408
   \<exists>ys x zs. xs = ys@x#zs \<and> P x \<and> (\<forall>z \<in> set zs. \<not> P z)"
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1409
proof(induct xs rule:rev_induct)
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1410
  case Nil thus ?case by simp
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1411
next
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1412
  case (snoc x xs)
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1413
  show ?case
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1414
  proof cases
56085
3d11892ea537 killed a few 'metis' calls
blanchet
parents: 55945
diff changeset
  1415
    assume "P x" thus ?thesis by (auto intro!: exI)
26073
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1416
  next
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1417
    assume "\<not> P x"
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1418
    hence "\<exists>x\<in>set xs. P x" using snoc(2) by simp
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  1419
    thus ?thesis using \<open>\<not> P x\<close> snoc(1) by fastforce
26073
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1420
  qed
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1421
qed
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1422
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1423
lemma split_list_last_propE:
26734
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  1424
  assumes "\<exists>x \<in> set xs. P x"
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  1425
  obtains ys x zs where "xs = ys @ x # zs" and "P x" and "\<forall>z \<in> set zs. \<not> P z"
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  1426
using split_list_last_prop [OF assms] by blast
26073
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1427
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1428
lemma split_list_last_prop_iff:
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1429
  "(\<exists>x \<in> set xs. P x) \<longleftrightarrow>
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1430
   (\<exists>ys x zs. xs = ys@x#zs \<and> P x \<and> (\<forall>z \<in> set zs. \<not> P z))"
56085
3d11892ea537 killed a few 'metis' calls
blanchet
parents: 55945
diff changeset
  1431
  by rule (erule split_list_last_prop, auto)
3d11892ea537 killed a few 'metis' calls
blanchet
parents: 55945
diff changeset
  1432
26073
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1433
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  1434
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
  1435
  by (erule finite_induct) (auto simp add: list.set(2)[symmetric] simp del: list.set(2))
13508
890d736b93a5 Frederic Blanqui's new "guard" examples
paulson
parents: 13480
diff changeset
  1436
14388
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  1437
lemma card_length: "card (set xs) \<le> length xs"
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  1438
by (induct xs) (auto simp add: card_insert_if)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1439
26442
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1440
lemma set_minus_filter_out:
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1441
  "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
  1442
  by (induct xs) auto
15168
33a08cfc3ae5 new functions for sets of lists
paulson
parents: 15140
diff changeset
  1443
66257
3bc892346a6b revised lemma
nipkow
parents: 66255
diff changeset
  1444
lemma append_Cons_eq_iff:
3bc892346a6b revised lemma
nipkow
parents: 66255
diff changeset
  1445
  "\<lbrakk> x \<notin> set xs; x \<notin> set ys \<rbrakk> \<Longrightarrow>
3bc892346a6b revised lemma
nipkow
parents: 66255
diff changeset
  1446
   xs @ x # ys = xs' @ x # ys' \<longleftrightarrow> (xs = xs' \<and> ys = ys')"
3bc892346a6b revised lemma
nipkow
parents: 66255
diff changeset
  1447
by(auto simp: append_eq_Cons_conv Cons_eq_append_conv append_eq_append_conv2)
3bc892346a6b revised lemma
nipkow
parents: 66255
diff changeset
  1448
35115
446c5063e4fd modernized translations;
wenzelm
parents: 35028
diff changeset
  1449
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  1450
subsubsection \<open>\<^const>\<open>filter\<close>\<close>
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1451
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1452
lemma filter_append [simp]: "filter P (xs @ ys) = filter P xs @ filter P ys"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1453
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1454
15305
0bd9eedaa301 added lemmas
nipkow
parents: 15304
diff changeset
  1455
lemma rev_filter: "rev (filter P xs) = filter P (rev xs)"
0bd9eedaa301 added lemmas
nipkow
parents: 15304
diff changeset
  1456
by (induct xs) simp_all
0bd9eedaa301 added lemmas
nipkow
parents: 15304
diff changeset
  1457
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1458
lemma filter_filter [simp]: "filter P (filter Q xs) = filter (\<lambda>x. Q x \<and> P x) xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1459
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1460
16998
e0050191e2d1 Added filter lemma
nipkow
parents: 16973
diff changeset
  1461
lemma length_filter_le [simp]: "length (filter P xs) \<le> length xs"
e0050191e2d1 Added filter lemma
nipkow
parents: 16973
diff changeset
  1462
by (induct xs) (auto simp add: le_SucI)
e0050191e2d1 Added filter lemma
nipkow
parents: 16973
diff changeset
  1463
18423
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  1464
lemma sum_length_filter_compl:
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  1465
  "length(filter P xs) + length(filter (\<lambda>x. \<not>P x) xs) = length xs"
18423
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  1466
by(induct xs) simp_all
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  1467
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1468
lemma filter_True [simp]: "\<forall>x \<in> set xs. P x ==> filter P xs = xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1469
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1470
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1471
lemma filter_False [simp]: "\<forall>x \<in> set xs. \<not> P x ==> filter P xs = []"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1472
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1473
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  1474
lemma filter_empty_conv: "(filter P xs = []) = (\<forall>x\<in>set xs. \<not> P x)"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  1475
by (induct xs) simp_all
16998
e0050191e2d1 Added filter lemma
nipkow
parents: 16973
diff changeset
  1476
e0050191e2d1 Added filter lemma
nipkow
parents: 16973
diff changeset
  1477
lemma filter_id_conv: "(filter P xs = xs) = (\<forall>x\<in>set xs. P x)"
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1478
proof (induct xs)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1479
  case (Cons x xs)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1480
  then show ?case
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1481
    using length_filter_le
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1482
    by (simp add: impossible_Cons)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1483
qed auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1484
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  1485
lemma filter_map: "filter P (map f xs) = map f (filter (P \<circ> f) xs)"
16965
46697fa536ab added map_filter lemmas
nipkow
parents: 16770
diff changeset
  1486
by (induct xs) simp_all
46697fa536ab added map_filter lemmas
nipkow
parents: 16770
diff changeset
  1487
46697fa536ab added map_filter lemmas
nipkow
parents: 16770
diff changeset
  1488
lemma length_filter_map[simp]:
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  1489
  "length (filter P (map f xs)) = length(filter (P \<circ> f) xs)"
16965
46697fa536ab added map_filter lemmas
nipkow
parents: 16770
diff changeset
  1490
by (simp add:filter_map)
46697fa536ab added map_filter lemmas
nipkow
parents: 16770
diff changeset
  1491
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1492
lemma filter_is_subset [simp]: "set (filter P xs) \<le> set xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1493
by auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1494
15246
0984a2c2868b added and renamed
nipkow
parents: 15245
diff changeset
  1495
lemma length_filter_less:
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  1496
  "\<lbrakk> x \<in> set xs; \<not> P x \<rbrakk> \<Longrightarrow> length(filter P xs) < length xs"
15246
0984a2c2868b added and renamed
nipkow
parents: 15245
diff changeset
  1497
proof (induct xs)
0984a2c2868b added and renamed
nipkow
parents: 15245
diff changeset
  1498
  case Nil thus ?case by simp
0984a2c2868b added and renamed
nipkow
parents: 15245
diff changeset
  1499
next
0984a2c2868b added and renamed
nipkow
parents: 15245
diff changeset
  1500
  case (Cons x xs) thus ?case
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1501
    using Suc_le_eq by fastforce
15246
0984a2c2868b added and renamed
nipkow
parents: 15245
diff changeset
  1502
qed
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1503
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1504
lemma length_filter_conv_card:
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  1505
  "length(filter p xs) = card{i. i < length xs \<and> p(xs!i)}"
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1506
proof (induct xs)
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1507
  case Nil thus ?case by simp
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1508
next
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1509
  case (Cons x xs)
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  1510
  let ?S = "{i. i < length xs \<and> p(xs!i)}"
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1511
  have fin: "finite ?S" by(fast intro: bounded_nat_set_is_finite)
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1512
  show ?case (is "?l = card ?S'")
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1513
  proof (cases)
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1514
    assume "p x"
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1515
    hence eq: "?S' = insert 0 (Suc ` ?S)"
25162
ad4d5365d9d8 went back to >0
nipkow
parents: 25157
diff changeset
  1516
      by(auto simp: image_def split:nat.split dest:gr0_implies_Suc)
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1517
    have "length (filter p (x # xs)) = Suc(card ?S)"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  1518
      using Cons \<open>p x\<close> by simp
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1519
    also have "\<dots> = Suc(card(Suc ` ?S))" using fin
44921
58eef4843641 tuned proofs
huffman
parents: 44916
diff changeset
  1520
      by (simp add: card_image)
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1521
    also have "\<dots> = card ?S'" using eq fin
69700
7a92cbec7030 new material about summations and powers, along with some tweaks
paulson <lp15@cam.ac.uk>
parents: 69593
diff changeset
  1522
      by (simp add:card_insert_if) 
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1523
    finally show ?thesis .
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1524
  next
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1525
    assume "\<not> p x"
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1526
    hence eq: "?S' = Suc ` ?S"
25162
ad4d5365d9d8 went back to >0
nipkow
parents: 25157
diff changeset
  1527
      by(auto simp add: image_def split:nat.split elim:lessE)
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1528
    have "length (filter p (x # xs)) = card ?S"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  1529
      using Cons \<open>\<not> p x\<close> by simp
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1530
    also have "\<dots> = card(Suc ` ?S)" using fin
44921
58eef4843641 tuned proofs
huffman
parents: 44916
diff changeset
  1531
      by (simp add: card_image)
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1532
    also have "\<dots> = card ?S'" using eq fin
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1533
      by (simp add:card_insert_if)
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1534
    finally show ?thesis .
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1535
  qed
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1536
qed
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1537
17629
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1538
lemma Cons_eq_filterD:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  1539
  "x#xs = filter P ys \<Longrightarrow>
17629
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1540
  \<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
70a1ce3b23ae removed 'concl is' patterns;
wenzelm
parents: 19487
diff changeset
  1541
  (is "_ \<Longrightarrow> \<exists>us vs. ?P ys us vs")
17629
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1542
proof(induct ys)
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1543
  case Nil thus ?case by simp
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1544
next
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1545
  case (Cons y ys)
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1546
  show ?case (is "\<exists>x. ?Q x")
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1547
  proof cases
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1548
    assume Py: "P y"
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1549
    show ?thesis
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1550
    proof cases
25221
5ded95dda5df append/member: more light-weight way to declare authentic syntax;
wenzelm
parents: 25215
diff changeset
  1551
      assume "x = y"
5ded95dda5df append/member: more light-weight way to declare authentic syntax;
wenzelm
parents: 25215
diff changeset
  1552
      with Py Cons.prems have "?Q []" by simp
5ded95dda5df append/member: more light-weight way to declare authentic syntax;
wenzelm
parents: 25215
diff changeset
  1553
      then show ?thesis ..
17629
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1554
    next
25221
5ded95dda5df append/member: more light-weight way to declare authentic syntax;
wenzelm
parents: 25215
diff changeset
  1555
      assume "x \<noteq> y"
5ded95dda5df append/member: more light-weight way to declare authentic syntax;
wenzelm
parents: 25215
diff changeset
  1556
      with Py Cons.prems show ?thesis by simp
17629
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1557
    qed
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1558
  next
25221
5ded95dda5df append/member: more light-weight way to declare authentic syntax;
wenzelm
parents: 25215
diff changeset
  1559
    assume "\<not> P y"
44890
22f665a2e91c new fastforce replacing fastsimp - less confusing name
nipkow
parents: 44635
diff changeset
  1560
    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
  1561
    then have "?Q (y#us)" by simp
5ded95dda5df append/member: more light-weight way to declare authentic syntax;
wenzelm
parents: 25215
diff changeset
  1562
    then show ?thesis ..
17629
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1563
  qed
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1564
qed
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1565
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1566
lemma filter_eq_ConsD:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  1567
  "filter P ys = x#xs \<Longrightarrow>
17629
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1568
  \<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
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1569
  by(rule Cons_eq_filterD) simp
17629
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1570
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1571
lemma filter_eq_Cons_iff:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  1572
  "(filter P ys = x#xs) =
17629
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1573
  (\<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
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1574
  by(auto dest:filter_eq_ConsD)
17629
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1575
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1576
lemma Cons_eq_filter_iff:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  1577
  "(x#xs = filter P ys) =
17629
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1578
  (\<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
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1579
  by(auto dest:Cons_eq_filterD)
17629
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1580
61031
162bd20dae23 more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents: 60758
diff changeset
  1581
lemma inj_on_filter_key_eq:
162bd20dae23 more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents: 60758
diff changeset
  1582
  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
  1583
  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
  1584
  using assms by (induct xs) auto
162bd20dae23 more lemmas on sorting and multisets (due to Thomas Sewell)
haftmann
parents: 60758
diff changeset
  1585
44013
5cfc1c36ae97 moved recdef package to HOL/Library/Old_Recdef.thy
krauss
parents: 43594
diff changeset
  1586
lemma filter_cong[fundef_cong]:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  1587
  "xs = ys \<Longrightarrow> (\<And>x. x \<in> set ys \<Longrightarrow> P x = Q x) \<Longrightarrow> filter P xs = filter Q ys"
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1588
  by (induct ys arbitrary: xs) auto
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1589
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1590
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  1591
subsubsection \<open>List partitioning\<close>
26442
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1592
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1593
primrec partition :: "('a \<Rightarrow> bool) \<Rightarrow>'a list \<Rightarrow> 'a list \<times> 'a list" where
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1594
  "partition P [] = ([], [])" |
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1595
  "partition P (x # xs) =
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  1596
  (let (yes, no) = partition P xs
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  1597
   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
  1598
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  1599
lemma partition_filter1: "fst (partition P xs) = filter P xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1600
  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
  1601
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  1602
lemma partition_filter2: "snd (partition P xs) = filter (Not \<circ> P) xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1603
  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
  1604
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1605
lemma partition_P:
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1606
  assumes "partition P xs = (yes, no)"
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1607
  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
  1608
proof -
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1609
  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
  1610
    by simp_all
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1611
  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
  1612
qed
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1613
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1614
lemma partition_set:
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1615
  assumes "partition P xs = (yes, no)"
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1616
  shows "set yes \<union> set no = set xs"
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1617
proof -
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1618
  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
  1619
    by simp_all
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  1620
  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
  1621
qed
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1622
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
  1623
lemma partition_filter_conv[simp]:
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  1624
  "partition f xs = (filter f xs,filter (Not \<circ> f) xs)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1625
  unfolding partition_filter2[symmetric]
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1626
  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
  1627
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  1628
declare partition.simps[simp del]
26442
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1629
35115
446c5063e4fd modernized translations;
wenzelm
parents: 35028
diff changeset
  1630
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  1631
subsubsection \<open>\<^const>\<open>concat\<close>\<close>
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1632
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1633
lemma concat_append [simp]: "concat (xs @ ys) = concat xs @ concat ys"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1634
  by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1635
18447
da548623916a removed or modified some instances of [iff]
paulson
parents: 18423
diff changeset
  1636
lemma concat_eq_Nil_conv [simp]: "(concat xss = []) = (\<forall>xs \<in> set xss. xs = [])"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1637
  by (induct xss) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1638
18447
da548623916a removed or modified some instances of [iff]
paulson
parents: 18423
diff changeset
  1639
lemma Nil_eq_concat_conv [simp]: "([] = concat xss) = (\<forall>xs \<in> set xss. xs = [])"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1640
  by (induct xss) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1641
69276
3d954183b707 replaced some ancient ASCII syntax
haftmann
parents: 69275
diff changeset
  1642
lemma set_concat [simp]: "set (concat xs) = (\<Union>x\<in>set xs. set x)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1643
  by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1644
24476
f7ad9fbbeeaa turned list comprehension translations into ML to optimize base case
nipkow
parents: 24471
diff changeset
  1645
lemma concat_map_singleton[simp]: "concat(map (%x. [f x]) xs) = map f xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1646
  by (induct xs) auto
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  1647
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1648
lemma map_concat: "map f (concat xs) = concat (map (map f) xs)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1649
  by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1650
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1651
lemma filter_concat: "filter p (concat xs) = concat (map (filter p) xs)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1652
  by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1653
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1654
lemma rev_concat: "rev (concat xs) = concat (map rev (rev xs))"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1655
  by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1656
40365
a1456f2e1c9d added two lemmas about injectivity of concat to the list theory
bulwahn
parents: 40304
diff changeset
  1657
lemma concat_eq_concat_iff: "\<forall>(x, y) \<in> set (zip xs ys). length x = length y ==> length xs = length ys ==> (concat xs = concat ys) = (xs = ys)"
a1456f2e1c9d added two lemmas about injectivity of concat to the list theory
bulwahn
parents: 40304
diff changeset
  1658
proof (induct xs arbitrary: ys)
a1456f2e1c9d added two lemmas about injectivity of concat to the list theory
bulwahn
parents: 40304
diff changeset
  1659
  case (Cons x xs ys)
a1456f2e1c9d added two lemmas about injectivity of concat to the list theory
bulwahn
parents: 40304
diff changeset
  1660
  thus ?case by (cases ys) auto
a1456f2e1c9d added two lemmas about injectivity of concat to the list theory
bulwahn
parents: 40304
diff changeset
  1661
qed (auto)
a1456f2e1c9d added two lemmas about injectivity of concat to the list theory
bulwahn
parents: 40304
diff changeset
  1662
a1456f2e1c9d added two lemmas about injectivity of concat to the list theory
bulwahn
parents: 40304
diff changeset
  1663
lemma concat_injective: "concat xs = concat ys ==> length xs = length ys ==> \<forall>(x, y) \<in> set (zip xs ys). length x = length y ==> xs = ys"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1664
  by (simp add: concat_eq_concat_iff)
40365
a1456f2e1c9d added two lemmas about injectivity of concat to the list theory
bulwahn
parents: 40304
diff changeset
  1665
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1666
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  1667
subsubsection \<open>\<^const>\<open>nth\<close>\<close>
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1668
29827
c82b3e8a4daf code theorems for nth, list_update
haftmann
parents: 29822
diff changeset
  1669
lemma nth_Cons_0 [simp, code]: "(x # xs)!0 = x"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1670
  by auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1671
29827
c82b3e8a4daf code theorems for nth, list_update
haftmann
parents: 29822
diff changeset
  1672
lemma nth_Cons_Suc [simp, code]: "(x # xs)!(Suc n) = xs!n"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1673
  by auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1674
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1675
declare nth.simps [simp del]
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1676
41842
d8f76db6a207 added simp lemma nth_Cons_pos to List
nipkow
parents: 41697
diff changeset
  1677
lemma nth_Cons_pos[simp]: "0 < n \<Longrightarrow> (x#xs) ! n = xs ! (n - 1)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1678
  by(auto simp: Nat.gr0_conv_Suc)
41842
d8f76db6a207 added simp lemma nth_Cons_pos to List
nipkow
parents: 41697
diff changeset
  1679
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1680
lemma nth_append:
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1681
  "(xs @ ys)!n = (if n < length xs then xs!n else ys!(n - length xs))"
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1682
proof (induct xs arbitrary: n)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1683
  case (Cons x xs)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1684
  then show ?case
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1685
    using less_Suc_eq_0_disj by auto
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1686
qed simp
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1687
14402
4201e1916482 moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents: 14395
diff changeset
  1688
lemma nth_append_length [simp]: "(xs @ x # ys) ! length xs = x"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1689
  by (induct xs) auto
14402
4201e1916482 moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents: 14395
diff changeset
  1690
4201e1916482 moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents: 14395
diff changeset
  1691
lemma nth_append_length_plus[simp]: "(xs @ ys) ! (length xs + n) = ys ! n"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1692
  by (induct xs) auto
14402
4201e1916482 moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents: 14395
diff changeset
  1693
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1694
lemma nth_map [simp]: "n < length xs ==> (map f xs)!n = f(xs!n)"
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1695
proof (induct xs arbitrary: n)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1696
  case (Cons x xs)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1697
  then show ?case
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1698
    using less_Suc_eq_0_disj by auto
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1699
qed simp
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1700
66847
e8282131ddf9 relaxed assm
nipkow
parents: 66836
diff changeset
  1701
lemma nth_tl: "n < length (tl xs) \<Longrightarrow> tl xs ! n = xs ! Suc n"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1702
  by (induction xs) auto
45841
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  1703
18423
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  1704
lemma hd_conv_nth: "xs \<noteq> [] \<Longrightarrow> hd xs = xs!0"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1705
  by(cases xs) simp_all
18423
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  1706
18049
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  1707
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  1708
lemma list_eq_iff_nth_eq:
67717
5a1b299fe4af more symbols;
wenzelm
parents: 67684
diff changeset
  1709
  "(xs = ys) = (length xs = length ys \<and> (\<forall>i<length xs. xs!i = ys!i))"
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1710
proof (induct xs arbitrary: ys)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1711
  case (Cons x xs ys)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1712
  show ?case 
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1713
  proof (cases ys)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1714
    case (Cons y ys)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1715
    then show ?thesis
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1716
      using Cons.hyps by fastforce
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1717
  qed simp
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1718
qed force
18049
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  1719
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1720
lemma set_conv_nth: "set xs = {xs!i | i. i < length xs}"
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1721
proof (induct xs)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1722
  case (Cons x xs)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1723
  have "insert x {xs ! i |i. i < length xs} = {(x # xs) ! i |i. i < Suc (length xs)}" (is "?L=?R")
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1724
  proof
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1725
    show "?L \<subseteq> ?R"
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1726
      by force
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1727
    show "?R \<subseteq> ?L"
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1728
      using less_Suc_eq_0_disj by auto
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1729
  qed
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1730
  with Cons show ?case
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1731
    by simp
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1732
qed simp
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1733
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1734
lemma in_set_conv_nth: "(x \<in> set xs) = (\<exists>i < length xs. xs!i = x)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1735
  by(auto simp:set_conv_nth)
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1736
51160
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1737
lemma nth_equal_first_eq:
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1738
  assumes "x \<notin> set xs"
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1739
  assumes "n \<le> length xs"
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1740
  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
  1741
proof
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1742
  assume ?lhs
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1743
  show ?rhs
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1744
  proof (rule ccontr)
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1745
    assume "n \<noteq> 0"
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1746
    then have "n > 0" by simp
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  1747
    with \<open>?lhs\<close> have "xs ! (n - 1) = x" by simp
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  1748
    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
  1749
    ultimately have "\<exists>i<length xs. xs ! i = x" by auto
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  1750
    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
  1751
  qed
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1752
next
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1753
  assume ?rhs then show ?lhs by simp
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1754
qed
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1755
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1756
lemma nth_non_equal_first_eq:
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1757
  assumes "x \<noteq> y"
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1758
  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
  1759
proof
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1760
  assume "?lhs" with assms have "n > 0" by (cases n) simp_all
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  1761
  with \<open>?lhs\<close> show ?rhs by simp
51160
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1762
next
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1763
  assume "?rhs" then show "?lhs" by simp
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1764
qed
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1765
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  1766
lemma list_ball_nth: "\<lbrakk>n < length xs; \<forall>x \<in> set xs. P x\<rbrakk> \<Longrightarrow> P(xs!n)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1767
  by (auto simp add: set_conv_nth)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1768
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  1769
lemma nth_mem [simp]: "n < length xs \<Longrightarrow> xs!n \<in> set xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1770
  by (auto simp add: set_conv_nth)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1771
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1772
lemma all_nth_imp_all_set:
67717
5a1b299fe4af more symbols;
wenzelm
parents: 67684
diff changeset
  1773
  "\<lbrakk>\<forall>i < length xs. P(xs!i); x \<in> set xs\<rbrakk> \<Longrightarrow> P x"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1774
  by (auto simp add: set_conv_nth)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1775
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1776
lemma all_set_conv_all_nth:
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  1777
  "(\<forall>x \<in> set xs. P x) = (\<forall>i. i < length xs \<longrightarrow> P (xs ! i))"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1778
  by (auto simp add: set_conv_nth)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1779
25296
c187b7422156 rev_nth
kleing
parents: 25287
diff changeset
  1780
lemma rev_nth:
c187b7422156 rev_nth
kleing
parents: 25287
diff changeset
  1781
  "n < size xs \<Longrightarrow> rev xs ! n = xs ! (length xs - Suc n)"
c187b7422156 rev_nth
kleing
parents: 25287
diff changeset
  1782
proof (induct xs arbitrary: n)
c187b7422156 rev_nth
kleing
parents: 25287
diff changeset
  1783
  case Nil thus ?case by simp
c187b7422156 rev_nth
kleing
parents: 25287
diff changeset
  1784
next
c187b7422156 rev_nth
kleing
parents: 25287
diff changeset
  1785
  case (Cons x xs)
c187b7422156 rev_nth
kleing
parents: 25287
diff changeset
  1786
  hence n: "n < Suc (length xs)" by simp
c187b7422156 rev_nth
kleing
parents: 25287
diff changeset
  1787
  moreover
c187b7422156 rev_nth
kleing
parents: 25287
diff changeset
  1788
  { assume "n < length xs"
53374
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53017
diff changeset
  1789
    with n obtain n' where n': "length xs - n = Suc n'"
25296
c187b7422156 rev_nth
kleing
parents: 25287
diff changeset
  1790
      by (cases "length xs - n", auto)
c187b7422156 rev_nth
kleing
parents: 25287
diff changeset
  1791
    moreover
53374
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53017
diff changeset
  1792
    from n' have "length xs - Suc n = n'" by simp
25296
c187b7422156 rev_nth
kleing
parents: 25287
diff changeset
  1793
    ultimately
c187b7422156 rev_nth
kleing
parents: 25287
diff changeset
  1794
    have "xs ! (length xs - Suc n) = (x # xs) ! (length xs - n)" by simp
c187b7422156 rev_nth
kleing
parents: 25287
diff changeset
  1795
  }
c187b7422156 rev_nth
kleing
parents: 25287
diff changeset
  1796
  ultimately
c187b7422156 rev_nth
kleing
parents: 25287
diff changeset
  1797
  show ?case by (clarsimp simp add: Cons nth_append)
c187b7422156 rev_nth
kleing
parents: 25287
diff changeset
  1798
qed
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1799
31159
bac0d673b6d6 new lemma
nipkow
parents: 31154
diff changeset
  1800
lemma Skolem_list_nth:
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  1801
  "(\<forall>i<k. \<exists>x. P i x) = (\<exists>xs. size xs = k \<and> (\<forall>i<k. P i (xs!i)))"
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  1802
  (is "_ = (\<exists>xs. ?P k xs)")
31159
bac0d673b6d6 new lemma
nipkow
parents: 31154
diff changeset
  1803
proof(induct k)
bac0d673b6d6 new lemma
nipkow
parents: 31154
diff changeset
  1804
  case 0 show ?case by simp
bac0d673b6d6 new lemma
nipkow
parents: 31154
diff changeset
  1805
next
bac0d673b6d6 new lemma
nipkow
parents: 31154
diff changeset
  1806
  case (Suc k)
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  1807
  show ?case (is "?L = ?R" is "_ = (\<exists>xs. ?P' xs)")
31159
bac0d673b6d6 new lemma
nipkow
parents: 31154
diff changeset
  1808
  proof
bac0d673b6d6 new lemma
nipkow
parents: 31154
diff changeset
  1809
    assume "?R" thus "?L" using Suc by auto
bac0d673b6d6 new lemma
nipkow
parents: 31154
diff changeset
  1810
  next
bac0d673b6d6 new lemma
nipkow
parents: 31154
diff changeset
  1811
    assume "?L"
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  1812
    with Suc obtain x xs where "?P k xs \<and> P k x" by (metis less_Suc_eq)
31159
bac0d673b6d6 new lemma
nipkow
parents: 31154
diff changeset
  1813
    hence "?P'(xs@[x])" by(simp add:nth_append less_Suc_eq)
bac0d673b6d6 new lemma
nipkow
parents: 31154
diff changeset
  1814
    thus "?R" ..
bac0d673b6d6 new lemma
nipkow
parents: 31154
diff changeset
  1815
  qed
bac0d673b6d6 new lemma
nipkow
parents: 31154
diff changeset
  1816
qed
bac0d673b6d6 new lemma
nipkow
parents: 31154
diff changeset
  1817
bac0d673b6d6 new lemma
nipkow
parents: 31154
diff changeset
  1818
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  1819
subsubsection \<open>\<^const>\<open>list_update\<close>\<close>
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1820
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1821
lemma length_list_update [simp]: "length(xs[i:=x]) = length xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1822
  by (induct xs arbitrary: i) (auto split: nat.split)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1823
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1824
lemma nth_list_update:
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1825
  "i < length xs==> (xs[i:=x])!j = (if i = j then x else xs!j)"
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1826
  by (induct xs arbitrary: i j) (auto simp add: nth_Cons split: nat.split)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1827
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1828
lemma nth_list_update_eq [simp]: "i < length xs ==> (xs[i:=x])!i = x"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1829
  by (simp add: nth_list_update)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1830
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1831
lemma nth_list_update_neq [simp]: "i \<noteq> j ==> xs[i:=x]!j = xs!j"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1832
  by (induct xs arbitrary: i j) (auto simp add: nth_Cons split: nat.split)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1833
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1834
lemma list_update_id[simp]: "xs[i := xs!i] = xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1835
  by (induct xs arbitrary: i) (simp_all split:nat.splits)
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1836
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1837
lemma list_update_beyond[simp]: "length xs \<le> i \<Longrightarrow> xs[i:=x] = xs"
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1838
proof (induct xs arbitrary: i)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1839
  case (Cons x xs i)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1840
  then show ?case
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1841
    by (metis leD length_list_update list_eq_iff_nth_eq nth_list_update_neq)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1842
qed simp
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1843
31077
28dd6fd3d184 more lemmas
nipkow
parents: 31055
diff changeset
  1844
lemma list_update_nonempty[simp]: "xs[k:=x] = [] \<longleftrightarrow> xs=[]"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1845
  by (simp only: length_0_conv[symmetric] length_list_update)
31077
28dd6fd3d184 more lemmas
nipkow
parents: 31055
diff changeset
  1846
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1847
lemma list_update_same_conv:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  1848
  "i < length xs ==> (xs[i := x] = xs) = (xs!i = x)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1849
  by (induct xs arbitrary: i) (auto split: nat.split)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1850
14187
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  1851
lemma list_update_append1:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  1852
  "i < size xs \<Longrightarrow> (xs @ ys)[i:=x] = xs[i:=x] @ ys"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1853
  by (induct xs arbitrary: i)(auto split:nat.split)
14187
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  1854
15868
9634b3f9d910 more about list_update
kleing
parents: 15693
diff changeset
  1855
lemma list_update_append:
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  1856
  "(xs @ ys) [n:= x] =
15868
9634b3f9d910 more about list_update
kleing
parents: 15693
diff changeset
  1857
  (if n < length xs then xs[n:= x] @ ys else xs @ (ys [n-length xs:= x]))"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1858
  by (induct xs arbitrary: n) (auto split:nat.splits)
15868
9634b3f9d910 more about list_update
kleing
parents: 15693
diff changeset
  1859
14402
4201e1916482 moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents: 14395
diff changeset
  1860
lemma list_update_length [simp]:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  1861
  "(xs @ x # ys)[length xs := y] = (xs @ y # ys)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1862
  by (induct xs, auto)
14402
4201e1916482 moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents: 14395
diff changeset
  1863
31264
2662d1cdc51f more lemmas
nipkow
parents: 31258
diff changeset
  1864
lemma map_update: "map f (xs[k:= y]) = (map f xs)[k := f y]"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1865
  by(induct xs arbitrary: k)(auto split:nat.splits)
31264
2662d1cdc51f more lemmas
nipkow
parents: 31258
diff changeset
  1866
2662d1cdc51f more lemmas
nipkow
parents: 31258
diff changeset
  1867
lemma rev_update:
2662d1cdc51f more lemmas
nipkow
parents: 31258
diff changeset
  1868
  "k < length xs \<Longrightarrow> rev (xs[k:= y]) = (rev xs)[length xs - k - 1 := y]"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1869
  by (induct xs arbitrary: k) (auto simp: list_update_append split:nat.splits)
31264
2662d1cdc51f more lemmas
nipkow
parents: 31258
diff changeset
  1870
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1871
lemma update_zip:
31080
21ffc770ebc0 lemmas by Andreas Lochbihler
nipkow
parents: 31077
diff changeset
  1872
  "(zip xs ys)[i:=xy] = zip (xs[i:=fst xy]) (ys[i:=snd xy])"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1873
  by (induct ys arbitrary: i xy xs) (auto, case_tac xs, auto split: nat.split)
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1874
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1875
lemma set_update_subset_insert: "set(xs[i:=x]) \<le> insert x (set xs)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1876
  by (induct xs arbitrary: i) (auto split: nat.split)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1877
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  1878
lemma set_update_subsetI: "\<lbrakk>set xs \<subseteq> A; x \<in> A\<rbrakk> \<Longrightarrow> set(xs[i := x]) \<subseteq> A"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1879
  by (blast dest!: set_update_subset_insert [THEN subsetD])
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1880
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1881
lemma set_update_memI: "n < length xs \<Longrightarrow> x \<in> set (xs[n := x])"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1882
  by (induct xs arbitrary: n) (auto split:nat.splits)
15868
9634b3f9d910 more about list_update
kleing
parents: 15693
diff changeset
  1883
31077
28dd6fd3d184 more lemmas
nipkow
parents: 31055
diff changeset
  1884
lemma list_update_overwrite[simp]:
24796
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  1885
  "xs [i := x, i := y] = xs [i := y]"
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1886
  by (induct xs arbitrary: i) (simp_all split: nat.split)
24796
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  1887
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  1888
lemma list_update_swap:
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  1889
  "i \<noteq> i' \<Longrightarrow> xs [i := x, i' := x'] = xs [i' := x', i := x]"
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  1890
  by (induct xs arbitrary: i i') (simp_all split: nat.split)
24796
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  1891
29827
c82b3e8a4daf code theorems for nth, list_update
haftmann
parents: 29822
diff changeset
  1892
lemma list_update_code [code]:
c82b3e8a4daf code theorems for nth, list_update
haftmann
parents: 29822
diff changeset
  1893
  "[][i := y] = []"
c82b3e8a4daf code theorems for nth, list_update
haftmann
parents: 29822
diff changeset
  1894
  "(x # xs)[0 := y] = y # xs"
c82b3e8a4daf code theorems for nth, list_update
haftmann
parents: 29822
diff changeset
  1895
  "(x # xs)[Suc i := y] = x # xs[i := y]"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1896
  by simp_all
29827
c82b3e8a4daf code theorems for nth, list_update
haftmann
parents: 29822
diff changeset
  1897
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1898
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  1899
subsubsection \<open>\<^const>\<open>last\<close> and \<^const>\<open>butlast\<close>\<close>
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1900
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1901
lemma last_snoc [simp]: "last (xs @ [x]) = x"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1902
  by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1903
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1904
lemma butlast_snoc [simp]: "butlast (xs @ [x]) = xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1905
  by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1906
14302
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1907
lemma last_ConsL: "xs = [] \<Longrightarrow> last(x#xs) = x"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1908
  by simp
14302
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1909
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1910
lemma last_ConsR: "xs \<noteq> [] \<Longrightarrow> last(x#xs) = last xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1911
  by simp
14302
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1912
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1913
lemma last_append: "last(xs @ ys) = (if ys = [] then last xs else last ys)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1914
  by (induct xs) (auto)
14302
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1915
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1916
lemma last_appendL[simp]: "ys = [] \<Longrightarrow> last(xs @ ys) = last xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1917
  by(simp add:last_append)
14302
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1918
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1919
lemma last_appendR[simp]: "ys \<noteq> [] \<Longrightarrow> last(xs @ ys) = last ys"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1920
  by(simp add:last_append)
14302
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1921
45841
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  1922
lemma last_tl: "xs = [] \<or> tl xs \<noteq> [] \<Longrightarrow>last (tl xs) = last xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1923
  by (induct xs) simp_all
45841
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  1924
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  1925
lemma butlast_tl: "butlast (tl xs) = tl (butlast xs)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1926
  by (induct xs) simp_all
45841
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  1927
17762
478869f444ca new hd/rev/last lemmas
nipkow
parents: 17724
diff changeset
  1928
lemma hd_rev: "xs \<noteq> [] \<Longrightarrow> hd(rev xs) = last xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1929
  by(rule rev_exhaust[of xs]) simp_all
17762
478869f444ca new hd/rev/last lemmas
nipkow
parents: 17724
diff changeset
  1930
478869f444ca new hd/rev/last lemmas
nipkow
parents: 17724
diff changeset
  1931
lemma last_rev: "xs \<noteq> [] \<Longrightarrow> last(rev xs) = hd xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1932
  by(cases xs) simp_all
17762
478869f444ca new hd/rev/last lemmas
nipkow
parents: 17724
diff changeset
  1933
17765
e3cd31bc2e40 added last in set lemma
nipkow
parents: 17762
diff changeset
  1934
lemma last_in_set[simp]: "as \<noteq> [] \<Longrightarrow> last as \<in> set as"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1935
  by (induct as) auto
17762
478869f444ca new hd/rev/last lemmas
nipkow
parents: 17724
diff changeset
  1936
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1937
lemma length_butlast [simp]: "length (butlast xs) = length xs - 1"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1938
  by (induct xs rule: rev_induct) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1939
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1940
lemma butlast_append:
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1941
  "butlast (xs @ ys) = (if ys = [] then butlast xs else xs @ butlast ys)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1942
  by (induct xs arbitrary: ys) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1943
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1944
lemma append_butlast_last_id [simp]:
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  1945
  "xs \<noteq> [] \<Longrightarrow> butlast xs @ [last xs] = xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1946
  by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1947
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  1948
lemma in_set_butlastD: "x \<in> set (butlast xs) \<Longrightarrow> x \<in> set xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1949
  by (induct xs) (auto split: if_split_asm)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1950
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1951
lemma in_set_butlast_appendI:
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  1952
  "x \<in> set (butlast xs) \<or> x \<in> set (butlast ys) \<Longrightarrow> x \<in> set (butlast (xs @ ys))"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1953
  by (auto dest: in_set_butlastD simp add: butlast_append)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1954
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1955
lemma last_drop[simp]: "n < length xs \<Longrightarrow> last (drop n xs) = last xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1956
  by (induct xs arbitrary: n)(auto split:nat.split)
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1957
45841
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  1958
lemma nth_butlast:
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  1959
  assumes "n < length (butlast xs)" shows "butlast xs ! n = xs ! n"
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  1960
proof (cases xs)
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  1961
  case (Cons y ys)
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  1962
  moreover from assms have "butlast xs ! n = (butlast xs @ [last xs]) ! n"
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  1963
    by (simp add: nth_append)
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  1964
  ultimately show ?thesis using append_butlast_last_id by simp
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  1965
qed simp
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  1966
30128
365ee7319b86 revert some Suc 0 lemmas back to their original forms; added some simp rules for (1::nat)
huffman
parents: 30079
diff changeset
  1967
lemma last_conv_nth: "xs\<noteq>[] \<Longrightarrow> last xs = xs!(length xs - 1)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1968
  by(induct xs)(auto simp:neq_Nil_conv)
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17501
diff changeset
  1969
30128
365ee7319b86 revert some Suc 0 lemmas back to their original forms; added some simp rules for (1::nat)
huffman
parents: 30079
diff changeset
  1970
lemma butlast_conv_take: "butlast xs = take (length xs - 1) xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1971
  by (induction xs rule: induct_list012) simp_all
26584
46f3b89b2445 move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents: 26480
diff changeset
  1972
31077
28dd6fd3d184 more lemmas
nipkow
parents: 31055
diff changeset
  1973
lemma last_list_update:
28dd6fd3d184 more lemmas
nipkow
parents: 31055
diff changeset
  1974
  "xs \<noteq> [] \<Longrightarrow> last(xs[k:=x]) = (if k = size xs - 1 then x else last xs)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1975
  by (auto simp: last_conv_nth)
31077
28dd6fd3d184 more lemmas
nipkow
parents: 31055
diff changeset
  1976
28dd6fd3d184 more lemmas
nipkow
parents: 31055
diff changeset
  1977
lemma butlast_list_update:
28dd6fd3d184 more lemmas
nipkow
parents: 31055
diff changeset
  1978
  "butlast(xs[k:=x]) =
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  1979
  (if k = size xs - 1 then butlast xs else (butlast xs)[k:=x])"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1980
  by(cases xs rule:rev_cases)(auto simp: list_update_append split: nat.splits)
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  1981
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  1982
lemma last_map: "xs \<noteq> [] \<Longrightarrow> last (map f xs) = f (last xs)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1983
  by (cases xs rule: rev_cases) simp_all
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  1984
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  1985
lemma map_butlast: "map f (butlast xs) = butlast (map f xs)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1986
  by (induct xs) simp_all
36851
5135adb33157 added lemmas concerning last, butlast, insort
haftmann
parents: 36622
diff changeset
  1987
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  1988
lemma snoc_eq_iff_butlast:
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  1989
  "xs @ [x] = ys \<longleftrightarrow> (ys \<noteq> [] \<and> butlast ys = xs \<and> last ys = x)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1990
  by fastforce
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  1991
63173
3413b1cf30cd added subtheory of longest common prefix
nipkow
parents: 63145
diff changeset
  1992
corollary longest_common_suffix:
3413b1cf30cd added subtheory of longest common prefix
nipkow
parents: 63145
diff changeset
  1993
  "\<exists>ss xs' ys'. xs = xs' @ ss \<and> ys = ys' @ ss
3413b1cf30cd added subtheory of longest common prefix
nipkow
parents: 63145
diff changeset
  1994
       \<and> (xs' = [] \<or> ys' = [] \<or> last xs' \<noteq> last ys')"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1995
  using longest_common_prefix[of "rev xs" "rev ys"]
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  1996
  unfolding rev_swap rev_append by (metis last_rev rev_is_Nil_conv)
63173
3413b1cf30cd added subtheory of longest common prefix
nipkow
parents: 63145
diff changeset
  1997
24796
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  1998
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  1999
subsubsection \<open>\<^const>\<open>take\<close> and \<^const>\<open>drop\<close>\<close>
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2000
66658
59acf5e73176 two new simp rules
nipkow
parents: 66657
diff changeset
  2001
lemma take_0: "take 0 xs = []"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2002
  by (induct xs) auto
66658
59acf5e73176 two new simp rules
nipkow
parents: 66657
diff changeset
  2003
59acf5e73176 two new simp rules
nipkow
parents: 66657
diff changeset
  2004
lemma drop_0: "drop 0 xs = xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2005
  by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2006
66658
59acf5e73176 two new simp rules
nipkow
parents: 66657
diff changeset
  2007
lemma take0[simp]: "take 0 = (\<lambda>xs. [])"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2008
  by(rule ext) (rule take_0)
66658
59acf5e73176 two new simp rules
nipkow
parents: 66657
diff changeset
  2009
59acf5e73176 two new simp rules
nipkow
parents: 66657
diff changeset
  2010
lemma drop0[simp]: "drop 0 = (\<lambda>x. x)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2011
  by(rule ext) (rule drop_0)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2012
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2013
lemma take_Suc_Cons [simp]: "take (Suc n) (x # xs) = x # take n xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2014
  by simp
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2015
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2016
lemma drop_Suc_Cons [simp]: "drop (Suc n) (x # xs) = drop n xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2017
  by simp
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2018
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2019
declare take_Cons [simp del] and drop_Cons [simp del]
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2020
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  2021
lemma take_Suc: "xs \<noteq> [] \<Longrightarrow> take (Suc n) xs = hd xs # take n (tl xs)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2022
  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
  2023
14187
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  2024
lemma drop_Suc: "drop (Suc n) xs = drop n (tl xs)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2025
  by(cases xs, simp_all)
14187
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  2026
66870
f801b36d7c4e added [simp]
nipkow
parents: 66853
diff changeset
  2027
lemma hd_take[simp]: "j > 0 \<Longrightarrow> hd (take j xs) = hd xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2028
  by (metis gr0_conv_Suc list.sel(1) take.simps(1) take_Suc)
66657
6f82e2ad261a added lemma
nipkow
parents: 66656
diff changeset
  2029
26584
46f3b89b2445 move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents: 26480
diff changeset
  2030
lemma take_tl: "take n (tl xs) = tl (take (Suc n) xs)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2031
  by (induct xs arbitrary: n) simp_all
26584
46f3b89b2445 move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents: 26480
diff changeset
  2032
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2033
lemma drop_tl: "drop n (tl xs) = tl(drop n xs)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2034
  by(induct xs arbitrary: n, simp_all add:drop_Cons drop_Suc split:nat.split)
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2035
26584
46f3b89b2445 move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents: 26480
diff changeset
  2036
lemma tl_take: "tl (take n xs) = take (n - 1) (tl xs)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2037
  by (cases n, simp, cases xs, auto)
26584
46f3b89b2445 move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents: 26480
diff changeset
  2038
46f3b89b2445 move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents: 26480
diff changeset
  2039
lemma tl_drop: "tl (drop n xs) = drop n (tl xs)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2040
  by (simp only: drop_tl)
26584
46f3b89b2445 move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents: 26480
diff changeset
  2041
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2042
lemma nth_via_drop: "drop n xs = y#ys \<Longrightarrow> xs!n = y"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2043
  by (induct xs arbitrary: n, simp)(auto simp: drop_Cons nth_Cons split: nat.splits)
14187
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  2044
13913
b3ed67af04b8 Added take/dropWhile thms
nipkow
parents: 13883
diff changeset
  2045
lemma take_Suc_conv_app_nth:
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2046
  "i < length xs \<Longrightarrow> take (Suc i) xs = take i xs @ [xs!i]"
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2047
proof (induct xs arbitrary: i)
69850
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2048
  case Nil
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2049
  then show ?case by simp
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2050
next
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2051
  case Cons
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2052
  then show ?case by (cases i) auto
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2053
qed
13913
b3ed67af04b8 Added take/dropWhile thms
nipkow
parents: 13883
diff changeset
  2054
58247
98d0f85d247f enamed drop_Suc_conv_tl and nth_drop' to Cons_nth_drop_Suc
nipkow
parents: 58195
diff changeset
  2055
lemma Cons_nth_drop_Suc:
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2056
  "i < length xs \<Longrightarrow> (xs!i) # (drop (Suc i) xs) = drop i xs"
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2057
proof (induct xs arbitrary: i)
69850
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2058
  case Nil
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2059
  then show ?case by simp
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2060
next
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2061
  case Cons
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2062
  then show ?case by (cases i) auto
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2063
qed
14591
7be4d5dadf15 lemma drop_Suc_conv_tl added.
mehta
parents: 14589
diff changeset
  2064
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2065
lemma length_take [simp]: "length (take n xs) = min (length xs) n"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2066
  by (induct n arbitrary: xs) (auto, case_tac xs, auto)
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2067
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2068
lemma length_drop [simp]: "length (drop n xs) = (length xs - n)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2069
  by (induct n arbitrary: xs) (auto, case_tac xs, auto)
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2070
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2071
lemma take_all [simp]: "length xs \<le> n ==> take n xs = xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2072
  by (induct n arbitrary: xs) (auto, case_tac xs, auto)
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2073
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2074
lemma drop_all [simp]: "length xs \<le> n ==> drop n xs = []"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2075
  by (induct n arbitrary: xs) (auto, case_tac xs, auto)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2076
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2077
lemma take_append [simp]:
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2078
  "take n (xs @ ys) = (take n xs @ take (n - length xs) ys)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2079
  by (induct n arbitrary: xs) (auto, case_tac xs, auto)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2080
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2081
lemma drop_append [simp]:
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2082
  "drop n (xs @ ys) = drop n xs @ drop (n - length xs) ys"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2083
  by (induct n arbitrary: xs) (auto, case_tac xs, auto)
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2084
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2085
lemma take_take [simp]: "take n (take m xs) = take (min n m) xs"
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2086
proof (induct m arbitrary: xs n)
69850
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2087
  case 0
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2088
  then show ?case by simp
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2089
next
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2090
  case Suc
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2091
  then show ?case by (cases xs; cases n) simp_all
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2092
qed
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2093
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2094
lemma drop_drop [simp]: "drop n (drop m xs) = drop (n + m) xs"
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2095
proof (induct m arbitrary: xs)
69850
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2096
  case 0
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2097
  then show ?case by simp
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2098
next
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2099
  case Suc
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2100
  then show ?case by (cases xs) simp_all
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2101
qed
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2102
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2103
lemma take_drop: "take n (drop m xs) = drop m (take (n + m) xs)"
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2104
proof (induct m arbitrary: xs n)
69850
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2105
  case 0
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2106
  then show ?case by simp
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2107
next
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2108
  case Suc
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2109
  then show ?case by (cases xs; cases n) simp_all
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2110
qed
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2111
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2112
lemma drop_take: "drop n (take m xs) = take (m-n) (drop n xs)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2113
  by(induct xs arbitrary: m n)(auto simp: take_Cons drop_Cons split: nat.split)
14802
e05116289ff9 added drop_take:thm
nipkow
parents: 14770
diff changeset
  2114
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2115
lemma append_take_drop_id [simp]: "take n xs @ drop n xs = xs"
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2116
proof (induct n arbitrary: xs)
69850
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2117
  case 0
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2118
  then show ?case by simp
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2119
next
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2120
  case Suc
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2121
  then show ?case by (cases xs) simp_all
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2122
qed
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2123
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2124
lemma take_eq_Nil[simp]: "(take n xs = []) = (n = 0 \<or> xs = [])"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2125
  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
  2126
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2127
lemma drop_eq_Nil[simp]: "(drop n xs = []) = (length xs \<le> n)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2128
  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
  2129
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2130
lemma take_map: "take n (map f xs) = map f (take n xs)"
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2131
proof (induct n arbitrary: xs)
69850
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2132
  case 0
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2133
  then show ?case by simp
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2134
next
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2135
  case Suc
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2136
  then show ?case by (cases xs) simp_all
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2137
qed
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2138
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2139
lemma drop_map: "drop n (map f xs) = map f (drop n xs)"
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2140
proof (induct n arbitrary: xs)
69850
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2141
  case 0
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2142
  then show ?case by simp
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2143
next
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2144
  case Suc
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2145
  then show ?case by (cases xs) simp_all
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2146
qed
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2147
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2148
lemma rev_take: "rev (take i xs) = drop (length xs - i) (rev xs)"
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2149
proof (induct xs arbitrary: i)
69850
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2150
  case Nil
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2151
  then show ?case by simp
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2152
next
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2153
  case Cons
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2154
  then show ?case by (cases i) auto
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2155
qed
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2156
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2157
lemma rev_drop: "rev (drop i xs) = take (length xs - i) (rev xs)"
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2158
proof (induct xs arbitrary: i)
69850
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2159
  case Nil
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2160
  then show ?case by simp
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2161
next
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2162
  case Cons
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2163
  then show ?case by (cases i) auto
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2164
qed
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2165
61699
a81dc5c4d6a9 New theorems mostly from Peter Gammie
paulson <lp15@cam.ac.uk>
parents: 61682
diff changeset
  2166
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
  2167
  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
  2168
a81dc5c4d6a9 New theorems mostly from Peter Gammie
paulson <lp15@cam.ac.uk>
parents: 61682
diff changeset
  2169
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
  2170
  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
  2171
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2172
lemma nth_take [simp]: "i < n ==> (take n xs)!i = xs!i"
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2173
proof (induct xs arbitrary: i n)
69850
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2174
  case Nil
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2175
  then show ?case by simp
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2176
next
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2177
  case Cons
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2178
  then show ?case by (cases n; cases i) simp_all
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2179
qed
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2180
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2181
lemma nth_drop [simp]:
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2182
  "n \<le> length xs ==> (drop n xs)!i = xs!(n + i)"
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2183
proof (induct n arbitrary: xs)
69850
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2184
  case 0
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2185
  then show ?case by simp
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2186
next
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2187
  case Suc
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2188
  then show ?case by (cases xs) simp_all
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2189
qed
3507
157be29ad5ba Improved length = size translation.
nipkow
parents: 3465
diff changeset
  2190
26584
46f3b89b2445 move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents: 26480
diff changeset
  2191
lemma butlast_take:
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2192
  "n \<le> length xs ==> butlast (take n xs) = take (n - 1) xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2193
  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
  2194
46f3b89b2445 move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents: 26480
diff changeset
  2195
lemma butlast_drop: "butlast (drop n xs) = drop n (butlast xs)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2196
  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
  2197
46f3b89b2445 move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents: 26480
diff changeset
  2198
lemma take_butlast: "n < length xs ==> take n (butlast xs) = take n xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2199
  by (simp add: butlast_conv_take min.absorb1)
26584
46f3b89b2445 move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents: 26480
diff changeset
  2200
46f3b89b2445 move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents: 26480
diff changeset
  2201
lemma drop_butlast: "drop n (butlast xs) = butlast (drop n xs)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2202
  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
  2203
46500
0196966d6d2d removing unnecessary premises in theorems of List theory
bulwahn
parents: 46448
diff changeset
  2204
lemma hd_drop_conv_nth: "n < length xs \<Longrightarrow> hd(drop n xs) = xs!n"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2205
  by(simp add: hd_conv_nth)
18423
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  2206
35248
e64950874224 added lemma
nipkow
parents: 35217
diff changeset
  2207
lemma set_take_subset_set_take:
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2208
  "m \<le> n \<Longrightarrow> set(take m xs) \<le> set(take n xs)"
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2209
proof (induct xs arbitrary: m n)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2210
  case (Cons x xs m n) then show ?case
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2211
    by (cases n) (auto simp: take_Cons)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2212
qed simp
35248
e64950874224 added lemma
nipkow
parents: 35217
diff changeset
  2213
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2214
lemma set_take_subset: "set(take n xs) \<subseteq> set xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2215
  by(induct xs arbitrary: n)(auto simp:take_Cons split:nat.split)
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2216
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2217
lemma set_drop_subset: "set(drop n xs) \<subseteq> set xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2218
  by(induct xs arbitrary: n)(auto simp:drop_Cons split:nat.split)
14025
d9b155757dc8 *** empty log message ***
nipkow
parents: 13913
diff changeset
  2219
35248
e64950874224 added lemma
nipkow
parents: 35217
diff changeset
  2220
lemma set_drop_subset_set_drop:
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2221
  "m \<ge> n \<Longrightarrow> set(drop m xs) \<le> set(drop n xs)"
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2222
proof (induct xs arbitrary: m n)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2223
  case (Cons x xs m n)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2224
  then show ?case
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2225
    by (clarsimp simp: drop_Cons split: nat.split) (metis set_drop_subset subset_iff)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2226
qed simp
35248
e64950874224 added lemma
nipkow
parents: 35217
diff changeset
  2227
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  2228
lemma in_set_takeD: "x \<in> set(take n xs) \<Longrightarrow> x \<in> set xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2229
  using set_take_subset by fast
14187
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  2230
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  2231
lemma in_set_dropD: "x \<in> set(drop n xs) \<Longrightarrow> x \<in> set xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2232
  using set_drop_subset by fast
14187
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  2233
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2234
lemma append_eq_conv_conj:
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2235
  "(xs @ ys = zs) = (xs = take (length xs) zs \<and> ys = drop (length xs) zs)"
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2236
proof (induct xs arbitrary: zs)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2237
  case (Cons x xs zs) then show ?case
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2238
    by (cases zs, auto)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2239
qed auto
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2240
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2241
lemma take_add:  "take (i+j) xs = take i xs @ take j (drop i xs)"
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2242
proof (induct xs arbitrary: i)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2243
  case (Cons x xs i) then show ?case
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2244
    by (cases i, auto)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2245
qed auto
14050
826037db30cd new theorem
paulson
parents: 14025
diff changeset
  2246
14300
bf8b8c9425c3 *** empty log message ***
nipkow
parents: 14247
diff changeset
  2247
lemma append_eq_append_conv_if:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2248
  "(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
  2249
  (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
  2250
   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
  2251
   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
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2252
proof (induct xs\<^sub>1 arbitrary: ys\<^sub>1)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2253
  case (Cons a xs\<^sub>1 ys\<^sub>1) then show ?case
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2254
    by (cases ys\<^sub>1, auto)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2255
qed auto
14300
bf8b8c9425c3 *** empty log message ***
nipkow
parents: 14247
diff changeset
  2256
15110
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  2257
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
  2258
  "n < length xs \<Longrightarrow> take n xs @ [hd (drop n xs)] = take (Suc n) xs"
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2259
  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
  2260
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2261
lemma id_take_nth_drop:
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  2262
  "i < length xs \<Longrightarrow> xs = take i xs @ xs!i # drop (Suc i) xs"
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2263
proof -
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2264
  assume si: "i < length xs"
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2265
  hence "xs = take (Suc i) xs @ drop (Suc i) xs" by auto
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2266
  moreover
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2267
  from si have "take (Suc i) xs = take i xs @ [xs!i]"
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2268
    using take_Suc_conv_app_nth by blast
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2269
  ultimately show ?thesis by auto
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2270
qed
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  2271
59728
0bb88aa34768 added lemmas
nipkow
parents: 59582
diff changeset
  2272
lemma take_update_cancel[simp]: "n \<le> m \<Longrightarrow> take n (xs[m := y]) = take n xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2273
  by(simp add: list_eq_iff_nth_eq)
59728
0bb88aa34768 added lemmas
nipkow
parents: 59582
diff changeset
  2274
0bb88aa34768 added lemmas
nipkow
parents: 59582
diff changeset
  2275
lemma drop_update_cancel[simp]: "n < m \<Longrightarrow> drop m (xs[n := x]) = drop m xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2276
  by(simp add: list_eq_iff_nth_eq)
59728
0bb88aa34768 added lemmas
nipkow
parents: 59582
diff changeset
  2277
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2278
lemma upd_conv_take_nth_drop:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2279
  "i < length xs \<Longrightarrow> xs[i:=a] = take i xs @ a # drop (Suc i) xs"
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2280
proof -
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2281
  assume i: "i < length xs"
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2282
  have "xs[i:=a] = (take i xs @ xs!i # drop (Suc i) xs)[i:=a]"
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2283
    by(rule arg_cong[OF id_take_nth_drop[OF i]])
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2284
  also have "\<dots> = take i xs @ a # drop (Suc i) xs"
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2285
    using i by (simp add: list_update_append)
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2286
  finally show ?thesis .
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2287
qed
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2288
66891
5ec8cd4db7e2 drop a superfluous assumption that was found by the find_unused_assms command
bulwahn
parents: 66890
diff changeset
  2289
lemma take_update_swap: "take m (xs[n := x]) = (take m xs)[n := x]"
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2290
proof (cases "n \<ge> length xs")
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2291
  case False
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2292
  then show ?thesis
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2293
    by (simp add: upd_conv_take_nth_drop take_Cons drop_take min_def diff_Suc split: nat.split)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2294
qed auto
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2295
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2296
lemma drop_update_swap: 
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2297
  assumes "m \<le> n" shows "drop m (xs[n := x]) = (drop m xs)[n-m := x]"
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2298
proof (cases "n \<ge> length xs")
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2299
  case False
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2300
  with assms show ?thesis
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2301
    by (simp add: upd_conv_take_nth_drop drop_take)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2302
qed auto
59728
0bb88aa34768 added lemmas
nipkow
parents: 59582
diff changeset
  2303
0bb88aa34768 added lemmas
nipkow
parents: 59582
diff changeset
  2304
lemma nth_image: "l \<le> size xs \<Longrightarrow> nth xs ` {0..<l} = set(take l xs)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2305
  by(auto simp: set_conv_nth image_def) (metis Suc_le_eq nth_take order_trans)
59728
0bb88aa34768 added lemmas
nipkow
parents: 59582
diff changeset
  2306
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2307
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  2308
subsubsection \<open>\<^const>\<open>takeWhile\<close> and \<^const>\<open>dropWhile\<close>\<close>
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2309
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
  2310
lemma length_takeWhile_le: "length (takeWhile P xs) \<le> length xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2311
  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
  2312
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2313
lemma takeWhile_dropWhile_id [simp]: "takeWhile P xs @ dropWhile P xs = xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2314
  by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2315
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2316
lemma takeWhile_append1 [simp]:
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  2317
  "\<lbrakk>x \<in> set xs; \<not>P(x)\<rbrakk> \<Longrightarrow> takeWhile P (xs @ ys) = takeWhile P xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2318
  by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2319
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2320
lemma takeWhile_append2 [simp]:
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  2321
  "(\<And>x. x \<in> set xs \<Longrightarrow> P x) \<Longrightarrow> takeWhile P (xs @ ys) = xs @ takeWhile P ys"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2322
  by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2323
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  2324
lemma takeWhile_tail: "\<not> P x \<Longrightarrow> takeWhile P (xs @ (x#l)) = takeWhile P xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2325
  by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2326
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
  2327
lemma takeWhile_nth: "j < length (takeWhile P xs) \<Longrightarrow> takeWhile P xs ! j = xs ! j"
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2328
  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
  2329
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2330
lemma dropWhile_nth: "j < length (dropWhile P xs) \<Longrightarrow>
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2331
  dropWhile P xs ! j = xs ! (j + length (takeWhile P xs))"
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2332
  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
  2333
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2334
lemma length_dropWhile_le: "length (dropWhile P xs) \<le> length xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2335
  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
  2336
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2337
lemma dropWhile_append1 [simp]:
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  2338
  "\<lbrakk>x \<in> set xs; \<not>P(x)\<rbrakk> \<Longrightarrow> dropWhile P (xs @ ys) = (dropWhile P xs)@ys"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2339
  by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2340
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2341
lemma dropWhile_append2 [simp]:
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  2342
  "(\<And>x. x \<in> set xs \<Longrightarrow> P(x)) ==> dropWhile P (xs @ ys) = dropWhile P ys"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2343
  by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2344
45841
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  2345
lemma dropWhile_append3:
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  2346
  "\<not> P y \<Longrightarrow>dropWhile P (xs @ y # ys) = dropWhile P xs @ y # ys"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2347
  by (induct xs) auto
45841
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  2348
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  2349
lemma dropWhile_last:
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  2350
  "x \<in> set xs \<Longrightarrow> \<not> P x \<Longrightarrow> last (dropWhile P xs) = last xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2351
  by (auto simp add: dropWhile_append3 in_set_conv_decomp)
45841
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  2352
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  2353
lemma set_dropWhileD: "x \<in> set (dropWhile P xs) \<Longrightarrow> x \<in> set xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2354
  by (induct xs) (auto split: if_split_asm)
45841
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  2355
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  2356
lemma set_takeWhileD: "x \<in> set (takeWhile P xs) \<Longrightarrow> x \<in> set xs \<and> P x"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2357
  by (induct xs) (auto split: if_split_asm)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2358
13913
b3ed67af04b8 Added take/dropWhile thms
nipkow
parents: 13883
diff changeset
  2359
lemma takeWhile_eq_all_conv[simp]:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2360
  "(takeWhile P xs = xs) = (\<forall>x \<in> set xs. P x)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2361
  by(induct xs, auto)
13913
b3ed67af04b8 Added take/dropWhile thms
nipkow
parents: 13883
diff changeset
  2362
b3ed67af04b8 Added take/dropWhile thms
nipkow
parents: 13883
diff changeset
  2363
lemma dropWhile_eq_Nil_conv[simp]:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2364
  "(dropWhile P xs = []) = (\<forall>x \<in> set xs. P x)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2365
  by(induct xs, auto)
13913
b3ed67af04b8 Added take/dropWhile thms
nipkow
parents: 13883
diff changeset
  2366
b3ed67af04b8 Added take/dropWhile thms
nipkow
parents: 13883
diff changeset
  2367
lemma dropWhile_eq_Cons_conv:
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  2368
  "(dropWhile P xs = y#ys) = (xs = takeWhile P xs @ y # ys \<and> \<not> P y)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2369
  by(induct xs, auto)
13913
b3ed67af04b8 Added take/dropWhile thms
nipkow
parents: 13883
diff changeset
  2370
31077
28dd6fd3d184 more lemmas
nipkow
parents: 31055
diff changeset
  2371
lemma distinct_takeWhile[simp]: "distinct xs ==> distinct (takeWhile P xs)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2372
  by (induct xs) (auto dest: set_takeWhileD)
31077
28dd6fd3d184 more lemmas
nipkow
parents: 31055
diff changeset
  2373
28dd6fd3d184 more lemmas
nipkow
parents: 31055
diff changeset
  2374
lemma distinct_dropWhile[simp]: "distinct xs ==> distinct (dropWhile P xs)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2375
  by (induct xs) auto
31077
28dd6fd3d184 more lemmas
nipkow
parents: 31055
diff changeset
  2376
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
  2377
lemma takeWhile_map: "takeWhile P (map f xs) = map f (takeWhile (P \<circ> f) xs)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2378
  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
  2379
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2380
lemma dropWhile_map: "dropWhile P (map f xs) = map f (dropWhile (P \<circ> f) xs)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2381
  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
  2382
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2383
lemma takeWhile_eq_take: "takeWhile P xs = take (length (takeWhile P xs)) xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2384
  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
  2385
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
lemma dropWhile_eq_drop: "dropWhile P xs = drop (length (takeWhile P xs)) xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2387
  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
  2388
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2389
lemma hd_dropWhile: "dropWhile P xs \<noteq> [] \<Longrightarrow> \<not> P (hd (dropWhile P xs))"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2390
  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
  2391
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2392
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
  2393
  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
  2394
  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
  2395
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
  2396
  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
  2397
    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
  2398
  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
  2399
    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
  2400
  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
  2401
    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
  2402
    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
  2403
  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
  2404
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
  2405
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2406
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
  2407
  "\<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
  2408
  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
  2409
proof (induct xs arbitrary: n)
60580
7e741e22d7fc tuned proofs;
wenzelm
parents: 60541
diff changeset
  2410
  case Nil
7e741e22d7fc tuned proofs;
wenzelm
parents: 60541
diff changeset
  2411
  thus ?case by simp
7e741e22d7fc tuned proofs;
wenzelm
parents: 60541
diff changeset
  2412
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
  2413
  case (Cons x xs)
60580
7e741e22d7fc tuned proofs;
wenzelm
parents: 60541
diff changeset
  2414
  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
  2415
  proof (cases n)
60580
7e741e22d7fc tuned proofs;
wenzelm
parents: 60541
diff changeset
  2416
    case 0
7e741e22d7fc tuned proofs;
wenzelm
parents: 60541
diff changeset
  2417
    with Cons show ?thesis by simp
7e741e22d7fc tuned proofs;
wenzelm
parents: 60541
diff changeset
  2418
  next
7e741e22d7fc tuned proofs;
wenzelm
parents: 60541
diff changeset
  2419
    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
  2420
    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
  2421
    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
  2422
    proof (rule Cons.hyps)
60580
7e741e22d7fc tuned proofs;
wenzelm
parents: 60541
diff changeset
  2423
      fix i
7e741e22d7fc tuned proofs;
wenzelm
parents: 60541
diff changeset
  2424
      assume "i < n'" "i < length xs"
7e741e22d7fc tuned proofs;
wenzelm
parents: 60541
diff changeset
  2425
      thus "P (xs ! i)" using Cons.prems(1)[of "Suc i"] by simp
7e741e22d7fc tuned proofs;
wenzelm
parents: 60541
diff changeset
  2426
    next
7e741e22d7fc tuned proofs;
wenzelm
parents: 60541
diff changeset
  2427
      assume "n' < length xs"
7e741e22d7fc tuned proofs;
wenzelm
parents: 60541
diff changeset
  2428
      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
  2429
    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
  2430
    ultimately show ?thesis by simp
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2431
  qed
60580
7e741e22d7fc tuned proofs;
wenzelm
parents: 60541
diff changeset
  2432
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
  2433
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2434
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
  2435
  "length (takeWhile P xs) < length xs \<Longrightarrow> \<not> P (xs ! length (takeWhile P xs))"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2436
  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
  2437
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2438
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
  2439
  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
  2440
  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
  2441
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
  2442
  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
  2443
  hence "length (takeWhile P xs) < length xs" using assms by simp
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  2444
  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
  2445
qed
31077
28dd6fd3d184 more lemmas
nipkow
parents: 31055
diff changeset
  2446
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2447
lemma takeWhile_neq_rev: "\<lbrakk>distinct xs; x \<in> set xs\<rbrakk> \<Longrightarrow>
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2448
  takeWhile (\<lambda>y. y \<noteq> x) (rev xs) = rev (tl (dropWhile (\<lambda>y. y \<noteq> x) xs))"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2449
  by(induct xs) (auto simp: takeWhile_tail[where l="[]"])
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2450
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2451
lemma dropWhile_neq_rev: "\<lbrakk>distinct xs; x \<in> set xs\<rbrakk> \<Longrightarrow>
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2452
  dropWhile (\<lambda>y. y \<noteq> x) (rev xs) = x # rev (takeWhile (\<lambda>y. y \<noteq> x) xs)"
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2453
proof (induct xs)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2454
  case (Cons a xs)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2455
  then show ?case
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2456
    by(auto, subst dropWhile_append2, auto)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2457
qed simp
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2458
18423
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  2459
lemma takeWhile_not_last:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2460
  "distinct xs \<Longrightarrow> takeWhile (\<lambda>y. y \<noteq> last xs) xs = butlast xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2461
  by(induction xs rule: induct_list012) auto
18423
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  2462
44013
5cfc1c36ae97 moved recdef package to HOL/Library/Old_Recdef.thy
krauss
parents: 43594
diff changeset
  2463
lemma takeWhile_cong [fundef_cong]:
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  2464
  "\<lbrakk>l = k; \<And>x. x \<in> set l \<Longrightarrow> P x = Q x\<rbrakk>
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  2465
  \<Longrightarrow> takeWhile P l = takeWhile Q k"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2466
  by (induct k arbitrary: l) (simp_all)
18336
1a2e30b37ed3 Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents: 18049
diff changeset
  2467
44013
5cfc1c36ae97 moved recdef package to HOL/Library/Old_Recdef.thy
krauss
parents: 43594
diff changeset
  2468
lemma dropWhile_cong [fundef_cong]:
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  2469
  "\<lbrakk>l = k; \<And>x. x \<in> set l \<Longrightarrow> P x = Q x\<rbrakk>
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  2470
  \<Longrightarrow> dropWhile P l = dropWhile Q k"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2471
  by (induct k arbitrary: l, simp_all)
18336
1a2e30b37ed3 Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents: 18049
diff changeset
  2472
52380
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  2473
lemma takeWhile_idem [simp]:
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  2474
  "takeWhile P (takeWhile P xs) = takeWhile P xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2475
  by (induct xs) auto
52380
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  2476
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  2477
lemma dropWhile_idem [simp]:
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  2478
  "dropWhile P (dropWhile P xs) = dropWhile P xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2479
  by (induct xs) auto
52380
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  2480
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2481
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  2482
subsubsection \<open>\<^const>\<open>zip\<close>\<close>
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2483
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2484
lemma zip_Nil [simp]: "zip [] ys = []"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2485
  by (induct ys) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2486
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2487
lemma zip_Cons_Cons [simp]: "zip (x # xs) (y # ys) = (x, y) # zip xs ys"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2488
  by simp
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2489
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2490
declare zip_Cons [simp del]
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2491
36198
ead2db2be11a more convenient equations for zip
haftmann
parents: 35828
diff changeset
  2492
lemma [code]:
ead2db2be11a more convenient equations for zip
haftmann
parents: 35828
diff changeset
  2493
  "zip [] ys = []"
ead2db2be11a more convenient equations for zip
haftmann
parents: 35828
diff changeset
  2494
  "zip xs [] = []"
ead2db2be11a more convenient equations for zip
haftmann
parents: 35828
diff changeset
  2495
  "zip (x # xs) (y # ys) = (x, y) # zip xs ys"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2496
  by (fact zip_Nil zip.simps(1) zip_Cons_Cons)+
36198
ead2db2be11a more convenient equations for zip
haftmann
parents: 35828
diff changeset
  2497
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2498
lemma zip_Cons1:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2499
  "zip (x#xs) ys = (case ys of [] \<Rightarrow> [] | y#ys \<Rightarrow> (x,y)#zip xs ys)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2500
  by(auto split:list.split)
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2501
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2502
lemma length_zip [simp]:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2503
  "length (zip xs ys) = min (length xs) (length ys)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2504
  by (induct xs ys rule:list_induct2') auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2505
34978
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  2506
lemma zip_obtain_same_length:
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  2507
  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
  2508
    \<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
  2509
  shows "P (zip xs ys)"
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  2510
proof -
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  2511
  let ?n = "min (length xs) (length ys)"
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  2512
  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
  2513
    by (rule assms) simp_all
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  2514
  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
  2515
  proof (induct xs arbitrary: ys)
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  2516
    case Nil then show ?case by simp
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  2517
  next
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  2518
    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
  2519
  qed
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  2520
  ultimately show ?thesis by simp
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  2521
qed
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  2522
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2523
lemma zip_append1:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2524
  "zip (xs @ ys) zs =
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2525
  zip xs (take (length xs) zs) @ zip ys (drop (length xs) zs)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2526
  by (induct xs zs rule:list_induct2') auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2527
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2528
lemma zip_append2:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2529
  "zip xs (ys @ zs) =
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2530
  zip (take (length ys) xs) ys @ zip (drop (length ys) xs) zs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2531
  by (induct xs ys rule:list_induct2') auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2532
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2533
lemma zip_append [simp]:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2534
  "[| length xs = length us |] ==>
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2535
  zip (xs@ys) (us@vs) = zip xs us @ zip ys vs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2536
  by (simp add: zip_append1)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2537
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2538
lemma zip_rev:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2539
  "length xs = length ys ==> zip (rev xs) (rev ys) = rev (zip xs ys)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2540
  by (induct rule:list_induct2, simp_all)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2541
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
  2542
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
  2543
  "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
  2544
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
  2545
  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
  2546
  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
  2547
  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
  2548
    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
  2549
    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
  2550
  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
  2551
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
  2552
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2553
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
  2554
  "zip (map f xs) ys = map (\<lambda>(x, y). (f x, y)) (zip xs ys)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2555
  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
  2556
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2557
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
  2558
  "zip xs (map f ys) = map (\<lambda>(x, y). (x, f y)) (zip xs ys)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2559
  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
  2560
23096
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  2561
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
  2562
  "map f (zip (map g xs) ys) = map (%(x,y). f(g x, y)) (zip xs ys)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2563
  by (auto simp: zip_map1)
23096
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  2564
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  2565
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
  2566
  "map f (zip xs (map g ys)) = map (%(x,y). f(x, g y)) (zip xs ys)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2567
  by (auto simp: zip_map2)
23096
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  2568
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  2569
text\<open>Courtesy of Andreas Lochbihler:\<close>
31080
21ffc770ebc0 lemmas by Andreas Lochbihler
nipkow
parents: 31077
diff changeset
  2570
lemma zip_same_conv_map: "zip xs xs = map (\<lambda>x. (x, x)) xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2571
  by(induct xs) auto
31080
21ffc770ebc0 lemmas by Andreas Lochbihler
nipkow
parents: 31077
diff changeset
  2572
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2573
lemma nth_zip [simp]:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2574
  "[| i < length xs; i < length ys|] ==> (zip xs ys)!i = (xs!i, ys!i)"
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2575
proof (induct ys arbitrary: i xs)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2576
  case (Cons y ys)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2577
  then show ?case
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2578
    by (cases xs) (simp_all add: nth.simps split: nat.split)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2579
qed auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2580
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2581
lemma set_zip:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2582
  "set (zip xs ys) = {(xs!i, ys!i) | i. i < min (length xs) (length ys)}"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2583
  by(simp add: set_conv_nth cong: rev_conj_cong)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2584
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
  2585
lemma zip_same: "((a,b) \<in> set (zip xs xs)) = (a \<in> set xs \<and> a = b)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2586
  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
  2587
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2588
lemma zip_update: "zip (xs[i:=x]) (ys[i:=y]) = (zip xs ys)[i:=(x,y)]"
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2589
  by (simp add: update_zip)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2590
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2591
lemma zip_replicate [simp]:
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2592
  "zip (replicate i x) (replicate j y) = replicate (min i j) (x,y)"
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2593
proof (induct i arbitrary: j)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2594
  case (Suc i)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2595
  then show ?case
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2596
    by (cases j, auto)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2597
qed auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2598
61630
608520e0e8e2 add various lemmas
Andreas Lochbihler
parents: 61605
diff changeset
  2599
lemma zip_replicate1: "zip (replicate n x) ys = map (Pair x) (take n ys)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2600
  by(induction ys arbitrary: n)(case_tac [2] n, simp_all)
61630
608520e0e8e2 add various lemmas
Andreas Lochbihler
parents: 61605
diff changeset
  2601
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2602
lemma take_zip: "take n (zip xs ys) = zip (take n xs) (take n ys)"
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2603
proof (induct n arbitrary: xs ys)
69850
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2604
  case 0
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2605
  then show ?case by simp
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2606
next
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2607
  case Suc
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2608
  then show ?case by (cases xs; cases ys) simp_all
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2609
qed
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2610
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2611
lemma drop_zip: "drop n (zip xs ys) = zip (drop n xs) (drop n ys)"
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2612
proof (induct n arbitrary: xs ys)
69850
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2613
  case 0
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2614
  then show ?case by simp
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2615
next
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2616
  case Suc
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2617
  then show ?case by (cases xs; cases ys) simp_all
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2618
qed
19487
d5e79a41bce0 added zip/take/drop lemmas
nipkow
parents: 19390
diff changeset
  2619
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
  2620
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
  2621
proof (induct xs arbitrary: ys)
69850
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2622
  case Nil
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2623
  then show ?case by simp
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2624
next
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2625
  case Cons
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2626
  then show ?case by (cases ys) auto
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2627
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
  2628
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2629
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
  2630
proof (induct xs arbitrary: ys)
69850
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2631
  case Nil
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2632
  then show ?case by simp
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2633
next
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2634
  case Cons
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2635
  then show ?case by (cases ys) auto
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  2636
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
  2637
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2638
lemma set_zip_leftD: "(x,y)\<in> set (zip xs ys) \<Longrightarrow> x \<in> set xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2639
  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
  2640
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2641
lemma set_zip_rightD: "(x,y)\<in> set (zip xs ys) \<Longrightarrow> y \<in> set ys"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2642
  by (induct xs ys rule:list_induct2') auto
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2643
23983
79dc793bec43 Added lemmas
nipkow
parents: 23971
diff changeset
  2644
lemma in_set_zipE:
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  2645
  "(x,y) \<in> set(zip xs ys) \<Longrightarrow> (\<lbrakk> x \<in> set xs; y \<in> set ys \<rbrakk> \<Longrightarrow> R) \<Longrightarrow> R"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2646
  by(blast dest: set_zip_leftD set_zip_rightD)
23983
79dc793bec43 Added lemmas
nipkow
parents: 23971
diff changeset
  2647
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2648
lemma zip_map_fst_snd: "zip (map fst zs) (map snd zs) = zs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2649
  by (induct zs) simp_all
29829
9acb915a62fa code theorems for nth, list_update
haftmann
parents: 29827
diff changeset
  2650
9acb915a62fa code theorems for nth, list_update
haftmann
parents: 29827
diff changeset
  2651
lemma zip_eq_conv:
9acb915a62fa code theorems for nth, list_update
haftmann
parents: 29827
diff changeset
  2652
  "length xs = length ys \<Longrightarrow> zip xs ys = zs \<longleftrightarrow> map fst zs = xs \<and> map snd zs = ys"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2653
  by (auto simp add: zip_map_fst_snd)
29829
9acb915a62fa code theorems for nth, list_update
haftmann
parents: 29827
diff changeset
  2654
51173
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  2655
lemma in_set_zip:
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  2656
  "p \<in> set (zip xs ys) \<longleftrightarrow> (\<exists>n. xs ! n = fst p \<and> ys ! n = snd p
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2657
  \<and> n < length xs \<and> n < length ys)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2658
  by (cases p) (auto simp add: set_zip)
51173
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  2659
66584
acb02fa48ef3 more facts on Map.map_of and List.zip
bulwahn
parents: 66550
diff changeset
  2660
lemma in_set_impl_in_set_zip1:
acb02fa48ef3 more facts on Map.map_of and List.zip
bulwahn
parents: 66550
diff changeset
  2661
  assumes "length xs = length ys"
acb02fa48ef3 more facts on Map.map_of and List.zip
bulwahn
parents: 66550
diff changeset
  2662
  assumes "x \<in> set xs"
acb02fa48ef3 more facts on Map.map_of and List.zip
bulwahn
parents: 66550
diff changeset
  2663
  obtains y where "(x, y) \<in> set (zip xs ys)"
acb02fa48ef3 more facts on Map.map_of and List.zip
bulwahn
parents: 66550
diff changeset
  2664
proof -
acb02fa48ef3 more facts on Map.map_of and List.zip
bulwahn
parents: 66550
diff changeset
  2665
  from assms have "x \<in> set (map fst (zip xs ys))" by simp
acb02fa48ef3 more facts on Map.map_of and List.zip
bulwahn
parents: 66550
diff changeset
  2666
  from this that show ?thesis by fastforce
acb02fa48ef3 more facts on Map.map_of and List.zip
bulwahn
parents: 66550
diff changeset
  2667
qed
acb02fa48ef3 more facts on Map.map_of and List.zip
bulwahn
parents: 66550
diff changeset
  2668
acb02fa48ef3 more facts on Map.map_of and List.zip
bulwahn
parents: 66550
diff changeset
  2669
lemma in_set_impl_in_set_zip2:
acb02fa48ef3 more facts on Map.map_of and List.zip
bulwahn
parents: 66550
diff changeset
  2670
  assumes "length xs = length ys"
acb02fa48ef3 more facts on Map.map_of and List.zip
bulwahn
parents: 66550
diff changeset
  2671
  assumes "y \<in> set ys"
acb02fa48ef3 more facts on Map.map_of and List.zip
bulwahn
parents: 66550
diff changeset
  2672
  obtains x where "(x, y) \<in> set (zip xs ys)"
acb02fa48ef3 more facts on Map.map_of and List.zip
bulwahn
parents: 66550
diff changeset
  2673
proof -
acb02fa48ef3 more facts on Map.map_of and List.zip
bulwahn
parents: 66550
diff changeset
  2674
  from assms have "y \<in> set (map snd (zip xs ys))" by simp
acb02fa48ef3 more facts on Map.map_of and List.zip
bulwahn
parents: 66550
diff changeset
  2675
  from this that show ?thesis by fastforce
acb02fa48ef3 more facts on Map.map_of and List.zip
bulwahn
parents: 66550
diff changeset
  2676
qed
acb02fa48ef3 more facts on Map.map_of and List.zip
bulwahn
parents: 66550
diff changeset
  2677
51173
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  2678
lemma pair_list_eqI:
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  2679
  assumes "map fst xs = map fst ys" and "map snd xs = map snd ys"
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  2680
  shows "xs = ys"
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  2681
proof -
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  2682
  from assms(1) have "length xs = length ys" by (rule map_eq_imp_length_eq)
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  2683
  from this assms show ?thesis
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  2684
    by (induct xs ys rule: list_induct2) (simp_all add: prod_eqI)
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  2685
qed
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  2686
35115
446c5063e4fd modernized translations;
wenzelm
parents: 35028
diff changeset
  2687
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  2688
subsubsection \<open>\<^const>\<open>list_all2\<close>\<close>
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2689
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  2690
lemma list_all2_lengthD [intro?]:
14316
91b897b9a2dc added some [intro?] and [trans] for list_all2 lemmas
kleing
parents: 14302
diff changeset
  2691
  "list_all2 P xs ys ==> length xs = length ys"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2692
  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
  2693
19787
b949911ecff5 improved code lemmas
haftmann
parents: 19770
diff changeset
  2694
lemma list_all2_Nil [iff, code]: "list_all2 P [] ys = (ys = [])"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2695
  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
  2696
19787
b949911ecff5 improved code lemmas
haftmann
parents: 19770
diff changeset
  2697
lemma list_all2_Nil2 [iff, code]: "list_all2 P xs [] = (xs = [])"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2698
  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
  2699
07eeb832f28d introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents: 19585
diff changeset
  2700
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
  2701
  "list_all2 P (x # xs) (y # ys) = (P x y \<and> list_all2 P xs ys)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2702
  by (auto simp add: list_all2_iff)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2703
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2704
lemma list_all2_Cons1:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2705
  "list_all2 P (x # xs) ys = (\<exists>z zs. ys = z # zs \<and> P x z \<and> list_all2 P xs zs)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2706
  by (cases ys) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2707
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2708
lemma list_all2_Cons2:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2709
  "list_all2 P xs (y # ys) = (\<exists>z zs. xs = z # zs \<and> P z y \<and> list_all2 P zs ys)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2710
  by (cases xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2711
45794
16e8e4d33c42 add induction rule for list_all2
huffman
parents: 45789
diff changeset
  2712
lemma list_all2_induct
16e8e4d33c42 add induction rule for list_all2
huffman
parents: 45789
diff changeset
  2713
  [consumes 1, case_names Nil Cons, induct set: list_all2]:
16e8e4d33c42 add induction rule for list_all2
huffman
parents: 45789
diff changeset
  2714
  assumes P: "list_all2 P xs ys"
16e8e4d33c42 add induction rule for list_all2
huffman
parents: 45789
diff changeset
  2715
  assumes Nil: "R [] []"
47640
62bfba15b212 strengthen rule list_all2_induct
huffman
parents: 47436
diff changeset
  2716
  assumes Cons: "\<And>x xs y ys.
62bfba15b212 strengthen rule list_all2_induct
huffman
parents: 47436
diff changeset
  2717
    \<lbrakk>P x y; list_all2 P xs ys; R xs ys\<rbrakk> \<Longrightarrow> R (x # xs) (y # ys)"
45794
16e8e4d33c42 add induction rule for list_all2
huffman
parents: 45789
diff changeset
  2718
  shows "R xs ys"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2719
  using P
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2720
  by (induct xs arbitrary: ys) (auto simp add: list_all2_Cons1 Nil Cons)
45794
16e8e4d33c42 add induction rule for list_all2
huffman
parents: 45789
diff changeset
  2721
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2722
lemma list_all2_rev [iff]:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2723
  "list_all2 P (rev xs) (rev ys) = list_all2 P xs ys"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2724
  by (simp add: list_all2_iff zip_rev cong: conj_cong)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2725
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2726
lemma list_all2_rev1:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2727
  "list_all2 P (rev xs) ys = list_all2 P xs (rev ys)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2728
  by (subst list_all2_rev [symmetric]) simp
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2729
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2730
lemma list_all2_append1:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2731
  "list_all2 P (xs @ ys) zs =
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  2732
  (\<exists>us vs. zs = us @ vs \<and> length us = length xs \<and> length vs = length ys \<and>
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2733
    list_all2 P xs us \<and> list_all2 P ys vs)" (is "?lhs = ?rhs")
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2734
proof
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2735
  assume ?lhs
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2736
  then show ?rhs
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2737
    apply (rule_tac x = "take (length xs) zs" in exI)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2738
    apply (rule_tac x = "drop (length xs) zs" in exI)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2739
    apply (force split: nat_diff_split simp add: list_all2_iff zip_append1)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2740
    done
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2741
next
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2742
  assume ?rhs
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2743
  then show ?lhs
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2744
    by (auto simp add: list_all2_iff)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2745
qed
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2746
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2747
lemma list_all2_append2:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2748
  "list_all2 P xs (ys @ zs) =
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  2749
  (\<exists>us vs. xs = us @ vs \<and> length us = length ys \<and> length vs = length zs \<and>
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2750
    list_all2 P us ys \<and> list_all2 P vs zs)" (is "?lhs = ?rhs")
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2751
proof
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2752
  assume ?lhs
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2753
  then show ?rhs
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2754
    apply (rule_tac x = "take (length ys) xs" in exI)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2755
    apply (rule_tac x = "drop (length ys) xs" in exI)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2756
    apply (force split: nat_diff_split simp add: list_all2_iff zip_append2)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2757
    done
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2758
next
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2759
  assume ?rhs
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2760
  then show ?lhs
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2761
    by (auto simp add: list_all2_iff)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2762
qed
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2763
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2764
lemma list_all2_append:
14247
cb32eb89bddd *** empty log message ***
nipkow
parents: 14208
diff changeset
  2765
  "length xs = length ys \<Longrightarrow>
cb32eb89bddd *** empty log message ***
nipkow
parents: 14208
diff changeset
  2766
  list_all2 P (xs@us) (ys@vs) = (list_all2 P xs ys \<and> list_all2 P us vs)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2767
  by (induct rule:list_induct2, simp_all)
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2768
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2769
lemma list_all2_appendI [intro?, trans]:
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2770
  "\<lbrakk> list_all2 P a b; list_all2 P c d \<rbrakk> \<Longrightarrow> list_all2 P (a@c) (b@d)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2771
  by (simp add: list_all2_append list_all2_lengthD)
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2772
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2773
lemma list_all2_conv_all_nth:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2774
  "list_all2 P xs ys =
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2775
  (length xs = length ys \<and> (\<forall>i < length xs. P (xs!i) (ys!i)))"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2776
  by (force simp add: list_all2_iff set_zip)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2777
13883
0451e0fb3f22 Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents: 13863
diff changeset
  2778
lemma list_all2_trans:
0451e0fb3f22 Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents: 13863
diff changeset
  2779
  assumes tr: "!!a b c. P1 a b ==> P2 b c ==> P3 a c"
0451e0fb3f22 Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents: 13863
diff changeset
  2780
  shows "!!bs cs. list_all2 P1 as bs ==> list_all2 P2 bs cs ==> list_all2 P3 as cs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2781
    (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
  2782
proof (induct as)
0451e0fb3f22 Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents: 13863
diff changeset
  2783
  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
  2784
  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
  2785
  proof (induct bs)
0451e0fb3f22 Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents: 13863
diff changeset
  2786
    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
  2787
    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
  2788
      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
  2789
  qed simp
0451e0fb3f22 Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents: 13863
diff changeset
  2790
qed simp
0451e0fb3f22 Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents: 13863
diff changeset
  2791
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2792
lemma list_all2_all_nthI [intro?]:
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2793
  "length a = length b \<Longrightarrow> (\<And>n. n < length a \<Longrightarrow> P (a!n) (b!n)) \<Longrightarrow> list_all2 P a b"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2794
  by (simp add: list_all2_conv_all_nth)
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2795
14395
cc96cc06abf9 new theorem
paulson
parents: 14388
diff changeset
  2796
lemma list_all2I:
61032
b57df8eecad6 standardized some occurences of ancient "split" alias
haftmann
parents: 61031
diff changeset
  2797
  "\<forall>x \<in> set (zip a b). case_prod P x \<Longrightarrow> length a = length b \<Longrightarrow> list_all2 P a b"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2798
  by (simp add: list_all2_iff)
14395
cc96cc06abf9 new theorem
paulson
parents: 14388
diff changeset
  2799
14328
fd063037fdf5 list_all2_nthD no good as [intro?]
kleing
parents: 14327
diff changeset
  2800
lemma list_all2_nthD:
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2801
  "\<lbrakk> list_all2 P xs ys; p < size xs \<rbrakk> \<Longrightarrow> P (xs!p) (ys!p)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2802
  by (simp add: list_all2_conv_all_nth)
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2803
14302
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  2804
lemma list_all2_nthD2:
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  2805
  "\<lbrakk>list_all2 P xs ys; p < size ys\<rbrakk> \<Longrightarrow> P (xs!p) (ys!p)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2806
  by (frule list_all2_lengthD) (auto intro: list_all2_nthD)
14302
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  2807
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  2808
lemma list_all2_map1:
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2809
  "list_all2 P (map f as) bs = list_all2 (\<lambda>x y. P (f x) y) as bs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2810
  by (simp add: list_all2_conv_all_nth)
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2811
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  2812
lemma list_all2_map2:
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2813
  "list_all2 P as (map f bs) = list_all2 (\<lambda>x y. P x (f y)) as bs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2814
  by (auto simp add: list_all2_conv_all_nth)
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2815
14316
91b897b9a2dc added some [intro?] and [trans] for list_all2 lemmas
kleing
parents: 14302
diff changeset
  2816
lemma list_all2_refl [intro?]:
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2817
  "(\<And>x. P x x) \<Longrightarrow> list_all2 P xs xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2818
  by (simp add: list_all2_conv_all_nth)
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2819
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2820
lemma list_all2_update_cong:
46669
c1d2ab32174a one general list_all2_update_cong instead of two special ones
bulwahn
parents: 46664
diff changeset
  2821
  "\<lbrakk> list_all2 P xs ys; P x y \<rbrakk> \<Longrightarrow> list_all2 P (xs[i:=x]) (ys[i:=y])"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2822
  by (cases "i < length ys") (auto simp add: list_all2_conv_all_nth nth_list_update)
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2823
14302
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  2824
lemma list_all2_takeI [simp,intro?]:
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2825
  "list_all2 P xs ys \<Longrightarrow> list_all2 P (take n xs) (take n ys)"
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2826
proof (induct xs arbitrary: n ys)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2827
  case (Cons x xs)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2828
  then show ?case
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2829
    by (cases n) (auto simp: list_all2_Cons1)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2830
qed auto
14302
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  2831
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  2832
lemma list_all2_dropI [simp,intro?]:
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2833
  "list_all2 P xs ys \<Longrightarrow> list_all2 P (drop n xs) (drop n ys)"
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2834
proof (induct xs arbitrary: n ys)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2835
  case (Cons x xs)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2836
  then show ?case
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2837
    by (cases n) (auto simp: list_all2_Cons1)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2838
qed auto
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2839
14327
9cd4dea593e3 list_all2_mono should not be [trans]
kleing
parents: 14316
diff changeset
  2840
lemma list_all2_mono [intro?]:
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2841
  "list_all2 P xs ys \<Longrightarrow> (\<And>xs ys. P xs ys \<Longrightarrow> Q xs ys) \<Longrightarrow> list_all2 Q xs ys"
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  2842
  by (rule list.rel_mono_strong)
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2843
22551
e52f5400e331 paraphrasing equality
haftmann
parents: 22539
diff changeset
  2844
lemma list_all2_eq:
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67171
diff changeset
  2845
  "xs = ys \<longleftrightarrow> list_all2 (=) xs ys"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2846
  by (induct xs ys rule: list_induct2') auto
22551
e52f5400e331 paraphrasing equality
haftmann
parents: 22539
diff changeset
  2847
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  2848
lemma list_eq_iff_zip_eq:
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  2849
  "xs = ys \<longleftrightarrow> length xs = length ys \<and> (\<forall>(x,y) \<in> set (zip xs ys). x = y)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2850
  by(auto simp add: set_zip list_all2_eq list_all2_conv_all_nth cong: conj_cong)
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  2851
57308
e02fcb7e63c3 add lemma
Andreas Lochbihler
parents: 57248
diff changeset
  2852
lemma list_all2_same: "list_all2 P xs xs \<longleftrightarrow> (\<forall>x\<in>set xs. P x x)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2853
  by(auto simp add: list_all2_conv_all_nth set_conv_nth)
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2854
61630
608520e0e8e2 add various lemmas
Andreas Lochbihler
parents: 61605
diff changeset
  2855
lemma zip_assoc:
608520e0e8e2 add various lemmas
Andreas Lochbihler
parents: 61605
diff changeset
  2856
  "zip xs (zip ys zs) = map (\<lambda>((x, y), z). (x, y, z)) (zip (zip xs ys) zs)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2857
  by(rule list_all2_all_nthI[where P="(=)", unfolded list.rel_eq]) simp_all
61630
608520e0e8e2 add various lemmas
Andreas Lochbihler
parents: 61605
diff changeset
  2858
608520e0e8e2 add various lemmas
Andreas Lochbihler
parents: 61605
diff changeset
  2859
lemma zip_commute: "zip xs ys = map (\<lambda>(x, y). (y, x)) (zip ys xs)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2860
  by(rule list_all2_all_nthI[where P="(=)", unfolded list.rel_eq]) simp_all
61630
608520e0e8e2 add various lemmas
Andreas Lochbihler
parents: 61605
diff changeset
  2861
608520e0e8e2 add various lemmas
Andreas Lochbihler
parents: 61605
diff changeset
  2862
lemma zip_left_commute:
608520e0e8e2 add various lemmas
Andreas Lochbihler
parents: 61605
diff changeset
  2863
  "zip xs (zip ys zs) = map (\<lambda>(y, (x, z)). (x, y, z)) (zip ys (zip xs zs))"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2864
  by(rule list_all2_all_nthI[where P="(=)", unfolded list.rel_eq]) simp_all
61630
608520e0e8e2 add various lemmas
Andreas Lochbihler
parents: 61605
diff changeset
  2865
608520e0e8e2 add various lemmas
Andreas Lochbihler
parents: 61605
diff changeset
  2866
lemma zip_replicate2: "zip xs (replicate n y) = map (\<lambda>x. (x, y)) (take n xs)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2867
  by(subst zip_commute)(simp add: zip_replicate1)
61630
608520e0e8e2 add various lemmas
Andreas Lochbihler
parents: 61605
diff changeset
  2868
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  2869
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
  2870
63720
bcf2123d059a added lemma
nipkow
parents: 63662
diff changeset
  2871
lemma product_concat_map:
bcf2123d059a added lemma
nipkow
parents: 63662
diff changeset
  2872
  "List.product xs ys = concat (map (\<lambda>x. map (\<lambda>y. (x,y)) ys) xs)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2873
  by(induction xs) (simp)+
63720
bcf2123d059a added lemma
nipkow
parents: 63662
diff changeset
  2874
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2875
lemma set_product[simp]: "set (List.product xs ys) = set xs \<times> set ys"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2876
  by (induct xs) auto
49948
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  2877
51160
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  2878
lemma length_product [simp]:
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  2879
  "length (List.product xs ys) = length xs * length ys"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2880
  by (induct xs) simp_all
51160
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  2881
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  2882
lemma product_nth:
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  2883
  assumes "n < length xs * length ys"
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  2884
  shows "List.product xs ys ! n = (xs ! (n div length ys), ys ! (n mod length ys))"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2885
  using assms proof (induct xs arbitrary: n)
51160
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  2886
  case Nil then show ?case by simp
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  2887
next
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  2888
  case (Cons x xs n)
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  2889
  then have "length ys > 0" by auto
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  2890
  with Cons show ?case
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  2891
    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
  2892
qed
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  2893
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  2894
lemma in_set_product_lists_length:
53721
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  2895
  "xs \<in> set (product_lists xss) \<Longrightarrow> length xs = length xss"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2896
  by (induct xss arbitrary: xs) auto
53721
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  2897
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  2898
lemma product_lists_set:
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  2899
  "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
  2900
proof (intro equalityI subsetI, unfold mem_Collect_eq)
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  2901
  fix xs assume "xs \<in> ?L"
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  2902
  then have "length xs = length xss" by (rule in_set_product_lists_length)
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  2903
  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
  2904
next
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  2905
  fix xs assume "?R xs"
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  2906
  then show "xs \<in> ?L" by induct auto
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  2907
qed
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  2908
49948
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  2909
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  2910
subsubsection \<open>\<^const>\<open>fold\<close> with natural argument order\<close>
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  2911
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
  2912
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
  2913
  "fold f [] s = s"
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  2914
  "fold f (x # xs) s = fold f xs (f x s)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2915
  by simp_all
48828
441a4eed7823 prefer eta-expanded code equations for fold, to accomodate tail recursion optimisation in Scala
haftmann
parents: 48619
diff changeset
  2916
46133
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2917
lemma fold_remove1_split:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2918
  "\<lbrakk> \<And>x y. x \<in> set xs \<Longrightarrow> y \<in> set xs \<Longrightarrow> f x \<circ> f y = f y \<circ> f x;
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2919
    x \<in> set xs \<rbrakk>
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2920
  \<Longrightarrow> fold f xs = fold f (remove1 x xs) \<circ> f x"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2921
  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
  2922
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2923
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
  2924
  "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
  2925
    \<Longrightarrow> fold f xs a = fold g ys b"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2926
  by (induct ys arbitrary: a b xs) simp_all
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2927
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2928
lemma fold_id: "(\<And>x. x \<in> set xs \<Longrightarrow> f x = id) \<Longrightarrow> fold f xs = id"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2929
  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
  2930
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2931
lemma fold_commute:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2932
  "(\<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
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2933
  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
  2934
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2935
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
  2936
  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
  2937
  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
  2938
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
  2939
  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
  2940
  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
  2941
qed
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  2942
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  2943
lemma fold_invariant:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2944
  "\<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>
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2945
  \<Longrightarrow> P (fold f xs s)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2946
  by (induct xs arbitrary: s) simp_all
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2947
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2948
lemma fold_append [simp]: "fold f (xs @ ys) = fold f ys \<circ> fold f xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2949
  by (induct xs) simp_all
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2950
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  2951
lemma fold_map [code_unfold]: "fold g (map f xs) = fold (g \<circ> f) xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2952
  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
  2953
58437
8d124c73c37a added lemmas
haftmann
parents: 58310
diff changeset
  2954
lemma fold_filter:
8d124c73c37a added lemmas
haftmann
parents: 58310
diff changeset
  2955
  "fold f (filter P xs) = fold (\<lambda>x. if P x then f x else id) xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2956
  by (induct xs) simp_all
58437
8d124c73c37a added lemmas
haftmann
parents: 58310
diff changeset
  2957
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
  2958
lemma fold_rev:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2959
  "(\<And>x y. x \<in> set xs \<Longrightarrow> y \<in> set xs \<Longrightarrow> f y \<circ> f x = f x \<circ> f y)
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2960
  \<Longrightarrow> fold f (rev xs) = fold f xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2961
  by (induct xs) (simp_all add: fold_commute_apply fun_eq_iff)
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2962
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2963
lemma fold_Cons_rev: "fold Cons xs = append (rev xs)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2964
  by (induct xs) simp_all
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2965
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2966
lemma rev_conv_fold [code]: "rev xs = fold Cons xs []"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2967
  by (simp add: fold_Cons_rev)
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2968
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2969
lemma fold_append_concat_rev: "fold append xss = append (concat (rev xss))"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2970
  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
  2971
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  2972
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
  2973
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2974
lemma (in comp_fun_commute) fold_set_fold_remdups:
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2975
  "Finite_Set.fold f y (set xs) = fold f (remdups xs) y"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2976
  by (rule sym, induct xs arbitrary: y) (simp_all add: fold_fun_left_comm insert_absorb)
48619
558e4e77ce69 more set operations expressed by Finite_Set.fold
kuncar
parents: 47841
diff changeset
  2977
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
  2978
lemma (in comp_fun_idem) fold_set_fold:
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2979
  "Finite_Set.fold f y (set xs) = fold f xs y"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2980
  by (rule sym, induct xs arbitrary: y) (simp_all add: fold_fun_left_comm)
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2981
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2982
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
  2983
proof -
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  2984
  interpret comp_fun_idem Set.insert
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  2985
    by (fact comp_fun_idem_insert)
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  2986
  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
  2987
qed
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  2988
47397
d654c73e4b12 no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents: 47131
diff changeset
  2989
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
  2990
  "List.coset xs \<union> A = List.coset (List.filter (\<lambda>x. x \<notin> A) xs)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  2991
  by auto
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2992
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  2993
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
  2994
proof -
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  2995
  interpret comp_fun_idem Set.remove
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  2996
    by (fact comp_fun_idem_remove)
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  2997
  show ?thesis
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  2998
    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
  2999
qed
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  3000
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
  3001
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
  3002
  "A - List.coset xs = set (List.filter (\<lambda>x. x \<in> A) xs)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3003
  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
  3004
d654c73e4b12 no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents: 47131
diff changeset
  3005
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
  3006
  "A \<inter> set xs = set (List.filter (\<lambda>x. x \<in> A) xs)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3007
  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
  3008
d654c73e4b12 no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents: 47131
diff changeset
  3009
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
  3010
  "A \<inter> List.coset xs = fold Set.remove xs A"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3011
  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
  3012
54885
3a478d0a0e87 more abstract declaration of code attributes
haftmann
parents: 54868
diff changeset
  3013
lemma (in semilattice_set) set_eq_fold [code]:
51489
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 51315
diff changeset
  3014
  "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
  3015
proof -
51489
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 51315
diff changeset
  3016
  interpret comp_fun_idem f
61169
4de9ff3ea29a tuned proofs -- less legacy;
wenzelm
parents: 61076
diff changeset
  3017
    by standard (simp_all add: fun_eq_iff left_commute)
51489
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 51315
diff changeset
  3018
  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
  3019
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
  3020
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  3021
lemma (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
  3022
  "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
  3023
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
  3024
  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
  3025
    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
  3026
  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
  3027
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
  3028
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
  3029
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
  3030
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
  3031
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
  3032
  "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
  3033
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
  3034
  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
  3035
    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
  3036
  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
  3037
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
  3038
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
  3039
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
  3040
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
  3041
lemma (in complete_lattice) INF_set_fold:
69275
9bbd5497befd clarified status of legacy input abbreviations
haftmann
parents: 69215
diff changeset
  3042
  "\<Sqinter>(f ` set xs) = fold (inf \<circ> f) xs top"
68781
567079abb173 tuned whitespace
haftmann
parents: 68775
diff changeset
  3043
  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
  3044
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  3045
lemma (in complete_lattice) SUP_set_fold:
69275
9bbd5497befd clarified status of legacy input abbreviations
haftmann
parents: 69215
diff changeset
  3046
  "\<Squnion>(f ` set xs) = fold (sup \<circ> f) xs bot"
68781
567079abb173 tuned whitespace
haftmann
parents: 68775
diff changeset
  3047
  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
  3048
49948
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  3049
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  3050
subsubsection \<open>Fold variants: \<^const>\<open>foldr\<close> and \<^const>\<open>foldl\<close>\<close>
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  3051
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  3052
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
  3053
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3054
lemma foldr_conv_fold [code_abbrev]: "foldr f xs = fold f (rev xs)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3055
  by (induct xs) simp_all
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3056
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3057
lemma foldl_conv_fold: "foldl f s xs = fold (\<lambda>x s. f s x) xs s"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3058
  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
  3059
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
  3060
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
  3061
  "foldr f xs a = foldl (\<lambda>x y. f y x) a (rev xs)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3062
  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
  3063
d654c73e4b12 no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents: 47131
diff changeset
  3064
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
  3065
  "foldl f a xs = foldr (\<lambda>x y. f y x) (rev xs) a"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3066
  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
  3067
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  3068
lemma foldr_fold:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3069
  "(\<And>x y. x \<in> set xs \<Longrightarrow> y \<in> set xs \<Longrightarrow> f y \<circ> f x = f x \<circ> f y)
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3070
  \<Longrightarrow> foldr f xs = fold f xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3071
  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
  3072
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  3073
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
  3074
  "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
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3075
  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
  3076
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
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
  3078
  "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
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3079
  by (auto simp add: foldl_conv_fold intro!: fold_cong)
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3080
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3081
lemma foldr_append [simp]: "foldr f (xs @ ys) a = foldr f xs (foldr f ys a)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3082
  by (simp add: foldr_conv_fold)
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3083
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3084
lemma foldl_append [simp]: "foldl f a (xs @ ys) = foldl f (foldl f a xs) ys"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3085
  by (simp add: foldl_conv_fold)
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3086
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  3087
lemma foldr_map [code_unfold]: "foldr g (map f xs) a = foldr (g \<circ> f) xs a"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3088
  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
  3089
58437
8d124c73c37a added lemmas
haftmann
parents: 58310
diff changeset
  3090
lemma foldr_filter:
8d124c73c37a added lemmas
haftmann
parents: 58310
diff changeset
  3091
  "foldr f (filter P xs) = foldr (\<lambda>x. if P x then f x else id) xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3092
  by (simp add: foldr_conv_fold rev_filter fold_filter)
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  3093
46133
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  3094
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
  3095
  "foldl g a (map f xs) = foldl (\<lambda>a x. g a (f x)) a xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3096
  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
  3097
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  3098
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
  3099
  "concat xss = foldr append xss []"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3100
  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
  3101
35115
446c5063e4fd modernized translations;
wenzelm
parents: 35028
diff changeset
  3102
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  3103
subsubsection \<open>\<^const>\<open>upt\<close>\<close>
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  3104
17090
603f23d71ada small mods to code lemmas
nipkow
parents: 17086
diff changeset
  3105
lemma upt_rec[code]: "[i..<j] = (if i<j then i#[Suc i..<j] else [])"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3106
  \<comment> \<open>simp does not terminate!\<close>
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3107
  by (induct j) auto
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  3108
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46898
diff changeset
  3109
lemmas upt_rec_numeral[simp] = upt_rec[of "numeral m" "numeral n"] for m n
32005
c369417be055 made upt/upto executable on nat/int by simp
nipkow
parents: 31998
diff changeset
  3110
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  3111
lemma upt_conv_Nil [simp]: "j \<le> i ==> [i..<j] = []"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3112
  by (subst upt_rec) simp
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  3113
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  3114
lemma upt_eq_Nil_conv[simp]: "([i..<j] = []) = (j = 0 \<or> j \<le> i)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3115
  by(induct j)simp_all
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  3116
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  3117
lemma upt_eq_Cons_conv:
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3118
  "([i..<j] = x#xs) = (i < j \<and> i = x \<and> [i+1..<j] = xs)"
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  3119
proof (induct j arbitrary: x xs)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  3120
  case (Suc j)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  3121
  then show ?case
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  3122
    by (simp add: upt_rec)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  3123
qed simp
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  3124
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  3125
lemma upt_Suc_append: "i \<le> j ==> [i..<(Suc j)] = [i..<j]@[j]"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3126
  \<comment> \<open>Only needed if \<open>upt_Suc\<close> is deleted from the simpset.\<close>
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3127
  by simp
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  3128
15425
6356d2523f73 [ .. (] -> [ ..< ]
nipkow
parents: 15392
diff changeset
  3129
lemma upt_conv_Cons: "i < j ==> [i..<j] = i # [Suc i..<j]"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3130
  by (simp add: upt_rec)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  3131
63145
703edebd1d92 isabelle update_cartouches -c -t;
wenzelm
parents: 63099
diff changeset
  3132
lemma upt_conv_Cons_Cons: \<comment> \<open>no precondition\<close>
62580
haftmann
parents: 62390
diff changeset
  3133
  "m # n # ns = [m..<q] \<longleftrightarrow> n # ns = [Suc m..<q]"
haftmann
parents: 62390
diff changeset
  3134
proof (cases "m < q")
haftmann
parents: 62390
diff changeset
  3135
  case False then show ?thesis by simp
haftmann
parents: 62390
diff changeset
  3136
next
haftmann
parents: 62390
diff changeset
  3137
  case True then show ?thesis by (simp add: upt_conv_Cons)
haftmann
parents: 62390
diff changeset
  3138
qed
haftmann
parents: 62390
diff changeset
  3139
15425
6356d2523f73 [ .. (] -> [ ..< ]
nipkow
parents: 15392
diff changeset
  3140
lemma upt_add_eq_append: "i<=j ==> [i..<j+k] = [i..<j]@[j..<j+k]"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3141
  \<comment> \<open>LOOPS as a simprule, since \<open>j \<le> j\<close>.\<close>
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3142
  by (induct k) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  3143
15425
6356d2523f73 [ .. (] -> [ ..< ]
nipkow
parents: 15392
diff changeset
  3144
lemma length_upt [simp]: "length [i..<j] = j - i"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3145
  by (induct j) (auto simp add: Suc_diff_le)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  3146
15425
6356d2523f73 [ .. (] -> [ ..< ]
nipkow
parents: 15392
diff changeset
  3147
lemma nth_upt [simp]: "i + k < j ==> [i..<j] ! k = i + k"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3148
  by (induct j) (auto simp add: less_Suc_eq nth_append split: nat_diff_split)
17906
719364f5179b added 2 lemmas
nipkow
parents: 17877
diff changeset
  3149
719364f5179b added 2 lemmas
nipkow
parents: 17877
diff changeset
  3150
lemma hd_upt[simp]: "i < j \<Longrightarrow> hd[i..<j] = i"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3151
  by(simp add:upt_conv_Cons)
17906
719364f5179b added 2 lemmas
nipkow
parents: 17877
diff changeset
  3152
63317
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63173
diff changeset
  3153
lemma tl_upt: "tl [m..<n] = [Suc m..<n]"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3154
  by (simp add: upt_rec)
63317
ca187a9f66da Various additions to polynomials, FPSs, Gamma function
eberlm
parents: 63173
diff changeset
  3155
17906
719364f5179b added 2 lemmas
nipkow
parents: 17877
diff changeset
  3156
lemma last_upt[simp]: "i < j \<Longrightarrow> last[i..<j] = j - 1"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3157
  by(cases j)(auto simp: upt_Suc_append)
17906
719364f5179b added 2 lemmas
nipkow
parents: 17877
diff changeset
  3158
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  3159
lemma take_upt [simp]: "i+m \<le> n ==> take m [i..<n] = [i..<i+m]"
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  3160
proof (induct m arbitrary: i)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  3161
  case (Suc m)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  3162
  then show ?case
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  3163
    by (subst take_Suc_conv_app_nth) auto
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  3164
qed simp
3507
157be29ad5ba Improved length = size translation.
nipkow
parents: 3465
diff changeset
  3165
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3166
lemma drop_upt[simp]: "drop m [i..<j] = [i+m..<j]"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3167
  by(induct j) auto
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3168
24645
1af302128da2 Generalized [_.._] from nat to linear orders
nipkow
parents: 24640
diff changeset
  3169
lemma map_Suc_upt: "map Suc [m..<n] = [Suc m..<Suc n]"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3170
  by (induct n) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  3171
54496
178922b63b58 add lemmas Suc_funpow and id_funpow to simpset; add lemma map_add_upt
hoelzl
parents: 54404
diff changeset
  3172
lemma map_add_upt: "map (\<lambda>i. i + n) [0..<m] = [n..<m + n]"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3173
  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
  3174
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  3175
lemma nth_map_upt: "i < n-m ==> (map f [m..<n]) ! i = f(m+i)"
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  3176
proof (induct n m  arbitrary: i rule: diff_induct)
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3177
  case (3 x y)
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  3178
  then show ?case
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  3179
    by (metis add.commute length_upt less_diff_conv nth_map nth_upt)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  3180
qed auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  3181
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3182
lemma map_decr_upt: "map (\<lambda>n. n - Suc 0) [Suc m..<Suc n] = [m..<n]"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3183
  by (induct n) simp_all
66550
e5d82cf3c387 Some small lemmas about polynomials and FPSs
eberlm <eberlm@in.tum.de>
parents: 66502
diff changeset
  3184
e5d82cf3c387 Some small lemmas about polynomials and FPSs
eberlm <eberlm@in.tum.de>
parents: 66502
diff changeset
  3185
lemma map_upt_Suc: "map f [0 ..< Suc n] = f 0 # map (\<lambda>i. f (Suc i)) [0 ..< n]"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3186
  by (induct n arbitrary: f) auto
52380
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  3187
13883
0451e0fb3f22 Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents: 13863
diff changeset
  3188
lemma nth_take_lemma:
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  3189
  "k \<le> length xs \<Longrightarrow> k \<le> length ys \<Longrightarrow>
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  3190
     (\<And>i. i < k \<longrightarrow> xs!i = ys!i) \<Longrightarrow> take k xs = take k ys"
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  3191
proof (induct k arbitrary: xs ys)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  3192
  case (Suc k)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  3193
  then show ?case
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  3194
    apply (simp add: less_Suc_eq_0_disj)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  3195
    by (simp add: Suc.prems(3) take_Suc_conv_app_nth)
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  3196
qed simp
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  3197
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  3198
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
  3199
  "\<lbrakk>length xs = length ys; \<And>i. i < length xs \<Longrightarrow> xs!i = ys!i\<rbrakk> \<Longrightarrow> xs = ys"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3200
  by (frule nth_take_lemma [OF le_refl eq_imp_le]) simp_all
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  3201
24796
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  3202
lemma map_nth:
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  3203
  "map (\<lambda>i. xs ! i) [0..<length xs] = xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3204
  by (rule nth_equalityI, auto)
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3205
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  3206
lemma list_all2_antisym:
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  3207
  "\<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
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  3208
  \<Longrightarrow> xs = ys"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3209
  by (simp add: list_all2_conv_all_nth nth_equalityI)
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  3210
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  3211
lemma take_equalityI: "(\<forall>i. take i xs = take i ys) ==> xs = ys"
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
  3212
\<comment> \<open>The famous take-lemma.\<close>
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3213
  by (metis length_take min.commute order_refl take_all)
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  3214
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  3215
lemma take_Cons':
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3216
  "take n (x # xs) = (if n = 0 then [] else x # take (n - 1) xs)"
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  3217
by (cases n) simp_all
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  3218
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  3219
lemma drop_Cons':
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3220
  "drop n (x # xs) = (if n = 0 then x # xs else drop (n - 1) xs)"
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  3221
by (cases n) simp_all
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  3222
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  3223
lemma nth_Cons': "(x # xs)!n = (if n = 0 then x else xs!(n - 1))"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  3224
by (cases n) simp_all
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  3225
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46898
diff changeset
  3226
lemma take_Cons_numeral [simp]:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46898
diff changeset
  3227
  "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
  3228
by (simp add: take_Cons')
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46898
diff changeset
  3229
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46898
diff changeset
  3230
lemma drop_Cons_numeral [simp]:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46898
diff changeset
  3231
  "drop (numeral v) (x # xs) = drop (numeral v - 1) xs"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46898
diff changeset
  3232
by (simp add: drop_Cons')
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46898
diff changeset
  3233
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46898
diff changeset
  3234
lemma nth_Cons_numeral [simp]:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46898
diff changeset
  3235
  "(x # xs) ! numeral v = xs ! (numeral v - 1)"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46898
diff changeset
  3236
by (simp add: nth_Cons')
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  3237
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  3238
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  3239
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
  3240
1dddf2f64266 got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents: 32078
diff changeset
  3241
function upto :: "int \<Rightarrow> int \<Rightarrow> int list" ("(1[_../_])") where
51166
a019e013b7e4 tail recursive code for function "upto"
nipkow
parents: 51160
diff changeset
  3242
  "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
  3243
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
  3244
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
  3245
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
  3246
51166
a019e013b7e4 tail recursive code for function "upto"
nipkow
parents: 51160
diff changeset
  3247
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
  3248
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46898
diff changeset
  3249
lemmas upto_rec_numeral [simp] =
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46898
diff changeset
  3250
  upto.simps[of "numeral m" "numeral n"]
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54404
diff changeset
  3251
  upto.simps[of "numeral m" "- numeral n"]
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54404
diff changeset
  3252
  upto.simps[of "- numeral m" "numeral n"]
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54404
diff changeset
  3253
  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
  3254
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
  3255
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
  3256
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
  3257
67942
a3e5f08e6b58 added lemma
nipkow
parents: 67717
diff changeset
  3258
lemma upto_single[simp]: "[i..i] = [i]"
a3e5f08e6b58 added lemma
nipkow
parents: 67717
diff changeset
  3259
by(simp add: upto.simps)
a3e5f08e6b58 added lemma
nipkow
parents: 67717
diff changeset
  3260
67124
335ed2834ebc more lemmas
nipkow
parents: 67091
diff changeset
  3261
lemma upto_Nil[simp]: "[i..j] = [] \<longleftrightarrow> j < i"
335ed2834ebc more lemmas
nipkow
parents: 67091
diff changeset
  3262
by (simp add: upto.simps)
335ed2834ebc more lemmas
nipkow
parents: 67091
diff changeset
  3263
67168
bea1258d9a27 added lemmas
nipkow
parents: 67124
diff changeset
  3264
lemma upto_Nil2[simp]: "[] = [i..j] \<longleftrightarrow> j < i"
bea1258d9a27 added lemmas
nipkow
parents: 67124
diff changeset
  3265
by (simp add: upto.simps)
bea1258d9a27 added lemmas
nipkow
parents: 67124
diff changeset
  3266
51166
a019e013b7e4 tail recursive code for function "upto"
nipkow
parents: 51160
diff changeset
  3267
lemma upto_rec1: "i \<le> j \<Longrightarrow> [i..j] = i#[i+1..j]"
a019e013b7e4 tail recursive code for function "upto"
nipkow
parents: 51160
diff changeset
  3268
by(simp add: upto.simps)
a019e013b7e4 tail recursive code for function "upto"
nipkow
parents: 51160
diff changeset
  3269
a019e013b7e4 tail recursive code for function "upto"
nipkow
parents: 51160
diff changeset
  3270
lemma upto_rec2: "i \<le> j \<Longrightarrow> [i..j] = [i..j - 1]@[j]"
a019e013b7e4 tail recursive code for function "upto"
nipkow
parents: 51160
diff changeset
  3271
proof(induct "nat(j-i)" arbitrary: i j)
a019e013b7e4 tail recursive code for function "upto"
nipkow
parents: 51160
diff changeset
  3272
  case 0 thus ?case by(simp add: upto.simps)
a019e013b7e4 tail recursive code for function "upto"
nipkow
parents: 51160
diff changeset
  3273
next
a019e013b7e4 tail recursive code for function "upto"
nipkow
parents: 51160
diff changeset
  3274
  case (Suc n)
a019e013b7e4 tail recursive code for function "upto"
nipkow
parents: 51160
diff changeset
  3275
  hence "n = nat (j - (i + 1))" "i < j" by linarith+
a019e013b7e4 tail recursive code for function "upto"
nipkow
parents: 51160
diff changeset
  3276
  from this(2) Suc.hyps(1)[OF this(1)] Suc(2,3) upto_rec1 show ?case by simp
a019e013b7e4 tail recursive code for function "upto"
nipkow
parents: 51160
diff changeset
  3277
qed
a019e013b7e4 tail recursive code for function "upto"
nipkow
parents: 51160
diff changeset
  3278
67949
4bb49ed64933 added lemmas
nipkow
parents: 67942
diff changeset
  3279
lemma length_upto[simp]: "length [i..j] = nat(j - i + 1)"
4bb49ed64933 added lemmas
nipkow
parents: 67942
diff changeset
  3280
by(induction i j rule: upto.induct) (auto simp: upto.simps)
4bb49ed64933 added lemmas
nipkow
parents: 67942
diff changeset
  3281
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
  3282
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
  3283
proof(induct i j rule:upto.induct)
edbf0a86fb1c adding simproc to rewrite list comprehensions to set comprehensions; adopting proofs
bulwahn
parents: 41372
diff changeset
  3284
  case (1 i j)
edbf0a86fb1c adding simproc to rewrite list comprehensions to set comprehensions; adopting proofs
bulwahn
parents: 41372
diff changeset
  3285
  from this show ?case
55811
aa1acc25126b load Metis a little later
traytel
parents: 55807
diff changeset
  3286
    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
  3287
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
  3288
69125
60b6c759134f more [simp]
nipkow
parents: 69107
diff changeset
  3289
lemma nth_upto[simp]: "i + int k \<le> j \<Longrightarrow> [i..j] ! k = i + int k"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3290
  apply(induction i j arbitrary: k rule: upto.induct)
67949
4bb49ed64933 added lemmas
nipkow
parents: 67942
diff changeset
  3291
apply(subst upto_rec1)
4bb49ed64933 added lemmas
nipkow
parents: 67942
diff changeset
  3292
apply(auto simp add: nth_Cons')
4bb49ed64933 added lemmas
nipkow
parents: 67942
diff changeset
  3293
done
4bb49ed64933 added lemmas
nipkow
parents: 67942
diff changeset
  3294
67081
6a8c148db36f more lemmas
nipkow
parents: 66905
diff changeset
  3295
lemma upto_split1: 
6a8c148db36f more lemmas
nipkow
parents: 66905
diff changeset
  3296
  "i \<le> j \<Longrightarrow> j \<le> k \<Longrightarrow> [i..k] = [i..j-1] @ [j..k]"
6a8c148db36f more lemmas
nipkow
parents: 66905
diff changeset
  3297
proof (induction j rule: int_ge_induct)
6a8c148db36f more lemmas
nipkow
parents: 66905
diff changeset
  3298
  case base thus ?case by (simp add: upto_rec1)
6a8c148db36f more lemmas
nipkow
parents: 66905
diff changeset
  3299
next
6a8c148db36f more lemmas
nipkow
parents: 66905
diff changeset
  3300
  case step thus ?case using upto_rec1 upto_rec2 by simp
6a8c148db36f more lemmas
nipkow
parents: 66905
diff changeset
  3301
qed
6a8c148db36f more lemmas
nipkow
parents: 66905
diff changeset
  3302
6a8c148db36f more lemmas
nipkow
parents: 66905
diff changeset
  3303
lemma upto_split2: 
6a8c148db36f more lemmas
nipkow
parents: 66905
diff changeset
  3304
  "i \<le> j \<Longrightarrow> j \<le> k \<Longrightarrow> [i..k] = [i..j] @ [j+1..k]"
6a8c148db36f more lemmas
nipkow
parents: 66905
diff changeset
  3305
using upto_rec1 upto_rec2 upto_split1 by auto
6a8c148db36f more lemmas
nipkow
parents: 66905
diff changeset
  3306
67124
335ed2834ebc more lemmas
nipkow
parents: 67091
diff changeset
  3307
lemma upto_split3: "\<lbrakk> i \<le> j; j \<le> k \<rbrakk> \<Longrightarrow> [i..k] = [i..j-1] @ j # [j+1..k]"
335ed2834ebc more lemmas
nipkow
parents: 67091
diff changeset
  3308
using upto_rec1 upto_split1 by auto
335ed2834ebc more lemmas
nipkow
parents: 67091
diff changeset
  3309
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  3310
text\<open>Tail recursive version for code generation:\<close>
51166
a019e013b7e4 tail recursive code for function "upto"
nipkow
parents: 51160
diff changeset
  3311
51170
b3cdcba073d5 simplified construction of upto_aux
haftmann
parents: 51166
diff changeset
  3312
definition upto_aux :: "int \<Rightarrow> int \<Rightarrow> int list \<Rightarrow> int list" where
b3cdcba073d5 simplified construction of upto_aux
haftmann
parents: 51166
diff changeset
  3313
  "upto_aux i j js = [i..j] @ js"
b3cdcba073d5 simplified construction of upto_aux
haftmann
parents: 51166
diff changeset
  3314
b3cdcba073d5 simplified construction of upto_aux
haftmann
parents: 51166
diff changeset
  3315
lemma upto_aux_rec [code]:
51166
a019e013b7e4 tail recursive code for function "upto"
nipkow
parents: 51160
diff changeset
  3316
  "upto_aux i j js = (if j<i then js else upto_aux i (j - 1) (j#js))"
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3317
by (simp add: upto_aux_def upto_rec2)
51166
a019e013b7e4 tail recursive code for function "upto"
nipkow
parents: 51160
diff changeset
  3318
a019e013b7e4 tail recursive code for function "upto"
nipkow
parents: 51160
diff changeset
  3319
lemma upto_code[code]: "[i..j] = upto_aux i j []"
51170
b3cdcba073d5 simplified construction of upto_aux
haftmann
parents: 51166
diff changeset
  3320
by(simp add: upto_aux_def)
51166
a019e013b7e4 tail recursive code for function "upto"
nipkow
parents: 51160
diff changeset
  3321
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
  3322
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  3323
subsubsection \<open>\<^const>\<open>distinct\<close> and \<^const>\<open>remdups\<close> and \<^const>\<open>remdups_adj\<close>\<close>
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  3324
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3325
lemma distinct_tl: "distinct xs \<Longrightarrow> distinct (tl xs)"
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3326
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
  3327
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  3328
lemma distinct_append [simp]:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3329
  "distinct (xs @ ys) = (distinct xs \<and> distinct ys \<and> set xs \<inter> set ys = {})"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  3330
by (induct xs) auto
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  3331
15305
0bd9eedaa301 added lemmas
nipkow
parents: 15304
diff changeset
  3332
lemma distinct_rev[simp]: "distinct(rev xs) = distinct xs"
0bd9eedaa301 added lemmas
nipkow
parents: 15304
diff changeset
  3333
by(induct xs) auto
0bd9eedaa301 added lemmas
nipkow
parents: 15304
diff changeset
  3334
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  3335
lemma set_remdups [simp]: "set (remdups xs) = set xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  3336
by (induct xs) (auto simp add: insert_absorb)
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  3337
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  3338
lemma distinct_remdups [iff]: "distinct (remdups xs)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  3339
by (induct xs) auto
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  3340
25287
094dab519ff5 added lemmas
nipkow
parents: 25277
diff changeset
  3341
lemma distinct_remdups_id: "distinct xs ==> remdups xs = xs"
094dab519ff5 added lemmas
nipkow
parents: 25277
diff changeset
  3342
by (induct xs, auto)
094dab519ff5 added lemmas
nipkow
parents: 25277
diff changeset
  3343
26734
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  3344
lemma remdups_id_iff_distinct [simp]: "remdups xs = xs \<longleftrightarrow> distinct xs"
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  3345
by (metis distinct_remdups distinct_remdups_id)
25287
094dab519ff5 added lemmas
nipkow
parents: 25277
diff changeset
  3346
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  3347
lemma finite_distinct_list: "finite A \<Longrightarrow> \<exists>xs. set xs = A \<and> distinct xs"
24632
779fc4fcbf8b metis now available in PreList
paulson
parents: 24617
diff changeset
  3348
by (metis distinct_remdups finite_list set_remdups)
24566
2bfa0215904c added lemma
nipkow
parents: 24526
diff changeset
  3349
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 15064
diff changeset
  3350
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
  3351
by (induct x, auto)
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 15064
diff changeset
  3352
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 15064
diff changeset
  3353
lemma remdups_eq_nil_right_iff [simp]: "([] = remdups x) = (x = [])"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  3354
by (induct x, auto)
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 15064
diff changeset
  3355
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  3356
lemma length_remdups_leq[iff]: "length(remdups xs) \<le> length xs"
15245
5a21d9a8f14b Added a few lemmas
nipkow
parents: 15236
diff changeset
  3357
by (induct xs) auto
5a21d9a8f14b Added a few lemmas
nipkow
parents: 15236
diff changeset
  3358
5a21d9a8f14b Added a few lemmas
nipkow
parents: 15236
diff changeset
  3359
lemma length_remdups_eq[iff]:
5a21d9a8f14b Added a few lemmas
nipkow
parents: 15236
diff changeset
  3360
  "(length (remdups xs) = length xs) = (remdups xs = xs)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3361
proof (induct xs)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3362
  case (Cons a xs)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3363
  then show ?case
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3364
    by simp (metis Suc_n_not_le_n impossible_Cons length_remdups_leq)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3365
qed auto
15245
5a21d9a8f14b Added a few lemmas
nipkow
parents: 15236
diff changeset
  3366
33945
8493ed132fed added remdups_filter lemma
nipkow
parents: 33640
diff changeset
  3367
lemma remdups_filter: "remdups(filter P xs) = filter P (remdups xs)"
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3368
by (induct xs) auto
18490
434e34392c40 new lemmas
nipkow
parents: 18451
diff changeset
  3369
434e34392c40 new lemmas
nipkow
parents: 18451
diff changeset
  3370
lemma distinct_map:
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  3371
  "distinct(map f xs) = (distinct xs \<and> inj_on f (set xs))"
18490
434e34392c40 new lemmas
nipkow
parents: 18451
diff changeset
  3372
by (induct xs) auto
434e34392c40 new lemmas
nipkow
parents: 18451
diff changeset
  3373
58195
1fee63e0377d added various facts
haftmann
parents: 58135
diff changeset
  3374
lemma distinct_map_filter:
1fee63e0377d added various facts
haftmann
parents: 58135
diff changeset
  3375
  "distinct (map f xs) \<Longrightarrow> distinct (map f (filter P xs))"
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3376
by (induct xs) auto
58195
1fee63e0377d added various facts
haftmann
parents: 58135
diff changeset
  3377
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  3378
lemma distinct_filter [simp]: "distinct xs ==> distinct (filter P xs)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  3379
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  3380
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3381
lemma distinct_upt[simp]: "distinct[i..<j]"
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3382
by (induct j) auto
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3383
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
  3384
lemma distinct_upto[simp]: "distinct[i..j]"
1dddf2f64266 got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents: 32078
diff changeset
  3385
apply(induct i j rule:upto.induct)
1dddf2f64266 got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents: 32078
diff changeset
  3386
apply(subst upto.simps)
1dddf2f64266 got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents: 32078
diff changeset
  3387
apply(simp)
1dddf2f64266 got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents: 32078
diff changeset
  3388
done
1dddf2f64266 got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents: 32078
diff changeset
  3389
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  3390
lemma distinct_take[simp]: "distinct xs \<Longrightarrow> distinct (take i xs)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3391
proof (induct xs arbitrary: i)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3392
  case (Cons a xs)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3393
  then show ?case
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3394
    by (metis Cons.prems append_take_drop_id distinct_append)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3395
qed auto
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3396
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  3397
lemma distinct_drop[simp]: "distinct xs \<Longrightarrow> distinct (drop i xs)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3398
proof (induct xs arbitrary: i)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3399
  case (Cons a xs)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3400
  then show ?case
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3401
    by (metis Cons.prems append_take_drop_id distinct_append)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3402
qed auto
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3403
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3404
lemma distinct_list_update:
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3405
  assumes d: "distinct xs" and a: "a \<notin> set xs - {xs!i}"
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3406
  shows "distinct (xs[i:=a])"
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3407
proof (cases "i < length xs")
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3408
  case True
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3409
  with a have anot: "a \<notin> set (take i xs @ xs ! i # drop (Suc i) xs) - {xs!i}"
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3410
    by simp (metis in_set_dropD in_set_takeD)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3411
  show ?thesis
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3412
  proof (cases "a = xs!i")
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3413
    case True
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3414
    with d show ?thesis
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3415
      by auto
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3416
  next
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3417
    case False
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3418
    then show ?thesis
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3419
      using d anot \<open>i < length xs\<close> 
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3420
      apply (simp add: upd_conv_take_nth_drop)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3421
      by (metis disjoint_insert(1) distinct_append id_take_nth_drop set_simps(2))
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3422
  qed
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3423
next
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3424
  case False with d show ?thesis by auto
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3425
qed
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3426
31363
7493b571b37d Added theorems about distinct & concat, map & replicate and concat & replicate
hoelzl
parents: 31264
diff changeset
  3427
lemma distinct_concat:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3428
  "\<lbrakk> distinct xs;
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3429
     \<And> ys. ys \<in> set xs \<Longrightarrow> distinct ys;
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3430
     \<And> ys zs. \<lbrakk> ys \<in> set xs ; zs \<in> set xs ; ys \<noteq> zs \<rbrakk> \<Longrightarrow> set ys \<inter> set zs = {}
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3431
   \<rbrakk> \<Longrightarrow> distinct (concat xs)"
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3432
by (induct xs) auto
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3433
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  3434
text \<open>It is best to avoid this indexed version of distinct, but
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  3435
sometimes it is useful.\<close>
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3436
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3437
lemma distinct_conv_nth: "distinct xs = (\<forall>i < size xs. \<forall>j < size xs. i \<noteq> j \<longrightarrow> xs!i \<noteq> xs!j)"
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3438
proof (induct xs)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3439
  case (Cons x xs)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3440
  show ?case
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3441
    apply (auto simp add: Cons nth_Cons split: nat.split_asm)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3442
    apply (metis Suc_less_eq2 in_set_conv_nth less_not_refl zero_less_Suc)+
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3443
    done
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3444
qed auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  3445
18490
434e34392c40 new lemmas
nipkow
parents: 18451
diff changeset
  3446
lemma nth_eq_iff_index_eq:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3447
  "\<lbrakk> distinct xs; i < length xs; j < length xs \<rbrakk> \<Longrightarrow> (xs!i = xs!j) = (i = j)"
18490
434e34392c40 new lemmas
nipkow
parents: 18451
diff changeset
  3448
by(auto simp: distinct_conv_nth)
434e34392c40 new lemmas
nipkow
parents: 18451
diff changeset
  3449
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  3450
lemma distinct_Ex1:
63099
af0e964aad7b Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents: 63092
diff changeset
  3451
  "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
  3452
  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
  3453
59728
0bb88aa34768 added lemmas
nipkow
parents: 59582
diff changeset
  3454
lemma inj_on_nth: "distinct xs \<Longrightarrow> \<forall>i \<in> I. i < length xs \<Longrightarrow> inj_on (nth xs) I"
0bb88aa34768 added lemmas
nipkow
parents: 59582
diff changeset
  3455
by (rule inj_onI) (simp add: nth_eq_iff_index_eq)
0bb88aa34768 added lemmas
nipkow
parents: 59582
diff changeset
  3456
63099
af0e964aad7b Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents: 63092
diff changeset
  3457
lemma bij_betw_nth:
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  3458
  assumes "distinct xs" "A = {..<length xs}" "B = set xs"
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67171
diff changeset
  3459
  shows   "bij_betw ((!) xs) A B"
63099
af0e964aad7b Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents: 63092
diff changeset
  3460
  using assms unfolding bij_betw_def
af0e964aad7b Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents: 63092
diff changeset
  3461
  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
  3462
56953
e503d80f7f35 added lemma
nipkow
parents: 56790
diff changeset
  3463
lemma set_update_distinct: "\<lbrakk> distinct xs;  n < length xs \<rbrakk> \<Longrightarrow>
e503d80f7f35 added lemma
nipkow
parents: 56790
diff changeset
  3464
  set(xs[n := x]) = insert x (set xs - {xs!n})"
e503d80f7f35 added lemma
nipkow
parents: 56790
diff changeset
  3465
by(auto simp: set_eq_iff in_set_conv_nth nth_list_update nth_eq_iff_index_eq)
e503d80f7f35 added lemma
nipkow
parents: 56790
diff changeset
  3466
57537
810bc6c41ebd added lemmas
nipkow
parents: 57514
diff changeset
  3467
lemma distinct_swap[simp]: "\<lbrakk> i < size xs; j < size xs \<rbrakk> \<Longrightarrow>
810bc6c41ebd added lemmas
nipkow
parents: 57514
diff changeset
  3468
  distinct(xs[i := xs!j, j := xs!i]) = distinct xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3469
  apply (simp add: distinct_conv_nth nth_list_update)
57537
810bc6c41ebd added lemmas
nipkow
parents: 57514
diff changeset
  3470
apply safe
810bc6c41ebd added lemmas
nipkow
parents: 57514
diff changeset
  3471
apply metis+
810bc6c41ebd added lemmas
nipkow
parents: 57514
diff changeset
  3472
done
810bc6c41ebd added lemmas
nipkow
parents: 57514
diff changeset
  3473
810bc6c41ebd added lemmas
nipkow
parents: 57514
diff changeset
  3474
lemma set_swap[simp]:
810bc6c41ebd added lemmas
nipkow
parents: 57514
diff changeset
  3475
  "\<lbrakk> i < size xs; j < size xs \<rbrakk> \<Longrightarrow> set(xs[i := xs!j, j := xs!i]) = set xs"
810bc6c41ebd added lemmas
nipkow
parents: 57514
diff changeset
  3476
by(simp add: set_conv_nth nth_list_update) metis
810bc6c41ebd added lemmas
nipkow
parents: 57514
diff changeset
  3477
15110
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  3478
lemma distinct_card: "distinct xs ==> card (set xs) = size xs"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  3479
by (induct xs) auto
14388
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  3480
15110
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  3481
lemma card_distinct: "card (set xs) = size xs ==> distinct xs"
14388
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  3482
proof (induct xs)
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  3483
  case (Cons x xs)
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  3484
  show ?case
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  3485
  proof (cases "x \<in> set xs")
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  3486
    case False with Cons show ?thesis by simp
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  3487
  next
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  3488
    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
  3489
    have "card (set xs) = Suc (length xs)"
62390
842917225d56 more canonical names
nipkow
parents: 62343
diff changeset
  3490
      by (simp add: card_insert_if split: if_split_asm)
14388
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  3491
    moreover have "card (set xs) \<le> length xs" by (rule card_length)
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  3492
    ultimately have False by simp
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  3493
    thus ?thesis ..
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  3494
  qed
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3495
qed simp
14388
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  3496
45115
93c1ac6727a3 adding lemma to List library for executable equation of the (refl) transitive closure
bulwahn
parents: 44928
diff changeset
  3497
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
  3498
by (induct xs) (auto)
93c1ac6727a3 adding lemma to List library for executable equation of the (refl) transitive closure
bulwahn
parents: 44928
diff changeset
  3499
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  3500
lemma not_distinct_decomp: "\<not> distinct ws \<Longrightarrow> \<exists>xs ys zs y. ws = xs@[y]@ys@[y]@zs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3501
proof (induct n == "length ws" arbitrary:ws)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3502
  case (Suc n ws)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3503
  then show ?case
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3504
    using length_Suc_conv [of ws n]
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3505
    apply (auto simp: eq_commute)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3506
     apply (metis append_Nil in_set_conv_decomp_first)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3507
    by (metis append_Cons)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3508
qed simp
18490
434e34392c40 new lemmas
nipkow
parents: 18451
diff changeset
  3509
45841
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3510
lemma not_distinct_conv_prefix:
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3511
  defines "dec as xs y ys \<equiv> y \<in> set xs \<and> distinct xs \<and> as = xs @ y # ys"
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3512
  shows "\<not>distinct as \<longleftrightarrow> (\<exists>xs y ys. dec as xs y ys)" (is "?L = ?R")
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3513
proof
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3514
  assume "?L" then show "?R"
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3515
  proof (induct "length as" arbitrary: as rule: less_induct)
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3516
    case less
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3517
    obtain xs ys zs y where decomp: "as = (xs @ y # ys) @ y # zs"
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3518
      using not_distinct_decomp[OF less.prems] by auto
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3519
    show ?case
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3520
    proof (cases "distinct (xs @ y # ys)")
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3521
      case True
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3522
      with decomp have "dec as (xs @ y # ys) y zs" by (simp add: dec_def)
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3523
      then show ?thesis by blast
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3524
    next
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3525
      case False
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3526
      with less decomp obtain xs' y' ys' where "dec (xs @ y # ys) xs' y' ys'"
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3527
        by atomize_elim auto
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3528
      with decomp have "dec as xs' y' (ys' @ y # zs)" by (simp add: dec_def)
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3529
      then show ?thesis by blast
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3530
    qed
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3531
  qed
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3532
qed (auto simp: dec_def)
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3533
49948
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  3534
lemma distinct_product:
57247
8191ccf6a1bd added [simp]
nipkow
parents: 57231
diff changeset
  3535
  "distinct xs \<Longrightarrow> distinct ys \<Longrightarrow> distinct (List.product xs ys)"
8191ccf6a1bd added [simp]
nipkow
parents: 57231
diff changeset
  3536
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
  3537
53721
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3538
lemma distinct_product_lists:
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3539
  assumes "\<forall>xs \<in> set xss. distinct xs"
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3540
  shows "distinct (product_lists xss)"
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3541
using assms proof (induction xss)
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3542
  case (Cons xs xss) note * = this
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3543
  then show ?case
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3544
  proof (cases "product_lists xss")
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3545
    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
  3546
  next
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  3547
    case (Cons ps pss) with * show ?thesis
53721
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3548
      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
  3549
  qed
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3550
qed simp
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3551
18490
434e34392c40 new lemmas
nipkow
parents: 18451
diff changeset
  3552
lemma length_remdups_concat:
44921
58eef4843641 tuned proofs
huffman
parents: 44916
diff changeset
  3553
  "length (remdups (concat xss)) = card (\<Union>xs\<in>set xss. set xs)"
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3554
by (simp add: distinct_card [symmetric])
17906
719364f5179b added 2 lemmas
nipkow
parents: 17877
diff changeset
  3555
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
  3556
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
  3557
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
  3558
  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
  3559
  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
  3560
qed
17906
719364f5179b added 2 lemmas
nipkow
parents: 17877
diff changeset
  3561
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3562
lemma remdups_remdups: "remdups (remdups xs) = remdups xs"
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3563
by (induct xs) simp_all
36275
c6ca9e258269 lemmas concerning remdups
haftmann
parents: 36199
diff changeset
  3564
36851
5135adb33157 added lemmas concerning last, butlast, insort
haftmann
parents: 36622
diff changeset
  3565
lemma distinct_butlast:
46500
0196966d6d2d removing unnecessary premises in theorems of List theory
bulwahn
parents: 46448
diff changeset
  3566
  assumes "distinct xs"
36851
5135adb33157 added lemmas concerning last, butlast, insort
haftmann
parents: 36622
diff changeset
  3567
  shows "distinct (butlast xs)"
46500
0196966d6d2d removing unnecessary premises in theorems of List theory
bulwahn
parents: 46448
diff changeset
  3568
proof (cases "xs = []")
0196966d6d2d removing unnecessary premises in theorems of List theory
bulwahn
parents: 46448
diff changeset
  3569
  case False
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  3570
    from \<open>xs \<noteq> []\<close> obtain ys y where "xs = ys @ [y]" by (cases xs rule: rev_cases) auto
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  3571
    with \<open>distinct xs\<close> show ?thesis by simp
46500
0196966d6d2d removing unnecessary premises in theorems of List theory
bulwahn
parents: 46448
diff changeset
  3572
qed (auto)
36851
5135adb33157 added lemmas concerning last, butlast, insort
haftmann
parents: 36622
diff changeset
  3573
39728
832c42be723e lemma remdups_map_remdups
haftmann
parents: 39613
diff changeset
  3574
lemma remdups_map_remdups:
832c42be723e lemma remdups_map_remdups
haftmann
parents: 39613
diff changeset
  3575
  "remdups (map f (remdups xs)) = remdups (map f xs)"
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3576
by (induct xs) simp_all
39728
832c42be723e lemma remdups_map_remdups
haftmann
parents: 39613
diff changeset
  3577
39915
ecf97cf3d248 turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents: 39774
diff changeset
  3578
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
  3579
  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
  3580
  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
  3581
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
  3582
  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
  3583
  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
  3584
  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
  3585
  with assms have "distinct xs'" by simp
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  3586
  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
  3587
    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
  3588
qed
ecf97cf3d248 turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents: 39774
diff changeset
  3589
ecf97cf3d248 turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents: 39774
diff changeset
  3590
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
  3591
  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
  3592
  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
  3593
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
  3594
  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
  3595
  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
  3596
  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
  3597
  with assms have "distinct ys'" by simp
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  3598
  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
  3599
    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
  3600
qed
ecf97cf3d248 turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents: 39774
diff changeset
  3601
47122
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3602
lemma set_take_disj_set_drop_if_distinct:
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3603
  "distinct vs \<Longrightarrow> i \<le> j \<Longrightarrow> set (take i vs) \<inter> set (drop j vs) = {}"
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3604
by (auto simp: in_set_conv_nth distinct_conv_nth)
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3605
44635
3d046864ebe6 added two lemmas about "distinct" to help Sledgehammer
blanchet
parents: 44619
diff changeset
  3606
(* The next two lemmas help Sledgehammer. *)
3d046864ebe6 added two lemmas about "distinct" to help Sledgehammer
blanchet
parents: 44619
diff changeset
  3607
3d046864ebe6 added two lemmas about "distinct" to help Sledgehammer
blanchet
parents: 44619
diff changeset
  3608
lemma distinct_singleton: "distinct [x]" by simp
3d046864ebe6 added two lemmas about "distinct" to help Sledgehammer
blanchet
parents: 44619
diff changeset
  3609
3d046864ebe6 added two lemmas about "distinct" to help Sledgehammer
blanchet
parents: 44619
diff changeset
  3610
lemma distinct_length_2_or_more:
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3611
  "distinct (a # b # xs) \<longleftrightarrow> (a \<noteq> b \<and> distinct (a # xs) \<and> distinct (b # xs))"
56085
3d11892ea537 killed a few 'metis' calls
blanchet
parents: 55945
diff changeset
  3612
by force
44635
3d046864ebe6 added two lemmas about "distinct" to help Sledgehammer
blanchet
parents: 44619
diff changeset
  3613
58969
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3614
lemma remdups_adj_altdef: "(remdups_adj xs = ys) \<longleftrightarrow>
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  3615
  (\<exists>f::nat => nat. mono f \<and> f ` {0 ..< size xs} = {0 ..< size ys}
58969
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3616
    \<and> (\<forall>i < size xs. xs!i = ys!(f i))
61941
31f2105521ee discontinued ASCII replacement syntax <->;
wenzelm
parents: 61824
diff changeset
  3617
    \<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
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3618
proof
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3619
  assume ?L
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3620
  then show "\<exists>f. ?p f xs ys"
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3621
  proof (induct xs arbitrary: ys rule: remdups_adj.induct)
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3622
    case (1 ys)
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3623
    thus ?case by (intro exI[of _ id]) (auto simp: mono_def)
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3624
  next
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3625
    case (2 x ys)
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3626
    thus ?case by (intro exI[of _ id]) (auto simp: mono_def)
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3627
  next
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3628
    case (3 x1 x2 xs ys)
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3629
    let ?xs = "x1 # x2 # xs"
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3630
    let ?cond = "x1 = x2"
63040
eb4ddd18d635 eliminated old 'def';
wenzelm
parents: 62580
diff changeset
  3631
    define zs where "zs = remdups_adj (x2 # xs)"
58969
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3632
    from 3(1-2)[of zs]
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3633
    obtain f where p: "?p f (x2 # xs) zs" unfolding zs_def by (cases ?cond) auto
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3634
    then have f0: "f 0 = 0"
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3635
      by (intro mono_image_least[where f=f]) blast+
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3636
    from p have mono: "mono f" and f_xs_zs: "f ` {0..<length (x2 # xs)} = {0..<length zs}" by auto
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3637
    have ys: "ys = (if x1 = x2 then zs else x1 # zs)"
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3638
      unfolding 3(3)[symmetric] zs_def by auto
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3639
    have zs0: "zs ! 0 = x2" unfolding zs_def by (induct xs) auto
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3640
    have zsne: "zs \<noteq> []" unfolding zs_def by (induct xs) auto
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3641
    let ?Succ = "if ?cond then id else Suc"
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3642
    let ?x1 = "if ?cond then id else Cons x1"
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3643
    let ?f = "\<lambda> i. if i = 0 then 0 else ?Succ (f (i - 1))"
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3644
    have ys: "ys = ?x1 zs" unfolding ys by (cases ?cond, auto)
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  3645
    have mono: "mono ?f" using \<open>mono f\<close> unfolding mono_def by auto
58969
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3646
    show ?case unfolding ys
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3647
    proof (intro exI[of _ ?f] conjI allI impI)
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3648
      show "mono ?f" by fact
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3649
    next
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3650
      fix i assume i: "i < length ?xs"
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3651
      with p show "?xs ! i = ?x1 zs ! (?f i)" using zs0 by auto
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3652
    next
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3653
      fix i assume i: "i + 1 < length ?xs"
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3654
      with p show "(?xs ! i = ?xs ! (i + 1)) = (?f i = ?f (i + 1))"
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3655
        by (cases i) (auto simp: f0)
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3656
    next
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3657
      have id: "{0 ..< length (?x1 zs)} = insert 0 (?Succ ` {0 ..< length zs})"
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3658
        using zsne by (cases ?cond, auto)
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3659
      { fix i  assume "i < Suc (length xs)"
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67171
diff changeset
  3660
        hence "Suc i \<in> {0..<Suc (Suc (length xs))} \<inter> Collect ((<) 0)" by auto
58969
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3661
        from imageI[OF this, of "\<lambda>i. ?Succ (f (i - Suc 0))"]
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67171
diff changeset
  3662
        have "?Succ (f i) \<in> (\<lambda>i. ?Succ (f (i - Suc 0))) ` ({0..<Suc (Suc (length xs))} \<inter> Collect ((<) 0))" by auto
58969
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3663
      }
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3664
      then show "?f ` {0 ..< length ?xs} = {0 ..< length (?x1  zs)}"
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3665
        unfolding id f_xs_zs[symmetric] by auto
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3666
    qed
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3667
  qed
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3668
next
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3669
  assume "\<exists> f. ?p f xs ys"
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3670
  then show ?L
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3671
  proof (induct xs arbitrary: ys rule: remdups_adj.induct)
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3672
    case 1 then show ?case by auto
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3673
  next
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3674
    case (2 x) then obtain f where f_img: "f ` {0 ..< size [x]} = {0 ..< size ys}"
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3675
        and f_nth: "\<And>i. i < size [x] \<Longrightarrow> [x]!i = ys!(f i)"
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3676
      by blast
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3677
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3678
    have "length ys = card (f ` {0 ..< size [x]})"
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3679
      using f_img by auto
63540
f8652d0534fa tuned proofs -- avoid unstructured calculation;
wenzelm
parents: 63521
diff changeset
  3680
    then have *: "length ys = 1" by auto
58969
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3681
    then have "f 0 = 0" using f_img by auto
63540
f8652d0534fa tuned proofs -- avoid unstructured calculation;
wenzelm
parents: 63521
diff changeset
  3682
    with * show ?case using f_nth by (cases ys) auto
58969
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3683
  next
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3684
    case (3 x1 x2 xs)
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3685
    from "3.prems" obtain f where f_mono: "mono f"
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3686
      and f_img: "f ` {0..<length (x1 # x2 # xs)} = {0..<length ys}"
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3687
      and f_nth:
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3688
        "\<And>i. i < length (x1 # x2 # xs) \<Longrightarrow> (x1 # x2 # xs) ! i = ys ! f i"
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3689
        "\<And>i. i + 1 < length (x1 # x2 #xs) \<Longrightarrow>
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3690
          ((x1 # x2 # xs) ! i = (x1 # x2 # xs) ! (i + 1)) = (f i = f (i + 1))"
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3691
      by blast
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3692
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3693
    show ?case
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3694
    proof cases
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3695
      assume "x1 = x2"
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3696
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  3697
      let ?f' = "f \<circ> Suc"
58969
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3698
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3699
      have "remdups_adj (x1 # xs) = ys"
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3700
      proof (intro "3.hyps" exI conjI impI allI)
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3701
        show "mono ?f'"
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3702
          using f_mono by (simp add: mono_iff_le_Suc)
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3703
      next
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3704
        have "?f' ` {0 ..< length (x1 # xs)} = f ` {Suc 0 ..< length (x1 # x2 # xs)}"
69850
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  3705
          apply safe
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  3706
           apply fastforce
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  3707
          subgoal for \<dots> x by (cases x) auto
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  3708
          done
58969
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3709
        also have "\<dots> = f ` {0 ..< length (x1 # x2 # xs)}"
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3710
        proof -
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3711
          have "f 0 = f (Suc 0)" using \<open>x1 = x2\<close> f_nth[of 0] by simp
69850
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  3712
          then show ?thesis
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  3713
            apply safe
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  3714
             apply fastforce
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  3715
            subgoal for \<dots> x by (cases x) auto
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  3716
            done
58969
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3717
        qed
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3718
        also have "\<dots> = {0 ..< length ys}" by fact
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3719
        finally show  "?f' ` {0 ..< length (x1 # xs)} = {0 ..< length ys}" .
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3720
      qed (insert f_nth[of "Suc i" for i], auto simp: \<open>x1 = x2\<close>)
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3721
      then show ?thesis using \<open>x1 = x2\<close> by simp
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3722
    next
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3723
      assume "x1 \<noteq> x2"
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3724
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3725
      have "2 \<le> length ys"
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3726
      proof -
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3727
        have "2 = card {f 0, f 1}" using \<open>x1 \<noteq> x2\<close> f_nth[of 0] by auto
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3728
        also have "\<dots> \<le> card (f ` {0..< length (x1 # x2 # xs)})"
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3729
          by (rule card_mono) auto
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3730
        finally show ?thesis using f_img by simp
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3731
      qed
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3732
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3733
      have "f 0 = 0" using f_mono f_img by (rule mono_image_least) simp
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3734
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3735
      have "f (Suc 0) = Suc 0"
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3736
      proof (rule ccontr)
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3737
        assume "f (Suc 0) \<noteq> Suc 0"
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3738
        then have "Suc 0 < f (Suc 0)" using f_nth[of 0] \<open>x1 \<noteq> x2\<close> \<open>f 0 = 0\<close> by auto
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3739
        then have "\<And>i. Suc 0 < f (Suc i)"
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3740
          using f_mono
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3741
          by (meson Suc_le_mono le0 less_le_trans monoD)
69850
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  3742
        then have "Suc 0 \<noteq> f i" for i using \<open>f 0 = 0\<close>
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  3743
          by (cases i) fastforce+
58969
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3744
        then have "Suc 0 \<notin> f ` {0 ..< length (x1 # x2 # xs)}" by auto
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3745
        then show False using f_img \<open>2 \<le> length ys\<close> by auto
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3746
      qed
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3747
      obtain ys' where "ys = x1 # x2 # ys'"
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3748
        using \<open>2 \<le> length ys\<close> f_nth[of 0] f_nth[of 1]
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3749
        apply (cases ys)
69850
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  3750
         apply (rename_tac [2] ys', case_tac [2] ys')
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  3751
          apply (auto simp: \<open>f 0 = 0\<close> \<open>f (Suc 0) = Suc 0\<close>)
5f993636ac07 tuned proofs -- eliminated odd case_tac;
wenzelm
parents: 69700
diff changeset
  3752
        done
58969
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3753
63040
eb4ddd18d635 eliminated old 'def';
wenzelm
parents: 62580
diff changeset
  3754
      define f' where "f' x = f (Suc x) - 1" for x
58969
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3755
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3756
      { fix i
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3757
        have "Suc 0 \<le> f (Suc 0)" using f_nth[of 0] \<open>x1 \<noteq> x2\<close> \<open>f 0 = 0\<close>  by auto
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3758
        also have "\<dots> \<le> f (Suc i)" using f_mono by (rule monoD) arith
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3759
        finally have "Suc 0 \<le> f (Suc i)" .
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3760
      } note Suc0_le_f_Suc = this
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3761
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3762
      { fix i have "f (Suc i) = Suc (f' i)"
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3763
          using Suc0_le_f_Suc[of i] by (auto simp: f'_def)
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3764
      } note f_Suc = this
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3765
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3766
      have "remdups_adj (x2 # xs) = (x2 # ys')"
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3767
      proof (intro "3.hyps" exI conjI impI allI)
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3768
        show "mono f'"
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3769
          using Suc0_le_f_Suc f_mono by (auto simp: f'_def mono_iff_le_Suc le_diff_iff)
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3770
      next
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3771
        have "f' ` {0 ..< length (x2 # xs)} = (\<lambda>x. f x - 1) ` {0 ..< length (x1 # x2 #xs)}"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3772
          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
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3773
        also have "\<dots> = (\<lambda>x. x - 1) ` f ` {0 ..< length (x1 # x2 #xs)}"
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3774
          by (auto simp: image_comp)
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3775
        also have "\<dots> = (\<lambda>x. x - 1) ` {0 ..< length ys}"
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3776
          by (simp only: f_img)
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3777
        also have "\<dots> = {0 ..< length (x2 # ys')}"
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3778
          using \<open>ys = _\<close> by (fastforce intro: rev_image_eqI)
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3779
        finally show  "f' ` {0 ..< length (x2 # xs)} = {0 ..< length (x2 # ys')}" .
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3780
      qed (insert f_nth[of "Suc i" for i] \<open>x1 \<noteq> x2\<close>, auto simp add: f_Suc \<open>ys = _\<close>)
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3781
      then show ?case using \<open>ys = _\<close> \<open>x1 \<noteq> x2\<close> by simp
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3782
    qed
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3783
  qed
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3784
qed
5f179549c362 added lemma
noschinl
parents: 58961
diff changeset
  3785
58041
41ceac4450dc added lemmas
nipkow
parents: 57816
diff changeset
  3786
lemma hd_remdups_adj[simp]: "hd (remdups_adj xs) = hd xs"
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3787
by (induction xs rule: remdups_adj.induct) simp_all
58041
41ceac4450dc added lemmas
nipkow
parents: 57816
diff changeset
  3788
53721
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3789
lemma remdups_adj_Cons: "remdups_adj (x # xs) =
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3790
  (case remdups_adj xs of [] \<Rightarrow> [x] | y # xs \<Rightarrow> if x = y then y # xs else x # y # xs)"
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3791
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
  3792
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  3793
lemma remdups_adj_append_two:
53721
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3794
  "remdups_adj (xs @ [x,y]) = remdups_adj (xs @ [x]) @ (if x = y then [] else [y])"
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3795
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
  3796
58041
41ceac4450dc added lemmas
nipkow
parents: 57816
diff changeset
  3797
lemma remdups_adj_adjacent:
41ceac4450dc added lemmas
nipkow
parents: 57816
diff changeset
  3798
  "Suc i < length (remdups_adj xs) \<Longrightarrow> remdups_adj xs ! i \<noteq> remdups_adj xs ! Suc i"
41ceac4450dc added lemmas
nipkow
parents: 57816
diff changeset
  3799
proof (induction xs arbitrary: i rule: remdups_adj.induct)
41ceac4450dc added lemmas
nipkow
parents: 57816
diff changeset
  3800
  case (3 x y xs i)
41ceac4450dc added lemmas
nipkow
parents: 57816
diff changeset
  3801
  thus ?case by (cases i, cases "x = y") (simp, auto simp: hd_conv_nth[symmetric])
41ceac4450dc added lemmas
nipkow
parents: 57816
diff changeset
  3802
qed simp_all
41ceac4450dc added lemmas
nipkow
parents: 57816
diff changeset
  3803
53721
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3804
lemma remdups_adj_rev[simp]: "remdups_adj (rev xs) = rev (remdups_adj xs)"
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3805
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
  3806
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3807
lemma remdups_adj_length[simp]: "length (remdups_adj xs) \<le> length xs"
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3808
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
  3809
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3810
lemma remdups_adj_length_ge1[simp]: "xs \<noteq> [] \<Longrightarrow> length (remdups_adj xs) \<ge> Suc 0"
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3811
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
  3812
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3813
lemma remdups_adj_Nil_iff[simp]: "remdups_adj xs = [] \<longleftrightarrow> xs = []"
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3814
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
  3815
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3816
lemma remdups_adj_set[simp]: "set (remdups_adj xs) = set xs"
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3817
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
  3818
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3819
lemma remdups_adj_Cons_alt[simp]: "x # tl (remdups_adj (x # xs)) = remdups_adj (x # xs)"
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3820
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
  3821
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3822
lemma remdups_adj_distinct: "distinct xs \<Longrightarrow> remdups_adj xs = xs"
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3823
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
  3824
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  3825
lemma remdups_adj_append:
53721
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3826
  "remdups_adj (xs\<^sub>1 @ x # xs\<^sub>2) = remdups_adj (xs\<^sub>1 @ [x]) @ tl (remdups_adj (x # xs\<^sub>2))"
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3827
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
  3828
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3829
lemma remdups_adj_singleton:
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3830
  "remdups_adj xs = [x] \<Longrightarrow> xs = replicate (length xs) x"
62390
842917225d56 more canonical names
nipkow
parents: 62343
diff changeset
  3831
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
  3832
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3833
lemma remdups_adj_map_injective:
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3834
  assumes "inj f"
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3835
  shows "remdups_adj (map f xs) = map f (remdups_adj xs)"
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3836
by (induct xs rule: remdups_adj.induct) (auto simp add: injD[OF assms])
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3837
62065
1546a042e87b Added some facts about polynomials
eberlm
parents: 61955
diff changeset
  3838
lemma remdups_adj_replicate:
1546a042e87b Added some facts about polynomials
eberlm
parents: 61955
diff changeset
  3839
  "remdups_adj (replicate n x) = (if n = 0 then [] else [x])"
1546a042e87b Added some facts about polynomials
eberlm
parents: 61955
diff changeset
  3840
  by (induction n) (auto simp: remdups_adj_Cons)
1546a042e87b Added some facts about polynomials
eberlm
parents: 61955
diff changeset
  3841
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3842
lemma remdups_upt [simp]: "remdups [m..<n] = [m..<n]"
58437
8d124c73c37a added lemmas
haftmann
parents: 58310
diff changeset
  3843
proof (cases "m \<le> n")
8d124c73c37a added lemmas
haftmann
parents: 58310
diff changeset
  3844
  case False then show ?thesis by simp
8d124c73c37a added lemmas
haftmann
parents: 58310
diff changeset
  3845
next
8d124c73c37a added lemmas
haftmann
parents: 58310
diff changeset
  3846
  case True then obtain q where "n = m + q"
8d124c73c37a added lemmas
haftmann
parents: 58310
diff changeset
  3847
    by (auto simp add: le_iff_add)
8d124c73c37a added lemmas
haftmann
parents: 58310
diff changeset
  3848
  moreover have "remdups [m..<m + q] = [m..<m + q]"
8d124c73c37a added lemmas
haftmann
parents: 58310
diff changeset
  3849
    by (induct q) simp_all
8d124c73c37a added lemmas
haftmann
parents: 58310
diff changeset
  3850
  ultimately show ?thesis by simp
8d124c73c37a added lemmas
haftmann
parents: 58310
diff changeset
  3851
qed
8d124c73c37a added lemmas
haftmann
parents: 58310
diff changeset
  3852
49948
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  3853
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  3854
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
  3855
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  3856
lemma in_set_insert [simp]:
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  3857
  "x \<in> set xs \<Longrightarrow> List.insert x xs = xs"
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3858
by (simp add: List.insert_def)
34978
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  3859
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  3860
lemma not_in_set_insert [simp]:
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  3861
  "x \<notin> set xs \<Longrightarrow> List.insert x xs = x # xs"
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3862
by (simp add: List.insert_def)
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3863
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3864
lemma insert_Nil [simp]: "List.insert x [] = [x]"
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3865
by simp
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3866
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3867
lemma set_insert [simp]: "set (List.insert x xs) = insert x (set xs)"
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3868
by (auto simp add: List.insert_def)
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3869
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3870
lemma distinct_insert [simp]: "distinct (List.insert x xs) = distinct xs"
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3871
by (simp add: List.insert_def)
35295
397295fa8387 lemma distinct_insert
haftmann
parents: 35248
diff changeset
  3872
36275
c6ca9e258269 lemmas concerning remdups
haftmann
parents: 36199
diff changeset
  3873
lemma insert_remdups:
c6ca9e258269 lemmas concerning remdups
haftmann
parents: 36199
diff changeset
  3874
  "List.insert x (remdups xs) = remdups (List.insert x xs)"
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3875
by (simp add: List.insert_def)
36275
c6ca9e258269 lemmas concerning remdups
haftmann
parents: 36199
diff changeset
  3876
34978
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  3877
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  3878
subsubsection \<open>\<^const>\<open>List.union\<close>\<close>
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  3879
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  3880
text\<open>This is all one should need to know about union:\<close>
57198
159e1b043495 added List.union
nipkow
parents: 57123
diff changeset
  3881
lemma set_union[simp]: "set (List.union xs ys) = set xs \<union> set ys"
159e1b043495 added List.union
nipkow
parents: 57123
diff changeset
  3882
unfolding List.union_def
159e1b043495 added List.union
nipkow
parents: 57123
diff changeset
  3883
by(induct xs arbitrary: ys) simp_all
159e1b043495 added List.union
nipkow
parents: 57123
diff changeset
  3884
159e1b043495 added List.union
nipkow
parents: 57123
diff changeset
  3885
lemma distinct_union[simp]: "distinct(List.union xs ys) = distinct ys"
159e1b043495 added List.union
nipkow
parents: 57123
diff changeset
  3886
unfolding List.union_def
159e1b043495 added List.union
nipkow
parents: 57123
diff changeset
  3887
by(induct xs arbitrary: ys) simp_all
159e1b043495 added List.union
nipkow
parents: 57123
diff changeset
  3888
159e1b043495 added List.union
nipkow
parents: 57123
diff changeset
  3889
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  3890
subsubsection \<open>\<^const>\<open>List.find\<close>\<close>
47122
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3891
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3892
lemma find_None_iff: "List.find P xs = None \<longleftrightarrow> \<not> (\<exists>x. x \<in> set xs \<and> P x)"
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3893
proof (induction xs)
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3894
  case Nil thus ?case by simp
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3895
next
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3896
  case (Cons x xs) thus ?case by (fastforce split: if_splits)
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3897
qed
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3898
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3899
lemma find_Some_iff:
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3900
  "List.find P xs = Some x \<longleftrightarrow>
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3901
  (\<exists>i<length xs. P (xs!i) \<and> x = xs!i \<and> (\<forall>j<i. \<not> P (xs!j)))"
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3902
proof (induction xs)
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3903
  case Nil thus ?case by simp
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3904
next
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3905
  case (Cons x xs) thus ?case
56085
3d11892ea537 killed a few 'metis' calls
blanchet
parents: 55945
diff changeset
  3906
    apply(auto simp: nth_Cons' split: if_splits)
3d11892ea537 killed a few 'metis' calls
blanchet
parents: 55945
diff changeset
  3907
    using diff_Suc_1[unfolded One_nat_def] less_Suc_eq_0_disj by fastforce
47122
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3908
qed
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3909
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3910
lemma find_cong[fundef_cong]:
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  3911
  assumes "xs = ys" and "\<And>x. x \<in> set ys \<Longrightarrow> P x = Q x"
47122
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3912
  shows "List.find P xs = List.find Q ys"
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3913
proof (cases "List.find P xs")
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3914
  case None thus ?thesis by (metis find_None_iff assms)
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3915
next
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3916
  case (Some x)
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3917
  hence "List.find Q ys = Some x" using assms
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3918
    by (auto simp add: find_Some_iff)
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3919
  thus ?thesis using Some by auto
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3920
qed
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3921
52379
7f864f2219a9 selection operator smallest_prime_beyond
haftmann
parents: 52148
diff changeset
  3922
lemma find_dropWhile:
7f864f2219a9 selection operator smallest_prime_beyond
haftmann
parents: 52148
diff changeset
  3923
  "List.find P xs = (case dropWhile (Not \<circ> P) xs
7f864f2219a9 selection operator smallest_prime_beyond
haftmann
parents: 52148
diff changeset
  3924
   of [] \<Rightarrow> None
7f864f2219a9 selection operator smallest_prime_beyond
haftmann
parents: 52148
diff changeset
  3925
    | x # _ \<Rightarrow> Some x)"
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3926
by (induct xs) simp_all
52379
7f864f2219a9 selection operator smallest_prime_beyond
haftmann
parents: 52148
diff changeset
  3927
47122
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3928
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  3929
subsubsection \<open>\<^const>\<open>count_list\<close>\<close>
60541
4246da644cca modernized name
nipkow
parents: 60160
diff changeset
  3930
4246da644cca modernized name
nipkow
parents: 60160
diff changeset
  3931
lemma count_notin[simp]: "x \<notin> set xs \<Longrightarrow> count_list xs x = 0"
59728
0bb88aa34768 added lemmas
nipkow
parents: 59582
diff changeset
  3932
by (induction xs) auto
0bb88aa34768 added lemmas
nipkow
parents: 59582
diff changeset
  3933
60541
4246da644cca modernized name
nipkow
parents: 60160
diff changeset
  3934
lemma count_le_length: "count_list xs x \<le> length xs"
59728
0bb88aa34768 added lemmas
nipkow
parents: 59582
diff changeset
  3935
by (induction xs) auto
0bb88aa34768 added lemmas
nipkow
parents: 59582
diff changeset
  3936
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63901
diff changeset
  3937
lemma sum_count_set:
b9a1486e79be setsum -> sum
nipkow
parents: 63901
diff changeset
  3938
  "set xs \<subseteq> X \<Longrightarrow> finite X \<Longrightarrow> sum (count_list xs) X = length xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3939
proof (induction xs arbitrary: X)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3940
  case (Cons x xs)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3941
  then show ?case
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3942
    apply (auto simp: sum.If_cases sum.remove)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3943
    by (metis (no_types) Cons.IH Cons.prems(2) diff_eq sum.remove)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3944
qed simp
59728
0bb88aa34768 added lemmas
nipkow
parents: 59582
diff changeset
  3945
0bb88aa34768 added lemmas
nipkow
parents: 59582
diff changeset
  3946
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  3947
subsubsection \<open>\<^const>\<open>List.extract\<close>\<close>
55807
fd31d0e70eb8 added function "List.extract"
nipkow
parents: 55642
diff changeset
  3948
fd31d0e70eb8 added function "List.extract"
nipkow
parents: 55642
diff changeset
  3949
lemma extract_None_iff: "List.extract P xs = None \<longleftrightarrow> \<not> (\<exists> x\<in>set xs. P x)"
fd31d0e70eb8 added function "List.extract"
nipkow
parents: 55642
diff changeset
  3950
by(auto simp: extract_def dropWhile_eq_Cons_conv split: list.splits)
fd31d0e70eb8 added function "List.extract"
nipkow
parents: 55642
diff changeset
  3951
  (metis in_set_conv_decomp)
fd31d0e70eb8 added function "List.extract"
nipkow
parents: 55642
diff changeset
  3952
fd31d0e70eb8 added function "List.extract"
nipkow
parents: 55642
diff changeset
  3953
lemma extract_SomeE:
fd31d0e70eb8 added function "List.extract"
nipkow
parents: 55642
diff changeset
  3954
 "List.extract P xs = Some (ys, y, zs) \<Longrightarrow>
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  3955
  xs = ys @ y # zs \<and> P y \<and> \<not> (\<exists> y \<in> set ys. P y)"
55807
fd31d0e70eb8 added function "List.extract"
nipkow
parents: 55642
diff changeset
  3956
by(auto simp: extract_def dropWhile_eq_Cons_conv split: list.splits)
fd31d0e70eb8 added function "List.extract"
nipkow
parents: 55642
diff changeset
  3957
fd31d0e70eb8 added function "List.extract"
nipkow
parents: 55642
diff changeset
  3958
lemma extract_Some_iff:
fd31d0e70eb8 added function "List.extract"
nipkow
parents: 55642
diff changeset
  3959
  "List.extract P xs = Some (ys, y, zs) \<longleftrightarrow>
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  3960
   xs = ys @ y # zs \<and> P y \<and> \<not> (\<exists> y \<in> set ys. P y)"
55807
fd31d0e70eb8 added function "List.extract"
nipkow
parents: 55642
diff changeset
  3961
by(auto simp: extract_def dropWhile_eq_Cons_conv dest: set_takeWhileD split: list.splits)
fd31d0e70eb8 added function "List.extract"
nipkow
parents: 55642
diff changeset
  3962
fd31d0e70eb8 added function "List.extract"
nipkow
parents: 55642
diff changeset
  3963
lemma extract_Nil_code[code]: "List.extract P [] = None"
fd31d0e70eb8 added function "List.extract"
nipkow
parents: 55642
diff changeset
  3964
by(simp add: extract_def)
fd31d0e70eb8 added function "List.extract"
nipkow
parents: 55642
diff changeset
  3965
fd31d0e70eb8 added function "List.extract"
nipkow
parents: 55642
diff changeset
  3966
lemma extract_Cons_code[code]:
fd31d0e70eb8 added function "List.extract"
nipkow
parents: 55642
diff changeset
  3967
  "List.extract P (x # xs) = (if P x then Some ([], x, xs) else
fd31d0e70eb8 added function "List.extract"
nipkow
parents: 55642
diff changeset
  3968
   (case List.extract P xs of
fd31d0e70eb8 added function "List.extract"
nipkow
parents: 55642
diff changeset
  3969
      None \<Rightarrow> None |
fd31d0e70eb8 added function "List.extract"
nipkow
parents: 55642
diff changeset
  3970
      Some (ys, y, zs) \<Rightarrow> Some (x#ys, y, zs)))"
56085
3d11892ea537 killed a few 'metis' calls
blanchet
parents: 55945
diff changeset
  3971
by(auto simp add: extract_def comp_def split: list.splits)
3d11892ea537 killed a few 'metis' calls
blanchet
parents: 55945
diff changeset
  3972
  (metis dropWhile_eq_Nil_conv list.distinct(1))
55807
fd31d0e70eb8 added function "List.extract"
nipkow
parents: 55642
diff changeset
  3973
fd31d0e70eb8 added function "List.extract"
nipkow
parents: 55642
diff changeset
  3974
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  3975
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
  3976
18049
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  3977
lemma remove1_append:
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  3978
  "remove1 x (xs @ ys) =
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  3979
  (if x \<in> set xs then remove1 x xs @ ys else xs @ remove1 x ys)"
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  3980
by (induct xs) auto
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  3981
36903
489c1fbbb028 Multiset: renamed, added and tuned lemmas;
nipkow
parents: 36851
diff changeset
  3982
lemma remove1_commute: "remove1 x (remove1 y zs) = remove1 y (remove1 x zs)"
489c1fbbb028 Multiset: renamed, added and tuned lemmas;
nipkow
parents: 36851
diff changeset
  3983
by (induct zs) auto
489c1fbbb028 Multiset: renamed, added and tuned lemmas;
nipkow
parents: 36851
diff changeset
  3984
23479
10adbdcdc65b new lemmas
nipkow
parents: 23388
diff changeset
  3985
lemma in_set_remove1[simp]:
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  3986
  "a \<noteq> b \<Longrightarrow> a \<in> set(remove1 b xs) = (a \<in> set xs)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3987
  by (induct xs) auto
23479
10adbdcdc65b new lemmas
nipkow
parents: 23388
diff changeset
  3988
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  3989
lemma set_remove1_subset: "set(remove1 x xs) \<subseteq> set xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3990
  by (induct xs) auto
15110
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  3991
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  3992
lemma set_remove1_eq [simp]: "distinct xs \<Longrightarrow> set(remove1 x xs) = set xs - {x}"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  3993
  by (induct xs) auto
15110
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  3994
23479
10adbdcdc65b new lemmas
nipkow
parents: 23388
diff changeset
  3995
lemma length_remove1:
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  3996
  "length(remove1 x xs) = (if x \<in> set xs then length xs - 1 else length xs)"
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  3997
by (induct xs) (auto dest!:length_pos_if_in_set)
23479
10adbdcdc65b new lemmas
nipkow
parents: 23388
diff changeset
  3998
18049
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  3999
lemma remove1_filter_not[simp]:
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  4000
  "\<not> P x \<Longrightarrow> remove1 x (filter P xs) = filter P xs"
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  4001
by(induct xs) auto
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  4002
39073
8520a1f89db1 Add filter_remove1
hoelzl
parents: 38857
diff changeset
  4003
lemma filter_remove1:
8520a1f89db1 Add filter_remove1
hoelzl
parents: 38857
diff changeset
  4004
  "filter Q (remove1 x xs) = remove1 x (filter Q xs)"
8520a1f89db1 Add filter_remove1
hoelzl
parents: 38857
diff changeset
  4005
by (induct xs) auto
8520a1f89db1 Add filter_remove1
hoelzl
parents: 38857
diff changeset
  4006
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  4007
lemma notin_set_remove1[simp]: "x \<notin> set xs \<Longrightarrow> x \<notin> set(remove1 y xs)"
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  4008
by(insert set_remove1_subset) fast
15110
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  4009
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  4010
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
  4011
by (induct xs) simp_all
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  4012
36275
c6ca9e258269 lemmas concerning remdups
haftmann
parents: 36199
diff changeset
  4013
lemma remove1_remdups:
c6ca9e258269 lemmas concerning remdups
haftmann
parents: 36199
diff changeset
  4014
  "distinct xs \<Longrightarrow> remove1 x (remdups xs) = remdups (remove1 x xs)"
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  4015
by (induct xs) simp_all
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  4016
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  4017
lemma remove1_idem: "x \<notin> set xs \<Longrightarrow> remove1 x xs = xs"
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  4018
by (induct xs) simp_all
37107
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  4019
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  4020
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  4021
subsubsection \<open>\<^const>\<open>removeAll\<close>\<close>
27693
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  4022
34978
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  4023
lemma removeAll_filter_not_eq:
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  4024
  "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
  4025
proof
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  4026
  fix xs
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  4027
  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
  4028
    by (induct xs) auto
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  4029
qed
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  4030
27693
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  4031
lemma removeAll_append[simp]:
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  4032
  "removeAll x (xs @ ys) = removeAll x xs @ removeAll x ys"
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  4033
by (induct xs) auto
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  4034
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  4035
lemma set_removeAll[simp]: "set(removeAll x xs) = set xs - {x}"
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  4036
by (induct xs) auto
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  4037
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  4038
lemma removeAll_id[simp]: "x \<notin> set xs \<Longrightarrow> removeAll x xs = xs"
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  4039
by (induct xs) auto
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  4040
46448
f1201fac7398 more specification of the quotient package in IsarRef
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents: 46440
diff changeset
  4041
(* Needs count:: 'a \<Rightarrow> 'a list \<Rightarrow> nat
27693
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  4042
lemma length_removeAll:
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  4043
  "length(removeAll x xs) = length xs - count x xs"
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  4044
*)
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  4045
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  4046
lemma removeAll_filter_not[simp]:
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  4047
  "\<not> P x \<Longrightarrow> removeAll x (filter P xs) = filter P xs"
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  4048
by(induct xs) auto
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  4049
34978
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  4050
lemma distinct_removeAll:
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  4051
  "distinct xs \<Longrightarrow> distinct (removeAll x xs)"
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  4052
by (simp add: removeAll_filter_not_eq)
27693
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  4053
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  4054
lemma distinct_remove1_removeAll:
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  4055
  "distinct xs \<Longrightarrow> remove1 x xs = removeAll x xs"
27693
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  4056
by (induct xs) simp_all
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  4057
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  4058
lemma map_removeAll_inj_on: "inj_on f (insert x (set xs)) \<Longrightarrow>
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  4059
  map f (removeAll x xs) = removeAll (f x) (map f xs)"
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  4060
by (induct xs) (simp_all add:inj_on_def)
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  4061
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  4062
lemma map_removeAll_inj: "inj f \<Longrightarrow>
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  4063
  map f (removeAll x xs) = removeAll (f x) (map f xs)"
56085
3d11892ea537 killed a few 'metis' calls
blanchet
parents: 55945
diff changeset
  4064
by (rule map_removeAll_inj_on, erule subset_inj_on, rule subset_UNIV)
27693
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  4065
63365
5340fb6633d0 more theorems
haftmann
parents: 63343
diff changeset
  4066
lemma length_removeAll_less_eq [simp]:
5340fb6633d0 more theorems
haftmann
parents: 63343
diff changeset
  4067
  "length (removeAll x xs) \<le> length xs"
5340fb6633d0 more theorems
haftmann
parents: 63343
diff changeset
  4068
  by (simp add: removeAll_filter_not_eq)
5340fb6633d0 more theorems
haftmann
parents: 63343
diff changeset
  4069
5340fb6633d0 more theorems
haftmann
parents: 63343
diff changeset
  4070
lemma length_removeAll_less [termination_simp]:
5340fb6633d0 more theorems
haftmann
parents: 63343
diff changeset
  4071
  "x \<in> set xs \<Longrightarrow> length (removeAll x xs) < length xs"
5340fb6633d0 more theorems
haftmann
parents: 63343
diff changeset
  4072
  by (auto dest: length_filter_less simp add: removeAll_filter_not_eq)
5340fb6633d0 more theorems
haftmann
parents: 63343
diff changeset
  4073
27693
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  4074
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  4075
subsubsection \<open>\<^const>\<open>replicate\<close>\<close>
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  4076
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  4077
lemma length_replicate [simp]: "length (replicate n x) = n"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  4078
by (induct n) auto
13124
6e1decd8a7a9 new thm distinct_conv_nth
nipkow
parents: 13122
diff changeset
  4079
58437
8d124c73c37a added lemmas
haftmann
parents: 58310
diff changeset
  4080
lemma replicate_eqI:
8d124c73c37a added lemmas
haftmann
parents: 58310
diff changeset
  4081
  assumes "length xs = n" and "\<And>y. y \<in> set xs \<Longrightarrow> y = x"
8d124c73c37a added lemmas
haftmann
parents: 58310
diff changeset
  4082
  shows "xs = replicate n x"
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  4083
  using assms
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  4084
proof (induct xs arbitrary: n)
58437
8d124c73c37a added lemmas
haftmann
parents: 58310
diff changeset
  4085
  case Nil then show ?case by simp
8d124c73c37a added lemmas
haftmann
parents: 58310
diff changeset
  4086
next
8d124c73c37a added lemmas
haftmann
parents: 58310
diff changeset
  4087
  case (Cons x xs) then show ?case by (cases n) simp_all
8d124c73c37a added lemmas
haftmann
parents: 58310
diff changeset
  4088
qed
8d124c73c37a added lemmas
haftmann
parents: 58310
diff changeset
  4089
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
  4090
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
  4091
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
  4092
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  4093
lemma map_replicate [simp]: "map f (replicate n x) = replicate n (f x)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  4094
by (induct n) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  4095
31363
7493b571b37d Added theorems about distinct & concat, map & replicate and concat & replicate
hoelzl
parents: 31264
diff changeset
  4096
lemma map_replicate_const:
7493b571b37d Added theorems about distinct & concat, map & replicate and concat & replicate
hoelzl
parents: 31264
diff changeset
  4097
  "map (\<lambda> x. k) lst = replicate (length lst) k"
66853
24e4fc6b8151 added lemmas, tuned spaces
nipkow
parents: 66847
diff changeset
  4098
by (induct lst) auto
31363
7493b571b37d Added theorems about distinct & concat, map & replicate and concat & replicate
hoelzl
parents: 31264
diff changeset
  4099
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  4100
lemma replicate_app_Cons_same:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  4101
"(replicate n x) @ (x # xs) = x # replicate n x @ xs"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  4102
by (induct n) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  4103
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  4104
lemma rev_replicate [simp]: "rev (replicate n x) = replicate n x"
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  4105
by (induct n) (auto simp: replicate_app_Cons_same)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  4106
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  4107
lemma replicate_add: "replicate (n + m) x = replicate n x @ replicate m x"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  4108
by (induct n) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  4109
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  4110
text\<open>Courtesy of Matthias Daum:\<close>
16397
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  4111
lemma append_replicate_commute:
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  4112
  "replicate n x @ replicate k x = replicate k x @ replicate n x"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4113
  by (metis add.commute replicate_add)
16397
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  4114
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  4115
text\<open>Courtesy of Andreas Lochbihler:\<close>
31080
21ffc770ebc0 lemmas by Andreas Lochbihler
nipkow
parents: 31077
diff changeset
  4116
lemma filter_replicate:
21ffc770ebc0 lemmas by Andreas Lochbihler
nipkow
parents: 31077
diff changeset
  4117
  "filter P (replicate n x) = (if P x then replicate n x else [])"
21ffc770ebc0 lemmas by Andreas Lochbihler
nipkow
parents: 31077
diff changeset
  4118
by(induct n) auto
21ffc770ebc0 lemmas by Andreas Lochbihler
nipkow
parents: 31077
diff changeset
  4119
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  4120
lemma hd_replicate [simp]: "n \<noteq> 0 ==> hd (replicate n x) = x"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  4121
by (induct n) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  4122
46500
0196966d6d2d removing unnecessary premises in theorems of List theory
bulwahn
parents: 46448
diff changeset
  4123
lemma tl_replicate [simp]: "tl (replicate n x) = replicate (n - 1) x"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  4124
by (induct n) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  4125
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  4126
lemma last_replicate [simp]: "n \<noteq> 0 ==> last (replicate n x) = x"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  4127
by (atomize (full), induct n) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  4128
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  4129
lemma nth_replicate[simp]: "i < n ==> (replicate n x)!i = x"
58807
5b068376ff20 tuned layout and proofs
nipkow
parents: 58437
diff changeset
  4130
by (induct n arbitrary: i)(auto simp: nth_Cons split: nat.split)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  4131
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  4132
text\<open>Courtesy of Matthias Daum (2 lemmas):\<close>
16397
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  4133
lemma take_replicate[simp]: "take i (replicate k x) = replicate (min i k) x"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4134
proof (cases "k \<le> i")
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4135
  case True
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4136
  then show ?thesis
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4137
    by (simp add: min_def)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4138
next
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4139
  case False
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4140
  then have "replicate k x = replicate i x @ replicate (k - i) x"
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4141
    by (simp add: replicate_add [symmetric])
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4142
  then show ?thesis
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4143
    by (simp add: min_def)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4144
qed
16397
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  4145
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  4146
lemma drop_replicate[simp]: "drop i (replicate k x) = replicate (k-i) x"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4147
proof (induct k arbitrary: i)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4148
  case (Suc k)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4149
  then show ?case
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4150
    by (simp add: drop_Cons')
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4151
qed simp
16397
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  4152
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  4153
lemma set_replicate_Suc: "set (replicate (Suc n) x) = {x}"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  4154
by (induct n) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  4155
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  4156
lemma set_replicate [simp]: "n \<noteq> 0 ==> set (replicate n x) = {x}"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  4157
by (fast dest!: not0_implies_Suc intro!: set_replicate_Suc)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  4158
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  4159
lemma set_replicate_conv_if: "set (replicate n x) = (if n = 0 then {} else {x})"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  4160
by auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  4161
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  4162
lemma in_set_replicate[simp]: "(x \<in> set (replicate n y)) = (x = y \<and> n \<noteq> 0)"
37456
0a1cc2675958 tuned set_replicate lemmas
nipkow
parents: 37455
diff changeset
  4163
by (simp add: set_replicate_conv_if)
0a1cc2675958 tuned set_replicate lemmas
nipkow
parents: 37455
diff changeset
  4164
37454
9132a5955127 added lemmas
nipkow
parents: 37424
diff changeset
  4165
lemma Ball_set_replicate[simp]:
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  4166
  "(\<forall>x \<in> set(replicate n a). P x) = (P a \<or> n=0)"
37454
9132a5955127 added lemmas
nipkow
parents: 37424
diff changeset
  4167
by(simp add: set_replicate_conv_if)
9132a5955127 added lemmas
nipkow
parents: 37424
diff changeset
  4168
9132a5955127 added lemmas
nipkow
parents: 37424
diff changeset
  4169
lemma Bex_set_replicate[simp]:
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  4170
  "(\<exists>x \<in> set(replicate n a). P x) = (P a \<and> n\<noteq>0)"
37454
9132a5955127 added lemmas
nipkow
parents: 37424
diff changeset
  4171
by(simp add: set_replicate_conv_if)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  4172
24796
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  4173
lemma replicate_append_same:
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  4174
  "replicate i x @ [x] = x # replicate i x"
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  4175
  by (induct i) simp_all
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  4176
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  4177
lemma map_replicate_trivial:
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  4178
  "map (\<lambda>i. x) [0..<i] = replicate i x"
66853
24e4fc6b8151 added lemmas, tuned spaces
nipkow
parents: 66847
diff changeset
  4179
by (induct i) (simp_all add: replicate_append_same)
24796
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  4180
31363
7493b571b37d Added theorems about distinct & concat, map & replicate and concat & replicate
hoelzl
parents: 31264
diff changeset
  4181
lemma concat_replicate_trivial[simp]:
7493b571b37d Added theorems about distinct & concat, map & replicate and concat & replicate
hoelzl
parents: 31264
diff changeset
  4182
  "concat (replicate i []) = []"
7493b571b37d Added theorems about distinct & concat, map & replicate and concat & replicate
hoelzl
parents: 31264
diff changeset
  4183
  by (induct i) (auto simp add: map_replicate_const)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  4184
28642
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  4185
lemma replicate_empty[simp]: "(replicate n x = []) \<longleftrightarrow> n=0"
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  4186
by (induct n) auto
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  4187
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  4188
lemma empty_replicate[simp]: "([] = replicate n x) \<longleftrightarrow> n=0"
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  4189
by (induct n) auto
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  4190
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  4191
lemma replicate_eq_replicate[simp]:
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  4192
  "(replicate m x = replicate n y) \<longleftrightarrow> (m=n \<and> (m\<noteq>0 \<longrightarrow> x=y))"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4193
proof (induct m arbitrary: n)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4194
  case (Suc m n)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4195
  then show ?case
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4196
    by (induct n) auto
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4197
qed simp
28642
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  4198
39534
c798d4f1b682 generalized lemma insort_remove1 to insort_key_remove1
haftmann
parents: 39302
diff changeset
  4199
lemma replicate_length_filter:
c798d4f1b682 generalized lemma insort_remove1 to insort_key_remove1
haftmann
parents: 39302
diff changeset
  4200
  "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
  4201
  by (induct xs) auto
c798d4f1b682 generalized lemma insort_remove1 to insort_key_remove1
haftmann
parents: 39302
diff changeset
  4202
42714
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  4203
lemma comm_append_are_replicate:
66853
24e4fc6b8151 added lemmas, tuned spaces
nipkow
parents: 66847
diff changeset
  4204
  "\<lbrakk> xs \<noteq> []; ys \<noteq> []; xs @ ys = ys @ xs \<rbrakk>
24e4fc6b8151 added lemmas, tuned spaces
nipkow
parents: 66847
diff changeset
  4205
  \<Longrightarrow> \<exists>m n zs. concat (replicate m zs) = xs \<and> concat (replicate n zs) = ys"
24e4fc6b8151 added lemmas, tuned spaces
nipkow
parents: 66847
diff changeset
  4206
proof (induction "length (xs @ ys)" arbitrary: xs ys rule: less_induct)
42714
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  4207
  case less
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  4208
63040
eb4ddd18d635 eliminated old 'def';
wenzelm
parents: 62580
diff changeset
  4209
  define xs' ys' where "xs' = (if (length xs \<le> length ys) then xs else ys)"
eb4ddd18d635 eliminated old 'def';
wenzelm
parents: 62580
diff changeset
  4210
    and "ys' = (if (length xs \<le> length ys) then ys else xs)"
42714
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  4211
  then have
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  4212
    prems': "length xs' \<le> length ys'"
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  4213
            "xs' @ ys' = ys' @ xs'"
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  4214
      and "xs' \<noteq> []"
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  4215
      and len: "length (xs @ ys) = length (xs' @ ys')"
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  4216
    using less by (auto intro: less.hyps)
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  4217
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  4218
  from prems'
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  4219
  obtain ws where "ys' = xs' @ ws"
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  4220
    by (auto simp: append_eq_append_conv2)
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  4221
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  4222
  have "\<exists>m n zs. concat (replicate m zs) = xs' \<and> concat (replicate n zs) = ys'"
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  4223
  proof (cases "ws = []")
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  4224
    case True
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  4225
    then have "concat (replicate 1 xs') = xs'"
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  4226
      and "concat (replicate 1 xs') = ys'"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  4227
      using \<open>ys' = xs' @ ws\<close> by auto
42714
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  4228
    then show ?thesis by blast
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  4229
  next
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  4230
    case False
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  4231
    from \<open>ys' = xs' @ ws\<close> and \<open>xs' @ ys' = ys' @ xs'\<close>
42714
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  4232
    have "xs' @ ws = ws @ xs'" by simp
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  4233
    then have "\<exists>m n zs. concat (replicate m zs) = xs' \<and> concat (replicate n zs) = ws"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  4234
      using False and \<open>xs' \<noteq> []\<close> and \<open>ys' = xs' @ ws\<close> and len
42714
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  4235
      by (intro less.hyps) auto
53374
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53017
diff changeset
  4236
    then obtain m n zs where *: "concat (replicate m zs) = xs'"
42714
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  4237
      and "concat (replicate n zs) = ws" by blast
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  4238
    then have "concat (replicate (m + n) zs) = ys'"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  4239
      using \<open>ys' = xs' @ ws\<close>
42714
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  4240
      by (simp add: replicate_add)
53374
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53017
diff changeset
  4241
    with * show ?thesis by blast
42714
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  4242
  qed
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  4243
  then show ?case
56085
3d11892ea537 killed a few 'metis' calls
blanchet
parents: 55945
diff changeset
  4244
    using xs'_def ys'_def by meson
42714
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  4245
qed
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  4246
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  4247
lemma comm_append_is_replicate:
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  4248
  fixes xs ys :: "'a list"
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  4249
  assumes "xs \<noteq> []" "ys \<noteq> []"
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  4250
  assumes "xs @ ys = ys @ xs"
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  4251
  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
  4252
proof -
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  4253
  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
  4254
    and "concat (replicate n zs) = ys"
56085
3d11892ea537 killed a few 'metis' calls
blanchet
parents: 55945
diff changeset
  4255
    using comm_append_are_replicate[of xs ys, OF assms] by blast
42714
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  4256
  then have "m + n > 1" and "concat (replicate (m+n) zs) = xs @ ys"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  4257
    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
  4258
    by (auto simp: replicate_add)
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  4259
  then show ?thesis by blast
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  4260
qed
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  4261
52380
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  4262
lemma Cons_replicate_eq:
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  4263
  "x # xs = replicate n y \<longleftrightarrow> x = y \<and> n > 0 \<and> xs = replicate (n - 1) x"
66853
24e4fc6b8151 added lemmas, tuned spaces
nipkow
parents: 66847
diff changeset
  4264
by (induct n) auto
52380
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  4265
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  4266
lemma replicate_length_same:
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  4267
  "(\<forall>y\<in>set xs. y = x) \<Longrightarrow> replicate (length xs) x = xs"
66853
24e4fc6b8151 added lemmas, tuned spaces
nipkow
parents: 66847
diff changeset
  4268
by (induct xs) simp_all
52380
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  4269
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  4270
lemma foldr_replicate [simp]:
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  4271
  "foldr f (replicate n x) = f x ^^ n"
66853
24e4fc6b8151 added lemmas, tuned spaces
nipkow
parents: 66847
diff changeset
  4272
by (induct n) (simp_all)
52380
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  4273
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  4274
lemma fold_replicate [simp]:
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  4275
  "fold f (replicate n x) = f x ^^ n"
66853
24e4fc6b8151 added lemmas, tuned spaces
nipkow
parents: 66847
diff changeset
  4276
by (subst foldr_fold [symmetric]) simp_all
52380
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  4277
28642
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  4278
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  4279
subsubsection \<open>\<^const>\<open>enumerate\<close>\<close>
51173
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4280
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4281
lemma enumerate_simps [simp, code]:
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4282
  "enumerate n [] = []"
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4283
  "enumerate n (x # xs) = (n, x) # enumerate (Suc n) xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4284
  by (simp_all add: enumerate_eq_zip upt_rec)
51173
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4285
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4286
lemma length_enumerate [simp]:
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4287
  "length (enumerate n xs) = length xs"
66853
24e4fc6b8151 added lemmas, tuned spaces
nipkow
parents: 66847
diff changeset
  4288
by (simp add: enumerate_eq_zip)
51173
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4289
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4290
lemma map_fst_enumerate [simp]:
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4291
  "map fst (enumerate n xs) = [n..<n + length xs]"
66853
24e4fc6b8151 added lemmas, tuned spaces
nipkow
parents: 66847
diff changeset
  4292
by (simp add: enumerate_eq_zip)
51173
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4293
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4294
lemma map_snd_enumerate [simp]:
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4295
  "map snd (enumerate n xs) = xs"
66853
24e4fc6b8151 added lemmas, tuned spaces
nipkow
parents: 66847
diff changeset
  4296
by (simp add: enumerate_eq_zip)
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  4297
51173
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4298
lemma in_set_enumerate_eq:
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4299
  "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"
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4300
proof -
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4301
  { fix m
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4302
    assume "n \<le> m"
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4303
    moreover assume "m < length xs + n"
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4304
    ultimately have "[n..<n + length xs] ! (m - n) = m \<and>
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4305
      xs ! (m - n) = xs ! (m - n) \<and> m - n < length xs" by auto
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4306
    then have "\<exists>q. [n..<n + length xs] ! q = m \<and>
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4307
        xs ! q = xs ! (m - n) \<and> q < length xs" ..
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4308
  } then show ?thesis by (cases p) (auto simp add: enumerate_eq_zip in_set_zip)
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4309
qed
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4310
66853
24e4fc6b8151 added lemmas, tuned spaces
nipkow
parents: 66847
diff changeset
  4311
lemma nth_enumerate_eq: "m < length xs \<Longrightarrow> enumerate n xs ! m = (n + m, xs ! m)"
24e4fc6b8151 added lemmas, tuned spaces
nipkow
parents: 66847
diff changeset
  4312
by (simp add: enumerate_eq_zip)
51173
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4313
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4314
lemma enumerate_replicate_eq:
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4315
  "enumerate n (replicate m a) = map (\<lambda>q. (q, a)) [n..<n + m]"
66853
24e4fc6b8151 added lemmas, tuned spaces
nipkow
parents: 66847
diff changeset
  4316
by (rule pair_list_eqI)
24e4fc6b8151 added lemmas, tuned spaces
nipkow
parents: 66847
diff changeset
  4317
   (simp_all add: enumerate_eq_zip comp_def map_replicate_const)
51173
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4318
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4319
lemma enumerate_Suc_eq:
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4320
  "enumerate (Suc n) xs = map (apfst Suc) (enumerate n xs)"
66853
24e4fc6b8151 added lemmas, tuned spaces
nipkow
parents: 66847
diff changeset
  4321
by (rule pair_list_eqI)
24e4fc6b8151 added lemmas, tuned spaces
nipkow
parents: 66847
diff changeset
  4322
   (simp_all add: not_le, simp del: map_map add: map_Suc_upt map_map [symmetric])
51173
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4323
52379
7f864f2219a9 selection operator smallest_prime_beyond
haftmann
parents: 52148
diff changeset
  4324
lemma distinct_enumerate [simp]:
7f864f2219a9 selection operator smallest_prime_beyond
haftmann
parents: 52148
diff changeset
  4325
  "distinct (enumerate n xs)"
66853
24e4fc6b8151 added lemmas, tuned spaces
nipkow
parents: 66847
diff changeset
  4326
by (simp add: enumerate_eq_zip distinct_zipI1)
52379
7f864f2219a9 selection operator smallest_prime_beyond
haftmann
parents: 52148
diff changeset
  4327
58437
8d124c73c37a added lemmas
haftmann
parents: 58310
diff changeset
  4328
lemma enumerate_append_eq:
8d124c73c37a added lemmas
haftmann
parents: 58310
diff changeset
  4329
  "enumerate n (xs @ ys) = enumerate n xs @ enumerate (n + length xs) ys"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4330
  by (simp add: enumerate_eq_zip add.assoc zip_append2)
58437
8d124c73c37a added lemmas
haftmann
parents: 58310
diff changeset
  4331
8d124c73c37a added lemmas
haftmann
parents: 58310
diff changeset
  4332
lemma enumerate_map_upt:
8d124c73c37a added lemmas
haftmann
parents: 58310
diff changeset
  4333
  "enumerate n (map f [n..<m]) = map (\<lambda>k. (k, f k)) [n..<m]"
66853
24e4fc6b8151 added lemmas, tuned spaces
nipkow
parents: 66847
diff changeset
  4334
by (cases "n \<le> m") (simp_all add: zip_map2 zip_same_conv_map enumerate_eq_zip)
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  4335
51173
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4336
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  4337
subsubsection \<open>\<^const>\<open>rotate1\<close> and \<^const>\<open>rotate\<close>\<close>
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4338
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4339
lemma rotate0[simp]: "rotate 0 = id"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4340
by(simp add:rotate_def)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4341
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4342
lemma rotate_Suc[simp]: "rotate (Suc n) xs = rotate1(rotate n xs)"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4343
by(simp add:rotate_def)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4344
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4345
lemma rotate_add:
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  4346
  "rotate (m+n) = rotate m \<circ> rotate n"
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4347
by(simp add:rotate_def funpow_add)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4348
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4349
lemma rotate_rotate: "rotate m (rotate n xs) = rotate (m+n) xs"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4350
by(simp add:rotate_add)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4351
18049
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  4352
lemma rotate1_rotate_swap: "rotate1 (rotate n xs) = rotate n (rotate1 xs)"
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  4353
by(simp add:rotate_def funpow_swap1)
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  4354
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  4355
lemma rotate1_length01[simp]: "length xs \<le> 1 \<Longrightarrow> rotate1 xs = xs"
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4356
by(cases xs) simp_all
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4357
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  4358
lemma rotate_length01[simp]: "length xs \<le> 1 \<Longrightarrow> rotate n xs = xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4359
  by (induct n) (simp_all add:rotate_def)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  4360
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4361
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
  4362
by (cases xs) simp_all
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4363
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4364
lemma rotate_drop_take:
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4365
  "rotate n xs = drop (n mod length xs) xs @ take (n mod length xs) xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4366
proof (induct n)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4367
  case (Suc n)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4368
  show ?case
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4369
  proof (cases "xs = []")
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4370
    case False
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4371
    then show ?thesis
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4372
    proof (cases "n mod length xs = 0")
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4373
      case True
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4374
      then show ?thesis
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4375
        apply (simp add: mod_Suc)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4376
        by (simp add: False Suc.hyps drop_Suc rotate1_hd_tl take_Suc)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4377
    next
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4378
      case False
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4379
      with \<open>xs \<noteq> []\<close> Suc
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4380
      show ?thesis
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4381
        by (simp add: rotate_def mod_Suc rotate1_hd_tl drop_Suc[symmetric] drop_tl[symmetric]
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4382
            take_hd_drop linorder_not_le)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4383
    qed
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4384
  qed simp
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4385
qed simp
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  4386
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4387
lemma rotate_conv_mod: "rotate n xs = rotate (n mod length xs) xs"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4388
by(simp add:rotate_drop_take)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4389
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4390
lemma rotate_id[simp]: "n mod length xs = 0 \<Longrightarrow> rotate n xs = xs"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4391
by(simp add:rotate_drop_take)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4392
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4393
lemma length_rotate1[simp]: "length(rotate1 xs) = length xs"
46440
d4994e2e7364 use 'primrec' to define "rotate1", for uniformity (and to help first-order tools that rely on "Spec_Rules")
blanchet
parents: 46439
diff changeset
  4394
by (cases xs) simp_all
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4395
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  4396
lemma length_rotate[simp]: "length(rotate n xs) = length xs"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  4397
by (induct n arbitrary: xs) (simp_all add:rotate_def)
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4398
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4399
lemma distinct1_rotate[simp]: "distinct(rotate1 xs) = distinct xs"
46440
d4994e2e7364 use 'primrec' to define "rotate1", for uniformity (and to help first-order tools that rely on "Spec_Rules")
blanchet
parents: 46439
diff changeset
  4400
by (cases xs) auto
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4401
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4402
lemma distinct_rotate[simp]: "distinct(rotate n xs) = distinct xs"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4403
by (induct n) (simp_all add:rotate_def)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4404
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4405
lemma rotate_map: "rotate n (map f xs) = map f (rotate n xs)"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4406
by(simp add:rotate_drop_take take_map drop_map)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4407
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4408
lemma set_rotate1[simp]: "set(rotate1 xs) = set xs"
46440
d4994e2e7364 use 'primrec' to define "rotate1", for uniformity (and to help first-order tools that rely on "Spec_Rules")
blanchet
parents: 46439
diff changeset
  4409
by (cases xs) auto
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4410
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4411
lemma set_rotate[simp]: "set(rotate n xs) = set xs"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4412
by (induct n) (simp_all add:rotate_def)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4413
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4414
lemma rotate1_is_Nil_conv[simp]: "(rotate1 xs = []) = (xs = [])"
46440
d4994e2e7364 use 'primrec' to define "rotate1", for uniformity (and to help first-order tools that rely on "Spec_Rules")
blanchet
parents: 46439
diff changeset
  4415
by (cases xs) auto
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4416
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4417
lemma rotate_is_Nil_conv[simp]: "(rotate n xs = []) = (xs = [])"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4418
by (induct n) (simp_all add:rotate_def)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  4419
15439
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15426
diff changeset
  4420
lemma rotate_rev:
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15426
diff changeset
  4421
  "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
  4422
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
  4423
  case False
2f4e2aab190a Generalising and renaming some basic results
paulson <lp15@cam.ac.uk>
parents: 68362
diff changeset
  4424
  then show ?thesis
2f4e2aab190a Generalising and renaming some basic results
paulson <lp15@cam.ac.uk>
parents: 68362
diff changeset
  4425
    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
  4426
qed force
15439
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15426
diff changeset
  4427
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4428
lemma hd_rotate_conv_nth:
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4429
  assumes "xs \<noteq> []" shows "hd(rotate n xs) = xs!(n mod length xs)"
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4430
proof -
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4431
  have "n mod length xs < length xs"
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4432
    using assms by simp
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4433
  then show ?thesis
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4434
    by (metis drop_eq_Nil hd_append2 hd_drop_conv_nth leD rotate_drop_take)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4435
qed
18423
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  4436
68527
2f4e2aab190a Generalising and renaming some basic results
paulson <lp15@cam.ac.uk>
parents: 68362
diff changeset
  4437
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
  4438
  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
  4439
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  4440
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  4441
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
  4442
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  4443
lemma nths_empty [simp]: "nths xs {} = []"
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  4444
by (auto simp add: nths_def)
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  4445
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  4446
lemma nths_nil [simp]: "nths [] A = []"
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  4447
by (auto simp add: nths_def)
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  4448
69203
a5c0d61ce5db added lemmas
nipkow
parents: 69140
diff changeset
  4449
lemma nths_all: "\<forall>i < length xs. i \<in> I \<Longrightarrow> nths xs I = xs"
a5c0d61ce5db added lemmas
nipkow
parents: 69140
diff changeset
  4450
apply (simp add: nths_def)
a5c0d61ce5db added lemmas
nipkow
parents: 69140
diff changeset
  4451
apply (subst filter_True)
a5c0d61ce5db added lemmas
nipkow
parents: 69140
diff changeset
  4452
 apply (clarsimp simp: in_set_zip subset_iff)
a5c0d61ce5db added lemmas
nipkow
parents: 69140
diff changeset
  4453
apply simp
a5c0d61ce5db added lemmas
nipkow
parents: 69140
diff changeset
  4454
done
a5c0d61ce5db added lemmas
nipkow
parents: 69140
diff changeset
  4455
65956
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  4456
lemma length_nths:
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  4457
  "length (nths xs I) = card{i. i < length xs \<and> i \<in> I}"
65956
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  4458
by(simp add: nths_def length_filter_conv_card cong:conj_cong)
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  4459
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  4460
lemma nths_shift_lemma_Suc:
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4461
  "map fst (filter (\<lambda>p. P(Suc(snd p))) (zip xs is)) =
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4462
   map fst (filter (\<lambda>p. P(snd p)) (zip xs (map Suc is)))"
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4463
proof (induct xs arbitrary: "is")
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4464
  case (Cons x xs "is")
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4465
  show ?case
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4466
    by (cases "is") (auto simp add: Cons.hyps)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4467
qed simp
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  4468
65956
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  4469
lemma nths_shift_lemma:
68249
949d93804740 First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents: 68215
diff changeset
  4470
  "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
  4471
   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
  4472
by (induct xs rule: rev_induct) (simp_all add: add.commute)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  4473
65956
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  4474
lemma nths_append:
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  4475
  "nths (l @ l') A = nths l A @ nths l' {j. j + length l \<in> A}"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4476
  unfolding nths_def
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4477
proof (induct l' rule: rev_induct)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4478
  case (snoc x xs)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4479
  then show ?case
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4480
    by (simp add: upt_add_eq_append[of 0] nths_shift_lemma add.commute)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4481
qed auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  4482
65956
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  4483
lemma nths_Cons:
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  4484
  "nths (x # l) A = (if 0 \<in> A then [x] else []) @ nths l {j. Suc j \<in> A}"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4485
proof (induct l rule: rev_induct)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4486
  case (snoc x xs)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4487
  then show ?case
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4488
    by (simp flip: append_Cons add: nths_append)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4489
qed (auto simp: nths_def)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  4490
66853
24e4fc6b8151 added lemmas, tuned spaces
nipkow
parents: 66847
diff changeset
  4491
lemma nths_map: "nths (map f xs) I = map f (nths xs I)"
24e4fc6b8151 added lemmas, tuned spaces
nipkow
parents: 66847
diff changeset
  4492
by(induction xs arbitrary: I) (simp_all add: nths_Cons)
24e4fc6b8151 added lemmas, tuned spaces
nipkow
parents: 66847
diff changeset
  4493
65956
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  4494
lemma set_nths: "set(nths xs I) = {xs!i|i. i<size xs \<and> i \<in> I}"
69203
a5c0d61ce5db added lemmas
nipkow
parents: 69140
diff changeset
  4495
by (induct xs arbitrary: I) (auto simp: nths_Cons nth_Cons split:nat.split dest!: gr0_implies_Suc)
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  4496
65956
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  4497
lemma set_nths_subset: "set(nths xs I) \<subseteq> set xs"
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  4498
by(auto simp add:set_nths)
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  4499
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  4500
lemma notin_set_nthsI[simp]: "x \<notin> set xs \<Longrightarrow> x \<notin> set(nths xs I)"
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  4501
by(auto simp add:set_nths)
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  4502
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  4503
lemma in_set_nthsD: "x \<in> set(nths xs I) \<Longrightarrow> x \<in> set xs"
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  4504
by(auto simp add:set_nths)
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  4505
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  4506
lemma nths_singleton [simp]: "nths [x] A = (if 0 \<in> A then [x] else [])"
65956
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  4507
by (simp add: nths_Cons)
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  4508
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  4509
lemma distinct_nthsI[simp]: "distinct xs \<Longrightarrow> distinct (nths xs I)"
66656
8f4d252ce2fe added lemma; zip_with -> map2
nipkow
parents: 66655
diff changeset
  4510
by (induct xs arbitrary: I) (auto simp: nths_Cons)
65956
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  4511
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  4512
lemma nths_upt_eq_take [simp]: "nths l {..<n} = take n l"
66656
8f4d252ce2fe added lemma; zip_with -> map2
nipkow
parents: 66655
diff changeset
  4513
by (induct l rule: rev_induct)
8f4d252ce2fe added lemma; zip_with -> map2
nipkow
parents: 66655
diff changeset
  4514
   (simp_all split: nat_diff_split add: nths_append)
8f4d252ce2fe added lemma; zip_with -> map2
nipkow
parents: 66655
diff changeset
  4515
69203
a5c0d61ce5db added lemmas
nipkow
parents: 69140
diff changeset
  4516
lemma nths_nths: "nths (nths xs A) B = nths xs {i \<in> A. \<exists>j \<in> B. card {i' \<in> A. i' < i} = j}"
a5c0d61ce5db added lemmas
nipkow
parents: 69140
diff changeset
  4517
apply(induction xs arbitrary: A B)
a5c0d61ce5db added lemmas
nipkow
parents: 69140
diff changeset
  4518
apply(auto simp add: nths_Cons card_less_Suc card_less_Suc2)
a5c0d61ce5db added lemmas
nipkow
parents: 69140
diff changeset
  4519
done
a5c0d61ce5db added lemmas
nipkow
parents: 69140
diff changeset
  4520
a5c0d61ce5db added lemmas
nipkow
parents: 69140
diff changeset
  4521
lemma drop_eq_nths: "drop n xs = nths xs {i. i \<ge> n}"
a5c0d61ce5db added lemmas
nipkow
parents: 69140
diff changeset
  4522
apply(induction xs arbitrary: n)
a5c0d61ce5db added lemmas
nipkow
parents: 69140
diff changeset
  4523
apply (auto simp add: nths_Cons nths_all drop_Cons' intro: arg_cong2[where f=nths, OF refl])
a5c0d61ce5db added lemmas
nipkow
parents: 69140
diff changeset
  4524
done
a5c0d61ce5db added lemmas
nipkow
parents: 69140
diff changeset
  4525
a5c0d61ce5db added lemmas
nipkow
parents: 69140
diff changeset
  4526
lemma nths_drop: "nths (drop n xs) I = nths xs ((+) n ` I)"
a5c0d61ce5db added lemmas
nipkow
parents: 69140
diff changeset
  4527
by(force simp: drop_eq_nths nths_nths simp flip: atLeastLessThan_iff
a5c0d61ce5db added lemmas
nipkow
parents: 69140
diff changeset
  4528
         intro: arg_cong2[where f=nths, OF refl])
a5c0d61ce5db added lemmas
nipkow
parents: 69140
diff changeset
  4529
66656
8f4d252ce2fe added lemma; zip_with -> map2
nipkow
parents: 66655
diff changeset
  4530
lemma filter_eq_nths: "filter P xs = nths xs {i. i<length xs \<and> P(xs!i)}"
8f4d252ce2fe added lemma; zip_with -> map2
nipkow
parents: 66655
diff changeset
  4531
by(induction xs) (auto simp: nths_Cons)
65956
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  4532
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  4533
lemma filter_in_nths:
66656
8f4d252ce2fe added lemma; zip_with -> map2
nipkow
parents: 66655
diff changeset
  4534
  "distinct xs \<Longrightarrow> filter (%x. x \<in> set (nths xs s)) xs = nths xs s"
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  4535
proof (induct xs arbitrary: s)
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  4536
  case Nil thus ?case by simp
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  4537
next
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  4538
  case (Cons a xs)
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  4539
  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
  4540
  with Cons show ?case by(simp add: nths_Cons cong:filter_cong)
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  4541
qed
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  4542
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  4543
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  4544
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
  4545
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  4546
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
  4547
  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
  4548
65956
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  4549
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
  4550
proof -
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4551
  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
  4552
    by (auto simp add: image_def)
65956
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  4553
  have "set (map set (subseqs xs)) = Pow (set xs)"
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  4554
    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
  4555
  then show ?thesis by simp
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4556
qed
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4557
65956
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  4558
lemma distinct_set_subseqs:
49948
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4559
  assumes "distinct xs"
65956
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  4560
  shows "distinct (map set (subseqs xs))"
49948
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4561
proof (rule card_distinct)
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  4562
  have "finite (set xs)" ..
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  4563
  then have "card (Pow (set xs)) = 2 ^ card (set xs)"
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  4564
    by (rule card_Pow)
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  4565
  with assms distinct_card [of xs] have "card (Pow (set xs)) = 2 ^ length xs"
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  4566
    by simp
65956
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  4567
  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
  4568
    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
  4569
qed
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4570
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4571
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
  4572
  by (induct n) simp_all
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4573
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4574
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
  4575
  by (induct n arbitrary: ys) auto
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4576
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4577
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
  4578
proof (rule set_eqI)
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4579
  fix ys :: "'a list"
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4580
  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
  4581
  proof -
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4582
    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
  4583
      by (induct n arbitrary: ys) auto
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4584
    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
  4585
      by (induct n arbitrary: ys) auto
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4586
    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
  4587
      by (induct ys) auto
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4588
    ultimately show ?thesis by auto
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4589
  qed
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4590
qed
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4591
65956
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  4592
lemma subseqs_refl: "xs \<in> set (subseqs xs)"
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  4593
  by (induct xs) (simp_all add: Let_def)
63561
fba08009ff3e add lemmas contributed by Peter Gammie
Andreas Lochbihler
parents: 63540
diff changeset
  4594
65956
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  4595
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
  4596
  unfolding subseqs_powset by simp
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  4597
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  4598
lemma Cons_in_subseqsD: "y # ys \<in> set (subseqs xs) \<Longrightarrow> ys \<in> set (subseqs xs)"
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  4599
  by (induct xs) (auto simp: Let_def)
63561
fba08009ff3e add lemmas contributed by Peter Gammie
Andreas Lochbihler
parents: 63540
diff changeset
  4600
65956
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  4601
lemma subseqs_distinctD: "\<lbrakk> ys \<in> set (subseqs xs); distinct xs \<rbrakk> \<Longrightarrow> distinct ys"
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  4602
proof (induct xs arbitrary: ys)
63561
fba08009ff3e add lemmas contributed by Peter Gammie
Andreas Lochbihler
parents: 63540
diff changeset
  4603
  case (Cons x xs ys)
fba08009ff3e add lemmas contributed by Peter Gammie
Andreas Lochbihler
parents: 63540
diff changeset
  4604
  then show ?case
65956
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  4605
    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
  4606
qed simp
fba08009ff3e add lemmas contributed by Peter Gammie
Andreas Lochbihler
parents: 63540
diff changeset
  4607
49948
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4608
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  4609
subsubsection \<open>\<^const>\<open>splice\<close>\<close>
19390
6c7383f80ad1 Added function "splice"
nipkow
parents: 19363
diff changeset
  4610
69075
6e1b569ccce1 simpler def
nipkow
parents: 68975
diff changeset
  4611
lemma splice_Nil2 [simp]: "splice xs [] = xs"
19390
6c7383f80ad1 Added function "splice"
nipkow
parents: 19363
diff changeset
  4612
by (cases xs) simp_all
6c7383f80ad1 Added function "splice"
nipkow
parents: 19363
diff changeset
  4613
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  4614
lemma length_splice[simp]: "length(splice xs ys) = length xs + length ys"
69136
d4baf535f845 added simp-lemma
nipkow
parents: 69125
diff changeset
  4615
by (induct xs ys rule: splice.induct) auto
d4baf535f845 added simp-lemma
nipkow
parents: 69125
diff changeset
  4616
d4baf535f845 added simp-lemma
nipkow
parents: 69125
diff changeset
  4617
lemma split_Nil_iff[simp]: "splice xs ys = [] \<longleftrightarrow> xs = [] \<and> ys = []"
d4baf535f845 added simp-lemma
nipkow
parents: 69125
diff changeset
  4618
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
  4619
69140
f2d233f6356c added simp-lemma
nipkow
parents: 69136
diff changeset
  4620
lemma splice_replicate[simp]: "splice (replicate m x) (replicate n x) = replicate (m+n) x"
f2d233f6356c added simp-lemma
nipkow
parents: 69136
diff changeset
  4621
apply(induction "replicate m x" "replicate n x" arbitrary: m n rule: splice.induct)
f2d233f6356c added simp-lemma
nipkow
parents: 69136
diff changeset
  4622
apply (auto simp add: Cons_replicate_eq dest: gr0_implies_Suc)
f2d233f6356c added simp-lemma
nipkow
parents: 69136
diff changeset
  4623
done
65350
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
  4624
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  4625
subsubsection \<open>\<^const>\<open>shuffles\<close>\<close>
69107
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4626
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4627
lemma shuffles_commutes: "shuffles xs ys = shuffles ys xs"
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4628
by (induction xs ys rule: shuffles.induct) (simp_all add: Un_commute)
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4629
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4630
lemma Nil_in_shuffles[simp]: "[] \<in> shuffles xs ys \<longleftrightarrow> xs = [] \<and> ys = []"
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4631
  by (induct xs ys rule: shuffles.induct) auto
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4632
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4633
lemma shufflesE:
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4634
  "zs \<in> shuffles xs ys \<Longrightarrow>
65350
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
  4635
    (zs = xs \<Longrightarrow> ys = [] \<Longrightarrow> P) \<Longrightarrow>
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
  4636
    (zs = ys \<Longrightarrow> xs = [] \<Longrightarrow> P) \<Longrightarrow>
69107
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4637
    (\<And>x xs' z zs'. xs = x # xs' \<Longrightarrow> zs = z # zs' \<Longrightarrow> x = z \<Longrightarrow> zs' \<in> shuffles xs' ys \<Longrightarrow> P) \<Longrightarrow>
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4638
    (\<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"
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4639
  by (induct xs ys rule: shuffles.induct) auto
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4640
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4641
lemma Cons_in_shuffles_iff:
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4642
  "z # zs \<in> shuffles xs ys \<longleftrightarrow>
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4643
    (xs \<noteq> [] \<and> hd xs = z \<and> zs \<in> shuffles (tl xs) ys \<or>
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4644
     ys \<noteq> [] \<and> hd ys = z \<and> zs \<in> shuffles xs (tl ys))"
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4645
  by (induct xs ys rule: shuffles.induct) auto
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4646
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4647
lemma splice_in_shuffles [simp, intro]: "splice xs ys \<in> shuffles xs ys"
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4648
by (induction xs ys rule: splice.induct) (simp_all add: Cons_in_shuffles_iff shuffles_commutes)
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4649
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4650
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
  4651
  by simp
66892
d67d28254ff2 remove trailing whitespaces in List
bulwahn
parents: 66891
diff changeset
  4652
69107
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4653
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
  4654
  by (cases ys) auto
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
  4655
69107
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4656
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
  4657
  by (cases xs) auto
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
  4658
69107
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4659
lemma finite_shuffles [simp, intro]: "finite (shuffles xs ys)"
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4660
  by (induction xs ys rule: shuffles.induct) simp_all
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4661
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4662
lemma length_shuffles: "zs \<in> shuffles xs ys \<Longrightarrow> length zs = length xs + length ys"
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4663
  by (induction xs ys arbitrary: zs rule: shuffles.induct) auto
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4664
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4665
lemma set_shuffles: "zs \<in> shuffles xs ys \<Longrightarrow> set zs = set xs \<union> set ys"
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4666
  by (induction xs ys arbitrary: zs rule: shuffles.induct) auto
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4667
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4668
lemma distinct_disjoint_shuffles:
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4669
  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
  4670
  shows   "distinct zs"
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
  4671
using assms
69107
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4672
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
  4673
  case (3 x xs y ys)
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
  4674
  show ?case
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
  4675
  proof (cases zs)
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
  4676
    case (Cons z zs')
69107
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4677
    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
  4678
  qed simp_all
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
  4679
qed simp_all
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
  4680
69107
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4681
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
  4682
  by (cases ys) auto
66892
d67d28254ff2 remove trailing whitespaces in List
bulwahn
parents: 66891
diff changeset
  4683
69107
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4684
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
  4685
  by (cases xs) auto
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
  4686
69107
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4687
lemma filter_shuffles:
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4688
  "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
  4689
proof -
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67171
diff changeset
  4690
  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
  4691
    by (auto simp: image_image)
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
  4692
  show ?thesis
69107
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4693
  by (induction xs ys rule: shuffles.induct)
66892
d67d28254ff2 remove trailing whitespaces in List
bulwahn
parents: 66891
diff changeset
  4694
     (simp_all split: if_splits add: image_Un * Un_absorb1 Un_absorb2
69107
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4695
           Cons_shuffles_subset1 Cons_shuffles_subset2)
65350
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
  4696
qed
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
  4697
69107
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4698
lemma filter_shuffles_disjoint1:
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4699
  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
  4700
  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
  4701
    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
  4702
  using assms
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
  4703
proof -
69107
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4704
  from assms have "filter ?P zs \<in> filter ?P ` shuffles xs ys" by blast
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4705
  also have "filter ?P ` shuffles xs ys = shuffles (filter ?P xs) (filter ?P ys)"
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4706
    by (rule filter_shuffles)
65350
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
  4707
  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
  4708
  also have "filter ?P ys = []" by (rule filter_False) (insert assms(1), auto)
69107
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4709
  also have "shuffles xs [] = {xs}" by simp
65350
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
  4710
  finally show "filter ?P zs = xs" by simp
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
  4711
next
69107
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4712
  from assms have "filter ?Q zs \<in> filter ?Q ` shuffles xs ys" by blast
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4713
  also have "filter ?Q ` shuffles xs ys = shuffles (filter ?Q xs) (filter ?Q ys)"
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4714
    by (rule filter_shuffles)
65350
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
  4715
  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
  4716
  also have "filter ?Q xs = []" by (rule filter_False) (insert assms(1), auto)
69107
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4717
  also have "shuffles [] ys = {ys}" by simp
65350
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
  4718
  finally show "filter ?Q zs = ys" by simp
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
  4719
qed
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
  4720
69107
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4721
lemma filter_shuffles_disjoint2:
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4722
  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
  4723
  shows   "filter (\<lambda>x. x \<in> set ys) zs = ys" "filter (\<lambda>x. x \<notin> set ys) zs = xs"
69107
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4724
  using filter_shuffles_disjoint1[of ys xs zs] assms
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4725
  by (simp_all add: shuffles_commutes Int_commute)
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4726
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4727
lemma partition_in_shuffles:
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4728
  "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
  4729
proof (induction xs)
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
  4730
  case (Cons x xs)
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
  4731
  show ?case
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
  4732
  proof (cases "P x")
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
  4733
    case True
69107
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4734
    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
  4735
      by (intro imageI Cons.IH)
69107
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4736
    also have "\<dots> \<subseteq> shuffles (filter P (x # xs)) (filter (\<lambda>x. \<not>P x) (x # xs))"
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4737
      by (simp add: True Cons_shuffles_subset1)
65350
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
  4738
    finally show ?thesis .
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
  4739
  next
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
  4740
    case False
69107
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4741
    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
  4742
      by (intro imageI Cons.IH)
69107
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4743
    also have "\<dots> \<subseteq> shuffles (filter P (x # xs)) (filter (\<lambda>x. \<not>P x) (x # xs))"
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4744
      by (simp add: False Cons_shuffles_subset2)
65350
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
  4745
    finally show ?thesis .
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
  4746
  qed
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
  4747
qed auto
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
  4748
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
  4749
lemma inv_image_partition:
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
  4750
  assumes "\<And>x. x \<in> set xs \<Longrightarrow> P x" "\<And>y. y \<in> set ys \<Longrightarrow> \<not>P y"
69107
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4751
  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
  4752
proof (intro equalityI subsetI)
69107
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4753
  fix zs assume zs: "zs \<in> shuffles xs ys"
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4754
  hence [simp]: "set zs = set xs \<union> set ys" by (rule set_shuffles)
66892
d67d28254ff2 remove trailing whitespaces in List
bulwahn
parents: 66891
diff changeset
  4755
  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
  4756
                  "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
  4757
    by (intro filter_cong refl; force)+
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
  4758
  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
  4759
  ultimately show "zs \<in> partition P -` {(xs, ys)}" using zs
69107
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4760
    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
  4761
next
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
  4762
  fix zs assume "zs \<in> partition P -` {(xs, ys)}"
69107
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  4763
  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
  4764
qed
22793
dc13dfd588b2 new lemma splice_length
nipkow
parents: 22633
diff changeset
  4765
35115
446c5063e4fd modernized translations;
wenzelm
parents: 35028
diff changeset
  4766
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  4767
subsubsection \<open>Transpose\<close>
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4768
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4769
function transpose where
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4770
"transpose []             = []" |
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4771
"transpose ([]     # xss) = transpose xss" |
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4772
"transpose ((x#xs) # xss) =
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4773
  (x # [h. (h#t) \<leftarrow> xss]) # transpose (xs # [t. (h#t) \<leftarrow> xss])"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4774
by pat_completeness auto
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4775
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4776
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
  4777
  "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
  4778
  map (\<lambda>xs. hd xs) (filter (\<lambda>ys. ys \<noteq> []) xss)"
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4779
  by (induct xss) (auto split: list.split)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4780
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4781
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
  4782
  "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
  4783
  map (\<lambda>xs. tl xs) (filter (\<lambda>ys. ys \<noteq> []) xss)"
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4784
  by (induct xss) (auto split: list.split)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4785
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4786
lemma transpose_aux_max:
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4787
  "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
  4788
  Suc (max (length xs) (foldr (\<lambda>x. max (length x - Suc 0)) (filter (\<lambda>ys. ys \<noteq> []) xss) 0))"
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4789
  (is "max _ ?foldB = Suc (max _ ?foldA)")
68249
949d93804740 First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents: 68215
diff changeset
  4790
proof (cases "(filter (\<lambda>ys. ys \<noteq> []) xss) = []")
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4791
  case True
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4792
  hence "foldr (\<lambda>xs. max (length xs)) xss 0 = 0"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4793
  proof (induct xss)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4794
    case (Cons x xs)
53374
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53017
diff changeset
  4795
    then have "x = []" by (cases x) auto
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53017
diff changeset
  4796
    with Cons show ?case by auto
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4797
  qed simp
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4798
  thus ?thesis using True by simp
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4799
next
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4800
  case False
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4801
68249
949d93804740 First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents: 68215
diff changeset
  4802
  have foldA: "?foldA = foldr (\<lambda>x. max (length x)) (filter (\<lambda>ys. ys \<noteq> []) xss) 0 - 1"
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4803
    by (induct xss) auto
68249
949d93804740 First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents: 68215
diff changeset
  4804
  have foldB: "?foldB = foldr (\<lambda>x. max (length x)) (filter (\<lambda>ys. ys \<noteq> []) xss) 0"
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4805
    by (induct xss) auto
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4806
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4807
  have "0 < ?foldB"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4808
  proof -
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4809
    from False
68249
949d93804740 First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents: 68215
diff changeset
  4810
    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
  4811
    hence "z \<in> set (filter (\<lambda>ys. ys \<noteq> []) xss)" by auto
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4812
    hence "z \<noteq> []" by auto
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4813
    thus ?thesis
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4814
      unfolding foldB zs
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4815
      by (auto simp: max_def intro: less_le_trans)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4816
  qed
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4817
  thus ?thesis
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4818
    unfolding foldA foldB max_Suc_Suc[symmetric]
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4819
    by simp
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4820
qed
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4821
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4822
termination transpose
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4823
  by (relation "measure (\<lambda>xs. foldr (\<lambda>xs. max (length xs)) xs 0 + length xs)")
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4824
     (auto simp: transpose_aux_filter_tail foldr_map comp_def transpose_aux_max less_Suc_eq_le)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4825
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4826
lemma transpose_empty: "(transpose xs = []) \<longleftrightarrow> (\<forall>x \<in> set xs. x = [])"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4827
  by (induct rule: transpose.induct) simp_all
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4828
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4829
lemma length_transpose:
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4830
  fixes xs :: "'a list list"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4831
  shows "length (transpose xs) = foldr (\<lambda>xs. max (length xs)) xs 0"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4832
  by (induct rule: transpose.induct)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4833
    (auto simp: transpose_aux_filter_tail foldr_map comp_def transpose_aux_max
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4834
                max_Suc_Suc[symmetric] simp del: max_Suc_Suc)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4835
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4836
lemma nth_transpose:
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4837
  fixes xs :: "'a list list"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4838
  assumes "i < length (transpose xs)"
68249
949d93804740 First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents: 68215
diff changeset
  4839
  shows "transpose xs ! i = map (\<lambda>xs. xs ! i) (filter (\<lambda>ys. i < length ys) xs)"
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4840
using assms proof (induct arbitrary: i rule: transpose.induct)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4841
  case (3 x xs xss)
63040
eb4ddd18d635 eliminated old 'def';
wenzelm
parents: 62580
diff changeset
  4842
  define XS where "XS = (x # xs) # xss"
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4843
  hence [simp]: "XS \<noteq> []" by auto
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4844
  thus ?case
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4845
  proof (cases i)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4846
    case 0
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4847
    thus ?thesis by (simp add: transpose_aux_filter_head hd_conv_nth)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4848
  next
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4849
    case (Suc j)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4850
    have *: "\<And>xss. xs # map tl xss = map tl ((x#xs)#xss)" by simp
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4851
    have **: "\<And>xss. (x#xs) # filter (\<lambda>ys. ys \<noteq> []) xss = filter (\<lambda>ys. ys \<noteq> []) ((x#xs)#xss)" by simp
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4852
    { fix x have "Suc j < length x \<longleftrightarrow> x \<noteq> [] \<and> j < length x - Suc 0"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4853
      by (cases x) simp_all
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4854
    } note *** = this
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4855
55404
5cb95b79a51f transformed 'option' and 'list' into new-style datatypes (but register them as old-style as well)
blanchet
parents: 55148
diff changeset
  4856
    have j_less: "j < length (transpose (xs # concat (map (case_list [] (\<lambda>h t. [t])) xss)))"
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4857
      using "3.prems" by (simp add: transpose_aux_filter_tail length_transpose Suc)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4858
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4859
    show ?thesis
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  4860
      unfolding transpose.simps \<open>i = Suc j\<close> nth_Cons_Suc "3.hyps"[OF j_less]
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4861
      apply (auto simp: transpose_aux_filter_tail filter_map comp_def length_transpose * ** *** XS_def[symmetric])
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4862
      by (simp add: nth_tl)
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4863
  qed
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4864
qed simp_all
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4865
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4866
lemma transpose_map_map:
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4867
  "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
  4868
proof (rule nth_equalityI)
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4869
  have [simp]: "length (transpose (map (map f) xs)) = length (transpose xs)"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4870
    by (simp add: length_transpose foldr_map comp_def)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4871
  show "length (transpose (map (map f) xs)) = length (map (map f) (transpose xs))" by simp
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4872
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4873
  fix i assume "i < length (transpose (map (map f) xs))"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4874
  thus "transpose (map (map f) xs) ! i = map (map f) (transpose xs) ! i"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4875
    by (simp add: nth_transpose filter_map comp_def)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4876
qed
24616
fac3dd4ade83 sorting
nipkow
parents: 24566
diff changeset
  4877
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  4878
subsubsection \<open>\<^const>\<open>min\<close> and \<^const>\<open>arg_min\<close>\<close>
67170
9bfe79084443 added min_list and arg_min_list
nipkow
parents: 67168
diff changeset
  4879
9bfe79084443 added min_list and arg_min_list
nipkow
parents: 67168
diff changeset
  4880
lemma min_list_Min: "xs \<noteq> [] \<Longrightarrow> min_list xs = Min (set xs)"
9bfe79084443 added min_list and arg_min_list
nipkow
parents: 67168
diff changeset
  4881
by (induction xs rule: induct_list012)(auto)
9bfe79084443 added min_list and arg_min_list
nipkow
parents: 67168
diff changeset
  4882
9bfe79084443 added min_list and arg_min_list
nipkow
parents: 67168
diff changeset
  4883
lemma f_arg_min_list_f: "xs \<noteq> [] \<Longrightarrow> f (arg_min_list f xs) = Min (f ` (set xs))"
9bfe79084443 added min_list and arg_min_list
nipkow
parents: 67168
diff changeset
  4884
by(induction f xs rule: arg_min_list.induct) (auto simp: min_def intro!: antisym)
9bfe79084443 added min_list and arg_min_list
nipkow
parents: 67168
diff changeset
  4885
67171
2f213405cc0e added lemmas
nipkow
parents: 67170
diff changeset
  4886
lemma arg_min_list_in: "xs \<noteq> [] \<Longrightarrow> arg_min_list f xs \<in> set xs"
2f213405cc0e added lemmas
nipkow
parents: 67170
diff changeset
  4887
by(induction xs rule: induct_list012) (auto simp: Let_def)
2f213405cc0e added lemmas
nipkow
parents: 67170
diff changeset
  4888
35115
446c5063e4fd modernized translations;
wenzelm
parents: 35028
diff changeset
  4889
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  4890
subsubsection \<open>(In)finiteness\<close>
28642
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  4891
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  4892
lemma finite_maxlen:
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  4893
  "finite (M::'a list set) \<Longrightarrow> \<exists>n. \<forall>s\<in>M. size s < n"
28642
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  4894
proof (induct rule: finite.induct)
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  4895
  case emptyI show ?case by simp
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  4896
next
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  4897
  case (insertI M xs)
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  4898
  then obtain n where "\<forall>s\<in>M. length s < n" by blast
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  4899
  hence "\<forall>s\<in>insert xs M. size s < max n (size xs) + 1" by auto
28642
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  4900
  thus ?case ..
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  4901
qed
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  4902
45714
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
  4903
lemma lists_length_Suc_eq:
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
  4904
  "{xs. set xs \<subseteq> A \<and> length xs = Suc n} =
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
  4905
    (\<lambda>(xs, n). n#xs) ` ({xs. set xs \<subseteq> A \<and> length xs = n} \<times> A)"
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
  4906
  by (auto simp: length_Suc_conv)
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
  4907
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
  4908
lemma
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
  4909
  assumes "finite A"
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
  4910
  shows finite_lists_length_eq: "finite {xs. set xs \<subseteq> A \<and> length xs = n}"
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
  4911
  and card_lists_length_eq: "card {xs. set xs \<subseteq> A \<and> length xs = n} = (card A)^n"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  4912
  using \<open>finite A\<close>
45714
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
  4913
  by (induct n)
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
  4914
     (auto simp: card_image inj_split_Cons lists_length_Suc_eq cong: conj_cong)
31557
4e36f2f17c63 two finiteness lemmas by Robert Himmelmann
nipkow
parents: 31455
diff changeset
  4915
4e36f2f17c63 two finiteness lemmas by Robert Himmelmann
nipkow
parents: 31455
diff changeset
  4916
lemma finite_lists_length_le:
4e36f2f17c63 two finiteness lemmas by Robert Himmelmann
nipkow
parents: 31455
diff changeset
  4917
  assumes "finite A" shows "finite {xs. set xs \<subseteq> A \<and> length xs \<le> n}"
4e36f2f17c63 two finiteness lemmas by Robert Himmelmann
nipkow
parents: 31455
diff changeset
  4918
 (is "finite ?S")
4e36f2f17c63 two finiteness lemmas by Robert Himmelmann
nipkow
parents: 31455
diff changeset
  4919
proof-
4e36f2f17c63 two finiteness lemmas by Robert Himmelmann
nipkow
parents: 31455
diff changeset
  4920
  have "?S = (\<Union>n\<in>{0..n}. {xs. set xs \<subseteq> A \<and> length xs = n})" by auto
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  4921
  thus ?thesis by (auto intro!: finite_lists_length_eq[OF \<open>finite A\<close>] simp only:)
31557
4e36f2f17c63 two finiteness lemmas by Robert Himmelmann
nipkow
parents: 31455
diff changeset
  4922
qed
4e36f2f17c63 two finiteness lemmas by Robert Himmelmann
nipkow
parents: 31455
diff changeset
  4923
45714
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
  4924
lemma card_lists_length_le:
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
  4925
  assumes "finite A" shows "card {xs. set xs \<subseteq> A \<and> length xs \<le> n} = (\<Sum>i\<le>n. card A^i)"
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
  4926
proof -
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
  4927
  have "(\<Sum>i\<le>n. card A^i) = card (\<Union>i\<le>n. {xs. set xs \<subseteq> A \<and> length xs = i})"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  4928
    using \<open>finite A\<close>
45714
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
  4929
    by (subst card_UN_disjoint)
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
  4930
       (auto simp add: card_lists_length_eq finite_lists_length_eq)
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
  4931
  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}"
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
  4932
    by auto
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
  4933
  finally show ?thesis by simp
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
  4934
qed
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
  4935
67478
14d3163588ae add lemma on lists from Falling_Factorial_Sum entry
bulwahn
parents: 67443
diff changeset
  4936
lemma finite_lists_distinct_length_eq [intro]:
14d3163588ae add lemma on lists from Falling_Factorial_Sum entry
bulwahn
parents: 67443
diff changeset
  4937
  assumes "finite A"
14d3163588ae add lemma on lists from Falling_Factorial_Sum entry
bulwahn
parents: 67443
diff changeset
  4938
  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
  4939
proof -
14d3163588ae add lemma on lists from Falling_Factorial_Sum entry
bulwahn
parents: 67443
diff changeset
  4940
  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
  4941
    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
  4942
  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
  4943
  ultimately show ?thesis using finite_subset by auto
14d3163588ae add lemma on lists from Falling_Factorial_Sum entry
bulwahn
parents: 67443
diff changeset
  4944
qed
14d3163588ae add lemma on lists from Falling_Factorial_Sum entry
bulwahn
parents: 67443
diff changeset
  4945
45932
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4946
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
  4947
  assumes "finite A" "k \<le> card A"
45932
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4948
  shows "card {xs. length xs = k \<and> distinct xs \<and> set xs \<subseteq> A} = \<Prod>{card A - k + 1 .. card A}"
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4949
using assms
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4950
proof (induct k)
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4951
  case 0
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4952
  then have "{xs. length xs = 0 \<and> distinct xs \<and> set xs \<subseteq> A} = {[]}" by auto
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4953
  then show ?case by simp
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4954
next
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4955
  case (Suc k)
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4956
  let "?k_list" = "\<lambda>k xs. length xs = k \<and> distinct xs \<and> set xs \<subseteq> A"
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4957
  have inj_Cons: "\<And>A. inj_on (\<lambda>(xs, n). n # xs) A"  by (rule inj_onI) auto
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4958
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
  4959
  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
  4960
  moreover note \<open>finite A\<close>
45932
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4961
  moreover have "finite {xs. ?k_list k xs}"
63834
6a757f36997e tuned proofs;
wenzelm
parents: 63720
diff changeset
  4962
    by (rule finite_subset) (use finite_lists_length_eq[OF \<open>finite A\<close>, of k] in auto)
45932
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4963
  moreover have "\<And>i j. i \<noteq> j \<longrightarrow> {i} \<times> (A - set i) \<inter> {j} \<times> (A - set j) = {}"
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4964
    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
  4965
  moreover have "\<And>i. i \<in> {xs. ?k_list k xs} \<Longrightarrow> card (A - set i) = card A - k"
45932
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4966
    by (simp add: card_Diff_subset distinct_card)
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4967
  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
  4968
      (\<lambda>(xs, n). n#xs) ` \<Union>((\<lambda>xs. {xs} \<times> (A - set xs)) ` {xs. ?k_list k xs})"
45932
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4969
    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
  4970
  moreover have "Suc (card A - Suc k) = card A - k" using Suc.prems by simp
45932
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4971
  then have "(card A - k) * \<Prod>{Suc (card A - k)..card A} = \<Prod>{Suc (card A - Suc k)..card A}"
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
  4972
    by (subst prod.insert[symmetric]) (simp add: atLeastAtMost_insertL)+
45932
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4973
  ultimately show ?case
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4974
    by (simp add: card_image inj_Cons card_UN_disjoint Suc.hyps algebra_simps)
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4975
qed
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4976
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
  4977
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
  4978
  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
  4979
  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
  4980
proof -
fab9a53158f8 slightly generalized card_lists_distinct_length_eq; renamed specialized card_lists_distinct_length_eq to card_lists_distinct_length_eq'; tuned
bulwahn
parents: 66257
diff changeset
  4981
  from \<open>k < card A\<close> have "finite A" and "k \<le> card A" using card_infinite by force+
fab9a53158f8 slightly generalized card_lists_distinct_length_eq; renamed specialized card_lists_distinct_length_eq to card_lists_distinct_length_eq'; tuned
bulwahn
parents: 66257
diff changeset
  4982
  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
  4983
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
  4984
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  4985
lemma infinite_UNIV_listI: "\<not> finite(UNIV::'a list set)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  4986
  by (metis UNIV_I finite_maxlen length_replicate less_irrefl)
28642
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  4987
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  4988
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  4989
subsection \<open>Sorting\<close>
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  4990
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  4991
subsubsection \<open>\<^const>\<open>sorted_wrt\<close>\<close>
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  4992
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  4993
text \<open>Sometimes the second equation in the definition of \<^const>\<open>sorted_wrt\<close> is too aggressive
68125
2e5b737810a6 announce sorted changes
nipkow
parents: 68118
diff changeset
  4994
because it relates each list element to \emph{all} its successors. Then this equation
2e5b737810a6 announce sorted changes
nipkow
parents: 68118
diff changeset
  4995
should be removed and \<open>sorted_wrt2_simps\<close> should be added instead.\<close>
2e5b737810a6 announce sorted changes
nipkow
parents: 68118
diff changeset
  4996
2e5b737810a6 announce sorted changes
nipkow
parents: 68118
diff changeset
  4997
lemma sorted_wrt1: "sorted_wrt P [x] = True"
2e5b737810a6 announce sorted changes
nipkow
parents: 68118
diff changeset
  4998
by(simp)
2e5b737810a6 announce sorted changes
nipkow
parents: 68118
diff changeset
  4999
2e5b737810a6 announce sorted changes
nipkow
parents: 68118
diff changeset
  5000
lemma sorted_wrt2: "transp P \<Longrightarrow> sorted_wrt P (x # y # zs) = (P x y \<and> sorted_wrt P (y # zs))"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  5001
proof (induction zs arbitrary: x y)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  5002
  case (Cons z zs)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  5003
  then show ?case
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  5004
    by simp (meson transpD)+
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  5005
qed auto
68125
2e5b737810a6 announce sorted changes
nipkow
parents: 68118
diff changeset
  5006
2e5b737810a6 announce sorted changes
nipkow
parents: 68118
diff changeset
  5007
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
  5008
68141
b105964ae3c4 more lemmas
nipkow
parents: 68125
diff changeset
  5009
lemma sorted_wrt_true [simp]:
b105964ae3c4 more lemmas
nipkow
parents: 68125
diff changeset
  5010
  "sorted_wrt (\<lambda>_ _. True) xs"
b105964ae3c4 more lemmas
nipkow
parents: 68125
diff changeset
  5011
by (induction xs) simp_all
b105964ae3c4 more lemmas
nipkow
parents: 68125
diff changeset
  5012
66434
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5013
lemma sorted_wrt_append:
68109
cebf36c14226 new def of sorted and sorted_wrt
nipkow
parents: 68085
diff changeset
  5014
  "sorted_wrt P (xs @ ys) \<longleftrightarrow>
66892
d67d28254ff2 remove trailing whitespaces in List
bulwahn
parents: 66891
diff changeset
  5015
  sorted_wrt P xs \<and> sorted_wrt P ys \<and> (\<forall>x\<in>set xs. \<forall>y\<in>set ys. P x y)"
68109
cebf36c14226 new def of sorted and sorted_wrt
nipkow
parents: 68085
diff changeset
  5016
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
  5017
68141
b105964ae3c4 more lemmas
nipkow
parents: 68125
diff changeset
  5018
lemma sorted_wrt_map:
b105964ae3c4 more lemmas
nipkow
parents: 68125
diff changeset
  5019
  "sorted_wrt R (map f xs) = sorted_wrt (\<lambda>x y. R (f x) (f y)) xs"
b105964ae3c4 more lemmas
nipkow
parents: 68125
diff changeset
  5020
by (induction xs) simp_all
b105964ae3c4 more lemmas
nipkow
parents: 68125
diff changeset
  5021
66890
e92d48a42a01 drop a superfluous assumption that was found by the find_unused_assms command and tune proof
bulwahn
parents: 66889
diff changeset
  5022
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
  5023
  "sorted_wrt P (rev xs) = sorted_wrt (\<lambda>x y. P y x) xs"
68109
cebf36c14226 new def of sorted and sorted_wrt
nipkow
parents: 68085
diff changeset
  5024
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
  5025
68141
b105964ae3c4 more lemmas
nipkow
parents: 68125
diff changeset
  5026
lemma sorted_wrt_mono_rel:
b105964ae3c4 more lemmas
nipkow
parents: 68125
diff changeset
  5027
  "(\<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
cebf36c14226 new def of sorted and sorted_wrt
nipkow
parents: 68085
diff changeset
  5028
by(induction xs)(auto)
66442
050bc74d55ed added lemma
nipkow
parents: 66441
diff changeset
  5029
67973
9ecc78bcf1ef added lemma
nipkow
parents: 67949
diff changeset
  5030
lemma sorted_wrt01: "length xs \<le> 1 \<Longrightarrow> sorted_wrt P xs"
9ecc78bcf1ef added lemma
nipkow
parents: 67949
diff changeset
  5031
by(auto simp: le_Suc_eq length_Suc_conv)
9ecc78bcf1ef added lemma
nipkow
parents: 67949
diff changeset
  5032
68175
e0bd5089eabf cleaning up sorted
nipkow
parents: 68160
diff changeset
  5033
lemma sorted_wrt_iff_nth_less:
68156
7da3af31ca4d added lemmas
nipkow
parents: 68141
diff changeset
  5034
  "sorted_wrt P xs = (\<forall>i j. i < j \<longrightarrow> j < length xs \<longrightarrow> P (xs ! i) (xs ! j))"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  5035
  by (induction xs) (auto simp add: in_set_conv_nth Ball_def nth_Cons split: nat.split)
68156
7da3af31ca4d added lemmas
nipkow
parents: 68141
diff changeset
  5036
7da3af31ca4d added lemmas
nipkow
parents: 68141
diff changeset
  5037
lemma sorted_wrt_nth_less:
7da3af31ca4d added lemmas
nipkow
parents: 68141
diff changeset
  5038
  "\<lbrakk> sorted_wrt P xs; i < j; j < length xs \<rbrakk> \<Longrightarrow> P (xs ! i) (xs ! j)"
68175
e0bd5089eabf cleaning up sorted
nipkow
parents: 68160
diff changeset
  5039
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
  5040
68141
b105964ae3c4 more lemmas
nipkow
parents: 68125
diff changeset
  5041
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
  5042
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
  5043
68191
4ac04fe61e98 removed duplicates
nipkow
parents: 68190
diff changeset
  5044
lemma sorted_wrt_upto[simp]: "sorted_wrt (<) [i..j]"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  5045
proof(induct i j rule:upto.induct)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  5046
  case (1 i j)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  5047
  from this show ?case
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  5048
    unfolding upto.simps[of i j] by auto
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  5049
qed
68175
e0bd5089eabf cleaning up sorted
nipkow
parents: 68160
diff changeset
  5050
66434
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5051
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
  5052
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5053
lemma sorted_wrt_less_idx:
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67171
diff changeset
  5054
  "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
  5055
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
  5056
  case Nil thus ?case by simp
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5057
next
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5058
  case snoc
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5059
  thus ?case
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5060
    by (auto simp: nth_append sorted_wrt_append)
66892
d67d28254ff2 remove trailing whitespaces in List
bulwahn
parents: 66891
diff changeset
  5061
       (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
  5062
qed
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5063
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5064
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  5065
subsubsection \<open>\<^const>\<open>sorted\<close>\<close>
24617
bc484b2671fd sorting
nipkow
parents: 24616
diff changeset
  5066
24616
fac3dd4ade83 sorting
nipkow
parents: 24566
diff changeset
  5067
context linorder
fac3dd4ade83 sorting
nipkow
parents: 24566
diff changeset
  5068
begin
fac3dd4ade83 sorting
nipkow
parents: 24566
diff changeset
  5069
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  5070
text \<open>Sometimes the second equation in the definition of \<^const>\<open>sorted\<close> is too aggressive
68111
bdbf759ddbac more "sorted" changes
nipkow
parents: 68109
diff changeset
  5071
because it relates each list element to \emph{all} its successors. Then this equation
68118
aedeef5e6858 more efficient code
nipkow
parents: 68111
diff changeset
  5072
should be removed and \<open>sorted2_simps\<close> should be added instead.
aedeef5e6858 more efficient code
nipkow
parents: 68111
diff changeset
  5073
Executable code is one such use case.\<close>
aedeef5e6858 more efficient code
nipkow
parents: 68111
diff changeset
  5074
aedeef5e6858 more efficient code
nipkow
parents: 68111
diff changeset
  5075
lemma sorted1: "sorted [x] = True"
68111
bdbf759ddbac more "sorted" changes
nipkow
parents: 68109
diff changeset
  5076
by simp
bdbf759ddbac more "sorted" changes
nipkow
parents: 68109
diff changeset
  5077
bdbf759ddbac more "sorted" changes
nipkow
parents: 68109
diff changeset
  5078
lemma sorted2: "sorted (x # y # zs) = (x \<le> y \<and> sorted (y # zs))"
bdbf759ddbac more "sorted" changes
nipkow
parents: 68109
diff changeset
  5079
by(induction zs) auto
bdbf759ddbac more "sorted" changes
nipkow
parents: 68109
diff changeset
  5080
bdbf759ddbac more "sorted" changes
nipkow
parents: 68109
diff changeset
  5081
lemmas sorted2_simps = sorted1 sorted2
bdbf759ddbac more "sorted" changes
nipkow
parents: 68109
diff changeset
  5082
68118
aedeef5e6858 more efficient code
nipkow
parents: 68111
diff changeset
  5083
lemmas [code] = sorted.simps(1) sorted2_simps
aedeef5e6858 more efficient code
nipkow
parents: 68111
diff changeset
  5084
68175
e0bd5089eabf cleaning up sorted
nipkow
parents: 68160
diff changeset
  5085
lemma sorted_append:
e0bd5089eabf cleaning up sorted
nipkow
parents: 68160
diff changeset
  5086
  "sorted (xs@ys) = (sorted xs \<and> sorted ys \<and> (\<forall>x \<in> set xs. \<forall>y \<in> set ys. x\<le>y))"
e0bd5089eabf cleaning up sorted
nipkow
parents: 68160
diff changeset
  5087
by (simp add: sorted_sorted_wrt sorted_wrt_append)
e0bd5089eabf cleaning up sorted
nipkow
parents: 68160
diff changeset
  5088
e0bd5089eabf cleaning up sorted
nipkow
parents: 68160
diff changeset
  5089
lemma sorted_map:
e0bd5089eabf cleaning up sorted
nipkow
parents: 68160
diff changeset
  5090
  "sorted (map f xs) = sorted_wrt (\<lambda>x y. f x \<le> f y) xs"
e0bd5089eabf cleaning up sorted
nipkow
parents: 68160
diff changeset
  5091
by (simp add: sorted_sorted_wrt sorted_wrt_map)
e0bd5089eabf cleaning up sorted
nipkow
parents: 68160
diff changeset
  5092
68160
efce008331f6 mv lemma
nipkow
parents: 68156
diff changeset
  5093
lemma sorted01: "length xs \<le> 1 \<Longrightarrow> sorted xs"
efce008331f6 mv lemma
nipkow
parents: 68156
diff changeset
  5094
by (simp add: sorted_sorted_wrt sorted_wrt01)
efce008331f6 mv lemma
nipkow
parents: 68156
diff changeset
  5095
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
  5096
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
  5097
  "sorted xs \<Longrightarrow> sorted (tl xs)"
68109
cebf36c14226 new def of sorted and sorted_wrt
nipkow
parents: 68085
diff changeset
  5098
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
  5099
68186
56fcf7e980e3 cleaning up sorted
nipkow
parents: 68176
diff changeset
  5100
lemma sorted_iff_nth_mono_less:
68175
e0bd5089eabf cleaning up sorted
nipkow
parents: 68160
diff changeset
  5101
  "sorted xs = (\<forall>i j. i < j \<longrightarrow> j < length xs \<longrightarrow> xs ! i \<le> xs ! j)"
e0bd5089eabf cleaning up sorted
nipkow
parents: 68160
diff changeset
  5102
by (simp add: sorted_sorted_wrt sorted_wrt_iff_nth_less)
24616
fac3dd4ade83 sorting
nipkow
parents: 24566
diff changeset
  5103
68186
56fcf7e980e3 cleaning up sorted
nipkow
parents: 68176
diff changeset
  5104
lemma sorted_iff_nth_mono:
56fcf7e980e3 cleaning up sorted
nipkow
parents: 68176
diff changeset
  5105
  "sorted xs = (\<forall>i j. i \<le> j \<longrightarrow> j < length xs \<longrightarrow> xs ! i \<le> xs ! j)"
56fcf7e980e3 cleaning up sorted
nipkow
parents: 68176
diff changeset
  5106
by (auto simp: sorted_iff_nth_mono_less nat_less_le)
56fcf7e980e3 cleaning up sorted
nipkow
parents: 68176
diff changeset
  5107
31201
3dde56615750 new lemma
nipkow
parents: 31159
diff changeset
  5108
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
  5109
  "sorted xs \<Longrightarrow> i \<le> j \<Longrightarrow> j < length xs \<Longrightarrow> xs!i \<le> xs!j"
68186
56fcf7e980e3 cleaning up sorted
nipkow
parents: 68176
diff changeset
  5110
by (auto simp: sorted_iff_nth_mono)
31201
3dde56615750 new lemma
nipkow
parents: 31159
diff changeset
  5111
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
  5112
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
  5113
  "sorted (rev xs) \<Longrightarrow> i \<le> j \<Longrightarrow> j < length xs \<Longrightarrow> xs!j \<le> xs!i"
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  5114
using sorted_nth_mono[ of "rev xs" "length xs - j - 1" "length xs - i - 1"]
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  5115
      rev_nth[of "length xs - i - 1" "xs"] rev_nth[of "length xs - j - 1" "xs"]
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  5116
by auto
68176
3e4af46a6f6a more sorted cleaning
nipkow
parents: 68175
diff changeset
  5117
66434
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5118
lemma sorted_map_remove1:
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5119
  "sorted (map f xs) \<Longrightarrow> sorted (map f (remove1 x xs))"
68109
cebf36c14226 new def of sorted and sorted_wrt
nipkow
parents: 68085
diff changeset
  5120
by (induct xs) (auto)
66434
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5121
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5122
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
  5123
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
  5124
36851
5135adb33157 added lemmas concerning last, butlast, insort
haftmann
parents: 36622
diff changeset
  5125
lemma sorted_butlast:
5135adb33157 added lemmas concerning last, butlast, insort
haftmann
parents: 36622
diff changeset
  5126
  assumes "xs \<noteq> []" and "sorted xs"
5135adb33157 added lemmas concerning last, butlast, insort
haftmann
parents: 36622
diff changeset
  5127
  shows "sorted (butlast xs)"
5135adb33157 added lemmas concerning last, butlast, insort
haftmann
parents: 36622
diff changeset
  5128
proof -
66434
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5129
  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
  5130
    by (cases xs rule: rev_cases) auto
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  5131
  with \<open>sorted xs\<close> show ?thesis by (simp add: sorted_append)
36851
5135adb33157 added lemmas concerning last, butlast, insort
haftmann
parents: 36622
diff changeset
  5132
qed
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  5133
66905
0d31dfa96aba added lemma
nipkow
parents: 66892
diff changeset
  5134
lemma sorted_replicate [simp]: "sorted(replicate n x)"
68109
cebf36c14226 new def of sorted and sorted_wrt
nipkow
parents: 68085
diff changeset
  5135
by(induction n) (auto)
66905
0d31dfa96aba added lemma
nipkow
parents: 66892
diff changeset
  5136
26143
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26073
diff changeset
  5137
lemma sorted_remdups[simp]:
68109
cebf36c14226 new def of sorted and sorted_wrt
nipkow
parents: 68085
diff changeset
  5138
  "sorted xs \<Longrightarrow> sorted (remdups xs)"
cebf36c14226 new def of sorted and sorted_wrt
nipkow
parents: 68085
diff changeset
  5139
by (induct xs) (auto)
26143
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26073
diff changeset
  5140
53721
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  5141
lemma sorted_remdups_adj[simp]:
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  5142
  "sorted xs \<Longrightarrow> sorted (remdups_adj xs)"
68109
cebf36c14226 new def of sorted and sorted_wrt
nipkow
parents: 68085
diff changeset
  5143
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
  5144
66853
24e4fc6b8151 added lemmas, tuned spaces
nipkow
parents: 66847
diff changeset
  5145
lemma sorted_nths: "sorted xs \<Longrightarrow> sorted (nths xs I)"
68109
cebf36c14226 new def of sorted and sorted_wrt
nipkow
parents: 68085
diff changeset
  5146
by(induction xs arbitrary: I)(auto simp: nths_Cons)
66853
24e4fc6b8151 added lemmas, tuned spaces
nipkow
parents: 66847
diff changeset
  5147
24645
1af302128da2 Generalized [_.._] from nat to linear orders
nipkow
parents: 24640
diff changeset
  5148
lemma sorted_distinct_set_unique:
1af302128da2 Generalized [_.._] from nat to linear orders
nipkow
parents: 24640
diff changeset
  5149
assumes "sorted xs" "distinct xs" "sorted ys" "distinct ys" "set xs = set ys"
1af302128da2 Generalized [_.._] from nat to linear orders
nipkow
parents: 24640
diff changeset
  5150
shows "xs = ys"
1af302128da2 Generalized [_.._] from nat to linear orders
nipkow
parents: 24640
diff changeset
  5151
proof -
26734
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  5152
  from assms have 1: "length xs = length ys" by (auto dest!: distinct_card)
24645
1af302128da2 Generalized [_.._] from nat to linear orders
nipkow
parents: 24640
diff changeset
  5153
  from assms show ?thesis
1af302128da2 Generalized [_.._] from nat to linear orders
nipkow
parents: 24640
diff changeset
  5154
  proof(induct rule:list_induct2[OF 1])
1af302128da2 Generalized [_.._] from nat to linear orders
nipkow
parents: 24640
diff changeset
  5155
    case 1 show ?case by simp
1af302128da2 Generalized [_.._] from nat to linear orders
nipkow
parents: 24640
diff changeset
  5156
  next
68109
cebf36c14226 new def of sorted and sorted_wrt
nipkow
parents: 68085
diff changeset
  5157
    case 2 thus ?case by simp (metis Diff_insert_absorb antisym insertE insert_iff)
24645
1af302128da2 Generalized [_.._] from nat to linear orders
nipkow
parents: 24640
diff changeset
  5158
  qed
1af302128da2 Generalized [_.._] from nat to linear orders
nipkow
parents: 24640
diff changeset
  5159
qed
1af302128da2 Generalized [_.._] from nat to linear orders
nipkow
parents: 24640
diff changeset
  5160
35603
c0db094d0d80 moved lemma map_sorted_distinct_set_unique
haftmann
parents: 35510
diff changeset
  5161
lemma map_sorted_distinct_set_unique:
c0db094d0d80 moved lemma map_sorted_distinct_set_unique
haftmann
parents: 35510
diff changeset
  5162
  assumes "inj_on f (set xs \<union> set ys)"
c0db094d0d80 moved lemma map_sorted_distinct_set_unique
haftmann
parents: 35510
diff changeset
  5163
  assumes "sorted (map f xs)" "distinct (map f xs)"
c0db094d0d80 moved lemma map_sorted_distinct_set_unique
haftmann
parents: 35510
diff changeset
  5164
    "sorted (map f ys)" "distinct (map f ys)"
c0db094d0d80 moved lemma map_sorted_distinct_set_unique
haftmann
parents: 35510
diff changeset
  5165
  assumes "set xs = set ys"
c0db094d0d80 moved lemma map_sorted_distinct_set_unique
haftmann
parents: 35510
diff changeset
  5166
  shows "xs = ys"
c0db094d0d80 moved lemma map_sorted_distinct_set_unique
haftmann
parents: 35510
diff changeset
  5167
proof -
c0db094d0d80 moved lemma map_sorted_distinct_set_unique
haftmann
parents: 35510
diff changeset
  5168
  from assms have "map f xs = map f ys"
c0db094d0d80 moved lemma map_sorted_distinct_set_unique
haftmann
parents: 35510
diff changeset
  5169
    by (simp add: sorted_distinct_set_unique)
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  5170
  with \<open>inj_on f (set xs \<union> set ys)\<close> show "xs = ys"
35603
c0db094d0d80 moved lemma map_sorted_distinct_set_unique
haftmann
parents: 35510
diff changeset
  5171
    by (blast intro: map_inj_on)
c0db094d0d80 moved lemma map_sorted_distinct_set_unique
haftmann
parents: 35510
diff changeset
  5172
qed
c0db094d0d80 moved lemma map_sorted_distinct_set_unique
haftmann
parents: 35510
diff changeset
  5173
39915
ecf97cf3d248 turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents: 39774
diff changeset
  5174
lemma
ecf97cf3d248 turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents: 39774
diff changeset
  5175
  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
  5176
  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
  5177
  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
  5178
proof -
ecf97cf3d248 turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents: 39774
diff changeset
  5179
  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
  5180
  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
  5181
    unfolding sorted_append by simp_all
29626
6f8aada233c1 sorted_take, sorted_drop
haftmann
parents: 29509
diff changeset
  5182
qed
6f8aada233c1 sorted_take, sorted_drop
haftmann
parents: 29509
diff changeset
  5183
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
  5184
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
  5185
  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
  5186
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  5187
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
  5188
  by (subst takeWhile_eq_take) (auto dest: sorted_take)
29626
6f8aada233c1 sorted_take, sorted_drop
haftmann
parents: 29509
diff changeset
  5189
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5190
lemma sorted_filter:
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5191
  "sorted (map f xs) \<Longrightarrow> sorted (map f (filter P xs))"
68109
cebf36c14226 new def of sorted and sorted_wrt
nipkow
parents: 68085
diff changeset
  5192
  by (induct xs) simp_all
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5193
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5194
lemma foldr_max_sorted:
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5195
  assumes "sorted (rev xs)"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5196
  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
  5197
  using assms
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53017
diff changeset
  5198
proof (induct xs)
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5199
  case (Cons x xs)
53374
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53017
diff changeset
  5200
  then have "sorted (rev xs)" using sorted_append by auto
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53017
diff changeset
  5201
  with Cons show ?case
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53017
diff changeset
  5202
    by (cases xs) (auto simp add: sorted_append max_def)
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5203
qed simp
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5204
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5205
lemma filter_equals_takeWhile_sorted_rev:
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5206
  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
  5207
  shows "filter (\<lambda>x. t < f x) xs = takeWhile (\<lambda> x. t < f x) xs"
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5208
    (is "filter ?P xs = ?tW")
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5209
proof (rule takeWhile_eq_filter[symmetric])
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5210
  let "?dW" = "dropWhile ?P xs"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5211
  fix x assume "x \<in> set ?dW"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5212
  then obtain i where i: "i < length ?dW" and nth_i: "x = ?dW ! i"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5213
    unfolding in_set_conv_nth by auto
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5214
  hence "length ?tW + i < length (?tW @ ?dW)"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5215
    unfolding length_append by simp
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5216
  hence i': "length (map f ?tW) + i < length (map f xs)" by simp
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5217
  have "(map f ?tW @ map f ?dW) ! (length (map f ?tW) + i) \<le>
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5218
        (map f ?tW @ map f ?dW) ! (length (map f ?tW) + 0)"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5219
    using sorted_rev_nth_mono[OF sorted _ i', of "length ?tW"]
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5220
    unfolding map_append[symmetric] by simp
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5221
  hence "f x \<le> f (?dW ! 0)"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5222
    unfolding nth_append_length_plus nth_i
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5223
    using i preorder_class.le_less_trans[OF le0 i] by simp
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5224
  also have "... \<le> t"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5225
    using hd_dropWhile[of "?P" xs] le0[THEN preorder_class.le_less_trans, OF i]
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5226
    using hd_conv_nth[of "?dW"] by simp
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5227
  finally show "\<not> t < f x" by simp
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5228
qed
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5229
66434
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5230
lemma sorted_map_same:
68249
949d93804740 First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents: 68215
diff changeset
  5231
  "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
  5232
proof (induct xs arbitrary: g)
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5233
  case Nil then show ?case by simp
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5234
next
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5235
  case (Cons x xs)
68249
949d93804740 First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents: 68215
diff changeset
  5236
  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
  5237
  moreover from Cons have "sorted (map f (filter (\<lambda>y. f y = (g \<circ> Cons x) xs) xs))" .
68109
cebf36c14226 new def of sorted and sorted_wrt
nipkow
parents: 68085
diff changeset
  5238
  ultimately show ?case by simp_all
66434
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5239
qed
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5240
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5241
lemma sorted_same:
68249
949d93804740 First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents: 68215
diff changeset
  5242
  "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
  5243
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
  5244
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5245
end
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5246
68190
695ff8a207b0 added lemmas
nipkow
parents: 68186
diff changeset
  5247
lemma sorted_upt[simp]: "sorted [m..<n]"
695ff8a207b0 added lemmas
nipkow
parents: 68186
diff changeset
  5248
by(simp add: sorted_sorted_wrt sorted_wrt_mono_rel[OF _ sorted_wrt_upt])
695ff8a207b0 added lemmas
nipkow
parents: 68186
diff changeset
  5249
695ff8a207b0 added lemmas
nipkow
parents: 68186
diff changeset
  5250
lemma sorted_upto[simp]: "sorted [m..n]"
695ff8a207b0 added lemmas
nipkow
parents: 68186
diff changeset
  5251
by(simp add: sorted_sorted_wrt sorted_wrt_mono_rel[OF _ sorted_wrt_upto])
695ff8a207b0 added lemmas
nipkow
parents: 68186
diff changeset
  5252
66434
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5253
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5254
subsubsection \<open>Sorting functions\<close>
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5255
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  5256
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
  5257
permutation of its input because the nicest proof is via multisets,
66654
4a812abde314 added lemma
nipkow
parents: 66584
diff changeset
  5258
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
  5259
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
  5260
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
  5261
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5262
context linorder
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5263
begin
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5264
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5265
lemma set_insort_key:
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5266
  "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
  5267
by (induct xs) auto
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5268
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5269
lemma length_insort [simp]:
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5270
  "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
  5271
by (induct xs) simp_all
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5272
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5273
lemma insort_key_left_comm:
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5274
  assumes "f x \<noteq> f y"
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5275
  shows "insort_key f y (insort_key f x xs) = insort_key f x (insort_key f y xs)"
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5276
by (induct xs) (auto simp add: assms dest: antisym)
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5277
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5278
lemma insort_left_comm:
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5279
  "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
  5280
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
  5281
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5282
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
  5283
proof
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5284
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
  5285
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5286
lemma sort_key_simps [simp]:
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5287
  "sort_key f [] = []"
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5288
  "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
  5289
by (simp_all add: sort_key_def)
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5290
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5291
lemma sort_key_conv_fold:
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5292
  assumes "inj_on f (set xs)"
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5293
  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
  5294
proof -
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5295
  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
  5296
  proof (rule fold_rev, rule ext)
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5297
    fix zs
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5298
    fix x y
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5299
    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
  5300
    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
  5301
    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
  5302
    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
  5303
      by (induct zs) (auto intro: * simp add: **)
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5304
  qed
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5305
  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
  5306
qed
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5307
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5308
lemma sort_conv_fold:
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5309
  "sort xs = fold insort xs []"
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5310
by (rule sort_key_conv_fold) simp
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5311
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5312
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
  5313
by (induct xs, auto)
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5314
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5315
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
  5316
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
  5317
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5318
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
  5319
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
  5320
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5321
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
  5322
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
  5323
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5324
lemma sorted_insort_key: "sorted (map f (insort_key f x xs)) = sorted (map f xs)"
68109
cebf36c14226 new def of sorted and sorted_wrt
nipkow
parents: 68085
diff changeset
  5325
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
  5326
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5327
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
  5328
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
  5329
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5330
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
  5331
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
  5332
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5333
theorem sorted_sort [simp]: "sorted (sort xs)"
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5334
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
  5335
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5336
lemma insort_not_Nil [simp]:
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5337
  "insort_key f a xs \<noteq> []"
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5338
by (induction xs) simp_all
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5339
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5340
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
  5341
by (cases xs) auto
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5342
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5343
lemma sorted_sort_id: "sorted xs \<Longrightarrow> sort xs = xs"
68109
cebf36c14226 new def of sorted and sorted_wrt
nipkow
parents: 68085
diff changeset
  5344
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
  5345
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5346
lemma insort_key_remove1:
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5347
  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
  5348
  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
  5349
using assms proof (induct xs)
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5350
  case (Cons x xs)
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5351
  then show ?case
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5352
  proof (cases "x = a")
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5353
    case False
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5354
    then have "f x \<noteq> f a" using Cons.prems by auto
68109
cebf36c14226 new def of sorted and sorted_wrt
nipkow
parents: 68085
diff changeset
  5355
    then have "f x < f a" using Cons.prems by auto
cebf36c14226 new def of sorted and sorted_wrt
nipkow
parents: 68085
diff changeset
  5356
    with \<open>f x \<noteq> f a\<close> show ?thesis using Cons by (auto simp: insort_is_Cons)
cebf36c14226 new def of sorted and sorted_wrt
nipkow
parents: 68085
diff changeset
  5357
  qed (auto simp: insort_is_Cons)
66434
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5358
qed simp
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5359
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5360
lemma insort_remove1:
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5361
  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
  5362
  shows "insort a (remove1 a xs) = xs"
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5363
proof (rule insort_key_remove1)
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67171
diff changeset
  5364
  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
  5365
  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
  5366
  from \<open>sorted xs\<close> show "sorted (map (\<lambda>x. x) xs)" by simp
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67171
diff changeset
  5367
  from \<open>a \<in> set xs\<close> have "a \<in> set (filter ((=) a) xs)" by auto
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67171
diff changeset
  5368
  then have "set (filter ((=) a) xs) \<noteq> {}" by auto
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67171
diff changeset
  5369
  then have "filter ((=) a) xs \<noteq> []" by (auto simp only: set_empty)
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67171
diff changeset
  5370
  then have "length (filter ((=) a) xs) > 0" by simp
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67171
diff changeset
  5371
  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
  5372
  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
  5373
    by simp
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67171
diff changeset
  5374
  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
  5375
qed
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5376
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5377
lemma finite_sorted_distinct_unique:
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  5378
  assumes "finite A" shows "\<exists>!xs. set xs = A \<and> sorted xs \<and> distinct xs"
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  5379
proof -
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  5380
  obtain xs where "distinct xs" "A = set xs"
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  5381
    using finite_distinct_list [OF assms] by metis
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  5382
  then show ?thesis
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  5383
    by (rule_tac a="sort xs" in ex1I) (auto simp: sorted_distinct_set_unique)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  5384
qed
66434
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 66358
diff changeset
  5385
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
  5386
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
  5387
  "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
  5388
  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
  5389
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
  5390
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
  5391
  "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
  5392
  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
  5393
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
  5394
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
  5395
  "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
  5396
  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
  5397
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
  5398
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
  5399
  "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
  5400
  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
  5401
35608
db4045d1406e added insort_insert
haftmann
parents: 35603
diff changeset
  5402
lemma set_insort_insert:
db4045d1406e added insort_insert
haftmann
parents: 35603
diff changeset
  5403
  "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
  5404
  by (auto simp add: insort_insert_key_def set_insort_key)
35608
db4045d1406e added insort_insert
haftmann
parents: 35603
diff changeset
  5405
db4045d1406e added insort_insert
haftmann
parents: 35603
diff changeset
  5406
lemma distinct_insort_insert:
db4045d1406e added insort_insert
haftmann
parents: 35603
diff changeset
  5407
  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
  5408
  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
  5409
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
  5410
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
  5411
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
  5412
  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
  5413
  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
  5414
  using assms by (simp add: insort_insert_key_def sorted_insort_key)
35608
db4045d1406e added insort_insert
haftmann
parents: 35603
diff changeset
  5415
db4045d1406e added insort_insert
haftmann
parents: 35603
diff changeset
  5416
lemma sorted_insort_insert:
db4045d1406e added insort_insert
haftmann
parents: 35603
diff changeset
  5417
  assumes "sorted xs"
db4045d1406e added insort_insert
haftmann
parents: 35603
diff changeset
  5418
  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
  5419
  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
  5420
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
  5421
lemma filter_insort_triv:
37107
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  5422
  "\<not> P x \<Longrightarrow> filter P (insort_key f x xs) = filter P xs"
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  5423
  by (induct xs) simp_all
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  5424
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
  5425
lemma filter_insort:
37107
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  5426
  "sorted (map f xs) \<Longrightarrow> P x \<Longrightarrow> filter P (insort_key f x xs) = insort_key f x (filter P xs)"
68109
cebf36c14226 new def of sorted and sorted_wrt
nipkow
parents: 68085
diff changeset
  5427
  by (induct xs) (auto, subst insort_is_Cons, auto)
37107
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  5428
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
  5429
lemma filter_sort:
37107
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  5430
  "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
  5431
  by (induct xs) (simp_all add: filter_insort_triv filter_insort)
37107
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  5432
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  5433
lemma remove1_insort [simp]:
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  5434
  "remove1 x (insort x xs) = xs"
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  5435
  by (induct xs) simp_all
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  5436
24616
fac3dd4ade83 sorting
nipkow
parents: 24566
diff changeset
  5437
end
fac3dd4ade83 sorting
nipkow
parents: 24566
diff changeset
  5438
68191
4ac04fe61e98 removed duplicates
nipkow
parents: 68190
diff changeset
  5439
lemma sort_upt [simp]: "sort [m..<n] = [m..<n]"
4ac04fe61e98 removed duplicates
nipkow
parents: 68190
diff changeset
  5440
by (rule sorted_sort_id) simp
4ac04fe61e98 removed duplicates
nipkow
parents: 68190
diff changeset
  5441
4ac04fe61e98 removed duplicates
nipkow
parents: 68190
diff changeset
  5442
lemma sort_upto [simp]: "sort [i..j] = [i..j]"
4ac04fe61e98 removed duplicates
nipkow
parents: 68190
diff changeset
  5443
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
  5444
52379
7f864f2219a9 selection operator smallest_prime_beyond
haftmann
parents: 52148
diff changeset
  5445
lemma sorted_find_Min:
67479
31d04ba28893 imported patch sorted
nipkow
parents: 67443
diff changeset
  5446
  "sorted xs \<Longrightarrow> \<exists>x \<in> set xs. P x \<Longrightarrow> List.find P xs = Some (Min {x\<in>set xs. P x})"
31d04ba28893 imported patch sorted
nipkow
parents: 67443
diff changeset
  5447
proof (induct xs)
52379
7f864f2219a9 selection operator smallest_prime_beyond
haftmann
parents: 52148
diff changeset
  5448
  case Nil then show ?case by simp
7f864f2219a9 selection operator smallest_prime_beyond
haftmann
parents: 52148
diff changeset
  5449
next
67479
31d04ba28893 imported patch sorted
nipkow
parents: 67443
diff changeset
  5450
  case (Cons x xs) show ?case proof (cases "P x")
31d04ba28893 imported patch sorted
nipkow
parents: 67443
diff changeset
  5451
    case True
68109
cebf36c14226 new def of sorted and sorted_wrt
nipkow
parents: 68085
diff changeset
  5452
    with Cons show ?thesis by (auto intro: Min_eqI [symmetric])
52379
7f864f2219a9 selection operator smallest_prime_beyond
haftmann
parents: 52148
diff changeset
  5453
  next
7f864f2219a9 selection operator smallest_prime_beyond
haftmann
parents: 52148
diff changeset
  5454
    case False then have "{y. (y = x \<or> y \<in> set xs) \<and> P y} = {y \<in> set xs. P y}"
7f864f2219a9 selection operator smallest_prime_beyond
haftmann
parents: 52148
diff changeset
  5455
      by auto
68109
cebf36c14226 new def of sorted and sorted_wrt
nipkow
parents: 68085
diff changeset
  5456
    with Cons False show ?thesis by (simp_all)
52379
7f864f2219a9 selection operator smallest_prime_beyond
haftmann
parents: 52148
diff changeset
  5457
  qed
7f864f2219a9 selection operator smallest_prime_beyond
haftmann
parents: 52148
diff changeset
  5458
qed
7f864f2219a9 selection operator smallest_prime_beyond
haftmann
parents: 52148
diff changeset
  5459
66853
24e4fc6b8151 added lemmas, tuned spaces
nipkow
parents: 66847
diff changeset
  5460
lemma sorted_enumerate [simp]: "sorted (map fst (enumerate n xs))"
24e4fc6b8151 added lemmas, tuned spaces
nipkow
parents: 66847
diff changeset
  5461
by (simp add: enumerate_eq_zip)
58437
8d124c73c37a added lemmas
haftmann
parents: 58310
diff changeset
  5462
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  5463
text \<open>Stability of \<^const>\<open>sort_key\<close>:\<close>
67684
6987b0c36f12 simplified def of stable
nipkow
parents: 67613
diff changeset
  5464
68249
949d93804740 First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents: 68215
diff changeset
  5465
lemma sort_key_stable: "filter (\<lambda>y. f y = k) (sort_key f xs) = filter (\<lambda>y. f y = k) xs"
67684
6987b0c36f12 simplified def of stable
nipkow
parents: 67613
diff changeset
  5466
proof (induction xs)
66654
4a812abde314 added lemma
nipkow
parents: 66584
diff changeset
  5467
  case Nil thus ?case by simp
66892
d67d28254ff2 remove trailing whitespaces in List
bulwahn
parents: 66891
diff changeset
  5468
next
66654
4a812abde314 added lemma
nipkow
parents: 66584
diff changeset
  5469
  case (Cons a xs)
66892
d67d28254ff2 remove trailing whitespaces in List
bulwahn
parents: 66891
diff changeset
  5470
  thus ?case
67684
6987b0c36f12 simplified def of stable
nipkow
parents: 67613
diff changeset
  5471
  proof (cases "f a = k")
6987b0c36f12 simplified def of stable
nipkow
parents: 67613
diff changeset
  5472
    case False thus ?thesis
6987b0c36f12 simplified def of stable
nipkow
parents: 67613
diff changeset
  5473
      using Cons.IH by (metis (mono_tags) filter.simps(2) filter_sort)
6987b0c36f12 simplified def of stable
nipkow
parents: 67613
diff changeset
  5474
  next
66892
d67d28254ff2 remove trailing whitespaces in List
bulwahn
parents: 66891
diff changeset
  5475
    case True
68249
949d93804740 First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents: 68215
diff changeset
  5476
    hence ler: "filter (\<lambda>y. f y = k) (a # xs) = a # filter (\<lambda>y. f y = f a) xs" by simp
949d93804740 First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents: 68215
diff changeset
  5477
    have "\<forall>y \<in> set (sort_key f (filter (\<lambda>y. f y = f a) xs)). f y = f a" by simp
949d93804740 First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents: 68215
diff changeset
  5478
    hence "insort_key f a (sort_key f (filter (\<lambda>y. f y = f a) xs))
949d93804740 First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents: 68215
diff changeset
  5479
            = a # (sort_key f (filter (\<lambda>y. f y = f a) xs))"
66654
4a812abde314 added lemma
nipkow
parents: 66584
diff changeset
  5480
      by (simp add: insort_is_Cons)
68249
949d93804740 First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents: 68215
diff changeset
  5481
    hence lel: "filter (\<lambda>y. f y = k) (sort_key f (a # xs)) = a # filter (\<lambda>y. f y = f a) (sort_key f xs)"
67684
6987b0c36f12 simplified def of stable
nipkow
parents: 67613
diff changeset
  5482
      by (metis True filter_sort ler sort_key_simps(2))
6987b0c36f12 simplified def of stable
nipkow
parents: 67613
diff changeset
  5483
    from lel ler show ?thesis using Cons.IH True by (auto)
66654
4a812abde314 added lemma
nipkow
parents: 66584
diff changeset
  5484
  qed
4a812abde314 added lemma
nipkow
parents: 66584
diff changeset
  5485
qed
4a812abde314 added lemma
nipkow
parents: 66584
diff changeset
  5486
67684
6987b0c36f12 simplified def of stable
nipkow
parents: 67613
diff changeset
  5487
corollary stable_sort_key_sort_key: "stable_sort_key sort_key"
6987b0c36f12 simplified def of stable
nipkow
parents: 67613
diff changeset
  5488
by(simp add: stable_sort_key_def sort_key_stable)
6987b0c36f12 simplified def of stable
nipkow
parents: 67613
diff changeset
  5489
67606
3b3188ae63da added lemmas
nipkow
parents: 67481
diff changeset
  5490
lemma sort_key_const: "sort_key (\<lambda>x. c) xs = xs"
67684
6987b0c36f12 simplified def of stable
nipkow
parents: 67613
diff changeset
  5491
by (metis (mono_tags) filter_True sort_key_stable)
67606
3b3188ae63da added lemmas
nipkow
parents: 67481
diff changeset
  5492
35115
446c5063e4fd modernized translations;
wenzelm
parents: 35028
diff changeset
  5493
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  5494
subsubsection \<open>\<^const>\<open>transpose\<close> on sorted lists\<close>
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5495
66853
24e4fc6b8151 added lemmas, tuned spaces
nipkow
parents: 66847
diff changeset
  5496
lemma sorted_transpose[simp]: "sorted (rev (map length (transpose xs)))"
68175
e0bd5089eabf cleaning up sorted
nipkow
parents: 68160
diff changeset
  5497
by (auto simp: sorted_iff_nth_mono rev_nth nth_transpose
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5498
    length_filter_conv_card intro: card_mono)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5499
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5500
lemma transpose_max_length:
68249
949d93804740 First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents: 68215
diff changeset
  5501
  "foldr (\<lambda>xs. max (length xs)) (transpose xs) 0 = length (filter (\<lambda>x. x \<noteq> []) xs)"
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5502
  (is "?L = ?R")
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5503
proof (cases "transpose xs = []")
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5504
  case False
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5505
  have "?L = foldr max (map length (transpose xs)) 0"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5506
    by (simp add: foldr_map comp_def)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5507
  also have "... = length (transpose xs ! 0)"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5508
    using False sorted_transpose by (simp add: foldr_max_sorted)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5509
  finally show ?thesis
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5510
    using False by (simp add: nth_transpose)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5511
next
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5512
  case True
68249
949d93804740 First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents: 68215
diff changeset
  5513
  hence "filter (\<lambda>x. x \<noteq> []) xs = []"
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5514
    by (auto intro!: filter_False simp: transpose_empty)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5515
  thus ?thesis by (simp add: transpose_empty True)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5516
qed
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5517
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5518
lemma length_transpose_sorted:
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5519
  fixes xs :: "'a list list"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5520
  assumes sorted: "sorted (rev (map length xs))"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5521
  shows "length (transpose xs) = (if xs = [] then 0 else length (xs ! 0))"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5522
proof (cases "xs = []")
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5523
  case False
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5524
  thus ?thesis
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5525
    using foldr_max_sorted[OF sorted] False
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5526
    unfolding length_transpose foldr_map comp_def
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5527
    by simp
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5528
qed simp
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5529
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5530
lemma nth_nth_transpose_sorted[simp]:
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5531
  fixes xs :: "'a list list"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5532
  assumes sorted: "sorted (rev (map length xs))"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5533
  and i: "i < length (transpose xs)"
68249
949d93804740 First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents: 68215
diff changeset
  5534
  and j: "j < length (filter (\<lambda>ys. i < length ys) xs)"
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5535
  shows "transpose xs ! i ! j = xs ! j  ! i"
66853
24e4fc6b8151 added lemmas, tuned spaces
nipkow
parents: 66847
diff changeset
  5536
using j filter_equals_takeWhile_sorted_rev[OF sorted, of i]
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5537
    nth_transpose[OF i] nth_map[OF j]
66853
24e4fc6b8151 added lemmas, tuned spaces
nipkow
parents: 66847
diff changeset
  5538
by (simp add: takeWhile_nth)
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5539
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5540
lemma transpose_column_length:
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5541
  fixes xs :: "'a list list"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5542
  assumes sorted: "sorted (rev (map length xs))" and "i < length xs"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5543
  shows "length (filter (\<lambda>ys. i < length ys) (transpose xs)) = length (xs ! i)"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5544
proof -
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  5545
  have "xs \<noteq> []" using \<open>i < length xs\<close> by auto
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5546
  note filter_equals_takeWhile_sorted_rev[OF sorted, simp]
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5547
  { fix j assume "j \<le> i"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  5548
    note sorted_rev_nth_mono[OF sorted, of j i, simplified, OF this \<open>i < length xs\<close>]
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5549
  } note sortedE = this[consumes 1]
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5550
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5551
  have "{j. j < length (transpose xs) \<and> i < length (transpose xs ! j)}
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5552
    = {..< length (xs ! i)}"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5553
  proof safe
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5554
    fix j
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5555
    assume "j < length (transpose xs)" and "i < length (transpose xs ! j)"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5556
    with this(2) nth_transpose[OF this(1)]
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5557
    have "i < length (takeWhile (\<lambda>ys. j < length ys) xs)" by simp
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5558
    from nth_mem[OF this] takeWhile_nth[OF this]
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5559
    show "j < length (xs ! i)" by (auto dest: set_takeWhileD)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5560
  next
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5561
    fix j assume "j < length (xs ! i)"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5562
    thus "j < length (transpose xs)"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  5563
      using foldr_max_sorted[OF sorted] \<open>xs \<noteq> []\<close> sortedE[OF le0]
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5564
      by (auto simp: length_transpose comp_def foldr_map)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5565
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5566
    have "Suc i \<le> length (takeWhile (\<lambda>ys. j < length ys) xs)"
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  5567
      using \<open>i < length xs\<close> \<open>j < length (xs ! i)\<close> less_Suc_eq_le
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5568
      by (auto intro!: length_takeWhile_less_P_nth dest!: sortedE)
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  5569
    with nth_transpose[OF \<open>j < length (transpose xs)\<close>]
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5570
    show "i < length (transpose xs ! j)" by simp
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5571
  qed
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5572
  thus ?thesis by (simp add: length_filter_conv_card)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5573
qed
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5574
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5575
lemma transpose_column:
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5576
  fixes xs :: "'a list list"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5577
  assumes sorted: "sorted (rev (map length xs))" and "i < length xs"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5578
  shows "map (\<lambda>ys. ys ! i) (filter (\<lambda>ys. i < length ys) (transpose xs))
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5579
    = 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
  5580
proof (rule nth_equalityI)
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5581
  show length: "length ?R = length (xs ! i)"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5582
    using transpose_column_length[OF assms] by simp
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5583
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5584
  fix j assume j: "j < length ?R"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5585
  note * = less_le_trans[OF this, unfolded length_map, OF length_filter_le]
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5586
  from j have j_less: "j < length (xs ! i)" using length by simp
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5587
  have i_less_tW: "Suc i \<le> length (takeWhile (\<lambda>ys. Suc j \<le> length ys) xs)"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5588
  proof (rule length_takeWhile_less_P_nth)
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  5589
    show "Suc i \<le> length xs" using \<open>i < length xs\<close> by simp
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5590
    fix k assume "k < Suc i"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5591
    hence "k \<le> i" by auto
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  5592
    with sorted_rev_nth_mono[OF sorted this] \<open>i < length xs\<close>
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5593
    have "length (xs ! i) \<le> length (xs ! k)" by simp
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5594
    thus "Suc j \<le> length (xs ! k)" using j_less by simp
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5595
  qed
68249
949d93804740 First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents: 68215
diff changeset
  5596
  have i_less_filter: "i < length (filter (\<lambda>ys. j < length ys) xs) "
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5597
    unfolding filter_equals_takeWhile_sorted_rev[OF sorted, of j]
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5598
    using i_less_tW by (simp_all add: Suc_le_eq)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5599
  from j show "?R ! j = xs ! i ! j"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5600
    unfolding filter_equals_takeWhile_sorted_rev[OF sorted_transpose, of i]
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5601
    by (simp add: takeWhile_nth nth_nth_transpose_sorted[OF sorted * i_less_filter])
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5602
qed
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5603
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5604
lemma transpose_transpose:
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5605
  fixes xs :: "'a list list"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5606
  assumes sorted: "sorted (rev (map length xs))"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5607
  shows "transpose (transpose xs) = takeWhile (\<lambda>x. x \<noteq> []) xs" (is "?L = ?R")
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5608
proof -
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5609
  have len: "length ?L = length ?R"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5610
    unfolding length_transpose transpose_max_length
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5611
    using filter_equals_takeWhile_sorted_rev[OF sorted, of 0]
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5612
    by simp
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5613
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5614
  { fix i assume "i < length ?R"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5615
    with less_le_trans[OF _ length_takeWhile_le[of _ xs]]
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5616
    have "i < length xs" by simp
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5617
  } note * = this
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5618
  show ?thesis
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5619
    by (rule nth_equalityI)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5620
       (simp_all add: len nth_transpose transpose_column[OF sorted] * takeWhile_nth)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  5621
qed
24616
fac3dd4ade83 sorting
nipkow
parents: 24566
diff changeset
  5622
34934
440605046777 Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents: 34933
diff changeset
  5623
theorem transpose_rectangle:
440605046777 Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents: 34933
diff changeset
  5624
  assumes "xs = [] \<Longrightarrow> n = 0"
440605046777 Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents: 34933
diff changeset
  5625
  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
  5626
  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
  5627
    (is "?trans = ?map")
440605046777 Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents: 34933
diff changeset
  5628
proof (rule nth_equalityI)
440605046777 Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents: 34933
diff changeset
  5629
  have "sorted (rev (map length xs))"
68175
e0bd5089eabf cleaning up sorted
nipkow
parents: 68160
diff changeset
  5630
    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
  5631
  from foldr_max_sorted[OF this] assms
440605046777 Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents: 34933
diff changeset
  5632
  show len: "length ?trans = length ?map"
440605046777 Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents: 34933
diff changeset
  5633
    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
  5634
  moreover
68249
949d93804740 First step to remove nonstandard "[x <- xs. P]" syntax: only input
nipkow
parents: 68215
diff changeset
  5635
  { 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
  5636
      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
  5637
  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
  5638
    by (auto simp: nth_transpose intro: nth_equalityI)
440605046777 Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents: 34933
diff changeset
  5639
qed
24616
fac3dd4ade83 sorting
nipkow
parents: 24566
diff changeset
  5640
35115
446c5063e4fd modernized translations;
wenzelm
parents: 35028
diff changeset
  5641
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
  5642
subsubsection \<open>\<open>sorted_list_of_set\<close>\<close>
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  5643
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  5644
text\<open>This function maps (finite) linearly ordered sets to sorted
25069
081189141a6e added sorted_list_of_set
nipkow
parents: 25062
diff changeset
  5645
lists. Warning: in most cases it is not a good idea to convert from
081189141a6e added sorted_list_of_set
nipkow
parents: 25062
diff changeset
  5646
sets to lists but one should convert in the other direction (via
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  5647
\<^const>\<open>set\<close>).\<close>
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  5648
54868
bab6cade3cc5 prefer target-style syntaxx for sublocale
haftmann
parents: 54863
diff changeset
  5649
context linorder
bab6cade3cc5 prefer target-style syntaxx for sublocale
haftmann
parents: 54863
diff changeset
  5650
begin
bab6cade3cc5 prefer target-style syntaxx for sublocale
haftmann
parents: 54863
diff changeset
  5651
bab6cade3cc5 prefer target-style syntaxx for sublocale
haftmann
parents: 54863
diff changeset
  5652
definition sorted_list_of_set :: "'a set \<Rightarrow> 'a list" where
51489
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 51315
diff changeset
  5653
  "sorted_list_of_set = folding.F insort []"
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 51315
diff changeset
  5654
61605
1bf7b186542e qualifier is mandatory by default;
wenzelm
parents: 61566
diff changeset
  5655
sublocale sorted_list_of_set: folding insort Nil
61566
c3d6e570ccef Keyword 'rewrites' identifies rewrite morphisms.
ballarin
parents: 61468
diff changeset
  5656
rewrites
51489
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 51315
diff changeset
  5657
  "folding.F insort [] = sorted_list_of_set"
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 51315
diff changeset
  5658
proof -
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 51315
diff changeset
  5659
  interpret comp_fun_commute insort by (fact comp_fun_commute_insort)
61169
4de9ff3ea29a tuned proofs -- less legacy;
wenzelm
parents: 61076
diff changeset
  5660
  show "folding insort" by standard (fact comp_fun_commute)
51489
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 51315
diff changeset
  5661
  show "folding.F insort [] = sorted_list_of_set" by (simp only: sorted_list_of_set_def)
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 51315
diff changeset
  5662
qed
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 51315
diff changeset
  5663
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 51315
diff changeset
  5664
lemma sorted_list_of_set_empty:
35195
5163c2d00904 more lemmas about sort(_key)
haftmann
parents: 35115
diff changeset
  5665
  "sorted_list_of_set {} = []"
66853
24e4fc6b8151 added lemmas, tuned spaces
nipkow
parents: 66847
diff changeset
  5666
by (fact sorted_list_of_set.empty)
35195
5163c2d00904 more lemmas about sort(_key)
haftmann
parents: 35115
diff changeset
  5667
5163c2d00904 more lemmas about sort(_key)
haftmann
parents: 35115
diff changeset
  5668
lemma sorted_list_of_set_insert [simp]:
54868
bab6cade3cc5 prefer target-style syntaxx for sublocale
haftmann
parents: 54863
diff changeset
  5669
  "finite A \<Longrightarrow> sorted_list_of_set (insert x A) = insort x (sorted_list_of_set (A - {x}))"
66853
24e4fc6b8151 added lemmas, tuned spaces
nipkow
parents: 66847
diff changeset
  5670
by (fact sorted_list_of_set.insert_remove)
35195
5163c2d00904 more lemmas about sort(_key)
haftmann
parents: 35115
diff changeset
  5671
52122
510709f8881d more lemmas for sorted_list_of_set
noschinl
parents: 51875
diff changeset
  5672
lemma sorted_list_of_set_eq_Nil_iff [simp]:
510709f8881d more lemmas for sorted_list_of_set
noschinl
parents: 51875
diff changeset
  5673
  "finite A \<Longrightarrow> sorted_list_of_set A = [] \<longleftrightarrow> A = {}"
66853
24e4fc6b8151 added lemmas, tuned spaces
nipkow
parents: 66847
diff changeset
  5674
by (auto simp: sorted_list_of_set.remove)
52122
510709f8881d more lemmas for sorted_list_of_set
noschinl
parents: 51875
diff changeset
  5675
68083
d730a8cfc6e0 removed asm "finite"
nipkow
parents: 68028
diff changeset
  5676
lemma set_sorted_list_of_set [simp]:
d730a8cfc6e0 removed asm "finite"
nipkow
parents: 68028
diff changeset
  5677
  "finite A \<Longrightarrow> set (sorted_list_of_set A) = A"
d730a8cfc6e0 removed asm "finite"
nipkow
parents: 68028
diff changeset
  5678
by(induct A rule: finite_induct) (simp_all add: set_insort_key)
d730a8cfc6e0 removed asm "finite"
nipkow
parents: 68028
diff changeset
  5679
d730a8cfc6e0 removed asm "finite"
nipkow
parents: 68028
diff changeset
  5680
lemma sorted_sorted_list_of_set [simp]: "sorted (sorted_list_of_set A)"
d730a8cfc6e0 removed asm "finite"
nipkow
parents: 68028
diff changeset
  5681
proof (cases "finite A")
d730a8cfc6e0 removed asm "finite"
nipkow
parents: 68028
diff changeset
  5682
  case True thus ?thesis by(induction A) (simp_all add: sorted_insort)
d730a8cfc6e0 removed asm "finite"
nipkow
parents: 68028
diff changeset
  5683
next
d730a8cfc6e0 removed asm "finite"
nipkow
parents: 68028
diff changeset
  5684
  case False thus ?thesis by simp
d730a8cfc6e0 removed asm "finite"
nipkow
parents: 68028
diff changeset
  5685
qed
d730a8cfc6e0 removed asm "finite"
nipkow
parents: 68028
diff changeset
  5686
d730a8cfc6e0 removed asm "finite"
nipkow
parents: 68028
diff changeset
  5687
lemma distinct_sorted_list_of_set [simp]: "distinct (sorted_list_of_set A)"
d730a8cfc6e0 removed asm "finite"
nipkow
parents: 68028
diff changeset
  5688
proof (cases "finite A")
d730a8cfc6e0 removed asm "finite"
nipkow
parents: 68028
diff changeset
  5689
  case True thus ?thesis by(induction A) (simp_all add: distinct_insort)
d730a8cfc6e0 removed asm "finite"
nipkow
parents: 68028
diff changeset
  5690
next
d730a8cfc6e0 removed asm "finite"
nipkow
parents: 68028
diff changeset
  5691
  case False thus ?thesis by simp
d730a8cfc6e0 removed asm "finite"
nipkow
parents: 68028
diff changeset
  5692
qed
52122
510709f8881d more lemmas for sorted_list_of_set
noschinl
parents: 51875
diff changeset
  5693
68085
7fe53815cce9 reinstated old lemma name
nipkow
parents: 68083
diff changeset
  5694
lemmas sorted_list_of_set = set_sorted_list_of_set sorted_sorted_list_of_set distinct_sorted_list_of_set
7fe53815cce9 reinstated old lemma name
nipkow
parents: 68083
diff changeset
  5695
47841
179b5e7c9803 making sorted_list_of_set executable
bulwahn
parents: 47640
diff changeset
  5696
lemma sorted_list_of_set_sort_remdups [code]:
35195
5163c2d00904 more lemmas about sort(_key)
haftmann
parents: 35115
diff changeset
  5697
  "sorted_list_of_set (set xs) = sort (remdups xs)"
5163c2d00904 more lemmas about sort(_key)
haftmann
parents: 35115
diff changeset
  5698
proof -
42871
1c0b99f950d9 names of fold_set locales resemble name of characteristic property more closely
haftmann
parents: 42809
diff changeset
  5699
  interpret comp_fun_commute insort by (fact comp_fun_commute_insort)
51489
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 51315
diff changeset
  5700
  show ?thesis by (simp add: sorted_list_of_set.eq_fold sort_conv_fold fold_set_fold_remdups)
35195
5163c2d00904 more lemmas about sort(_key)
haftmann
parents: 35115
diff changeset
  5701
qed
25069
081189141a6e added sorted_list_of_set
nipkow
parents: 25062
diff changeset
  5702
37107
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  5703
lemma sorted_list_of_set_remove:
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  5704
  assumes "finite A"
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  5705
  shows "sorted_list_of_set (A - {x}) = remove1 x (sorted_list_of_set A)"
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  5706
proof (cases "x \<in> A")
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  5707
  case False with assms have "x \<notin> set (sorted_list_of_set A)" by simp
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  5708
  with False show ?thesis by (simp add: remove1_idem)
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  5709
next
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  5710
  case True then obtain B where A: "A = insert x B" by (rule Set.set_insert)
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  5711
  with assms show ?thesis by simp
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  5712
qed
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  5713
25069
081189141a6e added sorted_list_of_set
nipkow
parents: 25062
diff changeset
  5714
end
081189141a6e added sorted_list_of_set
nipkow
parents: 25062
diff changeset
  5715
37107
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  5716
lemma sorted_list_of_set_range [simp]:
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  5717
  "sorted_list_of_set {m..<n} = [m..<n]"
66853
24e4fc6b8151 added lemmas, tuned spaces
nipkow
parents: 66847
diff changeset
  5718
by (rule sorted_distinct_set_unique) simp_all
37107
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  5719
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  5720
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
  5721
subsubsection \<open>\<open>lists\<close>: the list-forming operator over sets\<close>
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5722
23740
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  5723
inductive_set
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  5724
  lists :: "'a set => 'a list set"
23740
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  5725
  for A :: "'a set"
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  5726
where
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  5727
    Nil [intro!, simp]: "[] \<in> lists A"
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  5728
  | Cons [intro!, simp]: "\<lbrakk>a \<in> A; l \<in> lists A\<rbrakk> \<Longrightarrow> a#l \<in> lists A"
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  5729
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  5730
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
  5731
inductive_cases listspE [elim!]: "listsp A (x # l)"
23740
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  5732
46313
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  5733
inductive_simps listsp_simps[code]:
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  5734
  "listsp A []"
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  5735
  "listsp A (x # xs)"
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  5736
23740
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  5737
lemma listsp_mono [mono]: "A \<le> B ==> listsp A \<le> listsp B"
46884
154dc6ec0041 tuned proofs
noschinl
parents: 46698
diff changeset
  5738
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
  5739
46176
1898e61e89c4 pred_subset/equals_eq are now standard pred_set_conv rules
berghofe
parents: 46156
diff changeset
  5740
lemmas lists_mono = listsp_mono [to_set]
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  5741
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22262
diff changeset
  5742
lemma listsp_infI:
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22262
diff changeset
  5743
  assumes l: "listsp A l" shows "listsp B l ==> listsp (inf A B) l" using l
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  5744
by induct blast+
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5745
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22262
diff changeset
  5746
lemmas lists_IntI = listsp_infI [to_set]
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22262
diff changeset
  5747
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22262
diff changeset
  5748
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
  5749
proof (rule mono_inf [where f=listsp, THEN order_antisym])
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  5750
  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
  5751
  show "inf (listsp A) (listsp B) \<le> listsp (inf A B)" by (blast intro!: listsp_infI)
14388
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  5752
qed
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  5753
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
  5754
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
  5755
46176
1898e61e89c4 pred_subset/equals_eq are now standard pred_set_conv rules
berghofe
parents: 46156
diff changeset
  5756
lemmas lists_Int_eq [simp] = listsp_inf_eq [to_set]
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  5757
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  5758
lemma Cons_in_lists_iff[simp]: "x#xs \<in> lists A \<longleftrightarrow> x \<in> A \<and> xs \<in> lists A"
39613
7723505c746a more lists lemmas
nipkow
parents: 39597
diff changeset
  5759
by auto
7723505c746a more lists lemmas
nipkow
parents: 39597
diff changeset
  5760
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  5761
lemma append_in_listsp_conv [iff]:
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  5762
     "(listsp A (xs @ ys)) = (listsp A xs \<and> listsp A ys)"
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5763
by (induct xs) auto
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5764
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  5765
lemmas append_in_lists_conv [iff] = append_in_listsp_conv [to_set]
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  5766
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  5767
lemma in_listsp_conv_set: "(listsp A xs) = (\<forall>x \<in> set xs. A x)"
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
  5768
\<comment> \<open>eliminate \<open>listsp\<close> in favour of \<open>set\<close>\<close>
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5769
by (induct xs) auto
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5770
46313
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  5771
lemmas in_lists_conv_set [code_unfold] = in_listsp_conv_set [to_set]
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  5772
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53954
diff changeset
  5773
lemma in_listspD [dest!]: "listsp A xs ==> \<forall>x\<in>set xs. A x"
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  5774
by (rule in_listsp_conv_set [THEN iffD1])
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  5775
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53954
diff changeset
  5776
lemmas in_listsD [dest!] = in_listspD [to_set]
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53954
diff changeset
  5777
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53954
diff changeset
  5778
lemma in_listspI [intro!]: "\<forall>x\<in>set xs. A x ==> listsp A xs"
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  5779
by (rule in_listsp_conv_set [THEN iffD2])
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  5780
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53954
diff changeset
  5781
lemmas in_listsI [intro!] = in_listspI [to_set]
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5782
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  5783
lemma lists_eq_set: "lists A = {xs. set xs \<le> A}"
39597
48f63a6c7f85 new lemma
nipkow
parents: 39534
diff changeset
  5784
by auto
48f63a6c7f85 new lemma
nipkow
parents: 39534
diff changeset
  5785
39613
7723505c746a more lists lemmas
nipkow
parents: 39597
diff changeset
  5786
lemma lists_empty [simp]: "lists {} = {[]}"
7723505c746a more lists lemmas
nipkow
parents: 39597
diff changeset
  5787
by auto
7723505c746a more lists lemmas
nipkow
parents: 39597
diff changeset
  5788
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5789
lemma lists_UNIV [simp]: "lists UNIV = UNIV"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5790
by auto
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5791
50134
13211e07d931 add Countable_Set theory
hoelzl
parents: 50027
diff changeset
  5792
lemma lists_image: "lists (f`A) = map f ` lists A"
13211e07d931 add Countable_Set theory
hoelzl
parents: 50027
diff changeset
  5793
proof -
13211e07d931 add Countable_Set theory
hoelzl
parents: 50027
diff changeset
  5794
  { fix xs have "\<forall>x\<in>set xs. x \<in> f ` A \<Longrightarrow> xs \<in> map f ` lists A"
55465
0d31c0546286 merged 'List.map' and 'List.list.map'
blanchet
parents: 55442
diff changeset
  5795
      by (induct xs) (auto simp del: list.map simp add: list.map[symmetric] intro!: imageI) }
50134
13211e07d931 add Countable_Set theory
hoelzl
parents: 50027
diff changeset
  5796
  then show ?thesis by auto
13211e07d931 add Countable_Set theory
hoelzl
parents: 50027
diff changeset
  5797
qed
17086
0eb0c9259dd7 added quite a few functions for code generation
nipkow
parents: 16998
diff changeset
  5798
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  5799
subsubsection \<open>Inductive definition for membership\<close>
17086
0eb0c9259dd7 added quite a few functions for code generation
nipkow
parents: 16998
diff changeset
  5800
23740
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  5801
inductive ListMem :: "'a \<Rightarrow> 'a list \<Rightarrow> bool"
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  5802
where
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  5803
    elem:  "ListMem x (x # xs)"
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  5804
  | insert:  "ListMem x xs \<Longrightarrow> ListMem x (y # xs)"
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  5805
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  5806
lemma ListMem_iff: "(ListMem x xs) = (x \<in> set xs)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  5807
proof
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  5808
  show "ListMem x xs \<Longrightarrow> x \<in> set xs"
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  5809
    by (induct set: ListMem) auto
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  5810
  show "x \<in> set xs \<Longrightarrow> ListMem x xs"
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  5811
    by (induct xs) (auto intro: ListMem.intros)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  5812
qed
17086
0eb0c9259dd7 added quite a few functions for code generation
nipkow
parents: 16998
diff changeset
  5813
0eb0c9259dd7 added quite a few functions for code generation
nipkow
parents: 16998
diff changeset
  5814
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  5815
subsubsection \<open>Lists as Cartesian products\<close>
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  5816
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
  5817
text\<open>\<open>set_Cons A Xs\<close>: the set of lists with head drawn from
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  5818
\<^term>\<open>A\<close> and tail drawn from \<^term>\<open>Xs\<close>.\<close>
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5819
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  5820
definition set_Cons :: "'a set \<Rightarrow> 'a list set \<Rightarrow> 'a list set" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  5821
"set_Cons A XS = {z. \<exists>x xs. z = x # xs \<and> x \<in> A \<and> xs \<in> XS}"
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5822
17724
e969fc0a4925 simprules need names
paulson
parents: 17629
diff changeset
  5823
lemma set_Cons_sing_Nil [simp]: "set_Cons A {[]} = (%x. [x])`A"
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5824
by (auto simp add: set_Cons_def)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5825
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  5826
text\<open>Yields the set of lists, all of the same length as the argument and
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  5827
with elements drawn from the corresponding element of the argument.\<close>
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5828
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  5829
primrec listset :: "'a set list \<Rightarrow> 'a list set" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  5830
"listset [] = {[]}" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  5831
"listset (A # As) = set_Cons A (listset As)"
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5832
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5833
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  5834
subsection \<open>Relations on Lists\<close>
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  5835
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  5836
subsubsection \<open>Length Lexicographic Ordering\<close>
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  5837
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  5838
text\<open>These orderings preserve well-foundedness: shorter lists
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  5839
  precede longer lists. These ordering are not used in dictionaries.\<close>
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  5840
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
  5841
primrec \<comment> \<open>The lexicographic ordering for lists of the specified length\<close>
34941
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
  5842
  lexn :: "('a \<times> 'a) set \<Rightarrow> nat \<Rightarrow> ('a list \<times> 'a list) set" where
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  5843
"lexn r 0 = {}" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  5844
"lexn r (Suc n) =
55932
68c5104d2204 renamed 'map_pair' to 'map_prod'
blanchet
parents: 55811
diff changeset
  5845
  (map_prod (%(x, xs). x#xs) (%(x, xs). x#xs) ` (r <*lex*> lexn r n)) Int
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  5846
  {(xs, ys). length xs = Suc n \<and> length ys = Suc n}"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  5847
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  5848
definition lex :: "('a \<times> 'a) set \<Rightarrow> ('a list \<times> 'a list) set" where
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
  5849
"lex r = (\<Union>n. lexn r n)" \<comment> \<open>Holds only between lists of the same length\<close>
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  5850
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  5851
definition lenlex :: "('a \<times> 'a) set => ('a list \<times> 'a list) set" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  5852
"lenlex r = inv_image (less_than <*lex*> lex r) (\<lambda>xs. (length xs, xs))"
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
  5853
        \<comment> \<open>Compares lists by their length and then lexicographically\<close>
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5854
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  5855
lemma wf_lexn: assumes "wf r" shows "wf (lexn r n)"
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  5856
proof (induct n)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  5857
  case (Suc n)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  5858
  have inj: "inj (\<lambda>(x, xs). x # xs)"
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  5859
    using assms by (auto simp: inj_on_def)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  5860
  have wf: "wf (map_prod (\<lambda>(x, xs). x # xs) (\<lambda>(x, xs). x # xs) ` (r <*lex*> lexn r n))"
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  5861
    by (simp add: Suc.hyps assms wf_lex_prod wf_map_prod_image [OF _ inj])
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  5862
  then show ?case
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  5863
    by (rule wf_subset) auto
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  5864
qed auto
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5865
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5866
lemma lexn_length:
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  5867
  "(xs, ys) \<in> lexn r n \<Longrightarrow> length xs = n \<and> length ys = n"
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  5868
by (induct n arbitrary: xs ys) auto
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5869
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5870
lemma wf_lex [intro!]: "wf r ==> wf (lex r)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  5871
  unfolding lex_def
68646
7dc9fe795dae more de-applying
paulson <lp15@cam.ac.uk>
parents: 68527
diff changeset
  5872
  apply (rule wf_UN)
7dc9fe795dae more de-applying
paulson <lp15@cam.ac.uk>
parents: 68527
diff changeset
  5873
   apply (simp add: wf_lexn)
7dc9fe795dae more de-applying
paulson <lp15@cam.ac.uk>
parents: 68527
diff changeset
  5874
  apply (metis DomainE Int_emptyI RangeE lexn_length)
7dc9fe795dae more de-applying
paulson <lp15@cam.ac.uk>
parents: 68527
diff changeset
  5875
  done
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5876
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5877
lemma lexn_conv:
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5878
  "lexn r n =
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5879
    {(xs,ys). length xs = n \<and> length ys = n \<and>
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  5880
    (\<exists>xys x y xs' ys'. xs= xys @ x#xs' \<and> ys= xys @ y # ys' \<and> (x, y) \<in> r)}"
18423
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  5881
apply (induct n, simp)
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5882
apply (simp add: image_Collect lex_prod_def, safe, blast)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5883
 apply (rule_tac x = "ab # xys" in exI, simp)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5884
apply (case_tac xys, simp_all, blast)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5885
done
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5886
62175
8ffc4d0e652d isabelle update_cartouches -c -t;
wenzelm
parents: 62100
diff changeset
  5887
text\<open>By Mathias Fleury:\<close>
62090
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5888
lemma lexn_transI:
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5889
  assumes "trans r" shows "trans (lexn r n)"
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5890
unfolding trans_def
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5891
proof (intro allI impI)
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5892
  fix as bs cs
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5893
  assume asbs: "(as, bs) \<in> lexn r n" and bscs: "(bs, cs) \<in> lexn r n"
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5894
  obtain abs a b as' bs' where
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5895
    n: "length as = n" and "length bs = n" and
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5896
    as: "as = abs @ a # as'" and
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5897
    bs: "bs = abs @ b # bs'" and
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5898
    abr: "(a, b) \<in> r"
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5899
    using asbs unfolding lexn_conv by blast
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5900
  obtain bcs b' c' cs' bs' where
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5901
    n': "length cs = n" and "length bs = n" and
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5902
    bs': "bs = bcs @ b' # bs'" and
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5903
    cs: "cs = bcs @ c' # cs'" and
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5904
    b'c'r: "(b', c') \<in> r"
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5905
    using bscs unfolding lexn_conv by blast
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5906
  consider (le) "length bcs < length abs"
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5907
    | (eq) "length bcs = length abs"
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5908
    | (ge) "length bcs > length abs" by linarith
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5909
  thus "(as, cs) \<in> lexn r n"
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5910
  proof cases
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5911
    let ?k = "length bcs"
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5912
    case le
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5913
    hence "as ! ?k = bs ! ?k" unfolding as bs by (simp add: nth_append)
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5914
    hence "(as ! ?k, cs ! ?k) \<in> r" using b'c'r unfolding bs' cs by auto
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5915
    moreover
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5916
    have "length bcs < length as" using le unfolding as by simp
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5917
    from id_take_nth_drop[OF this]
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5918
    have "as = take ?k as @ as ! ?k # drop (Suc ?k) as" .
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5919
    moreover
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5920
    have "length bcs < length cs" unfolding cs by simp
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5921
    from id_take_nth_drop[OF this]
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5922
    have "cs = take ?k cs @ cs ! ?k # drop (Suc ?k) cs" .
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5923
    moreover have "take ?k as = take ?k cs"
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5924
      using le arg_cong[OF bs, of "take (length bcs)"]
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5925
      unfolding cs as bs' by auto
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5926
    ultimately show ?thesis using n n' unfolding lexn_conv by auto
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5927
  next
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5928
    let ?k = "length abs"
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5929
    case ge
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5930
    hence "bs ! ?k = cs ! ?k" unfolding bs' cs by (simp add: nth_append)
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5931
    hence "(as ! ?k, cs ! ?k) \<in> r" using abr unfolding as bs by auto
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5932
    moreover
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5933
    have "length abs < length as" using ge unfolding as by simp
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5934
    from id_take_nth_drop[OF this]
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5935
    have "as = take ?k as @ as ! ?k # drop (Suc ?k) as" .
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5936
    moreover have "length abs < length cs" using n n' unfolding as by simp
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5937
    from id_take_nth_drop[OF this]
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5938
    have "cs = take ?k cs @ cs ! ?k # drop (Suc ?k) cs" .
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5939
    moreover have "take ?k as = take ?k cs"
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5940
      using ge arg_cong[OF bs', of "take (length abs)"]
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5941
      unfolding cs as bs by auto
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5942
    ultimately show ?thesis using n n' unfolding lexn_conv by auto
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5943
  next
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5944
    let ?k = "length abs"
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5945
    case eq
63540
f8652d0534fa tuned proofs -- avoid unstructured calculation;
wenzelm
parents: 63521
diff changeset
  5946
    hence *: "abs = bcs" "b = b'" using bs bs' by auto
f8652d0534fa tuned proofs -- avoid unstructured calculation;
wenzelm
parents: 63521
diff changeset
  5947
    hence "(a, c') \<in> r"
62090
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5948
      using abr b'c'r assms unfolding trans_def by blast
63540
f8652d0534fa tuned proofs -- avoid unstructured calculation;
wenzelm
parents: 63521
diff changeset
  5949
    with * show ?thesis using n n' unfolding lexn_conv as bs cs by auto
62090
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5950
  qed
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5951
qed
db9996a84166 added lemma
nipkow
parents: 62065
diff changeset
  5952
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5953
lemma lex_conv:
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5954
  "lex r =
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5955
    {(xs,ys). length xs = length ys \<and>
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  5956
    (\<exists>xys x y xs' ys'. xs = xys @ x # xs' \<and> ys = xys @ y # ys' \<and> (x, y) \<in> r)}"
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5957
by (force simp add: lex_def lexn_conv)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5958
15693
3a67e61c6e96 tuned Map, renamed lex stuff in List.
nipkow
parents: 15656
diff changeset
  5959
lemma wf_lenlex [intro!]: "wf r ==> wf (lenlex r)"
3a67e61c6e96 tuned Map, renamed lex stuff in List.
nipkow
parents: 15656
diff changeset
  5960
by (unfold lenlex_def) blast
3a67e61c6e96 tuned Map, renamed lex stuff in List.
nipkow
parents: 15656
diff changeset
  5961
3a67e61c6e96 tuned Map, renamed lex stuff in List.
nipkow
parents: 15656
diff changeset
  5962
lemma lenlex_conv:
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  5963
    "lenlex r = {(xs,ys). length xs < length ys \<or>
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  5964
                 length xs = length ys \<and> (xs, ys) \<in> lex r}"
30198
922f944f03b2 name changes
nipkow
parents: 30128
diff changeset
  5965
by (simp add: lenlex_def Id_on_def lex_prod_def inv_image_def)
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5966
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5967
lemma Nil_notin_lex [iff]: "([], ys) \<notin> lex r"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5968
by (simp add: lex_conv)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5969
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5970
lemma Nil2_notin_lex [iff]: "(xs, []) \<notin> lex r"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5971
by (simp add:lex_conv)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5972
18447
da548623916a removed or modified some instances of [iff]
paulson
parents: 18423
diff changeset
  5973
lemma Cons_in_lex [simp]:
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  5974
  "((x # xs, y # ys) \<in> lex r) =
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  5975
      ((x, y) \<in> r \<and> length xs = length ys \<or> x = y \<and> (xs, ys) \<in> lex r)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  5976
  apply (simp add: lex_conv)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  5977
  apply (rule iffI)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  5978
   prefer 2 apply (blast intro: Cons_eq_appendI, clarify)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  5979
  by (metis hd_append append_Nil list.sel(1) list.sel(3) tl_append2)
66502
5df7a346f07b Added lemmas
nipkow
parents: 66442
diff changeset
  5980
5df7a346f07b Added lemmas
nipkow
parents: 66442
diff changeset
  5981
lemma lex_append_rightI:
5df7a346f07b Added lemmas
nipkow
parents: 66442
diff changeset
  5982
  "(xs, ys) \<in> lex r \<Longrightarrow> length vs = length us \<Longrightarrow> (xs @ us, ys @ vs) \<in> lex r"
5df7a346f07b Added lemmas
nipkow
parents: 66442
diff changeset
  5983
by (fastforce simp: lex_def lexn_conv)
5df7a346f07b Added lemmas
nipkow
parents: 66442
diff changeset
  5984
5df7a346f07b Added lemmas
nipkow
parents: 66442
diff changeset
  5985
lemma lex_append_leftI:
5df7a346f07b Added lemmas
nipkow
parents: 66442
diff changeset
  5986
  "(ys, zs) \<in> lex r \<Longrightarrow> (xs @ ys, xs @ zs) \<in> lex r"
5df7a346f07b Added lemmas
nipkow
parents: 66442
diff changeset
  5987
by (induct xs) auto
5df7a346f07b Added lemmas
nipkow
parents: 66442
diff changeset
  5988
5df7a346f07b Added lemmas
nipkow
parents: 66442
diff changeset
  5989
lemma lex_append_leftD:
5df7a346f07b Added lemmas
nipkow
parents: 66442
diff changeset
  5990
  "\<forall>x. (x,x) \<notin> r \<Longrightarrow> (xs @ ys, xs @ zs) \<in> lex r \<Longrightarrow> (ys, zs) \<in> lex r"
5df7a346f07b Added lemmas
nipkow
parents: 66442
diff changeset
  5991
by (induct xs) auto
5df7a346f07b Added lemmas
nipkow
parents: 66442
diff changeset
  5992
5df7a346f07b Added lemmas
nipkow
parents: 66442
diff changeset
  5993
lemma lex_append_left_iff:
5df7a346f07b Added lemmas
nipkow
parents: 66442
diff changeset
  5994
  "\<forall>x. (x,x) \<notin> r \<Longrightarrow> (xs @ ys, xs @ zs) \<in> lex r \<longleftrightarrow> (ys, zs) \<in> lex r"
5df7a346f07b Added lemmas
nipkow
parents: 66442
diff changeset
  5995
by(metis lex_append_leftD lex_append_leftI)
5df7a346f07b Added lemmas
nipkow
parents: 66442
diff changeset
  5996
5df7a346f07b Added lemmas
nipkow
parents: 66442
diff changeset
  5997
lemma lex_take_index:
5df7a346f07b Added lemmas
nipkow
parents: 66442
diff changeset
  5998
  assumes "(xs, ys) \<in> lex r"
5df7a346f07b Added lemmas
nipkow
parents: 66442
diff changeset
  5999
  obtains i where "i < length xs" and "i < length ys" and "take i xs =
5df7a346f07b Added lemmas
nipkow
parents: 66442
diff changeset
  6000
take i ys"
5df7a346f07b Added lemmas
nipkow
parents: 66442
diff changeset
  6001
    and "(xs ! i, ys ! i) \<in> r"
5df7a346f07b Added lemmas
nipkow
parents: 66442
diff changeset
  6002
proof -
5df7a346f07b Added lemmas
nipkow
parents: 66442
diff changeset
  6003
  obtain n us x xs' y ys' where "(xs, ys) \<in> lexn r n" and "length xs = n" and "length ys = n"
5df7a346f07b Added lemmas
nipkow
parents: 66442
diff changeset
  6004
    and "xs = us @ x # xs'" and "ys = us @ y # ys'" and "(x, y) \<in> r"
5df7a346f07b Added lemmas
nipkow
parents: 66442
diff changeset
  6005
    using assms by (fastforce simp: lex_def lexn_conv)
5df7a346f07b Added lemmas
nipkow
parents: 66442
diff changeset
  6006
  then show ?thesis by (intro that [of "length us"]) auto
5df7a346f07b Added lemmas
nipkow
parents: 66442
diff changeset
  6007
qed
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  6008
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  6009
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  6010
subsubsection \<open>Lexicographic Ordering\<close>
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  6011
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  6012
text \<open>Classical lexicographic ordering on lists, ie. "a" < "ab" < "b".
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  6013
    This ordering does \emph{not} preserve well-foundedness.
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  6014
     Author: N. Voelker, March 2005.\<close>
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  6015
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  6016
definition lexord :: "('a \<times> 'a) set \<Rightarrow> ('a list \<times> 'a list) set" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  6017
"lexord r = {(x,y). \<exists> a v. y = x @ a # v \<or>
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  6018
            (\<exists> u a b v w. (a,b) \<in> r \<and> x = u @ (a # v) \<and> y = u @ (b # w))}"
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  6019
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  6020
lemma lexord_Nil_left[simp]:  "([],y) \<in> lexord r = (\<exists> a x. y = a # x)"
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  6021
by (unfold lexord_def, induct_tac y, auto)
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  6022
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  6023
lemma lexord_Nil_right[simp]: "(x,[]) \<notin> lexord r"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  6024
by (unfold lexord_def, induct_tac x, auto)
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  6025
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  6026
lemma lexord_cons_cons[simp]:
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  6027
  "((a # x, b # y) \<in> lexord r) = ((a,b)\<in> r \<or> (a = b \<and> (x,y)\<in> lexord r))"
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  6028
  unfolding lexord_def
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  6029
  apply (safe, simp_all)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  6030
     apply (metis hd_append list.sel(1))
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  6031
    apply (metis hd_append list.sel(1) list.sel(3) tl_append2)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  6032
   apply blast
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  6033
  by (meson Cons_eq_appendI)
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  6034
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  6035
lemmas lexord_simps = lexord_Nil_left lexord_Nil_right lexord_cons_cons
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  6036
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  6037
lemma lexord_append_rightI: "\<exists> b z. y = b # z \<Longrightarrow> (x, x @ y) \<in> lexord r"
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  6038
by (induct_tac x, auto)
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  6039
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  6040
lemma lexord_append_left_rightI:
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  6041
     "(a,b) \<in> r \<Longrightarrow> (u @ a # x, u @ b # y) \<in> lexord r"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  6042
by (induct_tac u, auto)
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  6043
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  6044
lemma lexord_append_leftI: " (u,v) \<in> lexord r \<Longrightarrow> (x @ u, x @ v) \<in> lexord r"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  6045
by (induct x, auto)
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  6046
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  6047
lemma lexord_append_leftD:
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  6048
     "\<lbrakk> (x @ u, x @ v) \<in> lexord r; (\<forall>a. (a,a) \<notin> r) \<rbrakk> \<Longrightarrow> (u,v) \<in> lexord r"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  6049
by (erule rev_mp, induct_tac x, auto)
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  6050
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  6051
lemma lexord_take_index_conv:
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  6052
   "((x,y) \<in> lexord r) =
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  6053
    ((length x < length y \<and> take (length x) y = x) \<or>
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  6054
     (\<exists>i. i < min(length x)(length y) \<and> take i x = take i y \<and> (x!i,y!i) \<in> r))"
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  6055
  apply (unfold lexord_def Let_def, clarsimp)
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  6056
  apply (rule_tac f = "(% a b. a \<or> b)" in arg_cong2)
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  6057
  apply (metis Cons_nth_drop_Suc append_eq_conv_conj drop_all list.simps(3) not_le)
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  6058
  apply auto
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  6059
  apply (rule_tac x ="length u" in exI, simp)
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  6060
  by (metis id_take_nth_drop)
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  6061
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  6062
\<comment> \<open>lexord is extension of partial ordering List.lex\<close>
41986
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  6063
lemma lexord_lex: "(x,y) \<in> lex r = ((x,y) \<in> lexord r \<and> length x = length y)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  6064
proof (induction x arbitrary: y)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  6065
  case (Cons a x y) then show ?case
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  6066
    by (cases y) (force+)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  6067
qed auto
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  6068
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  6069
lemma lexord_irreflexive: "\<forall>x. (x,x) \<notin> r \<Longrightarrow> (xs,xs) \<notin> lexord r"
41986
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  6070
by (induct xs) auto
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  6071
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  6072
text\<open>By Ren\'e Thiemann:\<close>
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  6073
lemma lexord_partial_trans:
41986
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  6074
  "(\<And>x y z. x \<in> set xs \<Longrightarrow> (x,y) \<in> r \<Longrightarrow> (y,z) \<in> r \<Longrightarrow> (x,z) \<in> r)
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  6075
   \<Longrightarrow>  (xs,ys) \<in> lexord r  \<Longrightarrow>  (ys,zs) \<in> lexord r \<Longrightarrow>  (xs,zs) \<in> lexord r"
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  6076
proof (induct xs arbitrary: ys zs)
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  6077
  case Nil
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  6078
  from Nil(3) show ?case unfolding lexord_def by (cases zs, auto)
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  6079
next
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  6080
  case (Cons x xs yys zzs)
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  6081
  from Cons(3) obtain y ys where yys: "yys = y # ys" unfolding lexord_def
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  6082
    by (cases yys, auto)
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  6083
  note Cons = Cons[unfolded yys]
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  6084
  from Cons(3) have one: "(x,y) \<in> r \<or> x = y \<and> (xs,ys) \<in> lexord r" by auto
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  6085
  from Cons(4) obtain z zs where zzs: "zzs = z # zs" unfolding lexord_def
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  6086
    by (cases zzs, auto)
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  6087
  note Cons = Cons[unfolded zzs]
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  6088
  from Cons(4) have two: "(y,z) \<in> r \<or> y = z \<and> (ys,zs) \<in> lexord r" by auto
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  6089
  {
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  6090
    assume "(xs,ys) \<in> lexord r" and "(ys,zs) \<in> lexord r"
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  6091
    from Cons(1)[OF _ this] Cons(2)
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  6092
    have "(xs,zs) \<in> lexord r" by auto
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  6093
  } note ind1 = this
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  6094
  {
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  6095
    assume "(x,y) \<in> r" and "(y,z) \<in> r"
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  6096
    from Cons(2)[OF _ this] have "(x,z) \<in> r" by auto
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  6097
  } note ind2 = this
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  6098
  from one two ind1 ind2
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  6099
  have "(x,z) \<in> r \<or> x = z \<and> (xs,zs) \<in> lexord r" by blast
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  6100
  thus ?case unfolding zzs by auto
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  6101
qed
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  6102
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  6103
lemma lexord_trans:
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  6104
    "\<lbrakk> (x, y) \<in> lexord r; (y, z) \<in> lexord r; trans r \<rbrakk> \<Longrightarrow> (x, z) \<in> lexord r"
41986
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  6105
by(auto simp: trans_def intro:lexord_partial_trans)
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  6106
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  6107
lemma lexord_transI:  "trans r \<Longrightarrow> trans (lexord r)"
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  6108
by (rule transI, drule lexord_trans, blast)
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  6109
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  6110
lemma lexord_linear: "(\<forall>a b. (a,b) \<in> r \<or> a = b \<or> (b,a) \<in> r) \<Longrightarrow> (x,y) \<in> lexord r \<or> x = y \<or> (y,x) \<in> lexord r"
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  6111
proof (induction x arbitrary: y)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  6112
  case Nil
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  6113
  then show ?case
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  6114
    by (metis lexord_Nil_left list.exhaust)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  6115
next
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  6116
  case (Cons a x y) then show ?case
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  6117
    by (cases y) (force+)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  6118
qed 
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  6119
56545
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56527
diff changeset
  6120
lemma lexord_irrefl:
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56527
diff changeset
  6121
  "irrefl R \<Longrightarrow> irrefl (lexord R)"
68085
7fe53815cce9 reinstated old lemma name
nipkow
parents: 68083
diff changeset
  6122
by (simp add: irrefl_def lexord_irreflexive)
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  6123
56545
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56527
diff changeset
  6124
lemma lexord_asym:
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56527
diff changeset
  6125
  assumes "asym R"
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56527
diff changeset
  6126
  shows "asym (lexord R)"
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56527
diff changeset
  6127
proof
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56527
diff changeset
  6128
  from assms obtain "irrefl R" by (blast elim: asym.cases)
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56527
diff changeset
  6129
  then show "irrefl (lexord R)" by (rule lexord_irrefl)
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56527
diff changeset
  6130
next
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56527
diff changeset
  6131
  fix xs ys
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56527
diff changeset
  6132
  assume "(xs, ys) \<in> lexord R"
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56527
diff changeset
  6133
  then show "(ys, xs) \<notin> lexord R"
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56527
diff changeset
  6134
  proof (induct xs arbitrary: ys)
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56527
diff changeset
  6135
    case Nil
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56527
diff changeset
  6136
    then show ?case by simp
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56527
diff changeset
  6137
  next
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56527
diff changeset
  6138
    case (Cons x xs)
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56527
diff changeset
  6139
    then obtain z zs where ys: "ys = z # zs" by (cases ys) auto
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56527
diff changeset
  6140
    with assms Cons show ?case by (auto elim: asym.cases)
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56527
diff changeset
  6141
  qed
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56527
diff changeset
  6142
qed
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  6143
56545
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56527
diff changeset
  6144
lemma lexord_asymmetric:
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56527
diff changeset
  6145
  assumes "asym R"
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56527
diff changeset
  6146
  assumes hyp: "(a, b) \<in> lexord R"
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56527
diff changeset
  6147
  shows "(b, a) \<notin> lexord R"
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56527
diff changeset
  6148
proof -
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  6149
  from \<open>asym R\<close> have "asym (lexord R)" by (rule lexord_asym)
56545
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56527
diff changeset
  6150
  then show ?thesis by (rule asym.cases) (auto simp add: hyp)
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56527
diff changeset
  6151
qed
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56527
diff changeset
  6152
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56527
diff changeset
  6153
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  6154
text \<open>
54593
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6155
  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
  6156
  Author: Andreas Lochbihler
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  6157
\<close>
54593
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6158
61681
ca53150406c9 option "inductive_defs" controls exposure of def and mono facts;
wenzelm
parents: 61630
diff changeset
  6159
context ord
ca53150406c9 option "inductive_defs" controls exposure of def and mono facts;
wenzelm
parents: 61630
diff changeset
  6160
begin
ca53150406c9 option "inductive_defs" controls exposure of def and mono facts;
wenzelm
parents: 61630
diff changeset
  6161
ca53150406c9 option "inductive_defs" controls exposure of def and mono facts;
wenzelm
parents: 61630
diff changeset
  6162
context
62093
bd73a2279fcd more uniform treatment of package internals;
wenzelm
parents: 62065
diff changeset
  6163
  notes [[inductive_internals]]
61681
ca53150406c9 option "inductive_defs" controls exposure of def and mono facts;
wenzelm
parents: 61630
diff changeset
  6164
begin
54593
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6165
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6166
inductive lexordp :: "'a list \<Rightarrow> 'a list \<Rightarrow> bool"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6167
where
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6168
  Nil: "lexordp [] (y # ys)"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6169
| Cons: "x < y \<Longrightarrow> lexordp (x # xs) (y # ys)"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6170
| Cons_eq:
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6171
  "\<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
  6172
61681
ca53150406c9 option "inductive_defs" controls exposure of def and mono facts;
wenzelm
parents: 61630
diff changeset
  6173
end
ca53150406c9 option "inductive_defs" controls exposure of def and mono facts;
wenzelm
parents: 61630
diff changeset
  6174
54593
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6175
lemma lexordp_simps [simp]:
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6176
  "lexordp [] ys = (ys \<noteq> [])"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6177
  "lexordp xs [] = False"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6178
  "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
  6179
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
  6180
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6181
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
  6182
  Nil: "lexordp_eq [] ys"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6183
| 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
  6184
| 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
  6185
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6186
lemma lexordp_eq_simps [simp]:
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6187
  "lexordp_eq [] ys = True"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6188
  "lexordp_eq xs [] \<longleftrightarrow> xs = []"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6189
  "lexordp_eq (x # xs) [] = False"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6190
  "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
  6191
by(subst lexordp_eq.simps, fastforce)+
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6192
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6193
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
  6194
by(induct xs)(auto simp add: neq_Nil_conv)
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6195
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6196
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
  6197
by(induct us) auto
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6198
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6199
lemma lexordp_eq_refl: "lexordp_eq xs xs"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6200
by(induct xs) simp_all
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6201
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6202
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
  6203
by(induct xs) auto
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6204
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6205
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
  6206
by(induct xs) auto
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6207
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  6208
lemma lexordp_irreflexive:
54593
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6209
  assumes irrefl: "\<forall>x. \<not> x < x"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6210
  shows "\<not> lexordp xs xs"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6211
proof
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6212
  assume "lexordp xs xs"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6213
  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
  6214
qed
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6215
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6216
lemma lexordp_into_lexordp_eq:
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6217
  assumes "lexordp xs ys"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6218
  shows "lexordp_eq xs ys"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6219
using assms by induct simp_all
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6220
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6221
end
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6222
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6223
declare ord.lexordp_simps [simp, code]
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6224
declare ord.lexordp_eq_simps [code, simp]
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6225
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6226
lemma lexord_code [code, code_unfold]: "lexordp = ord.lexordp less"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6227
unfolding lexordp_def ord.lexordp_def ..
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6228
61681
ca53150406c9 option "inductive_defs" controls exposure of def and mono facts;
wenzelm
parents: 61630
diff changeset
  6229
context order
ca53150406c9 option "inductive_defs" controls exposure of def and mono facts;
wenzelm
parents: 61630
diff changeset
  6230
begin
54593
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6231
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6232
lemma lexordp_antisym:
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6233
  assumes "lexordp xs ys" "lexordp ys xs"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6234
  shows False
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6235
using assms by induct auto
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6236
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6237
lemma lexordp_irreflexive': "\<not> lexordp xs xs"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6238
by(rule lexordp_irreflexive) simp
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6239
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6240
end
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6241
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6242
context linorder begin
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6243
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6244
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
  6245
  assumes "lexordp xs ys"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6246
  obtains (Nil) y ys' where "xs = []" "ys = y # ys'"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6247
  | (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
  6248
  | (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
  6249
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
  6250
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6251
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
  6252
  assumes major: "lexordp xs ys"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6253
  and Nil: "\<And>y ys. P [] (y # ys)"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6254
  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
  6255
  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
  6256
  shows "P xs ys"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6257
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
  6258
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6259
lemma lexordp_iff:
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6260
  "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
  6261
  (is "?lhs = ?rhs")
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6262
proof
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6263
  assume ?lhs thus ?rhs
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6264
  proof induct
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6265
    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
  6266
  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
  6267
next
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6268
  assume ?rhs thus ?lhs
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6269
    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
  6270
qed
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6271
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6272
lemma lexordp_conv_lexord:
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6273
  "lexordp xs ys \<longleftrightarrow> (xs, ys) \<in> lexord {(x, y). x < y}"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6274
by(simp add: lexordp_iff lexord_def)
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6275
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  6276
lemma lexordp_eq_antisym:
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  6277
  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
  6278
  shows "xs = ys"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6279
using assms by induct simp_all
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6280
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6281
lemma lexordp_eq_trans:
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6282
  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
  6283
  shows "lexordp_eq xs zs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  6284
  using assms
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  6285
  by (induct arbitrary: zs) (case_tac zs; auto)+
54593
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6286
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6287
lemma lexordp_trans:
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6288
  assumes "lexordp xs ys" "lexordp ys zs"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6289
  shows "lexordp xs zs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  6290
  using assms
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  6291
  by (induct arbitrary: zs) (case_tac zs; auto)+
54593
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6292
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6293
lemma lexordp_linear: "lexordp xs ys \<or> xs = ys \<or> lexordp ys xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  6294
  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
  6295
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6296
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
  6297
  (is "?lhs \<longleftrightarrow> ?rhs")
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6298
proof
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6299
  assume ?lhs
63540
f8652d0534fa tuned proofs -- avoid unstructured calculation;
wenzelm
parents: 63521
diff changeset
  6300
  hence "\<not> lexordp_eq ys xs" by induct simp_all
f8652d0534fa tuned proofs -- avoid unstructured calculation;
wenzelm
parents: 63521
diff changeset
  6301
  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
  6302
next
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6303
  assume ?rhs
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6304
  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
  6305
  thus ?lhs by induct simp_all
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6306
qed
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6307
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6308
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
  6309
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
  6310
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6311
lemma lexordp_eq_linear: "lexordp_eq xs ys \<or> lexordp_eq ys xs"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  6312
  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
  6313
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6314
lemma lexordp_linorder: "class.linorder lexordp_eq lexordp"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  6315
  by unfold_locales
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  6316
     (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
  6317
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  6318
end
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  6319
64886
cea327ecb8e3 added lemma
blanchet
parents: 64272
diff changeset
  6320
lemma sorted_insort_is_snoc: "sorted xs \<Longrightarrow> \<forall>x \<in> set xs. a \<ge> x \<Longrightarrow> insort a xs = xs @ [a]"
68109
cebf36c14226 new def of sorted and sorted_wrt
nipkow
parents: 68085
diff changeset
  6321
 by (induct xs) (auto dest!: insort_is_Cons)
64886
cea327ecb8e3 added lemma
blanchet
parents: 64272
diff changeset
  6322
cea327ecb8e3 added lemma
blanchet
parents: 64272
diff changeset
  6323
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  6324
subsubsection \<open>Lexicographic combination of measure functions\<close>
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  6325
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  6326
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
  6327
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  6328
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
  6329
44013
5cfc1c36ae97 moved recdef package to HOL/Library/Old_Recdef.thy
krauss
parents: 43594
diff changeset
  6330
lemma wf_measures[simp]: "wf (measures fs)"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  6331
unfolding measures_def
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  6332
by blast
21103
367b4ad7c7cc Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents: 21079
diff changeset
  6333
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  6334
lemma in_measures[simp]:
21103
367b4ad7c7cc Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents: 21079
diff changeset
  6335
  "(x, y) \<in> measures [] = False"
367b4ad7c7cc Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents: 21079
diff changeset
  6336
  "(x, y) \<in> measures (f # fs)
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  6337
         = (f x < f y \<or> (f x = f y \<and> (x, y) \<in> measures fs))"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  6338
unfolding measures_def
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  6339
by auto
21103
367b4ad7c7cc Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents: 21079
diff changeset
  6340
367b4ad7c7cc Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents: 21079
diff changeset
  6341
lemma measures_less: "f x < f y ==> (x, y) \<in> measures (f#fs)"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  6342
by simp
21103
367b4ad7c7cc Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents: 21079
diff changeset
  6343
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  6344
lemma measures_lesseq: "f x \<le> f y ==> (x, y) \<in> measures fs ==> (x, y) \<in> measures (f#fs)"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  6345
by auto
21103
367b4ad7c7cc Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents: 21079
diff changeset
  6346
367b4ad7c7cc Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents: 21079
diff changeset
  6347
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  6348
subsubsection \<open>Lifting Relations to Lists: one element\<close>
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6349
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6350
definition listrel1 :: "('a \<times> 'a) set \<Rightarrow> ('a list \<times> 'a list) set" where
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6351
"listrel1 r = {(xs,ys).
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6352
   \<exists>us z z' vs. xs = us @ z # vs \<and> (z,z') \<in> r \<and> ys = us @ z' # vs}"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6353
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6354
lemma listrel1I:
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6355
  "\<lbrakk> (x, y) \<in> r;  xs = us @ x # vs;  ys = us @ y # vs \<rbrakk> \<Longrightarrow>
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6356
  (xs, ys) \<in> listrel1 r"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6357
unfolding listrel1_def by auto
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6358
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6359
lemma listrel1E:
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6360
  "\<lbrakk> (xs, ys) \<in> listrel1 r;
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6361
     !!x y us vs. \<lbrakk> (x, y) \<in> r;  xs = us @ x # vs;  ys = us @ y # vs \<rbrakk> \<Longrightarrow> P
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6362
   \<rbrakk> \<Longrightarrow> P"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6363
unfolding listrel1_def by auto
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6364
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6365
lemma not_Nil_listrel1 [iff]: "([], xs) \<notin> listrel1 r"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6366
unfolding listrel1_def by blast
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6367
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6368
lemma not_listrel1_Nil [iff]: "(xs, []) \<notin> listrel1 r"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6369
unfolding listrel1_def by blast
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6370
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6371
lemma Cons_listrel1_Cons [iff]:
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6372
  "(x # xs, y # ys) \<in> listrel1 r \<longleftrightarrow>
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6373
   (x,y) \<in> r \<and> xs = ys \<or> x = y \<and> (xs, ys) \<in> listrel1 r"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6374
by (simp add: listrel1_def Cons_eq_append_conv) (blast)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6375
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6376
lemma listrel1I1: "(x,y) \<in> r \<Longrightarrow> (x # xs, y # xs) \<in> listrel1 r"
56085
3d11892ea537 killed a few 'metis' calls
blanchet
parents: 55945
diff changeset
  6377
by fast
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6378
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6379
lemma listrel1I2: "(xs, ys) \<in> listrel1 r \<Longrightarrow> (x # xs, x # ys) \<in> listrel1 r"
56085
3d11892ea537 killed a few 'metis' calls
blanchet
parents: 55945
diff changeset
  6380
by fast
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6381
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6382
lemma append_listrel1I:
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6383
  "(xs, ys) \<in> listrel1 r \<and> us = vs \<or> xs = ys \<and> (us, vs) \<in> listrel1 r
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6384
    \<Longrightarrow> (xs @ us, ys @ vs) \<in> listrel1 r"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6385
unfolding listrel1_def
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6386
by auto (blast intro: append_eq_appendI)+
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6387
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6388
lemma Cons_listrel1E1[elim!]:
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6389
  assumes "(x # xs, ys) \<in> listrel1 r"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6390
    and "\<And>y. ys = y # xs \<Longrightarrow> (x, y) \<in> r \<Longrightarrow> R"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6391
    and "\<And>zs. ys = x # zs \<Longrightarrow> (xs, zs) \<in> listrel1 r \<Longrightarrow> R"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6392
  shows R
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6393
using assms by (cases ys) blast+
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6394
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6395
lemma Cons_listrel1E2[elim!]:
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6396
  assumes "(xs, y # ys) \<in> listrel1 r"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6397
    and "\<And>x. xs = x # ys \<Longrightarrow> (x, y) \<in> r \<Longrightarrow> R"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6398
    and "\<And>zs. xs = y # zs \<Longrightarrow> (zs, ys) \<in> listrel1 r \<Longrightarrow> R"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6399
  shows R
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6400
using assms by (cases xs) blast+
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6401
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6402
lemma snoc_listrel1_snoc_iff:
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6403
  "(xs @ [x], ys @ [y]) \<in> listrel1 r
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6404
    \<longleftrightarrow> (xs, ys) \<in> listrel1 r \<and> x = y \<or> xs = ys \<and> (x,y) \<in> r" (is "?L \<longleftrightarrow> ?R")
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6405
proof
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6406
  assume ?L thus ?R
44890
22f665a2e91c new fastforce replacing fastsimp - less confusing name
nipkow
parents: 44635
diff changeset
  6407
    by (fastforce simp: listrel1_def snoc_eq_iff_butlast butlast_append)
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6408
next
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6409
  assume ?R then show ?L unfolding listrel1_def by force
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6410
qed
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6411
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6412
lemma listrel1_eq_len: "(xs,ys) \<in> listrel1 r \<Longrightarrow> length xs = length ys"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6413
unfolding listrel1_def by auto
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6414
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6415
lemma listrel1_mono:
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6416
  "r \<subseteq> s \<Longrightarrow> listrel1 r \<subseteq> listrel1 s"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6417
unfolding listrel1_def by blast
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6418
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6419
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  6420
lemma listrel1_converse: "listrel1 (r\<inverse>) = (listrel1 r)\<inverse>"
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6421
unfolding listrel1_def by blast
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6422
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6423
lemma in_listrel1_converse:
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  6424
  "(x,y) \<in> listrel1 (r\<inverse>) \<longleftrightarrow> (x,y) \<in> (listrel1 r)\<inverse>"
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6425
unfolding listrel1_def by blast
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6426
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6427
lemma listrel1_iff_update:
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6428
  "(xs,ys) \<in> (listrel1 r)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6429
   \<longleftrightarrow> (\<exists>y n. (xs ! n, y) \<in> r \<and> n < length xs \<and> ys = xs[n:=y])" (is "?L \<longleftrightarrow> ?R")
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6430
proof
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6431
  assume "?L"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6432
  then obtain x y u v where "xs = u @ x # v"  "ys = u @ y # v"  "(x,y) \<in> r"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6433
    unfolding listrel1_def by auto
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6434
  then have "ys = xs[length u := y]" and "length u < length xs"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6435
    and "(xs ! length u, y) \<in> r" by auto
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6436
  then show "?R" by auto
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6437
next
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6438
  assume "?R"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6439
  then obtain x y n where "(xs!n, y) \<in> r" "n < size xs" "ys = xs[n:=y]" "x = xs!n"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6440
    by auto
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6441
  then obtain u v where "xs = u @ x # v" and "ys = u @ y # v" and "(x, y) \<in> r"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6442
    by (auto intro: upd_conv_take_nth_drop id_take_nth_drop)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6443
  then show "?L" by (auto simp: listrel1_def)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6444
qed
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6445
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6446
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  6447
text\<open>Accessible part and wellfoundedness:\<close>
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6448
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6449
lemma Cons_acc_listrel1I [intro!]:
54295
45a5523d4a63 qualifed popular user space names
haftmann
parents: 54147
diff changeset
  6450
  "x \<in> Wellfounded.acc r \<Longrightarrow> xs \<in> Wellfounded.acc (listrel1 r) \<Longrightarrow> (x # xs) \<in> Wellfounded.acc (listrel1 r)"
45a5523d4a63 qualifed popular user space names
haftmann
parents: 54147
diff changeset
  6451
apply (induct arbitrary: xs set: Wellfounded.acc)
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6452
apply (erule thin_rl)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6453
apply (erule acc_induct)
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  6454
  apply (rule accI)
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6455
apply (blast)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6456
done
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6457
54295
45a5523d4a63 qualifed popular user space names
haftmann
parents: 54147
diff changeset
  6458
lemma lists_accD: "xs \<in> lists (Wellfounded.acc r) \<Longrightarrow> xs \<in> Wellfounded.acc (listrel1 r)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  6459
proof (induct set: lists)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  6460
  case Nil
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  6461
  then show ?case
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  6462
    by (meson acc.intros not_listrel1_Nil)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  6463
next
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  6464
  case (Cons a l)
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  6465
  then show ?case
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  6466
    by blast
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  6467
qed
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6468
54295
45a5523d4a63 qualifed popular user space names
haftmann
parents: 54147
diff changeset
  6469
lemma lists_accI: "xs \<in> Wellfounded.acc (listrel1 r) \<Longrightarrow> xs \<in> lists (Wellfounded.acc r)"
45a5523d4a63 qualifed popular user space names
haftmann
parents: 54147
diff changeset
  6470
apply (induct set: Wellfounded.acc)
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6471
apply clarify
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6472
apply (rule accI)
44890
22f665a2e91c new fastforce replacing fastsimp - less confusing name
nipkow
parents: 44635
diff changeset
  6473
apply (fastforce dest!: in_set_conv_decomp[THEN iffD1] simp: listrel1_def)
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6474
done
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6475
44510
5e580115dfcd added lemma
nipkow
parents: 44013
diff changeset
  6476
lemma wf_listrel1_iff[simp]: "wf(listrel1 r) = wf r"
56085
3d11892ea537 killed a few 'metis' calls
blanchet
parents: 55945
diff changeset
  6477
by (auto simp: wf_acc_iff
3d11892ea537 killed a few 'metis' calls
blanchet
parents: 55945
diff changeset
  6478
      intro: lists_accD lists_accI[THEN Cons_in_lists_iff[THEN iffD1, THEN conjunct1]])
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6479
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  6480
subsubsection \<open>Lifting Relations to Lists: all elements\<close>
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  6481
23740
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  6482
inductive_set
46317
80dccedd6c14 generalize type of List.listrel
huffman
parents: 46313
diff changeset
  6483
  listrel :: "('a \<times> 'b) set \<Rightarrow> ('a list \<times> 'b list) set"
80dccedd6c14 generalize type of List.listrel
huffman
parents: 46313
diff changeset
  6484
  for r :: "('a \<times> 'b) set"
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  6485
where
23740
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  6486
    Nil:  "([],[]) \<in> listrel r"
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  6487
  | Cons: "[| (x,y) \<in> r; (xs,ys) \<in> listrel r |] ==> (x#xs, y#ys) \<in> listrel r"
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  6488
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  6489
inductive_cases listrel_Nil1 [elim!]: "([],xs) \<in> listrel r"
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  6490
inductive_cases listrel_Nil2 [elim!]: "(xs,[]) \<in> listrel r"
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  6491
inductive_cases listrel_Cons1 [elim!]: "(y#ys,xs) \<in> listrel r"
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  6492
inductive_cases listrel_Cons2 [elim!]: "(xs,y#ys) \<in> listrel r"
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  6493
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  6494
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6495
lemma listrel_eq_len:  "(xs, ys) \<in> listrel r \<Longrightarrow> length xs = length ys"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6496
by(induct rule: listrel.induct) auto
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6497
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  6498
lemma listrel_iff_zip [code_unfold]: "(xs,ys) \<in> listrel r \<longleftrightarrow>
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  6499
  length xs = length ys \<and> (\<forall>(x,y) \<in> set(zip xs ys). (x,y) \<in> r)" (is "?L \<longleftrightarrow> ?R")
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6500
proof
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6501
  assume ?L thus ?R by induct (auto intro: listrel_eq_len)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6502
next
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6503
  assume ?R thus ?L
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6504
    apply (clarify)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6505
    by (induct rule: list_induct2) (auto intro: listrel.intros)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6506
qed
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6507
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  6508
lemma listrel_iff_nth: "(xs,ys) \<in> listrel r \<longleftrightarrow>
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  6509
  length xs = length ys \<and> (\<forall>n < length xs. (xs!n, ys!n) \<in> r)" (is "?L \<longleftrightarrow> ?R")
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6510
by (auto simp add: all_set_conv_all_nth listrel_iff_zip)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6511
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6512
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  6513
lemma listrel_mono: "r \<subseteq> s \<Longrightarrow> listrel r \<subseteq> listrel s"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  6514
  by (meson listrel_iff_nth subrelI subset_eq)
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  6515
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  6516
lemma listrel_subset: "r \<subseteq> A \<times> A \<Longrightarrow> listrel r \<subseteq> lists A \<times> lists A"
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  6517
apply clarify
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  6518
apply (erule listrel.induct, auto)
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  6519
done
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  6520
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  6521
lemma listrel_refl_on: "refl_on A r \<Longrightarrow> refl_on (lists A) (listrel r)"
30198
922f944f03b2 name changes
nipkow
parents: 30128
diff changeset
  6522
apply (simp add: refl_on_def listrel_subset Ball_def)
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  6523
apply (rule allI)
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  6524
apply (induct_tac x)
23740
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  6525
apply (auto intro: listrel.intros)
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  6526
done
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  6527
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  6528
lemma listrel_sym: "sym r \<Longrightarrow> sym (listrel r)"
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  6529
  by (simp add: listrel_iff_nth sym_def)
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  6530
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  6531
lemma listrel_trans: "trans r \<Longrightarrow> trans (listrel r)"
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  6532
apply (simp add: trans_def)
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  6533
apply (intro allI)
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  6534
apply (rule impI)
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  6535
apply (erule listrel.induct)
23740
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  6536
apply (blast intro: listrel.intros)+
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  6537
done
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  6538
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  6539
theorem equiv_listrel: "equiv A r \<Longrightarrow> equiv (lists A) (listrel r)"
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  6540
by (simp add: equiv_def listrel_refl_on listrel_sym listrel_trans)
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  6541
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  6542
lemma listrel_rtrancl_refl[iff]: "(xs,xs) \<in> listrel(r\<^sup>*)"
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6543
using listrel_refl_on[of UNIV, OF refl_rtrancl]
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6544
by(auto simp: refl_on_def)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6545
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6546
lemma listrel_rtrancl_trans:
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  6547
  "\<lbrakk>(xs,ys) \<in> listrel(r\<^sup>*);  (ys,zs) \<in> listrel(r\<^sup>*)\<rbrakk>
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  6548
  \<Longrightarrow> (xs,zs) \<in> listrel(r\<^sup>*)"
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6549
by (metis listrel_trans trans_def trans_rtrancl)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6550
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6551
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  6552
lemma listrel_Nil [simp]: "listrel r `` {[]} = {[]}"
23740
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  6553
by (blast intro: listrel.intros)
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  6554
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  6555
lemma listrel_Cons:
33318
ddd97d9dfbfb moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 32960
diff changeset
  6556
     "listrel r `` {x#xs} = set_Cons (r``{x}) (listrel r `` {xs})"
ddd97d9dfbfb moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 32960
diff changeset
  6557
by (auto simp add: set_Cons_def intro: listrel.intros)
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  6558
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  6559
text \<open>Relating \<^term>\<open>listrel1\<close>, \<^term>\<open>listrel\<close> and closures:\<close>
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6560
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6561
lemma listrel1_rtrancl_subset_rtrancl_listrel1:
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  6562
  "listrel1 (r\<^sup>*) \<subseteq> (listrel1 r)\<^sup>*"
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6563
proof (rule subrelI)
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  6564
  fix xs ys assume 1: "(xs,ys) \<in> listrel1 (r\<^sup>*)"
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6565
  { fix x y us vs
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  6566
    have "(x,y) \<in> r\<^sup>* \<Longrightarrow> (us @ x # vs, us @ y # vs) \<in> (listrel1 r)\<^sup>*"
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6567
    proof(induct rule: rtrancl.induct)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6568
      case rtrancl_refl show ?case by simp
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6569
    next
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6570
      case rtrancl_into_rtrancl thus ?case
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6571
        by (metis listrel1I rtrancl.rtrancl_into_rtrancl)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6572
    qed }
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  6573
  thus "(xs,ys) \<in> (listrel1 r)\<^sup>*" using 1 by(blast elim: listrel1E)
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6574
qed
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6575
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  6576
lemma rtrancl_listrel1_eq_len: "(x,y) \<in> (listrel1 r)\<^sup>* \<Longrightarrow> length x = length y"
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6577
by (induct rule: rtrancl.induct) (auto intro: listrel1_eq_len)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6578
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6579
lemma rtrancl_listrel1_ConsI1:
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  6580
  "(xs,ys) \<in> (listrel1 r)\<^sup>* \<Longrightarrow> (x#xs,x#ys) \<in> (listrel1 r)\<^sup>*"
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6581
apply(induct rule: rtrancl.induct)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6582
 apply simp
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6583
by (metis listrel1I2 rtrancl.rtrancl_into_rtrancl)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6584
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6585
lemma rtrancl_listrel1_ConsI2:
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  6586
  "(x,y) \<in> r\<^sup>* \<Longrightarrow> (xs, ys) \<in> (listrel1 r)\<^sup>*
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  6587
  \<Longrightarrow> (x # xs, y # ys) \<in> (listrel1 r)\<^sup>*"
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  6588
  by (blast intro: rtrancl_trans rtrancl_listrel1_ConsI1
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6589
    subsetD[OF listrel1_rtrancl_subset_rtrancl_listrel1 listrel1I1])
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6590
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6591
lemma listrel1_subset_listrel:
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6592
  "r \<subseteq> r' \<Longrightarrow> refl r' \<Longrightarrow> listrel1 r \<subseteq> listrel(r')"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6593
by(auto elim!: listrel1E simp add: listrel_iff_zip set_zip refl_on_def)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6594
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6595
lemma listrel_reflcl_if_listrel1:
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  6596
  "(xs,ys) \<in> listrel1 r \<Longrightarrow> (xs,ys) \<in> listrel(r\<^sup>*)"
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6597
by(erule listrel1E)(auto simp add: listrel_iff_zip set_zip)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6598
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  6599
lemma listrel_rtrancl_eq_rtrancl_listrel1: "listrel (r\<^sup>*) = (listrel1 r)\<^sup>*"
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6600
proof
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  6601
  { fix x y assume "(x,y) \<in> listrel (r\<^sup>*)"
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  6602
    then have "(x,y) \<in> (listrel1 r)\<^sup>*"
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6603
    by induct (auto intro: rtrancl_listrel1_ConsI2) }
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  6604
  then show "listrel (r\<^sup>*) \<subseteq> (listrel1 r)\<^sup>*"
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6605
    by (rule subrelI)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6606
next
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  6607
  show "listrel (r\<^sup>*) \<supseteq> (listrel1 r)\<^sup>*"
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6608
  proof(rule subrelI)
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  6609
    fix xs ys assume "(xs,ys) \<in> (listrel1 r)\<^sup>*"
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  6610
    then show "(xs,ys) \<in> listrel (r\<^sup>*)"
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6611
    proof induct
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6612
      case base show ?case by(auto simp add: listrel_iff_zip set_zip)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6613
    next
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6614
      case (step ys zs)
56085
3d11892ea537 killed a few 'metis' calls
blanchet
parents: 55945
diff changeset
  6615
      thus ?case by (metis listrel_reflcl_if_listrel1 listrel_rtrancl_trans)
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6616
    qed
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6617
  qed
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6618
qed
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6619
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6620
lemma rtrancl_listrel1_if_listrel:
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  6621
  "(xs,ys) \<in> listrel r \<Longrightarrow> (xs,ys) \<in> (listrel1 r)\<^sup>*"
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6622
by(metis listrel_rtrancl_eq_rtrancl_listrel1 subsetD[OF listrel_mono] r_into_rtrancl subsetI)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6623
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  6624
lemma listrel_subset_rtrancl_listrel1: "listrel r \<subseteq> (listrel1 r)\<^sup>*"
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6625
by(fast intro:rtrancl_listrel1_if_listrel)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  6626
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  6627
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  6628
subsection \<open>Size function\<close>
26749
397a1aeede7d * New attribute "termination_simp": Simp rules for termination proofs
krauss
parents: 26734
diff changeset
  6629
56643
41d3596d8a64 move size hooks together, with new one preceding old one and sharing same theory data
blanchet
parents: 56545
diff changeset
  6630
lemma [measure_function]: "is_measure f \<Longrightarrow> is_measure (size_list f)"
26875
e18574413bc4 Measure functions can now be declared via special rules, allowing for a
krauss
parents: 26795
diff changeset
  6631
by (rule is_measure_trivial)
e18574413bc4 Measure functions can now be declared via special rules, allowing for a
krauss
parents: 26795
diff changeset
  6632
56643
41d3596d8a64 move size hooks together, with new one preceding old one and sharing same theory data
blanchet
parents: 56545
diff changeset
  6633
lemma [measure_function]: "is_measure f \<Longrightarrow> is_measure (size_option f)"
26875
e18574413bc4 Measure functions can now be declared via special rules, allowing for a
krauss
parents: 26795
diff changeset
  6634
by (rule is_measure_trivial)
e18574413bc4 Measure functions can now be declared via special rules, allowing for a
krauss
parents: 26795
diff changeset
  6635
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  6636
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
  6637
  "x \<in> set xs \<Longrightarrow> y < f x \<Longrightarrow> y < size_list f xs"
26749
397a1aeede7d * New attribute "termination_simp": Simp rules for termination proofs
krauss
parents: 26734
diff changeset
  6638
by (induct xs) auto
397a1aeede7d * New attribute "termination_simp": Simp rules for termination proofs
krauss
parents: 26734
diff changeset
  6639
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  6640
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
  6641
  "x \<in> set xs \<Longrightarrow> y \<le> f x \<Longrightarrow> y \<le> size_list f xs"
26875
e18574413bc4 Measure functions can now be declared via special rules, allowing for a
krauss
parents: 26795
diff changeset
  6642
by (induct xs) auto
e18574413bc4 Measure functions can now be declared via special rules, allowing for a
krauss
parents: 26795
diff changeset
  6643
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  6644
lemma size_list_map[simp]: "size_list f (map g xs) = size_list (f \<circ> g) xs"
26875
e18574413bc4 Measure functions can now be declared via special rules, allowing for a
krauss
parents: 26795
diff changeset
  6645
by (induct xs) auto
e18574413bc4 Measure functions can now be declared via special rules, allowing for a
krauss
parents: 26795
diff changeset
  6646
56643
41d3596d8a64 move size hooks together, with new one preceding old one and sharing same theory data
blanchet
parents: 56545
diff changeset
  6647
lemma size_list_append[simp]: "size_list f (xs @ ys) = size_list f xs + size_list f ys"
44619
fd520fa2fb09 adding list_size_append (thanks to Rene Thiemann)
bulwahn
parents: 44618
diff changeset
  6648
by (induct xs, auto)
fd520fa2fb09 adding list_size_append (thanks to Rene Thiemann)
bulwahn
parents: 44618
diff changeset
  6649
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  6650
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
  6651
  "(\<And>x. x \<in> set xs \<Longrightarrow> f x \<le> g x) \<Longrightarrow> size_list f xs \<le> size_list g xs"
26875
e18574413bc4 Measure functions can now be declared via special rules, allowing for a
krauss
parents: 26795
diff changeset
  6652
by (induct xs) force+
26749
397a1aeede7d * New attribute "termination_simp": Simp rules for termination proofs
krauss
parents: 26734
diff changeset
  6653
31048
ac146fc38b51 refined HOL string theories and corresponding ML fragments
haftmann
parents: 31022
diff changeset
  6654
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  6655
subsection \<open>Monad operation\<close>
46143
c932c80d3eae farewell to theory More_List
haftmann
parents: 46138
diff changeset
  6656
c932c80d3eae farewell to theory More_List
haftmann
parents: 46138
diff changeset
  6657
definition bind :: "'a list \<Rightarrow> ('a \<Rightarrow> 'b list) \<Rightarrow> 'b list" where
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  6658
"bind xs f = concat (map f xs)"
46143
c932c80d3eae farewell to theory More_List
haftmann
parents: 46138
diff changeset
  6659
c932c80d3eae farewell to theory More_List
haftmann
parents: 46138
diff changeset
  6660
hide_const (open) bind
c932c80d3eae farewell to theory More_List
haftmann
parents: 46138
diff changeset
  6661
c932c80d3eae farewell to theory More_List
haftmann
parents: 46138
diff changeset
  6662
lemma bind_simps [simp]:
c932c80d3eae farewell to theory More_List
haftmann
parents: 46138
diff changeset
  6663
  "List.bind [] f = []"
c932c80d3eae farewell to theory More_List
haftmann
parents: 46138
diff changeset
  6664
  "List.bind (x # xs) f = f x @ List.bind xs f"
c932c80d3eae farewell to theory More_List
haftmann
parents: 46138
diff changeset
  6665
  by (simp_all add: bind_def)
c932c80d3eae farewell to theory More_List
haftmann
parents: 46138
diff changeset
  6666
63099
af0e964aad7b Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents: 63092
diff changeset
  6667
lemma list_bind_cong [fundef_cong]:
af0e964aad7b Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents: 63092
diff changeset
  6668
  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
  6669
  shows   "List.bind xs f = List.bind ys g"
af0e964aad7b Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents: 63092
diff changeset
  6670
proof -
af0e964aad7b Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents: 63092
diff changeset
  6671
  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
  6672
    by (induction xs) simp_all
af0e964aad7b Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents: 63092
diff changeset
  6673
  with assms(1) show ?thesis by simp
af0e964aad7b Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents: 63092
diff changeset
  6674
qed
af0e964aad7b Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents: 63092
diff changeset
  6675
af0e964aad7b Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents: 63092
diff changeset
  6676
lemma set_list_bind: "set (List.bind xs f) = (\<Union>x\<in>set xs. set (f x))"
64963
fc4d1ceb8e29 tuned whitespace;
wenzelm
parents: 64886
diff changeset
  6677
  by (induction xs) simp_all
63099
af0e964aad7b Moved material from AFP/Randomised_Social_Choice to distribution
eberlm
parents: 63092
diff changeset
  6678
46143
c932c80d3eae farewell to theory More_List
haftmann
parents: 46138
diff changeset
  6679
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  6680
subsection \<open>Code generation\<close>
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  6681
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  6682
text\<open>Optional tail recursive version of \<^const>\<open>map\<close>. Can avoid
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  6683
stack overflow in some target languages.\<close>
51875
dafd097dd1f4 tail recursive version of map, for code generation, optionally
nipkow
parents: 51738
diff changeset
  6684
dafd097dd1f4 tail recursive version of map, for code generation, optionally
nipkow
parents: 51738
diff changeset
  6685
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
  6686
"map_tailrec_rev f [] bs = bs" |
dafd097dd1f4 tail recursive version of map, for code generation, optionally
nipkow
parents: 51738
diff changeset
  6687
"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
  6688
dafd097dd1f4 tail recursive version of map, for code generation, optionally
nipkow
parents: 51738
diff changeset
  6689
lemma map_tailrec_rev:
dafd097dd1f4 tail recursive version of map, for code generation, optionally
nipkow
parents: 51738
diff changeset
  6690
  "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
  6691
by(induction as arbitrary: bs) simp_all
dafd097dd1f4 tail recursive version of map, for code generation, optionally
nipkow
parents: 51738
diff changeset
  6692
dafd097dd1f4 tail recursive version of map, for code generation, optionally
nipkow
parents: 51738
diff changeset
  6693
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
  6694
"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
  6695
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  6696
text\<open>Code equation:\<close>
51875
dafd097dd1f4 tail recursive version of map, for code generation, optionally
nipkow
parents: 51738
diff changeset
  6697
lemma map_eq_map_tailrec: "map = map_tailrec"
dafd097dd1f4 tail recursive version of map, for code generation, optionally
nipkow
parents: 51738
diff changeset
  6698
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
  6699
dafd097dd1f4 tail recursive version of map, for code generation, optionally
nipkow
parents: 51738
diff changeset
  6700
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  6701
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
  6702
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6703
definition member :: "'a list \<Rightarrow> 'a \<Rightarrow> bool" where
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  6704
[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
  6705
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  6706
text \<open>
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
  6707
  Use \<open>member\<close> only for generating executable code.  Otherwise use
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  6708
  \<^prop>\<open>x \<in> set xs\<close> instead --- it is much easier to reason about.
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  6709
\<close>
37605
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6710
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6711
lemma member_rec [code]:
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6712
  "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
  6713
  "member [] y \<longleftrightarrow> False"
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6714
  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
  6715
46030
51b2f3412a03 attribute code_abbrev superseedes code_unfold_post; tuned text
haftmann
parents: 45993
diff changeset
  6716
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
  6717
  "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
  6718
  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
  6719
62328
532ad8de5d61 call the predicator of list list_all
traytel
parents: 62175
diff changeset
  6720
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
  6721
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6722
definition list_ex :: "('a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> bool" where
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  6723
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
  6724
51b2f3412a03 attribute code_abbrev superseedes code_unfold_post; tuned text
haftmann
parents: 45993
diff changeset
  6725
definition list_ex1 :: "('a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> bool" where
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  6726
list_ex1_iff [code_abbrev]: "list_ex1 P xs \<longleftrightarrow> (\<exists>! x. x \<in> set xs \<and> P x)"
40652
7bdfc1d6b143 adding code equations for EX1 on finite types
bulwahn
parents: 40608
diff changeset
  6727
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  6728
text \<open>
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
  6729
  Usually you should prefer \<open>\<forall>x\<in>set xs\<close>, \<open>\<exists>x\<in>set xs\<close>
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  6730
  and \<open>\<exists>!x. x\<in>set xs \<and> _\<close> over \<^const>\<open>list_all\<close>, \<^const>\<open>list_ex\<close>
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  6731
  and \<^const>\<open>list_ex1\<close> in specifications.
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  6732
\<close>
37605
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6733
56527
907f04603177 make list_all an abbreviation of pred_list - prevent duplication
kuncar
parents: 56525
diff changeset
  6734
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
  6735
  "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
  6736
  "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
  6737
  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
  6738
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6739
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
  6740
  "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
  6741
  "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
  6742
  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
  6743
40652
7bdfc1d6b143 adding code equations for EX1 on finite types
bulwahn
parents: 40608
diff changeset
  6744
lemma list_ex1_simps [simp, code]:
7bdfc1d6b143 adding code equations for EX1 on finite types
bulwahn
parents: 40608
diff changeset
  6745
  "list_ex1 P [] = False"
7bdfc1d6b143 adding code equations for EX1 on finite types
bulwahn
parents: 40608
diff changeset
  6746
  "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
  6747
  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
  6748
51b2f3412a03 attribute code_abbrev superseedes code_unfold_post; tuned text
haftmann
parents: 45993
diff changeset
  6749
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
  6750
  "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
  6751
  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
  6752
46030
51b2f3412a03 attribute code_abbrev superseedes code_unfold_post; tuned text
haftmann
parents: 45993
diff changeset
  6753
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
  6754
  "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
  6755
  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
  6756
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6757
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
  6758
  "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
  6759
  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
  6760
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6761
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
  6762
  "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
  6763
  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
  6764
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6765
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
  6766
  "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
  6767
  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
  6768
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6769
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
  6770
  "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
  6771
  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
  6772
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6773
lemma list_all_length:
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6774
  "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
  6775
  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
  6776
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6777
lemma list_ex_length:
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6778
  "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
  6779
  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
  6780
62328
532ad8de5d61 call the predicator of list list_all
traytel
parents: 62175
diff changeset
  6781
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
  6782
47131
af818dcdc709 reverted to canonical name
nipkow
parents: 47122
diff changeset
  6783
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
  6784
  "xs = ys \<Longrightarrow> (\<And>x. x \<in> set ys \<Longrightarrow> f x = g x) \<Longrightarrow> list_ex f xs = list_ex g ys"
47131
af818dcdc709 reverted to canonical name
nipkow
parents: 47122
diff changeset
  6785
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
  6786
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  6787
definition can_select :: "('a \<Rightarrow> bool) \<Rightarrow> 'a set \<Rightarrow> bool" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  6788
[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
  6789
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  6790
lemma can_select_set_list_ex1 [code]:
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  6791
  "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
  6792
  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
  6793
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  6794
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  6795
text \<open>Executable checks for relations on sets\<close>
46313
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6796
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6797
definition listrel1p :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> 'a list \<Rightarrow> bool" where
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6798
"listrel1p r xs ys = ((xs, ys) \<in> listrel1 {(x, y). r x y})"
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6799
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6800
lemma [code_unfold]:
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6801
  "(xs, ys) \<in> listrel1 r = listrel1p (\<lambda>x y. (x, y) \<in> r) xs ys"
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6802
unfolding listrel1p_def by auto
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6803
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6804
lemma [code]:
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6805
  "listrel1p r [] xs = False"
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6806
  "listrel1p r xs [] =  False"
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6807
  "listrel1p r (x # xs) (y # ys) \<longleftrightarrow>
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6808
     r x y \<and> xs = ys \<or> x = y \<and> listrel1p r xs ys"
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6809
by (simp add: listrel1p_def)+
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6810
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6811
definition
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6812
  lexordp :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> 'a list \<Rightarrow> bool" where
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6813
  "lexordp r xs ys = ((xs, ys) \<in> lexord {(x, y). r x y})"
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6814
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6815
lemma [code_unfold]:
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6816
  "(xs, ys) \<in> lexord r = lexordp (\<lambda>x y. (x, y) \<in> r) xs ys"
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6817
unfolding lexordp_def by auto
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6818
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6819
lemma [code]:
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6820
  "lexordp r xs [] = False"
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6821
  "lexordp r [] (y#ys) = True"
67091
1393c2340eec more symbols;
wenzelm
parents: 67081
diff changeset
  6822
  "lexordp r (x # xs) (y # ys) = (r x y \<or> (x = y \<and> lexordp r xs ys))"
46313
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6823
unfolding lexordp_def by auto
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6824
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  6825
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
  6826
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6827
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
  6828
  "{..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
  6829
  by auto
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6830
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6831
lemma atLeast_upt [code_unfold]:
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6832
  "{..<n} = set [0..<n]"
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6833
  by auto
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6834
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6835
lemma greaterThanLessThan_upt [code_unfold]:
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6836
  "{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
  6837
  by auto
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6838
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6839
lemmas 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
  6840
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6841
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
  6842
  "{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
  6843
  by auto
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6844
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6845
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
  6846
  "{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
  6847
  by auto
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6848
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6849
lemma all_nat_less_eq [code_unfold]:
61076
bdc1e2f0a86a eliminated \<Colon>;
wenzelm
parents: 61032
diff changeset
  6850
  "(\<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
  6851
  by auto
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6852
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6853
lemma ex_nat_less_eq [code_unfold]:
61076
bdc1e2f0a86a eliminated \<Colon>;
wenzelm
parents: 61032
diff changeset
  6854
  "(\<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
  6855
  by auto
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6856
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6857
lemma all_nat_less [code_unfold]:
61076
bdc1e2f0a86a eliminated \<Colon>;
wenzelm
parents: 61032
diff changeset
  6858
  "(\<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
  6859
  by auto
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6860
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6861
lemma ex_nat_less [code_unfold]:
61076
bdc1e2f0a86a eliminated \<Colon>;
wenzelm
parents: 61032
diff changeset
  6862
  "(\<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
  6863
  by auto
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6864
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
  6865
text\<open>Bounded \<open>LEAST\<close> operator:\<close>
53954
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6866
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6867
definition "Bleast S P = (LEAST x. x \<in> S \<and> P x)"
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6868
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6869
definition "abort_Bleast S P = (LEAST x. x \<in> S \<and> P x)"
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6870
54890
cb892d835803 fundamental treatment of undefined vs. universally partial replaces code_abort
haftmann
parents: 54885
diff changeset
  6871
declare [[code abort: abort_Bleast]]
53954
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6872
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6873
lemma Bleast_code [code]:
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6874
 "Bleast (set xs) P = (case filter P (sort xs) of
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6875
    x#xs \<Rightarrow> x |
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6876
    [] \<Rightarrow> abort_Bleast (set xs) P)"
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6877
proof (cases "filter P (sort xs)")
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6878
  case Nil thus ?thesis by (simp add: Bleast_def abort_Bleast_def)
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6879
next
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6880
  case (Cons x ys)
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6881
  have "(LEAST x. x \<in> set xs \<and> P x) = x"
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6882
  proof (rule Least_equality)
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6883
    show "x \<in> set xs \<and> P x"
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6884
      by (metis Cons Cons_eq_filter_iff in_set_conv_decomp set_sort)
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6885
    next
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  6886
      fix y assume "y \<in> set xs \<and> P y"
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  6887
      hence "y \<in> set (filter P xs)" by auto
53954
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6888
      thus "x \<le> y"
68109
cebf36c14226 new def of sorted and sorted_wrt
nipkow
parents: 68085
diff changeset
  6889
        by (metis Cons eq_iff filter_sort set_ConsD set_sort sorted.simps(2) sorted_sort)
53954
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6890
  qed
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6891
  thus ?thesis using Cons by (simp add: Bleast_def)
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6892
qed
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6893
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6894
declare Bleast_def[symmetric, code_unfold]
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6895
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  6896
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
  6897
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6898
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
  6899
  "{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
  6900
by auto
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6901
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6902
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
  6903
  "{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
  6904
by auto
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6905
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6906
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
  6907
  "{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
  6908
by auto
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6909
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6910
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
  6911
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6912
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  6913
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
  6914
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6915
definition null :: "'a list \<Rightarrow> bool" where
46030
51b2f3412a03 attribute code_abbrev superseedes code_unfold_post; tuned text
haftmann
parents: 45993
diff changeset
  6916
  [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
  6917
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  6918
text \<open>
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  6919
  Efficient emptyness check is implemented by \<^const>\<open>null\<close>.
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  6920
\<close>
37605
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6921
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6922
lemma null_rec [code]:
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6923
  "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
  6924
  "null [] \<longleftrightarrow> True"
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6925
  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
  6926
46030
51b2f3412a03 attribute code_abbrev superseedes code_unfold_post; tuned text
haftmann
parents: 45993
diff changeset
  6927
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
  6928
  "xs = [] \<longleftrightarrow> null xs"
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6929
  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
  6930
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6931
lemma equal_Nil_null [code_unfold]:
38857
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 38715
diff changeset
  6932
  "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
  6933
  "HOL.equal [] = null"
36cf426cb1c6 Added symmetric code_unfold-lemmas for null and is_none
lammich <lammich@in.tum.de>
parents: 53721
diff changeset
  6934
  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
  6935
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6936
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
  6937
  [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
  6938
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6939
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
  6940
  [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
  6941
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  6942
text \<open>
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  6943
  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
  6944
  intermediate lists on execution -- do not use for proving.
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  6945
\<close>
37605
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6946
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6947
lemma maps_simps [code]:
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6948
  "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
  6949
  "maps f [] = []"
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6950
  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
  6951
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6952
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
  6953
  "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
  6954
  "map_filter f [] = []"
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6955
  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
  6956
46030
51b2f3412a03 attribute code_abbrev superseedes code_unfold_post; tuned text
haftmann
parents: 45993
diff changeset
  6957
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
  6958
  "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
  6959
  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
  6960
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6961
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
  6962
  "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
  6963
  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
  6964
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
  6965
text \<open>Optimized code for \<open>\<forall>i\<in>{a..b::int}\<close> and \<open>\<forall>n:{a..<b::nat}\<close>
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61699
diff changeset
  6966
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
  6967
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6968
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
  6969
  "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
  6970
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6971
lemma [code]:
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6972
  "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
  6973
proof -
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6974
  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
  6975
  proof -
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6976
    fix n
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6977
    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
  6978
    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
  6979
  qed
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6980
  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
  6981
qed
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6982
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6983
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
  6984
  "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
  6985
  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
  6986
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6987
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
  6988
  "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
  6989
  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
  6990
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6991
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
  6992
  "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
  6993
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6994
lemma [code]:
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6995
  "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
  6996
proof -
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6997
  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
  6998
  proof -
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6999
    fix k
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  7000
    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
  7001
    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
  7002
  qed
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  7003
  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
  7004
qed
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  7005
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  7006
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
  7007
  "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
  7008
  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
  7009
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  7010
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
  7011
  "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
  7012
  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
  7013
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  7014
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
  7015
418991ce7567 tail-recursive implementation for length
Andreas Lochbihler
parents: 49757
diff changeset
  7016
definition gen_length :: "nat \<Rightarrow> 'a list \<Rightarrow> nat"
418991ce7567 tail-recursive implementation for length
Andreas Lochbihler
parents: 49757
diff changeset
  7017
where "gen_length n xs = n + length xs"
418991ce7567 tail-recursive implementation for length
Andreas Lochbihler
parents: 49757
diff changeset
  7018
418991ce7567 tail-recursive implementation for length
Andreas Lochbihler
parents: 49757
diff changeset
  7019
lemma gen_length_code [code]:
418991ce7567 tail-recursive implementation for length
Andreas Lochbihler
parents: 49757
diff changeset
  7020
  "gen_length n [] = n"
418991ce7567 tail-recursive implementation for length
Andreas Lochbihler
parents: 49757
diff changeset
  7021
  "gen_length n (x # xs) = gen_length (Suc n) xs"
418991ce7567 tail-recursive implementation for length
Andreas Lochbihler
parents: 49757
diff changeset
  7022
by(simp_all add: gen_length_def)
418991ce7567 tail-recursive implementation for length
Andreas Lochbihler
parents: 49757
diff changeset
  7023
418991ce7567 tail-recursive implementation for length
Andreas Lochbihler
parents: 49757
diff changeset
  7024
declare list.size(3-4)[code del]
418991ce7567 tail-recursive implementation for length
Andreas Lochbihler
parents: 49757
diff changeset
  7025
418991ce7567 tail-recursive implementation for length
Andreas Lochbihler
parents: 49757
diff changeset
  7026
lemma length_code [code]: "length = gen_length 0"
418991ce7567 tail-recursive implementation for length
Andreas Lochbihler
parents: 49757
diff changeset
  7027
by(simp add: gen_length_def fun_eq_iff)
418991ce7567 tail-recursive implementation for length
Andreas Lochbihler
parents: 49757
diff changeset
  7028
418991ce7567 tail-recursive implementation for length
Andreas Lochbihler
parents: 49757
diff changeset
  7029
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
  7030
49948
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  7031
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  7032
subsubsection \<open>Pretty lists\<close>
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  7033
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  7034
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
  7035
(* 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
  7036
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
  7037
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
  7038
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
  7039
  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
  7040
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
  7041
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
  7042
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
  7043
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
  7044
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
  7045
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
  7046
55148
7e1b7cb54114 avoid (now superfluous) indirect passing of constant names
haftmann
parents: 55147
diff changeset
  7047
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
  7048
  let
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  7049
    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
  7050
      | 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
  7051
    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
  7052
  in case t'
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  7053
   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
  7054
    | _ => 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
  7055
  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
  7056
68028
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67973
diff changeset
  7057
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
  7058
  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
  7059
    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
  7060
    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
  7061
    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
  7062
  );
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
  7063
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
  7064
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
  7065
  let
55148
7e1b7cb54114 avoid (now superfluous) indirect passing of constant names
haftmann
parents: 55147
diff changeset
  7066
    fun pretty literals pr _ vars fxy [(t1, _), (t2, _)] =
7e1b7cb54114 avoid (now superfluous) indirect passing of constant names
haftmann
parents: 55147
diff changeset
  7067
      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
  7068
       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
  7069
            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
  7070
        | NONE =>
68028
1f9f973eed2a proper datatype for 8-bit characters
haftmann
parents: 67973
diff changeset
  7071
            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
  7072
  in
69593
3dda49e08b9d isabelle update -u control_cartouches;
wenzelm
parents: 69349
diff changeset
  7073
    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
  7074
      [(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
  7075
  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
  7076
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
  7077
end;
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  7078
\<close>
31055
2cf6efca6c71 proper structures for list and string code generation stuff
haftmann
parents: 31048
diff changeset
  7079
52435
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 52380
diff changeset
  7080
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
  7081
  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
  7082
    (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
  7083
    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
  7084
    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
  7085
    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
  7086
| 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
  7087
    (SML) "[]"
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 52380
diff changeset
  7088
    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
  7089
    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
  7090
    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
  7091
| 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
  7092
    (Haskell) -
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 52380
diff changeset
  7093
| 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
  7094
    (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
  7095
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  7096
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
  7097
ac146fc38b51 refined HOL string theories and corresponding ML fragments
haftmann
parents: 31022
diff changeset
  7098
code_reserved SML
ac146fc38b51 refined HOL string theories and corresponding ML fragments
haftmann
parents: 31022
diff changeset
  7099
  list
ac146fc38b51 refined HOL string theories and corresponding ML fragments
haftmann
parents: 31022
diff changeset
  7100
ac146fc38b51 refined HOL string theories and corresponding ML fragments
haftmann
parents: 31022
diff changeset
  7101
code_reserved OCaml
ac146fc38b51 refined HOL string theories and corresponding ML fragments
haftmann
parents: 31022
diff changeset
  7102
  list
ac146fc38b51 refined HOL string theories and corresponding ML fragments
haftmann
parents: 31022
diff changeset
  7103
21061
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  7104
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  7105
subsubsection \<open>Use convenient predefined operations\<close>
37424
ed431cc99f17 use various predefined Haskell operations when generating code
haftmann
parents: 37408
diff changeset
  7106
52435
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 52380
diff changeset
  7107
code_printing
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67171
diff changeset
  7108
  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
  7109
    (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
  7110
    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
  7111
    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
  7112
    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
  7113
| 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
  7114
    (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
  7115
| 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
  7116
    (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
  7117
| 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
  7118
    (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
  7119
| 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
  7120
    (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
  7121
| 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
  7122
    (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
  7123
| 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
  7124
    (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
  7125
| 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
  7126
    (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
  7127
| 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
  7128
    (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
  7129
| 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
  7130
    (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
  7131
| 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
  7132
    (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
  7133
| 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
  7134
    (Haskell) "any"
37605
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  7135
46147
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  7136
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  7137
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
  7138
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  7139
lemma is_empty_set [code]:
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  7140
  "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
  7141
  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
  7142
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  7143
lemma empty_set [code]:
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  7144
  "{} = set []"
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  7145
  by simp
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  7146
46156
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  7147
lemma UNIV_coset [code]:
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  7148
  "UNIV = List.coset []"
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  7149
  by simp
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  7150
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  7151
lemma compl_set [code]:
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  7152
  "- set xs = List.coset xs"
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  7153
  by simp
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  7154
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  7155
lemma compl_coset [code]:
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  7156
  "- List.coset xs = set xs"
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  7157
  by simp
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  7158
46147
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  7159
lemma [code]:
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  7160
  "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
  7161
  "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
  7162
  by (simp_all add: member_def)
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  7163
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  7164
lemma insert_code [code]:
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  7165
  "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
  7166
  "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
  7167
  by simp_all
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  7168
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  7169
lemma remove_code [code]:
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  7170
  "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
  7171
  "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
  7172
  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
  7173
49757
73ab6d4a9236 rename Set.project to Set.filter - more appropriate name
kuncar
parents: 49739
diff changeset
  7174
lemma filter_set [code]:
73ab6d4a9236 rename Set.project to Set.filter - more appropriate name
kuncar
parents: 49739
diff changeset
  7175
  "Set.filter P (set xs) = set (filter P xs)"
46156
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  7176
  by auto
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  7177
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  7178
lemma image_set [code]:
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  7179
  "image f (set xs) = set (map f xs)"
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  7180
  by simp
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  7181
47398
haftmann
parents: 47397
diff changeset
  7182
lemma subset_code [code]:
haftmann
parents: 47397
diff changeset
  7183
  "set xs \<le> B \<longleftrightarrow> (\<forall>x\<in>set xs. x \<in> B)"
haftmann
parents: 47397
diff changeset
  7184
  "A \<le> List.coset ys \<longleftrightarrow> (\<forall>y\<in>set ys. y \<notin> A)"
68709
6d9eca4805ff de-applying
paulson <lp15@cam.ac.uk>
parents: 68646
diff changeset
  7185
  "List.coset [] \<subseteq> set [] \<longleftrightarrow> False"
47398
haftmann
parents: 47397
diff changeset
  7186
  by auto
haftmann
parents: 47397
diff changeset
  7187
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  7188
text \<open>A frequent case -- avoid intermediate sets\<close>
47398
haftmann
parents: 47397
diff changeset
  7189
lemma [code_unfold]:
haftmann
parents: 47397
diff changeset
  7190
  "set xs \<subseteq> set ys \<longleftrightarrow> list_all (\<lambda>x. x \<in> set ys) xs"
haftmann
parents: 47397
diff changeset
  7191
  by (auto simp: list_all_iff)
haftmann
parents: 47397
diff changeset
  7192
46147
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  7193
lemma Ball_set [code]:
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  7194
  "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
  7195
  by (simp add: list_all_iff)
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  7196
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  7197
lemma Bex_set [code]:
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  7198
  "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
  7199
  by (simp add: list_ex_iff)
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  7200
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  7201
lemma card_set [code]:
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  7202
  "card (set xs) = length (remdups xs)"
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  7203
proof -
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  7204
  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
  7205
    by (rule distinct_card) simp
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  7206
  then show ?thesis by simp
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  7207
qed
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  7208
46156
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  7209
lemma the_elem_set [code]:
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  7210
  "the_elem (set [x]) = x"
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  7211
  by simp
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  7212
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  7213
lemma Pow_set [code]:
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  7214
  "Pow (set []) = {{}}"
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  7215
  "Pow (set (x # xs)) = (let A = Pow (set xs) in A \<union> insert x ` A)"
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  7216
  by (simp_all add: Pow_insert Let_def)
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  7217
46424
b447318e5e1a adding code equation for Relation.image; adding map_project as correspondence to map_filter on lists
bulwahn
parents: 46418
diff changeset
  7218
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
  7219
  "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
  7220
b447318e5e1a adding code equation for Relation.image; adding map_project as correspondence to map_filter on lists
bulwahn
parents: 46418
diff changeset
  7221
lemma [code]:
b447318e5e1a adding code equation for Relation.image; adding map_project as correspondence to map_filter on lists
bulwahn
parents: 46418
diff changeset
  7222
  "map_project f (set xs) = set (List.map_filter f xs)"
47398
haftmann
parents: 47397
diff changeset
  7223
  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
  7224
b447318e5e1a adding code equation for Relation.image; adding map_project as correspondence to map_filter on lists
bulwahn
parents: 46418
diff changeset
  7225
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
  7226
49948
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  7227
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  7228
text \<open>Operations on relations\<close>
46147
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  7229
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  7230
lemma product_code [code]:
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  7231
  "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
  7232
  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
  7233
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  7234
lemma Id_on_set [code]:
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  7235
  "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
  7236
  by (auto simp add: Id_on_def)
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  7237
46424
b447318e5e1a adding code equation for Relation.image; adding map_project as correspondence to map_filter on lists
bulwahn
parents: 46418
diff changeset
  7238
lemma [code]:
67613
ce654b0e6d69 more symbols;
wenzelm
parents: 67606
diff changeset
  7239
  "R `` S = List.map_project (\<lambda>(x, y). if x \<in> S then Some y else None) R"
62390
842917225d56 more canonical names
nipkow
parents: 62343
diff changeset
  7240
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
  7241
46147
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  7242
lemma trancl_set_ntrancl [code]:
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  7243
  "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
  7244
  by (simp add: finite_trancl_ntranl)
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  7245
47433
07f4bf913230 renamed "rel_comp" to "relcomp" (to be consistent with, e.g., "relpow")
griff
parents: 47131
diff changeset
  7246
lemma set_relcomp [code]:
46147
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  7247
  "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
  7248
  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
  7249
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  7250
lemma wf_set [code]:
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  7251
  "wf (set xs) = acyclic (set xs)"
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  7252
  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
  7253
55129
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54890
diff changeset
  7254
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  7255
subsection \<open>Setup for Lifting/Transfer\<close>
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  7256
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60752
diff changeset
  7257
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
  7258
63343
fb5d8a50c641 bundle lifting_syntax;
wenzelm
parents: 63317
diff changeset
  7259
context includes lifting_syntax
53012
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7260
begin
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7261
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7262
lemma tl_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7263
  "(list_all2 A ===> list_all2 A) tl tl"
55405
0a155051bd9d use new selector support to define 'the', 'hd', 'tl'
blanchet
parents: 55404
diff changeset
  7264
  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
  7265
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7266
lemma butlast_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7267
  "(list_all2 A ===> list_all2 A) butlast butlast"
55945
e96383acecf9 renamed 'fun_rel' to 'rel_fun'
blanchet
parents: 55944
diff changeset
  7268
  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
  7269
55465
0d31c0546286 merged 'List.map' and 'List.list.map'
blanchet
parents: 55442
diff changeset
  7270
lemma map_rec: "map f xs = rec_list Nil (%x _ y. Cons (f x) y) xs"
0d31c0546286 merged 'List.map' and 'List.list.map'
blanchet
parents: 55442
diff changeset
  7271
  by (induct xs) auto
0d31c0546286 merged 'List.map' and 'List.list.map'
blanchet
parents: 55442
diff changeset
  7272
53012
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7273
lemma append_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7274
  "(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
  7275
  unfolding List.append_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7276
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7277
lemma rev_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7278
  "(list_all2 A ===> list_all2 A) rev rev"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7279
  unfolding List.rev_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7280
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7281
lemma filter_transfer [transfer_rule]:
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67171
diff changeset
  7282
  "((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
  7283
  unfolding List.filter_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7284
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7285
lemma fold_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7286
  "((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
  7287
  unfolding List.fold_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7288
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7289
lemma foldr_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7290
  "((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
  7291
  unfolding List.foldr_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7292
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7293
lemma foldl_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7294
  "((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
  7295
  unfolding List.foldl_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7296
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7297
lemma concat_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7298
  "(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
  7299
  unfolding List.concat_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7300
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7301
lemma drop_transfer [transfer_rule]:
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67171
diff changeset
  7302
  "((=) ===> 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
  7303
  unfolding List.drop_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7304
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7305
lemma take_transfer [transfer_rule]:
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67171
diff changeset
  7306
  "((=) ===> 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
  7307
  unfolding List.take_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7308
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7309
lemma list_update_transfer [transfer_rule]:
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67171
diff changeset
  7310
  "(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
  7311
  unfolding list_update_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7312
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7313
lemma takeWhile_transfer [transfer_rule]:
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67171
diff changeset
  7314
  "((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
  7315
  unfolding takeWhile_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7316
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7317
lemma dropWhile_transfer [transfer_rule]:
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67171
diff changeset
  7318
  "((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
  7319
  unfolding dropWhile_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7320
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7321
lemma zip_transfer [transfer_rule]:
55944
7ab8f003fe41 renamed 'prod_rel' to 'rel_prod'
blanchet
parents: 55938
diff changeset
  7322
  "(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
  7323
  unfolding zip_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7324
53721
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  7325
lemma product_transfer [transfer_rule]:
55944
7ab8f003fe41 renamed 'prod_rel' to 'rel_prod'
blanchet
parents: 55938
diff changeset
  7326
  "(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
  7327
  unfolding List.product_def by transfer_prover
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  7328
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  7329
lemma product_lists_transfer [transfer_rule]:
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  7330
  "(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
  7331
  unfolding product_lists_def by transfer_prover
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  7332
53012
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7333
lemma insert_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7334
  assumes [transfer_rule]: "bi_unique A"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7335
  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
  7336
  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
  7337
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7338
lemma find_transfer [transfer_rule]:
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67171
diff changeset
  7339
  "((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
  7340
  unfolding List.find_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7341
63521
32da860241b8 added missing transfer rule
Lars Hupel <lars.hupel@mytum.de>
parents: 63365
diff changeset
  7342
lemma those_transfer [transfer_rule]:
32da860241b8 added missing transfer rule
Lars Hupel <lars.hupel@mytum.de>
parents: 63365
diff changeset
  7343
  "(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
  7344
  unfolding List.those_def by transfer_prover
32da860241b8 added missing transfer rule
Lars Hupel <lars.hupel@mytum.de>
parents: 63365
diff changeset
  7345
53012
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7346
lemma remove1_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7347
  assumes [transfer_rule]: "bi_unique A"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7348
  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
  7349
  unfolding remove1_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7350
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7351
lemma removeAll_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7352
  assumes [transfer_rule]: "bi_unique A"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7353
  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
  7354
  unfolding removeAll_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7355
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7356
lemma distinct_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7357
  assumes [transfer_rule]: "bi_unique A"
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67171
diff changeset
  7358
  shows "(list_all2 A ===> (=)) distinct distinct"
53012
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7359
  unfolding distinct_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7360
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7361
lemma remdups_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7362
  assumes [transfer_rule]: "bi_unique A"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7363
  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
  7364
  unfolding remdups_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7365
53721
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  7366
lemma remdups_adj_transfer [transfer_rule]:
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  7367
  assumes [transfer_rule]: "bi_unique A"
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  7368
  shows "(list_all2 A ===> list_all2 A) remdups_adj remdups_adj"
55945
e96383acecf9 renamed 'fun_rel' to 'rel_fun'
blanchet
parents: 55944
diff changeset
  7369
  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
  7370
  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
  7371
53012
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7372
lemma replicate_transfer [transfer_rule]:
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67171
diff changeset
  7373
  "((=) ===> A ===> list_all2 A) replicate replicate"
53012
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7374
  unfolding replicate_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7375
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7376
lemma length_transfer [transfer_rule]:
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67171
diff changeset
  7377
  "(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
  7378
  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
  7379
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7380
lemma rotate1_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7381
  "(list_all2 A ===> list_all2 A) rotate1 rotate1"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7382
  unfolding rotate1_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7383
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7384
lemma rotate_transfer [transfer_rule]:
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67171
diff changeset
  7385
  "((=) ===> 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
  7386
  unfolding rotate_def [abs_def] by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7387
65956
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  7388
lemma nths_transfer [transfer_rule]:
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67171
diff changeset
  7389
  "(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
  7390
  unfolding nths_def [abs_def] by transfer_prover
66892
d67d28254ff2 remove trailing whitespaces in List
bulwahn
parents: 66891
diff changeset
  7391
65956
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  7392
lemma subseqs_transfer [transfer_rule]:
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  7393
  "(list_all2 A ===> list_all2 (list_all2 A)) subseqs subseqs"
639eb3617a86 reorganised material on sublists
eberlm <eberlm@in.tum.de>
parents: 65350
diff changeset
  7394
  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
  7395
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7396
lemma partition_transfer [transfer_rule]:
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67171
diff changeset
  7397
  "((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
  7398
    partition partition"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7399
  unfolding partition_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7400
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7401
lemma lists_transfer [transfer_rule]:
55938
f20d1db5aa3c renamed 'set_rel' to 'rel_set'
blanchet
parents: 55932
diff changeset
  7402
  "(rel_set A ===> rel_set (list_all2 A)) lists lists"
55945
e96383acecf9 renamed 'fun_rel' to 'rel_fun'
blanchet
parents: 55944
diff changeset
  7403
  apply (rule rel_funI, rule rel_setI)
53012
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7404
  apply (erule lists.induct, simp)
55938
f20d1db5aa3c renamed 'set_rel' to 'rel_set'
blanchet
parents: 55932
diff changeset
  7405
  apply (simp only: rel_set_def list_all2_Cons1, metis lists.Cons)
53012
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7406
  apply (erule lists.induct, simp)
55938
f20d1db5aa3c renamed 'set_rel' to 'rel_set'
blanchet
parents: 55932
diff changeset
  7407
  apply (simp only: rel_set_def list_all2_Cons2, metis lists.Cons)
53012
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7408
  done
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7409
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7410
lemma set_Cons_transfer [transfer_rule]:
55938
f20d1db5aa3c renamed 'set_rel' to 'rel_set'
blanchet
parents: 55932
diff changeset
  7411
  "(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
  7412
    set_Cons set_Cons"
55945
e96383acecf9 renamed 'fun_rel' to 'rel_fun'
blanchet
parents: 55944
diff changeset
  7413
  unfolding rel_fun_def rel_set_def set_Cons_def
68719
8aedca31957d de-applying
paulson <lp15@cam.ac.uk>
parents: 68709
diff changeset
  7414
  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
  7415
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7416
lemma listset_transfer [transfer_rule]:
55938
f20d1db5aa3c renamed 'set_rel' to 'rel_set'
blanchet
parents: 55932
diff changeset
  7417
  "(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
  7418
  unfolding listset_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7419
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7420
lemma null_transfer [transfer_rule]:
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67171
diff changeset
  7421
  "(list_all2 A ===> (=)) List.null List.null"
55945
e96383acecf9 renamed 'fun_rel' to 'rel_fun'
blanchet
parents: 55944
diff changeset
  7422
  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
  7423
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7424
lemma list_all_transfer [transfer_rule]:
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67171
diff changeset
  7425
  "((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
  7426
  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
  7427
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7428
lemma list_ex_transfer [transfer_rule]:
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67171
diff changeset
  7429
  "((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
  7430
  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
  7431
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7432
lemma splice_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7433
  "(list_all2 A ===> list_all2 A ===> list_all2 A) splice splice"
55945
e96383acecf9 renamed 'fun_rel' to 'rel_fun'
blanchet
parents: 55944
diff changeset
  7434
  apply (rule rel_funI, erule list_all2_induct, simp add: rel_fun_def, simp)
e96383acecf9 renamed 'fun_rel' to 'rel_fun'
blanchet
parents: 55944
diff changeset
  7435
  apply (rule rel_funI)
e96383acecf9 renamed 'fun_rel' to 'rel_fun'
blanchet
parents: 55944
diff changeset
  7436
  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
  7437
  done
66892
d67d28254ff2 remove trailing whitespaces in List
bulwahn
parents: 66891
diff changeset
  7438
69107
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  7439
lemma shuffles_transfer [transfer_rule]:
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  7440
  "(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
  7441
proof (intro rel_funI, goal_cases)
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
  7442
  case (1 xs xs' ys ys')
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
  7443
  thus ?case
69107
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  7444
  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
  7445
    case (3 x xs y ys xs' ys')
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
  7446
    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
  7447
    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
  7448
    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
  7449
      using "3.prems" by (simp_all add: xs' ys')
69107
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  7450
    have [transfer_rule]: "rel_set (list_all2 A) (shuffles xs (y # ys)) (shuffles xs'' ys')" and
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  7451
         [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
  7452
      using "3.prems" by (auto intro!: "3.IH" simp: xs' ys')
69107
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  7453
    have "rel_set (list_all2 A) ((#) x ` shuffles xs (y # ys) \<union> (#) y ` shuffles (x # xs) ys)
c2de7a5c8de9 shuffle -> shuffles
nipkow
parents: 69084
diff changeset
  7454
               ((#) 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
  7455
    thus ?case by (simp add: xs' ys')
b149abe619f7 added shuffle product to HOL/List
eberlm <eberlm@in.tum.de>
parents: 64966
diff changeset
  7456
  qed (auto simp: rel_set_def)
66892
d67d28254ff2 remove trailing whitespaces in List
bulwahn
parents: 66891
diff changeset
  7457
qed
53012
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7458
57599
7ef939f89776 add parametricity lemmas
Andreas Lochbihler
parents: 57577
diff changeset
  7459
lemma rtrancl_parametric [transfer_rule]:
7ef939f89776 add parametricity lemmas
Andreas Lochbihler
parents: 57577
diff changeset
  7460
  assumes [transfer_rule]: "bi_unique A" "bi_total A"
7ef939f89776 add parametricity lemmas
Andreas Lochbihler
parents: 57577
diff changeset
  7461
  shows "(rel_set (rel_prod A A) ===> rel_set (rel_prod A A)) rtrancl rtrancl"
7ef939f89776 add parametricity lemmas
Andreas Lochbihler
parents: 57577
diff changeset
  7462
unfolding rtrancl_def by transfer_prover
7ef939f89776 add parametricity lemmas
Andreas Lochbihler
parents: 57577
diff changeset
  7463
59516
d92b74f3f6e3 add parametricity rules for monotone, fun_lub, and fun_ord
Andreas Lochbihler
parents: 59199
diff changeset
  7464
lemma monotone_parametric [transfer_rule]:
d92b74f3f6e3 add parametricity rules for monotone, fun_lub, and fun_ord
Andreas Lochbihler
parents: 59199
diff changeset
  7465
  assumes [transfer_rule]: "bi_total A"
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67171
diff changeset
  7466
  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
  7467
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
  7468
d92b74f3f6e3 add parametricity rules for monotone, fun_lub, and fun_ord
Andreas Lochbihler
parents: 59199
diff changeset
  7469
lemma fun_ord_parametric [transfer_rule]:
d92b74f3f6e3 add parametricity rules for monotone, fun_lub, and fun_ord
Andreas Lochbihler
parents: 59199
diff changeset
  7470
  assumes [transfer_rule]: "bi_total C"
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 67171
diff changeset
  7471
  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
  7472
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
  7473
d92b74f3f6e3 add parametricity rules for monotone, fun_lub, and fun_ord
Andreas Lochbihler
parents: 59199
diff changeset
  7474
lemma fun_lub_parametric [transfer_rule]:
d92b74f3f6e3 add parametricity rules for monotone, fun_lub, and fun_ord
Andreas Lochbihler
parents: 59199
diff changeset
  7475
  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
  7476
  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
  7477
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
  7478
23388
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  7479
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
  7480
53012
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  7481
end