src/HOL/List.thy
author blanchet
Wed, 12 Feb 2014 08:35:57 +0100
changeset 55415 05f5fdb8d093
parent 55406 186076d100d3
child 55417 01fbfb60c33e
permissions -rw-r--r--
renamed 'nat_{case,rec}' to '{case,rec}_nat'
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
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13366
diff changeset
     2
    Author:     Tobias Nipkow
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
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
     5
header {* The datatype of finite lists *}
13122
wenzelm
parents: 13114
diff changeset
     6
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15113
diff changeset
     7
theory List
54555
e8c5e95d338b rationalize imports
blanchet
parents: 54498
diff changeset
     8
imports Presburger Code_Numeral Quotient Lifting_Set Lifting_Option Lifting_Product
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
55404
5cb95b79a51f transformed 'option' and 'list' into new-style datatypes (but register them as old-style as well)
blanchet
parents: 55148
diff changeset
    11
datatype_new 'a list =
55405
0a155051bd9d use new selector support to define 'the', 'hd', 'tl'
blanchet
parents: 55404
diff changeset
    12
    =: Nil (defaults tl: "[]")  ("[]")
0a155051bd9d use new selector support to define 'the', 'hd', 'tl'
blanchet
parents: 55404
diff changeset
    13
  | Cons (hd: 'a) (tl: "'a list")  (infixr "#" 65)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    14
55404
5cb95b79a51f transformed 'option' and 'list' into new-style datatypes (but register them as old-style as well)
blanchet
parents: 55148
diff changeset
    15
datatype_new_compat list
5cb95b79a51f transformed 'option' and 'list' into new-style datatypes (but register them as old-style as well)
blanchet
parents: 55148
diff changeset
    16
55406
186076d100d3 compatibility names
blanchet
parents: 55405
diff changeset
    17
thm list.exhaust[no_vars]
186076d100d3 compatibility names
blanchet
parents: 55405
diff changeset
    18
186076d100d3 compatibility names
blanchet
parents: 55405
diff changeset
    19
lemma [case_names Nil Cons, cases type: list]:
186076d100d3 compatibility names
blanchet
parents: 55405
diff changeset
    20
  -- {* for backward compatibility -- names of variables differ *}
186076d100d3 compatibility names
blanchet
parents: 55405
diff changeset
    21
  "(y = [] \<Longrightarrow> P) \<Longrightarrow> (\<And>a list. y = a # list \<Longrightarrow> P) \<Longrightarrow> P"
186076d100d3 compatibility names
blanchet
parents: 55405
diff changeset
    22
by (rule list.exhaust)
186076d100d3 compatibility names
blanchet
parents: 55405
diff changeset
    23
186076d100d3 compatibility names
blanchet
parents: 55405
diff changeset
    24
lemma [case_names Nil Cons, induct type: list]:
186076d100d3 compatibility names
blanchet
parents: 55405
diff changeset
    25
  -- {* for backward compatibility -- names of variables differ *}
186076d100d3 compatibility names
blanchet
parents: 55405
diff changeset
    26
  "P [] \<Longrightarrow> (\<And>a list. P list \<Longrightarrow> P (a # list)) \<Longrightarrow> P list"
186076d100d3 compatibility names
blanchet
parents: 55405
diff changeset
    27
by (rule list.induct)
186076d100d3 compatibility names
blanchet
parents: 55405
diff changeset
    28
55404
5cb95b79a51f transformed 'option' and 'list' into new-style datatypes (but register them as old-style as well)
blanchet
parents: 55148
diff changeset
    29
-- {* Compatibility *}
5cb95b79a51f transformed 'option' and 'list' into new-style datatypes (but register them as old-style as well)
blanchet
parents: 55148
diff changeset
    30
setup {* Sign.mandatory_path "list" *}
5cb95b79a51f transformed 'option' and 'list' into new-style datatypes (but register them as old-style as well)
blanchet
parents: 55148
diff changeset
    31
5cb95b79a51f transformed 'option' and 'list' into new-style datatypes (but register them as old-style as well)
blanchet
parents: 55148
diff changeset
    32
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
    33
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
    34
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
    35
5cb95b79a51f transformed 'option' and 'list' into new-style datatypes (but register them as old-style as well)
blanchet
parents: 55148
diff changeset
    36
setup {* Sign.parent_path *}
5cb95b79a51f transformed 'option' and 'list' into new-style datatypes (but register them as old-style as well)
blanchet
parents: 55148
diff changeset
    37
34941
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
    38
syntax
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
    39
  -- {* list Enumeration *}
35115
446c5063e4fd modernized translations;
wenzelm
parents: 35028
diff changeset
    40
  "_list" :: "args => 'a list"    ("[(_)]")
34941
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
    41
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
    42
translations
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
    43
  "[x, xs]" == "x#[xs]"
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
    44
  "[x]" == "x#[]"
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
    45
35115
446c5063e4fd modernized translations;
wenzelm
parents: 35028
diff changeset
    46
446c5063e4fd modernized translations;
wenzelm
parents: 35028
diff changeset
    47
subsection {* Basic list processing functions *}
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
    48
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    49
primrec last :: "'a list \<Rightarrow> 'a" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    50
"last (x # xs) = (if xs = [] then x else last xs)"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    51
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    52
primrec butlast :: "'a list \<Rightarrow> 'a list" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    53
"butlast []= []" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    54
"butlast (x # xs) = (if xs = [] then [] else x # butlast xs)"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    55
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    56
primrec set :: "'a list \<Rightarrow> 'a set" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    57
"set [] = {}" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    58
"set (x # xs) = insert x (set xs)"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    59
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    60
definition coset :: "'a list \<Rightarrow> 'a set" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    61
[simp]: "coset xs = - set xs"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    62
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    63
primrec map :: "('a \<Rightarrow> 'b) \<Rightarrow> 'a list \<Rightarrow> 'b list" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    64
"map f [] = []" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    65
"map f (x # xs) = f x # map f xs"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    66
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    67
primrec append :: "'a list \<Rightarrow> 'a list \<Rightarrow> 'a list" (infixr "@" 65) where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    68
append_Nil: "[] @ ys = ys" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    69
append_Cons: "(x#xs) @ ys = x # xs @ ys"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    70
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    71
primrec rev :: "'a list \<Rightarrow> 'a list" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    72
"rev [] = []" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    73
"rev (x # xs) = rev xs @ [x]"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    74
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    75
primrec filter:: "('a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> 'a list" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    76
"filter P [] = []" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    77
"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
    78
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
    79
syntax
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
    80
  -- {* Special syntax for filter *}
35115
446c5063e4fd modernized translations;
wenzelm
parents: 35028
diff changeset
    81
  "_filter" :: "[pttrn, 'a list, bool] => 'a list"    ("(1[_<-_./ _])")
34941
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
    82
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
    83
translations
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
    84
  "[x<-xs . P]"== "CONST filter (%x. P) xs"
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
    85
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
    86
syntax (xsymbols)
35115
446c5063e4fd modernized translations;
wenzelm
parents: 35028
diff changeset
    87
  "_filter" :: "[pttrn, 'a list, bool] => 'a list"("(1[_\<leftarrow>_ ./ _])")
34941
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
    88
syntax (HTML output)
35115
446c5063e4fd modernized translations;
wenzelm
parents: 35028
diff changeset
    89
  "_filter" :: "[pttrn, 'a list, bool] => 'a list"("(1[_\<leftarrow>_ ./ _])")
34941
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
    90
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    91
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
    92
fold_Nil:  "fold f [] = id" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    93
fold_Cons: "fold f (x # xs) = fold f xs \<circ> f x"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    94
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    95
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
    96
foldr_Nil:  "foldr f [] = id" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    97
foldr_Cons: "foldr f (x # xs) = f x \<circ> foldr f xs"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    98
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
    99
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
   100
foldl_Nil:  "foldl f a [] = a" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   101
foldl_Cons: "foldl f a (x # xs) = foldl f (f a x) xs"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   102
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   103
primrec concat:: "'a list list \<Rightarrow> 'a list" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   104
"concat [] = []" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   105
"concat (x # xs) = x @ concat xs"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   106
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   107
definition (in monoid_add) listsum :: "'a list \<Rightarrow> 'a" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   108
"listsum xs = foldr plus xs 0"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   109
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   110
primrec drop:: "nat \<Rightarrow> 'a list \<Rightarrow> 'a list" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   111
drop_Nil: "drop n [] = []" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   112
drop_Cons: "drop n (x # xs) = (case n of 0 \<Rightarrow> x # xs | Suc m \<Rightarrow> drop m xs)"
34941
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
   113
  -- {*Warning: simpset does not contain this definition, but separate
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
   114
       theorems for @{text "n = 0"} and @{text "n = Suc k"} *}
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
   115
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   116
primrec take:: "nat \<Rightarrow> 'a list \<Rightarrow> 'a list" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   117
take_Nil:"take n [] = []" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   118
take_Cons: "take n (x # xs) = (case n of 0 \<Rightarrow> [] | Suc m \<Rightarrow> x # take m xs)"
34941
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
   119
  -- {*Warning: simpset does not contain this definition, but separate
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
   120
       theorems for @{text "n = 0"} and @{text "n = Suc k"} *}
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 nth :: "'a list => nat => 'a" (infixl "!" 100) where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   123
nth_Cons: "(x # xs) ! n = (case n of 0 \<Rightarrow> x | Suc k \<Rightarrow> xs ! k)"
34941
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
   124
  -- {*Warning: simpset does not contain this definition, but separate
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
   125
       theorems for @{text "n = 0"} and @{text "n = Suc k"} *}
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
   126
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   127
primrec list_update :: "'a list \<Rightarrow> nat \<Rightarrow> 'a \<Rightarrow> 'a list" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   128
"list_update [] i v = []" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   129
"list_update (x # xs) i v =
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   130
  (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
   131
41229
d797baa3d57c replaced command 'nonterminals' by slightly modernized version 'nonterminal';
wenzelm
parents: 41075
diff changeset
   132
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
   133
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   134
syntax
13366
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
   135
  "_lupdbind":: "['a, 'a] => lupdbind"    ("(2_ :=/ _)")
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
   136
  "" :: "lupdbind => lupdbinds"    ("_")
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
   137
  "_lupdbinds" :: "[lupdbind, lupdbinds] => lupdbinds"    ("_,/ _")
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
   138
  "_LUpdate" :: "['a, lupdbinds] => 'a"    ("_/[(_)]" [900,0] 900)
5077
71043526295f * HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents: 4643
diff changeset
   139
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   140
translations
35115
446c5063e4fd modernized translations;
wenzelm
parents: 35028
diff changeset
   141
  "_LUpdate xs (_lupdbinds b bs)" == "_LUpdate (_LUpdate xs b) bs"
34941
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
   142
  "xs[i:=x]" == "CONST list_update xs i x"
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
   143
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   144
primrec takeWhile :: "('a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> 'a list" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   145
"takeWhile P [] = []" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   146
"takeWhile P (x # xs) = (if P x then x # takeWhile P xs else [])"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   147
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   148
primrec dropWhile :: "('a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> 'a list" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   149
"dropWhile P [] = []" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   150
"dropWhile P (x # xs) = (if P x then dropWhile P xs else x # xs)"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   151
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   152
primrec zip :: "'a list \<Rightarrow> 'b list \<Rightarrow> ('a \<times> 'b) list" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   153
"zip xs [] = []" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   154
zip_Cons: "zip xs (y # ys) =
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   155
  (case xs of [] => [] | z # zs => (z, y) # zip zs ys)"
34941
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
   156
  -- {*Warning: simpset does not contain this definition, but separate
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
   157
       theorems for @{text "xs = []"} and @{text "xs = z # zs"} *}
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
   158
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   159
primrec product :: "'a list \<Rightarrow> 'b list \<Rightarrow> ('a \<times> 'b) list" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   160
"product [] _ = []" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   161
"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
   162
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
   163
hide_const (open) product
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
   164
53721
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
   165
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
   166
"product_lists [] = [[]]" |
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
   167
"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
   168
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   169
primrec upt :: "nat \<Rightarrow> nat \<Rightarrow> nat list" ("(1[_..</_'])") where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   170
upt_0: "[i..<0] = []" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   171
upt_Suc: "[i..<(Suc j)] = (if i <= j then [i..<j] @ [j] else [])"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   172
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   173
definition insert :: "'a \<Rightarrow> 'a list \<Rightarrow> 'a list" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   174
"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
   175
36176
3fe7e97ccca8 replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
wenzelm
parents: 36154
diff changeset
   176
hide_const (open) insert
3fe7e97ccca8 replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
wenzelm
parents: 36154
diff changeset
   177
hide_fact (open) insert_def
34978
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
   178
47122
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
   179
primrec find :: "('a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> 'a option" where
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   180
"find _ [] = None" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   181
"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
   182
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
   183
hide_const (open) find
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
   184
51096
60e4b75fefe1 combinator List.those;
haftmann
parents: 50548
diff changeset
   185
primrec those :: "'a option list \<Rightarrow> 'a list option"
60e4b75fefe1 combinator List.those;
haftmann
parents: 50548
diff changeset
   186
where
60e4b75fefe1 combinator List.those;
haftmann
parents: 50548
diff changeset
   187
"those [] = Some []" |
60e4b75fefe1 combinator List.those;
haftmann
parents: 50548
diff changeset
   188
"those (x # xs) = (case x of
60e4b75fefe1 combinator List.those;
haftmann
parents: 50548
diff changeset
   189
  None \<Rightarrow> None
60e4b75fefe1 combinator List.those;
haftmann
parents: 50548
diff changeset
   190
| Some y \<Rightarrow> Option.map (Cons y) (those xs))"
60e4b75fefe1 combinator List.those;
haftmann
parents: 50548
diff changeset
   191
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   192
primrec remove1 :: "'a \<Rightarrow> 'a list \<Rightarrow> 'a list" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   193
"remove1 x [] = []" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   194
"remove1 x (y # xs) = (if x = y then xs else y # remove1 x xs)"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   195
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   196
primrec removeAll :: "'a \<Rightarrow> 'a list \<Rightarrow> 'a list" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   197
"removeAll x [] = []" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   198
"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
   199
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   200
primrec distinct :: "'a list \<Rightarrow> bool" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   201
"distinct [] \<longleftrightarrow> True" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   202
"distinct (x # xs) \<longleftrightarrow> x \<notin> set xs \<and> distinct xs"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   203
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   204
primrec remdups :: "'a list \<Rightarrow> 'a list" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   205
"remdups [] = []" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   206
"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
   207
53721
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
   208
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
   209
"remdups_adj [] = []" |
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
   210
"remdups_adj [x] = [x]" |
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
   211
"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
   212
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   213
primrec replicate :: "nat \<Rightarrow> 'a \<Rightarrow> 'a list" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   214
replicate_0: "replicate 0 x = []" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   215
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
   216
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   217
text {*
14589
feae7b5fd425 tuned document;
wenzelm
parents: 14565
diff changeset
   218
  Function @{text size} is overloaded for all datatypes. Users may
13366
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
   219
  refer to the list version as @{text length}. *}
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   220
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   221
abbreviation length :: "'a list \<Rightarrow> nat" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   222
"length \<equiv> size"
15307
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   223
51173
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
   224
definition enumerate :: "nat \<Rightarrow> 'a list \<Rightarrow> (nat \<times> 'a) list" where
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
   225
enumerate_eq_zip: "enumerate n xs = zip [n..<n + length xs] xs"
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
   226
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
   227
primrec rotate1 :: "'a list \<Rightarrow> 'a list" where
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   228
"rotate1 [] = []" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   229
"rotate1 (x # xs) = xs @ [x]"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   230
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   231
definition rotate :: "nat \<Rightarrow> 'a list \<Rightarrow> 'a list" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   232
"rotate n = rotate1 ^^ n"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   233
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   234
definition list_all2 :: "('a \<Rightarrow> 'b \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> 'b list \<Rightarrow> bool" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   235
"list_all2 P xs ys =
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   236
  (length xs = length ys \<and> (\<forall>(x, y) \<in> set (zip xs ys). P x y))"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   237
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   238
definition sublist :: "'a list => nat set => 'a list" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   239
"sublist xs A = map fst (filter (\<lambda>p. snd p \<in> A) (zip xs [0..<size xs]))"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   240
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   241
primrec sublists :: "'a list \<Rightarrow> 'a list list" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   242
"sublists [] = [[]]" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   243
"sublists (x#xs) = (let xss = sublists xs in map (Cons x) xss @ xss)"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   244
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   245
primrec n_lists :: "nat \<Rightarrow> 'a list \<Rightarrow> 'a list list" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   246
"n_lists 0 xs = [[]]" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   247
"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
   248
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
   249
hide_const (open) n_lists
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
   250
40593
1e57b18d27b1 code eqn for slice was missing; redefined splice with fun
nipkow
parents: 40365
diff changeset
   251
fun splice :: "'a list \<Rightarrow> 'a list \<Rightarrow> 'a list" where
1e57b18d27b1 code eqn for slice was missing; redefined splice with fun
nipkow
parents: 40365
diff changeset
   252
"splice [] ys = ys" |
1e57b18d27b1 code eqn for slice was missing; redefined splice with fun
nipkow
parents: 40365
diff changeset
   253
"splice xs [] = xs" |
1e57b18d27b1 code eqn for slice was missing; redefined splice with fun
nipkow
parents: 40365
diff changeset
   254
"splice (x#xs) (y#ys) = x # y # splice xs ys"
21061
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
   255
26771
1d67ab20f358 Added documentation
nipkow
parents: 26749
diff changeset
   256
text{*
1d67ab20f358 Added documentation
nipkow
parents: 26749
diff changeset
   257
\begin{figure}[htbp]
1d67ab20f358 Added documentation
nipkow
parents: 26749
diff changeset
   258
\fbox{
1d67ab20f358 Added documentation
nipkow
parents: 26749
diff changeset
   259
\begin{tabular}{l}
27381
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   260
@{lemma "[a,b]@[c,d] = [a,b,c,d]" by simp}\\
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   261
@{lemma "length [a,b,c] = 3" by simp}\\
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   262
@{lemma "set [a,b,c] = {a,b,c}" by simp}\\
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   263
@{lemma "map f [a,b,c] = [f a, f b, f c]" by simp}\\
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   264
@{lemma "rev [a,b,c] = [c,b,a]" by simp}\\
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   265
@{lemma "hd [a,b,c,d] = a" by simp}\\
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   266
@{lemma "tl [a,b,c,d] = [b,c,d]" by simp}\\
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   267
@{lemma "last [a,b,c,d] = d" by simp}\\
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   268
@{lemma "butlast [a,b,c,d] = [a,b,c]" by simp}\\
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   269
@{lemma[source] "filter (\<lambda>n::nat. n<2) [0,2,1] = [0,1]" by simp}\\
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   270
@{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
   271
@{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
   272
@{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
   273
@{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
   274
@{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
   275
@{lemma "zip [a,b] [x,y,z] = [(a,x),(b,y)]" by simp}\\
51173
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
   276
@{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
   277
@{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
   278
@{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
   279
@{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
   280
@{lemma "splice [a,b,c,d] [x,y] = [a,x,b,y,c,d]" by simp}\\
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   281
@{lemma "take 2 [a,b,c,d] = [a,b]" by simp}\\
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   282
@{lemma "take 6 [a,b,c,d] = [a,b,c,d]" by simp}\\
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   283
@{lemma "drop 2 [a,b,c,d] = [c,d]" by simp}\\
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   284
@{lemma "drop 6 [a,b,c,d] = []" by simp}\\
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   285
@{lemma "takeWhile (%n::nat. n<3) [1,2,3,0] = [1,2]" by simp}\\
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   286
@{lemma "dropWhile (%n::nat. n<3) [1,2,3,0] = [3,0]" by simp}\\
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   287
@{lemma "distinct [2,0,1::nat]" by simp}\\
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   288
@{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
   289
@{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
   290
@{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
   291
@{lemma "List.insert 3 [0::nat,1,2] = [3,0,1,2]" by (simp add: List.insert_def)}\\
47122
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
   292
@{lemma "List.find (%i::int. i>0) [0,0] = None" by simp}\\
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
   293
@{lemma "List.find (%i::int. i>0) [0,1,0,2] = Some 1" by simp}\\
27381
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   294
@{lemma "remove1 2 [2,0,2,1::nat,2] = [0,2,1,2]" by simp}\\
27693
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
   295
@{lemma "removeAll 2 [2,0,2,1::nat,2] = [0,1]" by simp}\\
27381
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   296
@{lemma "nth [a,b,c,d] 2 = c" by simp}\\
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   297
@{lemma "[a,b,c,d][2 := x] = [a,b,x,d]" by simp}\\
19ae7064f00f @{lemma}: 'by' keyword;
wenzelm
parents: 27368
diff changeset
   298
@{lemma "sublist [a,b,c,d,e] {0,2,3} = [a,c,d]" by (simp add:sublist_def)}\\
49948
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
   299
@{lemma "sublists [a,b] = [[a, b], [a], [b], []]" by simp}\\
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
   300
@{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
   301
@{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
   302
@{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
   303
@{lemma "replicate 4 a = [a,a,a,a]" by (simp add:eval_nat_numeral)}\\
c8a9eaaa2f59 nat_number -> eval_nat_numeral
nipkow
parents: 39963
diff changeset
   304
@{lemma "[2..<5] = [2,3,4]" by (simp add:eval_nat_numeral)}\\
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
   305
@{lemma "listsum [1,2,3::nat] = 6" by (simp add: listsum_def)}
26771
1d67ab20f358 Added documentation
nipkow
parents: 26749
diff changeset
   306
\end{tabular}}
1d67ab20f358 Added documentation
nipkow
parents: 26749
diff changeset
   307
\caption{Characteristic examples}
1d67ab20f358 Added documentation
nipkow
parents: 26749
diff changeset
   308
\label{fig:Characteristic}
1d67ab20f358 Added documentation
nipkow
parents: 26749
diff changeset
   309
\end{figure}
29927
ae8f42c245b2 Added nitpick attribute, and fixed typo.
blanchet
parents: 29856
diff changeset
   310
Figure~\ref{fig:Characteristic} shows characteristic examples
26771
1d67ab20f358 Added documentation
nipkow
parents: 26749
diff changeset
   311
that should give an intuitive understanding of the above functions.
1d67ab20f358 Added documentation
nipkow
parents: 26749
diff changeset
   312
*}
1d67ab20f358 Added documentation
nipkow
parents: 26749
diff changeset
   313
24616
fac3dd4ade83 sorting
nipkow
parents: 24566
diff changeset
   314
text{* The following simple sort functions are intended for proofs,
fac3dd4ade83 sorting
nipkow
parents: 24566
diff changeset
   315
not for efficient implementations. *}
fac3dd4ade83 sorting
nipkow
parents: 24566
diff changeset
   316
25221
5ded95dda5df append/member: more light-weight way to declare authentic syntax;
wenzelm
parents: 25215
diff changeset
   317
context linorder
5ded95dda5df append/member: more light-weight way to declare authentic syntax;
wenzelm
parents: 25215
diff changeset
   318
begin
5ded95dda5df append/member: more light-weight way to declare authentic syntax;
wenzelm
parents: 25215
diff changeset
   319
39915
ecf97cf3d248 turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents: 39774
diff changeset
   320
inductive sorted :: "'a list \<Rightarrow> bool" where
ecf97cf3d248 turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents: 39774
diff changeset
   321
  Nil [iff]: "sorted []"
ecf97cf3d248 turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents: 39774
diff changeset
   322
| Cons: "\<forall>y\<in>set xs. x \<le> y \<Longrightarrow> sorted xs \<Longrightarrow> sorted (x # xs)"
ecf97cf3d248 turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents: 39774
diff changeset
   323
ecf97cf3d248 turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents: 39774
diff changeset
   324
lemma sorted_single [iff]:
ecf97cf3d248 turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents: 39774
diff changeset
   325
  "sorted [x]"
ecf97cf3d248 turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents: 39774
diff changeset
   326
  by (rule sorted.Cons) auto
ecf97cf3d248 turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents: 39774
diff changeset
   327
ecf97cf3d248 turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents: 39774
diff changeset
   328
lemma sorted_many:
ecf97cf3d248 turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents: 39774
diff changeset
   329
  "x \<le> y \<Longrightarrow> sorted (y # zs) \<Longrightarrow> sorted (x # y # zs)"
ecf97cf3d248 turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents: 39774
diff changeset
   330
  by (rule sorted.Cons) (cases "y # zs" rule: sorted.cases, auto)
ecf97cf3d248 turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents: 39774
diff changeset
   331
ecf97cf3d248 turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents: 39774
diff changeset
   332
lemma sorted_many_eq [simp, code]:
ecf97cf3d248 turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents: 39774
diff changeset
   333
  "sorted (x # y # zs) \<longleftrightarrow> x \<le> y \<and> sorted (y # zs)"
ecf97cf3d248 turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents: 39774
diff changeset
   334
  by (auto intro: sorted_many elim: sorted.cases)
ecf97cf3d248 turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents: 39774
diff changeset
   335
ecf97cf3d248 turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents: 39774
diff changeset
   336
lemma [code]:
ecf97cf3d248 turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents: 39774
diff changeset
   337
  "sorted [] \<longleftrightarrow> True"
ecf97cf3d248 turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents: 39774
diff changeset
   338
  "sorted [x] \<longleftrightarrow> True"
ecf97cf3d248 turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents: 39774
diff changeset
   339
  by simp_all
24697
b37d3980da3c fixed haftmann bug
nipkow
parents: 24657
diff changeset
   340
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
   341
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
   342
"insort_key f x [] = [x]" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   343
"insort_key f x (y#ys) =
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   344
  (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
   345
35195
5163c2d00904 more lemmas about sort(_key)
haftmann
parents: 35115
diff changeset
   346
definition sort_key :: "('b \<Rightarrow> 'a) \<Rightarrow> 'b list \<Rightarrow> 'b list" where
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   347
"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
   348
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
   349
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
   350
"insort_insert_key f x xs =
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
   351
  (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
   352
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
   353
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
   354
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
   355
abbreviation "insort_insert \<equiv> insort_insert_key (\<lambda>x. x)"
35608
db4045d1406e added insort_insert
haftmann
parents: 35603
diff changeset
   356
25221
5ded95dda5df append/member: more light-weight way to declare authentic syntax;
wenzelm
parents: 25215
diff changeset
   357
end
5ded95dda5df append/member: more light-weight way to declare authentic syntax;
wenzelm
parents: 25215
diff changeset
   358
24616
fac3dd4ade83 sorting
nipkow
parents: 24566
diff changeset
   359
23388
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
   360
subsubsection {* List comprehension *}
23192
ec73b9707d48 Moved list comprehension into List
nipkow
parents: 23096
diff changeset
   361
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   362
text{* Input syntax for Haskell-like list comprehension notation.
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   363
Typical example: @{text"[(x,y). x \<leftarrow> xs, y \<leftarrow> ys, x \<noteq> y]"},
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   364
the list of all pairs of distinct elements from @{text xs} and @{text ys}.
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   365
The syntax is as in Haskell, except that @{text"|"} becomes a dot
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   366
(like in Isabelle's set comprehension): @{text"[e. x \<leftarrow> xs, \<dots>]"} rather than
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   367
\verb![e| x <- xs, ...]!.
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   368
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   369
The qualifiers after the dot are
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   370
\begin{description}
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   371
\item[generators] @{text"p \<leftarrow> xs"},
24476
f7ad9fbbeeaa turned list comprehension translations into ML to optimize base case
nipkow
parents: 24471
diff changeset
   372
 where @{text p} is a pattern and @{text xs} an expression of list type, or
f7ad9fbbeeaa turned list comprehension translations into ML to optimize base case
nipkow
parents: 24471
diff changeset
   373
\item[guards] @{text"b"}, where @{text b} is a boolean expression.
f7ad9fbbeeaa turned list comprehension translations into ML to optimize base case
nipkow
parents: 24471
diff changeset
   374
%\item[local bindings] @ {text"let x = e"}.
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   375
\end{description}
23240
7077dc80a14b tuned list comprehension
nipkow
parents: 23235
diff changeset
   376
24476
f7ad9fbbeeaa turned list comprehension translations into ML to optimize base case
nipkow
parents: 24471
diff changeset
   377
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
   378
misunderstandings, the translation into desugared form is not reversed
f7ad9fbbeeaa turned list comprehension translations into ML to optimize base case
nipkow
parents: 24471
diff changeset
   379
upon output. Note that the translation of @{text"[e. x \<leftarrow> xs]"} is
f7ad9fbbeeaa turned list comprehension translations into ML to optimize base case
nipkow
parents: 24471
diff changeset
   380
optmized to @{term"map (%x. e) xs"}.
23240
7077dc80a14b tuned list comprehension
nipkow
parents: 23235
diff changeset
   381
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   382
It is easy to write short list comprehensions which stand for complex
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   383
expressions. During proofs, they may become unreadable (and
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   384
mangled). In such cases it can be advisable to introduce separate
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   385
definitions for the list comprehensions in question.  *}
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   386
46138
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   387
nonterminal lc_qual and lc_quals
23192
ec73b9707d48 Moved list comprehension into List
nipkow
parents: 23096
diff changeset
   388
ec73b9707d48 Moved list comprehension into List
nipkow
parents: 23096
diff changeset
   389
syntax
46138
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   390
  "_listcompr" :: "'a \<Rightarrow> lc_qual \<Rightarrow> lc_quals \<Rightarrow> 'a list"  ("[_ . __")
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   391
  "_lc_gen" :: "'a \<Rightarrow> 'a list \<Rightarrow> lc_qual"  ("_ <- _")
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   392
  "_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
   393
  (*"_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
   394
  "_lc_end" :: "lc_quals" ("]")
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   395
  "_lc_quals" :: "lc_qual \<Rightarrow> lc_quals \<Rightarrow> lc_quals"  (", __")
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   396
  "_lc_abs" :: "'a => 'b list => 'b list"
23192
ec73b9707d48 Moved list comprehension into List
nipkow
parents: 23096
diff changeset
   397
24476
f7ad9fbbeeaa turned list comprehension translations into ML to optimize base case
nipkow
parents: 24471
diff changeset
   398
(* These are easier than ML code but cannot express the optimized
f7ad9fbbeeaa turned list comprehension translations into ML to optimize base case
nipkow
parents: 24471
diff changeset
   399
   translation of [e. p<-xs]
23192
ec73b9707d48 Moved list comprehension into List
nipkow
parents: 23096
diff changeset
   400
translations
46138
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   401
  "[e. p<-xs]" => "concat(map (_lc_abs p [e]) xs)"
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   402
  "_listcompr e (_lc_gen p xs) (_lc_quals Q Qs)"
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   403
   => "concat (map (_lc_abs p (_listcompr e Q Qs)) xs)"
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   404
  "[e. P]" => "if P then [e] else []"
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   405
  "_listcompr e (_lc_test P) (_lc_quals Q Qs)"
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   406
   => "if P then (_listcompr e Q Qs) else []"
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   407
  "_listcompr e (_lc_let b) (_lc_quals Q Qs)"
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   408
   => "_Let b (_listcompr e Q Qs)"
24476
f7ad9fbbeeaa turned list comprehension translations into ML to optimize base case
nipkow
parents: 24471
diff changeset
   409
*)
23240
7077dc80a14b tuned list comprehension
nipkow
parents: 23235
diff changeset
   410
23279
e39dd93161d9 tuned list comprehension, changed filter syntax from : to <-
nipkow
parents: 23246
diff changeset
   411
syntax (xsymbols)
46138
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   412
  "_lc_gen" :: "'a \<Rightarrow> 'a list \<Rightarrow> lc_qual"  ("_ \<leftarrow> _")
23279
e39dd93161d9 tuned list comprehension, changed filter syntax from : to <-
nipkow
parents: 23246
diff changeset
   413
syntax (HTML output)
46138
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   414
  "_lc_gen" :: "'a \<Rightarrow> 'a list \<Rightarrow> lc_qual"  ("_ \<leftarrow> _")
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   415
52143
36ffe23b25f8 syntax translations always depend on context;
wenzelm
parents: 52131
diff changeset
   416
parse_translation {*
46138
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   417
  let
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   418
    val NilC = Syntax.const @{const_syntax Nil};
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   419
    val ConsC = Syntax.const @{const_syntax Cons};
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   420
    val mapC = Syntax.const @{const_syntax map};
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   421
    val concatC = Syntax.const @{const_syntax concat};
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   422
    val IfC = Syntax.const @{const_syntax If};
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   423
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   424
    fun single x = ConsC $ x $ NilC;
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   425
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   426
    fun pat_tr ctxt p e opti = (* %x. case x of p => e | _ => [] *)
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   427
      let
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   428
        (* FIXME proper name context!? *)
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   429
        val x =
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   430
          Free (singleton (Name.variant_list (fold Term.add_free_names [p, e] [])) "x", dummyT);
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   431
        val e = if opti then single e else e;
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   432
        val case1 = Syntax.const @{syntax_const "_case1"} $ p $ e;
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   433
        val case2 =
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   434
          Syntax.const @{syntax_const "_case1"} $
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   435
            Syntax.const @{const_syntax dummy_pattern} $ NilC;
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   436
        val cs = Syntax.const @{syntax_const "_case2"} $ case1 $ case2;
51678
1e33b81c328a allow redundant cases in the list comprehension translation
traytel
parents: 51673
diff changeset
   437
      in Syntax_Trans.abs_tr [x, Case_Translation.case_tr false ctxt [x, cs]] end;
46138
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   438
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   439
    fun abs_tr ctxt p e opti =
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   440
      (case Term_Position.strip_positions p of
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   441
        Free (s, T) =>
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   442
          let
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   443
            val thy = Proof_Context.theory_of ctxt;
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   444
            val s' = Proof_Context.intern_const ctxt s;
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   445
          in
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   446
            if Sign.declared_const thy s'
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   447
            then (pat_tr ctxt p e opti, false)
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   448
            else (Syntax_Trans.abs_tr [p, e], true)
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   449
          end
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   450
      | _ => (pat_tr ctxt p e opti, false));
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   451
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   452
    fun lc_tr ctxt [e, Const (@{syntax_const "_lc_test"}, _) $ b, qs] =
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   453
          let
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   454
            val res =
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   455
              (case qs of
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   456
                Const (@{syntax_const "_lc_end"}, _) => single e
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   457
              | Const (@{syntax_const "_lc_quals"}, _) $ q $ qs => lc_tr ctxt [e, q, qs]);
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   458
          in IfC $ b $ res $ NilC end
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   459
      | lc_tr ctxt
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   460
            [e, Const (@{syntax_const "_lc_gen"}, _) $ p $ es,
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   461
              Const(@{syntax_const "_lc_end"}, _)] =
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   462
          (case abs_tr ctxt p e true of
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   463
            (f, true) => mapC $ f $ es
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   464
          | (f, false) => concatC $ (mapC $ f $ es))
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   465
      | lc_tr ctxt
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   466
            [e, Const (@{syntax_const "_lc_gen"}, _) $ p $ es,
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   467
              Const (@{syntax_const "_lc_quals"}, _) $ q $ qs] =
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   468
          let val e' = lc_tr ctxt [e, q, qs];
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   469
          in concatC $ (mapC $ (fst (abs_tr ctxt p e' false)) $ es) end;
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   470
85f8d8a8c711 improved list comprehension syntax: more careful treatment of position constraints, which enables PIDE markup;
wenzelm
parents: 46133
diff changeset
   471
  in [(@{syntax_const "_listcompr"}, lc_tr)] end
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   472
*}
23279
e39dd93161d9 tuned list comprehension, changed filter syntax from : to <-
nipkow
parents: 23246
diff changeset
   473
51272
9c8d63b4b6be prefer stateless 'ML_val' for tests;
wenzelm
parents: 51173
diff changeset
   474
ML_val {*
42167
7d8cb105373c actually check list comprehension examples;
wenzelm
parents: 42144
diff changeset
   475
  let
7d8cb105373c actually check list comprehension examples;
wenzelm
parents: 42144
diff changeset
   476
    val read = Syntax.read_term @{context};
7d8cb105373c actually check list comprehension examples;
wenzelm
parents: 42144
diff changeset
   477
    fun check s1 s2 = read s1 aconv read s2 orelse error ("Check failed: " ^ quote s1);
7d8cb105373c actually check list comprehension examples;
wenzelm
parents: 42144
diff changeset
   478
  in
7d8cb105373c actually check list comprehension examples;
wenzelm
parents: 42144
diff changeset
   479
    check "[(x,y,z). b]" "if b then [(x, y, z)] else []";
7d8cb105373c actually check list comprehension examples;
wenzelm
parents: 42144
diff changeset
   480
    check "[(x,y,z). x\<leftarrow>xs]" "map (\<lambda>x. (x, y, z)) xs";
7d8cb105373c actually check list comprehension examples;
wenzelm
parents: 42144
diff changeset
   481
    check "[e x y. x\<leftarrow>xs, y\<leftarrow>ys]" "concat (map (\<lambda>x. map (\<lambda>y. e x y) ys) xs)";
7d8cb105373c actually check list comprehension examples;
wenzelm
parents: 42144
diff changeset
   482
    check "[(x,y,z). x<a, x>b]" "if x < a then if b < x then [(x, y, z)] else [] else []";
7d8cb105373c actually check list comprehension examples;
wenzelm
parents: 42144
diff changeset
   483
    check "[(x,y,z). x\<leftarrow>xs, x>b]" "concat (map (\<lambda>x. if b < x then [(x, y, z)] else []) xs)";
7d8cb105373c actually check list comprehension examples;
wenzelm
parents: 42144
diff changeset
   484
    check "[(x,y,z). x<a, x\<leftarrow>xs]" "if x < a then map (\<lambda>x. (x, y, z)) xs else []";
7d8cb105373c actually check list comprehension examples;
wenzelm
parents: 42144
diff changeset
   485
    check "[(x,y). Cons True x \<leftarrow> xs]"
7d8cb105373c actually check list comprehension examples;
wenzelm
parents: 42144
diff changeset
   486
      "concat (map (\<lambda>xa. case xa of [] \<Rightarrow> [] | True # x \<Rightarrow> [(x, y)] | False # x \<Rightarrow> []) xs)";
7d8cb105373c actually check list comprehension examples;
wenzelm
parents: 42144
diff changeset
   487
    check "[(x,y,z). Cons x [] \<leftarrow> xs]"
7d8cb105373c actually check list comprehension examples;
wenzelm
parents: 42144
diff changeset
   488
      "concat (map (\<lambda>xa. case xa of [] \<Rightarrow> [] | [x] \<Rightarrow> [(x, y, z)] | x # aa # lista \<Rightarrow> []) xs)";
7d8cb105373c actually check list comprehension examples;
wenzelm
parents: 42144
diff changeset
   489
    check "[(x,y,z). x<a, x>b, x=d]"
7d8cb105373c actually check list comprehension examples;
wenzelm
parents: 42144
diff changeset
   490
      "if x < a then if b < x then if x = d then [(x, y, z)] else [] else [] else []";
7d8cb105373c actually check list comprehension examples;
wenzelm
parents: 42144
diff changeset
   491
    check "[(x,y,z). x<a, x>b, y\<leftarrow>ys]"
7d8cb105373c actually check list comprehension examples;
wenzelm
parents: 42144
diff changeset
   492
      "if x < a then if b < x then map (\<lambda>y. (x, y, z)) ys else [] else []";
7d8cb105373c actually check list comprehension examples;
wenzelm
parents: 42144
diff changeset
   493
    check "[(x,y,z). x<a, x\<leftarrow>xs,y>b]"
7d8cb105373c actually check list comprehension examples;
wenzelm
parents: 42144
diff changeset
   494
      "if x < a then concat (map (\<lambda>x. if b < y then [(x, y, z)] else []) xs) else []";
7d8cb105373c actually check list comprehension examples;
wenzelm
parents: 42144
diff changeset
   495
    check "[(x,y,z). x<a, x\<leftarrow>xs, y\<leftarrow>ys]"
7d8cb105373c actually check list comprehension examples;
wenzelm
parents: 42144
diff changeset
   496
      "if x < a then concat (map (\<lambda>x. map (\<lambda>y. (x, y, z)) ys) xs) else []";
7d8cb105373c actually check list comprehension examples;
wenzelm
parents: 42144
diff changeset
   497
    check "[(x,y,z). x\<leftarrow>xs, x>b, y<a]"
7d8cb105373c actually check list comprehension examples;
wenzelm
parents: 42144
diff changeset
   498
      "concat (map (\<lambda>x. if b < x then if y < a then [(x, y, z)] else [] else []) xs)";
7d8cb105373c actually check list comprehension examples;
wenzelm
parents: 42144
diff changeset
   499
    check "[(x,y,z). x\<leftarrow>xs, x>b, y\<leftarrow>ys]"
7d8cb105373c actually check list comprehension examples;
wenzelm
parents: 42144
diff changeset
   500
      "concat (map (\<lambda>x. if b < x then map (\<lambda>y. (x, y, z)) ys else []) xs)";
7d8cb105373c actually check list comprehension examples;
wenzelm
parents: 42144
diff changeset
   501
    check "[(x,y,z). x\<leftarrow>xs, y\<leftarrow>ys,y>x]"
7d8cb105373c actually check list comprehension examples;
wenzelm
parents: 42144
diff changeset
   502
      "concat (map (\<lambda>x. concat (map (\<lambda>y. if x < y then [(x, y, z)] else []) ys)) xs)";
7d8cb105373c actually check list comprehension examples;
wenzelm
parents: 42144
diff changeset
   503
    check "[(x,y,z). x\<leftarrow>xs, y\<leftarrow>ys,z\<leftarrow>zs]"
7d8cb105373c actually check list comprehension examples;
wenzelm
parents: 42144
diff changeset
   504
      "concat (map (\<lambda>x. concat (map (\<lambda>y. map (\<lambda>z. (x, y, z)) zs) ys)) xs)"
7d8cb105373c actually check list comprehension examples;
wenzelm
parents: 42144
diff changeset
   505
  end;
7d8cb105373c actually check list comprehension examples;
wenzelm
parents: 42144
diff changeset
   506
*}
7d8cb105373c actually check list comprehension examples;
wenzelm
parents: 42144
diff changeset
   507
35115
446c5063e4fd modernized translations;
wenzelm
parents: 35028
diff changeset
   508
(*
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   509
term "[(x,y). x\<leftarrow>xs, let xx = x+x, y\<leftarrow>ys, y \<noteq> xx]"
23192
ec73b9707d48 Moved list comprehension into List
nipkow
parents: 23096
diff changeset
   510
*)
ec73b9707d48 Moved list comprehension into List
nipkow
parents: 23096
diff changeset
   511
42167
7d8cb105373c actually check list comprehension examples;
wenzelm
parents: 42144
diff changeset
   512
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
   513
ML {*
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   514
(* 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
   515
   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
   516
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   517
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
   518
sig
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51678
diff changeset
   519
  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
   520
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
   521
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   522
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
   523
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
   524
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   525
(* 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
   526
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   527
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
   528
  (case Thm.term_of ct 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
   529
    Const (@{const_name HOL.Ex}, _) $ Abs _ =>
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   530
      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
   531
  | _ => 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
   532
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   533
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
   534
  (case Thm.term_of ct 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
   535
    Const (@{const_name HOL.Ex}, _) $ Abs (_, _, Const (@{const_name HOL.Ex}, _) $ _) =>
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   536
      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
   537
  | _ => 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
   538
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   539
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
   540
  (case Thm.term_of ct 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
   541
    Const (@{const_name Set.Collect}, _) $ Abs _ => Conv.arg_conv (Conv.abs_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
   542
  | _ => 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
   543
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency 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
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
   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
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
   547
  Conv.try_conv
51315
536a5603a138 provide common HOLogic.conj_conv and HOLogic.eq_conv;
wenzelm
parents: 51314
diff changeset
   548
    (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
   549
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency 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
fun right_hand_set_comprehension_conv conv ctxt =
51315
536a5603a138 provide common HOLogic.conj_conv and HOLogic.eq_conv;
wenzelm
parents: 51314
diff changeset
   551
  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
   552
    (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
   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
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency 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
(* 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
   556
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency 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
datatype termlets = If | Case of (typ * int)
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   558
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51678
diff changeset
   559
fun simproc ctxt 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
   560
  let
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency 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
    val set_Nil_I = @{thm trans} OF [@{thm set.simps(1)}, @{thm empty_def}]
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency 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
    val set_singleton = @{lemma "set [a] = {x. x = a}" by simp}
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency 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
    val inst_Collect_mem_eq = @{lemma "set A = {x. x : set A}" by simp}
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   564
    val del_refl_eq = @{lemma "(t = t & P) == P" by simp}
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency 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
    fun mk_set T = Const (@{const_name List.set}, HOLogic.listT T --> HOLogic.mk_setT 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
   566
    fun dest_set (Const (@{const_name List.set}, _) $ xs) = xs
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency 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
    fun dest_singleton_list (Const (@{const_name List.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
   568
          $ t $ (Const (@{const_name List.Nil}, _))) = 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
   569
      | dest_singleton_list t = raise TERM ("dest_singleton_list", [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
   570
    (* We check that one case returns a singleton list and all other cases
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency 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
       return [], and return the index of the one singleton list case *)
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   572
    fun possible_index_of_singleton_case cases =
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency 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
      let
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   574
        fun check (i, case_t) s =
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   575
          (case strip_abs_body case_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
   576
            (Const (@{const_name List.Nil}, _)) => s
53412
01b804df0a30 list_to_set_comprehension: don't crash in case distinctions on datatypes with even number of constructors
traytel
parents: 53374
diff changeset
   577
          | _ => (case s of SOME NONE => SOME (SOME i) | _ => NONE))
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
      in
53412
01b804df0a30 list_to_set_comprehension: don't crash in case distinctions on datatypes with even number of constructors
traytel
parents: 53374
diff changeset
   579
        fold_index check cases (SOME NONE) |> the_default NONE
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
   580
      end
54404
9f0f1152c875 port list comprehension simproc to 'Ctr_Sugar' abstraction
blanchet
parents: 54295
diff changeset
   581
    (* returns (case_expr type index chosen_case constr_name) 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
   582
    fun dest_case case_term =
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency 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
      let
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency 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
        val (case_const, args) = strip_comb case_term
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency 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
      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
   586
        (case try dest_Const case_const 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
   587
          SOME (c, T) =>
54404
9f0f1152c875 port list comprehension simproc to 'Ctr_Sugar' abstraction
blanchet
parents: 54295
diff changeset
   588
            (case Ctr_Sugar.ctr_sugar_of_case ctxt c of
9f0f1152c875 port list comprehension simproc to 'Ctr_Sugar' abstraction
blanchet
parents: 54295
diff changeset
   589
              SOME {ctrs, ...} =>
50422
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   590
                (case possible_index_of_singleton_case (fst (split_last args)) 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
   591
                  SOME i =>
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   592
                    let
54404
9f0f1152c875 port list comprehension simproc to 'Ctr_Sugar' abstraction
blanchet
parents: 54295
diff changeset
   593
                      val constr_names = map (fst o dest_Const) ctrs
50422
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   594
                      val (Ts, _) = strip_type 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
   595
                      val T' = List.last Ts
54404
9f0f1152c875 port list comprehension simproc to 'Ctr_Sugar' abstraction
blanchet
parents: 54295
diff changeset
   596
                    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
   597
                | 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
   598
            | 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
   599
        | 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
   600
      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
   601
    (* returns condition continuing term option *)
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   602
    fun dest_if (Const (@{const_name If}, _) $ cond $ then_t $ Const (@{const_name Nil}, _)) =
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   603
          SOME (cond, then_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
   604
      | dest_if _ = 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
   605
    fun tac _ [] = rtac set_singleton 1 ORELSE rtac inst_Collect_mem_eq 1
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   606
      | tac ctxt (If :: 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
   607
          Splitter.split_tac [@{thm split_if}] 1
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   608
          THEN rtac @{thm conjI} 1
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   609
          THEN rtac @{thm impI} 1
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   610
          THEN Subgoal.FOCUS (fn {prems, context, ...} =>
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   611
            CONVERSION (right_hand_set_comprehension_conv (K
51315
536a5603a138 provide common HOLogic.conj_conv and HOLogic.eq_conv;
wenzelm
parents: 51314
diff changeset
   612
              (HOLogic.conj_conv (Conv.rewr_conv (List.last prems RS @{thm Eq_TrueI})) 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
   613
               then_conv
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   614
               rewr_conv' @{lemma "(True & P) = P" by simp})) context) 1) ctxt 1
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   615
          THEN tac ctxt 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
   616
          THEN rtac @{thm impI} 1
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   617
          THEN Subgoal.FOCUS (fn {prems, context, ...} =>
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   618
              CONVERSION (right_hand_set_comprehension_conv (K
51315
536a5603a138 provide common HOLogic.conj_conv and HOLogic.eq_conv;
wenzelm
parents: 51314
diff changeset
   619
                (HOLogic.conj_conv (Conv.rewr_conv (List.last prems RS @{thm Eq_FalseI})) 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
   620
                 then_conv rewr_conv' @{lemma "(False & P) = False" by simp})) context) 1) ctxt 1
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   621
          THEN rtac set_Nil_I 1
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   622
      | tac ctxt (Case (T, i) :: 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
   623
          let
54404
9f0f1152c875 port list comprehension simproc to 'Ctr_Sugar' abstraction
blanchet
parents: 54295
diff changeset
   624
            val SOME {injects, distincts, case_thms, split, ...} =
9f0f1152c875 port list comprehension simproc to 'Ctr_Sugar' abstraction
blanchet
parents: 54295
diff changeset
   625
              Ctr_Sugar.ctr_sugar_of ctxt (fst (dest_Type 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
   626
          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
   627
            (* do case distinction *)
54404
9f0f1152c875 port list comprehension simproc to 'Ctr_Sugar' abstraction
blanchet
parents: 54295
diff changeset
   628
            Splitter.split_tac [split] 1
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
   629
            THEN EVERY (map_index (fn (i', _) =>
54404
9f0f1152c875 port list comprehension simproc to 'Ctr_Sugar' abstraction
blanchet
parents: 54295
diff changeset
   630
              (if i' < length case_thms - 1 then rtac @{thm conjI} 1 else all_tac)
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
   631
              THEN REPEAT_DETERM (rtac @{thm allI} 1)
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   632
              THEN rtac @{thm impI} 1
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   633
              THEN (if i' = i then
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency 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
                (* continue recursively *)
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency 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
                Subgoal.FOCUS (fn {prems, context, ...} =>
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   636
                  CONVERSION (Thm.eta_conversion then_conv right_hand_set_comprehension_conv (K
51315
536a5603a138 provide common HOLogic.conj_conv and HOLogic.eq_conv;
wenzelm
parents: 51314
diff changeset
   637
                      ((HOLogic.conj_conv
536a5603a138 provide common HOLogic.conj_conv and HOLogic.eq_conv;
wenzelm
parents: 51314
diff changeset
   638
                        (HOLogic.eq_conv Conv.all_conv (rewr_conv' (List.last prems)) then_conv
54404
9f0f1152c875 port list comprehension simproc to 'Ctr_Sugar' abstraction
blanchet
parents: 54295
diff changeset
   639
                          (Conv.try_conv (Conv.rewrs_conv (map mk_meta_eq injects))))
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
   640
                        Conv.all_conv)
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   641
                        then_conv (Conv.try_conv (Conv.rewr_conv del_refl_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
   642
                        then_conv conjunct_assoc_conv)) context
51315
536a5603a138 provide common HOLogic.conj_conv and HOLogic.eq_conv;
wenzelm
parents: 51314
diff changeset
   643
                    then_conv (HOLogic.Trueprop_conv (HOLogic.eq_conv Conv.all_conv (Collect_conv (fn (_, ctxt) =>
50422
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   644
                      Conv.repeat_conv
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   645
                        (all_but_last_exists_conv
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   646
                          (K (rewr_conv'
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   647
                            @{lemma "(EX x. x = t & P x) = P t" by simp})) ctxt)) context)))) 1) ctxt 1
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   648
                THEN tac ctxt 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
   649
              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
   650
                Subgoal.FOCUS (fn {prems, context, ...} =>
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   651
                  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
   652
                    (right_hand_set_comprehension_conv (K
51315
536a5603a138 provide common HOLogic.conj_conv and HOLogic.eq_conv;
wenzelm
parents: 51314
diff changeset
   653
                      (HOLogic.conj_conv
536a5603a138 provide common HOLogic.conj_conv and HOLogic.eq_conv;
wenzelm
parents: 51314
diff changeset
   654
                        ((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
   655
                          (rewr_conv' (List.last prems))) then_conv
54404
9f0f1152c875 port list comprehension simproc to 'Ctr_Sugar' abstraction
blanchet
parents: 54295
diff changeset
   656
                          (Conv.rewrs_conv (map (fn th => th RS @{thm Eq_FalseI}) distincts)))
50422
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   657
                        Conv.all_conv then_conv
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   658
                        (rewr_conv' @{lemma "(False & P) = False" by simp}))) context then_conv
51314
eac4bb5adbf9 just one HOLogic.Trueprop_conv, with regular exception CTERM;
wenzelm
parents: 51272
diff changeset
   659
                      HOLogic.Trueprop_conv
51315
536a5603a138 provide common HOLogic.conj_conv and HOLogic.eq_conv;
wenzelm
parents: 51314
diff changeset
   660
                        (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
   661
                          (Collect_conv (fn (_, 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
   662
                            Conv.repeat_conv
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   663
                              (Conv.bottom_conv
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   664
                                (K (rewr_conv'
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   665
                                  @{lemma "(EX x. P) = P" by simp})) ctxt)) context))) 1) ctxt 1
54404
9f0f1152c875 port list comprehension simproc to 'Ctr_Sugar' abstraction
blanchet
parents: 54295
diff changeset
   666
                THEN rtac set_Nil_I 1)) case_thms)
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
   667
          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
   668
    fun make_inner_eqs bound_vs Tis eqs 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
   669
      (case dest_case t of
54404
9f0f1152c875 port list comprehension simproc to 'Ctr_Sugar' abstraction
blanchet
parents: 54295
diff changeset
   670
        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
   671
          let
52131
366fa32ee2a3 tuned signature;
wenzelm
parents: 52122
diff changeset
   672
            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
   673
            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
   674
            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
   675
            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
   676
              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
   677
                (Const (constr_name, map snd vs ---> T), map Bound (((length vs) - 1) downto 0))
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   678
            val constr_eq = Const (@{const_name HOL.eq}, T --> T --> @{typ bool}) $ constr_t $ x'
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   679
          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
   680
            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
   681
          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
   682
      | 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
   683
          (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
   684
            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
   685
          | 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
   686
            if eqs = [] then NONE (* no rewriting, nothing to be done *)
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   687
            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
   688
              let
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   689
                val Type (@{type_name List.list}, [rT]) = fastype_of1 (map snd 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
   690
                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
   691
                  (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
   692
                    SOME t' =>
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   693
                      Const (@{const_name HOL.eq}, rT --> rT --> @{typ bool}) $
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   694
                        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
   695
                  | 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
   696
                      Const (@{const_name Set.member}, rT --> HOLogic.mk_setT rT --> @{typ bool}) $
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   697
                        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
   698
                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
   699
                  ((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
   700
                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
   701
                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
   702
                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
   703
                  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
   704
                    (rev bound_vs) (fold (curry HOLogic.mk_conj) eqs' 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
   705
                val lhs = term_of redex
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   706
                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
   707
                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
   708
              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
   709
                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
   710
                  ((Goal.prove ctxt [] [] rewrite_rule_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
   711
                    (fn {context, ...} => tac context (rev Tis))) RS @{thm eq_reflection})
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
   712
              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
   713
  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
   714
    make_inner_eqs [] [] [] (dest_set (term_of redex))
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency 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
  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
   716
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency 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
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
   718
*}
41463
edbf0a86fb1c adding simproc to rewrite list comprehensions to set comprehensions; adopting proofs
bulwahn
parents: 41372
diff changeset
   719
edbf0a86fb1c adding simproc to rewrite list comprehensions to set comprehensions; adopting proofs
bulwahn
parents: 41372
diff changeset
   720
simproc_setup list_to_set_comprehension ("set xs") = {* K List_to_Set_Comprehension.simproc *}
edbf0a86fb1c adding simproc to rewrite list comprehensions to set comprehensions; adopting proofs
bulwahn
parents: 41372
diff changeset
   721
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
   722
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
   723
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
   724
hide_const (open) coset
35115
446c5063e4fd modernized translations;
wenzelm
parents: 35028
diff changeset
   725
49948
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
   726
21061
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
   727
subsubsection {* @{const Nil} and @{const Cons} *}
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
   728
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
   729
lemma not_Cons_self [simp]:
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
   730
  "xs \<noteq> x # xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   731
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   732
41697
19890332febc explicit is better than implicit;
wenzelm
parents: 41505
diff changeset
   733
lemma not_Cons_self2 [simp]:
19890332febc explicit is better than implicit;
wenzelm
parents: 41505
diff changeset
   734
  "x # xs \<noteq> xs"
19890332febc explicit is better than implicit;
wenzelm
parents: 41505
diff changeset
   735
by (rule not_Cons_self [symmetric])
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   736
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   737
lemma neq_Nil_conv: "(xs \<noteq> []) = (\<exists>y ys. xs = y # ys)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   738
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   739
53689
705f0b728b1b added and tuned lemmas
nipkow
parents: 53412
diff changeset
   740
lemma tl_Nil: "tl xs = [] \<longleftrightarrow> xs = [] \<or> (EX x. xs = [x])"
705f0b728b1b added and tuned lemmas
nipkow
parents: 53412
diff changeset
   741
by (cases xs) auto
705f0b728b1b added and tuned lemmas
nipkow
parents: 53412
diff changeset
   742
705f0b728b1b added and tuned lemmas
nipkow
parents: 53412
diff changeset
   743
lemma Nil_tl: "[] = tl xs \<longleftrightarrow> xs = [] \<or> (EX x. xs = [x])"
705f0b728b1b added and tuned lemmas
nipkow
parents: 53412
diff changeset
   744
by (cases xs) auto
705f0b728b1b added and tuned lemmas
nipkow
parents: 53412
diff changeset
   745
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   746
lemma length_induct:
21061
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
   747
  "(\<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
   748
by (fact measure_induct)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   749
37289
881fa5012451 induction over non-empty lists
haftmann
parents: 37123
diff changeset
   750
lemma list_nonempty_induct [consumes 1, case_names single cons]:
881fa5012451 induction over non-empty lists
haftmann
parents: 37123
diff changeset
   751
  assumes "xs \<noteq> []"
881fa5012451 induction over non-empty lists
haftmann
parents: 37123
diff changeset
   752
  assumes single: "\<And>x. P [x]"
881fa5012451 induction over non-empty lists
haftmann
parents: 37123
diff changeset
   753
  assumes cons: "\<And>x xs. xs \<noteq> [] \<Longrightarrow> P xs \<Longrightarrow> P (x # xs)"
881fa5012451 induction over non-empty lists
haftmann
parents: 37123
diff changeset
   754
  shows "P xs"
881fa5012451 induction over non-empty lists
haftmann
parents: 37123
diff changeset
   755
using `xs \<noteq> []` proof (induct xs)
881fa5012451 induction over non-empty lists
haftmann
parents: 37123
diff changeset
   756
  case Nil then show ?case by simp
881fa5012451 induction over non-empty lists
haftmann
parents: 37123
diff changeset
   757
next
53374
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53017
diff changeset
   758
  case (Cons x xs)
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53017
diff changeset
   759
  show ?case
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53017
diff changeset
   760
  proof (cases xs)
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53017
diff changeset
   761
    case Nil
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53017
diff changeset
   762
    with single show ?thesis by simp
37289
881fa5012451 induction over non-empty lists
haftmann
parents: 37123
diff changeset
   763
  next
53374
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53017
diff changeset
   764
    case Cons
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53017
diff changeset
   765
    show ?thesis
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53017
diff changeset
   766
    proof (rule cons)
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53017
diff changeset
   767
      from Cons show "xs \<noteq> []" by simp
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53017
diff changeset
   768
      with Cons.hyps show "P xs" .
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53017
diff changeset
   769
    qed
37289
881fa5012451 induction over non-empty lists
haftmann
parents: 37123
diff changeset
   770
  qed
881fa5012451 induction over non-empty lists
haftmann
parents: 37123
diff changeset
   771
qed
881fa5012451 induction over non-empty lists
haftmann
parents: 37123
diff changeset
   772
45714
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
   773
lemma inj_split_Cons: "inj_on (\<lambda>(xs, n). n#xs) X"
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
   774
  by (auto intro!: inj_onI)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   775
49948
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
   776
21061
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
   777
subsubsection {* @{const length} *}
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   778
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   779
text {*
21061
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
   780
  Needs to come before @{text "@"} because of theorem @{text
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
   781
  append_eq_append_conv}.
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   782
*}
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   783
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   784
lemma length_append [simp]: "length (xs @ ys) = length xs + length ys"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   785
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   786
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   787
lemma length_map [simp]: "length (map f xs) = length xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   788
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   789
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   790
lemma length_rev [simp]: "length (rev xs) = length xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   791
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   792
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   793
lemma length_tl [simp]: "length (tl xs) = length xs - 1"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   794
by (cases xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   795
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   796
lemma length_0_conv [iff]: "(length xs = 0) = (xs = [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   797
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   798
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   799
lemma length_greater_0_conv [iff]: "(0 < length xs) = (xs \<noteq> [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   800
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   801
23479
10adbdcdc65b new lemmas
nipkow
parents: 23388
diff changeset
   802
lemma length_pos_if_in_set: "x : set xs \<Longrightarrow> length xs > 0"
10adbdcdc65b new lemmas
nipkow
parents: 23388
diff changeset
   803
by auto
10adbdcdc65b new lemmas
nipkow
parents: 23388
diff changeset
   804
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   805
lemma length_Suc_conv:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   806
"(length xs = Suc n) = (\<exists>y ys. xs = y # ys \<and> length ys = n)"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   807
by (induct xs) auto
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   808
14025
d9b155757dc8 *** empty log message ***
nipkow
parents: 13913
diff changeset
   809
lemma Suc_length_conv:
d9b155757dc8 *** empty log message ***
nipkow
parents: 13913
diff changeset
   810
"(Suc n = length xs) = (\<exists>y ys. xs = y # ys \<and> length ys = n)"
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
   811
apply (induct xs, simp, simp)
14025
d9b155757dc8 *** empty log message ***
nipkow
parents: 13913
diff changeset
   812
apply blast
d9b155757dc8 *** empty log message ***
nipkow
parents: 13913
diff changeset
   813
done
d9b155757dc8 *** empty log message ***
nipkow
parents: 13913
diff changeset
   814
25221
5ded95dda5df append/member: more light-weight way to declare authentic syntax;
wenzelm
parents: 25215
diff changeset
   815
lemma impossible_Cons: "length xs <= length ys ==> xs = x # ys = False"
5ded95dda5df append/member: more light-weight way to declare authentic syntax;
wenzelm
parents: 25215
diff changeset
   816
  by (induct xs) auto
5ded95dda5df append/member: more light-weight way to declare authentic syntax;
wenzelm
parents: 25215
diff changeset
   817
26442
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
   818
lemma list_induct2 [consumes 1, case_names Nil Cons]:
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
   819
  "length xs = length ys \<Longrightarrow> P [] [] \<Longrightarrow>
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
   820
   (\<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
   821
   \<Longrightarrow> P xs ys"
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
   822
proof (induct xs arbitrary: ys)
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
   823
  case Nil then show ?case by simp
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
   824
next
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
   825
  case (Cons x xs ys) then show ?case by (cases ys) simp_all
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
   826
qed
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
   827
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
   828
lemma list_induct3 [consumes 2, case_names Nil Cons]:
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
   829
  "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
   830
   (\<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
   831
   \<Longrightarrow> P xs ys zs"
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
   832
proof (induct xs arbitrary: ys zs)
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
   833
  case Nil then show ?case by simp
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
   834
next
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
   835
  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
   836
    (cases zs, simp_all)
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
   837
qed
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   838
36154
11c6106d7787 Respectfullness and preservation of list_rel
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 35828
diff changeset
   839
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
   840
  "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
   841
   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
   842
   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
   843
   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
   844
proof (induct xs arbitrary: ys zs ws)
11c6106d7787 Respectfullness and preservation of list_rel
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 35828
diff changeset
   845
  case Nil then show ?case by simp
11c6106d7787 Respectfullness and preservation of list_rel
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 35828
diff changeset
   846
next
11c6106d7787 Respectfullness and preservation of list_rel
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 35828
diff changeset
   847
  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
   848
qed
11c6106d7787 Respectfullness and preservation of list_rel
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 35828
diff changeset
   849
22493
db930e490fe5 added another rule for simultaneous induction, and lemmas for zip
krauss
parents: 22422
diff changeset
   850
lemma list_induct2': 
db930e490fe5 added another rule for simultaneous induction, and lemmas for zip
krauss
parents: 22422
diff changeset
   851
  "\<lbrakk> P [] [];
db930e490fe5 added another rule for simultaneous induction, and lemmas for zip
krauss
parents: 22422
diff changeset
   852
  \<And>x xs. P (x#xs) [];
db930e490fe5 added another rule for simultaneous induction, and lemmas for zip
krauss
parents: 22422
diff changeset
   853
  \<And>y ys. P [] (y#ys);
db930e490fe5 added another rule for simultaneous induction, and lemmas for zip
krauss
parents: 22422
diff changeset
   854
   \<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
   855
 \<Longrightarrow> P xs ys"
db930e490fe5 added another rule for simultaneous induction, and lemmas for zip
krauss
parents: 22422
diff changeset
   856
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
   857
22143
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   858
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
   859
by (rule Eq_FalseI) auto
24037
0a41d2ebc0cd proper simproc_setup for "list_neq";
wenzelm
parents: 23983
diff changeset
   860
0a41d2ebc0cd proper simproc_setup for "list_neq";
wenzelm
parents: 23983
diff changeset
   861
simproc_setup list_neq ("(xs::'a list) = ys") = {*
22143
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   862
(*
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   863
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
   864
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
   865
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
   866
*)
24037
0a41d2ebc0cd proper simproc_setup for "list_neq";
wenzelm
parents: 23983
diff changeset
   867
0a41d2ebc0cd proper simproc_setup for "list_neq";
wenzelm
parents: 23983
diff changeset
   868
let
22143
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   869
29856
984191be0357 const_name antiquotations
huffman
parents: 29829
diff changeset
   870
fun len (Const(@{const_name Nil},_)) acc = acc
984191be0357 const_name antiquotations
huffman
parents: 29829
diff changeset
   871
  | len (Const(@{const_name Cons},_) $ _ $ xs) (ts,n) = len xs (ts,n+1)
984191be0357 const_name antiquotations
huffman
parents: 29829
diff changeset
   872
  | len (Const(@{const_name append},_) $ xs $ ys) acc = len xs (len ys acc)
984191be0357 const_name antiquotations
huffman
parents: 29829
diff changeset
   873
  | len (Const(@{const_name rev},_) $ xs) acc = len xs acc
984191be0357 const_name antiquotations
huffman
parents: 29829
diff changeset
   874
  | len (Const(@{const_name map},_) $ _ $ xs) acc = len xs acc
22143
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   875
  | len t (ts,n) = (t::ts,n);
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   876
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51678
diff changeset
   877
val ss = simpset_of @{context};
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51678
diff changeset
   878
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51678
diff changeset
   879
fun list_neq ctxt ct =
22143
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   880
  let
24037
0a41d2ebc0cd proper simproc_setup for "list_neq";
wenzelm
parents: 23983
diff changeset
   881
    val (Const(_,eqT) $ lhs $ rhs) = Thm.term_of ct;
22143
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   882
    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
   883
    fun prove_neq() =
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   884
      let
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   885
        val Type(_,listT::_) = eqT;
22994
02440636214f abstract size function in hologic.ML
haftmann
parents: 22940
diff changeset
   886
        val size = HOLogic.size_const listT;
22143
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   887
        val eq_len = HOLogic.mk_eq (size $ lhs, size $ rhs);
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   888
        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
   889
        val thm = Goal.prove ctxt [] [] neq_len
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51678
diff changeset
   890
          (K (simp_tac (put_simpset ss ctxt) 1));
22633
haftmann
parents: 22551
diff changeset
   891
      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
   892
  in
23214
dc23c062b58c renamed gen_submultiset to submultiset;
wenzelm
parents: 23212
diff changeset
   893
    if m < n andalso submultiset (op aconv) (ls,rs) orelse
dc23c062b58c renamed gen_submultiset to submultiset;
wenzelm
parents: 23212
diff changeset
   894
       n < m andalso submultiset (op aconv) (rs,ls)
22143
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   895
    then prove_neq() else NONE
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   896
  end;
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51678
diff changeset
   897
in K list_neq end;
22143
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   898
*}
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   899
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   900
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15307
diff changeset
   901
subsubsection {* @{text "@"} -- append *}
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   902
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   903
lemma append_assoc [simp]: "(xs @ ys) @ zs = xs @ (ys @ zs)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   904
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   905
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   906
lemma append_Nil2 [simp]: "xs @ [] = xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   907
by (induct xs) auto
3507
157be29ad5ba Improved length = size translation.
nipkow
parents: 3465
diff changeset
   908
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   909
lemma append_is_Nil_conv [iff]: "(xs @ ys = []) = (xs = [] \<and> ys = [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   910
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   911
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   912
lemma Nil_is_append_conv [iff]: "([] = xs @ ys) = (xs = [] \<and> ys = [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   913
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   914
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   915
lemma append_self_conv [iff]: "(xs @ ys = xs) = (ys = [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   916
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   917
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   918
lemma self_append_conv [iff]: "(xs = xs @ ys) = (ys = [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   919
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   920
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53954
diff changeset
   921
lemma append_eq_append_conv [simp]:
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
   922
 "length xs = length ys \<or> length us = length vs
13883
0451e0fb3f22 Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents: 13863
diff changeset
   923
 ==> (xs@us = ys@vs) = (xs=ys \<and> us=vs)"
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
   924
apply (induct xs arbitrary: ys)
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
   925
 apply (case_tac ys, simp, force)
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
   926
apply (case_tac ys, force, simp)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   927
done
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   928
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
   929
lemma append_eq_append_conv2: "(xs @ ys = zs @ ts) =
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
   930
  (EX us. xs = zs @ us & us @ ys = ts | xs @ us = zs & ys = us@ ts)"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
   931
apply (induct xs arbitrary: ys zs ts)
44890
22f665a2e91c new fastforce replacing fastsimp - less confusing name
nipkow
parents: 44635
diff changeset
   932
 apply fastforce
14495
e2a1c31cf6d3 Added append_eq_append_conv2
nipkow
parents: 14402
diff changeset
   933
apply(case_tac zs)
e2a1c31cf6d3 Added append_eq_append_conv2
nipkow
parents: 14402
diff changeset
   934
 apply simp
44890
22f665a2e91c new fastforce replacing fastsimp - less confusing name
nipkow
parents: 44635
diff changeset
   935
apply fastforce
14495
e2a1c31cf6d3 Added append_eq_append_conv2
nipkow
parents: 14402
diff changeset
   936
done
e2a1c31cf6d3 Added append_eq_append_conv2
nipkow
parents: 14402
diff changeset
   937
34910
b23bd3ee4813 same_append_eq / append_same_eq are now used for simplifying induction rules.
berghofe
parents: 34064
diff changeset
   938
lemma same_append_eq [iff, induct_simp]: "(xs @ ys = xs @ zs) = (ys = zs)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   939
by simp
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   940
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   941
lemma append1_eq_conv [iff]: "(xs @ [x] = ys @ [y]) = (xs = ys \<and> x = y)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   942
by simp
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   943
34910
b23bd3ee4813 same_append_eq / append_same_eq are now used for simplifying induction rules.
berghofe
parents: 34064
diff changeset
   944
lemma append_same_eq [iff, induct_simp]: "(ys @ xs = zs @ xs) = (ys = zs)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   945
by simp
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   946
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   947
lemma append_self_conv2 [iff]: "(xs @ ys = ys) = (xs = [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   948
using append_same_eq [of _ _ "[]"] by auto
3507
157be29ad5ba Improved length = size translation.
nipkow
parents: 3465
diff changeset
   949
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   950
lemma self_append_conv2 [iff]: "(ys = xs @ ys) = (xs = [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   951
using append_same_eq [of "[]"] by auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   952
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53954
diff changeset
   953
lemma hd_Cons_tl [simp]: "xs \<noteq> [] ==> hd xs # tl xs = xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   954
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   955
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   956
lemma hd_append: "hd (xs @ ys) = (if xs = [] then hd ys else hd xs)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   957
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   958
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   959
lemma hd_append2 [simp]: "xs \<noteq> [] ==> hd (xs @ ys) = hd xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   960
by (simp add: hd_append split: list.split)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   961
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   962
lemma tl_append: "tl (xs @ ys) = (case xs of [] => tl ys | z#zs => zs @ ys)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   963
by (simp split: list.split)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   964
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   965
lemma tl_append2 [simp]: "xs \<noteq> [] ==> tl (xs @ ys) = tl xs @ ys"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   966
by (simp add: tl_append split: list.split)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   967
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   968
14300
bf8b8c9425c3 *** empty log message ***
nipkow
parents: 14247
diff changeset
   969
lemma Cons_eq_append_conv: "x#xs = ys@zs =
bf8b8c9425c3 *** empty log message ***
nipkow
parents: 14247
diff changeset
   970
 (ys = [] & x#xs = zs | (EX ys'. x#ys' = ys & xs = ys'@zs))"
bf8b8c9425c3 *** empty log message ***
nipkow
parents: 14247
diff changeset
   971
by(cases ys) auto
bf8b8c9425c3 *** empty log message ***
nipkow
parents: 14247
diff changeset
   972
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
   973
lemma append_eq_Cons_conv: "(ys@zs = x#xs) =
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
   974
 (ys = [] & zs = x#xs | (EX ys'. ys = x#ys' & ys'@zs = xs))"
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
   975
by(cases ys) auto
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
   976
14300
bf8b8c9425c3 *** empty log message ***
nipkow
parents: 14247
diff changeset
   977
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   978
text {* Trivial rules for solving @{text "@"}-equations automatically. *}
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   979
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   980
lemma eq_Nil_appendI: "xs = ys ==> xs = [] @ ys"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   981
by simp
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   982
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   983
lemma Cons_eq_appendI:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   984
"[| x # xs1 = ys; xs = xs1 @ zs |] ==> x # xs = ys @ zs"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   985
by (drule sym) simp
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   986
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   987
lemma append_eq_appendI:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   988
"[| xs @ xs1 = zs; ys = xs1 @ us |] ==> xs @ ys = zs @ us"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   989
by (drule sym) simp
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   990
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   991
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   992
text {*
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   993
Simplification procedure for all list equalities.
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   994
Currently only tries to rearrange @{text "@"} to see if
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   995
- both lists end in a singleton list,
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   996
- or both lists end in the same list.
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   997
*}
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   998
43594
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
   999
simproc_setup list_eq ("(xs::'a list) = ys")  = {*
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13366
diff changeset
  1000
  let
43594
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1001
    fun last (cons as Const (@{const_name Cons}, _) $ _ $ xs) =
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1002
          (case xs of Const (@{const_name Nil}, _) => cons | _ => last xs)
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1003
      | last (Const(@{const_name append},_) $ _ $ ys) = last ys
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1004
      | last t = t;
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1005
    
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1006
    fun list1 (Const(@{const_name Cons},_) $ _ $ Const(@{const_name Nil},_)) = true
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1007
      | list1 _ = false;
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1008
    
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1009
    fun butlast ((cons as Const(@{const_name Cons},_) $ x) $ xs) =
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1010
          (case xs of Const (@{const_name Nil}, _) => xs | _ => cons $ butlast xs)
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1011
      | butlast ((app as Const (@{const_name append}, _) $ xs) $ ys) = app $ butlast ys
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1012
      | butlast xs = Const(@{const_name Nil}, fastype_of xs);
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1013
    
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1014
    val rearr_ss =
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51678
diff changeset
  1015
      simpset_of (put_simpset HOL_basic_ss @{context}
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51678
diff changeset
  1016
        addsimps [@{thm append_assoc}, @{thm append_Nil}, @{thm append_Cons}]);
43594
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1017
    
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51678
diff changeset
  1018
    fun list_eq ctxt (F as (eq as Const(_,eqT)) $ lhs $ rhs) =
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13366
diff changeset
  1019
      let
43594
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1020
        val lastl = last lhs and lastr = last rhs;
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1021
        fun rearr conv =
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1022
          let
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1023
            val lhs1 = butlast lhs and rhs1 = butlast rhs;
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1024
            val Type(_,listT::_) = eqT
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1025
            val appT = [listT,listT] ---> listT
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1026
            val app = Const(@{const_name append},appT)
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1027
            val F2 = eq $ (app$lhs1$lastl) $ (app$rhs1$lastr)
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1028
            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
  1029
            val thm = Goal.prove ctxt [] [] eq
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51678
diff changeset
  1030
              (K (simp_tac (put_simpset rearr_ss ctxt) 1));
43594
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1031
          in SOME ((conv RS (thm RS trans)) RS eq_reflection) end;
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1032
      in
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1033
        if list1 lastl andalso list1 lastr then rearr @{thm append1_eq_conv}
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1034
        else if lastl aconv lastr then rearr @{thm append_same_eq}
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1035
        else NONE
ef1ddc59b825 modernized some simproc setup;
wenzelm
parents: 43580
diff changeset
  1036
      end;
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51678
diff changeset
  1037
  in fn _ => fn ctxt => fn ct => list_eq ctxt (term_of ct) end;
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1038
*}
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1039
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1040
49948
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  1041
subsubsection {* @{const map} *}
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1042
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
  1043
lemma hd_map:
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
  1044
  "xs \<noteq> [] \<Longrightarrow> hd (map f xs) = f (hd 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
  1045
  by (cases xs) simp_all
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
  1046
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
  1047
lemma map_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
  1048
  "map f (tl xs) = tl (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
  1049
  by (cases xs) simp_all
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
  1050
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1051
lemma map_ext: "(!!x. x : set xs --> f x = g x) ==> map f xs = map g xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1052
by (induct xs) simp_all
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1053
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1054
lemma map_ident [simp]: "map (\<lambda>x. x) = (\<lambda>xs. xs)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1055
by (rule ext, induct_tac xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1056
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1057
lemma map_append [simp]: "map f (xs @ ys) = map f xs @ map f ys"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1058
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1059
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
  1060
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
  1061
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
  1062
35208
2b9bce05e84b added lemma
nipkow
parents: 35195
diff changeset
  1063
lemma map_comp_map[simp]: "((map f) o (map g)) = map(f o g)"
2b9bce05e84b added lemma
nipkow
parents: 35195
diff changeset
  1064
apply(rule ext)
2b9bce05e84b added lemma
nipkow
parents: 35195
diff changeset
  1065
apply(simp)
2b9bce05e84b added lemma
nipkow
parents: 35195
diff changeset
  1066
done
2b9bce05e84b added lemma
nipkow
parents: 35195
diff changeset
  1067
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1068
lemma rev_map: "rev (map f xs) = map f (rev xs)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1069
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1070
13737
e564c3d2d174 added a few lemmas
nipkow
parents: 13601
diff changeset
  1071
lemma map_eq_conv[simp]: "(map f xs = map g xs) = (!x : set xs. f x = g x)"
e564c3d2d174 added a few lemmas
nipkow
parents: 13601
diff changeset
  1072
by (induct xs) auto
e564c3d2d174 added a few lemmas
nipkow
parents: 13601
diff changeset
  1073
44013
5cfc1c36ae97 moved recdef package to HOL/Library/Old_Recdef.thy
krauss
parents: 43594
diff changeset
  1074
lemma map_cong [fundef_cong]:
40122
1d8ad2ff3e01 dropped (almost) redundant distinct.induct rule; distinct_simps again named distinct.simps
haftmann
parents: 40077
diff changeset
  1075
  "xs = ys \<Longrightarrow> (\<And>x. x \<in> set ys \<Longrightarrow> f x = g x) \<Longrightarrow> map f xs = map g ys"
1d8ad2ff3e01 dropped (almost) redundant distinct.induct rule; distinct_simps again named distinct.simps
haftmann
parents: 40077
diff changeset
  1076
  by simp
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1077
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1078
lemma map_is_Nil_conv [iff]: "(map f xs = []) = (xs = [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1079
by (cases xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1080
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1081
lemma Nil_is_map_conv [iff]: "([] = map f xs) = (xs = [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1082
by (cases xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1083
18447
da548623916a removed or modified some instances of [iff]
paulson
parents: 18423
diff changeset
  1084
lemma map_eq_Cons_conv:
14025
d9b155757dc8 *** empty log message ***
nipkow
parents: 13913
diff changeset
  1085
 "(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
  1086
by (cases xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1087
18447
da548623916a removed or modified some instances of [iff]
paulson
parents: 18423
diff changeset
  1088
lemma Cons_eq_map_conv:
14025
d9b155757dc8 *** empty log message ***
nipkow
parents: 13913
diff changeset
  1089
 "(x#xs = map f ys) = (\<exists>z zs. ys = z#zs \<and> x = f z \<and> xs = map f zs)"
d9b155757dc8 *** empty log message ***
nipkow
parents: 13913
diff changeset
  1090
by (cases ys) auto
d9b155757dc8 *** empty log message ***
nipkow
parents: 13913
diff changeset
  1091
18447
da548623916a removed or modified some instances of [iff]
paulson
parents: 18423
diff changeset
  1092
lemmas map_eq_Cons_D = map_eq_Cons_conv [THEN iffD1]
da548623916a removed or modified some instances of [iff]
paulson
parents: 18423
diff changeset
  1093
lemmas Cons_eq_map_D = Cons_eq_map_conv [THEN iffD1]
da548623916a removed or modified some instances of [iff]
paulson
parents: 18423
diff changeset
  1094
declare map_eq_Cons_D [dest!]  Cons_eq_map_D [dest!]
da548623916a removed or modified some instances of [iff]
paulson
parents: 18423
diff changeset
  1095
14111
993471c762b8 Some new thm (ex_map_conv?)
nipkow
parents: 14099
diff changeset
  1096
lemma ex_map_conv:
993471c762b8 Some new thm (ex_map_conv?)
nipkow
parents: 14099
diff changeset
  1097
  "(EX xs. ys = map f xs) = (ALL y : set ys. EX x. y = f x)"
18447
da548623916a removed or modified some instances of [iff]
paulson
parents: 18423
diff changeset
  1098
by(induct ys, auto simp add: Cons_eq_map_conv)
14111
993471c762b8 Some new thm (ex_map_conv?)
nipkow
parents: 14099
diff changeset
  1099
15110
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1100
lemma map_eq_imp_length_eq:
35510
64d2d54cbf03 Slightly generalised a theorem
paulson
parents: 35296
diff changeset
  1101
  assumes "map f xs = map g ys"
26734
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  1102
  shows "length xs = length ys"
53374
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53017
diff changeset
  1103
  using assms
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53017
diff changeset
  1104
proof (induct ys arbitrary: xs)
26734
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  1105
  case Nil then show ?case by simp
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  1106
next
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  1107
  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
  1108
  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
  1109
  with Cons have "length zs = length ys" by blast
26734
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  1110
  with xs show ?case by simp
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  1111
qed
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  1112
  
15110
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1113
lemma map_inj_on:
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1114
 "[| map f xs = map f ys; inj_on f (set xs Un set ys) |]
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1115
  ==> xs = ys"
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1116
apply(frule map_eq_imp_length_eq)
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1117
apply(rotate_tac -1)
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1118
apply(induct rule:list_induct2)
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1119
 apply simp
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1120
apply(simp)
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1121
apply (blast intro:sym)
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1122
done
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1123
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1124
lemma inj_on_map_eq_map:
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1125
 "inj_on f (set xs Un set ys) \<Longrightarrow> (map f xs = map f ys) = (xs = ys)"
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1126
by(blast dest:map_inj_on)
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1127
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1128
lemma map_injective:
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1129
 "map f xs = map f ys ==> inj f ==> xs = ys"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1130
by (induct ys arbitrary: xs) (auto dest!:injD)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1131
14339
ec575b7bde7a *** empty log message ***
nipkow
parents: 14338
diff changeset
  1132
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
  1133
by(blast dest:map_injective)
ec575b7bde7a *** empty log message ***
nipkow
parents: 14338
diff changeset
  1134
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1135
lemma inj_mapI: "inj f ==> inj (map f)"
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17501
diff changeset
  1136
by (iprover dest: map_injective injD intro: inj_onI)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1137
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1138
lemma inj_mapD: "inj (map f) ==> inj f"
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1139
apply (unfold inj_on_def, clarify)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1140
apply (erule_tac x = "[x]" in ballE)
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1141
 apply (erule_tac x = "[y]" in ballE, simp, blast)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1142
apply blast
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1143
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1144
14339
ec575b7bde7a *** empty log message ***
nipkow
parents: 14338
diff changeset
  1145
lemma inj_map[iff]: "inj (map f) = inj f"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1146
by (blast dest: inj_mapD intro: inj_mapI)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1147
15303
eedbb8d22ca2 added lemmas
nipkow
parents: 15302
diff changeset
  1148
lemma inj_on_mapI: "inj_on f (\<Union>(set ` A)) \<Longrightarrow> inj_on (map f) A"
eedbb8d22ca2 added lemmas
nipkow
parents: 15302
diff changeset
  1149
apply(rule inj_onI)
eedbb8d22ca2 added lemmas
nipkow
parents: 15302
diff changeset
  1150
apply(erule map_inj_on)
eedbb8d22ca2 added lemmas
nipkow
parents: 15302
diff changeset
  1151
apply(blast intro:inj_onI dest:inj_onD)
eedbb8d22ca2 added lemmas
nipkow
parents: 15302
diff changeset
  1152
done
eedbb8d22ca2 added lemmas
nipkow
parents: 15302
diff changeset
  1153
14343
6bc647f472b9 map_idI
kleing
parents: 14339
diff changeset
  1154
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
  1155
by (induct xs, auto)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1156
14402
4201e1916482 moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents: 14395
diff changeset
  1157
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
  1158
by (induct xs) auto
4201e1916482 moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents: 14395
diff changeset
  1159
15110
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1160
lemma map_fst_zip[simp]:
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1161
  "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
  1162
by (induct rule:list_induct2, simp_all)
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1163
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1164
lemma map_snd_zip[simp]:
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1165
  "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
  1166
by (induct rule:list_induct2, simp_all)
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1167
41505
6d19301074cf "enriched_type" replaces less specific "type_lifting"
haftmann
parents: 41463
diff changeset
  1168
enriched_type map: map
47122
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  1169
by (simp_all add: id_def)
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  1170
49948
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  1171
declare map.id [simp]
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  1172
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  1173
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  1174
subsubsection {* @{const rev} *}
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1175
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1176
lemma rev_append [simp]: "rev (xs @ ys) = rev ys @ rev xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1177
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1178
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1179
lemma rev_rev_ident [simp]: "rev (rev xs) = xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1180
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1181
15870
4320bce5873f more on rev
kleing
parents: 15868
diff changeset
  1182
lemma rev_swap: "(rev xs = ys) = (xs = rev ys)"
4320bce5873f more on rev
kleing
parents: 15868
diff changeset
  1183
by auto
4320bce5873f more on rev
kleing
parents: 15868
diff changeset
  1184
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1185
lemma rev_is_Nil_conv [iff]: "(rev xs = []) = (xs = [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1186
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1187
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1188
lemma Nil_is_rev_conv [iff]: "([] = rev xs) = (xs = [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1189
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1190
15870
4320bce5873f more on rev
kleing
parents: 15868
diff changeset
  1191
lemma rev_singleton_conv [simp]: "(rev xs = [x]) = (xs = [x])"
4320bce5873f more on rev
kleing
parents: 15868
diff changeset
  1192
by (cases xs) auto
4320bce5873f more on rev
kleing
parents: 15868
diff changeset
  1193
4320bce5873f more on rev
kleing
parents: 15868
diff changeset
  1194
lemma singleton_rev_conv [simp]: "([x] = rev xs) = (xs = [x])"
4320bce5873f more on rev
kleing
parents: 15868
diff changeset
  1195
by (cases xs) auto
4320bce5873f more on rev
kleing
parents: 15868
diff changeset
  1196
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53954
diff changeset
  1197
lemma rev_is_rev_conv [iff]: "(rev xs = rev ys) = (xs = ys)"
21061
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  1198
apply (induct xs arbitrary: ys, force)
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1199
apply (case_tac ys, simp, force)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1200
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1201
15439
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15426
diff changeset
  1202
lemma inj_on_rev[iff]: "inj_on rev A"
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15426
diff changeset
  1203
by(simp add:inj_on_def)
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15426
diff changeset
  1204
13366
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
  1205
lemma rev_induct [case_names Nil snoc]:
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
  1206
  "[| P []; !!x xs. P xs ==> P (xs @ [x]) |] ==> P xs"
15489
d136af442665 Replaced application of subst by simplesubst in proof of rev_induct
berghofe
parents: 15439
diff changeset
  1207
apply(simplesubst rev_rev_ident[symmetric])
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1208
apply(rule_tac list = "rev xs" in list.induct, simp_all)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1209
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1210
13366
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
  1211
lemma rev_exhaust [case_names Nil snoc]:
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
  1212
  "(xs = [] ==> P) ==>(!!ys y. xs = ys @ [y] ==> P) ==> P"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1213
by (induct xs rule: rev_induct) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1214
13366
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
  1215
lemmas rev_cases = rev_exhaust
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
  1216
18423
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  1217
lemma rev_eq_Cons_iff[iff]: "(rev xs = y#ys) = (xs = rev ys @ [y])"
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  1218
by(rule rev_cases[of xs]) auto
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  1219
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1220
49948
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  1221
subsubsection {* @{const set} *}
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1222
46698
f1dfcf8be88d converting "set [...]" to "{...}" in evaluation results
nipkow
parents: 46669
diff changeset
  1223
declare set.simps [code_post]  --"pretty output"
f1dfcf8be88d converting "set [...]" to "{...}" in evaluation results
nipkow
parents: 46669
diff changeset
  1224
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1225
lemma finite_set [iff]: "finite (set xs)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1226
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1227
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1228
lemma set_append [simp]: "set (xs @ ys) = (set xs \<union> set ys)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1229
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1230
17830
695a2365d32f added hd lemma
nipkow
parents: 17765
diff changeset
  1231
lemma hd_in_set[simp]: "xs \<noteq> [] \<Longrightarrow> hd xs : set xs"
695a2365d32f added hd lemma
nipkow
parents: 17765
diff changeset
  1232
by(cases xs) auto
14099
55d244f3c86d added fold_red, o2l, postfix, some thms
oheimb
parents: 14050
diff changeset
  1233
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1234
lemma set_subset_Cons: "set xs \<subseteq> set (x # xs)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1235
by auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1236
14099
55d244f3c86d added fold_red, o2l, postfix, some thms
oheimb
parents: 14050
diff changeset
  1237
lemma set_ConsD: "y \<in> set (x # xs) \<Longrightarrow> y=x \<or> y \<in> set xs" 
55d244f3c86d added fold_red, o2l, postfix, some thms
oheimb
parents: 14050
diff changeset
  1238
by auto
55d244f3c86d added fold_red, o2l, postfix, some thms
oheimb
parents: 14050
diff changeset
  1239
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1240
lemma set_empty [iff]: "(set xs = {}) = (xs = [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1241
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1242
15245
5a21d9a8f14b Added a few lemmas
nipkow
parents: 15236
diff changeset
  1243
lemma set_empty2[iff]: "({} = set xs) = (xs = [])"
5a21d9a8f14b Added a few lemmas
nipkow
parents: 15236
diff changeset
  1244
by(induct xs) auto
5a21d9a8f14b Added a few lemmas
nipkow
parents: 15236
diff changeset
  1245
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1246
lemma set_rev [simp]: "set (rev xs) = set xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1247
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1248
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1249
lemma set_map [simp]: "set (map f xs) = f`(set xs)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1250
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1251
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1252
lemma set_filter [simp]: "set (filter P xs) = {x. x : set xs \<and> P x}"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1253
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1254
32417
e87d9c78910c tuned code generation for lists
nipkow
parents: 32415
diff changeset
  1255
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
  1256
by (induct j) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1257
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1258
25221
5ded95dda5df append/member: more light-weight way to declare authentic syntax;
wenzelm
parents: 25215
diff changeset
  1259
lemma split_list: "x : set xs \<Longrightarrow> \<exists>ys zs. xs = ys @ x # zs"
18049
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  1260
proof (induct xs)
26073
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1261
  case Nil thus ?case by simp
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1262
next
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1263
  case Cons thus ?case by (auto intro: Cons_eq_appendI)
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1264
qed
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1265
26734
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  1266
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
  1267
  by (auto elim: split_list)
26073
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1268
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1269
lemma split_list_first: "x : set xs \<Longrightarrow> \<exists>ys zs. xs = ys @ x # zs \<and> x \<notin> set ys"
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1270
proof (induct xs)
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1271
  case Nil thus ?case by simp
18049
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  1272
next
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  1273
  case (Cons a xs)
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  1274
  show ?case
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  1275
  proof cases
44890
22f665a2e91c new fastforce replacing fastsimp - less confusing name
nipkow
parents: 44635
diff changeset
  1276
    assume "x = a" thus ?case using Cons by fastforce
18049
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  1277
  next
44890
22f665a2e91c new fastforce replacing fastsimp - less confusing name
nipkow
parents: 44635
diff changeset
  1278
    assume "x \<noteq> a" thus ?case using Cons by(fastforce intro!: Cons_eq_appendI)
26073
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1279
  qed
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1280
qed
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1281
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1282
lemma in_set_conv_decomp_first:
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1283
  "(x : 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
  1284
  by (auto dest!: split_list_first)
26073
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1285
40122
1d8ad2ff3e01 dropped (almost) redundant distinct.induct rule; distinct_simps again named distinct.simps
haftmann
parents: 40077
diff changeset
  1286
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
  1287
proof (induct xs rule: rev_induct)
26073
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1288
  case Nil thus ?case by simp
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1289
next
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1290
  case (snoc a xs)
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1291
  show ?case
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1292
  proof cases
40122
1d8ad2ff3e01 dropped (almost) redundant distinct.induct rule; distinct_simps again named distinct.simps
haftmann
parents: 40077
diff changeset
  1293
    assume "x = a" thus ?case using snoc by (metis List.set.simps(1) emptyE)
26073
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1294
  next
44890
22f665a2e91c new fastforce replacing fastsimp - less confusing name
nipkow
parents: 44635
diff changeset
  1295
    assume "x \<noteq> a" thus ?case using snoc by fastforce
18049
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  1296
  qed
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  1297
qed
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  1298
26073
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1299
lemma in_set_conv_decomp_last:
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1300
  "(x : 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
  1301
  by (auto dest!: split_list_last)
26073
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1302
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1303
lemma split_list_prop: "\<exists>x \<in> set xs. P x \<Longrightarrow> \<exists>ys x zs. xs = ys @ x # zs & P x"
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1304
proof (induct xs)
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1305
  case Nil thus ?case by simp
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1306
next
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1307
  case Cons thus ?case
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1308
    by(simp add:Bex_def)(metis append_Cons append.simps(1))
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1309
qed
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1310
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1311
lemma split_list_propE:
26734
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  1312
  assumes "\<exists>x \<in> set xs. P x"
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  1313
  obtains ys x zs where "xs = ys @ x # zs" and "P x"
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  1314
using split_list_prop [OF assms] by blast
26073
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1315
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1316
lemma split_list_first_prop:
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1317
  "\<exists>x \<in> set xs. P x \<Longrightarrow>
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1318
   \<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
  1319
proof (induct xs)
26073
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1320
  case Nil thus ?case by simp
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1321
next
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1322
  case (Cons x xs)
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1323
  show ?case
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1324
  proof cases
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1325
    assume "P x"
40122
1d8ad2ff3e01 dropped (almost) redundant distinct.induct rule; distinct_simps again named distinct.simps
haftmann
parents: 40077
diff changeset
  1326
    thus ?thesis by simp (metis Un_upper1 contra_subsetD in_set_conv_decomp_first self_append_conv2 set_append)
26073
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1327
  next
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1328
    assume "\<not> P x"
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1329
    hence "\<exists>x\<in>set xs. P x" using Cons(2) by simp
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1330
    thus ?thesis using `\<not> P x` Cons(1) by (metis append_Cons set_ConsD)
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1331
  qed
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1332
qed
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1333
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1334
lemma split_list_first_propE:
26734
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  1335
  assumes "\<exists>x \<in> set xs. P x"
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  1336
  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
  1337
using split_list_first_prop [OF assms] by blast
26073
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1338
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1339
lemma split_list_first_prop_iff:
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1340
  "(\<exists>x \<in> set xs. P x) \<longleftrightarrow>
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1341
   (\<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
  1342
by (rule, erule split_list_first_prop) auto
26073
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1343
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1344
lemma split_list_last_prop:
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1345
  "\<exists>x \<in> set xs. P x \<Longrightarrow>
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1346
   \<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
  1347
proof(induct xs rule:rev_induct)
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1348
  case Nil thus ?case by simp
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1349
next
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1350
  case (snoc x xs)
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1351
  show ?case
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1352
  proof cases
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1353
    assume "P x" thus ?thesis by (metis emptyE set_empty)
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1354
  next
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1355
    assume "\<not> P x"
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1356
    hence "\<exists>x\<in>set xs. P x" using snoc(2) by simp
44890
22f665a2e91c new fastforce replacing fastsimp - less confusing name
nipkow
parents: 44635
diff changeset
  1357
    thus ?thesis using `\<not> P x` snoc(1) by fastforce
26073
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1358
  qed
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1359
qed
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1360
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1361
lemma split_list_last_propE:
26734
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  1362
  assumes "\<exists>x \<in> set xs. P x"
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  1363
  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
  1364
using split_list_last_prop [OF assms] by blast
26073
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1365
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1366
lemma split_list_last_prop_iff:
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1367
  "(\<exists>x \<in> set xs. P x) \<longleftrightarrow>
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1368
   (\<exists>ys x zs. xs = ys@x#zs \<and> P x \<and> (\<forall>z \<in> set zs. \<not> P z))"
26734
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  1369
by (metis split_list_last_prop [where P=P] in_set_conv_decomp)
26073
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1370
0e70d3bd2eb4 more lemmas
nipkow
parents: 25966
diff changeset
  1371
lemma finite_list: "finite A ==> EX xs. set xs = A"
26734
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  1372
  by (erule finite_induct)
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  1373
    (auto simp add: set.simps(2) [symmetric] simp del: set.simps(2))
13508
890d736b93a5 Frederic Blanqui's new "guard" examples
paulson
parents: 13480
diff changeset
  1374
14388
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  1375
lemma card_length: "card (set xs) \<le> length xs"
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  1376
by (induct xs) (auto simp add: card_insert_if)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1377
26442
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1378
lemma set_minus_filter_out:
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1379
  "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
  1380
  by (induct xs) auto
15168
33a08cfc3ae5 new functions for sets of lists
paulson
parents: 15140
diff changeset
  1381
35115
446c5063e4fd modernized translations;
wenzelm
parents: 35028
diff changeset
  1382
49948
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  1383
subsubsection {* @{const filter} *}
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1384
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1385
lemma filter_append [simp]: "filter P (xs @ ys) = filter P xs @ filter P ys"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1386
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1387
15305
0bd9eedaa301 added lemmas
nipkow
parents: 15304
diff changeset
  1388
lemma rev_filter: "rev (filter P xs) = filter P (rev xs)"
0bd9eedaa301 added lemmas
nipkow
parents: 15304
diff changeset
  1389
by (induct xs) simp_all
0bd9eedaa301 added lemmas
nipkow
parents: 15304
diff changeset
  1390
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1391
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
  1392
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1393
16998
e0050191e2d1 Added filter lemma
nipkow
parents: 16973
diff changeset
  1394
lemma length_filter_le [simp]: "length (filter P xs) \<le> length xs"
e0050191e2d1 Added filter lemma
nipkow
parents: 16973
diff changeset
  1395
by (induct xs) (auto simp add: le_SucI)
e0050191e2d1 Added filter lemma
nipkow
parents: 16973
diff changeset
  1396
18423
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  1397
lemma sum_length_filter_compl:
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  1398
  "length(filter P xs) + length(filter (%x. ~P x) xs) = length xs"
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  1399
by(induct xs) simp_all
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  1400
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1401
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
  1402
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1403
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1404
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
  1405
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1406
16998
e0050191e2d1 Added filter lemma
nipkow
parents: 16973
diff changeset
  1407
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
  1408
by (induct xs) simp_all
16998
e0050191e2d1 Added filter lemma
nipkow
parents: 16973
diff changeset
  1409
e0050191e2d1 Added filter lemma
nipkow
parents: 16973
diff changeset
  1410
lemma filter_id_conv: "(filter P xs = xs) = (\<forall>x\<in>set xs. P x)"
e0050191e2d1 Added filter lemma
nipkow
parents: 16973
diff changeset
  1411
apply (induct xs)
e0050191e2d1 Added filter lemma
nipkow
parents: 16973
diff changeset
  1412
 apply auto
e0050191e2d1 Added filter lemma
nipkow
parents: 16973
diff changeset
  1413
apply(cut_tac P=P and xs=xs in length_filter_le)
e0050191e2d1 Added filter lemma
nipkow
parents: 16973
diff changeset
  1414
apply simp
e0050191e2d1 Added filter lemma
nipkow
parents: 16973
diff changeset
  1415
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1416
16965
46697fa536ab added map_filter lemmas
nipkow
parents: 16770
diff changeset
  1417
lemma filter_map:
46697fa536ab added map_filter lemmas
nipkow
parents: 16770
diff changeset
  1418
  "filter P (map f xs) = map f (filter (P o f) xs)"
46697fa536ab added map_filter lemmas
nipkow
parents: 16770
diff changeset
  1419
by (induct xs) simp_all
46697fa536ab added map_filter lemmas
nipkow
parents: 16770
diff changeset
  1420
46697fa536ab added map_filter lemmas
nipkow
parents: 16770
diff changeset
  1421
lemma length_filter_map[simp]:
46697fa536ab added map_filter lemmas
nipkow
parents: 16770
diff changeset
  1422
  "length (filter P (map f xs)) = length(filter (P o f) xs)"
46697fa536ab added map_filter lemmas
nipkow
parents: 16770
diff changeset
  1423
by (simp add:filter_map)
46697fa536ab added map_filter lemmas
nipkow
parents: 16770
diff changeset
  1424
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1425
lemma filter_is_subset [simp]: "set (filter P xs) \<le> set xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1426
by auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1427
15246
0984a2c2868b added and renamed
nipkow
parents: 15245
diff changeset
  1428
lemma length_filter_less:
0984a2c2868b added and renamed
nipkow
parents: 15245
diff changeset
  1429
  "\<lbrakk> x : set xs; ~ P x \<rbrakk> \<Longrightarrow> length(filter P xs) < length xs"
0984a2c2868b added and renamed
nipkow
parents: 15245
diff changeset
  1430
proof (induct xs)
0984a2c2868b added and renamed
nipkow
parents: 15245
diff changeset
  1431
  case Nil thus ?case by simp
0984a2c2868b added and renamed
nipkow
parents: 15245
diff changeset
  1432
next
0984a2c2868b added and renamed
nipkow
parents: 15245
diff changeset
  1433
  case (Cons x xs) thus ?case
0984a2c2868b added and renamed
nipkow
parents: 15245
diff changeset
  1434
    apply (auto split:split_if_asm)
0984a2c2868b added and renamed
nipkow
parents: 15245
diff changeset
  1435
    using length_filter_le[of P xs] apply arith
0984a2c2868b added and renamed
nipkow
parents: 15245
diff changeset
  1436
  done
0984a2c2868b added and renamed
nipkow
parents: 15245
diff changeset
  1437
qed
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1438
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1439
lemma length_filter_conv_card:
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1440
 "length(filter p xs) = card{i. i < length xs & p(xs!i)}"
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1441
proof (induct xs)
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1442
  case Nil thus ?case by simp
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1443
next
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1444
  case (Cons x xs)
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1445
  let ?S = "{i. i < length xs & p(xs!i)}"
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1446
  have fin: "finite ?S" by(fast intro: bounded_nat_set_is_finite)
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1447
  show ?case (is "?l = card ?S'")
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1448
  proof (cases)
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1449
    assume "p x"
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1450
    hence eq: "?S' = insert 0 (Suc ` ?S)"
25162
ad4d5365d9d8 went back to >0
nipkow
parents: 25157
diff changeset
  1451
      by(auto simp: image_def split:nat.split dest:gr0_implies_Suc)
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1452
    have "length (filter p (x # xs)) = Suc(card ?S)"
23388
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  1453
      using Cons `p x` by simp
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1454
    also have "\<dots> = Suc(card(Suc ` ?S))" using fin
44921
58eef4843641 tuned proofs
huffman
parents: 44916
diff changeset
  1455
      by (simp add: card_image)
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1456
    also have "\<dots> = card ?S'" using eq fin
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1457
      by (simp add:card_insert_if) (simp add:image_def)
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1458
    finally show ?thesis .
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1459
  next
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1460
    assume "\<not> p x"
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1461
    hence eq: "?S' = Suc ` ?S"
25162
ad4d5365d9d8 went back to >0
nipkow
parents: 25157
diff changeset
  1462
      by(auto simp add: image_def split:nat.split elim:lessE)
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1463
    have "length (filter p (x # xs)) = card ?S"
23388
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  1464
      using Cons `\<not> p x` by simp
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1465
    also have "\<dots> = card(Suc ` ?S)" using fin
44921
58eef4843641 tuned proofs
huffman
parents: 44916
diff changeset
  1466
      by (simp add: card_image)
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1467
    also have "\<dots> = card ?S'" using eq fin
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1468
      by (simp add:card_insert_if)
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1469
    finally show ?thesis .
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1470
  qed
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1471
qed
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1472
17629
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1473
lemma Cons_eq_filterD:
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1474
 "x#xs = filter P ys \<Longrightarrow>
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1475
  \<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
  1476
  (is "_ \<Longrightarrow> \<exists>us vs. ?P ys us vs")
17629
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1477
proof(induct ys)
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1478
  case Nil thus ?case by simp
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1479
next
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1480
  case (Cons y ys)
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1481
  show ?case (is "\<exists>x. ?Q x")
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1482
  proof cases
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1483
    assume Py: "P y"
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1484
    show ?thesis
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1485
    proof cases
25221
5ded95dda5df append/member: more light-weight way to declare authentic syntax;
wenzelm
parents: 25215
diff changeset
  1486
      assume "x = y"
5ded95dda5df append/member: more light-weight way to declare authentic syntax;
wenzelm
parents: 25215
diff changeset
  1487
      with Py Cons.prems have "?Q []" by simp
5ded95dda5df append/member: more light-weight way to declare authentic syntax;
wenzelm
parents: 25215
diff changeset
  1488
      then show ?thesis ..
17629
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1489
    next
25221
5ded95dda5df append/member: more light-weight way to declare authentic syntax;
wenzelm
parents: 25215
diff changeset
  1490
      assume "x \<noteq> y"
5ded95dda5df append/member: more light-weight way to declare authentic syntax;
wenzelm
parents: 25215
diff changeset
  1491
      with Py Cons.prems show ?thesis by simp
17629
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1492
    qed
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1493
  next
25221
5ded95dda5df append/member: more light-weight way to declare authentic syntax;
wenzelm
parents: 25215
diff changeset
  1494
    assume "\<not> P y"
44890
22f665a2e91c new fastforce replacing fastsimp - less confusing name
nipkow
parents: 44635
diff changeset
  1495
    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
  1496
    then have "?Q (y#us)" by simp
5ded95dda5df append/member: more light-weight way to declare authentic syntax;
wenzelm
parents: 25215
diff changeset
  1497
    then show ?thesis ..
17629
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1498
  qed
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1499
qed
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1500
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1501
lemma filter_eq_ConsD:
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1502
 "filter P ys = x#xs \<Longrightarrow>
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1503
  \<exists>us vs. ys = us @ x # vs \<and> (\<forall>u\<in>set us. \<not> P u) \<and> P x \<and> xs = filter P vs"
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1504
by(rule Cons_eq_filterD) simp
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1505
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1506
lemma filter_eq_Cons_iff:
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1507
 "(filter P ys = x#xs) =
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1508
  (\<exists>us vs. ys = us @ x # vs \<and> (\<forall>u\<in>set us. \<not> P u) \<and> P x \<and> xs = filter P vs)"
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1509
by(auto dest:filter_eq_ConsD)
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1510
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1511
lemma Cons_eq_filter_iff:
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1512
 "(x#xs = filter P ys) =
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1513
  (\<exists>us vs. ys = us @ x # vs \<and> (\<forall>u\<in>set us. \<not> P u) \<and> P x \<and> xs = filter P vs)"
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1514
by(auto dest:Cons_eq_filterD)
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
  1515
44013
5cfc1c36ae97 moved recdef package to HOL/Library/Old_Recdef.thy
krauss
parents: 43594
diff changeset
  1516
lemma filter_cong[fundef_cong]:
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1517
 "xs = ys \<Longrightarrow> (\<And>x. x \<in> set ys \<Longrightarrow> P x = Q x) \<Longrightarrow> filter P xs = filter Q ys"
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1518
apply simp
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1519
apply(erule thin_rl)
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1520
by (induct ys) simp_all
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1521
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1522
26442
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1523
subsubsection {* List partitioning *}
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1524
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1525
primrec partition :: "('a \<Rightarrow> bool) \<Rightarrow>'a list \<Rightarrow> 'a list \<times> 'a list" where
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  1526
"partition P [] = ([], [])" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  1527
"partition P (x # xs) = 
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  1528
  (let (yes, no) = partition P xs
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  1529
   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
  1530
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1531
lemma partition_filter1:
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1532
    "fst (partition P xs) = filter P xs"
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1533
by (induct xs) (auto simp add: Let_def split_def)
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1534
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1535
lemma partition_filter2:
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1536
    "snd (partition P xs) = filter (Not o P) xs"
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1537
by (induct xs) (auto simp add: Let_def split_def)
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1538
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1539
lemma partition_P:
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1540
  assumes "partition P xs = (yes, no)"
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1541
  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
  1542
proof -
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1543
  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
  1544
    by simp_all
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1545
  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
  1546
qed
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1547
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1548
lemma partition_set:
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1549
  assumes "partition P xs = (yes, no)"
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1550
  shows "set yes \<union> set no = set xs"
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1551
proof -
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1552
  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
  1553
    by simp_all
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1554
  then show ?thesis by (auto simp add: partition_filter1 partition_filter2) 
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1555
qed
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1556
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
  1557
lemma partition_filter_conv[simp]:
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  1558
  "partition f xs = (filter f xs,filter (Not o f) xs)"
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  1559
unfolding partition_filter2[symmetric]
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  1560
unfolding partition_filter1[symmetric] by simp
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  1561
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  1562
declare partition.simps[simp del]
26442
57fb6a8b099e restructuring; explicit case names for rule list_induct2
haftmann
parents: 26300
diff changeset
  1563
35115
446c5063e4fd modernized translations;
wenzelm
parents: 35028
diff changeset
  1564
49948
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  1565
subsubsection {* @{const concat} *}
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1566
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1567
lemma concat_append [simp]: "concat (xs @ ys) = concat xs @ concat ys"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1568
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1569
18447
da548623916a removed or modified some instances of [iff]
paulson
parents: 18423
diff changeset
  1570
lemma concat_eq_Nil_conv [simp]: "(concat xss = []) = (\<forall>xs \<in> set xss. xs = [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1571
by (induct xss) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1572
18447
da548623916a removed or modified some instances of [iff]
paulson
parents: 18423
diff changeset
  1573
lemma Nil_eq_concat_conv [simp]: "([] = concat xss) = (\<forall>xs \<in> set xss. xs = [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1574
by (induct xss) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1575
24308
700e745994c1 removed set_concat_map and improved set_concat
nipkow
parents: 24286
diff changeset
  1576
lemma set_concat [simp]: "set (concat xs) = (UN x:set xs. set x)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1577
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1578
24476
f7ad9fbbeeaa turned list comprehension translations into ML to optimize base case
nipkow
parents: 24471
diff changeset
  1579
lemma concat_map_singleton[simp]: "concat(map (%x. [f x]) xs) = map f xs"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  1580
by (induct xs) auto
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  1581
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1582
lemma map_concat: "map f (concat xs) = concat (map (map f) xs)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1583
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1584
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1585
lemma filter_concat: "filter p (concat xs) = concat (map (filter p) xs)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1586
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1587
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1588
lemma rev_concat: "rev (concat xs) = concat (map rev (rev xs))"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1589
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1590
40365
a1456f2e1c9d added two lemmas about injectivity of concat to the list theory
bulwahn
parents: 40304
diff changeset
  1591
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
  1592
proof (induct xs arbitrary: ys)
a1456f2e1c9d added two lemmas about injectivity of concat to the list theory
bulwahn
parents: 40304
diff changeset
  1593
  case (Cons x xs ys)
a1456f2e1c9d added two lemmas about injectivity of concat to the list theory
bulwahn
parents: 40304
diff changeset
  1594
  thus ?case by (cases ys) auto
a1456f2e1c9d added two lemmas about injectivity of concat to the list theory
bulwahn
parents: 40304
diff changeset
  1595
qed (auto)
a1456f2e1c9d added two lemmas about injectivity of concat to the list theory
bulwahn
parents: 40304
diff changeset
  1596
a1456f2e1c9d added two lemmas about injectivity of concat to the list theory
bulwahn
parents: 40304
diff changeset
  1597
lemma concat_injective: "concat xs = concat ys ==> length xs = length ys ==> \<forall>(x, y) \<in> set (zip xs ys). length x = length y ==> xs = ys"
a1456f2e1c9d added two lemmas about injectivity of concat to the list theory
bulwahn
parents: 40304
diff changeset
  1598
by (simp add: concat_eq_concat_iff)
a1456f2e1c9d added two lemmas about injectivity of concat to the list theory
bulwahn
parents: 40304
diff changeset
  1599
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1600
49948
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  1601
subsubsection {* @{const nth} *}
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1602
29827
c82b3e8a4daf code theorems for nth, list_update
haftmann
parents: 29822
diff changeset
  1603
lemma nth_Cons_0 [simp, code]: "(x # xs)!0 = x"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1604
by auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1605
29827
c82b3e8a4daf code theorems for nth, list_update
haftmann
parents: 29822
diff changeset
  1606
lemma nth_Cons_Suc [simp, code]: "(x # xs)!(Suc n) = xs!n"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1607
by auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1608
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1609
declare nth.simps [simp del]
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1610
41842
d8f76db6a207 added simp lemma nth_Cons_pos to List
nipkow
parents: 41697
diff changeset
  1611
lemma nth_Cons_pos[simp]: "0 < n \<Longrightarrow> (x#xs) ! n = xs ! (n - 1)"
d8f76db6a207 added simp lemma nth_Cons_pos to List
nipkow
parents: 41697
diff changeset
  1612
by(auto simp: Nat.gr0_conv_Suc)
d8f76db6a207 added simp lemma nth_Cons_pos to List
nipkow
parents: 41697
diff changeset
  1613
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1614
lemma nth_append:
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1615
  "(xs @ ys)!n = (if n < length xs then xs!n else ys!(n - length xs))"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1616
apply (induct xs arbitrary: n, simp)
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1617
apply (case_tac n, auto)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1618
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1619
14402
4201e1916482 moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents: 14395
diff changeset
  1620
lemma nth_append_length [simp]: "(xs @ x # ys) ! length xs = x"
25221
5ded95dda5df append/member: more light-weight way to declare authentic syntax;
wenzelm
parents: 25215
diff changeset
  1621
by (induct xs) auto
14402
4201e1916482 moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents: 14395
diff changeset
  1622
4201e1916482 moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents: 14395
diff changeset
  1623
lemma nth_append_length_plus[simp]: "(xs @ ys) ! (length xs + n) = ys ! n"
25221
5ded95dda5df append/member: more light-weight way to declare authentic syntax;
wenzelm
parents: 25215
diff changeset
  1624
by (induct xs) auto
14402
4201e1916482 moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents: 14395
diff changeset
  1625
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1626
lemma nth_map [simp]: "n < length xs ==> (map f xs)!n = f(xs!n)"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1627
apply (induct xs arbitrary: n, simp)
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1628
apply (case_tac n, auto)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1629
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1630
45841
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  1631
lemma nth_tl:
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  1632
  assumes "n < length (tl x)" shows "tl x ! n = x ! Suc n"
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  1633
using assms by (induct x) auto
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  1634
18423
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  1635
lemma hd_conv_nth: "xs \<noteq> [] \<Longrightarrow> hd xs = xs!0"
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  1636
by(cases xs) simp_all
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  1637
18049
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  1638
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  1639
lemma list_eq_iff_nth_eq:
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1640
 "(xs = ys) = (length xs = length ys \<and> (ALL i<length xs. xs!i = ys!i))"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1641
apply(induct xs arbitrary: ys)
24632
779fc4fcbf8b metis now available in PreList
paulson
parents: 24617
diff changeset
  1642
 apply force
18049
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  1643
apply(case_tac ys)
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  1644
 apply simp
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  1645
apply(simp add:nth_Cons split:nat.split)apply blast
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  1646
done
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  1647
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1648
lemma set_conv_nth: "set xs = {xs!i | i. i < length xs}"
15251
bb6f072c8d10 converted some induct_tac to induct
paulson
parents: 15246
diff changeset
  1649
apply (induct xs, simp, simp)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1650
apply safe
55415
05f5fdb8d093 renamed 'nat_{case,rec}' to '{case,rec}_nat'
blanchet
parents: 55406
diff changeset
  1651
apply (metis case_nat_0 nth.simps zero_less_Suc)
24632
779fc4fcbf8b metis now available in PreList
paulson
parents: 24617
diff changeset
  1652
apply (metis less_Suc_eq_0_disj nth_Cons_Suc)
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1653
apply (case_tac i, simp)
55415
05f5fdb8d093 renamed 'nat_{case,rec}' to '{case,rec}_nat'
blanchet
parents: 55406
diff changeset
  1654
apply (metis diff_Suc_Suc case_nat_Suc nth.simps zero_less_diff)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1655
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1656
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1657
lemma in_set_conv_nth: "(x \<in> set xs) = (\<exists>i < length xs. xs!i = x)"
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1658
by(auto simp:set_conv_nth)
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1659
51160
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1660
lemma nth_equal_first_eq:
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1661
  assumes "x \<notin> set xs"
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1662
  assumes "n \<le> length xs"
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1663
  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
  1664
proof
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1665
  assume ?lhs
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1666
  show ?rhs
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1667
  proof (rule ccontr)
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1668
    assume "n \<noteq> 0"
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1669
    then have "n > 0" by simp
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1670
    with `?lhs` have "xs ! (n - 1) = x" by simp
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1671
    moreover from `n > 0` `n \<le> length xs` have "n - 1 < length xs" by simp
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1672
    ultimately have "\<exists>i<length xs. xs ! i = x" by auto
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1673
    with `x \<notin> set xs` in_set_conv_nth [of x xs] show False by simp
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1674
  qed
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1675
next
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1676
  assume ?rhs then show ?lhs by simp
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1677
qed
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1678
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1679
lemma nth_non_equal_first_eq:
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1680
  assumes "x \<noteq> y"
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1681
  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
  1682
proof
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1683
  assume "?lhs" with assms have "n > 0" by (cases n) simp_all
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1684
  with `?lhs` show ?rhs by simp
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1685
next
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1686
  assume "?rhs" then show "?lhs" by simp
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1687
qed
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  1688
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1689
lemma list_ball_nth: "[| n < length xs; !x : set xs. P x|] ==> P(xs!n)"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1690
by (auto simp add: set_conv_nth)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1691
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1692
lemma nth_mem [simp]: "n < length xs ==> xs!n : set xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1693
by (auto simp add: set_conv_nth)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1694
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1695
lemma all_nth_imp_all_set:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1696
"[| !i < length xs. P(xs!i); x : set xs|] ==> P x"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1697
by (auto simp add: set_conv_nth)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1698
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1699
lemma all_set_conv_all_nth:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1700
"(\<forall>x \<in> set xs. P x) = (\<forall>i. i < length xs --> P (xs ! i))"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1701
by (auto simp add: set_conv_nth)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1702
25296
c187b7422156 rev_nth
kleing
parents: 25287
diff changeset
  1703
lemma rev_nth:
c187b7422156 rev_nth
kleing
parents: 25287
diff changeset
  1704
  "n < size xs \<Longrightarrow> rev xs ! n = xs ! (length xs - Suc n)"
c187b7422156 rev_nth
kleing
parents: 25287
diff changeset
  1705
proof (induct xs arbitrary: n)
c187b7422156 rev_nth
kleing
parents: 25287
diff changeset
  1706
  case Nil thus ?case by simp
c187b7422156 rev_nth
kleing
parents: 25287
diff changeset
  1707
next
c187b7422156 rev_nth
kleing
parents: 25287
diff changeset
  1708
  case (Cons x xs)
c187b7422156 rev_nth
kleing
parents: 25287
diff changeset
  1709
  hence n: "n < Suc (length xs)" by simp
c187b7422156 rev_nth
kleing
parents: 25287
diff changeset
  1710
  moreover
c187b7422156 rev_nth
kleing
parents: 25287
diff changeset
  1711
  { assume "n < length xs"
53374
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53017
diff changeset
  1712
    with n obtain n' where n': "length xs - n = Suc n'"
25296
c187b7422156 rev_nth
kleing
parents: 25287
diff changeset
  1713
      by (cases "length xs - n", auto)
c187b7422156 rev_nth
kleing
parents: 25287
diff changeset
  1714
    moreover
53374
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53017
diff changeset
  1715
    from n' have "length xs - Suc n = n'" by simp
25296
c187b7422156 rev_nth
kleing
parents: 25287
diff changeset
  1716
    ultimately
c187b7422156 rev_nth
kleing
parents: 25287
diff changeset
  1717
    have "xs ! (length xs - Suc n) = (x # xs) ! (length xs - n)" by simp
c187b7422156 rev_nth
kleing
parents: 25287
diff changeset
  1718
  }
c187b7422156 rev_nth
kleing
parents: 25287
diff changeset
  1719
  ultimately
c187b7422156 rev_nth
kleing
parents: 25287
diff changeset
  1720
  show ?case by (clarsimp simp add: Cons nth_append)
c187b7422156 rev_nth
kleing
parents: 25287
diff changeset
  1721
qed
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1722
31159
bac0d673b6d6 new lemma
nipkow
parents: 31154
diff changeset
  1723
lemma Skolem_list_nth:
bac0d673b6d6 new lemma
nipkow
parents: 31154
diff changeset
  1724
  "(ALL i<k. EX x. P i x) = (EX xs. size xs = k & (ALL i<k. P i (xs!i)))"
bac0d673b6d6 new lemma
nipkow
parents: 31154
diff changeset
  1725
  (is "_ = (EX xs. ?P k xs)")
bac0d673b6d6 new lemma
nipkow
parents: 31154
diff changeset
  1726
proof(induct k)
bac0d673b6d6 new lemma
nipkow
parents: 31154
diff changeset
  1727
  case 0 show ?case by simp
bac0d673b6d6 new lemma
nipkow
parents: 31154
diff changeset
  1728
next
bac0d673b6d6 new lemma
nipkow
parents: 31154
diff changeset
  1729
  case (Suc k)
bac0d673b6d6 new lemma
nipkow
parents: 31154
diff changeset
  1730
  show ?case (is "?L = ?R" is "_ = (EX xs. ?P' xs)")
bac0d673b6d6 new lemma
nipkow
parents: 31154
diff changeset
  1731
  proof
bac0d673b6d6 new lemma
nipkow
parents: 31154
diff changeset
  1732
    assume "?R" thus "?L" using Suc by auto
bac0d673b6d6 new lemma
nipkow
parents: 31154
diff changeset
  1733
  next
bac0d673b6d6 new lemma
nipkow
parents: 31154
diff changeset
  1734
    assume "?L"
bac0d673b6d6 new lemma
nipkow
parents: 31154
diff changeset
  1735
    with Suc obtain x xs where "?P k xs & P k x" by (metis less_Suc_eq)
bac0d673b6d6 new lemma
nipkow
parents: 31154
diff changeset
  1736
    hence "?P'(xs@[x])" by(simp add:nth_append less_Suc_eq)
bac0d673b6d6 new lemma
nipkow
parents: 31154
diff changeset
  1737
    thus "?R" ..
bac0d673b6d6 new lemma
nipkow
parents: 31154
diff changeset
  1738
  qed
bac0d673b6d6 new lemma
nipkow
parents: 31154
diff changeset
  1739
qed
bac0d673b6d6 new lemma
nipkow
parents: 31154
diff changeset
  1740
bac0d673b6d6 new lemma
nipkow
parents: 31154
diff changeset
  1741
49948
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  1742
subsubsection {* @{const list_update} *}
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1743
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1744
lemma length_list_update [simp]: "length(xs[i:=x]) = length xs"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1745
by (induct xs arbitrary: i) (auto split: nat.split)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1746
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1747
lemma nth_list_update:
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1748
"i < length xs==> (xs[i:=x])!j = (if i = j then x else xs!j)"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1749
by (induct xs arbitrary: i j) (auto simp add: nth_Cons split: nat.split)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1750
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1751
lemma nth_list_update_eq [simp]: "i < length xs ==> (xs[i:=x])!i = x"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1752
by (simp add: nth_list_update)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1753
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1754
lemma nth_list_update_neq [simp]: "i \<noteq> j ==> xs[i:=x]!j = xs!j"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1755
by (induct xs arbitrary: i j) (auto simp add: nth_Cons split: nat.split)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1756
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1757
lemma list_update_id[simp]: "xs[i := xs!i] = xs"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1758
by (induct xs arbitrary: i) (simp_all split:nat.splits)
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1759
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1760
lemma list_update_beyond[simp]: "length xs \<le> i \<Longrightarrow> xs[i:=x] = xs"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1761
apply (induct xs arbitrary: i)
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1762
 apply simp
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1763
apply (case_tac i)
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1764
apply simp_all
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1765
done
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1766
31077
28dd6fd3d184 more lemmas
nipkow
parents: 31055
diff changeset
  1767
lemma list_update_nonempty[simp]: "xs[k:=x] = [] \<longleftrightarrow> xs=[]"
28dd6fd3d184 more lemmas
nipkow
parents: 31055
diff changeset
  1768
by(metis length_0_conv length_list_update)
28dd6fd3d184 more lemmas
nipkow
parents: 31055
diff changeset
  1769
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1770
lemma list_update_same_conv:
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1771
"i < length xs ==> (xs[i := x] = xs) = (xs!i = x)"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1772
by (induct xs arbitrary: i) (auto split: nat.split)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1773
14187
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  1774
lemma list_update_append1:
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1775
 "i < size xs \<Longrightarrow> (xs @ ys)[i:=x] = xs[i:=x] @ ys"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1776
apply (induct xs arbitrary: i, simp)
14187
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  1777
apply(simp split:nat.split)
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  1778
done
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  1779
15868
9634b3f9d910 more about list_update
kleing
parents: 15693
diff changeset
  1780
lemma list_update_append:
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1781
  "(xs @ ys) [n:= x] = 
15868
9634b3f9d910 more about list_update
kleing
parents: 15693
diff changeset
  1782
  (if n < length xs then xs[n:= x] @ ys else xs @ (ys [n-length xs:= x]))"
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1783
by (induct xs arbitrary: n) (auto split:nat.splits)
15868
9634b3f9d910 more about list_update
kleing
parents: 15693
diff changeset
  1784
14402
4201e1916482 moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents: 14395
diff changeset
  1785
lemma list_update_length [simp]:
4201e1916482 moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents: 14395
diff changeset
  1786
 "(xs @ x # ys)[length xs := y] = (xs @ y # ys)"
4201e1916482 moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents: 14395
diff changeset
  1787
by (induct xs, auto)
4201e1916482 moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents: 14395
diff changeset
  1788
31264
2662d1cdc51f more lemmas
nipkow
parents: 31258
diff changeset
  1789
lemma map_update: "map f (xs[k:= y]) = (map f xs)[k := f y]"
2662d1cdc51f more lemmas
nipkow
parents: 31258
diff changeset
  1790
by(induct xs arbitrary: k)(auto split:nat.splits)
2662d1cdc51f more lemmas
nipkow
parents: 31258
diff changeset
  1791
2662d1cdc51f more lemmas
nipkow
parents: 31258
diff changeset
  1792
lemma rev_update:
2662d1cdc51f more lemmas
nipkow
parents: 31258
diff changeset
  1793
  "k < length xs \<Longrightarrow> rev (xs[k:= y]) = (rev xs)[length xs - k - 1 := y]"
2662d1cdc51f more lemmas
nipkow
parents: 31258
diff changeset
  1794
by (induct xs arbitrary: k) (auto simp: list_update_append split:nat.splits)
2662d1cdc51f more lemmas
nipkow
parents: 31258
diff changeset
  1795
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1796
lemma update_zip:
31080
21ffc770ebc0 lemmas by Andreas Lochbihler
nipkow
parents: 31077
diff changeset
  1797
  "(zip xs ys)[i:=xy] = zip (xs[i:=fst xy]) (ys[i:=snd xy])"
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1798
by (induct ys arbitrary: i xy xs) (auto, case_tac xs, auto split: nat.split)
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1799
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1800
lemma set_update_subset_insert: "set(xs[i:=x]) <= insert x (set xs)"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1801
by (induct xs arbitrary: i) (auto split: nat.split)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1802
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1803
lemma set_update_subsetI: "[| set xs <= A; x:A |] ==> set(xs[i := x]) <= A"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1804
by (blast dest!: set_update_subset_insert [THEN subsetD])
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1805
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1806
lemma set_update_memI: "n < length xs \<Longrightarrow> x \<in> set (xs[n := x])"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1807
by (induct xs arbitrary: n) (auto split:nat.splits)
15868
9634b3f9d910 more about list_update
kleing
parents: 15693
diff changeset
  1808
31077
28dd6fd3d184 more lemmas
nipkow
parents: 31055
diff changeset
  1809
lemma list_update_overwrite[simp]:
24796
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  1810
  "xs [i := x, i := y] = xs [i := y]"
31077
28dd6fd3d184 more lemmas
nipkow
parents: 31055
diff changeset
  1811
apply (induct xs arbitrary: i) apply simp
28dd6fd3d184 more lemmas
nipkow
parents: 31055
diff changeset
  1812
apply (case_tac i, simp_all)
24796
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  1813
done
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  1814
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  1815
lemma list_update_swap:
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  1816
  "i \<noteq> i' \<Longrightarrow> xs [i := x, i' := x'] = xs [i' := x', i := x]"
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  1817
apply (induct xs arbitrary: i i')
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  1818
apply simp
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  1819
apply (case_tac i, case_tac i')
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  1820
apply auto
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  1821
apply (case_tac i')
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  1822
apply auto
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  1823
done
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  1824
29827
c82b3e8a4daf code theorems for nth, list_update
haftmann
parents: 29822
diff changeset
  1825
lemma list_update_code [code]:
c82b3e8a4daf code theorems for nth, list_update
haftmann
parents: 29822
diff changeset
  1826
  "[][i := y] = []"
c82b3e8a4daf code theorems for nth, list_update
haftmann
parents: 29822
diff changeset
  1827
  "(x # xs)[0 := y] = y # xs"
c82b3e8a4daf code theorems for nth, list_update
haftmann
parents: 29822
diff changeset
  1828
  "(x # xs)[Suc i := y] = x # xs[i := y]"
c82b3e8a4daf code theorems for nth, list_update
haftmann
parents: 29822
diff changeset
  1829
  by simp_all
c82b3e8a4daf code theorems for nth, list_update
haftmann
parents: 29822
diff changeset
  1830
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1831
49948
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  1832
subsubsection {* @{const last} and @{const butlast} *}
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1833
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1834
lemma last_snoc [simp]: "last (xs @ [x]) = x"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1835
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1836
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1837
lemma butlast_snoc [simp]: "butlast (xs @ [x]) = xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1838
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1839
14302
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1840
lemma last_ConsL: "xs = [] \<Longrightarrow> last(x#xs) = x"
44921
58eef4843641 tuned proofs
huffman
parents: 44916
diff changeset
  1841
  by simp
14302
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1842
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1843
lemma last_ConsR: "xs \<noteq> [] \<Longrightarrow> last(x#xs) = last xs"
44921
58eef4843641 tuned proofs
huffman
parents: 44916
diff changeset
  1844
  by simp
14302
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1845
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1846
lemma last_append: "last(xs @ ys) = (if ys = [] then last xs else last ys)"
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1847
by (induct xs) (auto)
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1848
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1849
lemma last_appendL[simp]: "ys = [] \<Longrightarrow> last(xs @ ys) = last xs"
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1850
by(simp add:last_append)
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1851
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1852
lemma last_appendR[simp]: "ys \<noteq> [] \<Longrightarrow> last(xs @ ys) = last ys"
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1853
by(simp add:last_append)
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1854
45841
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  1855
lemma last_tl: "xs = [] \<or> tl xs \<noteq> [] \<Longrightarrow>last (tl xs) = last xs"
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  1856
by (induct xs) simp_all
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  1857
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  1858
lemma butlast_tl: "butlast (tl xs) = tl (butlast xs)"
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  1859
by (induct xs) simp_all
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  1860
17762
478869f444ca new hd/rev/last lemmas
nipkow
parents: 17724
diff changeset
  1861
lemma hd_rev: "xs \<noteq> [] \<Longrightarrow> hd(rev xs) = last xs"
478869f444ca new hd/rev/last lemmas
nipkow
parents: 17724
diff changeset
  1862
by(rule rev_exhaust[of xs]) simp_all
478869f444ca new hd/rev/last lemmas
nipkow
parents: 17724
diff changeset
  1863
478869f444ca new hd/rev/last lemmas
nipkow
parents: 17724
diff changeset
  1864
lemma last_rev: "xs \<noteq> [] \<Longrightarrow> last(rev xs) = hd xs"
478869f444ca new hd/rev/last lemmas
nipkow
parents: 17724
diff changeset
  1865
by(cases xs) simp_all
478869f444ca new hd/rev/last lemmas
nipkow
parents: 17724
diff changeset
  1866
17765
e3cd31bc2e40 added last in set lemma
nipkow
parents: 17762
diff changeset
  1867
lemma last_in_set[simp]: "as \<noteq> [] \<Longrightarrow> last as \<in> set as"
e3cd31bc2e40 added last in set lemma
nipkow
parents: 17762
diff changeset
  1868
by (induct as) auto
17762
478869f444ca new hd/rev/last lemmas
nipkow
parents: 17724
diff changeset
  1869
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1870
lemma length_butlast [simp]: "length (butlast xs) = length xs - 1"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1871
by (induct xs rule: rev_induct) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1872
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1873
lemma butlast_append:
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1874
  "butlast (xs @ ys) = (if ys = [] then butlast xs else xs @ butlast ys)"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1875
by (induct xs arbitrary: ys) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1876
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1877
lemma append_butlast_last_id [simp]:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1878
"xs \<noteq> [] ==> butlast xs @ [last xs] = xs"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1879
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1880
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1881
lemma in_set_butlastD: "x : set (butlast xs) ==> x : set xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1882
by (induct xs) (auto split: split_if_asm)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1883
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1884
lemma in_set_butlast_appendI:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1885
"x : set (butlast xs) | x : set (butlast ys) ==> x : set (butlast (xs @ ys))"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1886
by (auto dest: in_set_butlastD simp add: butlast_append)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1887
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1888
lemma last_drop[simp]: "n < length xs \<Longrightarrow> last (drop n xs) = last xs"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1889
apply (induct xs arbitrary: n)
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1890
 apply simp
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1891
apply (auto split:nat.split)
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1892
done
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1893
45841
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  1894
lemma nth_butlast:
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  1895
  assumes "n < length (butlast xs)" shows "butlast xs ! n = xs ! n"
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  1896
proof (cases xs)
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  1897
  case (Cons y ys)
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  1898
  moreover from assms have "butlast xs ! n = (butlast xs @ [last xs]) ! n"
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  1899
    by (simp add: nth_append)
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  1900
  ultimately show ?thesis using append_butlast_last_id by simp
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  1901
qed simp
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  1902
30128
365ee7319b86 revert some Suc 0 lemmas back to their original forms; added some simp rules for (1::nat)
huffman
parents: 30079
diff changeset
  1903
lemma last_conv_nth: "xs\<noteq>[] \<Longrightarrow> last xs = xs!(length xs - 1)"
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17501
diff changeset
  1904
by(induct xs)(auto simp:neq_Nil_conv)
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17501
diff changeset
  1905
30128
365ee7319b86 revert some Suc 0 lemmas back to their original forms; added some simp rules for (1::nat)
huffman
parents: 30079
diff changeset
  1906
lemma butlast_conv_take: "butlast xs = take (length xs - 1) xs"
26584
46f3b89b2445 move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents: 26480
diff changeset
  1907
by (induct xs, simp, case_tac xs, simp_all)
46f3b89b2445 move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents: 26480
diff changeset
  1908
31077
28dd6fd3d184 more lemmas
nipkow
parents: 31055
diff changeset
  1909
lemma last_list_update:
28dd6fd3d184 more lemmas
nipkow
parents: 31055
diff changeset
  1910
  "xs \<noteq> [] \<Longrightarrow> last(xs[k:=x]) = (if k = size xs - 1 then x else last xs)"
28dd6fd3d184 more lemmas
nipkow
parents: 31055
diff changeset
  1911
by (auto simp: last_conv_nth)
28dd6fd3d184 more lemmas
nipkow
parents: 31055
diff changeset
  1912
28dd6fd3d184 more lemmas
nipkow
parents: 31055
diff changeset
  1913
lemma butlast_list_update:
28dd6fd3d184 more lemmas
nipkow
parents: 31055
diff changeset
  1914
  "butlast(xs[k:=x]) =
28dd6fd3d184 more lemmas
nipkow
parents: 31055
diff changeset
  1915
 (if k = size xs - 1 then butlast xs else (butlast xs)[k:=x])"
28dd6fd3d184 more lemmas
nipkow
parents: 31055
diff changeset
  1916
apply(cases xs rule:rev_cases)
28dd6fd3d184 more lemmas
nipkow
parents: 31055
diff changeset
  1917
apply simp
28dd6fd3d184 more lemmas
nipkow
parents: 31055
diff changeset
  1918
apply(simp add:list_update_append split:nat.splits)
28dd6fd3d184 more lemmas
nipkow
parents: 31055
diff changeset
  1919
done
28dd6fd3d184 more lemmas
nipkow
parents: 31055
diff changeset
  1920
36851
5135adb33157 added lemmas concerning last, butlast, insort
haftmann
parents: 36622
diff changeset
  1921
lemma last_map:
5135adb33157 added lemmas concerning last, butlast, insort
haftmann
parents: 36622
diff changeset
  1922
  "xs \<noteq> [] \<Longrightarrow> last (map f xs) = f (last xs)"
5135adb33157 added lemmas concerning last, butlast, insort
haftmann
parents: 36622
diff changeset
  1923
  by (cases xs rule: rev_cases) simp_all
5135adb33157 added lemmas concerning last, butlast, insort
haftmann
parents: 36622
diff changeset
  1924
5135adb33157 added lemmas concerning last, butlast, insort
haftmann
parents: 36622
diff changeset
  1925
lemma map_butlast:
5135adb33157 added lemmas concerning last, butlast, insort
haftmann
parents: 36622
diff changeset
  1926
  "map f (butlast xs) = butlast (map f xs)"
5135adb33157 added lemmas concerning last, butlast, insort
haftmann
parents: 36622
diff changeset
  1927
  by (induct xs) simp_all
5135adb33157 added lemmas concerning last, butlast, insort
haftmann
parents: 36622
diff changeset
  1928
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  1929
lemma snoc_eq_iff_butlast:
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  1930
  "xs @ [x] = ys \<longleftrightarrow> (ys \<noteq> [] & butlast ys = xs & last ys = x)"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  1931
by (metis append_butlast_last_id append_is_Nil_conv butlast_snoc last_snoc not_Cons_self)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  1932
24796
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  1933
49948
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  1934
subsubsection {* @{const take} and @{const drop} *}
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1935
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1936
lemma take_0 [simp]: "take 0 xs = []"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1937
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1938
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1939
lemma drop_0 [simp]: "drop 0 xs = xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1940
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1941
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1942
lemma take_Suc_Cons [simp]: "take (Suc n) (x # xs) = x # take n xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1943
by simp
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1944
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1945
lemma drop_Suc_Cons [simp]: "drop (Suc n) (x # xs) = drop n xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1946
by simp
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1947
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1948
declare take_Cons [simp del] and drop_Cons [simp del]
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1949
30128
365ee7319b86 revert some Suc 0 lemmas back to their original forms; added some simp rules for (1::nat)
huffman
parents: 30079
diff changeset
  1950
lemma take_1_Cons [simp]: "take 1 (x # xs) = [x]"
365ee7319b86 revert some Suc 0 lemmas back to their original forms; added some simp rules for (1::nat)
huffman
parents: 30079
diff changeset
  1951
  unfolding One_nat_def by simp
365ee7319b86 revert some Suc 0 lemmas back to their original forms; added some simp rules for (1::nat)
huffman
parents: 30079
diff changeset
  1952
365ee7319b86 revert some Suc 0 lemmas back to their original forms; added some simp rules for (1::nat)
huffman
parents: 30079
diff changeset
  1953
lemma drop_1_Cons [simp]: "drop 1 (x # xs) = xs"
365ee7319b86 revert some Suc 0 lemmas back to their original forms; added some simp rules for (1::nat)
huffman
parents: 30079
diff changeset
  1954
  unfolding One_nat_def by simp
365ee7319b86 revert some Suc 0 lemmas back to their original forms; added some simp rules for (1::nat)
huffman
parents: 30079
diff changeset
  1955
15110
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1956
lemma take_Suc: "xs ~= [] ==> take (Suc n) xs = hd xs # take n (tl xs)"
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1957
by(clarsimp simp add:neq_Nil_conv)
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1958
14187
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  1959
lemma drop_Suc: "drop (Suc n) xs = drop n (tl xs)"
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  1960
by(cases xs, simp_all)
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  1961
26584
46f3b89b2445 move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents: 26480
diff changeset
  1962
lemma take_tl: "take n (tl xs) = tl (take (Suc n) xs)"
46f3b89b2445 move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents: 26480
diff changeset
  1963
by (induct xs arbitrary: n) simp_all
46f3b89b2445 move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents: 26480
diff changeset
  1964
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1965
lemma drop_tl: "drop n (tl xs) = tl(drop n xs)"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1966
by(induct xs arbitrary: n, simp_all add:drop_Cons drop_Suc split:nat.split)
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1967
26584
46f3b89b2445 move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents: 26480
diff changeset
  1968
lemma tl_take: "tl (take n xs) = take (n - 1) (tl xs)"
46f3b89b2445 move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents: 26480
diff changeset
  1969
by (cases n, simp, cases xs, auto)
46f3b89b2445 move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents: 26480
diff changeset
  1970
46f3b89b2445 move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents: 26480
diff changeset
  1971
lemma tl_drop: "tl (drop n xs) = drop n (tl xs)"
46f3b89b2445 move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents: 26480
diff changeset
  1972
by (simp only: drop_tl)
46f3b89b2445 move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents: 26480
diff changeset
  1973
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1974
lemma nth_via_drop: "drop n xs = y#ys \<Longrightarrow> xs!n = y"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1975
apply (induct xs arbitrary: n, simp)
14187
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  1976
apply(simp add:drop_Cons nth_Cons split:nat.splits)
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  1977
done
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  1978
13913
b3ed67af04b8 Added take/dropWhile thms
nipkow
parents: 13883
diff changeset
  1979
lemma take_Suc_conv_app_nth:
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1980
  "i < length xs \<Longrightarrow> take (Suc i) xs = take i xs @ [xs!i]"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1981
apply (induct xs arbitrary: i, simp)
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1982
apply (case_tac i, auto)
13913
b3ed67af04b8 Added take/dropWhile thms
nipkow
parents: 13883
diff changeset
  1983
done
b3ed67af04b8 Added take/dropWhile thms
nipkow
parents: 13883
diff changeset
  1984
14591
7be4d5dadf15 lemma drop_Suc_conv_tl added.
mehta
parents: 14589
diff changeset
  1985
lemma drop_Suc_conv_tl:
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1986
  "i < length xs \<Longrightarrow> (xs!i) # (drop (Suc i) xs) = drop i xs"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1987
apply (induct xs arbitrary: i, simp)
14591
7be4d5dadf15 lemma drop_Suc_conv_tl added.
mehta
parents: 14589
diff changeset
  1988
apply (case_tac i, auto)
7be4d5dadf15 lemma drop_Suc_conv_tl added.
mehta
parents: 14589
diff changeset
  1989
done
7be4d5dadf15 lemma drop_Suc_conv_tl added.
mehta
parents: 14589
diff changeset
  1990
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1991
lemma length_take [simp]: "length (take n xs) = min (length xs) n"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1992
by (induct n arbitrary: xs) (auto, case_tac xs, auto)
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1993
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1994
lemma length_drop [simp]: "length (drop n xs) = (length xs - n)"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1995
by (induct n arbitrary: xs) (auto, case_tac xs, auto)
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1996
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1997
lemma take_all [simp]: "length xs <= n ==> take n xs = xs"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1998
by (induct n arbitrary: xs) (auto, case_tac xs, auto)
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  1999
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2000
lemma drop_all [simp]: "length xs <= n ==> drop n xs = []"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2001
by (induct n arbitrary: xs) (auto, case_tac xs, auto)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2002
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2003
lemma take_append [simp]:
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2004
  "take n (xs @ ys) = (take n xs @ take (n - length xs) ys)"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2005
by (induct n arbitrary: xs) (auto, case_tac xs, auto)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2006
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2007
lemma drop_append [simp]:
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2008
  "drop n (xs @ ys) = drop n xs @ drop (n - length xs) ys"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2009
by (induct n arbitrary: xs) (auto, case_tac xs, auto)
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2010
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2011
lemma take_take [simp]: "take n (take m xs) = take (min n m) xs"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2012
apply (induct m arbitrary: xs n, auto)
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  2013
apply (case_tac xs, auto)
15236
f289e8ba2bb3 Proofs needed to be updated because induction now preserves name of
nipkow
parents: 15176
diff changeset
  2014
apply (case_tac n, auto)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2015
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2016
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2017
lemma drop_drop [simp]: "drop n (drop m xs) = drop (n + m) xs"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2018
apply (induct m arbitrary: xs, auto)
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  2019
apply (case_tac xs, auto)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2020
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2021
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2022
lemma take_drop: "take n (drop m xs) = drop m (take (n + m) xs)"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2023
apply (induct m arbitrary: xs n, auto)
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  2024
apply (case_tac xs, auto)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2025
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2026
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2027
lemma drop_take: "drop n (take m xs) = take (m-n) (drop n xs)"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2028
apply(induct xs arbitrary: m n)
14802
e05116289ff9 added drop_take:thm
nipkow
parents: 14770
diff changeset
  2029
 apply simp
e05116289ff9 added drop_take:thm
nipkow
parents: 14770
diff changeset
  2030
apply(simp add: take_Cons drop_Cons split:nat.split)
e05116289ff9 added drop_take:thm
nipkow
parents: 14770
diff changeset
  2031
done
e05116289ff9 added drop_take:thm
nipkow
parents: 14770
diff changeset
  2032
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2033
lemma append_take_drop_id [simp]: "take n xs @ drop n xs = xs"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2034
apply (induct n arbitrary: xs, auto)
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  2035
apply (case_tac xs, auto)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2036
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2037
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2038
lemma take_eq_Nil[simp]: "(take n xs = []) = (n = 0 \<or> xs = [])"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2039
apply(induct xs arbitrary: n)
15110
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  2040
 apply simp
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  2041
apply(simp add:take_Cons split:nat.split)
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  2042
done
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  2043
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2044
lemma drop_eq_Nil[simp]: "(drop n xs = []) = (length xs <= n)"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2045
apply(induct xs arbitrary: n)
15110
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  2046
apply simp
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  2047
apply(simp add:drop_Cons split:nat.split)
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  2048
done
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  2049
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2050
lemma take_map: "take n (map f xs) = map f (take n xs)"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2051
apply (induct n arbitrary: xs, auto)
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  2052
apply (case_tac xs, auto)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2053
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2054
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2055
lemma drop_map: "drop n (map f xs) = map f (drop n xs)"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2056
apply (induct n arbitrary: xs, auto)
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  2057
apply (case_tac xs, auto)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2058
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2059
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2060
lemma rev_take: "rev (take i xs) = drop (length xs - i) (rev xs)"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2061
apply (induct xs arbitrary: i, auto)
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  2062
apply (case_tac i, auto)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2063
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2064
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2065
lemma rev_drop: "rev (drop i xs) = take (length xs - i) (rev xs)"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2066
apply (induct xs arbitrary: i, auto)
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  2067
apply (case_tac i, auto)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2068
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2069
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2070
lemma nth_take [simp]: "i < n ==> (take n xs)!i = xs!i"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2071
apply (induct xs arbitrary: i n, auto)
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  2072
apply (case_tac n, blast)
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  2073
apply (case_tac i, auto)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2074
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2075
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2076
lemma nth_drop [simp]:
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2077
  "n + i <= length xs ==> (drop n xs)!i = xs!(n + i)"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2078
apply (induct n arbitrary: xs i, auto)
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  2079
apply (case_tac xs, auto)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2080
done
3507
157be29ad5ba Improved length = size translation.
nipkow
parents: 3465
diff changeset
  2081
26584
46f3b89b2445 move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents: 26480
diff changeset
  2082
lemma butlast_take:
30128
365ee7319b86 revert some Suc 0 lemmas back to their original forms; added some simp rules for (1::nat)
huffman
parents: 30079
diff changeset
  2083
  "n <= length xs ==> butlast (take n xs) = take (n - 1) xs"
54863
82acc20ded73 prefer more canonical names for lemmas on min/max
haftmann
parents: 54600
diff changeset
  2084
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
  2085
46f3b89b2445 move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents: 26480
diff changeset
  2086
lemma butlast_drop: "butlast (drop n xs) = drop n (butlast xs)"
30128
365ee7319b86 revert some Suc 0 lemmas back to their original forms; added some simp rules for (1::nat)
huffman
parents: 30079
diff changeset
  2087
by (simp add: butlast_conv_take drop_take add_ac)
26584
46f3b89b2445 move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents: 26480
diff changeset
  2088
46f3b89b2445 move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents: 26480
diff changeset
  2089
lemma take_butlast: "n < length xs ==> take n (butlast xs) = take n xs"
54863
82acc20ded73 prefer more canonical names for lemmas on min/max
haftmann
parents: 54600
diff changeset
  2090
by (simp add: butlast_conv_take min.absorb1)
26584
46f3b89b2445 move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents: 26480
diff changeset
  2091
46f3b89b2445 move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents: 26480
diff changeset
  2092
lemma drop_butlast: "drop n (butlast xs) = butlast (drop n xs)"
30128
365ee7319b86 revert some Suc 0 lemmas back to their original forms; added some simp rules for (1::nat)
huffman
parents: 30079
diff changeset
  2093
by (simp add: butlast_conv_take drop_take add_ac)
26584
46f3b89b2445 move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents: 26480
diff changeset
  2094
46500
0196966d6d2d removing unnecessary premises in theorems of List theory
bulwahn
parents: 46448
diff changeset
  2095
lemma hd_drop_conv_nth: "n < length xs \<Longrightarrow> hd(drop n xs) = xs!n"
18423
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  2096
by(simp add: hd_conv_nth)
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  2097
35248
e64950874224 added lemma
nipkow
parents: 35217
diff changeset
  2098
lemma set_take_subset_set_take:
e64950874224 added lemma
nipkow
parents: 35217
diff changeset
  2099
  "m <= n \<Longrightarrow> set(take m xs) <= set(take n xs)"
41463
edbf0a86fb1c adding simproc to rewrite list comprehensions to set comprehensions; adopting proofs
bulwahn
parents: 41372
diff changeset
  2100
apply (induct xs arbitrary: m n)
edbf0a86fb1c adding simproc to rewrite list comprehensions to set comprehensions; adopting proofs
bulwahn
parents: 41372
diff changeset
  2101
apply simp
edbf0a86fb1c adding simproc to rewrite list comprehensions to set comprehensions; adopting proofs
bulwahn
parents: 41372
diff changeset
  2102
apply (case_tac n)
edbf0a86fb1c adding simproc to rewrite list comprehensions to set comprehensions; adopting proofs
bulwahn
parents: 41372
diff changeset
  2103
apply (auto simp: take_Cons)
edbf0a86fb1c adding simproc to rewrite list comprehensions to set comprehensions; adopting proofs
bulwahn
parents: 41372
diff changeset
  2104
done
35248
e64950874224 added lemma
nipkow
parents: 35217
diff changeset
  2105
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2106
lemma set_take_subset: "set(take n xs) \<subseteq> set xs"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2107
by(induct xs arbitrary: n)(auto simp:take_Cons split:nat.split)
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2108
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2109
lemma set_drop_subset: "set(drop n xs) \<subseteq> set xs"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2110
by(induct xs arbitrary: n)(auto simp:drop_Cons split:nat.split)
14025
d9b155757dc8 *** empty log message ***
nipkow
parents: 13913
diff changeset
  2111
35248
e64950874224 added lemma
nipkow
parents: 35217
diff changeset
  2112
lemma set_drop_subset_set_drop:
e64950874224 added lemma
nipkow
parents: 35217
diff changeset
  2113
  "m >= n \<Longrightarrow> set(drop m xs) <= set(drop n xs)"
e64950874224 added lemma
nipkow
parents: 35217
diff changeset
  2114
apply(induct xs arbitrary: m n)
e64950874224 added lemma
nipkow
parents: 35217
diff changeset
  2115
apply(auto simp:drop_Cons split:nat.split)
e64950874224 added lemma
nipkow
parents: 35217
diff changeset
  2116
apply (metis set_drop_subset subset_iff)
e64950874224 added lemma
nipkow
parents: 35217
diff changeset
  2117
done
e64950874224 added lemma
nipkow
parents: 35217
diff changeset
  2118
14187
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  2119
lemma in_set_takeD: "x : set(take n xs) \<Longrightarrow> x : set xs"
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  2120
using set_take_subset by fast
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  2121
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  2122
lemma in_set_dropD: "x : set(drop n xs) \<Longrightarrow> x : set xs"
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  2123
using set_drop_subset by fast
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  2124
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2125
lemma append_eq_conv_conj:
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2126
  "(xs @ ys = zs) = (xs = take (length xs) zs \<and> ys = drop (length xs) zs)"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2127
apply (induct xs arbitrary: zs, simp, clarsimp)
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  2128
apply (case_tac zs, auto)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2129
done
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2130
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2131
lemma take_add: 
42713
276c8cbeb5d2 removed assumption from lemma List.take_add
noschinl
parents: 42411
diff changeset
  2132
  "take (i+j) xs = take i xs @ take j (drop i xs)"
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2133
apply (induct xs arbitrary: i, auto) 
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2134
apply (case_tac i, simp_all)
14050
826037db30cd new theorem
paulson
parents: 14025
diff changeset
  2135
done
826037db30cd new theorem
paulson
parents: 14025
diff changeset
  2136
14300
bf8b8c9425c3 *** empty log message ***
nipkow
parents: 14247
diff changeset
  2137
lemma append_eq_append_conv_if:
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52435
diff changeset
  2138
 "(xs\<^sub>1 @ xs\<^sub>2 = 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
  2139
  (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
  2140
   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
  2141
   else take (size ys\<^sub>1) xs\<^sub>1 = ys\<^sub>1 \<and> drop (size ys\<^sub>1) xs\<^sub>1 @ xs\<^sub>2 = ys\<^sub>2)"
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52435
diff changeset
  2142
apply(induct xs\<^sub>1 arbitrary: ys\<^sub>1)
14300
bf8b8c9425c3 *** empty log message ***
nipkow
parents: 14247
diff changeset
  2143
 apply simp
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52435
diff changeset
  2144
apply(case_tac ys\<^sub>1)
14300
bf8b8c9425c3 *** empty log message ***
nipkow
parents: 14247
diff changeset
  2145
apply simp_all
bf8b8c9425c3 *** empty log message ***
nipkow
parents: 14247
diff changeset
  2146
done
bf8b8c9425c3 *** empty log message ***
nipkow
parents: 14247
diff changeset
  2147
15110
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  2148
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
  2149
  "n < length xs \<Longrightarrow> take n xs @ [hd (drop n xs)] = take (Suc n) xs"
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2150
apply(induct xs arbitrary: n)
15110
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  2151
apply simp
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  2152
apply(simp add:drop_Cons split:nat.split)
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  2153
done
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  2154
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2155
lemma id_take_nth_drop:
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2156
 "i < length xs \<Longrightarrow> xs = take i xs @ xs!i # drop (Suc i) xs" 
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2157
proof -
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2158
  assume si: "i < length xs"
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2159
  hence "xs = take (Suc i) xs @ drop (Suc i) xs" by auto
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2160
  moreover
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2161
  from si have "take (Suc i) xs = take i xs @ [xs!i]"
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2162
    apply (rule_tac take_Suc_conv_app_nth) by arith
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2163
  ultimately show ?thesis by auto
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2164
qed
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2165
  
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2166
lemma upd_conv_take_nth_drop:
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2167
 "i < length xs \<Longrightarrow> xs[i:=a] = take i xs @ a # drop (Suc i) xs"
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2168
proof -
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2169
  assume i: "i < length xs"
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2170
  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
  2171
    by(rule arg_cong[OF id_take_nth_drop[OF i]])
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2172
  also have "\<dots> = take i xs @ a # drop (Suc i) xs"
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2173
    using i by (simp add: list_update_append)
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2174
  finally show ?thesis .
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2175
qed
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2176
24796
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  2177
lemma nth_drop':
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  2178
  "i < length xs \<Longrightarrow> xs ! i # drop (Suc i) xs = drop i xs"
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  2179
apply (induct i arbitrary: xs)
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  2180
apply (simp add: neq_Nil_conv)
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  2181
apply (erule exE)+
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  2182
apply simp
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  2183
apply (case_tac xs)
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  2184
apply simp_all
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  2185
done
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  2186
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2187
49948
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  2188
subsubsection {* @{const takeWhile} and @{const dropWhile} *}
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2189
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
  2190
lemma length_takeWhile_le: "length (takeWhile P xs) \<le> length xs"
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2191
  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
  2192
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2193
lemma takeWhile_dropWhile_id [simp]: "takeWhile P xs @ dropWhile P xs = xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2194
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2195
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2196
lemma takeWhile_append1 [simp]:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2197
"[| x:set xs; ~P(x)|] ==> takeWhile P (xs @ ys) = takeWhile P xs"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2198
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2199
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2200
lemma takeWhile_append2 [simp]:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2201
"(!!x. x : set xs ==> P x) ==> takeWhile P (xs @ ys) = xs @ takeWhile P ys"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2202
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2203
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2204
lemma takeWhile_tail: "\<not> P x ==> takeWhile P (xs @ (x#l)) = takeWhile P xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2205
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2206
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
  2207
lemma takeWhile_nth: "j < length (takeWhile P xs) \<Longrightarrow> takeWhile P xs ! j = xs ! j"
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2208
apply (subst (3) takeWhile_dropWhile_id[symmetric]) unfolding nth_append by auto
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2209
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2210
lemma dropWhile_nth: "j < length (dropWhile P xs) \<Longrightarrow> dropWhile P xs ! j = xs ! (j + length (takeWhile P xs))"
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2211
apply (subst (3) takeWhile_dropWhile_id[symmetric]) unfolding nth_append by auto
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2212
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2213
lemma length_dropWhile_le: "length (dropWhile P xs) \<le> length xs"
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2214
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
  2215
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2216
lemma dropWhile_append1 [simp]:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2217
"[| x : set xs; ~P(x)|] ==> dropWhile P (xs @ ys) = (dropWhile P xs)@ys"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2218
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2219
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2220
lemma dropWhile_append2 [simp]:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2221
"(!!x. x:set xs ==> P(x)) ==> dropWhile P (xs @ ys) = dropWhile P ys"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2222
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2223
45841
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  2224
lemma dropWhile_append3:
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  2225
  "\<not> P y \<Longrightarrow>dropWhile P (xs @ y # ys) = dropWhile P xs @ y # ys"
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  2226
by (induct xs) auto
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  2227
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  2228
lemma dropWhile_last:
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  2229
  "x \<in> set xs \<Longrightarrow> \<not> P x \<Longrightarrow> last (dropWhile P xs) = last xs"
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  2230
by (auto simp add: dropWhile_append3 in_set_conv_decomp)
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  2231
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  2232
lemma set_dropWhileD: "x \<in> set (dropWhile P xs) \<Longrightarrow> x \<in> set xs"
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  2233
by (induct xs) (auto split: split_if_asm)
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  2234
23971
e6d505d5b03d renamed lemma "set_take_whileD" to "set_takeWhileD"
krauss
parents: 23740
diff changeset
  2235
lemma set_takeWhileD: "x : set (takeWhile P xs) ==> x : set xs \<and> P x"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2236
by (induct xs) (auto split: split_if_asm)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2237
13913
b3ed67af04b8 Added take/dropWhile thms
nipkow
parents: 13883
diff changeset
  2238
lemma takeWhile_eq_all_conv[simp]:
b3ed67af04b8 Added take/dropWhile thms
nipkow
parents: 13883
diff changeset
  2239
 "(takeWhile P xs = xs) = (\<forall>x \<in> set xs. P x)"
b3ed67af04b8 Added take/dropWhile thms
nipkow
parents: 13883
diff changeset
  2240
by(induct xs, auto)
b3ed67af04b8 Added take/dropWhile thms
nipkow
parents: 13883
diff changeset
  2241
b3ed67af04b8 Added take/dropWhile thms
nipkow
parents: 13883
diff changeset
  2242
lemma dropWhile_eq_Nil_conv[simp]:
b3ed67af04b8 Added take/dropWhile thms
nipkow
parents: 13883
diff changeset
  2243
 "(dropWhile P xs = []) = (\<forall>x \<in> set xs. P x)"
b3ed67af04b8 Added take/dropWhile thms
nipkow
parents: 13883
diff changeset
  2244
by(induct xs, auto)
b3ed67af04b8 Added take/dropWhile thms
nipkow
parents: 13883
diff changeset
  2245
b3ed67af04b8 Added take/dropWhile thms
nipkow
parents: 13883
diff changeset
  2246
lemma dropWhile_eq_Cons_conv:
b3ed67af04b8 Added take/dropWhile thms
nipkow
parents: 13883
diff changeset
  2247
 "(dropWhile P xs = y#ys) = (xs = takeWhile P xs @ y # ys & \<not> P y)"
b3ed67af04b8 Added take/dropWhile thms
nipkow
parents: 13883
diff changeset
  2248
by(induct xs, auto)
b3ed67af04b8 Added take/dropWhile thms
nipkow
parents: 13883
diff changeset
  2249
31077
28dd6fd3d184 more lemmas
nipkow
parents: 31055
diff changeset
  2250
lemma distinct_takeWhile[simp]: "distinct xs ==> distinct (takeWhile P xs)"
28dd6fd3d184 more lemmas
nipkow
parents: 31055
diff changeset
  2251
by (induct xs) (auto dest: set_takeWhileD)
28dd6fd3d184 more lemmas
nipkow
parents: 31055
diff changeset
  2252
28dd6fd3d184 more lemmas
nipkow
parents: 31055
diff changeset
  2253
lemma distinct_dropWhile[simp]: "distinct xs ==> distinct (dropWhile P xs)"
28dd6fd3d184 more lemmas
nipkow
parents: 31055
diff changeset
  2254
by (induct xs) auto
28dd6fd3d184 more lemmas
nipkow
parents: 31055
diff changeset
  2255
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
  2256
lemma takeWhile_map: "takeWhile P (map f xs) = map f (takeWhile (P \<circ> f) xs)"
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2257
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
  2258
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2259
lemma dropWhile_map: "dropWhile P (map f xs) = map f (dropWhile (P \<circ> f) xs)"
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2260
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
  2261
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2262
lemma takeWhile_eq_take: "takeWhile P xs = take (length (takeWhile P xs)) xs"
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2263
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
  2264
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2265
lemma dropWhile_eq_drop: "dropWhile P xs = drop (length (takeWhile P xs)) xs"
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2266
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
  2267
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2268
lemma hd_dropWhile:
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2269
  "dropWhile P xs \<noteq> [] \<Longrightarrow> \<not> P (hd (dropWhile P xs))"
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2270
using assms by (induct xs) auto
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2271
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2272
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
  2273
  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
  2274
  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
  2275
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
  2276
  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
  2277
    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
  2278
  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
  2279
    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
  2280
  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
  2281
    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
  2282
    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
  2283
  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
  2284
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
  2285
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2286
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
  2287
  "\<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
  2288
  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
  2289
proof (induct xs arbitrary: n)
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2290
  case (Cons x xs)
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2291
  thus ?case
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2292
  proof (cases n)
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2293
    case (Suc n') note this[simp]
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2294
    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
  2295
    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
  2296
    proof (rule Cons.hyps)
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2297
      case goal1 thus "P (xs ! i)" using Cons.prems(1)[of "Suc i"] by simp
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2298
    next case goal2 thus ?case using Cons by auto
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2299
    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
  2300
    ultimately show ?thesis by simp
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2301
   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
  2302
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
  2303
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2304
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
  2305
  "length (takeWhile P xs) < length xs \<Longrightarrow> \<not> P (xs ! length (takeWhile P xs))"
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2306
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
  2307
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2308
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
  2309
  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
  2310
  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
  2311
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
  2312
  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
  2313
  hence "length (takeWhile P xs) < length xs" using assms by simp
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2314
  thus ?thesis using all `\<not> ?thesis` nth_length_takeWhile[of P xs] by auto
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2315
qed
31077
28dd6fd3d184 more lemmas
nipkow
parents: 31055
diff changeset
  2316
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2317
text{* The following two lemmmas could be generalized to an arbitrary
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2318
property. *}
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2319
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2320
lemma takeWhile_neq_rev: "\<lbrakk>distinct xs; x \<in> set xs\<rbrakk> \<Longrightarrow>
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2321
 takeWhile (\<lambda>y. y \<noteq> x) (rev xs) = rev (tl (dropWhile (\<lambda>y. y \<noteq> x) xs))"
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2322
by(induct xs) (auto simp: takeWhile_tail[where l="[]"])
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2323
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2324
lemma dropWhile_neq_rev: "\<lbrakk>distinct xs; x \<in> set xs\<rbrakk> \<Longrightarrow>
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2325
  dropWhile (\<lambda>y. y \<noteq> x) (rev xs) = x # rev (takeWhile (\<lambda>y. y \<noteq> x) xs)"
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2326
apply(induct xs)
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2327
 apply simp
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2328
apply auto
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2329
apply(subst dropWhile_append2)
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2330
apply auto
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2331
done
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2332
18423
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  2333
lemma takeWhile_not_last:
46500
0196966d6d2d removing unnecessary premises in theorems of List theory
bulwahn
parents: 46448
diff changeset
  2334
 "distinct xs \<Longrightarrow> takeWhile (\<lambda>y. y \<noteq> last xs) xs = butlast xs"
18423
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  2335
apply(induct xs)
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  2336
 apply simp
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  2337
apply(case_tac xs)
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  2338
apply(auto)
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  2339
done
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  2340
44013
5cfc1c36ae97 moved recdef package to HOL/Library/Old_Recdef.thy
krauss
parents: 43594
diff changeset
  2341
lemma takeWhile_cong [fundef_cong]:
18336
1a2e30b37ed3 Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents: 18049
diff changeset
  2342
  "[| l = k; !!x. x : set l ==> P x = Q x |] 
1a2e30b37ed3 Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents: 18049
diff changeset
  2343
  ==> takeWhile P l = takeWhile Q k"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  2344
by (induct k arbitrary: l) (simp_all)
18336
1a2e30b37ed3 Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents: 18049
diff changeset
  2345
44013
5cfc1c36ae97 moved recdef package to HOL/Library/Old_Recdef.thy
krauss
parents: 43594
diff changeset
  2346
lemma dropWhile_cong [fundef_cong]:
18336
1a2e30b37ed3 Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents: 18049
diff changeset
  2347
  "[| l = k; !!x. x : set l ==> P x = Q x |] 
1a2e30b37ed3 Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents: 18049
diff changeset
  2348
  ==> dropWhile P l = dropWhile Q k"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  2349
by (induct k arbitrary: l, simp_all)
18336
1a2e30b37ed3 Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents: 18049
diff changeset
  2350
52380
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  2351
lemma takeWhile_idem [simp]:
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  2352
  "takeWhile P (takeWhile P xs) = takeWhile P xs"
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  2353
  by (induct xs) auto
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  2354
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  2355
lemma dropWhile_idem [simp]:
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  2356
  "dropWhile P (dropWhile P xs) = dropWhile P xs"
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  2357
  by (induct xs) auto
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  2358
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2359
49948
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  2360
subsubsection {* @{const zip} *}
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2361
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2362
lemma zip_Nil [simp]: "zip [] ys = []"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2363
by (induct ys) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2364
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2365
lemma zip_Cons_Cons [simp]: "zip (x # xs) (y # ys) = (x, y) # zip xs ys"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2366
by simp
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2367
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2368
declare zip_Cons [simp del]
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2369
36198
ead2db2be11a more convenient equations for zip
haftmann
parents: 35828
diff changeset
  2370
lemma [code]:
ead2db2be11a more convenient equations for zip
haftmann
parents: 35828
diff changeset
  2371
  "zip [] ys = []"
ead2db2be11a more convenient equations for zip
haftmann
parents: 35828
diff changeset
  2372
  "zip xs [] = []"
ead2db2be11a more convenient equations for zip
haftmann
parents: 35828
diff changeset
  2373
  "zip (x # xs) (y # ys) = (x, y) # zip xs ys"
ead2db2be11a more convenient equations for zip
haftmann
parents: 35828
diff changeset
  2374
  by (fact zip_Nil zip.simps(1) zip_Cons_Cons)+
ead2db2be11a more convenient equations for zip
haftmann
parents: 35828
diff changeset
  2375
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2376
lemma zip_Cons1:
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2377
 "zip (x#xs) ys = (case ys of [] \<Rightarrow> [] | y#ys \<Rightarrow> (x,y)#zip xs ys)"
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2378
by(auto split:list.split)
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2379
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2380
lemma length_zip [simp]:
22493
db930e490fe5 added another rule for simultaneous induction, and lemmas for zip
krauss
parents: 22422
diff changeset
  2381
"length (zip xs ys) = min (length xs) (length ys)"
db930e490fe5 added another rule for simultaneous induction, and lemmas for zip
krauss
parents: 22422
diff changeset
  2382
by (induct xs ys rule:list_induct2') auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2383
34978
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  2384
lemma zip_obtain_same_length:
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  2385
  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
  2386
    \<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
  2387
  shows "P (zip xs ys)"
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  2388
proof -
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  2389
  let ?n = "min (length xs) (length ys)"
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  2390
  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
  2391
    by (rule assms) simp_all
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  2392
  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
  2393
  proof (induct xs arbitrary: ys)
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  2394
    case Nil then show ?case by simp
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  2395
  next
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  2396
    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
  2397
  qed
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  2398
  ultimately show ?thesis by simp
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  2399
qed
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  2400
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2401
lemma zip_append1:
22493
db930e490fe5 added another rule for simultaneous induction, and lemmas for zip
krauss
parents: 22422
diff changeset
  2402
"zip (xs @ ys) zs =
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2403
zip xs (take (length xs) zs) @ zip ys (drop (length xs) zs)"
22493
db930e490fe5 added another rule for simultaneous induction, and lemmas for zip
krauss
parents: 22422
diff changeset
  2404
by (induct xs zs rule:list_induct2') auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2405
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2406
lemma zip_append2:
22493
db930e490fe5 added another rule for simultaneous induction, and lemmas for zip
krauss
parents: 22422
diff changeset
  2407
"zip xs (ys @ zs) =
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2408
zip (take (length ys) xs) ys @ zip (drop (length ys) xs) zs"
22493
db930e490fe5 added another rule for simultaneous induction, and lemmas for zip
krauss
parents: 22422
diff changeset
  2409
by (induct xs ys rule:list_induct2') auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2410
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2411
lemma zip_append [simp]:
46500
0196966d6d2d removing unnecessary premises in theorems of List theory
bulwahn
parents: 46448
diff changeset
  2412
 "[| length xs = length us |] ==>
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2413
zip (xs@ys) (us@vs) = zip xs us @ zip ys vs"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2414
by (simp add: zip_append1)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2415
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2416
lemma zip_rev:
14247
cb32eb89bddd *** empty log message ***
nipkow
parents: 14208
diff changeset
  2417
"length xs = length ys ==> zip (rev xs) (rev ys) = rev (zip xs ys)"
cb32eb89bddd *** empty log message ***
nipkow
parents: 14208
diff changeset
  2418
by (induct rule:list_induct2, simp_all)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2419
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
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
  2421
  "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
  2422
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
  2423
  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
  2424
  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
  2425
  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
  2426
    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
  2427
    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
  2428
  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
  2429
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
  2430
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2431
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
  2432
  "zip (map f xs) ys = map (\<lambda>(x, y). (f x, y)) (zip xs ys)"
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2433
using zip_map_map[of f xs "\<lambda>x. x" ys] by simp
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2434
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
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
  2436
  "zip xs (map f ys) = map (\<lambda>(x, y). (x, f y)) (zip xs ys)"
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2437
using zip_map_map[of "\<lambda>x. x" xs f ys] by simp
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2438
23096
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  2439
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
  2440
  "map f (zip (map g xs) ys) = map (%(x,y). f(g x, y)) (zip xs ys)"
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2441
unfolding zip_map1 by auto
23096
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  2442
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  2443
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
  2444
  "map f (zip xs (map g ys)) = map (%(x,y). f(x, g y)) (zip xs ys)"
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2445
unfolding zip_map2 by auto
23096
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  2446
31080
21ffc770ebc0 lemmas by Andreas Lochbihler
nipkow
parents: 31077
diff changeset
  2447
text{* Courtesy of Andreas Lochbihler: *}
21ffc770ebc0 lemmas by Andreas Lochbihler
nipkow
parents: 31077
diff changeset
  2448
lemma zip_same_conv_map: "zip xs xs = map (\<lambda>x. (x, x)) xs"
21ffc770ebc0 lemmas by Andreas Lochbihler
nipkow
parents: 31077
diff changeset
  2449
by(induct xs) auto
21ffc770ebc0 lemmas by Andreas Lochbihler
nipkow
parents: 31077
diff changeset
  2450
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2451
lemma nth_zip [simp]:
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2452
"[| i < length xs; i < length ys|] ==> (zip xs ys)!i = (xs!i, ys!i)"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2453
apply (induct ys arbitrary: i xs, simp)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2454
apply (case_tac xs)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2455
 apply (simp_all add: nth.simps split: nat.split)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2456
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2457
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2458
lemma set_zip:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2459
"set (zip xs ys) = {(xs!i, ys!i) | i. i < min (length xs) (length ys)}"
31080
21ffc770ebc0 lemmas by Andreas Lochbihler
nipkow
parents: 31077
diff changeset
  2460
by(simp add: set_conv_nth cong: rev_conj_cong)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2461
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
  2462
lemma zip_same: "((a,b) \<in> set (zip xs xs)) = (a \<in> set xs \<and> a = b)"
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2463
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
  2464
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2465
lemma zip_update:
31080
21ffc770ebc0 lemmas by Andreas Lochbihler
nipkow
parents: 31077
diff changeset
  2466
  "zip (xs[i:=x]) (ys[i:=y]) = (zip xs ys)[i:=(x,y)]"
21ffc770ebc0 lemmas by Andreas Lochbihler
nipkow
parents: 31077
diff changeset
  2467
by(rule sym, simp add: update_zip)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2468
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2469
lemma zip_replicate [simp]:
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2470
  "zip (replicate i x) (replicate j y) = replicate (min i j) (x,y)"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2471
apply (induct i arbitrary: j, auto)
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  2472
apply (case_tac j, auto)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2473
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2474
19487
d5e79a41bce0 added zip/take/drop lemmas
nipkow
parents: 19390
diff changeset
  2475
lemma take_zip:
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2476
  "take n (zip xs ys) = zip (take n xs) (take n ys)"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2477
apply (induct n arbitrary: xs ys)
19487
d5e79a41bce0 added zip/take/drop lemmas
nipkow
parents: 19390
diff changeset
  2478
 apply simp
d5e79a41bce0 added zip/take/drop lemmas
nipkow
parents: 19390
diff changeset
  2479
apply (case_tac xs, simp)
d5e79a41bce0 added zip/take/drop lemmas
nipkow
parents: 19390
diff changeset
  2480
apply (case_tac ys, simp_all)
d5e79a41bce0 added zip/take/drop lemmas
nipkow
parents: 19390
diff changeset
  2481
done
d5e79a41bce0 added zip/take/drop lemmas
nipkow
parents: 19390
diff changeset
  2482
d5e79a41bce0 added zip/take/drop lemmas
nipkow
parents: 19390
diff changeset
  2483
lemma drop_zip:
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2484
  "drop n (zip xs ys) = zip (drop n xs) (drop n ys)"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2485
apply (induct n arbitrary: xs ys)
19487
d5e79a41bce0 added zip/take/drop lemmas
nipkow
parents: 19390
diff changeset
  2486
 apply simp
d5e79a41bce0 added zip/take/drop lemmas
nipkow
parents: 19390
diff changeset
  2487
apply (case_tac xs, simp)
d5e79a41bce0 added zip/take/drop lemmas
nipkow
parents: 19390
diff changeset
  2488
apply (case_tac ys, simp_all)
d5e79a41bce0 added zip/take/drop lemmas
nipkow
parents: 19390
diff changeset
  2489
done
d5e79a41bce0 added zip/take/drop lemmas
nipkow
parents: 19390
diff changeset
  2490
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
  2491
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
  2492
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
  2493
  case (Cons x xs) thus ?case by (cases ys) auto
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2494
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
  2495
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2496
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
  2497
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
  2498
  case (Cons x xs) thus ?case by (cases ys) auto
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  2499
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
  2500
22493
db930e490fe5 added another rule for simultaneous induction, and lemmas for zip
krauss
parents: 22422
diff changeset
  2501
lemma set_zip_leftD:
db930e490fe5 added another rule for simultaneous induction, and lemmas for zip
krauss
parents: 22422
diff changeset
  2502
  "(x,y)\<in> set (zip xs ys) \<Longrightarrow> x \<in> set xs"
db930e490fe5 added another rule for simultaneous induction, and lemmas for zip
krauss
parents: 22422
diff changeset
  2503
by (induct xs ys rule:list_induct2') auto
db930e490fe5 added another rule for simultaneous induction, and lemmas for zip
krauss
parents: 22422
diff changeset
  2504
db930e490fe5 added another rule for simultaneous induction, and lemmas for zip
krauss
parents: 22422
diff changeset
  2505
lemma set_zip_rightD:
db930e490fe5 added another rule for simultaneous induction, and lemmas for zip
krauss
parents: 22422
diff changeset
  2506
  "(x,y)\<in> set (zip xs ys) \<Longrightarrow> y \<in> set ys"
db930e490fe5 added another rule for simultaneous induction, and lemmas for zip
krauss
parents: 22422
diff changeset
  2507
by (induct xs ys rule:list_induct2') auto
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2508
23983
79dc793bec43 Added lemmas
nipkow
parents: 23971
diff changeset
  2509
lemma in_set_zipE:
79dc793bec43 Added lemmas
nipkow
parents: 23971
diff changeset
  2510
  "(x,y) : set(zip xs ys) \<Longrightarrow> (\<lbrakk> x : set xs; y : set ys \<rbrakk> \<Longrightarrow> R) \<Longrightarrow> R"
79dc793bec43 Added lemmas
nipkow
parents: 23971
diff changeset
  2511
by(blast dest: set_zip_leftD set_zip_rightD)
79dc793bec43 Added lemmas
nipkow
parents: 23971
diff changeset
  2512
29829
9acb915a62fa code theorems for nth, list_update
haftmann
parents: 29827
diff changeset
  2513
lemma zip_map_fst_snd:
9acb915a62fa code theorems for nth, list_update
haftmann
parents: 29827
diff changeset
  2514
  "zip (map fst zs) (map snd zs) = zs"
9acb915a62fa code theorems for nth, list_update
haftmann
parents: 29827
diff changeset
  2515
  by (induct zs) simp_all
9acb915a62fa code theorems for nth, list_update
haftmann
parents: 29827
diff changeset
  2516
9acb915a62fa code theorems for nth, list_update
haftmann
parents: 29827
diff changeset
  2517
lemma zip_eq_conv:
9acb915a62fa code theorems for nth, list_update
haftmann
parents: 29827
diff changeset
  2518
  "length xs = length ys \<Longrightarrow> zip xs ys = zs \<longleftrightarrow> map fst zs = xs \<and> map snd zs = ys"
9acb915a62fa code theorems for nth, list_update
haftmann
parents: 29827
diff changeset
  2519
  by (auto simp add: zip_map_fst_snd)
9acb915a62fa code theorems for nth, list_update
haftmann
parents: 29827
diff changeset
  2520
51173
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  2521
lemma in_set_zip:
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  2522
  "p \<in> set (zip xs ys) \<longleftrightarrow> (\<exists>n. xs ! n = fst p \<and> ys ! n = snd p
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  2523
    \<and> n < length xs \<and> n < length ys)"
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  2524
  by (cases p) (auto simp add: set_zip)
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  2525
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  2526
lemma pair_list_eqI:
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  2527
  assumes "map fst xs = map fst ys" and "map snd xs = map snd ys"
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  2528
  shows "xs = ys"
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  2529
proof -
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  2530
  from assms(1) have "length xs = length ys" by (rule map_eq_imp_length_eq)
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  2531
  from this assms show ?thesis
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  2532
    by (induct xs ys rule: list_induct2) (simp_all add: prod_eqI)
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  2533
qed
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  2534
35115
446c5063e4fd modernized translations;
wenzelm
parents: 35028
diff changeset
  2535
49948
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  2536
subsubsection {* @{const list_all2} *}
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2537
14316
91b897b9a2dc added some [intro?] and [trans] for list_all2 lemmas
kleing
parents: 14302
diff changeset
  2538
lemma list_all2_lengthD [intro?]: 
91b897b9a2dc added some [intro?] and [trans] for list_all2 lemmas
kleing
parents: 14302
diff changeset
  2539
  "list_all2 P xs ys ==> length xs = length ys"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  2540
by (simp add: list_all2_def)
19607
07eeb832f28d introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents: 19585
diff changeset
  2541
19787
b949911ecff5 improved code lemmas
haftmann
parents: 19770
diff changeset
  2542
lemma list_all2_Nil [iff, code]: "list_all2 P [] ys = (ys = [])"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  2543
by (simp add: list_all2_def)
19607
07eeb832f28d introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents: 19585
diff changeset
  2544
19787
b949911ecff5 improved code lemmas
haftmann
parents: 19770
diff changeset
  2545
lemma list_all2_Nil2 [iff, code]: "list_all2 P xs [] = (xs = [])"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  2546
by (simp add: list_all2_def)
19607
07eeb832f28d introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents: 19585
diff changeset
  2547
07eeb832f28d introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents: 19585
diff changeset
  2548
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
  2549
  "list_all2 P (x # xs) (y # ys) = (P x y \<and> list_all2 P xs ys)"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  2550
by (auto simp add: list_all2_def)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2551
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2552
lemma list_all2_Cons1:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2553
"list_all2 P (x # xs) ys = (\<exists>z zs. ys = z # zs \<and> P x z \<and> list_all2 P xs zs)"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2554
by (cases ys) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2555
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2556
lemma list_all2_Cons2:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2557
"list_all2 P xs (y # ys) = (\<exists>z zs. xs = z # zs \<and> P z y \<and> list_all2 P zs ys)"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2558
by (cases xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2559
45794
16e8e4d33c42 add induction rule for list_all2
huffman
parents: 45789
diff changeset
  2560
lemma list_all2_induct
16e8e4d33c42 add induction rule for list_all2
huffman
parents: 45789
diff changeset
  2561
  [consumes 1, case_names Nil Cons, induct set: list_all2]:
16e8e4d33c42 add induction rule for list_all2
huffman
parents: 45789
diff changeset
  2562
  assumes P: "list_all2 P xs ys"
16e8e4d33c42 add induction rule for list_all2
huffman
parents: 45789
diff changeset
  2563
  assumes Nil: "R [] []"
47640
62bfba15b212 strengthen rule list_all2_induct
huffman
parents: 47436
diff changeset
  2564
  assumes Cons: "\<And>x xs y ys.
62bfba15b212 strengthen rule list_all2_induct
huffman
parents: 47436
diff changeset
  2565
    \<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
  2566
  shows "R xs ys"
16e8e4d33c42 add induction rule for list_all2
huffman
parents: 45789
diff changeset
  2567
using P
16e8e4d33c42 add induction rule for list_all2
huffman
parents: 45789
diff changeset
  2568
by (induct xs arbitrary: ys) (auto simp add: list_all2_Cons1 Nil Cons)
16e8e4d33c42 add induction rule for list_all2
huffman
parents: 45789
diff changeset
  2569
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2570
lemma list_all2_rev [iff]:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2571
"list_all2 P (rev xs) (rev ys) = list_all2 P xs ys"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2572
by (simp add: list_all2_def zip_rev cong: conj_cong)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2573
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2574
lemma list_all2_rev1:
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2575
"list_all2 P (rev xs) ys = list_all2 P xs (rev ys)"
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2576
by (subst list_all2_rev [symmetric]) simp
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2577
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2578
lemma list_all2_append1:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2579
"list_all2 P (xs @ ys) zs =
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2580
(EX us vs. zs = us @ vs \<and> length us = length xs \<and> length vs = length ys \<and>
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2581
list_all2 P xs us \<and> list_all2 P ys vs)"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2582
apply (simp add: list_all2_def zip_append1)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2583
apply (rule iffI)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2584
 apply (rule_tac x = "take (length xs) zs" in exI)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2585
 apply (rule_tac x = "drop (length xs) zs" in exI)
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  2586
 apply (force split: nat_diff_split simp add: min_def, clarify)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2587
apply (simp add: ball_Un)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2588
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2589
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2590
lemma list_all2_append2:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2591
"list_all2 P xs (ys @ zs) =
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2592
(EX us vs. xs = us @ vs \<and> length us = length ys \<and> length vs = length zs \<and>
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2593
list_all2 P us ys \<and> list_all2 P vs zs)"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2594
apply (simp add: list_all2_def zip_append2)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2595
apply (rule iffI)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2596
 apply (rule_tac x = "take (length ys) xs" in exI)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2597
 apply (rule_tac x = "drop (length ys) xs" in exI)
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  2598
 apply (force split: nat_diff_split simp add: min_def, clarify)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2599
apply (simp add: ball_Un)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2600
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2601
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2602
lemma list_all2_append:
14247
cb32eb89bddd *** empty log message ***
nipkow
parents: 14208
diff changeset
  2603
  "length xs = length ys \<Longrightarrow>
cb32eb89bddd *** empty log message ***
nipkow
parents: 14208
diff changeset
  2604
  list_all2 P (xs@us) (ys@vs) = (list_all2 P xs ys \<and> list_all2 P us vs)"
cb32eb89bddd *** empty log message ***
nipkow
parents: 14208
diff changeset
  2605
by (induct rule:list_induct2, simp_all)
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2606
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2607
lemma list_all2_appendI [intro?, trans]:
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2608
  "\<lbrakk> list_all2 P a b; list_all2 P c d \<rbrakk> \<Longrightarrow> list_all2 P (a@c) (b@d)"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  2609
by (simp add: list_all2_append list_all2_lengthD)
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2610
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2611
lemma list_all2_conv_all_nth:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2612
"list_all2 P xs ys =
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2613
(length xs = length ys \<and> (\<forall>i < length xs. P (xs!i) (ys!i)))"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2614
by (force simp add: list_all2_def set_zip)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2615
13883
0451e0fb3f22 Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents: 13863
diff changeset
  2616
lemma list_all2_trans:
0451e0fb3f22 Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents: 13863
diff changeset
  2617
  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
  2618
  shows "!!bs cs. list_all2 P1 as bs ==> list_all2 P2 bs cs ==> list_all2 P3 as cs"
0451e0fb3f22 Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents: 13863
diff changeset
  2619
        (is "!!bs cs. PROP ?Q as bs cs")
0451e0fb3f22 Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents: 13863
diff changeset
  2620
proof (induct as)
0451e0fb3f22 Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents: 13863
diff changeset
  2621
  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
  2622
  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
  2623
  proof (induct bs)
0451e0fb3f22 Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents: 13863
diff changeset
  2624
    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
  2625
    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
  2626
      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
  2627
  qed simp
0451e0fb3f22 Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents: 13863
diff changeset
  2628
qed simp
0451e0fb3f22 Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents: 13863
diff changeset
  2629
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2630
lemma list_all2_all_nthI [intro?]:
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2631
  "length a = length b \<Longrightarrow> (\<And>n. n < length a \<Longrightarrow> P (a!n) (b!n)) \<Longrightarrow> list_all2 P a b"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  2632
by (simp add: list_all2_conv_all_nth)
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2633
14395
cc96cc06abf9 new theorem
paulson
parents: 14388
diff changeset
  2634
lemma list_all2I:
cc96cc06abf9 new theorem
paulson
parents: 14388
diff changeset
  2635
  "\<forall>x \<in> set (zip a b). split P x \<Longrightarrow> length a = length b \<Longrightarrow> list_all2 P a b"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  2636
by (simp add: list_all2_def)
14395
cc96cc06abf9 new theorem
paulson
parents: 14388
diff changeset
  2637
14328
fd063037fdf5 list_all2_nthD no good as [intro?]
kleing
parents: 14327
diff changeset
  2638
lemma list_all2_nthD:
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2639
  "\<lbrakk> list_all2 P xs ys; p < size xs \<rbrakk> \<Longrightarrow> P (xs!p) (ys!p)"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  2640
by (simp add: list_all2_conv_all_nth)
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2641
14302
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  2642
lemma list_all2_nthD2:
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  2643
  "\<lbrakk>list_all2 P xs ys; p < size ys\<rbrakk> \<Longrightarrow> P (xs!p) (ys!p)"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  2644
by (frule list_all2_lengthD) (auto intro: list_all2_nthD)
14302
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  2645
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2646
lemma list_all2_map1: 
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2647
  "list_all2 P (map f as) bs = list_all2 (\<lambda>x y. P (f x) y) as bs"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  2648
by (simp add: list_all2_conv_all_nth)
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2649
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2650
lemma list_all2_map2: 
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2651
  "list_all2 P as (map f bs) = list_all2 (\<lambda>x y. P x (f y)) as bs"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  2652
by (auto simp add: list_all2_conv_all_nth)
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2653
14316
91b897b9a2dc added some [intro?] and [trans] for list_all2 lemmas
kleing
parents: 14302
diff changeset
  2654
lemma list_all2_refl [intro?]:
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2655
  "(\<And>x. P x x) \<Longrightarrow> list_all2 P xs xs"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  2656
by (simp add: list_all2_conv_all_nth)
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2657
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2658
lemma list_all2_update_cong:
46669
c1d2ab32174a one general list_all2_update_cong instead of two special ones
bulwahn
parents: 46664
diff changeset
  2659
  "\<lbrakk> list_all2 P xs ys; P x y \<rbrakk> \<Longrightarrow> list_all2 P (xs[i:=x]) (ys[i:=y])"
c1d2ab32174a one general list_all2_update_cong instead of two special ones
bulwahn
parents: 46664
diff changeset
  2660
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
  2661
14302
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  2662
lemma list_all2_takeI [simp,intro?]:
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2663
  "list_all2 P xs ys \<Longrightarrow> list_all2 P (take n xs) (take n ys)"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2664
apply (induct xs arbitrary: n ys)
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2665
 apply simp
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2666
apply (clarsimp simp add: list_all2_Cons1)
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2667
apply (case_tac n)
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2668
apply auto
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2669
done
14302
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  2670
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  2671
lemma list_all2_dropI [simp,intro?]:
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2672
  "list_all2 P as bs \<Longrightarrow> list_all2 P (drop n as) (drop n bs)"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2673
apply (induct as arbitrary: n bs, simp)
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2674
apply (clarsimp simp add: list_all2_Cons1)
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2675
apply (case_tac n, simp, simp)
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2676
done
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2677
14327
9cd4dea593e3 list_all2_mono should not be [trans]
kleing
parents: 14316
diff changeset
  2678
lemma list_all2_mono [intro?]:
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2679
  "list_all2 P xs ys \<Longrightarrow> (\<And>xs ys. P xs ys \<Longrightarrow> Q xs ys) \<Longrightarrow> list_all2 Q xs ys"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2680
apply (induct xs arbitrary: ys, simp)
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2681
apply (case_tac ys, auto)
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2682
done
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  2683
22551
e52f5400e331 paraphrasing equality
haftmann
parents: 22539
diff changeset
  2684
lemma list_all2_eq:
e52f5400e331 paraphrasing equality
haftmann
parents: 22539
diff changeset
  2685
  "xs = ys \<longleftrightarrow> list_all2 (op =) xs ys"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  2686
by (induct xs ys rule: list_induct2') auto
22551
e52f5400e331 paraphrasing equality
haftmann
parents: 22539
diff changeset
  2687
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  2688
lemma list_eq_iff_zip_eq:
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  2689
  "xs = ys \<longleftrightarrow> length xs = length ys \<and> (\<forall>(x,y) \<in> set (zip xs ys). x = y)"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  2690
by(auto simp add: set_zip list_all2_eq list_all2_conv_all_nth cong: conj_cong)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  2691
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2692
53721
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  2693
subsubsection {* @{const List.product} and @{const product_lists} *}
49948
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  2694
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  2695
lemma product_list_set:
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  2696
  "set (List.product xs ys) = set xs \<times> set ys"
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  2697
  by (induct xs) auto
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  2698
51160
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  2699
lemma length_product [simp]:
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  2700
  "length (List.product xs ys) = length xs * length ys"
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  2701
  by (induct xs) simp_all
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  2702
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  2703
lemma product_nth:
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  2704
  assumes "n < length xs * length ys"
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  2705
  shows "List.product xs ys ! n = (xs ! (n div length ys), ys ! (n mod length ys))"
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  2706
using assms proof (induct xs arbitrary: n)
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  2707
  case Nil then show ?case by simp
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  2708
next
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  2709
  case (Cons x xs n)
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  2710
  then have "length ys > 0" by auto
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  2711
  with Cons show ?case
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  2712
    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
  2713
qed
599ff65b85e2 systematic conversions between nat and nibble/char;
haftmann
parents: 51112
diff changeset
  2714
53721
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  2715
lemma in_set_product_lists_length: 
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  2716
  "xs \<in> set (product_lists xss) \<Longrightarrow> length xs = length xss"
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  2717
  by (induct xss arbitrary: xs) auto
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  2718
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  2719
lemma product_lists_set:
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  2720
  "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
  2721
proof (intro equalityI subsetI, unfold mem_Collect_eq)
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  2722
  fix xs assume "xs \<in> ?L"
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  2723
  then have "length xs = length xss" by (rule in_set_product_lists_length)
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  2724
  from this `xs \<in> ?L` show "?R xs" by (induct xs xss rule: list_induct2) auto
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  2725
next
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  2726
  fix xs assume "?R xs"
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  2727
  then show "xs \<in> ?L" by induct auto
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  2728
qed
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  2729
49948
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  2730
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
  2731
subsubsection {* @{const fold} with natural argument order *}
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
  2732
48828
441a4eed7823 prefer eta-expanded code equations for fold, to accomodate tail recursion optimisation in Scala
haftmann
parents: 48619
diff changeset
  2733
lemma fold_simps [code]: -- {* eta-expanded variant for generated code -- enables tail-recursion optimisation in Scala *}
441a4eed7823 prefer eta-expanded code equations for fold, to accomodate tail recursion optimisation in Scala
haftmann
parents: 48619
diff changeset
  2734
  "fold f [] s = s"
441a4eed7823 prefer eta-expanded code equations for fold, to accomodate tail recursion optimisation in Scala
haftmann
parents: 48619
diff changeset
  2735
  "fold f (x # xs) s = fold f xs (f x s)" 
441a4eed7823 prefer eta-expanded code equations for fold, to accomodate tail recursion optimisation in Scala
haftmann
parents: 48619
diff changeset
  2736
  by simp_all
441a4eed7823 prefer eta-expanded code equations for fold, to accomodate tail recursion optimisation in Scala
haftmann
parents: 48619
diff changeset
  2737
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
  2738
lemma fold_remove1_split:
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2739
  assumes f: "\<And>x y. x \<in> set xs \<Longrightarrow> y \<in> set xs \<Longrightarrow> f x \<circ> f y = f y \<circ> f 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
  2740
    and x: "x \<in> set xs"
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2741
  shows "fold f xs = fold f (remove1 x xs) \<circ> f x"
49739
13aa6d8268ec consolidated names of theorems on composition;
haftmann
parents: 48891
diff changeset
  2742
  using assms 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
  2743
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2744
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
  2745
  "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
  2746
    \<Longrightarrow> fold f xs a = fold g ys b"
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2747
  by (induct ys arbitrary: a b xs) simp_all
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2748
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2749
lemma fold_id:
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2750
  assumes "\<And>x. x \<in> set xs \<Longrightarrow> f x = id"
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2751
  shows "fold f xs = id"
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2752
  using assms by (induct xs) simp_all
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2753
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2754
lemma 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
  2755
  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
  2756
  shows "h \<circ> fold g xs = fold f xs \<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
  2757
  using assms by (induct xs) (simp_all add: fun_eq_iff)
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2758
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2759
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
  2760
  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
  2761
  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
  2762
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
  2763
  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
  2764
  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
  2765
qed
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  2766
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
  2767
lemma fold_invariant: 
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2768
  assumes "\<And>x. x \<in> set xs \<Longrightarrow> Q x" and "P 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
  2769
    and "\<And>x s. Q x \<Longrightarrow> P s \<Longrightarrow> P (f x 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
  2770
  shows "P (fold f xs s)"
34978
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  2771
  using assms by (induct xs arbitrary: s) simp_all
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  2772
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
  2773
lemma fold_append [simp]:
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2774
  "fold f (xs @ ys) = fold f ys \<circ> fold f xs"
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2775
  by (induct xs) simp_all
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2776
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2777
lemma fold_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
  2778
  "fold g (map f xs) = fold (g o f) xs"
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2779
  by (induct xs) simp_all
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2780
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2781
lemma fold_rev:
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2782
  assumes "\<And>x y. x \<in> set xs \<Longrightarrow> y \<in> set xs \<Longrightarrow> f y \<circ> f x = f x \<circ> f y"
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2783
  shows "fold f (rev xs) = fold f xs"
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2784
using assms by (induct xs) (simp_all add: fold_commute_apply fun_eq_iff)
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2785
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2786
lemma fold_Cons_rev:
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2787
  "fold Cons xs = append (rev xs)"
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2788
  by (induct xs) simp_all
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2789
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2790
lemma rev_conv_fold [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
  2791
  "rev xs = fold Cons xs []"
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2792
  by (simp add: fold_Cons_rev)
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2793
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2794
lemma fold_append_concat_rev:
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2795
  "fold append xss = append (concat (rev xss))"
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2796
  by (induct xss) simp_all
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2797
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2798
text {* @{const Finite_Set.fold} and @{const 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
  2799
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2800
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
  2801
  "Finite_Set.fold f y (set xs) = fold f (remdups xs) y"
51489
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 51315
diff changeset
  2802
  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
  2803
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
  2804
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
  2805
  "Finite_Set.fold f y (set xs) = fold f xs y"
51489
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 51315
diff changeset
  2806
  by (rule sym, induct xs arbitrary: y) (simp_all add: fold_fun_left_comm)
32681
adeac3cbb659 lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents: 32422
diff changeset
  2807
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
  2808
lemma union_set_fold [code]:
46147
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  2809
  "set xs \<union> A = fold Set.insert xs A"
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  2810
proof -
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  2811
  interpret comp_fun_idem Set.insert
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  2812
    by (fact comp_fun_idem_insert)
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  2813
  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
  2814
qed
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  2815
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
  2816
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
  2817
  "List.coset xs \<union> A = List.coset (List.filter (\<lambda>x. x \<notin> A) xs)"
d654c73e4b12 no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents: 47131
diff changeset
  2818
  by auto
d654c73e4b12 no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents: 47131
diff changeset
  2819
d654c73e4b12 no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents: 47131
diff changeset
  2820
lemma minus_set_fold [code]:
46147
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  2821
  "A - set xs = fold Set.remove xs A"
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  2822
proof -
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  2823
  interpret comp_fun_idem Set.remove
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  2824
    by (fact comp_fun_idem_remove)
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  2825
  show ?thesis
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  2826
    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
  2827
qed
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  2828
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
  2829
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
  2830
  "A - List.coset xs = set (List.filter (\<lambda>x. x \<in> A) xs)"
d654c73e4b12 no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents: 47131
diff changeset
  2831
  by auto
d654c73e4b12 no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents: 47131
diff changeset
  2832
d654c73e4b12 no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents: 47131
diff changeset
  2833
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
  2834
  "A \<inter> set xs = set (List.filter (\<lambda>x. x \<in> A) xs)"
d654c73e4b12 no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents: 47131
diff changeset
  2835
  by auto
d654c73e4b12 no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents: 47131
diff changeset
  2836
d654c73e4b12 no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents: 47131
diff changeset
  2837
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
  2838
  "A \<inter> List.coset xs = fold Set.remove xs A"
d654c73e4b12 no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents: 47131
diff changeset
  2839
  by (simp add: Diff_eq [symmetric] minus_set_fold)
d654c73e4b12 no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents: 47131
diff changeset
  2840
54885
3a478d0a0e87 more abstract declaration of code attributes
haftmann
parents: 54868
diff changeset
  2841
lemma (in semilattice_set) set_eq_fold [code]:
51489
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 51315
diff changeset
  2842
  "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
  2843
proof -
51489
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 51315
diff changeset
  2844
  interpret comp_fun_idem f
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 51315
diff changeset
  2845
    by default (simp_all add: fun_eq_iff left_commute)
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 51315
diff changeset
  2846
  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
  2847
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
  2848
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2849
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
  2850
  "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
  2851
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
  2852
  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
  2853
    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
  2854
  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
  2855
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
  2856
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
  2857
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
  2858
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
  2859
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
  2860
  "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
  2861
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
  2862
  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
  2863
    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
  2864
  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
  2865
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
  2866
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
  2867
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
  2868
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
  2869
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
  2870
  "INFI (set xs) f = fold (inf \<circ> f) 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
  2871
  unfolding INF_def set_map [symmetric] Inf_set_fold fold_map ..
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2872
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
  2873
declare INF_set_fold [code]
d654c73e4b12 no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents: 47131
diff changeset
  2874
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
  2875
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
  2876
  "SUPR (set xs) f = fold (sup \<circ> f) 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
  2877
  unfolding SUP_def set_map [symmetric] Sup_set_fold fold_map ..
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2878
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
  2879
declare SUP_set_fold [code]
46133
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2880
49948
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  2881
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
  2882
subsubsection {* Fold variants: @{const foldr} and @{const foldl} *}
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2883
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2884
text {* Correspondence *}
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2885
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
  2886
lemma foldr_conv_fold [code_abbrev]:
d654c73e4b12 no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents: 47131
diff changeset
  2887
  "foldr f xs = fold f (rev xs)"
d654c73e4b12 no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents: 47131
diff changeset
  2888
  by (induct xs) simp_all
d654c73e4b12 no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents: 47131
diff changeset
  2889
d654c73e4b12 no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents: 47131
diff changeset
  2890
lemma foldl_conv_fold:
d654c73e4b12 no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents: 47131
diff changeset
  2891
  "foldl f s xs = fold (\<lambda>x s. f s x) xs s"
d654c73e4b12 no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents: 47131
diff changeset
  2892
  by (induct xs arbitrary: s) simp_all
d654c73e4b12 no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents: 47131
diff changeset
  2893
d654c73e4b12 no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents: 47131
diff changeset
  2894
lemma foldr_conv_foldl: -- {* The ``Third Duality Theorem'' in Bird \& Wadler: *}
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
  2895
  "foldr f xs a = foldl (\<lambda>x y. f y x) a (rev xs)"
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
  2896
  by (simp add: foldr_conv_fold foldl_conv_fold)
d654c73e4b12 no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents: 47131
diff changeset
  2897
d654c73e4b12 no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents: 47131
diff changeset
  2898
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
  2899
  "foldl f a xs = foldr (\<lambda>x y. f y x) (rev xs) a"
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
  2900
  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
  2901
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2902
lemma foldr_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
  2903
  assumes "\<And>x y. x \<in> set xs \<Longrightarrow> y \<in> set xs \<Longrightarrow> f y \<circ> f x = f x \<circ> f y"
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2904
  shows "foldr f xs = fold f xs"
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
  2905
  using assms 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
  2906
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2907
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
  2908
  "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"
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
  2909
  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
  2910
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2911
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
  2912
  "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"
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
  2913
  by (auto simp add: foldl_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
  2914
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2915
lemma foldr_append [simp]:
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2916
  "foldr f (xs @ ys) a = foldr f xs (foldr f ys a)"
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
  2917
  by (simp add: 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
  2918
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2919
lemma foldl_append [simp]:
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2920
  "foldl f a (xs @ ys) = foldl f (foldl f a xs) ys"
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
  2921
  by (simp add: 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
  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 foldr_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
  2924
  "foldr g (map f xs) a = foldr (g o f) xs a"
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
  2925
  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
  2926
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  2927
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
  2928
  "foldl g a (map f xs) = foldl (\<lambda>a x. g a (f x)) a xs"
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
  2929
  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
  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 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
  2932
  "concat xss = foldr append xss []"
47397
d654c73e4b12 no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents: 47131
diff changeset
  2933
  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
  2934
35115
446c5063e4fd modernized translations;
wenzelm
parents: 35028
diff changeset
  2935
49948
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  2936
subsubsection {* @{const upt} *}
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2937
17090
603f23d71ada small mods to code lemmas
nipkow
parents: 17086
diff changeset
  2938
lemma upt_rec[code]: "[i..<j] = (if i<j then i#[Suc i..<j] else [])"
603f23d71ada small mods to code lemmas
nipkow
parents: 17086
diff changeset
  2939
-- {* simp does not terminate! *}
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2940
by (induct j) auto
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2941
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46898
diff changeset
  2942
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
  2943
15425
6356d2523f73 [ .. (] -> [ ..< ]
nipkow
parents: 15392
diff changeset
  2944
lemma upt_conv_Nil [simp]: "j <= i ==> [i..<j] = []"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2945
by (subst upt_rec) simp
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2946
15425
6356d2523f73 [ .. (] -> [ ..< ]
nipkow
parents: 15392
diff changeset
  2947
lemma upt_eq_Nil_conv[simp]: "([i..<j] = []) = (j = 0 \<or> j <= i)"
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2948
by(induct j)simp_all
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2949
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2950
lemma upt_eq_Cons_conv:
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2951
 "([i..<j] = x#xs) = (i < j & i = x & [i+1..<j] = xs)"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2952
apply(induct j arbitrary: x xs)
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2953
 apply simp
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2954
apply(clarsimp simp add: append_eq_Cons_conv)
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2955
apply arith
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2956
done
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2957
15425
6356d2523f73 [ .. (] -> [ ..< ]
nipkow
parents: 15392
diff changeset
  2958
lemma upt_Suc_append: "i <= j ==> [i..<(Suc j)] = [i..<j]@[j]"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2959
-- {* Only needed if @{text upt_Suc} is deleted from the simpset. *}
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2960
by simp
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2961
15425
6356d2523f73 [ .. (] -> [ ..< ]
nipkow
parents: 15392
diff changeset
  2962
lemma upt_conv_Cons: "i < j ==> [i..<j] = i # [Suc i..<j]"
26734
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  2963
  by (simp add: upt_rec)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2964
15425
6356d2523f73 [ .. (] -> [ ..< ]
nipkow
parents: 15392
diff changeset
  2965
lemma upt_add_eq_append: "i<=j ==> [i..<j+k] = [i..<j]@[j..<j+k]"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2966
-- {* LOOPS as a simprule, since @{text "j <= j"}. *}
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2967
by (induct k) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2968
15425
6356d2523f73 [ .. (] -> [ ..< ]
nipkow
parents: 15392
diff changeset
  2969
lemma length_upt [simp]: "length [i..<j] = j - i"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2970
by (induct j) (auto simp add: Suc_diff_le)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2971
15425
6356d2523f73 [ .. (] -> [ ..< ]
nipkow
parents: 15392
diff changeset
  2972
lemma nth_upt [simp]: "i + k < j ==> [i..<j] ! k = i + k"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2973
apply (induct j)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2974
apply (auto simp add: less_Suc_eq nth_append split: nat_diff_split)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2975
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2976
17906
719364f5179b added 2 lemmas
nipkow
parents: 17877
diff changeset
  2977
719364f5179b added 2 lemmas
nipkow
parents: 17877
diff changeset
  2978
lemma hd_upt[simp]: "i < j \<Longrightarrow> hd[i..<j] = i"
719364f5179b added 2 lemmas
nipkow
parents: 17877
diff changeset
  2979
by(simp add:upt_conv_Cons)
719364f5179b added 2 lemmas
nipkow
parents: 17877
diff changeset
  2980
719364f5179b added 2 lemmas
nipkow
parents: 17877
diff changeset
  2981
lemma last_upt[simp]: "i < j \<Longrightarrow> last[i..<j] = j - 1"
719364f5179b added 2 lemmas
nipkow
parents: 17877
diff changeset
  2982
apply(cases j)
719364f5179b added 2 lemmas
nipkow
parents: 17877
diff changeset
  2983
 apply simp
719364f5179b added 2 lemmas
nipkow
parents: 17877
diff changeset
  2984
by(simp add:upt_Suc_append)
719364f5179b added 2 lemmas
nipkow
parents: 17877
diff changeset
  2985
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2986
lemma take_upt [simp]: "i+m <= n ==> take m [i..<n] = [i..<i+m]"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  2987
apply (induct m arbitrary: i, simp)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2988
apply (subst upt_rec)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2989
apply (rule sym)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2990
apply (subst upt_rec)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2991
apply (simp del: upt.simps)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2992
done
3507
157be29ad5ba Improved length = size translation.
nipkow
parents: 3465
diff changeset
  2993
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2994
lemma drop_upt[simp]: "drop m [i..<j] = [i+m..<j]"
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2995
apply(induct j)
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2996
apply auto
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2997
done
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2998
24645
1af302128da2 Generalized [_.._] from nat to linear orders
nipkow
parents: 24640
diff changeset
  2999
lemma map_Suc_upt: "map Suc [m..<n] = [Suc m..<Suc n]"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  3000
by (induct n) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  3001
54496
178922b63b58 add lemmas Suc_funpow and id_funpow to simpset; add lemma map_add_upt
hoelzl
parents: 54404
diff changeset
  3002
lemma map_add_upt: "map (\<lambda>i. i + n) [0..<m] = [n..<m + n]"
178922b63b58 add lemmas Suc_funpow and id_funpow to simpset; add lemma map_add_upt
hoelzl
parents: 54404
diff changeset
  3003
  by (induct m) simp_all
178922b63b58 add lemmas Suc_funpow and id_funpow to simpset; add lemma map_add_upt
hoelzl
parents: 54404
diff changeset
  3004
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  3005
lemma nth_map_upt: "i < n-m ==> (map f [m..<n]) ! i = f(m+i)"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  3006
apply (induct n m  arbitrary: i rule: diff_induct)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  3007
prefer 3 apply (subst map_Suc_upt[symmetric])
44921
58eef4843641 tuned proofs
huffman
parents: 44916
diff changeset
  3008
apply (auto simp add: less_diff_conv)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  3009
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  3010
52380
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  3011
lemma map_decr_upt:
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  3012
  "map (\<lambda>n. n - Suc 0) [Suc m..<Suc n] = [m..<n]"
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  3013
  by (induct n) simp_all
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  3014
13883
0451e0fb3f22 Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents: 13863
diff changeset
  3015
lemma nth_take_lemma:
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  3016
  "k <= length xs ==> k <= length ys ==>
13883
0451e0fb3f22 Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents: 13863
diff changeset
  3017
     (!!i. i < k --> xs!i = ys!i) ==> take k xs = take k ys"
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  3018
apply (atomize, induct k arbitrary: xs ys)
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  3019
apply (simp_all add: less_Suc_eq_0_disj all_conj_distrib, clarify)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  3020
txt {* Both lists must be non-empty *}
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  3021
apply (case_tac xs, simp)
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  3022
apply (case_tac ys, clarify)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  3023
 apply (simp (no_asm_use))
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  3024
apply clarify
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  3025
txt {* prenexing's needed, not miniscoping *}
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  3026
apply (simp (no_asm_use) add: all_simps [symmetric] del: all_simps)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  3027
apply blast
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  3028
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  3029
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  3030
lemma nth_equalityI:
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  3031
 "[| length xs = length ys; ALL i < length xs. xs!i = ys!i |] ==> xs = ys"
44921
58eef4843641 tuned proofs
huffman
parents: 44916
diff changeset
  3032
  by (frule nth_take_lemma [OF le_refl eq_imp_le]) simp_all
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  3033
24796
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  3034
lemma map_nth:
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  3035
  "map (\<lambda>i. xs ! i) [0..<length xs] = xs"
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  3036
  by (rule nth_equalityI, auto)
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  3037
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  3038
(* needs nth_equalityI *)
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  3039
lemma list_all2_antisym:
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  3040
  "\<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> 
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  3041
  \<Longrightarrow> xs = ys"
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  3042
  apply (simp add: list_all2_conv_all_nth) 
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  3043
  apply (rule nth_equalityI, blast, simp)
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  3044
  done
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  3045
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  3046
lemma take_equalityI: "(\<forall>i. take i xs = take i ys) ==> xs = ys"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  3047
-- {* The famous take-lemma. *}
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  3048
apply (drule_tac x = "max (length xs) (length ys)" in spec)
44921
58eef4843641 tuned proofs
huffman
parents: 44916
diff changeset
  3049
apply (simp add: le_max_iff_disj)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  3050
done
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  3051
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  3052
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  3053
lemma take_Cons':
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  3054
     "take n (x # xs) = (if n = 0 then [] else x # take (n - 1) xs)"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  3055
by (cases n) simp_all
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  3056
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  3057
lemma drop_Cons':
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  3058
     "drop n (x # xs) = (if n = 0 then x # xs else drop (n - 1) xs)"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  3059
by (cases n) simp_all
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  3060
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  3061
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
  3062
by (cases n) simp_all
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  3063
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46898
diff changeset
  3064
lemma take_Cons_numeral [simp]:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46898
diff changeset
  3065
  "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
  3066
by (simp add: take_Cons')
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46898
diff changeset
  3067
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46898
diff changeset
  3068
lemma drop_Cons_numeral [simp]:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46898
diff changeset
  3069
  "drop (numeral v) (x # xs) = drop (numeral v - 1) xs"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46898
diff changeset
  3070
by (simp add: drop_Cons')
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46898
diff changeset
  3071
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46898
diff changeset
  3072
lemma nth_Cons_numeral [simp]:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46898
diff changeset
  3073
  "(x # xs) ! numeral v = xs ! (numeral v - 1)"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46898
diff changeset
  3074
by (simp add: nth_Cons')
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  3075
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  3076
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
  3077
subsubsection {* @{text upto}: interval-list on @{typ int} *}
1dddf2f64266 got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents: 32078
diff changeset
  3078
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
  3079
function upto :: "int \<Rightarrow> int \<Rightarrow> int list" ("(1[_../_])") where
51166
a019e013b7e4 tail recursive code for function "upto"
nipkow
parents: 51160
diff changeset
  3080
  "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
  3081
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
  3082
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
  3083
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
  3084
51166
a019e013b7e4 tail recursive code for function "upto"
nipkow
parents: 51160
diff changeset
  3085
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
  3086
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46898
diff changeset
  3087
lemmas upto_rec_numeral [simp] =
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46898
diff changeset
  3088
  upto.simps[of "numeral m" "numeral n"]
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54404
diff changeset
  3089
  upto.simps[of "numeral m" "- numeral n"]
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54404
diff changeset
  3090
  upto.simps[of "- numeral m" "numeral n"]
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54404
diff changeset
  3091
  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
  3092
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
  3093
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
  3094
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
  3095
51166
a019e013b7e4 tail recursive code for function "upto"
nipkow
parents: 51160
diff changeset
  3096
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
  3097
by(simp add: upto.simps)
a019e013b7e4 tail recursive code for function "upto"
nipkow
parents: 51160
diff changeset
  3098
a019e013b7e4 tail recursive code for function "upto"
nipkow
parents: 51160
diff changeset
  3099
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
  3100
proof(induct "nat(j-i)" arbitrary: i j)
a019e013b7e4 tail recursive code for function "upto"
nipkow
parents: 51160
diff changeset
  3101
  case 0 thus ?case by(simp add: upto.simps)
a019e013b7e4 tail recursive code for function "upto"
nipkow
parents: 51160
diff changeset
  3102
next
a019e013b7e4 tail recursive code for function "upto"
nipkow
parents: 51160
diff changeset
  3103
  case (Suc n)
a019e013b7e4 tail recursive code for function "upto"
nipkow
parents: 51160
diff changeset
  3104
  hence "n = nat (j - (i + 1))" "i < j" by linarith+
a019e013b7e4 tail recursive code for function "upto"
nipkow
parents: 51160
diff changeset
  3105
  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
  3106
qed
a019e013b7e4 tail recursive code for function "upto"
nipkow
parents: 51160
diff changeset
  3107
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
  3108
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
  3109
proof(induct i j rule:upto.induct)
edbf0a86fb1c adding simproc to rewrite list comprehensions to set comprehensions; adopting proofs
bulwahn
parents: 41372
diff changeset
  3110
  case (1 i j)
edbf0a86fb1c adding simproc to rewrite list comprehensions to set comprehensions; adopting proofs
bulwahn
parents: 41372
diff changeset
  3111
  from this show ?case
edbf0a86fb1c adding simproc to rewrite list comprehensions to set comprehensions; adopting proofs
bulwahn
parents: 41372
diff changeset
  3112
    unfolding upto.simps[of i j] simp_from_to[of i j] by auto
edbf0a86fb1c adding simproc to rewrite list comprehensions to set comprehensions; adopting proofs
bulwahn
parents: 41372
diff changeset
  3113
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
  3114
51166
a019e013b7e4 tail recursive code for function "upto"
nipkow
parents: 51160
diff changeset
  3115
text{* Tail recursive version for code generation: *}
a019e013b7e4 tail recursive code for function "upto"
nipkow
parents: 51160
diff changeset
  3116
51170
b3cdcba073d5 simplified construction of upto_aux
haftmann
parents: 51166
diff changeset
  3117
definition upto_aux :: "int \<Rightarrow> int \<Rightarrow> int list \<Rightarrow> int list" where
b3cdcba073d5 simplified construction of upto_aux
haftmann
parents: 51166
diff changeset
  3118
  "upto_aux i j js = [i..j] @ js"
b3cdcba073d5 simplified construction of upto_aux
haftmann
parents: 51166
diff changeset
  3119
b3cdcba073d5 simplified construction of upto_aux
haftmann
parents: 51166
diff changeset
  3120
lemma upto_aux_rec [code]:
51166
a019e013b7e4 tail recursive code for function "upto"
nipkow
parents: 51160
diff changeset
  3121
  "upto_aux i j js = (if j<i then js else upto_aux i (j - 1) (j#js))"
51170
b3cdcba073d5 simplified construction of upto_aux
haftmann
parents: 51166
diff changeset
  3122
  by (simp add: upto_aux_def upto_rec2)
51166
a019e013b7e4 tail recursive code for function "upto"
nipkow
parents: 51160
diff changeset
  3123
a019e013b7e4 tail recursive code for function "upto"
nipkow
parents: 51160
diff changeset
  3124
lemma upto_code[code]: "[i..j] = upto_aux i j []"
51170
b3cdcba073d5 simplified construction of upto_aux
haftmann
parents: 51166
diff changeset
  3125
by(simp add: upto_aux_def)
51166
a019e013b7e4 tail recursive code for function "upto"
nipkow
parents: 51160
diff changeset
  3126
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
  3127
53721
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3128
subsubsection {* @{const distinct} and @{const remdups} and @{const remdups_adj} *}
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  3129
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
  3130
lemma distinct_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
  3131
  "distinct xs \<Longrightarrow> distinct (tl 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
  3132
  by (cases xs) simp_all
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
  3133
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  3134
lemma distinct_append [simp]:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  3135
"distinct (xs @ ys) = (distinct xs \<and> distinct ys \<and> set xs \<inter> set ys = {})"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  3136
by (induct xs) auto
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  3137
15305
0bd9eedaa301 added lemmas
nipkow
parents: 15304
diff changeset
  3138
lemma distinct_rev[simp]: "distinct(rev xs) = distinct xs"
0bd9eedaa301 added lemmas
nipkow
parents: 15304
diff changeset
  3139
by(induct xs) auto
0bd9eedaa301 added lemmas
nipkow
parents: 15304
diff changeset
  3140
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  3141
lemma set_remdups [simp]: "set (remdups xs) = set xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  3142
by (induct xs) (auto simp add: insert_absorb)
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  3143
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  3144
lemma distinct_remdups [iff]: "distinct (remdups xs)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  3145
by (induct xs) auto
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  3146
25287
094dab519ff5 added lemmas
nipkow
parents: 25277
diff changeset
  3147
lemma distinct_remdups_id: "distinct xs ==> remdups xs = xs"
094dab519ff5 added lemmas
nipkow
parents: 25277
diff changeset
  3148
by (induct xs, auto)
094dab519ff5 added lemmas
nipkow
parents: 25277
diff changeset
  3149
26734
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  3150
lemma remdups_id_iff_distinct [simp]: "remdups xs = xs \<longleftrightarrow> distinct xs"
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  3151
by (metis distinct_remdups distinct_remdups_id)
25287
094dab519ff5 added lemmas
nipkow
parents: 25277
diff changeset
  3152
24566
2bfa0215904c added lemma
nipkow
parents: 24526
diff changeset
  3153
lemma finite_distinct_list: "finite A \<Longrightarrow> EX xs. set xs = A & distinct xs"
24632
779fc4fcbf8b metis now available in PreList
paulson
parents: 24617
diff changeset
  3154
by (metis distinct_remdups finite_list set_remdups)
24566
2bfa0215904c added lemma
nipkow
parents: 24526
diff changeset
  3155
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 15064
diff changeset
  3156
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
  3157
by (induct x, auto)
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 15064
diff changeset
  3158
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 15064
diff changeset
  3159
lemma remdups_eq_nil_right_iff [simp]: "([] = remdups x) = (x = [])"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  3160
by (induct x, auto)
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 15064
diff changeset
  3161
15245
5a21d9a8f14b Added a few lemmas
nipkow
parents: 15236
diff changeset
  3162
lemma length_remdups_leq[iff]: "length(remdups xs) <= length xs"
5a21d9a8f14b Added a few lemmas
nipkow
parents: 15236
diff changeset
  3163
by (induct xs) auto
5a21d9a8f14b Added a few lemmas
nipkow
parents: 15236
diff changeset
  3164
5a21d9a8f14b Added a few lemmas
nipkow
parents: 15236
diff changeset
  3165
lemma length_remdups_eq[iff]:
5a21d9a8f14b Added a few lemmas
nipkow
parents: 15236
diff changeset
  3166
  "(length (remdups xs) = length xs) = (remdups xs = xs)"
5a21d9a8f14b Added a few lemmas
nipkow
parents: 15236
diff changeset
  3167
apply(induct xs)
5a21d9a8f14b Added a few lemmas
nipkow
parents: 15236
diff changeset
  3168
 apply auto
5a21d9a8f14b Added a few lemmas
nipkow
parents: 15236
diff changeset
  3169
apply(subgoal_tac "length (remdups xs) <= length xs")
5a21d9a8f14b Added a few lemmas
nipkow
parents: 15236
diff changeset
  3170
 apply arith
5a21d9a8f14b Added a few lemmas
nipkow
parents: 15236
diff changeset
  3171
apply(rule length_remdups_leq)
5a21d9a8f14b Added a few lemmas
nipkow
parents: 15236
diff changeset
  3172
done
5a21d9a8f14b Added a few lemmas
nipkow
parents: 15236
diff changeset
  3173
33945
8493ed132fed added remdups_filter lemma
nipkow
parents: 33640
diff changeset
  3174
lemma remdups_filter: "remdups(filter P xs) = filter P (remdups xs)"
8493ed132fed added remdups_filter lemma
nipkow
parents: 33640
diff changeset
  3175
apply(induct xs)
8493ed132fed added remdups_filter lemma
nipkow
parents: 33640
diff changeset
  3176
apply auto
8493ed132fed added remdups_filter lemma
nipkow
parents: 33640
diff changeset
  3177
done
18490
434e34392c40 new lemmas
nipkow
parents: 18451
diff changeset
  3178
434e34392c40 new lemmas
nipkow
parents: 18451
diff changeset
  3179
lemma distinct_map:
434e34392c40 new lemmas
nipkow
parents: 18451
diff changeset
  3180
  "distinct(map f xs) = (distinct xs & inj_on f (set xs))"
434e34392c40 new lemmas
nipkow
parents: 18451
diff changeset
  3181
by (induct xs) auto
434e34392c40 new lemmas
nipkow
parents: 18451
diff changeset
  3182
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  3183
lemma distinct_filter [simp]: "distinct xs ==> distinct (filter P xs)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  3184
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  3185
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3186
lemma distinct_upt[simp]: "distinct[i..<j]"
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3187
by (induct j) auto
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3188
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
  3189
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
  3190
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
  3191
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
  3192
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
  3193
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
  3194
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  3195
lemma distinct_take[simp]: "distinct xs \<Longrightarrow> distinct (take i xs)"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  3196
apply(induct xs arbitrary: i)
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3197
 apply simp
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3198
apply (case_tac i)
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3199
 apply simp_all
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3200
apply(blast dest:in_set_takeD)
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3201
done
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3202
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  3203
lemma distinct_drop[simp]: "distinct xs \<Longrightarrow> distinct (drop i xs)"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  3204
apply(induct xs arbitrary: i)
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3205
 apply simp
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3206
apply (case_tac i)
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3207
 apply simp_all
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3208
done
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3209
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3210
lemma distinct_list_update:
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3211
assumes d: "distinct xs" and a: "a \<notin> set xs - {xs!i}"
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3212
shows "distinct (xs[i:=a])"
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3213
proof (cases "i < length xs")
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3214
  case True
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3215
  with a have "a \<notin> set (take i xs @ xs ! i # drop (Suc i) xs) - {xs!i}"
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3216
    apply (drule_tac id_take_nth_drop) by simp
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3217
  with d True show ?thesis
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3218
    apply (simp add: upd_conv_take_nth_drop)
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3219
    apply (drule subst [OF id_take_nth_drop]) apply assumption
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3220
    apply simp apply (cases "a = xs!i") apply simp by blast
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3221
next
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3222
  case False with d show ?thesis by auto
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3223
qed
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3224
31363
7493b571b37d Added theorems about distinct & concat, map & replicate and concat & replicate
hoelzl
parents: 31264
diff changeset
  3225
lemma distinct_concat:
7493b571b37d Added theorems about distinct & concat, map & replicate and concat & replicate
hoelzl
parents: 31264
diff changeset
  3226
  assumes "distinct xs"
7493b571b37d Added theorems about distinct & concat, map & replicate and concat & replicate
hoelzl
parents: 31264
diff changeset
  3227
  and "\<And> ys. ys \<in> set xs \<Longrightarrow> distinct ys"
7493b571b37d Added theorems about distinct & concat, map & replicate and concat & replicate
hoelzl
parents: 31264
diff changeset
  3228
  and "\<And> ys zs. \<lbrakk> ys \<in> set xs ; zs \<in> set xs ; ys \<noteq> zs \<rbrakk> \<Longrightarrow> set ys \<inter> set zs = {}"
7493b571b37d Added theorems about distinct & concat, map & replicate and concat & replicate
hoelzl
parents: 31264
diff changeset
  3229
  shows "distinct (concat xs)"
7493b571b37d Added theorems about distinct & concat, map & replicate and concat & replicate
hoelzl
parents: 31264
diff changeset
  3230
  using assms by (induct xs) auto
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3231
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3232
text {* It is best to avoid this indexed version of distinct, but
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3233
sometimes it is useful. *}
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3234
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  3235
lemma distinct_conv_nth:
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  3236
"distinct xs = (\<forall>i < size xs. \<forall>j < size xs. i \<noteq> j --> xs!i \<noteq> xs!j)"
15251
bb6f072c8d10 converted some induct_tac to induct
paulson
parents: 15246
diff changeset
  3237
apply (induct xs, simp, simp)
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  3238
apply (rule iffI, clarsimp)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  3239
 apply (case_tac i)
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  3240
apply (case_tac j, simp)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  3241
apply (simp add: set_conv_nth)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  3242
 apply (case_tac j)
46440
d4994e2e7364 use 'primrec' to define "rotate1", for uniformity (and to help first-order tools that rely on "Spec_Rules")
blanchet
parents: 46439
diff changeset
  3243
apply (clarsimp simp add: set_conv_nth, simp)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  3244
apply (rule conjI)
24648
1e8053a6d725 metis too slow
paulson
parents: 24645
diff changeset
  3245
(*TOO SLOW
24632
779fc4fcbf8b metis now available in PreList
paulson
parents: 24617
diff changeset
  3246
apply (metis Zero_neq_Suc gr0_conv_Suc in_set_conv_nth lessI less_trans_Suc nth_Cons' nth_Cons_Suc)
24648
1e8053a6d725 metis too slow
paulson
parents: 24645
diff changeset
  3247
*)
1e8053a6d725 metis too slow
paulson
parents: 24645
diff changeset
  3248
 apply (clarsimp simp add: set_conv_nth)
1e8053a6d725 metis too slow
paulson
parents: 24645
diff changeset
  3249
 apply (erule_tac x = 0 in allE, simp)
1e8053a6d725 metis too slow
paulson
parents: 24645
diff changeset
  3250
 apply (erule_tac x = "Suc i" in allE, simp, clarsimp)
25130
d91391a8705b avoid very slow metis invocation;
wenzelm
parents: 25112
diff changeset
  3251
(*TOO SLOW
24632
779fc4fcbf8b metis now available in PreList
paulson
parents: 24617
diff changeset
  3252
apply (metis Suc_Suc_eq lessI less_trans_Suc nth_Cons_Suc)
25130
d91391a8705b avoid very slow metis invocation;
wenzelm
parents: 25112
diff changeset
  3253
*)
d91391a8705b avoid very slow metis invocation;
wenzelm
parents: 25112
diff changeset
  3254
apply (erule_tac x = "Suc i" in allE, simp)
d91391a8705b avoid very slow metis invocation;
wenzelm
parents: 25112
diff changeset
  3255
apply (erule_tac x = "Suc j" in allE, simp)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  3256
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  3257
18490
434e34392c40 new lemmas
nipkow
parents: 18451
diff changeset
  3258
lemma nth_eq_iff_index_eq:
434e34392c40 new lemmas
nipkow
parents: 18451
diff changeset
  3259
 "\<lbrakk> distinct xs; i < length xs; j < length xs \<rbrakk> \<Longrightarrow> (xs!i = xs!j) = (i = j)"
434e34392c40 new lemmas
nipkow
parents: 18451
diff changeset
  3260
by(auto simp: distinct_conv_nth)
434e34392c40 new lemmas
nipkow
parents: 18451
diff changeset
  3261
15110
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  3262
lemma distinct_card: "distinct xs ==> card (set xs) = size xs"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  3263
by (induct xs) auto
14388
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  3264
15110
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  3265
lemma card_distinct: "card (set xs) = size xs ==> distinct xs"
14388
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  3266
proof (induct xs)
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  3267
  case Nil thus ?case by simp
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  3268
next
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  3269
  case (Cons x xs)
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  3270
  show ?case
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  3271
  proof (cases "x \<in> set xs")
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  3272
    case False with Cons show ?thesis by simp
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  3273
  next
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  3274
    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
  3275
    have "card (set xs) = Suc (length xs)"
14388
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  3276
      by (simp add: card_insert_if split: split_if_asm)
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  3277
    moreover have "card (set xs) \<le> length xs" by (rule card_length)
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  3278
    ultimately have False by simp
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  3279
    thus ?thesis ..
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  3280
  qed
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  3281
qed
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  3282
45115
93c1ac6727a3 adding lemma to List library for executable equation of the (refl) transitive closure
bulwahn
parents: 44928
diff changeset
  3283
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
  3284
by (induct xs) (auto)
93c1ac6727a3 adding lemma to List library for executable equation of the (refl) transitive closure
bulwahn
parents: 44928
diff changeset
  3285
25287
094dab519ff5 added lemmas
nipkow
parents: 25277
diff changeset
  3286
lemma not_distinct_decomp: "~ distinct ws ==> EX xs ys zs y. ws = xs@[y]@ys@[y]@zs"
094dab519ff5 added lemmas
nipkow
parents: 25277
diff changeset
  3287
apply (induct n == "length ws" arbitrary:ws) apply simp
094dab519ff5 added lemmas
nipkow
parents: 25277
diff changeset
  3288
apply(case_tac ws) apply simp
094dab519ff5 added lemmas
nipkow
parents: 25277
diff changeset
  3289
apply (simp split:split_if_asm)
094dab519ff5 added lemmas
nipkow
parents: 25277
diff changeset
  3290
apply (metis Cons_eq_appendI eq_Nil_appendI split_list)
094dab519ff5 added lemmas
nipkow
parents: 25277
diff changeset
  3291
done
18490
434e34392c40 new lemmas
nipkow
parents: 18451
diff changeset
  3292
45841
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3293
lemma not_distinct_conv_prefix:
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3294
  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
  3295
  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
  3296
proof
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3297
  assume "?L" then show "?R"
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3298
  proof (induct "length as" arbitrary: as rule: less_induct)
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3299
    case less
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3300
    obtain xs ys zs y where decomp: "as = (xs @ y # ys) @ y # zs"
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3301
      using not_distinct_decomp[OF less.prems] by auto
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3302
    show ?case
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3303
    proof (cases "distinct (xs @ y # ys)")
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3304
      case True
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3305
      with decomp have "dec as (xs @ y # ys) y zs" by (simp add: dec_def)
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3306
      then show ?thesis by blast
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3307
    next
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3308
      case False
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3309
      with less decomp obtain xs' y' ys' where "dec (xs @ y # ys) xs' y' ys'"
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3310
        by atomize_elim auto
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3311
      with decomp have "dec as xs' y' (ys' @ y # zs)" by (simp add: dec_def)
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3312
      then show ?thesis by blast
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3313
    qed
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3314
  qed
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3315
qed (auto simp: dec_def)
fe1ef1f3ee55 added lemmas
noschinl
parents: 45794
diff changeset
  3316
49948
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  3317
lemma distinct_product:
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  3318
  assumes "distinct xs" and "distinct ys"
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  3319
  shows "distinct (List.product xs ys)"
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  3320
  using assms by (induct xs)
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  3321
    (auto intro: inj_onI simp add: product_list_set distinct_map)
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  3322
53721
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3323
lemma distinct_product_lists:
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3324
  assumes "\<forall>xs \<in> set xss. distinct xs"
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3325
  shows "distinct (product_lists xss)"
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3326
using assms proof (induction xss)
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3327
  case (Cons xs xss) note * = this
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3328
  then show ?case
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3329
  proof (cases "product_lists xss")
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3330
    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
  3331
  next
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3332
    case (Cons ps pss) with * show ?thesis 
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3333
      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
  3334
  qed
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3335
qed simp
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3336
18490
434e34392c40 new lemmas
nipkow
parents: 18451
diff changeset
  3337
lemma length_remdups_concat:
44921
58eef4843641 tuned proofs
huffman
parents: 44916
diff changeset
  3338
  "length (remdups (concat xss)) = card (\<Union>xs\<in>set xss. set xs)"
58eef4843641 tuned proofs
huffman
parents: 44916
diff changeset
  3339
  by (simp add: distinct_card [symmetric])
17906
719364f5179b added 2 lemmas
nipkow
parents: 17877
diff changeset
  3340
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
  3341
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
  3342
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
  3343
  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
  3344
  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
  3345
qed
17906
719364f5179b added 2 lemmas
nipkow
parents: 17877
diff changeset
  3346
36275
c6ca9e258269 lemmas concerning remdups
haftmann
parents: 36199
diff changeset
  3347
lemma remdups_remdups:
c6ca9e258269 lemmas concerning remdups
haftmann
parents: 36199
diff changeset
  3348
  "remdups (remdups xs) = remdups xs"
c6ca9e258269 lemmas concerning remdups
haftmann
parents: 36199
diff changeset
  3349
  by (induct xs) simp_all
c6ca9e258269 lemmas concerning remdups
haftmann
parents: 36199
diff changeset
  3350
36851
5135adb33157 added lemmas concerning last, butlast, insort
haftmann
parents: 36622
diff changeset
  3351
lemma distinct_butlast:
46500
0196966d6d2d removing unnecessary premises in theorems of List theory
bulwahn
parents: 46448
diff changeset
  3352
  assumes "distinct xs"
36851
5135adb33157 added lemmas concerning last, butlast, insort
haftmann
parents: 36622
diff changeset
  3353
  shows "distinct (butlast xs)"
46500
0196966d6d2d removing unnecessary premises in theorems of List theory
bulwahn
parents: 46448
diff changeset
  3354
proof (cases "xs = []")
0196966d6d2d removing unnecessary premises in theorems of List theory
bulwahn
parents: 46448
diff changeset
  3355
  case False
0196966d6d2d removing unnecessary premises in theorems of List theory
bulwahn
parents: 46448
diff changeset
  3356
    from `xs \<noteq> []` obtain ys y where "xs = ys @ [y]" by (cases xs rule: rev_cases) auto
0196966d6d2d removing unnecessary premises in theorems of List theory
bulwahn
parents: 46448
diff changeset
  3357
    with `distinct xs` show ?thesis by simp
0196966d6d2d removing unnecessary premises in theorems of List theory
bulwahn
parents: 46448
diff changeset
  3358
qed (auto)
36851
5135adb33157 added lemmas concerning last, butlast, insort
haftmann
parents: 36622
diff changeset
  3359
39728
832c42be723e lemma remdups_map_remdups
haftmann
parents: 39613
diff changeset
  3360
lemma remdups_map_remdups:
832c42be723e lemma remdups_map_remdups
haftmann
parents: 39613
diff changeset
  3361
  "remdups (map f (remdups xs)) = remdups (map f xs)"
832c42be723e lemma remdups_map_remdups
haftmann
parents: 39613
diff changeset
  3362
  by (induct xs) simp_all
832c42be723e lemma remdups_map_remdups
haftmann
parents: 39613
diff changeset
  3363
39915
ecf97cf3d248 turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents: 39774
diff changeset
  3364
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
  3365
  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
  3366
  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
  3367
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
  3368
  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
  3369
  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
  3370
  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
  3371
  with assms have "distinct 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
  3372
  with `length xs' = length ys'` show "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
  3373
    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
  3374
qed
ecf97cf3d248 turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents: 39774
diff changeset
  3375
ecf97cf3d248 turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents: 39774
diff changeset
  3376
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
  3377
  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
  3378
  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
  3379
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
  3380
  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
  3381
  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
  3382
  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
  3383
  with assms have "distinct ys'" by simp
ecf97cf3d248 turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents: 39774
diff changeset
  3384
  with `length xs' = length ys'` show "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
  3385
    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
  3386
qed
ecf97cf3d248 turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents: 39774
diff changeset
  3387
47122
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3388
lemma set_take_disj_set_drop_if_distinct:
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3389
  "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
  3390
by (auto simp: in_set_conv_nth distinct_conv_nth)
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3391
44635
3d046864ebe6 added two lemmas about "distinct" to help Sledgehammer
blanchet
parents: 44619
diff changeset
  3392
(* The next two lemmas help Sledgehammer. *)
3d046864ebe6 added two lemmas about "distinct" to help Sledgehammer
blanchet
parents: 44619
diff changeset
  3393
3d046864ebe6 added two lemmas about "distinct" to help Sledgehammer
blanchet
parents: 44619
diff changeset
  3394
lemma distinct_singleton: "distinct [x]" by simp
3d046864ebe6 added two lemmas about "distinct" to help Sledgehammer
blanchet
parents: 44619
diff changeset
  3395
3d046864ebe6 added two lemmas about "distinct" to help Sledgehammer
blanchet
parents: 44619
diff changeset
  3396
lemma distinct_length_2_or_more:
3d046864ebe6 added two lemmas about "distinct" to help Sledgehammer
blanchet
parents: 44619
diff changeset
  3397
"distinct (a # b # xs) \<longleftrightarrow> (a \<noteq> b \<and> distinct (a # xs) \<and> distinct (b # xs))"
55405
0a155051bd9d use new selector support to define 'the', 'hd', 'tl'
blanchet
parents: 55404
diff changeset
  3398
by (metis distinct.simps(2) list.sel(1) hd_in_set list.simps(2) set_ConsD set_rev_mp
0a155051bd9d use new selector support to define 'the', 'hd', 'tl'
blanchet
parents: 55404
diff changeset
  3399
      set_subset_Cons)
44635
3d046864ebe6 added two lemmas about "distinct" to help Sledgehammer
blanchet
parents: 44619
diff changeset
  3400
53721
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3401
lemma remdups_adj_Cons: "remdups_adj (x # xs) =
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3402
  (case remdups_adj xs of [] \<Rightarrow> [x] | y # xs \<Rightarrow> if x = y then y # xs else x # y # xs)"
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3403
  by (induct xs arbitrary: x) (auto split: list.splits)
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3404
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3405
lemma remdups_adj_append_two: 
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3406
  "remdups_adj (xs @ [x,y]) = remdups_adj (xs @ [x]) @ (if x = y then [] else [y])"
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3407
  by (induct xs rule: remdups_adj.induct, simp_all)
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3408
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3409
lemma remdups_adj_rev[simp]: "remdups_adj (rev xs) = rev (remdups_adj xs)"
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3410
  by (induct xs rule: remdups_adj.induct, simp_all add: remdups_adj_append_two)
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3411
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3412
lemma remdups_adj_length[simp]: "length (remdups_adj xs) \<le> length xs"
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3413
  by (induct xs rule: remdups_adj.induct, auto)
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3414
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3415
lemma remdups_adj_length_ge1[simp]: "xs \<noteq> [] \<Longrightarrow> length (remdups_adj xs) \<ge> Suc 0"
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3416
  by (induct xs rule: remdups_adj.induct, simp_all)
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3417
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3418
lemma remdups_adj_Nil_iff[simp]: "remdups_adj xs = [] \<longleftrightarrow> xs = []"
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3419
  by (induct xs rule: remdups_adj.induct, simp_all)
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3420
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3421
lemma remdups_adj_set[simp]: "set (remdups_adj xs) = set xs"
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3422
  by (induct xs rule: remdups_adj.induct, simp_all)
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3423
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3424
lemma remdups_adj_Cons_alt[simp]: "x # tl (remdups_adj (x # xs)) = remdups_adj (x # xs)"
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3425
    by (induct xs rule: remdups_adj.induct, auto)
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3426
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3427
lemma remdups_adj_distinct: "distinct xs \<Longrightarrow> remdups_adj xs = xs"
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3428
    by (induct xs rule: remdups_adj.induct, simp_all)
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3429
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3430
lemma remdups_adj_append: 
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3431
  "remdups_adj (xs\<^sub>1 @ x # xs\<^sub>2) = remdups_adj (xs\<^sub>1 @ [x]) @ tl (remdups_adj (x # xs\<^sub>2))"
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3432
  by (induct xs\<^sub>1 rule: remdups_adj.induct, simp_all)
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3433
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3434
lemma remdups_adj_singleton:
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3435
  "remdups_adj xs = [x] \<Longrightarrow> xs = replicate (length xs) x"
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3436
  by (induct xs rule: remdups_adj.induct, auto split: split_if_asm)
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3437
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3438
lemma remdups_adj_map_injective:
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3439
  assumes "inj f"
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3440
  shows "remdups_adj (map f xs) = map f (remdups_adj xs)"
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3441
  by (induct xs rule: remdups_adj.induct, 
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3442
      auto simp add: injD[OF assms])
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3443
49948
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  3444
37605
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  3445
subsubsection {* List summation: @{const listsum} and @{text"\<Sum>"}*}
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  3446
39774
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3447
lemma (in monoid_add) listsum_simps [simp]:
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3448
  "listsum [] = 0"
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
  3449
  "listsum (x # xs) = x + listsum xs"
39774
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3450
  by (simp_all add: listsum_def)
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3451
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3452
lemma (in monoid_add) listsum_append [simp]:
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3453
  "listsum (xs @ ys) = listsum xs + listsum ys"
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3454
  by (induct xs) (simp_all add: add.assoc)
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3455
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3456
lemma (in comm_monoid_add) listsum_rev [simp]:
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3457
  "listsum (rev xs) = listsum xs"
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
  3458
  by (simp add: listsum_def foldr_fold fold_rev fun_eq_iff add_ac)
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
  3459
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  3460
lemma (in monoid_add) fold_plus_listsum_rev:
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  3461
  "fold plus xs = plus (listsum (rev xs))"
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  3462
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
  3463
  fix 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
  3464
  have "fold plus xs x = fold plus xs (x + 0)" by simp
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  3465
  also have "\<dots> = fold plus (x # xs) 0" 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
  3466
  also have "\<dots> = foldr plus (rev xs @ [x]) 0" by (simp add: 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
  3467
  also have "\<dots> = listsum (rev xs @ [x])" by (simp add: listsum_def)
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  3468
  also have "\<dots> = listsum (rev xs) + listsum [x]" by simp
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  3469
  finally show "fold plus xs x = listsum (rev xs) + x" by simp
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  3470
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
  3471
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  3472
text{* Some syntactic sugar for summing a function over a list: *}
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  3473
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  3474
syntax
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  3475
  "_listsum" :: "pttrn => 'a list => 'b => 'b"    ("(3SUM _<-_. _)" [0, 51, 10] 10)
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  3476
syntax (xsymbols)
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  3477
  "_listsum" :: "pttrn => 'a list => 'b => 'b"    ("(3\<Sum>_\<leftarrow>_. _)" [0, 51, 10] 10)
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  3478
syntax (HTML output)
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  3479
  "_listsum" :: "pttrn => 'a list => 'b => 'b"    ("(3\<Sum>_\<leftarrow>_. _)" [0, 51, 10] 10)
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  3480
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  3481
translations -- {* Beware of argument permutation! *}
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  3482
  "SUM x<-xs. b" == "CONST listsum (CONST map (%x. b) xs)"
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  3483
  "\<Sum>x\<leftarrow>xs. b" == "CONST listsum (CONST map (%x. b) xs)"
39774
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3484
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3485
lemma (in comm_monoid_add) listsum_map_remove1:
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3486
  "x \<in> set xs \<Longrightarrow> listsum (map f xs) = f x + listsum (map f (remove1 x xs))"
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3487
  by (induct xs) (auto simp add: ac_simps)
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3488
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3489
lemma (in monoid_add) list_size_conv_listsum:
37605
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  3490
  "list_size f xs = listsum (map f xs) + size xs"
39774
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3491
  by (induct xs) auto
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3492
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3493
lemma (in monoid_add) length_concat:
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3494
  "length (concat xss) = listsum (map length xss)"
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3495
  by (induct xss) simp_all
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3496
53721
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3497
lemma (in monoid_add) length_product_lists:
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3498
  "length (product_lists xss) = foldr op * (map length xss) 1"
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3499
proof (induct xss)
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3500
  case (Cons xs xss) then show ?case by (induct xs) (auto simp: length_concat o_def)
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3501
qed simp
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  3502
39774
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3503
lemma (in monoid_add) listsum_map_filter:
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3504
  assumes "\<And>x. x \<in> set xs \<Longrightarrow> \<not> P x \<Longrightarrow> f x = 0"
37605
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  3505
  shows "listsum (map f (filter P xs)) = listsum (map f xs)"
39774
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3506
  using assms by (induct xs) auto
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3507
51738
9e4220605179 tuned: unnamed contexts, interpretation and sublocale in locale target;
haftmann
parents: 51717
diff changeset
  3508
lemma (in comm_monoid_add) distinct_listsum_conv_Setsum:
39774
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3509
  "distinct xs \<Longrightarrow> listsum xs = Setsum (set xs)"
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3510
  by (induct xs) simp_all
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3511
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3512
lemma listsum_eq_0_nat_iff_nat [simp]:
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3513
  "listsum ns = (0::nat) \<longleftrightarrow> (\<forall>n \<in> set ns. n = 0)"
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
  3514
  by (induct ns) simp_all
d654c73e4b12 no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents: 47131
diff changeset
  3515
d654c73e4b12 no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents: 47131
diff changeset
  3516
lemma member_le_listsum_nat:
d654c73e4b12 no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents: 47131
diff changeset
  3517
  "(n :: nat) \<in> set ns \<Longrightarrow> n \<le> listsum ns"
d654c73e4b12 no preference wrt. fold(l/r); prefer fold rather than foldr for iterating over lists in generated code
haftmann
parents: 47131
diff changeset
  3518
  by (induct ns) auto
39774
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3519
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3520
lemma elem_le_listsum_nat:
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3521
  "k < size ns \<Longrightarrow> ns ! k \<le> listsum (ns::nat list)"
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
  3522
  by (rule member_le_listsum_nat) simp
37605
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  3523
39774
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3524
lemma listsum_update_nat:
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
  3525
  "k < size ns \<Longrightarrow> listsum (ns[k := (n::nat)]) = listsum ns + n - ns ! k"
37605
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  3526
apply(induct ns arbitrary:k)
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  3527
 apply (auto split:nat.split)
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  3528
apply(drule elem_le_listsum_nat)
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  3529
apply arith
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  3530
done
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  3531
39774
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3532
lemma (in monoid_add) listsum_triv:
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3533
  "(\<Sum>x\<leftarrow>xs. r) = of_nat (length xs) * r"
49962
a8cc904a6820 Renamed {left,right}_distrib to distrib_{right,left}.
webertj
parents: 49808
diff changeset
  3534
  by (induct xs) (simp_all add: distrib_right)
37605
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  3535
39774
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3536
lemma (in monoid_add) listsum_0 [simp]:
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3537
  "(\<Sum>x\<leftarrow>xs. 0) = 0"
49962
a8cc904a6820 Renamed {left,right}_distrib to distrib_{right,left}.
webertj
parents: 49808
diff changeset
  3538
  by (induct xs) (simp_all add: distrib_right)
37605
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  3539
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  3540
text{* For non-Abelian groups @{text xs} needs to be reversed on one side: *}
39774
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3541
lemma (in ab_group_add) uminus_listsum_map:
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3542
  "- listsum (map f xs) = listsum (map (uminus \<circ> f) xs)"
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3543
  by (induct xs) simp_all
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3544
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3545
lemma (in comm_monoid_add) listsum_addf:
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3546
  "(\<Sum>x\<leftarrow>xs. f x + g x) = listsum (map f xs) + listsum (map g xs)"
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3547
  by (induct xs) (simp_all add: algebra_simps)
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3548
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3549
lemma (in ab_group_add) listsum_subtractf:
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3550
  "(\<Sum>x\<leftarrow>xs. f x - g x) = listsum (map f xs) - listsum (map g xs)"
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3551
  by (induct xs) (simp_all add: algebra_simps)
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3552
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3553
lemma (in semiring_0) listsum_const_mult:
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3554
  "(\<Sum>x\<leftarrow>xs. c * f x) = c * (\<Sum>x\<leftarrow>xs. f x)"
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3555
  by (induct xs) (simp_all add: algebra_simps)
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3556
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3557
lemma (in semiring_0) listsum_mult_const:
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3558
  "(\<Sum>x\<leftarrow>xs. f x * c) = (\<Sum>x\<leftarrow>xs. f x) * c"
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3559
  by (induct xs) (simp_all add: algebra_simps)
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3560
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3561
lemma (in ordered_ab_group_add_abs) listsum_abs:
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3562
  "\<bar>listsum xs\<bar> \<le> listsum (map abs xs)"
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3563
  by (induct xs) (simp_all add: order_trans [OF abs_triangle_ineq])
37605
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  3564
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  3565
lemma listsum_mono:
39774
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3566
  fixes f g :: "'a \<Rightarrow> 'b::{monoid_add, ordered_ab_semigroup_add}"
37605
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  3567
  shows "(\<And>x. x \<in> set xs \<Longrightarrow> f x \<le> g x) \<Longrightarrow> (\<Sum>x\<leftarrow>xs. f x) \<le> (\<Sum>x\<leftarrow>xs. g x)"
39774
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3568
  by (induct xs) (simp, simp add: add_mono)
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3569
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3570
lemma (in monoid_add) listsum_distinct_conv_setsum_set:
37605
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  3571
  "distinct xs \<Longrightarrow> listsum (map f xs) = setsum f (set xs)"
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  3572
  by (induct xs) simp_all
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  3573
39774
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3574
lemma (in monoid_add) interv_listsum_conv_setsum_set_nat:
37605
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  3575
  "listsum (map f [m..<n]) = setsum f (set [m..<n])"
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  3576
  by (simp add: listsum_distinct_conv_setsum_set)
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  3577
39774
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3578
lemma (in monoid_add) interv_listsum_conv_setsum_set_int:
37605
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  3579
  "listsum (map f [k..l]) = setsum f (set [k..l])"
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  3580
  by (simp add: listsum_distinct_conv_setsum_set)
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  3581
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  3582
text {* General equivalence between @{const listsum} and @{const setsum} *}
39774
30cf9d80939e localized listsum
haftmann
parents: 39728
diff changeset
  3583
lemma (in monoid_add) listsum_setsum_nth:
37605
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  3584
  "listsum xs = (\<Sum> i = 0 ..< length xs. xs ! i)"
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  3585
  using interv_listsum_conv_setsum_set_nat [of "op ! xs" 0 "length xs"] by (simp add: map_nth)
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  3586
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  3587
34978
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  3588
subsubsection {* @{const insert} *}
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  3589
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  3590
lemma in_set_insert [simp]:
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  3591
  "x \<in> set xs \<Longrightarrow> List.insert x xs = xs"
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  3592
  by (simp add: List.insert_def)
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  3593
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  3594
lemma not_in_set_insert [simp]:
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  3595
  "x \<notin> set xs \<Longrightarrow> List.insert x xs = x # xs"
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  3596
  by (simp add: List.insert_def)
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  3597
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  3598
lemma insert_Nil [simp]:
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  3599
  "List.insert x [] = [x]"
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  3600
  by simp
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  3601
35295
397295fa8387 lemma distinct_insert
haftmann
parents: 35248
diff changeset
  3602
lemma set_insert [simp]:
34978
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  3603
  "set (List.insert x xs) = insert x (set xs)"
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  3604
  by (auto simp add: List.insert_def)
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  3605
35295
397295fa8387 lemma distinct_insert
haftmann
parents: 35248
diff changeset
  3606
lemma distinct_insert [simp]:
397295fa8387 lemma distinct_insert
haftmann
parents: 35248
diff changeset
  3607
  "distinct xs \<Longrightarrow> distinct (List.insert x xs)"
397295fa8387 lemma distinct_insert
haftmann
parents: 35248
diff changeset
  3608
  by (simp add: List.insert_def)
397295fa8387 lemma distinct_insert
haftmann
parents: 35248
diff changeset
  3609
36275
c6ca9e258269 lemmas concerning remdups
haftmann
parents: 36199
diff changeset
  3610
lemma insert_remdups:
c6ca9e258269 lemmas concerning remdups
haftmann
parents: 36199
diff changeset
  3611
  "List.insert x (remdups xs) = remdups (List.insert x xs)"
c6ca9e258269 lemmas concerning remdups
haftmann
parents: 36199
diff changeset
  3612
  by (simp add: List.insert_def)
c6ca9e258269 lemmas concerning remdups
haftmann
parents: 36199
diff changeset
  3613
34978
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  3614
47122
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3615
subsubsection {* @{const List.find} *}
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3616
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3617
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
  3618
proof (induction xs)
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3619
  case Nil thus ?case by simp
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3620
next
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3621
  case (Cons x xs) thus ?case by (fastforce split: if_splits)
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3622
qed
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3623
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3624
lemma find_Some_iff:
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3625
  "List.find P xs = Some x \<longleftrightarrow>
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3626
  (\<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
  3627
proof (induction xs)
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3628
  case Nil thus ?case by simp
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3629
next
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3630
  case (Cons x xs) thus ?case
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3631
    by(auto simp: nth_Cons' split: if_splits)
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3632
      (metis One_nat_def diff_Suc_1 less_Suc_eq_0_disj)
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3633
qed
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3634
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3635
lemma find_cong[fundef_cong]:
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3636
  assumes "xs = ys" and "\<And>x. x \<in> set ys \<Longrightarrow> P x = Q x" 
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3637
  shows "List.find P xs = List.find Q ys"
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3638
proof (cases "List.find P xs")
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3639
  case None thus ?thesis by (metis find_None_iff assms)
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3640
next
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3641
  case (Some x)
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3642
  hence "List.find Q ys = Some x" using assms
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3643
    by (auto simp add: find_Some_iff)
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3644
  thus ?thesis using Some by auto
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3645
qed
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3646
52379
7f864f2219a9 selection operator smallest_prime_beyond
haftmann
parents: 52148
diff changeset
  3647
lemma find_dropWhile:
7f864f2219a9 selection operator smallest_prime_beyond
haftmann
parents: 52148
diff changeset
  3648
  "List.find P xs = (case dropWhile (Not \<circ> P) xs
7f864f2219a9 selection operator smallest_prime_beyond
haftmann
parents: 52148
diff changeset
  3649
   of [] \<Rightarrow> None
7f864f2219a9 selection operator smallest_prime_beyond
haftmann
parents: 52148
diff changeset
  3650
    | x # _ \<Rightarrow> Some x)"
7f864f2219a9 selection operator smallest_prime_beyond
haftmann
parents: 52148
diff changeset
  3651
  by (induct xs) simp_all
7f864f2219a9 selection operator smallest_prime_beyond
haftmann
parents: 52148
diff changeset
  3652
47122
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3653
790fb5eb5969 Functions and lemmas by Christian Sternagel
nipkow
parents: 47108
diff changeset
  3654
subsubsection {* @{const remove1} *}
15110
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  3655
18049
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  3656
lemma remove1_append:
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  3657
  "remove1 x (xs @ ys) =
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  3658
  (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
  3659
by (induct xs) auto
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  3660
36903
489c1fbbb028 Multiset: renamed, added and tuned lemmas;
nipkow
parents: 36851
diff changeset
  3661
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
  3662
by (induct zs) auto
489c1fbbb028 Multiset: renamed, added and tuned lemmas;
nipkow
parents: 36851
diff changeset
  3663
23479
10adbdcdc65b new lemmas
nipkow
parents: 23388
diff changeset
  3664
lemma in_set_remove1[simp]:
10adbdcdc65b new lemmas
nipkow
parents: 23388
diff changeset
  3665
  "a \<noteq> b \<Longrightarrow> a : set(remove1 b xs) = (a : set xs)"
10adbdcdc65b new lemmas
nipkow
parents: 23388
diff changeset
  3666
apply (induct xs)
10adbdcdc65b new lemmas
nipkow
parents: 23388
diff changeset
  3667
apply auto
10adbdcdc65b new lemmas
nipkow
parents: 23388
diff changeset
  3668
done
10adbdcdc65b new lemmas
nipkow
parents: 23388
diff changeset
  3669
15110
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  3670
lemma set_remove1_subset: "set(remove1 x xs) <= set xs"
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  3671
apply(induct xs)
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  3672
 apply simp
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  3673
apply simp
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  3674
apply blast
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  3675
done
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  3676
17724
e969fc0a4925 simprules need names
paulson
parents: 17629
diff changeset
  3677
lemma set_remove1_eq [simp]: "distinct xs ==> set(remove1 x xs) = set xs - {x}"
15110
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  3678
apply(induct xs)
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  3679
 apply simp
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  3680
apply simp
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  3681
apply blast
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  3682
done
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  3683
23479
10adbdcdc65b new lemmas
nipkow
parents: 23388
diff changeset
  3684
lemma length_remove1:
30128
365ee7319b86 revert some Suc 0 lemmas back to their original forms; added some simp rules for (1::nat)
huffman
parents: 30079
diff changeset
  3685
  "length(remove1 x xs) = (if x : set xs then length xs - 1 else length xs)"
23479
10adbdcdc65b new lemmas
nipkow
parents: 23388
diff changeset
  3686
apply (induct xs)
10adbdcdc65b new lemmas
nipkow
parents: 23388
diff changeset
  3687
 apply (auto dest!:length_pos_if_in_set)
10adbdcdc65b new lemmas
nipkow
parents: 23388
diff changeset
  3688
done
10adbdcdc65b new lemmas
nipkow
parents: 23388
diff changeset
  3689
18049
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  3690
lemma remove1_filter_not[simp]:
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  3691
  "\<not> P x \<Longrightarrow> remove1 x (filter P xs) = filter P xs"
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  3692
by(induct xs) auto
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  3693
39073
8520a1f89db1 Add filter_remove1
hoelzl
parents: 38857
diff changeset
  3694
lemma filter_remove1:
8520a1f89db1 Add filter_remove1
hoelzl
parents: 38857
diff changeset
  3695
  "filter Q (remove1 x xs) = remove1 x (filter Q xs)"
8520a1f89db1 Add filter_remove1
hoelzl
parents: 38857
diff changeset
  3696
by (induct xs) auto
8520a1f89db1 Add filter_remove1
hoelzl
parents: 38857
diff changeset
  3697
15110
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  3698
lemma notin_set_remove1[simp]: "x ~: set xs ==> x ~: set(remove1 y xs)"
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  3699
apply(insert set_remove1_subset)
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  3700
apply fast
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  3701
done
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  3702
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  3703
lemma distinct_remove1[simp]: "distinct xs ==> distinct(remove1 x xs)"
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  3704
by (induct xs) simp_all
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  3705
36275
c6ca9e258269 lemmas concerning remdups
haftmann
parents: 36199
diff changeset
  3706
lemma remove1_remdups:
c6ca9e258269 lemmas concerning remdups
haftmann
parents: 36199
diff changeset
  3707
  "distinct xs \<Longrightarrow> remove1 x (remdups xs) = remdups (remove1 x xs)"
c6ca9e258269 lemmas concerning remdups
haftmann
parents: 36199
diff changeset
  3708
  by (induct xs) simp_all
c6ca9e258269 lemmas concerning remdups
haftmann
parents: 36199
diff changeset
  3709
37107
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  3710
lemma remove1_idem:
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  3711
  assumes "x \<notin> set xs"
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  3712
  shows "remove1 x xs = xs"
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  3713
  using assms by (induct xs) simp_all
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  3714
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  3715
49948
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  3716
subsubsection {* @{const removeAll} *}
27693
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  3717
34978
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  3718
lemma removeAll_filter_not_eq:
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  3719
  "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
  3720
proof
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  3721
  fix xs
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  3722
  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
  3723
    by (induct xs) auto
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  3724
qed
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  3725
27693
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  3726
lemma removeAll_append[simp]:
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  3727
  "removeAll x (xs @ ys) = removeAll x xs @ removeAll x ys"
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  3728
by (induct xs) auto
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  3729
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  3730
lemma set_removeAll[simp]: "set(removeAll x xs) = set xs - {x}"
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  3731
by (induct xs) auto
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  3732
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  3733
lemma removeAll_id[simp]: "x \<notin> set xs \<Longrightarrow> removeAll x xs = xs"
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  3734
by (induct xs) auto
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  3735
46448
f1201fac7398 more specification of the quotient package in IsarRef
Cezary Kaliszyk <cezarykaliszyk@gmail.com>
parents: 46440
diff changeset
  3736
(* Needs count:: 'a \<Rightarrow> 'a list \<Rightarrow> nat
27693
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  3737
lemma length_removeAll:
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  3738
  "length(removeAll x xs) = length xs - count x xs"
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  3739
*)
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  3740
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  3741
lemma removeAll_filter_not[simp]:
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  3742
  "\<not> P x \<Longrightarrow> removeAll x (filter P xs) = filter P xs"
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  3743
by(induct xs) auto
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  3744
34978
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  3745
lemma distinct_removeAll:
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  3746
  "distinct xs \<Longrightarrow> distinct (removeAll x xs)"
874150ddd50a canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents: 34942
diff changeset
  3747
  by (simp add: removeAll_filter_not_eq)
27693
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  3748
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  3749
lemma distinct_remove1_removeAll:
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  3750
  "distinct xs ==> remove1 x xs = removeAll x xs"
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  3751
by (induct xs) simp_all
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  3752
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  3753
lemma map_removeAll_inj_on: "inj_on f (insert x (set xs)) \<Longrightarrow>
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  3754
  map f (removeAll x xs) = removeAll (f x) (map f xs)"
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  3755
by (induct xs) (simp_all add:inj_on_def)
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  3756
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  3757
lemma map_removeAll_inj: "inj f \<Longrightarrow>
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  3758
  map f (removeAll x xs) = removeAll (f x) (map f xs)"
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  3759
by(metis map_removeAll_inj_on subset_inj_on subset_UNIV)
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  3760
73253a4e3ee2 added removeAll
nipkow
parents: 27381
diff changeset
  3761
49948
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  3762
subsubsection {* @{const replicate} *}
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  3763
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  3764
lemma length_replicate [simp]: "length (replicate n x) = n"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  3765
by (induct n) auto
13124
6e1decd8a7a9 new thm distinct_conv_nth
nipkow
parents: 13122
diff changeset
  3766
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
  3767
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
  3768
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
  3769
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  3770
lemma map_replicate [simp]: "map f (replicate n x) = replicate n (f x)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  3771
by (induct n) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  3772
31363
7493b571b37d Added theorems about distinct & concat, map & replicate and concat & replicate
hoelzl
parents: 31264
diff changeset
  3773
lemma map_replicate_const:
7493b571b37d Added theorems about distinct & concat, map & replicate and concat & replicate
hoelzl
parents: 31264
diff changeset
  3774
  "map (\<lambda> x. k) lst = replicate (length lst) k"
7493b571b37d Added theorems about distinct & concat, map & replicate and concat & replicate
hoelzl
parents: 31264
diff changeset
  3775
  by (induct lst) auto
7493b571b37d Added theorems about distinct & concat, map & replicate and concat & replicate
hoelzl
parents: 31264
diff changeset
  3776
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  3777
lemma replicate_app_Cons_same:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  3778
"(replicate n x) @ (x # xs) = x # replicate n x @ xs"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  3779
by (induct n) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  3780
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  3781
lemma rev_replicate [simp]: "rev (replicate n x) = replicate n x"
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  3782
apply (induct n, simp)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  3783
apply (simp add: replicate_app_Cons_same)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  3784
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  3785
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  3786
lemma replicate_add: "replicate (n + m) x = replicate n x @ replicate m x"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  3787
by (induct n) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  3788
16397
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  3789
text{* Courtesy of Matthias Daum: *}
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  3790
lemma append_replicate_commute:
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  3791
  "replicate n x @ replicate k x = replicate k x @ replicate n x"
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  3792
apply (simp add: replicate_add [THEN sym])
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  3793
apply (simp add: add_commute)
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  3794
done
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  3795
31080
21ffc770ebc0 lemmas by Andreas Lochbihler
nipkow
parents: 31077
diff changeset
  3796
text{* Courtesy of Andreas Lochbihler: *}
21ffc770ebc0 lemmas by Andreas Lochbihler
nipkow
parents: 31077
diff changeset
  3797
lemma filter_replicate:
21ffc770ebc0 lemmas by Andreas Lochbihler
nipkow
parents: 31077
diff changeset
  3798
  "filter P (replicate n x) = (if P x then replicate n x else [])"
21ffc770ebc0 lemmas by Andreas Lochbihler
nipkow
parents: 31077
diff changeset
  3799
by(induct n) auto
21ffc770ebc0 lemmas by Andreas Lochbihler
nipkow
parents: 31077
diff changeset
  3800
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  3801
lemma hd_replicate [simp]: "n \<noteq> 0 ==> hd (replicate n x) = x"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  3802
by (induct n) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  3803
46500
0196966d6d2d removing unnecessary premises in theorems of List theory
bulwahn
parents: 46448
diff changeset
  3804
lemma tl_replicate [simp]: "tl (replicate n x) = replicate (n - 1) x"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  3805
by (induct n) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  3806
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  3807
lemma last_replicate [simp]: "n \<noteq> 0 ==> last (replicate n x) = x"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  3808
by (atomize (full), induct n) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  3809
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  3810
lemma nth_replicate[simp]: "i < n ==> (replicate n x)!i = x"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  3811
apply (induct n arbitrary: i, simp)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  3812
apply (simp add: nth_Cons split: nat.split)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  3813
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  3814
16397
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  3815
text{* Courtesy of Matthias Daum (2 lemmas): *}
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  3816
lemma take_replicate[simp]: "take i (replicate k x) = replicate (min i k) x"
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  3817
apply (case_tac "k \<le> i")
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  3818
 apply  (simp add: min_def)
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  3819
apply (drule not_leE)
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  3820
apply (simp add: min_def)
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  3821
apply (subgoal_tac "replicate k x = replicate i x @ replicate (k - i) x")
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  3822
 apply  simp
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  3823
apply (simp add: replicate_add [symmetric])
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  3824
done
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  3825
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  3826
lemma drop_replicate[simp]: "drop i (replicate k x) = replicate (k-i) x"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  3827
apply (induct k arbitrary: i)
16397
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  3828
 apply simp
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  3829
apply clarsimp
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  3830
apply (case_tac i)
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  3831
 apply simp
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  3832
apply clarsimp
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  3833
done
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  3834
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  3835
lemma set_replicate_Suc: "set (replicate (Suc n) x) = {x}"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  3836
by (induct n) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  3837
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  3838
lemma set_replicate [simp]: "n \<noteq> 0 ==> set (replicate n x) = {x}"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  3839
by (fast dest!: not0_implies_Suc intro!: set_replicate_Suc)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  3840
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  3841
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
  3842
by auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  3843
37456
0a1cc2675958 tuned set_replicate lemmas
nipkow
parents: 37455
diff changeset
  3844
lemma in_set_replicate[simp]: "(x : set (replicate n y)) = (x = y & n \<noteq> 0)"
0a1cc2675958 tuned set_replicate lemmas
nipkow
parents: 37455
diff changeset
  3845
by (simp add: set_replicate_conv_if)
0a1cc2675958 tuned set_replicate lemmas
nipkow
parents: 37455
diff changeset
  3846
37454
9132a5955127 added lemmas
nipkow
parents: 37424
diff changeset
  3847
lemma Ball_set_replicate[simp]:
9132a5955127 added lemmas
nipkow
parents: 37424
diff changeset
  3848
  "(ALL x : set(replicate n a). P x) = (P a | n=0)"
9132a5955127 added lemmas
nipkow
parents: 37424
diff changeset
  3849
by(simp add: set_replicate_conv_if)
9132a5955127 added lemmas
nipkow
parents: 37424
diff changeset
  3850
9132a5955127 added lemmas
nipkow
parents: 37424
diff changeset
  3851
lemma Bex_set_replicate[simp]:
9132a5955127 added lemmas
nipkow
parents: 37424
diff changeset
  3852
  "(EX x : set(replicate n a). P x) = (P a & n\<noteq>0)"
9132a5955127 added lemmas
nipkow
parents: 37424
diff changeset
  3853
by(simp add: set_replicate_conv_if)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  3854
24796
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  3855
lemma replicate_append_same:
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  3856
  "replicate i x @ [x] = x # replicate i x"
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  3857
  by (induct i) simp_all
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  3858
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  3859
lemma map_replicate_trivial:
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  3860
  "map (\<lambda>i. x) [0..<i] = replicate i x"
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  3861
  by (induct i) (simp_all add: replicate_append_same)
529e458f84d2 added some lemmas
haftmann
parents: 24748
diff changeset
  3862
31363
7493b571b37d Added theorems about distinct & concat, map & replicate and concat & replicate
hoelzl
parents: 31264
diff changeset
  3863
lemma concat_replicate_trivial[simp]:
7493b571b37d Added theorems about distinct & concat, map & replicate and concat & replicate
hoelzl
parents: 31264
diff changeset
  3864
  "concat (replicate i []) = []"
7493b571b37d Added theorems about distinct & concat, map & replicate and concat & replicate
hoelzl
parents: 31264
diff changeset
  3865
  by (induct i) (auto simp add: map_replicate_const)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  3866
28642
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  3867
lemma replicate_empty[simp]: "(replicate n x = []) \<longleftrightarrow> n=0"
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  3868
by (induct n) auto
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  3869
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  3870
lemma empty_replicate[simp]: "([] = replicate n x) \<longleftrightarrow> n=0"
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  3871
by (induct n) auto
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  3872
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  3873
lemma replicate_eq_replicate[simp]:
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  3874
  "(replicate m x = replicate n y) \<longleftrightarrow> (m=n & (m\<noteq>0 \<longrightarrow> x=y))"
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  3875
apply(induct m arbitrary: n)
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  3876
 apply simp
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  3877
apply(induct_tac n)
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  3878
apply auto
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  3879
done
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  3880
39534
c798d4f1b682 generalized lemma insort_remove1 to insort_key_remove1
haftmann
parents: 39302
diff changeset
  3881
lemma replicate_length_filter:
c798d4f1b682 generalized lemma insort_remove1 to insort_key_remove1
haftmann
parents: 39302
diff changeset
  3882
  "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
  3883
  by (induct xs) auto
c798d4f1b682 generalized lemma insort_remove1 to insort_key_remove1
haftmann
parents: 39302
diff changeset
  3884
42714
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3885
lemma comm_append_are_replicate:
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3886
  fixes xs ys :: "'a list"
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3887
  assumes "xs \<noteq> []" "ys \<noteq> []"
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3888
  assumes "xs @ ys = ys @ xs"
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3889
  shows "\<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
  3890
  using assms
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3891
proof (induct "length (xs @ ys)" arbitrary: xs ys rule: less_induct)
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3892
  case less
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3893
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3894
  def xs' \<equiv> "if (length xs \<le> length ys) then xs else ys"
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3895
    and ys' \<equiv> "if (length xs \<le> length ys) then ys else xs"
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3896
  then have
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3897
    prems': "length xs' \<le> length ys'"
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3898
            "xs' @ ys' = ys' @ xs'"
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3899
      and "xs' \<noteq> []"
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3900
      and len: "length (xs @ ys) = length (xs' @ ys')"
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3901
    using less by (auto intro: less.hyps)
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3902
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3903
  from prems'
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3904
  obtain ws where "ys' = xs' @ ws"
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3905
    by (auto simp: append_eq_append_conv2)
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3906
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3907
  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
  3908
  proof (cases "ws = []")
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3909
    case True
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3910
    then have "concat (replicate 1 xs') = xs'"
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3911
      and "concat (replicate 1 xs') = ys'"
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3912
      using `ys' = xs' @ ws` by auto
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3913
    then show ?thesis by blast
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3914
  next
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3915
    case False
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3916
    from `ys' = xs' @ ws` and `xs' @ ys' = ys' @ xs'`
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3917
    have "xs' @ ws = ws @ xs'" by simp
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3918
    then have "\<exists>m n zs. concat (replicate m zs) = xs' \<and> concat (replicate n zs) = ws"
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3919
      using False and `xs' \<noteq> []` and `ys' = xs' @ ws` and len
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3920
      by (intro less.hyps) auto
53374
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53017
diff changeset
  3921
    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
  3922
      and "concat (replicate n zs) = ws" by blast
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3923
    then have "concat (replicate (m + n) zs) = ys'"
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3924
      using `ys' = xs' @ ws`
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3925
      by (simp add: replicate_add)
53374
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53017
diff changeset
  3926
    with * show ?thesis by blast
42714
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3927
  qed
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3928
  then show ?case
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3929
    using xs'_def ys'_def by metis
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3930
qed
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3931
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3932
lemma comm_append_is_replicate:
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3933
  fixes xs ys :: "'a list"
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3934
  assumes "xs \<noteq> []" "ys \<noteq> []"
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3935
  assumes "xs @ ys = ys @ xs"
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3936
  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
  3937
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3938
proof -
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3939
  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
  3940
    and "concat (replicate n zs) = ys"
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3941
    using assms by (metis comm_append_are_replicate)
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3942
  then have "m + n > 1" and "concat (replicate (m+n) zs) = xs @ ys"
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3943
    using `xs \<noteq> []` and `ys \<noteq> []`
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3944
    by (auto simp: replicate_add)
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3945
  then show ?thesis by blast
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3946
qed
fcba668b0839 add a lemma about commutative append to List.thy
noschinl
parents: 42713
diff changeset
  3947
52380
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  3948
lemma Cons_replicate_eq:
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  3949
  "x # xs = replicate n y \<longleftrightarrow> x = y \<and> n > 0 \<and> xs = replicate (n - 1) x"
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  3950
  by (induct n) auto
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  3951
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  3952
lemma replicate_length_same:
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  3953
  "(\<forall>y\<in>set xs. y = x) \<Longrightarrow> replicate (length xs) x = xs"
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  3954
  by (induct xs) simp_all
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  3955
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  3956
lemma foldr_replicate [simp]:
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  3957
  "foldr f (replicate n x) = f x ^^ n"
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  3958
  by (induct n) (simp_all)
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  3959
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  3960
lemma fold_replicate [simp]:
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  3961
  "fold f (replicate n x) = f x ^^ n"
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  3962
  by (subst foldr_fold [symmetric]) simp_all
3cc46b8cca5e lifting for primitive definitions;
haftmann
parents: 52379
diff changeset
  3963
28642
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  3964
51173
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  3965
subsubsection {* @{const enumerate} *}
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  3966
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  3967
lemma enumerate_simps [simp, code]:
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  3968
  "enumerate n [] = []"
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  3969
  "enumerate n (x # xs) = (n, x) # enumerate (Suc n) xs"
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  3970
  apply (auto simp add: enumerate_eq_zip not_le)
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  3971
  apply (cases "n < n + length xs")
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  3972
  apply (auto simp add: upt_conv_Cons)
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  3973
  done
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  3974
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  3975
lemma length_enumerate [simp]:
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  3976
  "length (enumerate n xs) = length xs"
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  3977
  by (simp add: enumerate_eq_zip)
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  3978
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  3979
lemma map_fst_enumerate [simp]:
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  3980
  "map fst (enumerate n xs) = [n..<n + length xs]"
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  3981
  by (simp add: enumerate_eq_zip)
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  3982
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  3983
lemma map_snd_enumerate [simp]:
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  3984
  "map snd (enumerate n xs) = xs"
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  3985
  by (simp add: enumerate_eq_zip)
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  3986
  
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  3987
lemma in_set_enumerate_eq:
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  3988
  "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
  3989
proof -
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  3990
  { fix m
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  3991
    assume "n \<le> m"
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  3992
    moreover assume "m < length xs + n"
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  3993
    ultimately have "[n..<n + length xs] ! (m - n) = m \<and>
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  3994
      xs ! (m - n) = xs ! (m - n) \<and> m - n < length xs" by auto
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  3995
    then have "\<exists>q. [n..<n + length xs] ! q = m \<and>
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  3996
        xs ! q = xs ! (m - n) \<and> q < length xs" ..
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  3997
  } then show ?thesis by (cases p) (auto simp add: enumerate_eq_zip in_set_zip)
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  3998
qed
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  3999
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4000
lemma nth_enumerate_eq:
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4001
  assumes "m < length xs"
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4002
  shows "enumerate n xs ! m = (n + m, xs ! m)"
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4003
  using assms by (simp add: enumerate_eq_zip)
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4004
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4005
lemma enumerate_replicate_eq:
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4006
  "enumerate n (replicate m a) = map (\<lambda>q. (q, a)) [n..<n + m]"
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4007
  by (rule pair_list_eqI)
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4008
    (simp_all add: enumerate_eq_zip comp_def map_replicate_const)
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4009
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4010
lemma enumerate_Suc_eq:
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4011
  "enumerate (Suc n) xs = map (apfst Suc) (enumerate n xs)"
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4012
  by (rule pair_list_eqI)
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4013
    (simp_all add: not_le, simp del: map_map [simp del] add: map_Suc_upt map_map [symmetric])
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4014
52379
7f864f2219a9 selection operator smallest_prime_beyond
haftmann
parents: 52148
diff changeset
  4015
lemma distinct_enumerate [simp]:
7f864f2219a9 selection operator smallest_prime_beyond
haftmann
parents: 52148
diff changeset
  4016
  "distinct (enumerate n xs)"
7f864f2219a9 selection operator smallest_prime_beyond
haftmann
parents: 52148
diff changeset
  4017
  by (simp add: enumerate_eq_zip distinct_zipI1)
7f864f2219a9 selection operator smallest_prime_beyond
haftmann
parents: 52148
diff changeset
  4018
51173
3cbb4e95a565 Sieve of Eratosthenes
haftmann
parents: 51170
diff changeset
  4019
49948
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4020
subsubsection {* @{const rotate1} and @{const rotate} *}
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4021
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4022
lemma rotate0[simp]: "rotate 0 = id"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4023
by(simp add:rotate_def)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4024
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4025
lemma rotate_Suc[simp]: "rotate (Suc n) xs = rotate1(rotate n xs)"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4026
by(simp add:rotate_def)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4027
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4028
lemma rotate_add:
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4029
  "rotate (m+n) = rotate m o rotate n"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4030
by(simp add:rotate_def funpow_add)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4031
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4032
lemma rotate_rotate: "rotate m (rotate n xs) = rotate (m+n) xs"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4033
by(simp add:rotate_add)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4034
18049
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  4035
lemma rotate1_rotate_swap: "rotate1 (rotate n xs) = rotate n (rotate1 xs)"
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  4036
by(simp add:rotate_def funpow_swap1)
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  4037
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4038
lemma rotate1_length01[simp]: "length xs <= 1 \<Longrightarrow> rotate1 xs = xs"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4039
by(cases xs) simp_all
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4040
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4041
lemma rotate_length01[simp]: "length xs <= 1 \<Longrightarrow> rotate n xs = xs"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4042
apply(induct n)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4043
 apply simp
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4044
apply (simp add:rotate_def)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  4045
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  4046
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4047
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
  4048
by (cases xs) simp_all
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4049
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4050
lemma rotate_drop_take:
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4051
  "rotate n xs = drop (n mod length xs) xs @ take (n mod length xs) xs"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4052
apply(induct n)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4053
 apply simp
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4054
apply(simp add:rotate_def)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4055
apply(cases "xs = []")
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4056
 apply (simp)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4057
apply(case_tac "n mod length xs = 0")
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4058
 apply(simp add:mod_Suc)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4059
 apply(simp add: rotate1_hd_tl drop_Suc take_Suc)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4060
apply(simp add:mod_Suc rotate1_hd_tl drop_Suc[symmetric] drop_tl[symmetric]
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4061
                take_hd_drop linorder_not_le)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  4062
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  4063
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4064
lemma rotate_conv_mod: "rotate n xs = rotate (n mod length xs) xs"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4065
by(simp add:rotate_drop_take)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4066
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4067
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
  4068
by(simp add:rotate_drop_take)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4069
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4070
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
  4071
by (cases xs) simp_all
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4072
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  4073
lemma length_rotate[simp]: "length(rotate n xs) = length xs"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  4074
by (induct n arbitrary: xs) (simp_all add:rotate_def)
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4075
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4076
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
  4077
by (cases xs) auto
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4078
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4079
lemma distinct_rotate[simp]: "distinct(rotate n xs) = distinct xs"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4080
by (induct n) (simp_all add:rotate_def)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4081
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4082
lemma rotate_map: "rotate n (map f xs) = map f (rotate n xs)"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4083
by(simp add:rotate_drop_take take_map drop_map)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4084
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4085
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
  4086
by (cases xs) auto
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4087
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4088
lemma set_rotate[simp]: "set(rotate n xs) = set xs"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4089
by (induct n) (simp_all add:rotate_def)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4090
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4091
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
  4092
by (cases xs) auto
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4093
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4094
lemma rotate_is_Nil_conv[simp]: "(rotate n xs = []) = (xs = [])"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  4095
by (induct n) (simp_all add:rotate_def)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  4096
15439
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15426
diff changeset
  4097
lemma rotate_rev:
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15426
diff changeset
  4098
  "rotate n (rev xs) = rev(rotate (length xs - (n mod length xs)) xs)"
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15426
diff changeset
  4099
apply(simp add:rotate_drop_take rev_drop rev_take)
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15426
diff changeset
  4100
apply(cases "length xs = 0")
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15426
diff changeset
  4101
 apply simp
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15426
diff changeset
  4102
apply(cases "n mod length xs = 0")
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15426
diff changeset
  4103
 apply simp
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15426
diff changeset
  4104
apply(simp add:rotate_drop_take rev_drop rev_take)
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15426
diff changeset
  4105
done
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15426
diff changeset
  4106
18423
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  4107
lemma hd_rotate_conv_nth: "xs \<noteq> [] \<Longrightarrow> hd(rotate n xs) = xs!(n mod length xs)"
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  4108
apply(simp add:rotate_drop_take hd_append hd_drop_conv_nth hd_conv_nth)
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  4109
apply(subgoal_tac "length xs \<noteq> 0")
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  4110
 prefer 2 apply simp
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  4111
using mod_less_divisor[of "length xs" n] by arith
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  4112
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  4113
49948
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4114
subsubsection {* @{const sublist} --- a generalization of @{const nth} to sets *}
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  4115
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  4116
lemma sublist_empty [simp]: "sublist xs {} = []"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  4117
by (auto simp add: sublist_def)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  4118
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  4119
lemma sublist_nil [simp]: "sublist [] A = []"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  4120
by (auto simp add: sublist_def)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  4121
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  4122
lemma length_sublist:
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  4123
  "length(sublist xs I) = card{i. i < length xs \<and> i : I}"
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  4124
by(simp add: sublist_def length_filter_conv_card cong:conj_cong)
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  4125
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  4126
lemma sublist_shift_lemma_Suc:
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  4127
  "map fst (filter (%p. P(Suc(snd p))) (zip xs is)) =
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  4128
   map fst (filter (%p. P(snd p)) (zip xs (map Suc is)))"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  4129
apply(induct xs arbitrary: "is")
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  4130
 apply simp
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  4131
apply (case_tac "is")
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  4132
 apply simp
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  4133
apply simp
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  4134
done
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  4135
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  4136
lemma sublist_shift_lemma:
23279
e39dd93161d9 tuned list comprehension, changed filter syntax from : to <-
nipkow
parents: 23246
diff changeset
  4137
     "map fst [p<-zip xs [i..<i + length xs] . snd p : A] =
e39dd93161d9 tuned list comprehension, changed filter syntax from : to <-
nipkow
parents: 23246
diff changeset
  4138
      map fst [p<-zip xs [0..<length xs] . snd p + i : A]"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  4139
by (induct xs rule: rev_induct) (simp_all add: add_commute)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  4140
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  4141
lemma sublist_append:
15168
33a08cfc3ae5 new functions for sets of lists
paulson
parents: 15140
diff changeset
  4142
     "sublist (l @ l') A = sublist l A @ sublist l' {j. j + length l : A}"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  4143
apply (unfold sublist_def)
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  4144
apply (induct l' rule: rev_induct, simp)
44921
58eef4843641 tuned proofs
huffman
parents: 44916
diff changeset
  4145
apply (simp add: upt_add_eq_append[of 0] sublist_shift_lemma)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  4146
apply (simp add: add_commute)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  4147
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  4148
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  4149
lemma sublist_Cons:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  4150
"sublist (x # l) A = (if 0:A then [x] else []) @ sublist l {j. Suc j : A}"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  4151
apply (induct l rule: rev_induct)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  4152
 apply (simp add: sublist_def)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  4153
apply (simp del: append_Cons add: append_Cons[symmetric] sublist_append)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  4154
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  4155
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  4156
lemma set_sublist: "set(sublist xs I) = {xs!i|i. i<size xs \<and> i \<in> I}"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  4157
apply(induct xs arbitrary: I)
25162
ad4d5365d9d8 went back to >0
nipkow
parents: 25157
diff changeset
  4158
apply(auto simp: sublist_Cons nth_Cons split:nat.split dest!: gr0_implies_Suc)
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  4159
done
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  4160
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  4161
lemma set_sublist_subset: "set(sublist xs I) \<subseteq> set xs"
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  4162
by(auto simp add:set_sublist)
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  4163
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  4164
lemma notin_set_sublistI[simp]: "x \<notin> set xs \<Longrightarrow> x \<notin> set(sublist xs I)"
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  4165
by(auto simp add:set_sublist)
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  4166
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  4167
lemma in_set_sublistD: "x \<in> set(sublist xs I) \<Longrightarrow> x \<in> set xs"
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  4168
by(auto simp add:set_sublist)
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  4169
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  4170
lemma sublist_singleton [simp]: "sublist [x] A = (if 0 : A then [x] else [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  4171
by (simp add: sublist_Cons)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  4172
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  4173
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  4174
lemma distinct_sublistI[simp]: "distinct xs \<Longrightarrow> distinct(sublist xs I)"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  4175
apply(induct xs arbitrary: I)
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  4176
 apply simp
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  4177
apply(auto simp add:sublist_Cons)
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  4178
done
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  4179
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  4180
15045
d59f7e2e18d3 Moved to new m<..<n syntax for set intervals.
nipkow
parents: 14981
diff changeset
  4181
lemma sublist_upt_eq_take [simp]: "sublist l {..<n} = take n l"
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  4182
apply (induct l rule: rev_induct, simp)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  4183
apply (simp split: nat_diff_split add: sublist_append)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  4184
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  4185
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  4186
lemma filter_in_sublist:
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  4187
 "distinct xs \<Longrightarrow> filter (%x. x \<in> set(sublist xs s)) xs = sublist xs s"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  4188
proof (induct xs arbitrary: s)
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  4189
  case Nil thus ?case by simp
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  4190
next
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  4191
  case (Cons a xs)
53374
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53017
diff changeset
  4192
  then have "!x. x: set xs \<longrightarrow> x \<noteq> a" by auto
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53017
diff changeset
  4193
  with Cons show ?case by(simp add: sublist_Cons cong:filter_cong)
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  4194
qed
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  4195
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  4196
49948
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4197
subsubsection {* @{const sublists} and @{const List.n_lists} *}
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4198
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4199
lemma length_sublists:
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4200
  "length (sublists xs) = 2 ^ length xs"
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4201
  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
  4202
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4203
lemma sublists_powset:
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4204
  "set ` set (sublists xs) = Pow (set xs)"
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4205
proof -
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4206
  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
  4207
    by (auto simp add: image_def)
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4208
  have "set (map set (sublists xs)) = Pow (set xs)"
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4209
    by (induct xs)
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4210
      (simp_all add: aux Let_def Pow_insert Un_commute comp_def del: map_map)
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4211
  then show ?thesis by simp
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4212
qed
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4213
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4214
lemma distinct_set_sublists:
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4215
  assumes "distinct xs"
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4216
  shows "distinct (map set (sublists xs))"
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4217
proof (rule card_distinct)
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4218
  have "finite (set xs)" by rule
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4219
  then have "card (Pow (set xs)) = 2 ^ card (set xs)" by (rule card_Pow)
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4220
  with assms distinct_card [of xs]
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4221
    have "card (Pow (set xs)) = 2 ^ length xs" by simp
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4222
  then show "card (set (map set (sublists xs))) = length (map set (sublists xs))"
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4223
    by (simp add: sublists_powset length_sublists)
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4224
qed
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4225
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4226
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
  4227
  by (induct n) simp_all
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4228
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4229
lemma length_n_lists: "length (List.n_lists n xs) = length xs ^ n"
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4230
  by (induct n) (auto simp add: length_concat o_def listsum_triv)
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4231
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4232
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
  4233
  by (induct n arbitrary: ys) auto
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4234
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4235
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
  4236
proof (rule set_eqI)
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4237
  fix ys :: "'a list"
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4238
  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
  4239
  proof -
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4240
    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
  4241
      by (induct n arbitrary: ys) auto
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4242
    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
  4243
      by (induct n arbitrary: ys) auto
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4244
    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
  4245
      by (induct ys) auto
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4246
    ultimately show ?thesis by auto
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4247
  qed
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4248
qed
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4249
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4250
lemma distinct_n_lists:
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4251
  assumes "distinct xs"
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4252
  shows "distinct (List.n_lists n xs)"
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4253
proof (rule card_distinct)
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4254
  from assms have card_length: "card (set xs) = length xs" by (rule distinct_card)
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4255
  have "card (set (List.n_lists n xs)) = card (set xs) ^ n"
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4256
  proof (induct n)
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4257
    case 0 then show ?case by simp
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4258
  next
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4259
    case (Suc n)
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4260
    moreover have "card (\<Union>ys\<in>set (List.n_lists n xs). (\<lambda>y. y # ys) ` set xs)
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4261
      = (\<Sum>ys\<in>set (List.n_lists n xs). card ((\<lambda>y. y # ys) ` set xs))"
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4262
      by (rule card_UN_disjoint) auto
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4263
    moreover have "\<And>ys. card ((\<lambda>y. y # ys) ` set xs) = card (set xs)"
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4264
      by (rule card_image) (simp add: inj_on_def)
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4265
    ultimately show ?case by auto
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4266
  qed
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4267
  also have "\<dots> = length xs ^ n" by (simp add: card_length)
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4268
  finally show "card (set (List.n_lists n xs)) = length (List.n_lists n xs)"
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4269
    by (simp add: length_n_lists)
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4270
qed
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4271
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  4272
19390
6c7383f80ad1 Added function "splice"
nipkow
parents: 19363
diff changeset
  4273
subsubsection {* @{const splice} *}
6c7383f80ad1 Added function "splice"
nipkow
parents: 19363
diff changeset
  4274
40593
1e57b18d27b1 code eqn for slice was missing; redefined splice with fun
nipkow
parents: 40365
diff changeset
  4275
lemma splice_Nil2 [simp, code]: "splice xs [] = xs"
19390
6c7383f80ad1 Added function "splice"
nipkow
parents: 19363
diff changeset
  4276
by (cases xs) simp_all
6c7383f80ad1 Added function "splice"
nipkow
parents: 19363
diff changeset
  4277
40593
1e57b18d27b1 code eqn for slice was missing; redefined splice with fun
nipkow
parents: 40365
diff changeset
  4278
declare splice.simps(1,3)[code]
1e57b18d27b1 code eqn for slice was missing; redefined splice with fun
nipkow
parents: 40365
diff changeset
  4279
declare splice.simps(2)[simp del]
19390
6c7383f80ad1 Added function "splice"
nipkow
parents: 19363
diff changeset
  4280
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  4281
lemma length_splice[simp]: "length(splice xs ys) = length xs + length ys"
40593
1e57b18d27b1 code eqn for slice was missing; redefined splice with fun
nipkow
parents: 40365
diff changeset
  4282
by (induct xs ys rule: splice.induct) auto
22793
dc13dfd588b2 new lemma splice_length
nipkow
parents: 22633
diff changeset
  4283
35115
446c5063e4fd modernized translations;
wenzelm
parents: 35028
diff changeset
  4284
446c5063e4fd modernized translations;
wenzelm
parents: 35028
diff changeset
  4285
subsubsection {* Transpose *}
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4286
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4287
function transpose where
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4288
"transpose []             = []" |
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4289
"transpose ([]     # xss) = transpose xss" |
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4290
"transpose ((x#xs) # xss) =
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4291
  (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
  4292
by pat_completeness auto
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4293
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4294
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
  4295
  "concat (map (case_list [] (\<lambda>h t. [h])) xss) =
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4296
  map (\<lambda>xs. hd xs) [ys\<leftarrow>xss . ys \<noteq> []]"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4297
  by (induct xss) (auto split: list.split)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4298
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4299
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
  4300
  "concat (map (case_list [] (\<lambda>h t. [t])) xss) =
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4301
  map (\<lambda>xs. tl xs) [ys\<leftarrow>xss . ys \<noteq> []]"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4302
  by (induct xss) (auto split: list.split)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4303
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4304
lemma transpose_aux_max:
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4305
  "max (Suc (length xs)) (foldr (\<lambda>xs. max (length xs)) xss 0) =
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4306
  Suc (max (length xs) (foldr (\<lambda>x. max (length x - Suc 0)) [ys\<leftarrow>xss . ys\<noteq>[]] 0))"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4307
  (is "max _ ?foldB = Suc (max _ ?foldA)")
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4308
proof (cases "[ys\<leftarrow>xss . ys\<noteq>[]] = []")
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4309
  case True
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4310
  hence "foldr (\<lambda>xs. max (length xs)) xss 0 = 0"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4311
  proof (induct xss)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4312
    case (Cons x xs)
53374
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53017
diff changeset
  4313
    then have "x = []" by (cases x) auto
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53017
diff changeset
  4314
    with Cons show ?case by auto
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4315
  qed simp
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4316
  thus ?thesis using True by simp
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4317
next
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4318
  case False
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4319
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4320
  have foldA: "?foldA = foldr (\<lambda>x. max (length x)) [ys\<leftarrow>xss . ys \<noteq> []] 0 - 1"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4321
    by (induct xss) auto
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4322
  have foldB: "?foldB = foldr (\<lambda>x. max (length x)) [ys\<leftarrow>xss . ys \<noteq> []] 0"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4323
    by (induct xss) auto
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4324
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4325
  have "0 < ?foldB"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4326
  proof -
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4327
    from False
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4328
    obtain z zs where zs: "[ys\<leftarrow>xss . ys \<noteq> []] = z#zs" by (auto simp: neq_Nil_conv)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4329
    hence "z \<in> set ([ys\<leftarrow>xss . ys \<noteq> []])" by auto
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4330
    hence "z \<noteq> []" by auto
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4331
    thus ?thesis
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4332
      unfolding foldB zs
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4333
      by (auto simp: max_def intro: less_le_trans)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4334
  qed
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4335
  thus ?thesis
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4336
    unfolding foldA foldB max_Suc_Suc[symmetric]
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4337
    by simp
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4338
qed
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4339
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4340
termination transpose
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4341
  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
  4342
     (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
  4343
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4344
lemma transpose_empty: "(transpose xs = []) \<longleftrightarrow> (\<forall>x \<in> set xs. x = [])"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4345
  by (induct rule: transpose.induct) simp_all
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4346
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4347
lemma length_transpose:
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4348
  fixes xs :: "'a list list"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4349
  shows "length (transpose xs) = foldr (\<lambda>xs. max (length xs)) xs 0"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4350
  by (induct rule: transpose.induct)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4351
    (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
  4352
                max_Suc_Suc[symmetric] simp del: max_Suc_Suc)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4353
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4354
lemma nth_transpose:
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4355
  fixes xs :: "'a list list"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4356
  assumes "i < length (transpose xs)"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4357
  shows "transpose xs ! i = map (\<lambda>xs. xs ! i) [ys \<leftarrow> xs. i < length ys]"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4358
using assms proof (induct arbitrary: i rule: transpose.induct)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4359
  case (3 x xs xss)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4360
  def XS == "(x # xs) # xss"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4361
  hence [simp]: "XS \<noteq> []" by auto
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4362
  thus ?case
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4363
  proof (cases i)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4364
    case 0
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4365
    thus ?thesis by (simp add: transpose_aux_filter_head hd_conv_nth)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4366
  next
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4367
    case (Suc j)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4368
    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
  4369
    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
  4370
    { 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
  4371
      by (cases x) simp_all
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4372
    } note *** = this
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4373
55404
5cb95b79a51f transformed 'option' and 'list' into new-style datatypes (but register them as old-style as well)
blanchet
parents: 55148
diff changeset
  4374
    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
  4375
      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
  4376
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4377
    show ?thesis
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4378
      unfolding transpose.simps `i = Suc j` nth_Cons_Suc "3.hyps"[OF j_less]
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4379
      apply (auto simp: transpose_aux_filter_tail filter_map comp_def length_transpose * ** *** XS_def[symmetric])
55404
5cb95b79a51f transformed 'option' and 'list' into new-style datatypes (but register them as old-style as well)
blanchet
parents: 55148
diff changeset
  4380
      apply (rule list.exhaust)
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4381
      by auto
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4382
  qed
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4383
qed simp_all
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4384
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4385
lemma transpose_map_map:
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4386
  "transpose (map (map f) xs) = map (map f) (transpose xs)"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4387
proof (rule nth_equalityI, safe)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4388
  have [simp]: "length (transpose (map (map f) xs)) = length (transpose xs)"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4389
    by (simp add: length_transpose foldr_map comp_def)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4390
  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
  4391
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4392
  fix i assume "i < length (transpose (map (map f) xs))"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4393
  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
  4394
    by (simp add: nth_transpose filter_map comp_def)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4395
qed
24616
fac3dd4ade83 sorting
nipkow
parents: 24566
diff changeset
  4396
35115
446c5063e4fd modernized translations;
wenzelm
parents: 35028
diff changeset
  4397
31557
4e36f2f17c63 two finiteness lemmas by Robert Himmelmann
nipkow
parents: 31455
diff changeset
  4398
subsubsection {* (In)finiteness *}
28642
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  4399
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  4400
lemma finite_maxlen:
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  4401
  "finite (M::'a list set) ==> EX n. ALL s:M. size s < n"
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  4402
proof (induct rule: finite.induct)
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  4403
  case emptyI show ?case by simp
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  4404
next
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  4405
  case (insertI M xs)
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  4406
  then obtain n where "\<forall>s\<in>M. length s < n" by blast
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  4407
  hence "ALL s:insert xs M. size s < max n (size xs) + 1" by auto
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  4408
  thus ?case ..
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  4409
qed
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  4410
45714
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
  4411
lemma lists_length_Suc_eq:
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
  4412
  "{xs. set xs \<subseteq> A \<and> length xs = Suc n} =
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
  4413
    (\<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
  4414
  by (auto simp: length_Suc_conv)
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
  4415
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
  4416
lemma
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
  4417
  assumes "finite A"
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
  4418
  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
  4419
  and card_lists_length_eq: "card {xs. set xs \<subseteq> A \<and> length xs = n} = (card A)^n"
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
  4420
  using `finite A`
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
  4421
  by (induct n)
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
  4422
     (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
  4423
4e36f2f17c63 two finiteness lemmas by Robert Himmelmann
nipkow
parents: 31455
diff changeset
  4424
lemma finite_lists_length_le:
4e36f2f17c63 two finiteness lemmas by Robert Himmelmann
nipkow
parents: 31455
diff changeset
  4425
  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
  4426
 (is "finite ?S")
4e36f2f17c63 two finiteness lemmas by Robert Himmelmann
nipkow
parents: 31455
diff changeset
  4427
proof-
4e36f2f17c63 two finiteness lemmas by Robert Himmelmann
nipkow
parents: 31455
diff changeset
  4428
  have "?S = (\<Union>n\<in>{0..n}. {xs. set xs \<subseteq> A \<and> length xs = n})" by auto
50027
7747a9f4c358 adjusting proofs as the set_comprehension_pointfree simproc breaks some existing proofs
bulwahn
parents: 49963
diff changeset
  4429
  thus ?thesis by (auto intro!: finite_lists_length_eq[OF `finite A`] simp only:)
31557
4e36f2f17c63 two finiteness lemmas by Robert Himmelmann
nipkow
parents: 31455
diff changeset
  4430
qed
4e36f2f17c63 two finiteness lemmas by Robert Himmelmann
nipkow
parents: 31455
diff changeset
  4431
45714
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
  4432
lemma card_lists_length_le:
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
  4433
  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
  4434
proof -
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
  4435
  have "(\<Sum>i\<le>n. card A^i) = card (\<Union>i\<le>n. {xs. set xs \<subseteq> A \<and> length xs = i})"
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
  4436
    using `finite A`
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
  4437
    by (subst card_UN_disjoint)
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
  4438
       (auto simp add: card_lists_length_eq finite_lists_length_eq)
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
  4439
  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
  4440
    by auto
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
  4441
  finally show ?thesis by simp
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
  4442
qed
ad4242285560 cardinality of sets of lists
hoelzl
parents: 45607
diff changeset
  4443
45932
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4444
lemma card_lists_distinct_length_eq:
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4445
  assumes "k < card A"
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4446
  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
  4447
using assms
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4448
proof (induct k)
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4449
  case 0
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4450
  then have "{xs. length xs = 0 \<and> distinct xs \<and> set xs \<subseteq> A} = {[]}" by auto
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4451
  then show ?case by simp
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4452
next
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4453
  case (Suc k)
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4454
  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
  4455
  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
  4456
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4457
  from Suc have "k < card A" by simp
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4458
  moreover have "finite A" using assms by (simp add: card_ge_0_finite)
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4459
  moreover have "finite {xs. ?k_list k xs}"
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4460
    using finite_lists_length_eq[OF `finite A`, of k]
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4461
    by - (rule finite_subset, auto)
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4462
  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
  4463
    by auto
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4464
  moreover have "\<And>i. i \<in>Collect (?k_list k) \<Longrightarrow> card (A - set i) = card A - k"
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4465
    by (simp add: card_Diff_subset distinct_card)
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4466
  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
  4467
      (\<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
  4468
    by (auto simp: length_Suc_conv)
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4469
  moreover
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4470
  have "Suc (card A - Suc k) = card A - k" using Suc.prems by simp
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4471
  then have "(card A - k) * \<Prod>{Suc (card A - k)..card A} = \<Prod>{Suc (card A - Suc k)..card A}"
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4472
    by (subst setprod_insert[symmetric]) (simp add: atLeastAtMost_insertL)+
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4473
  ultimately show ?case
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4474
    by (simp add: card_image inj_Cons card_UN_disjoint Suc.hyps algebra_simps)
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4475
qed
6f08f8fe9752 add lemmas
noschinl
parents: 45891
diff changeset
  4476
28642
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  4477
lemma infinite_UNIV_listI: "~ finite(UNIV::'a list set)"
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  4478
apply(rule notI)
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  4479
apply(drule finite_maxlen)
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  4480
apply (metis UNIV_I length_replicate less_not_refl)
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  4481
done
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  4482
658b598d8af4 added lemmas
nipkow
parents: 28562
diff changeset
  4483
35115
446c5063e4fd modernized translations;
wenzelm
parents: 35028
diff changeset
  4484
subsection {* Sorting *}
24616
fac3dd4ade83 sorting
nipkow
parents: 24566
diff changeset
  4485
24617
bc484b2671fd sorting
nipkow
parents: 24616
diff changeset
  4486
text{* Currently it is not shown that @{const sort} returns a
bc484b2671fd sorting
nipkow
parents: 24616
diff changeset
  4487
permutation of its input because the nicest proof is via multisets,
bc484b2671fd sorting
nipkow
parents: 24616
diff changeset
  4488
which are not yet available. Alternatively one could define a function
bc484b2671fd sorting
nipkow
parents: 24616
diff changeset
  4489
that counts the number of occurrences of an element in a list and use
bc484b2671fd sorting
nipkow
parents: 24616
diff changeset
  4490
that instead of multisets to state the correctness property. *}
bc484b2671fd sorting
nipkow
parents: 24616
diff changeset
  4491
24616
fac3dd4ade83 sorting
nipkow
parents: 24566
diff changeset
  4492
context linorder
fac3dd4ade83 sorting
nipkow
parents: 24566
diff changeset
  4493
begin
fac3dd4ade83 sorting
nipkow
parents: 24566
diff changeset
  4494
51548
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51540
diff changeset
  4495
lemma set_insort_key:
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51540
diff changeset
  4496
  "set (insort_key f x xs) = insert x (set xs)"
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51540
diff changeset
  4497
  by (induct xs) auto
757fa47af981 centralized various multiset operations in theory multiset;
haftmann
parents: 51540
diff changeset
  4498
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
  4499
lemma length_insort [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
  4500
  "length (insort_key f x xs) = Suc (length 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
  4501
  by (induct xs) simp_all
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
  4502
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
  4503
lemma insort_key_left_comm:
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
  4504
  assumes "f x \<noteq> f y"
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
  4505
  shows "insort_key f y (insort_key f x xs) = insort_key f x (insort_key f y 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
  4506
  by (induct xs) (auto simp add: assms dest: antisym)
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
  4507
35195
5163c2d00904 more lemmas about sort(_key)
haftmann
parents: 35115
diff changeset
  4508
lemma insort_left_comm:
5163c2d00904 more lemmas about sort(_key)
haftmann
parents: 35115
diff changeset
  4509
  "insort x (insort y xs) = insort y (insort 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
  4510
  by (cases "x = y") (auto intro: insort_key_left_comm)
35195
5163c2d00904 more lemmas about sort(_key)
haftmann
parents: 35115
diff changeset
  4511
42871
1c0b99f950d9 names of fold_set locales resemble name of characteristic property more closely
haftmann
parents: 42809
diff changeset
  4512
lemma comp_fun_commute_insort:
1c0b99f950d9 names of fold_set locales resemble name of characteristic property more closely
haftmann
parents: 42809
diff changeset
  4513
  "comp_fun_commute insort"
35195
5163c2d00904 more lemmas about sort(_key)
haftmann
parents: 35115
diff changeset
  4514
proof
42809
5b45125b15ba use pointfree characterisation for fold_set locale
haftmann
parents: 42714
diff changeset
  4515
qed (simp add: insort_left_comm fun_eq_iff)
35195
5163c2d00904 more lemmas about sort(_key)
haftmann
parents: 35115
diff changeset
  4516
5163c2d00904 more lemmas about sort(_key)
haftmann
parents: 35115
diff changeset
  4517
lemma sort_key_simps [simp]:
5163c2d00904 more lemmas about sort(_key)
haftmann
parents: 35115
diff changeset
  4518
  "sort_key f [] = []"
5163c2d00904 more lemmas about sort(_key)
haftmann
parents: 35115
diff changeset
  4519
  "sort_key f (x#xs) = insort_key f x (sort_key f xs)"
5163c2d00904 more lemmas about sort(_key)
haftmann
parents: 35115
diff changeset
  4520
  by (simp_all add: sort_key_def)
5163c2d00904 more lemmas about sort(_key)
haftmann
parents: 35115
diff changeset
  4521
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
  4522
lemma (in linorder) sort_key_conv_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
  4523
  assumes "inj_on f (set xs)"
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  4524
  shows "sort_key f xs = fold (insort_key f) xs []"
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  4525
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
  4526
  have "fold (insort_key f) (rev xs) = fold (insort_key f) xs"
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  4527
  proof (rule fold_rev, rule ext)
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  4528
    fix zs
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  4529
    fix x y
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  4530
    assume "x \<in> set xs" "y \<in> set xs"
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  4531
    with assms have *: "f y = f x \<Longrightarrow> y = x" by (auto dest: inj_onD)
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  4532
    have **: "x = y \<longleftrightarrow> y = x" by auto
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  4533
    show "(insort_key f y \<circ> insort_key f x) zs = (insort_key f x \<circ> insort_key f y) zs"
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  4534
      by (induct zs) (auto intro: * simp add: **)
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  4535
  qed
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
  4536
  then show ?thesis by (simp add: sort_key_def 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
  4537
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
  4538
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  4539
lemma (in linorder) sort_conv_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
  4540
  "sort xs = fold insort xs []"
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 46125
diff changeset
  4541
  by (rule sort_key_conv_fold) simp
35195
5163c2d00904 more lemmas about sort(_key)
haftmann
parents: 35115
diff changeset
  4542
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
  4543
lemma length_sort[simp]: "length (sort_key f xs) = length xs"
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  4544
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
  4545
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24902
diff changeset
  4546
lemma sorted_Cons: "sorted (x#xs) = (sorted xs & (ALL y:set xs. x <= y))"
24616
fac3dd4ade83 sorting
nipkow
parents: 24566
diff changeset
  4547
apply(induct xs arbitrary: x) apply simp
fac3dd4ade83 sorting
nipkow
parents: 24566
diff changeset
  4548
by simp (blast intro: order_trans)
fac3dd4ade83 sorting
nipkow
parents: 24566
diff changeset
  4549
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
  4550
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
  4551
  "sorted xs \<Longrightarrow> sorted (tl 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
  4552
  by (cases xs) (simp_all add: sorted_Cons)
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
  4553
24616
fac3dd4ade83 sorting
nipkow
parents: 24566
diff changeset
  4554
lemma sorted_append:
25062
af5ef0d4d655 global class syntax
haftmann
parents: 24902
diff changeset
  4555
  "sorted (xs@ys) = (sorted xs & sorted ys & (\<forall>x \<in> set xs. \<forall>y \<in> set ys. x\<le>y))"
24616
fac3dd4ade83 sorting
nipkow
parents: 24566
diff changeset
  4556
by (induct xs) (auto simp add:sorted_Cons)
fac3dd4ade83 sorting
nipkow
parents: 24566
diff changeset
  4557
31201
3dde56615750 new lemma
nipkow
parents: 31159
diff changeset
  4558
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
  4559
  "sorted xs \<Longrightarrow> i \<le> j \<Longrightarrow> j < length xs \<Longrightarrow> xs!i \<le> xs!j"
31201
3dde56615750 new lemma
nipkow
parents: 31159
diff changeset
  4560
by (induct xs arbitrary: i j) (auto simp:nth_Cons' sorted_Cons)
3dde56615750 new lemma
nipkow
parents: 31159
diff changeset
  4561
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
  4562
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
  4563
  "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
  4564
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
  4565
      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
  4566
by auto
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  4567
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  4568
lemma sorted_nth_monoI:
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  4569
  "(\<And> i j. \<lbrakk> i \<le> j ; j < length xs \<rbrakk> \<Longrightarrow> xs ! i \<le> xs ! j) \<Longrightarrow> sorted xs"
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  4570
proof (induct xs)
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  4571
  case (Cons x xs)
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  4572
  have "sorted xs"
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  4573
  proof (rule Cons.hyps)
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  4574
    fix i j assume "i \<le> j" and "j < length xs"
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  4575
    with Cons.prems[of "Suc i" "Suc j"]
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  4576
    show "xs ! i \<le> xs ! j" by auto
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  4577
  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
  4578
  moreover
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  4579
  {
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  4580
    fix y assume "y \<in> set xs"
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  4581
    then obtain j where "j < length xs" and "xs ! j = y"
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  4582
      unfolding in_set_conv_nth by blast
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  4583
    with Cons.prems[of 0 "Suc j"]
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  4584
    have "x \<le> y"
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  4585
      by auto
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  4586
  }
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  4587
  ultimately
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  4588
  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
  4589
    unfolding sorted_Cons by auto
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  4590
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
  4591
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  4592
lemma sorted_equals_nth_mono:
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  4593
  "sorted xs = (\<forall>j < length xs. \<forall>i \<le> j. xs ! i \<le> xs ! j)"
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  4594
by (auto intro: sorted_nth_monoI sorted_nth_mono)
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  4595
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  4596
lemma set_insort: "set(insort_key f x xs) = insert x (set xs)"
24616
fac3dd4ade83 sorting
nipkow
parents: 24566
diff changeset
  4597
by (induct xs) auto
fac3dd4ade83 sorting
nipkow
parents: 24566
diff changeset
  4598
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
  4599
lemma set_sort[simp]: "set(sort_key f xs) = set xs"
24616
fac3dd4ade83 sorting
nipkow
parents: 24566
diff changeset
  4600
by (induct xs) (simp_all add:set_insort)
fac3dd4ade83 sorting
nipkow
parents: 24566
diff changeset
  4601
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
  4602
lemma distinct_insort: "distinct (insort_key f x xs) = (x \<notin> set xs \<and> distinct xs)"
24616
fac3dd4ade83 sorting
nipkow
parents: 24566
diff changeset
  4603
by(induct xs)(auto simp:set_insort)
fac3dd4ade83 sorting
nipkow
parents: 24566
diff changeset
  4604
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
  4605
lemma distinct_sort[simp]: "distinct (sort_key f xs) = distinct xs"
44921
58eef4843641 tuned proofs
huffman
parents: 44916
diff changeset
  4606
  by (induct xs) (simp_all add: distinct_insort)
24616
fac3dd4ade83 sorting
nipkow
parents: 24566
diff changeset
  4607
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
  4608
lemma sorted_insort_key: "sorted (map f (insort_key f x xs)) = sorted (map f 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
  4609
  by (induct xs) (auto simp:sorted_Cons set_insort)
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
  4610
24616
fac3dd4ade83 sorting
nipkow
parents: 24566
diff changeset
  4611
lemma sorted_insort: "sorted (insort x xs) = sorted 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
  4612
  using sorted_insort_key [where f="\<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
  4613
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
  4614
theorem sorted_sort_key [simp]: "sorted (map f (sort_key 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
  4615
  by (induct xs) (auto simp:sorted_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
  4616
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
  4617
theorem sorted_sort [simp]: "sorted (sort 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
  4618
  using sorted_sort_key [where f="\<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
  4619
36851
5135adb33157 added lemmas concerning last, butlast, insort
haftmann
parents: 36622
diff changeset
  4620
lemma sorted_butlast:
5135adb33157 added lemmas concerning last, butlast, insort
haftmann
parents: 36622
diff changeset
  4621
  assumes "xs \<noteq> []" and "sorted xs"
5135adb33157 added lemmas concerning last, butlast, insort
haftmann
parents: 36622
diff changeset
  4622
  shows "sorted (butlast xs)"
5135adb33157 added lemmas concerning last, butlast, insort
haftmann
parents: 36622
diff changeset
  4623
proof -
5135adb33157 added lemmas concerning last, butlast, insort
haftmann
parents: 36622
diff changeset
  4624
  from `xs \<noteq> []` obtain ys y where "xs = ys @ [y]" by (cases xs rule: rev_cases) auto
5135adb33157 added lemmas concerning last, butlast, insort
haftmann
parents: 36622
diff changeset
  4625
  with `sorted xs` show ?thesis by (simp add: sorted_append)
5135adb33157 added lemmas concerning last, butlast, insort
haftmann
parents: 36622
diff changeset
  4626
qed
5135adb33157 added lemmas concerning last, butlast, insort
haftmann
parents: 36622
diff changeset
  4627
  
5135adb33157 added lemmas concerning last, butlast, insort
haftmann
parents: 36622
diff changeset
  4628
lemma insort_not_Nil [simp]:
5135adb33157 added lemmas concerning last, butlast, insort
haftmann
parents: 36622
diff changeset
  4629
  "insort_key f a xs \<noteq> []"
5135adb33157 added lemmas concerning last, butlast, insort
haftmann
parents: 36622
diff changeset
  4630
  by (induct xs) simp_all
5135adb33157 added lemmas concerning last, butlast, insort
haftmann
parents: 36622
diff changeset
  4631
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
  4632
lemma insort_is_Cons: "\<forall>x\<in>set xs. f a \<le> f x \<Longrightarrow> insort_key f a xs = a # xs"
26143
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26073
diff changeset
  4633
by (cases xs) auto
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26073
diff changeset
  4634
44916
840d8c3d9113 added lemma motivated by a more specific lemma in the AFP-KBPs theories
bulwahn
parents: 44890
diff changeset
  4635
lemma sorted_sort_id: "sorted xs \<Longrightarrow> sort xs = xs"
840d8c3d9113 added lemma motivated by a more specific lemma in the AFP-KBPs theories
bulwahn
parents: 44890
diff changeset
  4636
  by (induct xs) (auto simp add: sorted_Cons insort_is_Cons)
840d8c3d9113 added lemma motivated by a more specific lemma in the AFP-KBPs theories
bulwahn
parents: 44890
diff changeset
  4637
39534
c798d4f1b682 generalized lemma insort_remove1 to insort_key_remove1
haftmann
parents: 39302
diff changeset
  4638
lemma sorted_map_remove1:
c798d4f1b682 generalized lemma insort_remove1 to insort_key_remove1
haftmann
parents: 39302
diff changeset
  4639
  "sorted (map f xs) \<Longrightarrow> sorted (map f (remove1 x xs))"
c798d4f1b682 generalized lemma insort_remove1 to insort_key_remove1
haftmann
parents: 39302
diff changeset
  4640
  by (induct xs) (auto simp add: sorted_Cons)
c798d4f1b682 generalized lemma insort_remove1 to insort_key_remove1
haftmann
parents: 39302
diff changeset
  4641
26143
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26073
diff changeset
  4642
lemma sorted_remove1: "sorted xs \<Longrightarrow> sorted (remove1 a xs)"
39534
c798d4f1b682 generalized lemma insort_remove1 to insort_key_remove1
haftmann
parents: 39302
diff changeset
  4643
  using sorted_map_remove1 [of "\<lambda>x. x"] by simp
c798d4f1b682 generalized lemma insort_remove1 to insort_key_remove1
haftmann
parents: 39302
diff changeset
  4644
c798d4f1b682 generalized lemma insort_remove1 to insort_key_remove1
haftmann
parents: 39302
diff changeset
  4645
lemma insort_key_remove1:
c798d4f1b682 generalized lemma insort_remove1 to insort_key_remove1
haftmann
parents: 39302
diff changeset
  4646
  assumes "a \<in> set xs" and "sorted (map f xs)" and "hd (filter (\<lambda>x. f a = f x) xs) = a"
c798d4f1b682 generalized lemma insort_remove1 to insort_key_remove1
haftmann
parents: 39302
diff changeset
  4647
  shows "insort_key f a (remove1 a xs) = xs"
c798d4f1b682 generalized lemma insort_remove1 to insort_key_remove1
haftmann
parents: 39302
diff changeset
  4648
using assms proof (induct 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
  4649
  case (Cons x xs)
39534
c798d4f1b682 generalized lemma insort_remove1 to insort_key_remove1
haftmann
parents: 39302
diff changeset
  4650
  then 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
  4651
  proof (cases "x = a")
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  4652
    case False
39534
c798d4f1b682 generalized lemma insort_remove1 to insort_key_remove1
haftmann
parents: 39302
diff changeset
  4653
    then have "f x \<noteq> f a" using Cons.prems by auto
c798d4f1b682 generalized lemma insort_remove1 to insort_key_remove1
haftmann
parents: 39302
diff changeset
  4654
    then have "f x < f a" using Cons.prems by (auto simp: sorted_Cons)
c798d4f1b682 generalized lemma insort_remove1 to insort_key_remove1
haftmann
parents: 39302
diff changeset
  4655
    with `f x \<noteq> f a` show ?thesis using Cons by (auto simp: sorted_Cons insort_is_Cons)
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
  4656
  qed (auto simp: sorted_Cons insort_is_Cons)
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  4657
qed simp
26143
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26073
diff changeset
  4658
39534
c798d4f1b682 generalized lemma insort_remove1 to insort_key_remove1
haftmann
parents: 39302
diff changeset
  4659
lemma insort_remove1:
c798d4f1b682 generalized lemma insort_remove1 to insort_key_remove1
haftmann
parents: 39302
diff changeset
  4660
  assumes "a \<in> set xs" and "sorted xs"
c798d4f1b682 generalized lemma insort_remove1 to insort_key_remove1
haftmann
parents: 39302
diff changeset
  4661
  shows "insort a (remove1 a xs) = xs"
c798d4f1b682 generalized lemma insort_remove1 to insort_key_remove1
haftmann
parents: 39302
diff changeset
  4662
proof (rule insort_key_remove1)
c798d4f1b682 generalized lemma insort_remove1 to insort_key_remove1
haftmann
parents: 39302
diff changeset
  4663
  from `a \<in> set xs` show "a \<in> set xs" .
c798d4f1b682 generalized lemma insort_remove1 to insort_key_remove1
haftmann
parents: 39302
diff changeset
  4664
  from `sorted xs` show "sorted (map (\<lambda>x. x) xs)" by simp
c798d4f1b682 generalized lemma insort_remove1 to insort_key_remove1
haftmann
parents: 39302
diff changeset
  4665
  from `a \<in> set xs` have "a \<in> set (filter (op = a) xs)" by auto
c798d4f1b682 generalized lemma insort_remove1 to insort_key_remove1
haftmann
parents: 39302
diff changeset
  4666
  then have "set (filter (op = a) xs) \<noteq> {}" by auto
c798d4f1b682 generalized lemma insort_remove1 to insort_key_remove1
haftmann
parents: 39302
diff changeset
  4667
  then have "filter (op = a) xs \<noteq> []" by (auto simp only: set_empty)
c798d4f1b682 generalized lemma insort_remove1 to insort_key_remove1
haftmann
parents: 39302
diff changeset
  4668
  then have "length (filter (op = a) xs) > 0" by simp
c798d4f1b682 generalized lemma insort_remove1 to insort_key_remove1
haftmann
parents: 39302
diff changeset
  4669
  then obtain n where n: "Suc n = length (filter (op = a) xs)"
c798d4f1b682 generalized lemma insort_remove1 to insort_key_remove1
haftmann
parents: 39302
diff changeset
  4670
    by (cases "length (filter (op = a) xs)") simp_all
c798d4f1b682 generalized lemma insort_remove1 to insort_key_remove1
haftmann
parents: 39302
diff changeset
  4671
  moreover have "replicate (Suc n) a = a # replicate n a"
c798d4f1b682 generalized lemma insort_remove1 to insort_key_remove1
haftmann
parents: 39302
diff changeset
  4672
    by simp
c798d4f1b682 generalized lemma insort_remove1 to insort_key_remove1
haftmann
parents: 39302
diff changeset
  4673
  ultimately show "hd (filter (op = a) xs) = a" by (simp add: replicate_length_filter)
c798d4f1b682 generalized lemma insort_remove1 to insort_key_remove1
haftmann
parents: 39302
diff changeset
  4674
qed
26143
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26073
diff changeset
  4675
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26073
diff changeset
  4676
lemma sorted_remdups[simp]:
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26073
diff changeset
  4677
  "sorted l \<Longrightarrow> sorted (remdups l)"
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26073
diff changeset
  4678
by (induct l) (auto simp: sorted_Cons)
314c0bcb7df7 Added useful general lemmas from the work with the HeapMonad
bulwahn
parents: 26073
diff changeset
  4679
53721
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  4680
lemma sorted_remdups_adj[simp]:
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  4681
  "sorted xs \<Longrightarrow> sorted (remdups_adj xs)"
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  4682
by (induct xs rule: remdups_adj.induct, simp_all split: split_if_asm add: sorted_Cons)
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  4683
24645
1af302128da2 Generalized [_.._] from nat to linear orders
nipkow
parents: 24640
diff changeset
  4684
lemma sorted_distinct_set_unique:
1af302128da2 Generalized [_.._] from nat to linear orders
nipkow
parents: 24640
diff changeset
  4685
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
  4686
shows "xs = ys"
1af302128da2 Generalized [_.._] from nat to linear orders
nipkow
parents: 24640
diff changeset
  4687
proof -
26734
a92057c1ee21 dropped some metis calls
haftmann
parents: 26584
diff changeset
  4688
  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
  4689
  from assms show ?thesis
1af302128da2 Generalized [_.._] from nat to linear orders
nipkow
parents: 24640
diff changeset
  4690
  proof(induct rule:list_induct2[OF 1])
1af302128da2 Generalized [_.._] from nat to linear orders
nipkow
parents: 24640
diff changeset
  4691
    case 1 show ?case by simp
1af302128da2 Generalized [_.._] from nat to linear orders
nipkow
parents: 24640
diff changeset
  4692
  next
1af302128da2 Generalized [_.._] from nat to linear orders
nipkow
parents: 24640
diff changeset
  4693
    case 2 thus ?case by (simp add:sorted_Cons)
1af302128da2 Generalized [_.._] from nat to linear orders
nipkow
parents: 24640
diff changeset
  4694
       (metis Diff_insert_absorb antisym insertE insert_iff)
1af302128da2 Generalized [_.._] from nat to linear orders
nipkow
parents: 24640
diff changeset
  4695
  qed
1af302128da2 Generalized [_.._] from nat to linear orders
nipkow
parents: 24640
diff changeset
  4696
qed
1af302128da2 Generalized [_.._] from nat to linear orders
nipkow
parents: 24640
diff changeset
  4697
35603
c0db094d0d80 moved lemma map_sorted_distinct_set_unique
haftmann
parents: 35510
diff changeset
  4698
lemma map_sorted_distinct_set_unique:
c0db094d0d80 moved lemma map_sorted_distinct_set_unique
haftmann
parents: 35510
diff changeset
  4699
  assumes "inj_on f (set xs \<union> set ys)"
c0db094d0d80 moved lemma map_sorted_distinct_set_unique
haftmann
parents: 35510
diff changeset
  4700
  assumes "sorted (map f xs)" "distinct (map f xs)"
c0db094d0d80 moved lemma map_sorted_distinct_set_unique
haftmann
parents: 35510
diff changeset
  4701
    "sorted (map f ys)" "distinct (map f ys)"
c0db094d0d80 moved lemma map_sorted_distinct_set_unique
haftmann
parents: 35510
diff changeset
  4702
  assumes "set xs = set ys"
c0db094d0d80 moved lemma map_sorted_distinct_set_unique
haftmann
parents: 35510
diff changeset
  4703
  shows "xs = ys"
c0db094d0d80 moved lemma map_sorted_distinct_set_unique
haftmann
parents: 35510
diff changeset
  4704
proof -
c0db094d0d80 moved lemma map_sorted_distinct_set_unique
haftmann
parents: 35510
diff changeset
  4705
  from assms have "map f xs = map f ys"
c0db094d0d80 moved lemma map_sorted_distinct_set_unique
haftmann
parents: 35510
diff changeset
  4706
    by (simp add: sorted_distinct_set_unique)
53374
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53017
diff changeset
  4707
  with `inj_on f (set xs \<union> set ys)` show "xs = ys"
35603
c0db094d0d80 moved lemma map_sorted_distinct_set_unique
haftmann
parents: 35510
diff changeset
  4708
    by (blast intro: map_inj_on)
c0db094d0d80 moved lemma map_sorted_distinct_set_unique
haftmann
parents: 35510
diff changeset
  4709
qed
c0db094d0d80 moved lemma map_sorted_distinct_set_unique
haftmann
parents: 35510
diff changeset
  4710
24645
1af302128da2 Generalized [_.._] from nat to linear orders
nipkow
parents: 24640
diff changeset
  4711
lemma finite_sorted_distinct_unique:
1af302128da2 Generalized [_.._] from nat to linear orders
nipkow
parents: 24640
diff changeset
  4712
shows "finite A \<Longrightarrow> EX! xs. set xs = A & sorted xs & distinct xs"
1af302128da2 Generalized [_.._] from nat to linear orders
nipkow
parents: 24640
diff changeset
  4713
apply(drule finite_distinct_list)
1af302128da2 Generalized [_.._] from nat to linear orders
nipkow
parents: 24640
diff changeset
  4714
apply clarify
1af302128da2 Generalized [_.._] from nat to linear orders
nipkow
parents: 24640
diff changeset
  4715
apply(rule_tac a="sort xs" in ex1I)
1af302128da2 Generalized [_.._] from nat to linear orders
nipkow
parents: 24640
diff changeset
  4716
apply (auto simp: sorted_distinct_set_unique)
1af302128da2 Generalized [_.._] from nat to linear orders
nipkow
parents: 24640
diff changeset
  4717
done
1af302128da2 Generalized [_.._] from nat to linear orders
nipkow
parents: 24640
diff changeset
  4718
39915
ecf97cf3d248 turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents: 39774
diff changeset
  4719
lemma
ecf97cf3d248 turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents: 39774
diff changeset
  4720
  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
  4721
  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
  4722
  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
  4723
proof -
ecf97cf3d248 turned distinct and sorted into inductive predicates: yields nice induction principles for free; more elegant proofs
haftmann
parents: 39774
diff changeset
  4724
  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
  4725
  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
  4726
    unfolding sorted_append by simp_all
29626
6f8aada233c1 sorted_take, sorted_drop
haftmann
parents: 29509
diff changeset
  4727
qed
6f8aada233c1 sorted_take, sorted_drop
haftmann
parents: 29509
diff changeset
  4728
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
  4729
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
  4730
  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
  4731
603320b93668 New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents: 33593
diff changeset
  4732
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
  4733
  by (subst takeWhile_eq_take) (auto dest: sorted_take)
29626
6f8aada233c1 sorted_take, sorted_drop
haftmann
parents: 29509
diff changeset
  4734
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4735
lemma sorted_filter:
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4736
  "sorted (map f xs) \<Longrightarrow> sorted (map f (filter P xs))"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4737
  by (induct xs) (simp_all add: sorted_Cons)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4738
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4739
lemma foldr_max_sorted:
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4740
  assumes "sorted (rev xs)"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4741
  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
  4742
  using assms
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53017
diff changeset
  4743
proof (induct xs)
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4744
  case (Cons x xs)
53374
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53017
diff changeset
  4745
  then have "sorted (rev xs)" using sorted_append by auto
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53017
diff changeset
  4746
  with Cons show ?case
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53017
diff changeset
  4747
    by (cases xs) (auto simp add: sorted_append max_def)
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4748
qed simp
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4749
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4750
lemma filter_equals_takeWhile_sorted_rev:
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4751
  assumes sorted: "sorted (rev (map f xs))"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4752
  shows "[x \<leftarrow> xs. t < f x] = takeWhile (\<lambda> x. t < f x) xs"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4753
    (is "filter ?P xs = ?tW")
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4754
proof (rule takeWhile_eq_filter[symmetric])
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4755
  let "?dW" = "dropWhile ?P xs"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4756
  fix x assume "x \<in> set ?dW"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4757
  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
  4758
    unfolding in_set_conv_nth by auto
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4759
  hence "length ?tW + i < length (?tW @ ?dW)"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4760
    unfolding length_append by simp
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4761
  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
  4762
  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
  4763
        (map f ?tW @ map f ?dW) ! (length (map f ?tW) + 0)"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4764
    using sorted_rev_nth_mono[OF sorted _ i', of "length ?tW"]
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4765
    unfolding map_append[symmetric] by simp
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4766
  hence "f x \<le> f (?dW ! 0)"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4767
    unfolding nth_append_length_plus nth_i
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4768
    using i preorder_class.le_less_trans[OF le0 i] by simp
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4769
  also have "... \<le> t"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4770
    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
  4771
    using hd_conv_nth[of "?dW"] by simp
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4772
  finally show "\<not> t < f x" by simp
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4773
qed
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4774
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
  4775
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
  4776
  "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
  4777
  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
  4778
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
  4779
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
  4780
  "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
  4781
  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
  4782
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
  4783
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
  4784
  "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
  4785
  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
  4786
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
  4787
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
  4788
  "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
  4789
  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
  4790
35608
db4045d1406e added insort_insert
haftmann
parents: 35603
diff changeset
  4791
lemma set_insort_insert:
db4045d1406e added insort_insert
haftmann
parents: 35603
diff changeset
  4792
  "set (insort_insert x xs) = insert x (set 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
  4793
  by (auto simp add: insort_insert_key_def set_insort)
35608
db4045d1406e added insort_insert
haftmann
parents: 35603
diff changeset
  4794
db4045d1406e added insort_insert
haftmann
parents: 35603
diff changeset
  4795
lemma distinct_insort_insert:
db4045d1406e added insort_insert
haftmann
parents: 35603
diff changeset
  4796
  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
  4797
  shows "distinct (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
  4798
  using assms by (induct xs) (auto simp add: insort_insert_key_def set_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
  4799
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
  4800
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
  4801
  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
  4802
  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
  4803
  using assms by (simp add: insort_insert_key_def sorted_insort_key)
35608
db4045d1406e added insort_insert
haftmann
parents: 35603
diff changeset
  4804
db4045d1406e added insort_insert
haftmann
parents: 35603
diff changeset
  4805
lemma sorted_insort_insert:
db4045d1406e added insort_insert
haftmann
parents: 35603
diff changeset
  4806
  assumes "sorted xs"
db4045d1406e added insort_insert
haftmann
parents: 35603
diff changeset
  4807
  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
  4808
  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
  4809
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
  4810
lemma filter_insort_triv:
37107
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  4811
  "\<not> P x \<Longrightarrow> filter P (insort_key f x xs) = filter P xs"
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  4812
  by (induct xs) simp_all
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  4813
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
  4814
lemma filter_insort:
37107
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  4815
  "sorted (map f xs) \<Longrightarrow> P x \<Longrightarrow> filter P (insort_key f x xs) = insort_key f x (filter P xs)"
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  4816
  using assms by (induct xs)
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  4817
    (auto simp add: sorted_Cons, subst insort_is_Cons, auto)
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  4818
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
  4819
lemma filter_sort:
37107
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  4820
  "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
  4821
  by (induct xs) (simp_all add: filter_insort_triv filter_insort)
37107
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  4822
40304
62bdd1bfcd90 lemmas sorted_map_same, sorted_same
haftmann
parents: 40230
diff changeset
  4823
lemma sorted_map_same:
62bdd1bfcd90 lemmas sorted_map_same, sorted_same
haftmann
parents: 40230
diff changeset
  4824
  "sorted (map f [x\<leftarrow>xs. f x = g xs])"
62bdd1bfcd90 lemmas sorted_map_same, sorted_same
haftmann
parents: 40230
diff changeset
  4825
proof (induct xs arbitrary: g)
37107
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  4826
  case Nil then show ?case by simp
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  4827
next
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  4828
  case (Cons x xs)
40304
62bdd1bfcd90 lemmas sorted_map_same, sorted_same
haftmann
parents: 40230
diff changeset
  4829
  then have "sorted (map f [y\<leftarrow>xs . f y = (\<lambda>xs. f x) xs])" .
62bdd1bfcd90 lemmas sorted_map_same, sorted_same
haftmann
parents: 40230
diff changeset
  4830
  moreover from Cons have "sorted (map f [y\<leftarrow>xs . f y = (g \<circ> Cons x) xs])" .
37107
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  4831
  ultimately show ?case by (simp_all add: sorted_Cons)
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  4832
qed
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  4833
40304
62bdd1bfcd90 lemmas sorted_map_same, sorted_same
haftmann
parents: 40230
diff changeset
  4834
lemma sorted_same:
62bdd1bfcd90 lemmas sorted_map_same, sorted_same
haftmann
parents: 40230
diff changeset
  4835
  "sorted [x\<leftarrow>xs. x = g xs]"
62bdd1bfcd90 lemmas sorted_map_same, sorted_same
haftmann
parents: 40230
diff changeset
  4836
  using sorted_map_same [of "\<lambda>x. x"] by simp
62bdd1bfcd90 lemmas sorted_map_same, sorted_same
haftmann
parents: 40230
diff changeset
  4837
37107
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  4838
lemma remove1_insort [simp]:
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  4839
  "remove1 x (insort x xs) = xs"
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  4840
  by (induct xs) simp_all
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  4841
24616
fac3dd4ade83 sorting
nipkow
parents: 24566
diff changeset
  4842
end
fac3dd4ade83 sorting
nipkow
parents: 24566
diff changeset
  4843
25277
95128fcdd7e8 added lemmas
nipkow
parents: 25221
diff changeset
  4844
lemma sorted_upt[simp]: "sorted[i..<j]"
95128fcdd7e8 added lemmas
nipkow
parents: 25221
diff changeset
  4845
by (induct j) (simp_all add:sorted_append)
95128fcdd7e8 added lemmas
nipkow
parents: 25221
diff changeset
  4846
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
  4847
lemma sorted_upto[simp]: "sorted[i..j]"
1dddf2f64266 got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents: 32078
diff changeset
  4848
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
  4849
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
  4850
apply(simp add:sorted_Cons)
1dddf2f64266 got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents: 32078
diff changeset
  4851
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
  4852
52379
7f864f2219a9 selection operator smallest_prime_beyond
haftmann
parents: 52148
diff changeset
  4853
lemma sorted_find_Min:
7f864f2219a9 selection operator smallest_prime_beyond
haftmann
parents: 52148
diff changeset
  4854
  assumes "sorted xs"
7f864f2219a9 selection operator smallest_prime_beyond
haftmann
parents: 52148
diff changeset
  4855
  assumes "\<exists>x \<in> set xs. P x"
7f864f2219a9 selection operator smallest_prime_beyond
haftmann
parents: 52148
diff changeset
  4856
  shows "List.find P xs = Some (Min {x\<in>set xs. P x})"
7f864f2219a9 selection operator smallest_prime_beyond
haftmann
parents: 52148
diff changeset
  4857
using assms proof (induct xs rule: sorted.induct)
7f864f2219a9 selection operator smallest_prime_beyond
haftmann
parents: 52148
diff changeset
  4858
  case Nil then show ?case by simp
7f864f2219a9 selection operator smallest_prime_beyond
haftmann
parents: 52148
diff changeset
  4859
next
7f864f2219a9 selection operator smallest_prime_beyond
haftmann
parents: 52148
diff changeset
  4860
  case (Cons xs x) show ?case proof (cases "P x")
7f864f2219a9 selection operator smallest_prime_beyond
haftmann
parents: 52148
diff changeset
  4861
    case True with Cons show ?thesis by (auto intro: Min_eqI [symmetric])
7f864f2219a9 selection operator smallest_prime_beyond
haftmann
parents: 52148
diff changeset
  4862
  next
7f864f2219a9 selection operator smallest_prime_beyond
haftmann
parents: 52148
diff changeset
  4863
    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
  4864
      by auto
7f864f2219a9 selection operator smallest_prime_beyond
haftmann
parents: 52148
diff changeset
  4865
    with Cons False show ?thesis by simp_all
7f864f2219a9 selection operator smallest_prime_beyond
haftmann
parents: 52148
diff changeset
  4866
  qed
7f864f2219a9 selection operator smallest_prime_beyond
haftmann
parents: 52148
diff changeset
  4867
qed
7f864f2219a9 selection operator smallest_prime_beyond
haftmann
parents: 52148
diff changeset
  4868
35115
446c5063e4fd modernized translations;
wenzelm
parents: 35028
diff changeset
  4869
446c5063e4fd modernized translations;
wenzelm
parents: 35028
diff changeset
  4870
subsubsection {* @{const transpose} on sorted lists *}
34933
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4871
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4872
lemma sorted_transpose[simp]:
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4873
  shows "sorted (rev (map length (transpose xs)))"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4874
  by (auto simp: sorted_equals_nth_mono rev_nth nth_transpose
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4875
    length_filter_conv_card intro: card_mono)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4876
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4877
lemma transpose_max_length:
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4878
  "foldr (\<lambda>xs. max (length xs)) (transpose xs) 0 = length [x \<leftarrow> xs. x \<noteq> []]"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4879
  (is "?L = ?R")
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4880
proof (cases "transpose xs = []")
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4881
  case False
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4882
  have "?L = foldr max (map length (transpose xs)) 0"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4883
    by (simp add: foldr_map comp_def)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4884
  also have "... = length (transpose xs ! 0)"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4885
    using False sorted_transpose by (simp add: foldr_max_sorted)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4886
  finally show ?thesis
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4887
    using False by (simp add: nth_transpose)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4888
next
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4889
  case True
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4890
  hence "[x \<leftarrow> xs. x \<noteq> []] = []"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4891
    by (auto intro!: filter_False simp: transpose_empty)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4892
  thus ?thesis by (simp add: transpose_empty True)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4893
qed
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4894
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4895
lemma length_transpose_sorted:
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4896
  fixes xs :: "'a list list"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4897
  assumes sorted: "sorted (rev (map length xs))"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4898
  shows "length (transpose xs) = (if xs = [] then 0 else length (xs ! 0))"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4899
proof (cases "xs = []")
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4900
  case False
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4901
  thus ?thesis
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4902
    using foldr_max_sorted[OF sorted] False
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4903
    unfolding length_transpose foldr_map comp_def
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4904
    by simp
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4905
qed simp
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4906
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4907
lemma nth_nth_transpose_sorted[simp]:
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4908
  fixes xs :: "'a list list"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4909
  assumes sorted: "sorted (rev (map length xs))"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4910
  and i: "i < length (transpose xs)"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4911
  and j: "j < length [ys \<leftarrow> xs. i < length ys]"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4912
  shows "transpose xs ! i ! j = xs ! j  ! i"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4913
  using j filter_equals_takeWhile_sorted_rev[OF sorted, of i]
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4914
    nth_transpose[OF i] nth_map[OF j]
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4915
  by (simp add: takeWhile_nth)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4916
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4917
lemma transpose_column_length:
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4918
  fixes xs :: "'a list list"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4919
  assumes sorted: "sorted (rev (map length xs))" and "i < length xs"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4920
  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
  4921
proof -
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4922
  have "xs \<noteq> []" using `i < length xs` by auto
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4923
  note filter_equals_takeWhile_sorted_rev[OF sorted, simp]
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4924
  { fix j assume "j \<le> i"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4925
    note sorted_rev_nth_mono[OF sorted, of j i, simplified, OF this `i < length xs`]
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4926
  } note sortedE = this[consumes 1]
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4927
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4928
  have "{j. j < length (transpose xs) \<and> i < length (transpose xs ! j)}
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4929
    = {..< length (xs ! i)}"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4930
  proof safe
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4931
    fix j
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4932
    assume "j < length (transpose xs)" and "i < length (transpose xs ! j)"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4933
    with this(2) nth_transpose[OF this(1)]
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4934
    have "i < length (takeWhile (\<lambda>ys. j < length ys) xs)" by simp
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4935
    from nth_mem[OF this] takeWhile_nth[OF this]
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4936
    show "j < length (xs ! i)" by (auto dest: set_takeWhileD)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4937
  next
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4938
    fix j assume "j < length (xs ! i)"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4939
    thus "j < length (transpose xs)"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4940
      using foldr_max_sorted[OF sorted] `xs \<noteq> []` sortedE[OF le0]
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4941
      by (auto simp: length_transpose comp_def foldr_map)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4942
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4943
    have "Suc i \<le> length (takeWhile (\<lambda>ys. j < length ys) xs)"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4944
      using `i < length xs` `j < length (xs ! i)` less_Suc_eq_le
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4945
      by (auto intro!: length_takeWhile_less_P_nth dest!: sortedE)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4946
    with nth_transpose[OF `j < length (transpose xs)`]
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4947
    show "i < length (transpose xs ! j)" by simp
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4948
  qed
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4949
  thus ?thesis by (simp add: length_filter_conv_card)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4950
qed
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4951
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4952
lemma transpose_column:
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4953
  fixes xs :: "'a list list"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4954
  assumes sorted: "sorted (rev (map length xs))" and "i < length xs"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4955
  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
  4956
    = xs ! i" (is "?R = _")
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4957
proof (rule nth_equalityI, safe)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4958
  show length: "length ?R = length (xs ! i)"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4959
    using transpose_column_length[OF assms] by simp
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4960
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4961
  fix j assume j: "j < length ?R"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4962
  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
  4963
  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
  4964
  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
  4965
  proof (rule length_takeWhile_less_P_nth)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4966
    show "Suc i \<le> length xs" using `i < length xs` by simp
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4967
    fix k assume "k < Suc i"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4968
    hence "k \<le> i" by auto
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4969
    with sorted_rev_nth_mono[OF sorted this] `i < length xs`
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4970
    have "length (xs ! i) \<le> length (xs ! k)" by simp
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4971
    thus "Suc j \<le> length (xs ! k)" using j_less by simp
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4972
  qed
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4973
  have i_less_filter: "i < length [ys\<leftarrow>xs . j < length ys]"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4974
    unfolding filter_equals_takeWhile_sorted_rev[OF sorted, of j]
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4975
    using i_less_tW by (simp_all add: Suc_le_eq)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4976
  from j show "?R ! j = xs ! i ! j"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4977
    unfolding filter_equals_takeWhile_sorted_rev[OF sorted_transpose, of i]
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4978
    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
  4979
qed
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4980
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4981
lemma transpose_transpose:
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4982
  fixes xs :: "'a list list"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4983
  assumes sorted: "sorted (rev (map length xs))"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4984
  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
  4985
proof -
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4986
  have len: "length ?L = length ?R"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4987
    unfolding length_transpose transpose_max_length
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4988
    using filter_equals_takeWhile_sorted_rev[OF sorted, of 0]
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4989
    by simp
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4990
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4991
  { fix i assume "i < length ?R"
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4992
    with less_le_trans[OF _ length_takeWhile_le[of _ xs]]
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4993
    have "i < length xs" by simp
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4994
  } note * = this
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4995
  show ?thesis
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4996
    by (rule nth_equalityI)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4997
       (simp_all add: len nth_transpose transpose_column[OF sorted] * takeWhile_nth)
0652d00305be Add transpose to the List-theory.
hoelzl
parents: 34917
diff changeset
  4998
qed
24616
fac3dd4ade83 sorting
nipkow
parents: 24566
diff changeset
  4999
34934
440605046777 Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents: 34933
diff changeset
  5000
theorem transpose_rectangle:
440605046777 Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents: 34933
diff changeset
  5001
  assumes "xs = [] \<Longrightarrow> n = 0"
440605046777 Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents: 34933
diff changeset
  5002
  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
  5003
  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
  5004
    (is "?trans = ?map")
440605046777 Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents: 34933
diff changeset
  5005
proof (rule nth_equalityI)
440605046777 Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents: 34933
diff changeset
  5006
  have "sorted (rev (map length xs))"
440605046777 Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents: 34933
diff changeset
  5007
    by (auto simp: rev_nth rect intro!: sorted_nth_monoI)
440605046777 Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents: 34933
diff changeset
  5008
  from foldr_max_sorted[OF this] assms
440605046777 Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents: 34933
diff changeset
  5009
  show len: "length ?trans = length ?map"
440605046777 Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents: 34933
diff changeset
  5010
    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
  5011
  moreover
440605046777 Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents: 34933
diff changeset
  5012
  { fix i assume "i < n" hence "[ys\<leftarrow>xs . i < length ys] = xs"
440605046777 Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents: 34933
diff changeset
  5013
      using rect by (auto simp: in_set_conv_nth intro!: filter_True) }
440605046777 Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents: 34933
diff changeset
  5014
  ultimately show "\<forall>i < length ?trans. ?trans ! i = ?map ! i"
440605046777 Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents: 34933
diff changeset
  5015
    by (auto simp: nth_transpose intro: nth_equalityI)
440605046777 Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents: 34933
diff changeset
  5016
qed
24616
fac3dd4ade83 sorting
nipkow
parents: 24566
diff changeset
  5017
35115
446c5063e4fd modernized translations;
wenzelm
parents: 35028
diff changeset
  5018
25069
081189141a6e added sorted_list_of_set
nipkow
parents: 25062
diff changeset
  5019
subsubsection {* @{text sorted_list_of_set} *}
081189141a6e added sorted_list_of_set
nipkow
parents: 25062
diff changeset
  5020
081189141a6e added sorted_list_of_set
nipkow
parents: 25062
diff changeset
  5021
text{* This function maps (finite) linearly ordered sets to sorted
081189141a6e added sorted_list_of_set
nipkow
parents: 25062
diff changeset
  5022
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
  5023
sets to lists but one should convert in the other direction (via
081189141a6e added sorted_list_of_set
nipkow
parents: 25062
diff changeset
  5024
@{const set}). *}
081189141a6e added sorted_list_of_set
nipkow
parents: 25062
diff changeset
  5025
51489
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 51315
diff changeset
  5026
subsubsection {* @{text sorted_list_of_set} *}
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 51315
diff changeset
  5027
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 51315
diff changeset
  5028
text{* This function maps (finite) linearly ordered sets to sorted
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 51315
diff changeset
  5029
lists. Warning: in most cases it is not a good idea to convert from
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 51315
diff changeset
  5030
sets to lists but one should convert in the other direction (via
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 51315
diff changeset
  5031
@{const set}). *}
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 51315
diff changeset
  5032
54868
bab6cade3cc5 prefer target-style syntaxx for sublocale
haftmann
parents: 54863
diff changeset
  5033
context linorder
bab6cade3cc5 prefer target-style syntaxx for sublocale
haftmann
parents: 54863
diff changeset
  5034
begin
bab6cade3cc5 prefer target-style syntaxx for sublocale
haftmann
parents: 54863
diff changeset
  5035
bab6cade3cc5 prefer target-style syntaxx for sublocale
haftmann
parents: 54863
diff changeset
  5036
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
  5037
  "sorted_list_of_set = folding.F insort []"
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 51315
diff changeset
  5038
54868
bab6cade3cc5 prefer target-style syntaxx for sublocale
haftmann
parents: 54863
diff changeset
  5039
sublocale sorted_list_of_set!: folding insort Nil
51489
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 51315
diff changeset
  5040
where
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 51315
diff changeset
  5041
  "folding.F insort [] = sorted_list_of_set"
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 51315
diff changeset
  5042
proof -
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 51315
diff changeset
  5043
  interpret comp_fun_commute insort by (fact comp_fun_commute_insort)
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 51315
diff changeset
  5044
  show "folding insort" by default (fact comp_fun_commute)
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 51315
diff changeset
  5045
  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
  5046
qed
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 51315
diff changeset
  5047
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 51315
diff changeset
  5048
lemma sorted_list_of_set_empty:
35195
5163c2d00904 more lemmas about sort(_key)
haftmann
parents: 35115
diff changeset
  5049
  "sorted_list_of_set {} = []"
51489
f738e6dbd844 fundamental revision of big operators on sets
haftmann
parents: 51315
diff changeset
  5050
  by (fact sorted_list_of_set.empty)
35195
5163c2d00904 more lemmas about sort(_key)
haftmann
parents: 35115
diff changeset
  5051
5163c2d00904 more lemmas about sort(_key)
haftmann
parents: 35115
diff changeset
  5052
lemma sorted_list_of_set_insert [simp]:
54868
bab6cade3cc5 prefer target-style syntaxx for sublocale
haftmann
parents: 54863
diff changeset
  5053
  "finite A \<Longrightarrow> sorted_list_of_set (insert x A) = insort x (sorted_list_of_set (A - {x}))"
bab6cade3cc5 prefer target-style syntaxx for sublocale
haftmann
parents: 54863
diff changeset
  5054
  by (fact sorted_list_of_set.insert_remove)
35195
5163c2d00904 more lemmas about sort(_key)
haftmann
parents: 35115
diff changeset
  5055
52122
510709f8881d more lemmas for sorted_list_of_set
noschinl
parents: 51875
diff changeset
  5056
lemma sorted_list_of_set_eq_Nil_iff [simp]:
510709f8881d more lemmas for sorted_list_of_set
noschinl
parents: 51875
diff changeset
  5057
  "finite A \<Longrightarrow> sorted_list_of_set A = [] \<longleftrightarrow> A = {}"
54868
bab6cade3cc5 prefer target-style syntaxx for sublocale
haftmann
parents: 54863
diff changeset
  5058
  by (auto simp: sorted_list_of_set.remove)
52122
510709f8881d more lemmas for sorted_list_of_set
noschinl
parents: 51875
diff changeset
  5059
35195
5163c2d00904 more lemmas about sort(_key)
haftmann
parents: 35115
diff changeset
  5060
lemma sorted_list_of_set [simp]:
5163c2d00904 more lemmas about sort(_key)
haftmann
parents: 35115
diff changeset
  5061
  "finite A \<Longrightarrow> set (sorted_list_of_set A) = A \<and> sorted (sorted_list_of_set A) 
5163c2d00904 more lemmas about sort(_key)
haftmann
parents: 35115
diff changeset
  5062
    \<and> distinct (sorted_list_of_set A)"
5163c2d00904 more lemmas about sort(_key)
haftmann
parents: 35115
diff changeset
  5063
  by (induct A rule: finite_induct) (simp_all add: set_insort sorted_insort distinct_insort)
5163c2d00904 more lemmas about sort(_key)
haftmann
parents: 35115
diff changeset
  5064
52122
510709f8881d more lemmas for sorted_list_of_set
noschinl
parents: 51875
diff changeset
  5065
lemma distinct_sorted_list_of_set:
510709f8881d more lemmas for sorted_list_of_set
noschinl
parents: 51875
diff changeset
  5066
  "distinct (sorted_list_of_set A)"
510709f8881d more lemmas for sorted_list_of_set
noschinl
parents: 51875
diff changeset
  5067
  using sorted_list_of_set by (cases "finite A") auto
510709f8881d more lemmas for sorted_list_of_set
noschinl
parents: 51875
diff changeset
  5068
47841
179b5e7c9803 making sorted_list_of_set executable
bulwahn
parents: 47640
diff changeset
  5069
lemma sorted_list_of_set_sort_remdups [code]:
35195
5163c2d00904 more lemmas about sort(_key)
haftmann
parents: 35115
diff changeset
  5070
  "sorted_list_of_set (set xs) = sort (remdups xs)"
5163c2d00904 more lemmas about sort(_key)
haftmann
parents: 35115
diff changeset
  5071
proof -
42871
1c0b99f950d9 names of fold_set locales resemble name of characteristic property more closely
haftmann
parents: 42809
diff changeset
  5072
  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
  5073
  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
  5074
qed
25069
081189141a6e added sorted_list_of_set
nipkow
parents: 25062
diff changeset
  5075
37107
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  5076
lemma sorted_list_of_set_remove:
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  5077
  assumes "finite A"
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  5078
  shows "sorted_list_of_set (A - {x}) = remove1 x (sorted_list_of_set A)"
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  5079
proof (cases "x \<in> A")
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  5080
  case False with assms have "x \<notin> set (sorted_list_of_set A)" by simp
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  5081
  with False show ?thesis by (simp add: remove1_idem)
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  5082
next
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  5083
  case True then obtain B where A: "A = insert x B" by (rule Set.set_insert)
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  5084
  with assms show ?thesis by simp
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  5085
qed
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  5086
25069
081189141a6e added sorted_list_of_set
nipkow
parents: 25062
diff changeset
  5087
end
081189141a6e added sorted_list_of_set
nipkow
parents: 25062
diff changeset
  5088
37107
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  5089
lemma sorted_list_of_set_range [simp]:
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  5090
  "sorted_list_of_set {m..<n} = [m..<n]"
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  5091
  by (rule sorted_distinct_set_unique) simp_all
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  5092
1535aa1c943a more lemmas
haftmann
parents: 37020
diff changeset
  5093
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15307
diff changeset
  5094
subsubsection {* @{text lists}: the list-forming operator over sets *}
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5095
23740
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  5096
inductive_set
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  5097
  lists :: "'a set => 'a list set"
23740
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  5098
  for A :: "'a set"
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  5099
where
39613
7723505c746a more lists lemmas
nipkow
parents: 39597
diff changeset
  5100
    Nil [intro!, simp]: "[]: lists A"
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53954
diff changeset
  5101
  | Cons [intro!, simp]: "[| a: A; l: lists A|] ==> a#l : lists A"
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53954
diff changeset
  5102
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53954
diff changeset
  5103
inductive_cases listsE [elim!]: "x#l : lists A"
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53954
diff changeset
  5104
inductive_cases listspE [elim!]: "listsp A (x # l)"
23740
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  5105
46313
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  5106
inductive_simps listsp_simps[code]:
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  5107
  "listsp A []"
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  5108
  "listsp A (x # xs)"
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  5109
23740
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  5110
lemma listsp_mono [mono]: "A \<le> B ==> listsp A \<le> listsp B"
46884
154dc6ec0041 tuned proofs
noschinl
parents: 46698
diff changeset
  5111
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
  5112
46176
1898e61e89c4 pred_subset/equals_eq are now standard pred_set_conv rules
berghofe
parents: 46156
diff changeset
  5113
lemmas lists_mono = listsp_mono [to_set]
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  5114
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22262
diff changeset
  5115
lemma listsp_infI:
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22262
diff changeset
  5116
  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
  5117
by induct blast+
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5118
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22262
diff changeset
  5119
lemmas lists_IntI = listsp_infI [to_set]
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22262
diff changeset
  5120
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22262
diff changeset
  5121
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
  5122
proof (rule mono_inf [where f=listsp, THEN order_antisym])
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  5123
  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
  5124
  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
  5125
qed
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  5126
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
  5127
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
  5128
46176
1898e61e89c4 pred_subset/equals_eq are now standard pred_set_conv rules
berghofe
parents: 46156
diff changeset
  5129
lemmas lists_Int_eq [simp] = listsp_inf_eq [to_set]
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  5130
39613
7723505c746a more lists lemmas
nipkow
parents: 39597
diff changeset
  5131
lemma Cons_in_lists_iff[simp]: "x#xs : lists A \<longleftrightarrow> x:A \<and> xs : lists A"
7723505c746a more lists lemmas
nipkow
parents: 39597
diff changeset
  5132
by auto
7723505c746a more lists lemmas
nipkow
parents: 39597
diff changeset
  5133
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  5134
lemma append_in_listsp_conv [iff]:
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  5135
     "(listsp A (xs @ ys)) = (listsp A xs \<and> listsp A ys)"
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5136
by (induct xs) auto
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5137
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  5138
lemmas append_in_lists_conv [iff] = append_in_listsp_conv [to_set]
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  5139
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  5140
lemma in_listsp_conv_set: "(listsp A xs) = (\<forall>x \<in> set xs. A x)"
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  5141
-- {* eliminate @{text listsp} in favour of @{text set} *}
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5142
by (induct xs) auto
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5143
46313
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  5144
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
  5145
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53954
diff changeset
  5146
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
  5147
by (rule in_listsp_conv_set [THEN iffD1])
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  5148
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53954
diff changeset
  5149
lemmas in_listsD [dest!] = in_listspD [to_set]
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53954
diff changeset
  5150
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53954
diff changeset
  5151
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
  5152
by (rule in_listsp_conv_set [THEN iffD2])
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  5153
54147
97a8ff4e4ac9 killed most "no_atp", to make Sledgehammer more complete
blanchet
parents: 53954
diff changeset
  5154
lemmas in_listsI [intro!] = in_listspI [to_set]
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5155
39597
48f63a6c7f85 new lemma
nipkow
parents: 39534
diff changeset
  5156
lemma lists_eq_set: "lists A = {xs. set xs <= A}"
48f63a6c7f85 new lemma
nipkow
parents: 39534
diff changeset
  5157
by auto
48f63a6c7f85 new lemma
nipkow
parents: 39534
diff changeset
  5158
39613
7723505c746a more lists lemmas
nipkow
parents: 39597
diff changeset
  5159
lemma lists_empty [simp]: "lists {} = {[]}"
7723505c746a more lists lemmas
nipkow
parents: 39597
diff changeset
  5160
by auto
7723505c746a more lists lemmas
nipkow
parents: 39597
diff changeset
  5161
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5162
lemma lists_UNIV [simp]: "lists UNIV = UNIV"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5163
by auto
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5164
50134
13211e07d931 add Countable_Set theory
hoelzl
parents: 50027
diff changeset
  5165
lemma lists_image: "lists (f`A) = map f ` lists A"
13211e07d931 add Countable_Set theory
hoelzl
parents: 50027
diff changeset
  5166
proof -
13211e07d931 add Countable_Set theory
hoelzl
parents: 50027
diff changeset
  5167
  { fix xs have "\<forall>x\<in>set xs. x \<in> f ` A \<Longrightarrow> xs \<in> map f ` lists A"
13211e07d931 add Countable_Set theory
hoelzl
parents: 50027
diff changeset
  5168
      by (induct xs) (auto simp del: map.simps simp add: map.simps[symmetric] intro!: imageI) }
13211e07d931 add Countable_Set theory
hoelzl
parents: 50027
diff changeset
  5169
  then show ?thesis by auto
13211e07d931 add Countable_Set theory
hoelzl
parents: 50027
diff changeset
  5170
qed
17086
0eb0c9259dd7 added quite a few functions for code generation
nipkow
parents: 16998
diff changeset
  5171
35115
446c5063e4fd modernized translations;
wenzelm
parents: 35028
diff changeset
  5172
subsubsection {* Inductive definition for membership *}
17086
0eb0c9259dd7 added quite a few functions for code generation
nipkow
parents: 16998
diff changeset
  5173
23740
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  5174
inductive ListMem :: "'a \<Rightarrow> 'a list \<Rightarrow> bool"
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  5175
where
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  5176
    elem:  "ListMem x (x # xs)"
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  5177
  | insert:  "ListMem x xs \<Longrightarrow> ListMem x (y # xs)"
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  5178
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  5179
lemma ListMem_iff: "(ListMem x xs) = (x \<in> set xs)"
17086
0eb0c9259dd7 added quite a few functions for code generation
nipkow
parents: 16998
diff changeset
  5180
apply (rule iffI)
0eb0c9259dd7 added quite a few functions for code generation
nipkow
parents: 16998
diff changeset
  5181
 apply (induct set: ListMem)
0eb0c9259dd7 added quite a few functions for code generation
nipkow
parents: 16998
diff changeset
  5182
  apply auto
0eb0c9259dd7 added quite a few functions for code generation
nipkow
parents: 16998
diff changeset
  5183
apply (induct xs)
0eb0c9259dd7 added quite a few functions for code generation
nipkow
parents: 16998
diff changeset
  5184
 apply (auto intro: ListMem.intros)
0eb0c9259dd7 added quite a few functions for code generation
nipkow
parents: 16998
diff changeset
  5185
done
0eb0c9259dd7 added quite a few functions for code generation
nipkow
parents: 16998
diff changeset
  5186
0eb0c9259dd7 added quite a few functions for code generation
nipkow
parents: 16998
diff changeset
  5187
35115
446c5063e4fd modernized translations;
wenzelm
parents: 35028
diff changeset
  5188
subsubsection {* Lists as Cartesian products *}
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5189
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5190
text{*@{text"set_Cons A Xs"}: the set of lists with head drawn from
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5191
@{term A} and tail drawn from @{term Xs}.*}
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5192
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  5193
definition set_Cons :: "'a set \<Rightarrow> 'a list set \<Rightarrow> 'a list set" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  5194
"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
  5195
17724
e969fc0a4925 simprules need names
paulson
parents: 17629
diff changeset
  5196
lemma set_Cons_sing_Nil [simp]: "set_Cons A {[]} = (%x. [x])`A"
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5197
by (auto simp add: set_Cons_def)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5198
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5199
text{*Yields the set of lists, all of the same length as the argument and
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5200
with elements drawn from the corresponding element of the argument.*}
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5201
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  5202
primrec listset :: "'a set list \<Rightarrow> 'a list set" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  5203
"listset [] = {[]}" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  5204
"listset (A # As) = set_Cons A (listset As)"
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5205
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5206
35115
446c5063e4fd modernized translations;
wenzelm
parents: 35028
diff changeset
  5207
subsection {* Relations on Lists *}
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5208
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5209
subsubsection {* Length Lexicographic Ordering *}
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5210
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5211
text{*These orderings preserve well-foundedness: shorter lists 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5212
  precede longer lists. These ordering are not used in dictionaries.*}
34941
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
  5213
        
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
  5214
primrec -- {*The lexicographic ordering for lists of the specified length*}
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
  5215
  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
  5216
"lexn r 0 = {}" |
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  5217
"lexn r (Suc n) =
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  5218
  (map_pair (%(x, xs). x#xs) (%(x, xs). x#xs) ` (r <*lex*> lexn r n)) Int
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  5219
  {(xs, ys). length xs = Suc n \<and> length ys = Suc n}"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  5220
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  5221
definition lex :: "('a \<times> 'a) set \<Rightarrow> ('a list \<times> 'a list) set" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  5222
"lex r = (\<Union>n. lexn r n)" -- {*Holds only between lists of the same length*}
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  5223
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  5224
definition lenlex :: "('a \<times> 'a) set => ('a list \<times> 'a list) set" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  5225
"lenlex r = inv_image (less_than <*lex*> lex r) (\<lambda>xs. (length xs, xs))"
34941
156925dd67af dropped some old primrecs and some constdefs
haftmann
parents: 34886
diff changeset
  5226
        -- {*Compares lists by their length and then lexicographically*}
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5227
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5228
lemma wf_lexn: "wf r ==> wf (lexn r n)"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5229
apply (induct n, simp, simp)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5230
apply(rule wf_subset)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5231
 prefer 2 apply (rule Int_lower1)
40608
6c28ab8b8166 mapper for list type; map_pair replaces prod_fun
haftmann
parents: 40593
diff changeset
  5232
apply(rule wf_map_pair_image)
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5233
 prefer 2 apply (rule inj_onI, auto)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5234
done
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5235
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5236
lemma lexn_length:
24526
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  5237
  "(xs, ys) : lexn r n ==> length xs = n \<and> length ys = n"
7fa202789bf6 tuned lemma; replaced !! by arbitrary
nipkow
parents: 24476
diff changeset
  5238
by (induct n arbitrary: xs ys) auto
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5239
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5240
lemma wf_lex [intro!]: "wf r ==> wf (lex r)"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5241
apply (unfold lex_def)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5242
apply (rule wf_UN)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5243
apply (blast intro: wf_lexn, clarify)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5244
apply (rename_tac m n)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5245
apply (subgoal_tac "m \<noteq> n")
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5246
 prefer 2 apply blast
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5247
apply (blast dest: lexn_length not_sym)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5248
done
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5249
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5250
lemma lexn_conv:
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5251
  "lexn r n =
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5252
    {(xs,ys). length xs = n \<and> length ys = n \<and>
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5253
    (\<exists>xys x y xs' ys'. xs= xys @ x#xs' \<and> ys= xys @ y # ys' \<and> (x, y):r)}"
18423
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  5254
apply (induct n, simp)
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5255
apply (simp add: image_Collect lex_prod_def, safe, blast)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5256
 apply (rule_tac x = "ab # xys" in exI, simp)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5257
apply (case_tac xys, simp_all, blast)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5258
done
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5259
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5260
lemma lex_conv:
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5261
  "lex r =
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5262
    {(xs,ys). length xs = length ys \<and>
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5263
    (\<exists>xys x y xs' ys'. xs = xys @ x # xs' \<and> ys = xys @ y # ys' \<and> (x, y):r)}"
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5264
by (force simp add: lex_def lexn_conv)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5265
15693
3a67e61c6e96 tuned Map, renamed lex stuff in List.
nipkow
parents: 15656
diff changeset
  5266
lemma wf_lenlex [intro!]: "wf r ==> wf (lenlex r)"
3a67e61c6e96 tuned Map, renamed lex stuff in List.
nipkow
parents: 15656
diff changeset
  5267
by (unfold lenlex_def) blast
3a67e61c6e96 tuned Map, renamed lex stuff in List.
nipkow
parents: 15656
diff changeset
  5268
3a67e61c6e96 tuned Map, renamed lex stuff in List.
nipkow
parents: 15656
diff changeset
  5269
lemma lenlex_conv:
3a67e61c6e96 tuned Map, renamed lex stuff in List.
nipkow
parents: 15656
diff changeset
  5270
    "lenlex r = {(xs,ys). length xs < length ys |
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5271
                 length xs = length ys \<and> (xs, ys) : lex r}"
30198
922f944f03b2 name changes
nipkow
parents: 30128
diff changeset
  5272
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
  5273
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5274
lemma Nil_notin_lex [iff]: "([], ys) \<notin> lex r"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5275
by (simp add: lex_conv)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5276
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5277
lemma Nil2_notin_lex [iff]: "(xs, []) \<notin> lex r"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5278
by (simp add:lex_conv)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5279
18447
da548623916a removed or modified some instances of [iff]
paulson
parents: 18423
diff changeset
  5280
lemma Cons_in_lex [simp]:
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5281
    "((x # xs, y # ys) : lex r) =
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5282
      ((x, y) : r \<and> length xs = length ys | x = y \<and> (xs, ys) : lex r)"
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5283
apply (simp add: lex_conv)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5284
apply (rule iffI)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5285
 prefer 2 apply (blast intro: Cons_eq_appendI, clarify)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5286
apply (case_tac xys, simp, simp)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5287
apply blast
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5288
done
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5289
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5290
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5291
subsubsection {* Lexicographic Ordering *}
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5292
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5293
text {* Classical lexicographic ordering on lists, ie. "a" < "ab" < "b".
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5294
    This ordering does \emph{not} preserve well-foundedness.
17090
603f23d71ada small mods to code lemmas
nipkow
parents: 17086
diff changeset
  5295
     Author: N. Voelker, March 2005. *} 
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5296
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  5297
definition lexord :: "('a \<times> 'a) set \<Rightarrow> ('a list \<times> 'a list) set" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  5298
"lexord r = {(x,y). \<exists> a v. y = x @ a # v \<or>
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5299
            (\<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
  5300
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5301
lemma lexord_Nil_left[simp]:  "([],y) \<in> lexord r = (\<exists> a x. y = a # x)"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  5302
by (unfold lexord_def, induct_tac y, auto) 
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5303
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5304
lemma lexord_Nil_right[simp]: "(x,[]) \<notin> lexord r"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  5305
by (unfold lexord_def, induct_tac x, auto)
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5306
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5307
lemma lexord_cons_cons[simp]:
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5308
     "((a # x, b # y) \<in> lexord r) = ((a,b)\<in> r | (a = b & (x,y)\<in> lexord r))"
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5309
  apply (unfold lexord_def, safe, simp_all)
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5310
  apply (case_tac u, simp, simp)
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5311
  apply (case_tac u, simp, clarsimp, blast, blast, clarsimp)
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5312
  apply (erule_tac x="b # u" in allE)
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5313
  by force
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5314
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5315
lemmas lexord_simps = lexord_Nil_left lexord_Nil_right lexord_cons_cons
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5316
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5317
lemma lexord_append_rightI: "\<exists> b z. y = b # z \<Longrightarrow> (x, x @ y) \<in> lexord r"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  5318
by (induct_tac x, auto)  
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5319
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5320
lemma lexord_append_left_rightI:
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5321
     "(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
  5322
by (induct_tac u, auto)
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5323
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5324
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
  5325
by (induct x, auto)
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5326
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5327
lemma lexord_append_leftD:
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5328
     "\<lbrakk> (x @ u, x @ v) \<in> lexord r; (! a. (a,a) \<notin> r) \<rbrakk> \<Longrightarrow> (u,v) \<in> lexord r"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  5329
by (erule rev_mp, induct_tac x, auto)
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5330
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5331
lemma lexord_take_index_conv: 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5332
   "((x,y) : lexord r) = 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5333
    ((length x < length y \<and> take (length x) y = x) \<or> 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5334
     (\<exists>i. i < min(length x)(length y) & take i x = take i y & (x!i,y!i) \<in> r))"
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5335
  apply (unfold lexord_def Let_def, clarsimp) 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5336
  apply (rule_tac f = "(% a b. a \<or> b)" in arg_cong2)
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5337
  apply auto 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5338
  apply (rule_tac x="hd (drop (length x) y)" in exI)
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5339
  apply (rule_tac x="tl (drop (length x) y)" in exI)
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5340
  apply (erule subst, simp add: min_def) 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5341
  apply (rule_tac x ="length u" in exI, simp) 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5342
  apply (rule_tac x ="take i x" in exI) 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5343
  apply (rule_tac x ="x ! i" in exI) 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5344
  apply (rule_tac x ="y ! i" in exI, safe) 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5345
  apply (rule_tac x="drop (Suc i) x" in exI)
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5346
  apply (drule sym, simp add: drop_Suc_conv_tl) 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5347
  apply (rule_tac x="drop (Suc i) y" in exI)
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5348
  by (simp add: drop_Suc_conv_tl) 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5349
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5350
-- {* lexord is extension of partial ordering List.lex *} 
41986
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  5351
lemma lexord_lex: "(x,y) \<in> lex r = ((x,y) \<in> lexord r \<and> length x = length y)"
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5352
  apply (rule_tac x = y in spec) 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5353
  apply (induct_tac x, clarsimp) 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5354
  by (clarify, case_tac x, simp, force)
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5355
41986
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  5356
lemma lexord_irreflexive: "ALL x. (x,x) \<notin> r \<Longrightarrow> (xs,xs) \<notin> lexord r"
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  5357
by (induct xs) auto
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  5358
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  5359
text{* By Ren\'e Thiemann: *}
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  5360
lemma lexord_partial_trans: 
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  5361
  "(\<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
  5362
   \<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
  5363
proof (induct xs arbitrary: ys zs)
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  5364
  case Nil
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  5365
  from Nil(3) show ?case unfolding lexord_def by (cases zs, auto)
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  5366
next
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  5367
  case (Cons x xs yys zzs)
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  5368
  from Cons(3) obtain y ys where yys: "yys = y # ys" unfolding lexord_def
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  5369
    by (cases yys, auto)
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  5370
  note Cons = Cons[unfolded yys]
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  5371
  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
  5372
  from Cons(4) obtain z zs where zzs: "zzs = z # zs" unfolding lexord_def
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  5373
    by (cases zzs, auto)
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  5374
  note Cons = Cons[unfolded zzs]
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  5375
  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
  5376
  {
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  5377
    assume "(xs,ys) \<in> lexord r" and "(ys,zs) \<in> lexord r"
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  5378
    from Cons(1)[OF _ this] Cons(2)
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  5379
    have "(xs,zs) \<in> lexord r" by auto
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  5380
  } note ind1 = this
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  5381
  {
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  5382
    assume "(x,y) \<in> r" and "(y,z) \<in> r"
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  5383
    from Cons(2)[OF _ this] have "(x,z) \<in> r" by auto
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  5384
  } note ind2 = this
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  5385
  from one two ind1 ind2
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  5386
  have "(x,z) \<in> r \<or> x = z \<and> (xs,zs) \<in> lexord r" by blast
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  5387
  thus ?case unfolding zzs by auto
95a67e3f29ad added lemma
nipkow
parents: 41842
diff changeset
  5388
qed
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5389
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5390
lemma lexord_trans: 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5391
    "\<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
  5392
by(auto simp: trans_def intro:lexord_partial_trans)
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5393
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5394
lemma lexord_transI:  "trans r \<Longrightarrow> trans (lexord r)"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  5395
by (rule transI, drule lexord_trans, blast) 
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5396
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5397
lemma lexord_linear: "(! a b. (a,b)\<in> r | a = b | (b,a) \<in> r) \<Longrightarrow> (x,y) : lexord r | x = y | (y,x) : lexord r"
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5398
  apply (rule_tac x = y in spec) 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5399
  apply (induct_tac x, rule allI) 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5400
  apply (case_tac x, simp, simp) 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5401
  apply (rule allI, case_tac x, simp, simp) 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5402
  by blast
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5403
54593
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5404
text {*
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5405
  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
  5406
  Author: Andreas Lochbihler
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5407
*}
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5408
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5409
context ord begin
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5410
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5411
inductive lexordp :: "'a list \<Rightarrow> 'a list \<Rightarrow> bool"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5412
where
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5413
  Nil: "lexordp [] (y # ys)"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5414
| Cons: "x < y \<Longrightarrow> lexordp (x # xs) (y # ys)"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5415
| Cons_eq:
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5416
  "\<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
  5417
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5418
lemma lexordp_simps [simp]:
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5419
  "lexordp [] ys = (ys \<noteq> [])"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5420
  "lexordp xs [] = False"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5421
  "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
  5422
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
  5423
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5424
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
  5425
  Nil: "lexordp_eq [] ys"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5426
| 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
  5427
| 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
  5428
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5429
lemma lexordp_eq_simps [simp]:
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5430
  "lexordp_eq [] ys = True"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5431
  "lexordp_eq xs [] \<longleftrightarrow> xs = []"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5432
  "lexordp_eq (x # xs) [] = False"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5433
  "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
  5434
by(subst lexordp_eq.simps, fastforce)+
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5435
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5436
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
  5437
by(induct xs)(auto simp add: neq_Nil_conv)
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5438
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5439
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
  5440
by(induct us) auto
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5441
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5442
lemma lexordp_eq_refl: "lexordp_eq xs xs"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5443
by(induct xs) simp_all
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5444
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5445
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
  5446
by(induct xs) auto
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5447
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5448
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
  5449
by(induct xs) auto
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5450
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5451
lemma lexordp_irreflexive: 
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5452
  assumes irrefl: "\<forall>x. \<not> x < x"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5453
  shows "\<not> lexordp xs xs"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5454
proof
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5455
  assume "lexordp xs xs"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5456
  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
  5457
qed
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5458
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5459
lemma lexordp_into_lexordp_eq:
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5460
  assumes "lexordp xs ys"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5461
  shows "lexordp_eq xs ys"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5462
using assms by induct simp_all
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5463
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5464
end
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5465
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5466
declare ord.lexordp_simps [simp, code]
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5467
declare ord.lexordp_eq_simps [code, simp]
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5468
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5469
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
  5470
unfolding lexordp_def ord.lexordp_def ..
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5471
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5472
context order begin
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5473
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5474
lemma lexordp_antisym:
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5475
  assumes "lexordp xs ys" "lexordp ys xs"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5476
  shows False
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5477
using assms by induct auto
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5478
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5479
lemma lexordp_irreflexive': "\<not> lexordp xs xs"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5480
by(rule lexordp_irreflexive) simp
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5481
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5482
end
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5483
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5484
context linorder begin
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5485
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5486
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
  5487
  assumes "lexordp xs ys"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5488
  obtains (Nil) y ys' where "xs = []" "ys = y # ys'"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5489
  | (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
  5490
  | (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
  5491
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
  5492
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5493
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
  5494
  assumes major: "lexordp xs ys"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5495
  and Nil: "\<And>y ys. P [] (y # ys)"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5496
  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
  5497
  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
  5498
  shows "P xs ys"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5499
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
  5500
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5501
lemma lexordp_iff:
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5502
  "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
  5503
  (is "?lhs = ?rhs")
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5504
proof
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5505
  assume ?lhs thus ?rhs
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5506
  proof induct
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5507
    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
  5508
  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
  5509
next
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5510
  assume ?rhs thus ?lhs
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5511
    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
  5512
qed
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5513
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5514
lemma lexordp_conv_lexord:
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5515
  "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
  5516
by(simp add: lexordp_iff lexord_def)
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5517
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5518
lemma lexordp_eq_antisym: 
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5519
  assumes "lexordp_eq xs ys" "lexordp_eq ys xs" 
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5520
  shows "xs = ys"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5521
using assms by induct simp_all
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5522
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5523
lemma lexordp_eq_trans:
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5524
  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
  5525
  shows "lexordp_eq xs zs"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5526
using assms
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5527
apply(induct arbitrary: zs)
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5528
apply(case_tac [2-3] zs)
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5529
apply auto
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5530
done
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5531
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5532
lemma lexordp_trans:
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5533
  assumes "lexordp xs ys" "lexordp ys zs"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5534
  shows "lexordp xs zs"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5535
using assms
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5536
apply(induct arbitrary: zs)
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5537
apply(case_tac [2-3] zs)
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5538
apply auto
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5539
done
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5540
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5541
lemma lexordp_linear: "lexordp xs ys \<or> xs = ys \<or> lexordp ys xs"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5542
proof(induct xs arbitrary: ys)
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5543
  case Nil thus ?case by(cases ys) simp_all
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5544
next
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5545
  case Cons thus ?case by(cases ys) auto
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5546
qed
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5547
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5548
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
  5549
  (is "?lhs \<longleftrightarrow> ?rhs")
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5550
proof
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5551
  assume ?lhs
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5552
  moreover hence "\<not> lexordp_eq ys xs" by induct simp_all
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5553
  ultimately show ?rhs by(simp add: lexordp_into_lexordp_eq)
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5554
next
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5555
  assume ?rhs
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5556
  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
  5557
  thus ?lhs by induct simp_all
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5558
qed
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5559
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5560
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
  5561
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
  5562
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5563
lemma lexordp_eq_linear: "lexordp_eq xs ys \<or> lexordp_eq ys xs"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5564
apply(induct xs arbitrary: ys)
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5565
apply(case_tac [!] ys)
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5566
apply auto
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5567
done
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5568
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5569
lemma lexordp_linorder: "class.linorder lexordp_eq lexordp"
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5570
by unfold_locales(auto simp add: lexordp_conv_lexordp_eq lexordp_eq_refl lexordp_eq_antisym intro: lexordp_eq_trans del: disjCI intro: lexordp_eq_linear)
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5571
8c0a27b9c1bd add predicate version of lexicographic order on lists
Andreas Lochbihler
parents: 54498
diff changeset
  5572
end
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  5573
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5574
subsubsection {* Lexicographic combination of measure functions *}
21103
367b4ad7c7cc Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents: 21079
diff changeset
  5575
367b4ad7c7cc Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents: 21079
diff changeset
  5576
text {* These are useful for termination proofs *}
367b4ad7c7cc Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents: 21079
diff changeset
  5577
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  5578
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
  5579
44013
5cfc1c36ae97 moved recdef package to HOL/Library/Old_Recdef.thy
krauss
parents: 43594
diff changeset
  5580
lemma wf_measures[simp]: "wf (measures fs)"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  5581
unfolding measures_def
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  5582
by blast
21103
367b4ad7c7cc Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents: 21079
diff changeset
  5583
367b4ad7c7cc Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents: 21079
diff changeset
  5584
lemma in_measures[simp]: 
367b4ad7c7cc Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents: 21079
diff changeset
  5585
  "(x, y) \<in> measures [] = False"
367b4ad7c7cc Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents: 21079
diff changeset
  5586
  "(x, y) \<in> measures (f # fs)
367b4ad7c7cc Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents: 21079
diff changeset
  5587
         = (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
  5588
unfolding measures_def
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  5589
by auto
21103
367b4ad7c7cc Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents: 21079
diff changeset
  5590
367b4ad7c7cc Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents: 21079
diff changeset
  5591
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
  5592
by simp
21103
367b4ad7c7cc Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents: 21079
diff changeset
  5593
367b4ad7c7cc Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents: 21079
diff changeset
  5594
lemma measures_lesseq: "f x <= 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
  5595
by auto
21103
367b4ad7c7cc Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents: 21079
diff changeset
  5596
367b4ad7c7cc Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents: 21079
diff changeset
  5597
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5598
subsubsection {* Lifting Relations to Lists: one element *}
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5599
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5600
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
  5601
"listrel1 r = {(xs,ys).
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5602
   \<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
  5603
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5604
lemma listrel1I:
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5605
  "\<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
  5606
  (xs, ys) \<in> listrel1 r"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5607
unfolding listrel1_def by auto
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5608
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5609
lemma listrel1E:
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5610
  "\<lbrakk> (xs, ys) \<in> listrel1 r;
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5611
     !!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
  5612
   \<rbrakk> \<Longrightarrow> P"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5613
unfolding listrel1_def by auto
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5614
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5615
lemma not_Nil_listrel1 [iff]: "([], xs) \<notin> listrel1 r"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5616
unfolding listrel1_def by blast
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5617
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5618
lemma not_listrel1_Nil [iff]: "(xs, []) \<notin> listrel1 r"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5619
unfolding listrel1_def by blast
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5620
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5621
lemma Cons_listrel1_Cons [iff]:
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5622
  "(x # xs, y # ys) \<in> listrel1 r \<longleftrightarrow>
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5623
   (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
  5624
by (simp add: listrel1_def Cons_eq_append_conv) (blast)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5625
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5626
lemma listrel1I1: "(x,y) \<in> r \<Longrightarrow> (x # xs, y # xs) \<in> listrel1 r"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5627
by (metis Cons_listrel1_Cons)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5628
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5629
lemma listrel1I2: "(xs, ys) \<in> listrel1 r \<Longrightarrow> (x # xs, x # ys) \<in> listrel1 r"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5630
by (metis Cons_listrel1_Cons)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5631
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5632
lemma append_listrel1I:
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5633
  "(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
  5634
    \<Longrightarrow> (xs @ us, ys @ vs) \<in> listrel1 r"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5635
unfolding listrel1_def
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5636
by auto (blast intro: append_eq_appendI)+
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5637
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5638
lemma Cons_listrel1E1[elim!]:
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5639
  assumes "(x # xs, ys) \<in> listrel1 r"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5640
    and "\<And>y. ys = y # xs \<Longrightarrow> (x, y) \<in> r \<Longrightarrow> R"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5641
    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
  5642
  shows R
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5643
using assms by (cases ys) blast+
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5644
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5645
lemma Cons_listrel1E2[elim!]:
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5646
  assumes "(xs, y # ys) \<in> listrel1 r"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5647
    and "\<And>x. xs = x # ys \<Longrightarrow> (x, y) \<in> r \<Longrightarrow> R"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5648
    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
  5649
  shows R
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5650
using assms by (cases xs) blast+
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5651
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5652
lemma snoc_listrel1_snoc_iff:
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5653
  "(xs @ [x], ys @ [y]) \<in> listrel1 r
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5654
    \<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
  5655
proof
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5656
  assume ?L thus ?R
44890
22f665a2e91c new fastforce replacing fastsimp - less confusing name
nipkow
parents: 44635
diff changeset
  5657
    by (fastforce simp: listrel1_def snoc_eq_iff_butlast butlast_append)
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5658
next
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5659
  assume ?R then show ?L unfolding listrel1_def by force
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5660
qed
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5661
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5662
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
  5663
unfolding listrel1_def by auto
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5664
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5665
lemma listrel1_mono:
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5666
  "r \<subseteq> s \<Longrightarrow> listrel1 r \<subseteq> listrel1 s"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5667
unfolding listrel1_def by blast
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5668
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5669
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5670
lemma listrel1_converse: "listrel1 (r^-1) = (listrel1 r)^-1"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5671
unfolding listrel1_def by blast
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5672
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5673
lemma in_listrel1_converse:
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5674
  "(x,y) : listrel1 (r^-1) \<longleftrightarrow> (x,y) : (listrel1 r)^-1"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5675
unfolding listrel1_def by blast
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5676
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5677
lemma listrel1_iff_update:
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5678
  "(xs,ys) \<in> (listrel1 r)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5679
   \<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
  5680
proof
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5681
  assume "?L"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5682
  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
  5683
    unfolding listrel1_def by auto
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5684
  then have "ys = xs[length u := y]" and "length u < length xs"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5685
    and "(xs ! length u, y) \<in> r" by auto
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5686
  then show "?R" by auto
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5687
next
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5688
  assume "?R"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5689
  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
  5690
    by auto
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5691
  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
  5692
    by (auto intro: upd_conv_take_nth_drop id_take_nth_drop)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5693
  then show "?L" by (auto simp: listrel1_def)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5694
qed
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5695
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5696
44510
5e580115dfcd added lemma
nipkow
parents: 44013
diff changeset
  5697
text{* Accessible part and wellfoundedness: *}
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5698
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5699
lemma Cons_acc_listrel1I [intro!]:
54295
45a5523d4a63 qualifed popular user space names
haftmann
parents: 54147
diff changeset
  5700
  "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
  5701
apply (induct arbitrary: xs set: Wellfounded.acc)
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5702
apply (erule thin_rl)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5703
apply (erule acc_induct)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5704
apply (rule accI)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5705
apply (blast)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5706
done
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5707
54295
45a5523d4a63 qualifed popular user space names
haftmann
parents: 54147
diff changeset
  5708
lemma lists_accD: "xs \<in> lists (Wellfounded.acc r) \<Longrightarrow> xs \<in> Wellfounded.acc (listrel1 r)"
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5709
apply (induct set: lists)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5710
 apply (rule accI)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5711
 apply simp
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5712
apply (rule accI)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5713
apply (fast dest: acc_downward)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5714
done
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5715
54295
45a5523d4a63 qualifed popular user space names
haftmann
parents: 54147
diff changeset
  5716
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
  5717
apply (induct set: Wellfounded.acc)
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5718
apply clarify
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5719
apply (rule accI)
44890
22f665a2e91c new fastforce replacing fastsimp - less confusing name
nipkow
parents: 44635
diff changeset
  5720
apply (fastforce dest!: in_set_conv_decomp[THEN iffD1] simp: listrel1_def)
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5721
done
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5722
44510
5e580115dfcd added lemma
nipkow
parents: 44013
diff changeset
  5723
lemma wf_listrel1_iff[simp]: "wf(listrel1 r) = wf r"
5e580115dfcd added lemma
nipkow
parents: 44013
diff changeset
  5724
by(metis wf_acc_iff in_lists_conv_set lists_accI lists_accD Cons_in_lists_iff)
5e580115dfcd added lemma
nipkow
parents: 44013
diff changeset
  5725
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5726
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5727
subsubsection {* Lifting Relations to Lists: all elements *}
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5728
23740
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  5729
inductive_set
46317
80dccedd6c14 generalize type of List.listrel
huffman
parents: 46313
diff changeset
  5730
  listrel :: "('a \<times> 'b) set \<Rightarrow> ('a list \<times> 'b list) set"
80dccedd6c14 generalize type of List.listrel
huffman
parents: 46313
diff changeset
  5731
  for r :: "('a \<times> 'b) set"
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  5732
where
23740
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  5733
    Nil:  "([],[]) \<in> listrel r"
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  5734
  | 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
  5735
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  5736
inductive_cases listrel_Nil1 [elim!]: "([],xs) \<in> listrel r"
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  5737
inductive_cases listrel_Nil2 [elim!]: "(xs,[]) \<in> listrel r"
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  5738
inductive_cases listrel_Cons1 [elim!]: "(y#ys,xs) \<in> listrel r"
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  5739
inductive_cases listrel_Cons2 [elim!]: "(xs,y#ys) \<in> listrel r"
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5740
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5741
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5742
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
  5743
by(induct rule: listrel.induct) auto
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5744
46313
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  5745
lemma listrel_iff_zip [code_unfold]: "(xs,ys) : listrel r \<longleftrightarrow>
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5746
  length xs = length ys & (\<forall>(x,y) \<in> set(zip xs ys). (x,y) \<in> r)" (is "?L \<longleftrightarrow> ?R")
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5747
proof
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5748
  assume ?L thus ?R by induct (auto intro: listrel_eq_len)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5749
next
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5750
  assume ?R thus ?L
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5751
    apply (clarify)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5752
    by (induct rule: list_induct2) (auto intro: listrel.intros)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5753
qed
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5754
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5755
lemma listrel_iff_nth: "(xs,ys) : listrel r \<longleftrightarrow>
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5756
  length xs = length ys & (\<forall>n < length xs. (xs!n, ys!n) \<in> r)" (is "?L \<longleftrightarrow> ?R")
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5757
by (auto simp add: all_set_conv_all_nth listrel_iff_zip)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5758
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5759
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5760
lemma listrel_mono: "r \<subseteq> s \<Longrightarrow> listrel r \<subseteq> listrel s"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5761
apply clarify  
23740
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  5762
apply (erule listrel.induct)
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  5763
apply (blast intro: listrel.intros)+
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5764
done
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5765
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5766
lemma listrel_subset: "r \<subseteq> A \<times> A \<Longrightarrow> listrel r \<subseteq> lists A \<times> lists A"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5767
apply clarify 
23740
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  5768
apply (erule listrel.induct, auto) 
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5769
done
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5770
30198
922f944f03b2 name changes
nipkow
parents: 30128
diff changeset
  5771
lemma listrel_refl_on: "refl_on A r \<Longrightarrow> refl_on (lists A) (listrel r)" 
922f944f03b2 name changes
nipkow
parents: 30128
diff changeset
  5772
apply (simp add: refl_on_def listrel_subset Ball_def)
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5773
apply (rule allI) 
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5774
apply (induct_tac x) 
23740
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  5775
apply (auto intro: listrel.intros)
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5776
done
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5777
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5778
lemma listrel_sym: "sym r \<Longrightarrow> sym (listrel r)" 
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5779
apply (auto simp add: sym_def)
23740
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  5780
apply (erule listrel.induct) 
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  5781
apply (blast intro: listrel.intros)+
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5782
done
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5783
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5784
lemma listrel_trans: "trans r \<Longrightarrow> trans (listrel r)" 
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5785
apply (simp add: trans_def)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5786
apply (intro allI) 
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5787
apply (rule impI) 
23740
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  5788
apply (erule listrel.induct) 
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  5789
apply (blast intro: listrel.intros)+
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5790
done
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5791
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5792
theorem equiv_listrel: "equiv A r \<Longrightarrow> equiv (lists A) (listrel r)"
30198
922f944f03b2 name changes
nipkow
parents: 30128
diff changeset
  5793
by (simp add: equiv_def listrel_refl_on listrel_sym listrel_trans) 
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5794
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5795
lemma listrel_rtrancl_refl[iff]: "(xs,xs) : listrel(r^*)"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5796
using listrel_refl_on[of UNIV, OF refl_rtrancl]
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5797
by(auto simp: refl_on_def)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5798
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5799
lemma listrel_rtrancl_trans:
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5800
  "\<lbrakk> (xs,ys) : listrel(r^*);  (ys,zs) : listrel(r^*) \<rbrakk>
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5801
  \<Longrightarrow> (xs,zs) : listrel(r^*)"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5802
by (metis listrel_trans trans_def trans_rtrancl)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5803
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5804
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5805
lemma listrel_Nil [simp]: "listrel r `` {[]} = {[]}"
23740
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  5806
by (blast intro: listrel.intros)
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5807
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5808
lemma listrel_Cons:
33318
ddd97d9dfbfb moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 32960
diff changeset
  5809
     "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
  5810
by (auto simp add: set_Cons_def intro: listrel.intros)
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5811
40230
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5812
text {* Relating @{term listrel1}, @{term listrel} and closures: *}
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5813
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5814
lemma listrel1_rtrancl_subset_rtrancl_listrel1:
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5815
  "listrel1 (r^*) \<subseteq> (listrel1 r)^*"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5816
proof (rule subrelI)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5817
  fix xs ys assume 1: "(xs,ys) \<in> listrel1 (r^*)"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5818
  { fix x y us vs
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5819
    have "(x,y) : r^* \<Longrightarrow> (us @ x # vs, us @ y # vs) : (listrel1 r)^*"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5820
    proof(induct rule: rtrancl.induct)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5821
      case rtrancl_refl show ?case by simp
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5822
    next
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5823
      case rtrancl_into_rtrancl thus ?case
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5824
        by (metis listrel1I rtrancl.rtrancl_into_rtrancl)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5825
    qed }
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5826
  thus "(xs,ys) \<in> (listrel1 r)^*" using 1 by(blast elim: listrel1E)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5827
qed
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5828
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5829
lemma rtrancl_listrel1_eq_len: "(x,y) \<in> (listrel1 r)^* \<Longrightarrow> length x = length y"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5830
by (induct rule: rtrancl.induct) (auto intro: listrel1_eq_len)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5831
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5832
lemma rtrancl_listrel1_ConsI1:
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5833
  "(xs,ys) : (listrel1 r)^* \<Longrightarrow> (x#xs,x#ys) : (listrel1 r)^*"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5834
apply(induct rule: rtrancl.induct)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5835
 apply simp
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5836
by (metis listrel1I2 rtrancl.rtrancl_into_rtrancl)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5837
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5838
lemma rtrancl_listrel1_ConsI2:
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5839
  "(x,y) \<in> r^* \<Longrightarrow> (xs, ys) \<in> (listrel1 r)^*
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5840
  \<Longrightarrow> (x # xs, y # ys) \<in> (listrel1 r)^*"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5841
  by (blast intro: rtrancl_trans rtrancl_listrel1_ConsI1 
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5842
    subsetD[OF listrel1_rtrancl_subset_rtrancl_listrel1 listrel1I1])
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5843
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5844
lemma listrel1_subset_listrel:
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5845
  "r \<subseteq> r' \<Longrightarrow> refl r' \<Longrightarrow> listrel1 r \<subseteq> listrel(r')"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5846
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
  5847
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5848
lemma listrel_reflcl_if_listrel1:
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5849
  "(xs,ys) : listrel1 r \<Longrightarrow> (xs,ys) : listrel(r^*)"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5850
by(erule listrel1E)(auto simp add: listrel_iff_zip set_zip)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5851
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5852
lemma listrel_rtrancl_eq_rtrancl_listrel1: "listrel (r^*) = (listrel1 r)^*"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5853
proof
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5854
  { fix x y assume "(x,y) \<in> listrel (r^*)"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5855
    then have "(x,y) \<in> (listrel1 r)^*"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5856
    by induct (auto intro: rtrancl_listrel1_ConsI2) }
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5857
  then show "listrel (r^*) \<subseteq> (listrel1 r)^*"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5858
    by (rule subrelI)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5859
next
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5860
  show "listrel (r^*) \<supseteq> (listrel1 r)^*"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5861
  proof(rule subrelI)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5862
    fix xs ys assume "(xs,ys) \<in> (listrel1 r)^*"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5863
    then show "(xs,ys) \<in> listrel (r^*)"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5864
    proof induct
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5865
      case base show ?case by(auto simp add: listrel_iff_zip set_zip)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5866
    next
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5867
      case (step ys zs)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5868
      thus ?case  by (metis listrel_reflcl_if_listrel1 listrel_rtrancl_trans)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5869
    qed
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5870
  qed
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5871
qed
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5872
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5873
lemma rtrancl_listrel1_if_listrel:
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5874
  "(xs,ys) : listrel r \<Longrightarrow> (xs,ys) : (listrel1 r)^*"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5875
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
  5876
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5877
lemma listrel_subset_rtrancl_listrel1: "listrel r \<subseteq> (listrel1 r)^*"
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5878
by(fast intro:rtrancl_listrel1_if_listrel)
be5c622e1de2 added lemmas about listrel(1)
nipkow
parents: 40210
diff changeset
  5879
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  5880
26749
397a1aeede7d * New attribute "termination_simp": Simp rules for termination proofs
krauss
parents: 26734
diff changeset
  5881
subsection {* Size function *}
397a1aeede7d * New attribute "termination_simp": Simp rules for termination proofs
krauss
parents: 26734
diff changeset
  5882
26875
e18574413bc4 Measure functions can now be declared via special rules, allowing for a
krauss
parents: 26795
diff changeset
  5883
lemma [measure_function]: "is_measure f \<Longrightarrow> is_measure (list_size f)"
e18574413bc4 Measure functions can now be declared via special rules, allowing for a
krauss
parents: 26795
diff changeset
  5884
by (rule is_measure_trivial)
e18574413bc4 Measure functions can now be declared via special rules, allowing for a
krauss
parents: 26795
diff changeset
  5885
e18574413bc4 Measure functions can now be declared via special rules, allowing for a
krauss
parents: 26795
diff changeset
  5886
lemma [measure_function]: "is_measure f \<Longrightarrow> is_measure (option_size f)"
e18574413bc4 Measure functions can now be declared via special rules, allowing for a
krauss
parents: 26795
diff changeset
  5887
by (rule is_measure_trivial)
e18574413bc4 Measure functions can now be declared via special rules, allowing for a
krauss
parents: 26795
diff changeset
  5888
e18574413bc4 Measure functions can now be declared via special rules, allowing for a
krauss
parents: 26795
diff changeset
  5889
lemma list_size_estimation[termination_simp]: 
e18574413bc4 Measure functions can now be declared via special rules, allowing for a
krauss
parents: 26795
diff changeset
  5890
  "x \<in> set xs \<Longrightarrow> y < f x \<Longrightarrow> y < list_size f xs"
26749
397a1aeede7d * New attribute "termination_simp": Simp rules for termination proofs
krauss
parents: 26734
diff changeset
  5891
by (induct xs) auto
397a1aeede7d * New attribute "termination_simp": Simp rules for termination proofs
krauss
parents: 26734
diff changeset
  5892
26875
e18574413bc4 Measure functions can now be declared via special rules, allowing for a
krauss
parents: 26795
diff changeset
  5893
lemma list_size_estimation'[termination_simp]: 
e18574413bc4 Measure functions can now be declared via special rules, allowing for a
krauss
parents: 26795
diff changeset
  5894
  "x \<in> set xs \<Longrightarrow> y \<le> f x \<Longrightarrow> y \<le> list_size f xs"
e18574413bc4 Measure functions can now be declared via special rules, allowing for a
krauss
parents: 26795
diff changeset
  5895
by (induct xs) auto
e18574413bc4 Measure functions can now be declared via special rules, allowing for a
krauss
parents: 26795
diff changeset
  5896
e18574413bc4 Measure functions can now be declared via special rules, allowing for a
krauss
parents: 26795
diff changeset
  5897
lemma list_size_map[simp]: "list_size f (map g xs) = list_size (f o g) xs"
e18574413bc4 Measure functions can now be declared via special rules, allowing for a
krauss
parents: 26795
diff changeset
  5898
by (induct xs) auto
e18574413bc4 Measure functions can now be declared via special rules, allowing for a
krauss
parents: 26795
diff changeset
  5899
44619
fd520fa2fb09 adding list_size_append (thanks to Rene Thiemann)
bulwahn
parents: 44618
diff changeset
  5900
lemma list_size_append[simp]: "list_size f (xs @ ys) = list_size f xs + list_size f ys"
fd520fa2fb09 adding list_size_append (thanks to Rene Thiemann)
bulwahn
parents: 44618
diff changeset
  5901
by (induct xs, auto)
fd520fa2fb09 adding list_size_append (thanks to Rene Thiemann)
bulwahn
parents: 44618
diff changeset
  5902
26875
e18574413bc4 Measure functions can now be declared via special rules, allowing for a
krauss
parents: 26795
diff changeset
  5903
lemma list_size_pointwise[termination_simp]: 
44618
f3635643a376 strengthening list_size_pointwise (thanks to Rene Thiemann)
bulwahn
parents: 44510
diff changeset
  5904
  "(\<And>x. x \<in> set xs \<Longrightarrow> f x \<le> g x) \<Longrightarrow> list_size f xs \<le> list_size g xs"
26875
e18574413bc4 Measure functions can now be declared via special rules, allowing for a
krauss
parents: 26795
diff changeset
  5905
by (induct xs) force+
26749
397a1aeede7d * New attribute "termination_simp": Simp rules for termination proofs
krauss
parents: 26734
diff changeset
  5906
31048
ac146fc38b51 refined HOL string theories and corresponding ML fragments
haftmann
parents: 31022
diff changeset
  5907
46143
c932c80d3eae farewell to theory More_List
haftmann
parents: 46138
diff changeset
  5908
subsection {* Monad operation *}
c932c80d3eae farewell to theory More_List
haftmann
parents: 46138
diff changeset
  5909
c932c80d3eae farewell to theory More_List
haftmann
parents: 46138
diff changeset
  5910
definition bind :: "'a list \<Rightarrow> ('a \<Rightarrow> 'b list) \<Rightarrow> 'b list" where
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  5911
"bind xs f = concat (map f xs)"
46143
c932c80d3eae farewell to theory More_List
haftmann
parents: 46138
diff changeset
  5912
c932c80d3eae farewell to theory More_List
haftmann
parents: 46138
diff changeset
  5913
hide_const (open) bind
c932c80d3eae farewell to theory More_List
haftmann
parents: 46138
diff changeset
  5914
c932c80d3eae farewell to theory More_List
haftmann
parents: 46138
diff changeset
  5915
lemma bind_simps [simp]:
c932c80d3eae farewell to theory More_List
haftmann
parents: 46138
diff changeset
  5916
  "List.bind [] f = []"
c932c80d3eae farewell to theory More_List
haftmann
parents: 46138
diff changeset
  5917
  "List.bind (x # xs) f = f x @ List.bind xs f"
c932c80d3eae farewell to theory More_List
haftmann
parents: 46138
diff changeset
  5918
  by (simp_all add: bind_def)
c932c80d3eae farewell to theory More_List
haftmann
parents: 46138
diff changeset
  5919
c932c80d3eae farewell to theory More_List
haftmann
parents: 46138
diff changeset
  5920
33318
ddd97d9dfbfb moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 32960
diff changeset
  5921
subsection {* Transfer *}
ddd97d9dfbfb moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 32960
diff changeset
  5922
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  5923
definition embed_list :: "nat list \<Rightarrow> int list" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  5924
"embed_list l = map int l"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  5925
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  5926
definition nat_list :: "int list \<Rightarrow> bool" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  5927
"nat_list l = nat_set (set l)"
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  5928
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  5929
definition return_list :: "int list \<Rightarrow> nat list" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  5930
"return_list l = map nat l"
33318
ddd97d9dfbfb moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 32960
diff changeset
  5931
ddd97d9dfbfb moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 32960
diff changeset
  5932
lemma transfer_nat_int_list_return_embed: "nat_list l \<longrightarrow>
ddd97d9dfbfb moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 32960
diff changeset
  5933
    embed_list (return_list l) = l"
ddd97d9dfbfb moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 32960
diff changeset
  5934
  unfolding embed_list_def return_list_def nat_list_def nat_set_def
ddd97d9dfbfb moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 32960
diff changeset
  5935
  apply (induct l)
ddd97d9dfbfb moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 32960
diff changeset
  5936
  apply auto
ddd97d9dfbfb moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 32960
diff changeset
  5937
done
ddd97d9dfbfb moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 32960
diff changeset
  5938
ddd97d9dfbfb moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 32960
diff changeset
  5939
lemma transfer_nat_int_list_functions:
ddd97d9dfbfb moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 32960
diff changeset
  5940
  "l @ m = return_list (embed_list l @ embed_list m)"
ddd97d9dfbfb moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 32960
diff changeset
  5941
  "[] = return_list []"
ddd97d9dfbfb moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 32960
diff changeset
  5942
  unfolding return_list_def embed_list_def
ddd97d9dfbfb moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 32960
diff changeset
  5943
  apply auto
ddd97d9dfbfb moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 32960
diff changeset
  5944
  apply (induct l, auto)
ddd97d9dfbfb moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 32960
diff changeset
  5945
  apply (induct m, auto)
ddd97d9dfbfb moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 32960
diff changeset
  5946
done
ddd97d9dfbfb moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 32960
diff changeset
  5947
ddd97d9dfbfb moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 32960
diff changeset
  5948
(*
ddd97d9dfbfb moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 32960
diff changeset
  5949
lemma transfer_nat_int_fold1: "fold f l x =
ddd97d9dfbfb moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 32960
diff changeset
  5950
    fold (%x. f (nat x)) (embed_list l) x";
ddd97d9dfbfb moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 32960
diff changeset
  5951
*)
ddd97d9dfbfb moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 32960
diff changeset
  5952
ddd97d9dfbfb moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents: 32960
diff changeset
  5953
37605
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  5954
subsection {* Code generation *}
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  5955
51875
dafd097dd1f4 tail recursive version of map, for code generation, optionally
nipkow
parents: 51738
diff changeset
  5956
text{* Optional tail recursive version of @{const map}. Can avoid
dafd097dd1f4 tail recursive version of map, for code generation, optionally
nipkow
parents: 51738
diff changeset
  5957
stack overflow in some target languages. *}
dafd097dd1f4 tail recursive version of map, for code generation, optionally
nipkow
parents: 51738
diff changeset
  5958
dafd097dd1f4 tail recursive version of map, for code generation, optionally
nipkow
parents: 51738
diff changeset
  5959
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
  5960
"map_tailrec_rev f [] bs = bs" |
dafd097dd1f4 tail recursive version of map, for code generation, optionally
nipkow
parents: 51738
diff changeset
  5961
"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
  5962
dafd097dd1f4 tail recursive version of map, for code generation, optionally
nipkow
parents: 51738
diff changeset
  5963
lemma map_tailrec_rev:
dafd097dd1f4 tail recursive version of map, for code generation, optionally
nipkow
parents: 51738
diff changeset
  5964
  "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
  5965
by(induction as arbitrary: bs) simp_all
dafd097dd1f4 tail recursive version of map, for code generation, optionally
nipkow
parents: 51738
diff changeset
  5966
dafd097dd1f4 tail recursive version of map, for code generation, optionally
nipkow
parents: 51738
diff changeset
  5967
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
  5968
"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
  5969
dafd097dd1f4 tail recursive version of map, for code generation, optionally
nipkow
parents: 51738
diff changeset
  5970
text{* Code equation: *}
dafd097dd1f4 tail recursive version of map, for code generation, optionally
nipkow
parents: 51738
diff changeset
  5971
lemma map_eq_map_tailrec: "map = map_tailrec"
dafd097dd1f4 tail recursive version of map, for code generation, optionally
nipkow
parents: 51738
diff changeset
  5972
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
  5973
dafd097dd1f4 tail recursive version of map, for code generation, optionally
nipkow
parents: 51738
diff changeset
  5974
37605
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  5975
subsubsection {* Counterparts for set-related operations *}
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  5976
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  5977
definition member :: "'a list \<Rightarrow> 'a \<Rightarrow> bool" where
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  5978
[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
  5979
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  5980
text {*
46030
51b2f3412a03 attribute code_abbrev superseedes code_unfold_post; tuned text
haftmann
parents: 45993
diff changeset
  5981
  Use @{text member} only for generating executable code.  Otherwise use
37605
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  5982
  @{prop "x \<in> set xs"} instead --- it is much easier to reason about.
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  5983
*}
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  5984
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  5985
lemma member_rec [code]:
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  5986
  "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
  5987
  "member [] y \<longleftrightarrow> False"
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  5988
  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
  5989
46030
51b2f3412a03 attribute code_abbrev superseedes code_unfold_post; tuned text
haftmann
parents: 45993
diff changeset
  5990
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
  5991
  "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
  5992
  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
  5993
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  5994
definition list_all :: "('a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> bool" where
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  5995
list_all_iff [code_abbrev]: "list_all P xs \<longleftrightarrow> Ball (set xs) P"
37605
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  5996
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  5997
definition list_ex :: "('a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> bool" where
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  5998
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
  5999
51b2f3412a03 attribute code_abbrev superseedes code_unfold_post; tuned text
haftmann
parents: 45993
diff changeset
  6000
definition list_ex1 :: "('a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> bool" where
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  6001
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
  6002
37605
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6003
text {*
46030
51b2f3412a03 attribute code_abbrev superseedes code_unfold_post; tuned text
haftmann
parents: 45993
diff changeset
  6004
  Usually you should prefer @{text "\<forall>x\<in>set xs"}, @{text "\<exists>x\<in>set xs"}
51b2f3412a03 attribute code_abbrev superseedes code_unfold_post; tuned text
haftmann
parents: 45993
diff changeset
  6005
  and @{text "\<exists>!x. x\<in>set xs \<and> _"} over @{const list_all}, @{const list_ex}
51b2f3412a03 attribute code_abbrev superseedes code_unfold_post; tuned text
haftmann
parents: 45993
diff changeset
  6006
  and @{const list_ex1} in specifications.
37605
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6007
*}
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6008
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6009
lemma list_all_simps [simp, code]:
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6010
  "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
  6011
  "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
  6012
  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
  6013
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6014
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
  6015
  "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
  6016
  "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
  6017
  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
  6018
40652
7bdfc1d6b143 adding code equations for EX1 on finite types
bulwahn
parents: 40608
diff changeset
  6019
lemma list_ex1_simps [simp, code]:
7bdfc1d6b143 adding code equations for EX1 on finite types
bulwahn
parents: 40608
diff changeset
  6020
  "list_ex1 P [] = False"
7bdfc1d6b143 adding code equations for EX1 on finite types
bulwahn
parents: 40608
diff changeset
  6021
  "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
  6022
  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
  6023
51b2f3412a03 attribute code_abbrev superseedes code_unfold_post; tuned text
haftmann
parents: 45993
diff changeset
  6024
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
  6025
  "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
  6026
  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
  6027
46030
51b2f3412a03 attribute code_abbrev superseedes code_unfold_post; tuned text
haftmann
parents: 45993
diff changeset
  6028
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
  6029
  "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
  6030
  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
  6031
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6032
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
  6033
  "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
  6034
  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
  6035
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6036
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
  6037
  "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
  6038
  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
  6039
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6040
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
  6041
  "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
  6042
  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
  6043
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6044
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
  6045
  "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
  6046
  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
  6047
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6048
lemma list_all_length:
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6049
  "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
  6050
  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
  6051
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6052
lemma list_ex_length:
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6053
  "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
  6054
  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
  6055
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6056
lemma list_all_cong [fundef_cong]:
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6057
  "xs = ys \<Longrightarrow> (\<And>x. x \<in> set ys \<Longrightarrow> f x = g x) \<Longrightarrow> list_all f xs = list_all g ys"
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6058
  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
  6059
47131
af818dcdc709 reverted to canonical name
nipkow
parents: 47122
diff changeset
  6060
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
  6061
  "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
  6062
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
  6063
50548
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  6064
definition can_select :: "('a \<Rightarrow> bool) \<Rightarrow> 'a set \<Rightarrow> bool" where
0aec55e63795 unified layout of defs
nipkow
parents: 50422
diff changeset
  6065
[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
  6066
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  6067
lemma can_select_set_list_ex1 [code]:
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  6068
  "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
  6069
  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
  6070
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  6071
46313
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6072
text {* Executable checks for relations on sets *}
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6073
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6074
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
  6075
"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
  6076
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6077
lemma [code_unfold]:
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6078
  "(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
  6079
unfolding listrel1p_def by auto
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6080
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6081
lemma [code]:
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6082
  "listrel1p r [] xs = False"
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6083
  "listrel1p r xs [] =  False"
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6084
  "listrel1p r (x # xs) (y # ys) \<longleftrightarrow>
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6085
     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
  6086
by (simp add: listrel1p_def)+
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6087
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6088
definition
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6089
  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
  6090
  "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
  6091
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6092
lemma [code_unfold]:
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6093
  "(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
  6094
unfolding lexordp_def by auto
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6095
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6096
lemma [code]:
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6097
  "lexordp r xs [] = False"
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6098
  "lexordp r [] (y#ys) = True"
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6099
  "lexordp r (x # xs) (y # ys) = (r x y | (x = y & lexordp r xs ys))"
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6100
unfolding lexordp_def by auto
0c4f18fe8218 adding code generation for some list relations
bulwahn
parents: 46176
diff changeset
  6101
37605
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6102
text {* Bounded quantification and summation over nats. *}
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6103
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6104
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
  6105
  "{..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
  6106
  by auto
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6107
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6108
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
  6109
  "{..<n} = set [0..<n]"
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6110
  by auto
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6111
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6112
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
  6113
  "{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
  6114
  by auto
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6115
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6116
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
  6117
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6118
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
  6119
  "{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
  6120
  by auto
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6121
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6122
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
  6123
  "{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
  6124
  by auto
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6125
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6126
lemma all_nat_less_eq [code_unfold]:
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6127
  "(\<forall>m<n\<Colon>nat. P m) \<longleftrightarrow> (\<forall>m \<in> {0..<n}. P m)"
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6128
  by auto
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6129
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6130
lemma ex_nat_less_eq [code_unfold]:
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6131
  "(\<exists>m<n\<Colon>nat. P m) \<longleftrightarrow> (\<exists>m \<in> {0..<n}. P m)"
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6132
  by auto
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6133
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6134
lemma all_nat_less [code_unfold]:
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6135
  "(\<forall>m\<le>n\<Colon>nat. P m) \<longleftrightarrow> (\<forall>m \<in> {0..n}. P m)"
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6136
  by auto
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6137
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6138
lemma ex_nat_less [code_unfold]:
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6139
  "(\<exists>m\<le>n\<Colon>nat. P m) \<longleftrightarrow> (\<exists>m \<in> {0..n}. P m)"
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6140
  by auto
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6141
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6142
lemma setsum_set_upt_conv_listsum_nat [code_unfold]:
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6143
  "setsum f (set [m..<n]) = listsum (map f [m..<n])"
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6144
  by (simp add: interv_listsum_conv_setsum_set_nat)
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6145
53954
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6146
text{* Bounded @{text LEAST} operator: *}
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6147
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6148
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
  6149
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6150
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
  6151
54890
cb892d835803 fundamental treatment of undefined vs. universally partial replaces code_abort
haftmann
parents: 54885
diff changeset
  6152
declare [[code abort: abort_Bleast]]
53954
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6153
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6154
lemma Bleast_code [code]:
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6155
 "Bleast (set xs) P = (case filter P (sort xs) of
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6156
    x#xs \<Rightarrow> x |
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6157
    [] \<Rightarrow> abort_Bleast (set xs) P)"
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6158
proof (cases "filter P (sort xs)")
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6159
  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
  6160
next
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6161
  case (Cons x ys)
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6162
  have "(LEAST x. x \<in> set xs \<and> P x) = x"
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6163
  proof (rule Least_equality)
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6164
    show "x \<in> set xs \<and> P x"
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6165
      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
  6166
    next
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6167
      fix y assume "y : set xs \<and> P y"
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6168
      hence "y : set (filter P xs)" by auto
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6169
      thus "x \<le> y"
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6170
        by (metis Cons eq_iff filter_sort set_ConsD set_sort sorted_Cons sorted_sort)
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6171
  qed
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6172
  thus ?thesis using Cons by (simp add: Bleast_def)
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6173
qed
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6174
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6175
declare Bleast_def[symmetric, code_unfold]
ccfd22f937be added code eqns for bounded LEAST operator
nipkow
parents: 53940
diff changeset
  6176
37605
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6177
text {* Summation over ints. *}
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6178
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6179
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
  6180
  "{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
  6181
by auto
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6182
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6183
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
  6184
  "{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
  6185
by auto
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6186
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6187
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
  6188
  "{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
  6189
by auto
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6190
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6191
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
  6192
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6193
lemma setsum_set_upto_conv_listsum_int [code_unfold]:
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6194
  "setsum f (set [i..j::int]) = listsum (map f [i..j])"
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6195
  by (simp add: interv_listsum_conv_setsum_set_int)
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6196
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6197
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6198
subsubsection {* Optimizing by rewriting *}
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6199
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6200
definition null :: "'a list \<Rightarrow> bool" where
46030
51b2f3412a03 attribute code_abbrev superseedes code_unfold_post; tuned text
haftmann
parents: 45993
diff changeset
  6201
  [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
  6202
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6203
text {*
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6204
  Efficient emptyness check is implemented by @{const null}.
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6205
*}
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6206
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6207
lemma null_rec [code]:
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6208
  "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
  6209
  "null [] \<longleftrightarrow> True"
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6210
  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
  6211
46030
51b2f3412a03 attribute code_abbrev superseedes code_unfold_post; tuned text
haftmann
parents: 45993
diff changeset
  6212
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
  6213
  "xs = [] \<longleftrightarrow> null xs"
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6214
  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
  6215
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6216
lemma equal_Nil_null [code_unfold]:
38857
97775f3e8722 renamed class/constant eq to equal; tuned some instantiations
haftmann
parents: 38715
diff changeset
  6217
  "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
  6218
  "HOL.equal [] = null"
36cf426cb1c6 Added symmetric code_unfold-lemmas for null and is_none
lammich <lammich@in.tum.de>
parents: 53721
diff changeset
  6219
  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
  6220
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6221
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
  6222
  [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
  6223
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6224
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
  6225
  [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
  6226
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6227
text {*
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6228
  Operations @{const maps} and @{const map_filter} avoid
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6229
  intermediate lists on execution -- do not use for proving.
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6230
*}
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6231
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6232
lemma maps_simps [code]:
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6233
  "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
  6234
  "maps f [] = []"
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6235
  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
  6236
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6237
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
  6238
  "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
  6239
  "map_filter f [] = []"
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6240
  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
  6241
46030
51b2f3412a03 attribute code_abbrev superseedes code_unfold_post; tuned text
haftmann
parents: 45993
diff changeset
  6242
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
  6243
  "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
  6244
  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
  6245
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6246
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
  6247
  "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
  6248
  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
  6249
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6250
text {* Optimized code for @{text"\<forall>i\<in>{a..b::int}"} and @{text"\<forall>n:{a..<b::nat}"}
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6251
and similiarly for @{text"\<exists>"}. *}
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6252
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6253
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
  6254
  "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
  6255
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6256
lemma [code]:
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6257
  "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
  6258
proof -
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6259
  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
  6260
  proof -
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6261
    fix n
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6262
    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
  6263
    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
  6264
  qed
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6265
  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
  6266
qed
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6267
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6268
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
  6269
  "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
  6270
  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
  6271
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6272
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
  6273
  "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
  6274
  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
  6275
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6276
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
  6277
  "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
  6278
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6279
lemma [code]:
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6280
  "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
  6281
proof -
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6282
  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
  6283
  proof -
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6284
    fix k
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6285
    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
  6286
    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
  6287
  qed
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6288
  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
  6289
qed
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6290
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6291
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
  6292
  "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
  6293
  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
  6294
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6295
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
  6296
  "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
  6297
  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
  6298
49808
418991ce7567 tail-recursive implementation for length
Andreas Lochbihler
parents: 49757
diff changeset
  6299
text {* optimized code (tail-recursive) for @{term length} *}
418991ce7567 tail-recursive implementation for length
Andreas Lochbihler
parents: 49757
diff changeset
  6300
418991ce7567 tail-recursive implementation for length
Andreas Lochbihler
parents: 49757
diff changeset
  6301
definition gen_length :: "nat \<Rightarrow> 'a list \<Rightarrow> nat"
418991ce7567 tail-recursive implementation for length
Andreas Lochbihler
parents: 49757
diff changeset
  6302
where "gen_length n xs = n + length xs"
418991ce7567 tail-recursive implementation for length
Andreas Lochbihler
parents: 49757
diff changeset
  6303
418991ce7567 tail-recursive implementation for length
Andreas Lochbihler
parents: 49757
diff changeset
  6304
lemma gen_length_code [code]:
418991ce7567 tail-recursive implementation for length
Andreas Lochbihler
parents: 49757
diff changeset
  6305
  "gen_length n [] = n"
418991ce7567 tail-recursive implementation for length
Andreas Lochbihler
parents: 49757
diff changeset
  6306
  "gen_length n (x # xs) = gen_length (Suc n) xs"
418991ce7567 tail-recursive implementation for length
Andreas Lochbihler
parents: 49757
diff changeset
  6307
by(simp_all add: gen_length_def)
418991ce7567 tail-recursive implementation for length
Andreas Lochbihler
parents: 49757
diff changeset
  6308
418991ce7567 tail-recursive implementation for length
Andreas Lochbihler
parents: 49757
diff changeset
  6309
declare list.size(3-4)[code del]
418991ce7567 tail-recursive implementation for length
Andreas Lochbihler
parents: 49757
diff changeset
  6310
418991ce7567 tail-recursive implementation for length
Andreas Lochbihler
parents: 49757
diff changeset
  6311
lemma length_code [code]: "length = gen_length 0"
418991ce7567 tail-recursive implementation for length
Andreas Lochbihler
parents: 49757
diff changeset
  6312
by(simp add: gen_length_def fun_eq_iff)
418991ce7567 tail-recursive implementation for length
Andreas Lochbihler
parents: 49757
diff changeset
  6313
418991ce7567 tail-recursive implementation for length
Andreas Lochbihler
parents: 49757
diff changeset
  6314
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
  6315
49948
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  6316
37605
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6317
subsubsection {* Pretty lists *}
15064
4f3102b50197 - Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents: 15045
diff changeset
  6318
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
  6319
ML {*
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
  6320
(* 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
  6321
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
  6322
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
  6323
sig
55148
7e1b7cb54114 avoid (now superfluous) indirect passing of constant names
haftmann
parents: 55147
diff changeset
  6324
  val implode_list: Code_Thingol.iterm -> Code_Thingol.iterm list option
50422
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
  6325
  val default_list: int * string
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
  6326
    -> (Code_Printer.fixity -> Code_Thingol.iterm -> Pretty.T)
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
  6327
    -> Code_Printer.fixity -> Code_Thingol.iterm -> Code_Thingol.iterm -> Pretty.T
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
  6328
  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
  6329
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
  6330
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
  6331
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
  6332
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
  6333
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
  6334
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
  6335
55148
7e1b7cb54114 avoid (now superfluous) indirect passing of constant names
haftmann
parents: 55147
diff changeset
  6336
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
  6337
  let
55148
7e1b7cb54114 avoid (now superfluous) indirect passing of constant names
haftmann
parents: 55147
diff changeset
  6338
    fun dest_cons (IConst { sym = Code_Symbol.Constant @{const_name Cons}, ... } `$ t1 `$ t2) = SOME (t1, t2)
50422
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
  6339
      | 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
  6340
    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
  6341
  in case t'
55148
7e1b7cb54114 avoid (now superfluous) indirect passing of constant names
haftmann
parents: 55147
diff changeset
  6342
   of IConst { sym = Code_Symbol.Constant @{const_name Nil}, ... } => SOME ts
50422
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
  6343
    | _ => 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
  6344
  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
  6345
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
  6346
fun default_list (target_fxy, target_cons) pr fxy t1 t2 =
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
  6347
  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
  6348
    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
  6349
    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
  6350
    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
  6351
  );
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
  6352
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
  6353
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
  6354
  let
55148
7e1b7cb54114 avoid (now superfluous) indirect passing of constant names
haftmann
parents: 55147
diff changeset
  6355
    fun pretty literals pr _ vars fxy [(t1, _), (t2, _)] =
7e1b7cb54114 avoid (now superfluous) indirect passing of constant names
haftmann
parents: 55147
diff changeset
  6356
      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
  6357
       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
  6358
            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
  6359
        | 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
  6360
            default_list (Code_Printer.infix_cons literals) (pr vars) fxy t1 t2;
52435
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 52380
diff changeset
  6361
  in
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 52380
diff changeset
  6362
    Code_Target.set_printings (Code_Symbol.Constant (@{const_name Cons},
55148
7e1b7cb54114 avoid (now superfluous) indirect passing of constant names
haftmann
parents: 55147
diff changeset
  6363
      [(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
  6364
  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
  6365
ee729dbd1b7f avoid ML_file in large theory files to improve performance of dependency discovery of main HOL (approx. 1s CPU time) -- relevant for any application using it, e.g. small paper sessions;
wenzelm
parents: 50134
diff changeset
  6366
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
  6367
*}
31055
2cf6efca6c71 proper structures for list and string code generation stuff
haftmann
parents: 31048
diff changeset
  6368
52435
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 52380
diff changeset
  6369
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
  6370
  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
  6371
    (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
  6372
    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
  6373
    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
  6374
    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
  6375
| 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
  6376
    (SML) "[]"
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 52380
diff changeset
  6377
    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
  6378
    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
  6379
    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
  6380
| 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
  6381
    (Haskell) -
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 52380
diff changeset
  6382
| 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
  6383
    (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
  6384
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 52380
diff changeset
  6385
setup {* fold (List_Code.add_literal_list) ["SML", "OCaml", "Haskell", "Scala"] *}
31048
ac146fc38b51 refined HOL string theories and corresponding ML fragments
haftmann
parents: 31022
diff changeset
  6386
ac146fc38b51 refined HOL string theories and corresponding ML fragments
haftmann
parents: 31022
diff changeset
  6387
code_reserved SML
ac146fc38b51 refined HOL string theories and corresponding ML fragments
haftmann
parents: 31022
diff changeset
  6388
  list
ac146fc38b51 refined HOL string theories and corresponding ML fragments
haftmann
parents: 31022
diff changeset
  6389
ac146fc38b51 refined HOL string theories and corresponding ML fragments
haftmann
parents: 31022
diff changeset
  6390
code_reserved OCaml
ac146fc38b51 refined HOL string theories and corresponding ML fragments
haftmann
parents: 31022
diff changeset
  6391
  list
ac146fc38b51 refined HOL string theories and corresponding ML fragments
haftmann
parents: 31022
diff changeset
  6392
21061
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  6393
37424
ed431cc99f17 use various predefined Haskell operations when generating code
haftmann
parents: 37408
diff changeset
  6394
subsubsection {* Use convenient predefined operations *}
ed431cc99f17 use various predefined Haskell operations when generating code
haftmann
parents: 37408
diff changeset
  6395
52435
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 52380
diff changeset
  6396
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
  6397
  constant "op @" \<rightharpoonup>
6646bb548c6b migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents: 52380
diff changeset
  6398
    (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
  6399
    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
  6400
    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
  6401
    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
  6402
| 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
  6403
    (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
  6404
| 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
  6405
    (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
  6406
| 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
  6407
    (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
  6408
| 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
  6409
    (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
  6410
| 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
  6411
    (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
  6412
| 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
  6413
    (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
  6414
| 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
  6415
    (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
  6416
| 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
  6417
    (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
  6418
| 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
  6419
    (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
  6420
| 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
  6421
    (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
  6422
| 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
  6423
    (Haskell) "any"
37605
625bc011768a put section on distinctness before listsum; refined code generation operations; dropped ancient infix mem
haftmann
parents: 37465
diff changeset
  6424
46147
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6425
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6426
subsubsection {* Implementation of sets by lists *}
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6427
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6428
lemma is_empty_set [code]:
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6429
  "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
  6430
  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
  6431
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6432
lemma empty_set [code]:
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6433
  "{} = set []"
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6434
  by simp
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6435
46156
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  6436
lemma UNIV_coset [code]:
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  6437
  "UNIV = List.coset []"
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  6438
  by simp
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  6439
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  6440
lemma compl_set [code]:
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  6441
  "- set xs = List.coset xs"
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  6442
  by simp
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  6443
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  6444
lemma compl_coset [code]:
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  6445
  "- List.coset xs = set xs"
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  6446
  by simp
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  6447
46147
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6448
lemma [code]:
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6449
  "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
  6450
  "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
  6451
  by (simp_all add: member_def)
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6452
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6453
lemma insert_code [code]:
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6454
  "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
  6455
  "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
  6456
  by simp_all
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6457
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6458
lemma remove_code [code]:
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6459
  "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
  6460
  "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
  6461
  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
  6462
49757
73ab6d4a9236 rename Set.project to Set.filter - more appropriate name
kuncar
parents: 49739
diff changeset
  6463
lemma filter_set [code]:
73ab6d4a9236 rename Set.project to Set.filter - more appropriate name
kuncar
parents: 49739
diff changeset
  6464
  "Set.filter P (set xs) = set (filter P xs)"
46156
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  6465
  by auto
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  6466
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  6467
lemma image_set [code]:
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  6468
  "image f (set xs) = set (map f xs)"
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  6469
  by simp
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  6470
47398
haftmann
parents: 47397
diff changeset
  6471
lemma subset_code [code]:
haftmann
parents: 47397
diff changeset
  6472
  "set xs \<le> B \<longleftrightarrow> (\<forall>x\<in>set xs. x \<in> B)"
haftmann
parents: 47397
diff changeset
  6473
  "A \<le> List.coset ys \<longleftrightarrow> (\<forall>y\<in>set ys. y \<notin> A)"
haftmann
parents: 47397
diff changeset
  6474
  "List.coset [] \<le> set [] \<longleftrightarrow> False"
haftmann
parents: 47397
diff changeset
  6475
  by auto
haftmann
parents: 47397
diff changeset
  6476
haftmann
parents: 47397
diff changeset
  6477
text {* A frequent case – avoid intermediate sets *}
haftmann
parents: 47397
diff changeset
  6478
lemma [code_unfold]:
haftmann
parents: 47397
diff changeset
  6479
  "set xs \<subseteq> set ys \<longleftrightarrow> list_all (\<lambda>x. x \<in> set ys) xs"
haftmann
parents: 47397
diff changeset
  6480
  by (auto simp: list_all_iff)
haftmann
parents: 47397
diff changeset
  6481
46147
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6482
lemma Ball_set [code]:
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6483
  "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
  6484
  by (simp add: list_all_iff)
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6485
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6486
lemma Bex_set [code]:
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6487
  "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
  6488
  by (simp add: list_ex_iff)
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6489
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6490
lemma card_set [code]:
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6491
  "card (set xs) = length (remdups xs)"
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6492
proof -
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6493
  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
  6494
    by (rule distinct_card) simp
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6495
  then show ?thesis by simp
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6496
qed
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6497
46156
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  6498
lemma the_elem_set [code]:
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  6499
  "the_elem (set [x]) = x"
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  6500
  by simp
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  6501
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  6502
lemma Pow_set [code]:
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  6503
  "Pow (set []) = {{}}"
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  6504
  "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
  6505
  by (simp_all add: Pow_insert Let_def)
f58b7f9d3920 massaging of code setup for sets
haftmann
parents: 46151
diff changeset
  6506
46383
26c422552cfe adding code equation for setsum
bulwahn
parents: 46317
diff changeset
  6507
lemma setsum_code [code]:
26c422552cfe adding code equation for setsum
bulwahn
parents: 46317
diff changeset
  6508
  "setsum f (set xs) = listsum (map f (remdups xs))"
26c422552cfe adding code equation for setsum
bulwahn
parents: 46317
diff changeset
  6509
by (simp add: listsum_distinct_conv_setsum_set)
46147
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6510
46424
b447318e5e1a adding code equation for Relation.image; adding map_project as correspondence to map_filter on lists
bulwahn
parents: 46418
diff changeset
  6511
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
  6512
  "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
  6513
b447318e5e1a adding code equation for Relation.image; adding map_project as correspondence to map_filter on lists
bulwahn
parents: 46418
diff changeset
  6514
lemma [code]:
b447318e5e1a adding code equation for Relation.image; adding map_project as correspondence to map_filter on lists
bulwahn
parents: 46418
diff changeset
  6515
  "map_project f (set xs) = set (List.map_filter f xs)"
47398
haftmann
parents: 47397
diff changeset
  6516
  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
  6517
b447318e5e1a adding code equation for Relation.image; adding map_project as correspondence to map_filter on lists
bulwahn
parents: 46418
diff changeset
  6518
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
  6519
49948
744934b818c7 moved quite generic material from theory Enum to more appropriate places
haftmann
parents: 49808
diff changeset
  6520
46147
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6521
text {* Operations on relations *}
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6522
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6523
lemma product_code [code]:
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6524
  "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
  6525
  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
  6526
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6527
lemma Id_on_set [code]:
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6528
  "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
  6529
  by (auto simp add: Id_on_def)
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6530
46424
b447318e5e1a adding code equation for Relation.image; adding map_project as correspondence to map_filter on lists
bulwahn
parents: 46418
diff changeset
  6531
lemma [code]:
b447318e5e1a adding code equation for Relation.image; adding map_project as correspondence to map_filter on lists
bulwahn
parents: 46418
diff changeset
  6532
  "R `` S = List.map_project (%(x, y). if x : S then Some y else None) R"
b447318e5e1a adding code equation for Relation.image; adding map_project as correspondence to map_filter on lists
bulwahn
parents: 46418
diff changeset
  6533
unfolding map_project_def by (auto split: prod.split split_if_asm)
b447318e5e1a adding code equation for Relation.image; adding map_project as correspondence to map_filter on lists
bulwahn
parents: 46418
diff changeset
  6534
46147
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6535
lemma trancl_set_ntrancl [code]:
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6536
  "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
  6537
  by (simp add: finite_trancl_ntranl)
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6538
47433
07f4bf913230 renamed "rel_comp" to "relcomp" (to be consistent with, e.g., "relpow")
griff
parents: 47131
diff changeset
  6539
lemma set_relcomp [code]:
46147
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6540
  "set xys O set yzs = set ([(fst xy, snd yz). xy \<leftarrow> xys, yz \<leftarrow> yzs, snd xy = fst yz])"
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6541
  by (auto simp add: Bex_def)
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6542
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6543
lemma wf_set [code]:
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6544
  "wf (set xs) = acyclic (set xs)"
2c4d8de91c4c moved lemmas about List.set and set operations to List theory
haftmann
parents: 46143
diff changeset
  6545
  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
  6546
55129
26bd1cba3ab5 killed 'More_BNFs' by moving its various bits where they (now) belong
blanchet
parents: 54890
diff changeset
  6547
53012
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6548
subsection {* Setup for Lifting/Transfer *}
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6549
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6550
subsubsection {* Relator and predicator properties *}
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6551
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6552
lemma list_all2_eq'[relator_eq]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6553
  "list_all2 (op =) = (op =)"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6554
by (rule ext)+ (simp add: list_all2_eq)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6555
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6556
lemma list_all2_mono'[relator_mono]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6557
  assumes "A \<le> B"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6558
  shows "(list_all2 A) \<le> (list_all2 B)"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6559
using assms by (auto intro: list_all2_mono)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6560
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6561
lemma list_all2_OO[relator_distr]: "list_all2 A OO list_all2 B = list_all2 (A OO B)"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6562
proof (intro ext iffI)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6563
  fix xs ys
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6564
  assume "list_all2 (A OO B) xs ys"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6565
  thus "(list_all2 A OO list_all2 B) xs ys"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6566
    unfolding OO_def
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6567
    by (induct, simp, simp add: list_all2_Cons1 list_all2_Cons2, fast)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6568
next
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6569
  fix xs ys
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6570
  assume "(list_all2 A OO list_all2 B) xs ys"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6571
  then obtain zs where "list_all2 A xs zs" and "list_all2 B zs ys" ..
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6572
  thus "list_all2 (A OO B) xs ys"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6573
    by (induct arbitrary: ys, simp, clarsimp simp add: list_all2_Cons1, fast)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6574
qed
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6575
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6576
lemma Domainp_list[relator_domain]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6577
  assumes "Domainp A = P"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6578
  shows "Domainp (list_all2 A) = (list_all P)"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6579
proof -
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6580
  {
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6581
    fix x
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6582
    have *: "\<And>x. (\<exists>y. A x y) = P x" using assms unfolding Domainp_iff by blast
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6583
    have "(\<exists>y. (list_all2 A x y)) = list_all P x"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6584
    by (induction x) (simp_all add: * list_all2_Cons1)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6585
  }
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6586
  then show ?thesis
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6587
  unfolding Domainp_iff[abs_def]
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6588
  by (auto iff: fun_eq_iff)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6589
qed 
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6590
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6591
lemma reflp_list_all2[reflexivity_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6592
  assumes "reflp R"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6593
  shows "reflp (list_all2 R)"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6594
proof (rule reflpI)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6595
  from assms have *: "\<And>xs. R xs xs" by (rule reflpE)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6596
  fix xs
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6597
  show "list_all2 R xs xs"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6598
    by (induct xs) (simp_all add: *)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6599
qed
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6600
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6601
lemma left_total_list_all2[reflexivity_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6602
  "left_total R \<Longrightarrow> left_total (list_all2 R)"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6603
  unfolding left_total_def
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6604
  apply safe
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6605
  apply (rename_tac xs, induct_tac xs, simp, simp add: list_all2_Cons1)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6606
done
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6607
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6608
lemma left_unique_list_all2 [reflexivity_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6609
  "left_unique R \<Longrightarrow> left_unique (list_all2 R)"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6610
  unfolding left_unique_def
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6611
  apply (subst (2) all_comm, subst (1) all_comm)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6612
  apply (rule allI, rename_tac zs, induct_tac zs)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6613
  apply (auto simp add: list_all2_Cons2)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6614
  done
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6615
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6616
lemma right_total_list_all2 [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6617
  "right_total R \<Longrightarrow> right_total (list_all2 R)"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6618
  unfolding right_total_def
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6619
  by (rule allI, induct_tac y, simp, simp add: list_all2_Cons2)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6620
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6621
lemma right_unique_list_all2 [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6622
  "right_unique R \<Longrightarrow> right_unique (list_all2 R)"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6623
  unfolding right_unique_def
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6624
  apply (rule allI, rename_tac xs, induct_tac xs)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6625
  apply (auto simp add: list_all2_Cons1)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6626
  done
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6627
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6628
lemma bi_total_list_all2 [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6629
  "bi_total A \<Longrightarrow> bi_total (list_all2 A)"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6630
  unfolding bi_total_def
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6631
  apply safe
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6632
  apply (rename_tac xs, induct_tac xs, simp, simp add: list_all2_Cons1)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6633
  apply (rename_tac ys, induct_tac ys, simp, simp add: list_all2_Cons2)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6634
  done
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6635
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6636
lemma bi_unique_list_all2 [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6637
  "bi_unique A \<Longrightarrow> bi_unique (list_all2 A)"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6638
  unfolding bi_unique_def
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6639
  apply (rule conjI)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6640
  apply (rule allI, rename_tac xs, induct_tac xs)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6641
  apply (simp, force simp add: list_all2_Cons1)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6642
  apply (subst (2) all_comm, subst (1) all_comm)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6643
  apply (rule allI, rename_tac xs, induct_tac xs)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6644
  apply (simp, force simp add: list_all2_Cons2)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6645
  done
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6646
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6647
lemma list_invariant_commute [invariant_commute]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6648
  "list_all2 (Lifting.invariant P) = Lifting.invariant (list_all P)"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6649
  apply (simp add: fun_eq_iff list_all2_def list_all_iff Lifting.invariant_def Ball_def) 
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6650
  apply (intro allI) 
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6651
  apply (induct_tac rule: list_induct2') 
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6652
  apply simp_all 
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6653
  apply fastforce
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6654
done
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6655
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6656
subsubsection {* Quotient theorem for the Lifting package *}
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6657
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6658
lemma Quotient_list[quot_map]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6659
  assumes "Quotient R Abs Rep T"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6660
  shows "Quotient (list_all2 R) (map Abs) (map Rep) (list_all2 T)"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6661
proof (unfold Quotient_alt_def, intro conjI allI impI)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6662
  from assms have 1: "\<And>x y. T x y \<Longrightarrow> Abs x = y"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6663
    unfolding Quotient_alt_def by simp
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6664
  fix xs ys assume "list_all2 T xs ys" thus "map Abs xs = ys"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6665
    by (induct, simp, simp add: 1)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6666
next
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6667
  from assms have 2: "\<And>x. T (Rep x) x"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6668
    unfolding Quotient_alt_def by simp
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6669
  fix xs show "list_all2 T (map Rep xs) xs"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6670
    by (induct xs, simp, simp add: 2)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6671
next
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6672
  from assms have 3: "\<And>x y. R x y \<longleftrightarrow> T x (Abs x) \<and> T y (Abs y) \<and> Abs x = Abs y"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6673
    unfolding Quotient_alt_def by simp
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6674
  fix xs ys show "list_all2 R xs ys \<longleftrightarrow> list_all2 T xs (map Abs xs) \<and>
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6675
    list_all2 T ys (map Abs ys) \<and> map Abs xs = map Abs ys"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6676
    by (induct xs ys rule: list_induct2', simp_all, metis 3)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6677
qed
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6678
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6679
subsubsection {* Transfer rules for the Transfer package *}
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6680
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6681
context
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6682
begin
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6683
interpretation lifting_syntax .
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6684
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6685
lemma Nil_transfer [transfer_rule]: "(list_all2 A) [] []"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6686
  by simp
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6687
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6688
lemma Cons_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6689
  "(A ===> list_all2 A ===> list_all2 A) Cons Cons"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6690
  unfolding fun_rel_def by simp
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6691
55404
5cb95b79a51f transformed 'option' and 'list' into new-style datatypes (but register them as old-style as well)
blanchet
parents: 55148
diff changeset
  6692
lemma case_list_transfer [transfer_rule]:
53012
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6693
  "(B ===> (A ===> list_all2 A ===> B) ===> list_all2 A ===> B)
55404
5cb95b79a51f transformed 'option' and 'list' into new-style datatypes (but register them as old-style as well)
blanchet
parents: 55148
diff changeset
  6694
    case_list case_list"
53012
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6695
  unfolding fun_rel_def by (simp split: list.split)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6696
55404
5cb95b79a51f transformed 'option' and 'list' into new-style datatypes (but register them as old-style as well)
blanchet
parents: 55148
diff changeset
  6697
lemma rec_list_transfer [transfer_rule]:
53012
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6698
  "(B ===> (A ===> list_all2 A ===> B ===> B) ===> list_all2 A ===> B)
55404
5cb95b79a51f transformed 'option' and 'list' into new-style datatypes (but register them as old-style as well)
blanchet
parents: 55148
diff changeset
  6699
    rec_list rec_list"
53012
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6700
  unfolding fun_rel_def by (clarify, erule list_all2_induct, simp_all)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6701
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6702
lemma tl_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6703
  "(list_all2 A ===> list_all2 A) tl tl"
55405
0a155051bd9d use new selector support to define 'the', 'hd', 'tl'
blanchet
parents: 55404
diff changeset
  6704
  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
  6705
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6706
lemma butlast_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6707
  "(list_all2 A ===> list_all2 A) butlast butlast"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6708
  by (rule fun_relI, erule list_all2_induct, auto)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6709
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6710
lemma set_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6711
  "(list_all2 A ===> set_rel A) set set"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6712
  unfolding set_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6713
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6714
lemma map_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6715
  "((A ===> B) ===> list_all2 A ===> list_all2 B) map map"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6716
  unfolding List.map_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6717
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6718
lemma append_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6719
  "(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
  6720
  unfolding List.append_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6721
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6722
lemma rev_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6723
  "(list_all2 A ===> list_all2 A) rev rev"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6724
  unfolding List.rev_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6725
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6726
lemma filter_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6727
  "((A ===> op =) ===> list_all2 A ===> list_all2 A) filter filter"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6728
  unfolding List.filter_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6729
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6730
lemma fold_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6731
  "((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
  6732
  unfolding List.fold_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6733
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6734
lemma foldr_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6735
  "((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
  6736
  unfolding List.foldr_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6737
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6738
lemma foldl_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6739
  "((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
  6740
  unfolding List.foldl_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6741
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6742
lemma concat_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6743
  "(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
  6744
  unfolding List.concat_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6745
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6746
lemma drop_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6747
  "(op = ===> list_all2 A ===> list_all2 A) drop drop"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6748
  unfolding List.drop_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6749
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6750
lemma take_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6751
  "(op = ===> list_all2 A ===> list_all2 A) take take"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6752
  unfolding List.take_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6753
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6754
lemma list_update_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6755
  "(list_all2 A ===> op = ===> A ===> list_all2 A) list_update list_update"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6756
  unfolding list_update_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6757
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6758
lemma takeWhile_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6759
  "((A ===> op =) ===> list_all2 A ===> list_all2 A) takeWhile takeWhile"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6760
  unfolding takeWhile_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6761
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6762
lemma dropWhile_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6763
  "((A ===> op =) ===> list_all2 A ===> list_all2 A) dropWhile dropWhile"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6764
  unfolding dropWhile_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6765
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6766
lemma zip_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6767
  "(list_all2 A ===> list_all2 B ===> list_all2 (prod_rel A B)) zip zip"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6768
  unfolding zip_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6769
53721
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  6770
lemma product_transfer [transfer_rule]:
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  6771
  "(list_all2 A ===> list_all2 B ===> list_all2 (prod_rel A B)) List.product List.product"
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  6772
  unfolding List.product_def by transfer_prover
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  6773
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  6774
lemma product_lists_transfer [transfer_rule]:
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  6775
  "(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
  6776
  unfolding product_lists_def by transfer_prover
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  6777
53012
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6778
lemma insert_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6779
  assumes [transfer_rule]: "bi_unique A"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6780
  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
  6781
  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
  6782
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6783
lemma find_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6784
  "((A ===> op =) ===> list_all2 A ===> option_rel A) List.find List.find"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6785
  unfolding List.find_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6786
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6787
lemma remove1_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6788
  assumes [transfer_rule]: "bi_unique A"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6789
  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
  6790
  unfolding remove1_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6791
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6792
lemma removeAll_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6793
  assumes [transfer_rule]: "bi_unique A"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6794
  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
  6795
  unfolding removeAll_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6796
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6797
lemma distinct_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6798
  assumes [transfer_rule]: "bi_unique A"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6799
  shows "(list_all2 A ===> op =) distinct distinct"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6800
  unfolding distinct_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6801
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6802
lemma remdups_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6803
  assumes [transfer_rule]: "bi_unique A"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6804
  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
  6805
  unfolding remdups_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6806
53721
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  6807
lemma remdups_adj_transfer [transfer_rule]:
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  6808
  assumes [transfer_rule]: "bi_unique A"
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  6809
  shows "(list_all2 A ===> list_all2 A) remdups_adj remdups_adj"
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  6810
  proof (rule fun_relI, erule list_all2_induct)
ccaceea6c768 added two functions to List (one contributed by Manuel Eberl)
traytel
parents: 53689
diff changeset
  6811
  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
  6812
53012
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6813
lemma replicate_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6814
  "(op = ===> A ===> list_all2 A) replicate replicate"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6815
  unfolding replicate_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6816
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6817
lemma length_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6818
  "(list_all2 A ===> op =) length length"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6819
  unfolding list_size_overloaded_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6820
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6821
lemma rotate1_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6822
  "(list_all2 A ===> list_all2 A) rotate1 rotate1"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6823
  unfolding rotate1_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6824
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6825
lemma rotate_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6826
  "(op = ===> list_all2 A ===> list_all2 A) rotate rotate"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6827
  unfolding rotate_def [abs_def] by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6828
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6829
lemma list_all2_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6830
  "((A ===> B ===> op =) ===> list_all2 A ===> list_all2 B ===> op =)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6831
    list_all2 list_all2"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6832
  apply (subst (4) list_all2_def [abs_def])
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6833
  apply (subst (3) list_all2_def [abs_def])
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6834
  apply transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6835
  done
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6836
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6837
lemma sublist_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6838
  "(list_all2 A ===> set_rel (op =) ===> list_all2 A) sublist sublist"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6839
  unfolding sublist_def [abs_def] by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6840
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6841
lemma partition_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6842
  "((A ===> op =) ===> list_all2 A ===> prod_rel (list_all2 A) (list_all2 A))
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6843
    partition partition"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6844
  unfolding partition_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6845
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6846
lemma lists_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6847
  "(set_rel A ===> set_rel (list_all2 A)) lists lists"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6848
  apply (rule fun_relI, rule set_relI)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6849
  apply (erule lists.induct, simp)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6850
  apply (simp only: set_rel_def list_all2_Cons1, metis lists.Cons)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6851
  apply (erule lists.induct, simp)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6852
  apply (simp only: set_rel_def list_all2_Cons2, metis lists.Cons)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6853
  done
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6854
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6855
lemma set_Cons_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6856
  "(set_rel A ===> set_rel (list_all2 A) ===> set_rel (list_all2 A))
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6857
    set_Cons set_Cons"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6858
  unfolding fun_rel_def set_rel_def set_Cons_def
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6859
  apply safe
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6860
  apply (simp add: list_all2_Cons1, fast)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6861
  apply (simp add: list_all2_Cons2, fast)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6862
  done
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6863
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6864
lemma listset_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6865
  "(list_all2 (set_rel A) ===> set_rel (list_all2 A)) listset listset"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6866
  unfolding listset_def by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6867
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6868
lemma null_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6869
  "(list_all2 A ===> op =) List.null List.null"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6870
  unfolding fun_rel_def List.null_def by auto
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6871
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6872
lemma list_all_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6873
  "((A ===> op =) ===> list_all2 A ===> op =) list_all list_all"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6874
  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
  6875
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6876
lemma list_ex_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6877
  "((A ===> op =) ===> list_all2 A ===> op =) list_ex list_ex"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6878
  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
  6879
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6880
lemma splice_transfer [transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6881
  "(list_all2 A ===> list_all2 A ===> list_all2 A) splice splice"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6882
  apply (rule fun_relI, erule list_all2_induct, simp add: fun_rel_def, simp)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6883
  apply (rule fun_relI)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6884
  apply (erule_tac xs=x in list_all2_induct, simp, simp add: fun_rel_def)
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6885
  done
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6886
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6887
lemma listsum_transfer[transfer_rule]:
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6888
  assumes [transfer_rule]: "A 0 0"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6889
  assumes [transfer_rule]: "(A ===> A ===> A) op + op +"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6890
  shows "(list_all2 A ===> A) listsum listsum"
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6891
  unfolding listsum_def[abs_def]
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6892
  by transfer_prover
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6893
23388
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  6894
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
  6895
53012
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 52435
diff changeset
  6896
end