src/HOL/List.thy
author nipkow
Mon, 20 Aug 2007 18:10:13 +0200
changeset 24349 0dd8782fb02d
parent 24335 21b4350cf5ec
child 24449 2f05cb7fed85
permissions -rw-r--r--
Final mods for list comprehension
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
    ID:         $Id$
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13366
diff changeset
     3
    Author:     Tobias Nipkow
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     4
*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     5
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
     6
header {* The datatype of finite lists *}
13122
wenzelm
parents: 13114
diff changeset
     7
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15113
diff changeset
     8
theory List
22844
91c05f4b509e PreList imports RecDef
haftmann
parents: 22830
diff changeset
     9
imports PreList
21754
6316163ae934 moved char/string syntax to Tools/string_syntax.ML;
wenzelm
parents: 21548
diff changeset
    10
uses "Tools/string_syntax.ML"
23554
151d60fbfffe proper use of function_package ML files;
wenzelm
parents: 23479
diff changeset
    11
  ("Tools/function_package/lexicographic_order.ML")
151d60fbfffe proper use of function_package ML files;
wenzelm
parents: 23479
diff changeset
    12
  ("Tools/function_package/fundef_datatype.ML")
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15113
diff changeset
    13
begin
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    14
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
    15
datatype 'a list =
13366
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
    16
    Nil    ("[]")
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
    17
  | Cons 'a  "'a list"    (infixr "#" 65)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    18
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15307
diff changeset
    19
subsection{*Basic list processing functions*}
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
    20
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    21
consts
13366
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
    22
  filter:: "('a => bool) => 'a list => 'a list"
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
    23
  concat:: "'a list list => 'a list"
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
    24
  foldl :: "('b => 'a => 'b) => 'b => 'a list => 'b"
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
    25
  foldr :: "('a => 'b => 'b) => 'a list => 'b => 'b"
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
    26
  hd:: "'a list => 'a"
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
    27
  tl:: "'a list => 'a list"
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
    28
  last:: "'a list => 'a"
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
    29
  butlast :: "'a list => 'a list"
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
    30
  set :: "'a list => 'a set"
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
    31
  map :: "('a=>'b) => ('a list => 'b list)"
23096
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
    32
  listsum ::  "'a list => 'a::monoid_add"
13366
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
    33
  nth :: "'a list => nat => 'a"    (infixl "!" 100)
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
    34
  list_update :: "'a list => nat => 'a => 'a list"
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
    35
  take:: "nat => 'a list => 'a list"
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
    36
  drop:: "nat => 'a list => 'a list"
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
    37
  takeWhile :: "('a => bool) => 'a list => 'a list"
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
    38
  dropWhile :: "('a => bool) => 'a list => 'a list"
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
    39
  rev :: "'a list => 'a list"
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
    40
  zip :: "'a list => 'b list => ('a * 'b) list"
15425
6356d2523f73 [ .. (] -> [ ..< ]
nipkow
parents: 15392
diff changeset
    41
  upt :: "nat => nat => nat list" ("(1[_..</_'])")
13366
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
    42
  remdups :: "'a list => 'a list"
15110
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
    43
  remove1 :: "'a => 'a list => 'a list"
13366
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
    44
  "distinct":: "'a list => bool"
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
    45
  replicate :: "nat => 'a => 'a list"
19390
6c7383f80ad1 Added function "splice"
nipkow
parents: 19363
diff changeset
    46
  splice :: "'a list \<Rightarrow> 'a list \<Rightarrow> 'a list"
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
    47
19363
667b5ea637dd refined 'abbreviation';
wenzelm
parents: 19302
diff changeset
    48
abbreviation
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21211
diff changeset
    49
  upto:: "nat => nat => nat list"  ("(1[_../_])") where
19363
667b5ea637dd refined 'abbreviation';
wenzelm
parents: 19302
diff changeset
    50
  "[i..j] == [i..<(Suc j)]"
19302
e1bda4fc1d1d abbreviation upto, length;
wenzelm
parents: 19138
diff changeset
    51
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    52
13146
f43153b63361 *** empty log message ***
nipkow
parents: 13145
diff changeset
    53
nonterminals lupdbinds lupdbind
5077
71043526295f * HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents: 4643
diff changeset
    54
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    55
syntax
13366
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
    56
  -- {* list Enumeration *}
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
    57
  "@list" :: "args => 'a list"    ("[(_)]")
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    58
13366
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
    59
  -- {* Special syntax for filter *}
23279
e39dd93161d9 tuned list comprehension, changed filter syntax from : to <-
nipkow
parents: 23246
diff changeset
    60
  "@filter" :: "[pttrn, 'a list, bool] => 'a list"    ("(1[_<-_./ _])")
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    61
13366
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
    62
  -- {* list update *}
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
    63
  "_lupdbind":: "['a, 'a] => lupdbind"    ("(2_ :=/ _)")
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
    64
  "" :: "lupdbind => lupdbinds"    ("_")
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
    65
  "_lupdbinds" :: "[lupdbind, lupdbinds] => lupdbinds"    ("_,/ _")
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
    66
  "_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
    67
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    68
translations
13366
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
    69
  "[x, xs]" == "x#[xs]"
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
    70
  "[x]" == "x#[]"
23279
e39dd93161d9 tuned list comprehension, changed filter syntax from : to <-
nipkow
parents: 23246
diff changeset
    71
  "[x<-xs . P]"== "filter (%x. P) xs"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    72
13366
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
    73
  "_LUpdate xs (_lupdbinds b bs)"== "_LUpdate (_LUpdate xs b) bs"
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
    74
  "xs[i:=x]" == "list_update xs i x"
5077
71043526295f * HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents: 4643
diff changeset
    75
5427
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
    76
12114
a8e860c86252 eliminated old "symbols" syntax, use "xsymbols" instead;
wenzelm
parents: 10832
diff changeset
    77
syntax (xsymbols)
23279
e39dd93161d9 tuned list comprehension, changed filter syntax from : to <-
nipkow
parents: 23246
diff changeset
    78
  "@filter" :: "[pttrn, 'a list, bool] => 'a list"("(1[_\<leftarrow>_ ./ _])")
14565
c6dc17aab88a use more symbols in HTML output
kleing
parents: 14538
diff changeset
    79
syntax (HTML output)
23279
e39dd93161d9 tuned list comprehension, changed filter syntax from : to <-
nipkow
parents: 23246
diff changeset
    80
  "@filter" :: "[pttrn, 'a list, bool] => 'a list"("(1[_\<leftarrow>_ ./ _])")
3342
ec3b55fcb165 New operator "lists" for formalizing sets of lists
paulson
parents: 3320
diff changeset
    81
ec3b55fcb165 New operator "lists" for formalizing sets of lists
paulson
parents: 3320
diff changeset
    82
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
    83
text {*
14589
feae7b5fd425 tuned document;
wenzelm
parents: 14565
diff changeset
    84
  Function @{text size} is overloaded for all datatypes. Users may
13366
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
    85
  refer to the list version as @{text length}. *}
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
    86
19363
667b5ea637dd refined 'abbreviation';
wenzelm
parents: 19302
diff changeset
    87
abbreviation
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21211
diff changeset
    88
  length :: "'a list => nat" where
19363
667b5ea637dd refined 'abbreviation';
wenzelm
parents: 19302
diff changeset
    89
  "length == size"
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
    90
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
    91
primrec
15307
10dd989282fd indentation
paulson
parents: 15305
diff changeset
    92
  "hd(x#xs) = x"
10dd989282fd indentation
paulson
parents: 15305
diff changeset
    93
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
    94
primrec
15307
10dd989282fd indentation
paulson
parents: 15305
diff changeset
    95
  "tl([]) = []"
10dd989282fd indentation
paulson
parents: 15305
diff changeset
    96
  "tl(x#xs) = xs"
10dd989282fd indentation
paulson
parents: 15305
diff changeset
    97
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
    98
primrec
15307
10dd989282fd indentation
paulson
parents: 15305
diff changeset
    99
  "last(x#xs) = (if xs=[] then x else last xs)"
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   100
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   101
primrec
15307
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   102
  "butlast []= []"
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   103
  "butlast(x#xs) = (if xs=[] then [] else x#butlast xs)"
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   104
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   105
primrec
15307
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   106
  "set [] = {}"
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   107
  "set (x#xs) = insert x (set xs)"
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   108
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   109
primrec
15307
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   110
  "map f [] = []"
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   111
  "map f (x#xs) = f(x)#map f xs"
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   112
23235
eb365b39b36d authentic syntax for List.append
haftmann
parents: 23214
diff changeset
   113
function (*authentic syntax for append -- revert to primrec
eb365b39b36d authentic syntax for List.append
haftmann
parents: 23214
diff changeset
   114
  as soon as "authentic" primrec is available*)
eb365b39b36d authentic syntax for List.append
haftmann
parents: 23214
diff changeset
   115
  append :: "'a list \<Rightarrow> 'a list \<Rightarrow> 'a list" (infixr "@" 65)
eb365b39b36d authentic syntax for List.append
haftmann
parents: 23214
diff changeset
   116
where
eb365b39b36d authentic syntax for List.append
haftmann
parents: 23214
diff changeset
   117
  append_Nil: "[] @ ys = ys"
eb365b39b36d authentic syntax for List.append
haftmann
parents: 23214
diff changeset
   118
  | append_Cons: "(x # xs) @ ys = x # (xs @ ys)"
eb365b39b36d authentic syntax for List.append
haftmann
parents: 23214
diff changeset
   119
by (auto, case_tac a, auto)
eb365b39b36d authentic syntax for List.append
haftmann
parents: 23214
diff changeset
   120
termination by (relation "measure (size o fst)") auto
15307
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   121
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   122
primrec
15307
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   123
  "rev([]) = []"
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   124
  "rev(x#xs) = rev(xs) @ [x]"
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   125
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   126
primrec
15307
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   127
  "filter P [] = []"
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   128
  "filter P (x#xs) = (if P x then x#filter P xs else filter P xs)"
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   129
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   130
primrec
15307
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   131
  foldl_Nil:"foldl f a [] = a"
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   132
  foldl_Cons: "foldl f a (x#xs) = foldl f (f a x) xs"
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   133
8000
acafa0f15131 added foldr
paulson
parents: 7224
diff changeset
   134
primrec
15307
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   135
  "foldr f [] a = a"
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   136
  "foldr f (x#xs) a = f x (foldr f xs a)"
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   137
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   138
primrec
15307
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   139
  "concat([]) = []"
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   140
  "concat(x#xs) = x @ concat(xs)"
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   141
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   142
primrec
23096
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
   143
"listsum [] = 0"
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
   144
"listsum (x # xs) = x + listsum xs"
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
   145
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
   146
primrec
15307
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   147
  drop_Nil:"drop n [] = []"
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   148
  drop_Cons: "drop n (x#xs) = (case n of 0 => x#xs | Suc(m) => drop m xs)"
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   149
  -- {*Warning: simpset does not contain this definition, but separate
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   150
       theorems for @{text "n = 0"} and @{text "n = Suc k"} *}
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   151
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   152
primrec
15307
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   153
  take_Nil:"take n [] = []"
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   154
  take_Cons: "take n (x#xs) = (case n of 0 => [] | Suc(m) => x # take m xs)"
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   155
  -- {*Warning: simpset does not contain this definition, but separate
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   156
       theorems for @{text "n = 0"} and @{text "n = Suc k"} *}
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   157
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   158
primrec
15307
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   159
  nth_Cons:"(x#xs)!n = (case n of 0 => x | (Suc k) => xs!k)"
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   160
  -- {*Warning: simpset does not contain this definition, but separate
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   161
       theorems for @{text "n = 0"} and @{text "n = Suc k"} *}
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   162
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   163
primrec
15307
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   164
  "[][i:=v] = []"
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   165
  "(x#xs)[i:=v] = (case i of 0 => v # xs | Suc j => x # xs[j:=v])"
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   166
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   167
primrec
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   168
  "takeWhile P [] = []"
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   169
  "takeWhile P (x#xs) = (if P x then x#takeWhile P xs else [])"
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   170
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   171
primrec
15307
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   172
  "dropWhile P [] = []"
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   173
  "dropWhile P (x#xs) = (if P x then dropWhile P xs else x#xs)"
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   174
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   175
primrec
15307
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   176
  "zip xs [] = []"
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   177
  zip_Cons: "zip xs (y#ys) = (case xs of [] => [] | z#zs => (z,y)#zip zs ys)"
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   178
  -- {*Warning: simpset does not contain this definition, but separate
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   179
       theorems for @{text "xs = []"} and @{text "xs = z # zs"} *}
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   180
5427
26c9a7c0b36b Arith: less_diff_conv
nipkow
parents: 5425
diff changeset
   181
primrec
15425
6356d2523f73 [ .. (] -> [ ..< ]
nipkow
parents: 15392
diff changeset
   182
  upt_0: "[i..<0] = []"
6356d2523f73 [ .. (] -> [ ..< ]
nipkow
parents: 15392
diff changeset
   183
  upt_Suc: "[i..<(Suc j)] = (if i <= j then [i..<j] @ [j] else [])"
15307
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   184
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   185
primrec
15307
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   186
  "distinct [] = True"
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   187
  "distinct (x#xs) = (x ~: set xs \<and> distinct xs)"
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   188
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   189
primrec
15307
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   190
  "remdups [] = []"
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   191
  "remdups (x#xs) = (if x : set xs then remdups xs else x # remdups xs)"
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   192
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5162
diff changeset
   193
primrec
15307
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   194
  "remove1 x [] = []"
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   195
  "remove1 x (y#xs) = (if x=y then xs else y # remove1 x xs)"
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   196
15110
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
   197
primrec
15307
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   198
  replicate_0: "replicate 0 x = []"
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   199
  replicate_Suc: "replicate (Suc n) x = x # replicate n x"
10dd989282fd indentation
paulson
parents: 15305
diff changeset
   200
21061
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
   201
definition
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21211
diff changeset
   202
  rotate1 :: "'a list \<Rightarrow> 'a list" where
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21211
diff changeset
   203
  "rotate1 xs = (case xs of [] \<Rightarrow> [] | x#xs \<Rightarrow> xs @ [x])"
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21211
diff changeset
   204
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21211
diff changeset
   205
definition
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21211
diff changeset
   206
  rotate :: "nat \<Rightarrow> 'a list \<Rightarrow> 'a list" where
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21211
diff changeset
   207
  "rotate n = rotate1 ^ n"
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21211
diff changeset
   208
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21211
diff changeset
   209
definition
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21211
diff changeset
   210
  list_all2 :: "('a => 'b => bool) => 'a list => 'b list => bool" where
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21211
diff changeset
   211
  "list_all2 P xs ys =
21061
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
   212
    (length xs = length ys \<and> (\<forall>(x, y) \<in> set (zip xs ys). P x y))"
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21211
diff changeset
   213
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21211
diff changeset
   214
definition
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21211
diff changeset
   215
  sublist :: "'a list => nat set => 'a list" where
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21211
diff changeset
   216
  "sublist xs A = map fst (filter (\<lambda>p. snd p \<in> A) (zip xs [0..<size xs]))"
17086
0eb0c9259dd7 added quite a few functions for code generation
nipkow
parents: 16998
diff changeset
   217
0eb0c9259dd7 added quite a few functions for code generation
nipkow
parents: 16998
diff changeset
   218
primrec
21061
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
   219
  "splice [] ys = ys"
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
   220
  "splice (x#xs) ys = (if ys=[] then x#xs else x # hd ys # splice xs (tl ys))"
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
   221
    -- {*Warning: simpset does not contain the second eqn but a derived one. *}
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
   222
23388
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
   223
subsubsection {* List comprehension *}
23192
ec73b9707d48 Moved list comprehension into List
nipkow
parents: 23096
diff changeset
   224
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   225
text{* Input syntax for Haskell-like list comprehension notation.
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   226
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
   227
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
   228
The syntax is as in Haskell, except that @{text"|"} becomes a dot
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   229
(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
   230
\verb![e| x <- xs, ...]!.
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   231
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   232
The qualifiers after the dot are
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   233
\begin{description}
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   234
\item[generators] @{text"p \<leftarrow> xs"},
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   235
 where @{text p} is a pattern and @{text xs} an expression of list type,
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   236
\item[guards] @{text"b"}, where @{text b} is a boolean expression, or
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   237
\item[local bindings] @{text"let x = e"}.
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   238
\end{description}
23240
7077dc80a14b tuned list comprehension
nipkow
parents: 23235
diff changeset
   239
7077dc80a14b tuned list comprehension
nipkow
parents: 23235
diff changeset
   240
To avoid misunderstandings, the translation is not reversed upon
7077dc80a14b tuned list comprehension
nipkow
parents: 23235
diff changeset
   241
output. You can add the inverse translations in your own theory if you
7077dc80a14b tuned list comprehension
nipkow
parents: 23235
diff changeset
   242
desire.
7077dc80a14b tuned list comprehension
nipkow
parents: 23235
diff changeset
   243
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   244
It is easy to write short list comprehensions which stand for complex
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   245
expressions. During proofs, they may become unreadable (and
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   246
mangled). In such cases it can be advisable to introduce separate
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   247
definitions for the list comprehensions in question.  *}
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   248
23209
098a23702aba *** empty log message ***
nipkow
parents: 23192
diff changeset
   249
(*
23240
7077dc80a14b tuned list comprehension
nipkow
parents: 23235
diff changeset
   250
Proper theorem proving support would be nice. For example, if
23192
ec73b9707d48 Moved list comprehension into List
nipkow
parents: 23096
diff changeset
   251
@{text"set[f x y. x \<leftarrow> xs, y \<leftarrow> ys, P x y]"}
ec73b9707d48 Moved list comprehension into List
nipkow
parents: 23096
diff changeset
   252
produced something like
23209
098a23702aba *** empty log message ***
nipkow
parents: 23192
diff changeset
   253
@{term"{z. EX x: set xs. EX y:set ys. P x y \<and> z = f x y}"}.
098a23702aba *** empty log message ***
nipkow
parents: 23192
diff changeset
   254
*)
098a23702aba *** empty log message ***
nipkow
parents: 23192
diff changeset
   255
23240
7077dc80a14b tuned list comprehension
nipkow
parents: 23235
diff changeset
   256
nonterminals lc_qual lc_quals
23192
ec73b9707d48 Moved list comprehension into List
nipkow
parents: 23096
diff changeset
   257
ec73b9707d48 Moved list comprehension into List
nipkow
parents: 23096
diff changeset
   258
syntax
23240
7077dc80a14b tuned list comprehension
nipkow
parents: 23235
diff changeset
   259
"_listcompr" :: "'a \<Rightarrow> lc_qual \<Rightarrow> lc_quals \<Rightarrow> 'a list"  ("[_ . __")
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   260
"_lc_gen" :: "'a \<Rightarrow> 'a list \<Rightarrow> lc_qual" ("_ <- _")
23240
7077dc80a14b tuned list comprehension
nipkow
parents: 23235
diff changeset
   261
"_lc_test" :: "bool \<Rightarrow> lc_qual" ("_")
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   262
"_lc_let" :: "letbinds => lc_qual"  ("let _")
23240
7077dc80a14b tuned list comprehension
nipkow
parents: 23235
diff changeset
   263
"_lc_end" :: "lc_quals" ("]")
7077dc80a14b tuned list comprehension
nipkow
parents: 23235
diff changeset
   264
"_lc_quals" :: "lc_qual \<Rightarrow> lc_quals \<Rightarrow> lc_quals" (", __")
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   265
"_lc_abs" :: "'a => 'b list => 'b list"
23192
ec73b9707d48 Moved list comprehension into List
nipkow
parents: 23096
diff changeset
   266
ec73b9707d48 Moved list comprehension into List
nipkow
parents: 23096
diff changeset
   267
translations
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   268
"[e. p<-xs]" => "concat(map (_lc_abs p [e]) xs)"
23240
7077dc80a14b tuned list comprehension
nipkow
parents: 23235
diff changeset
   269
"_listcompr e (_lc_gen p xs) (_lc_quals Q Qs)"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   270
 => "concat (map (_lc_abs p (_listcompr e Q Qs)) xs)"
23240
7077dc80a14b tuned list comprehension
nipkow
parents: 23235
diff changeset
   271
"[e. P]" => "if P then [e] else []"
7077dc80a14b tuned list comprehension
nipkow
parents: 23235
diff changeset
   272
"_listcompr e (_lc_test P) (_lc_quals Q Qs)"
7077dc80a14b tuned list comprehension
nipkow
parents: 23235
diff changeset
   273
 => "if P then (_listcompr e Q Qs) else []"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   274
"_listcompr e (_lc_let b) (_lc_quals Q Qs)"
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   275
 => "_Let b (_listcompr e Q Qs)"
23240
7077dc80a14b tuned list comprehension
nipkow
parents: 23235
diff changeset
   276
23279
e39dd93161d9 tuned list comprehension, changed filter syntax from : to <-
nipkow
parents: 23246
diff changeset
   277
syntax (xsymbols)
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   278
"_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
   279
syntax (HTML output)
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   280
"_lc_gen" :: "'a \<Rightarrow> 'a list \<Rightarrow> lc_qual" ("_ \<leftarrow> _")
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   281
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   282
parse_translation (advanced) {*
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   283
let
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   284
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   285
   fun abs_tr0 ctxt p es =
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   286
    let
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   287
      val x = Free (Name.variant (add_term_free_names (p$es, [])) "x", dummyT);
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   288
      val case1 = Syntax.const "_case1" $ p $ es;
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   289
      val case2 = Syntax.const "_case1" $ Syntax.const Term.dummy_patternN
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   290
                                        $ Syntax.const @{const_name Nil};
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   291
      val cs = Syntax.const "_case2" $ case1 $ case2
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   292
      val ft = DatatypeCase.case_tr false DatatypePackage.datatype_of_constr
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   293
                 ctxt [x, cs]
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   294
    in lambda x ft end;
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   295
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   296
  fun abs_tr ctxt [x as Free (s, T), r] =
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   297
        let val thy = ProofContext.theory_of ctxt;
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   298
            val s' = Sign.intern_const thy s
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   299
        in if Sign.declared_const thy s' then abs_tr0 ctxt x r else lambda x r
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   300
        end
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   301
   | abs_tr ctxt [p,es] = abs_tr0 ctxt p es
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   302
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   303
in [("_lc_abs", abs_tr)] end
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   304
*}
23279
e39dd93161d9 tuned list comprehension, changed filter syntax from : to <-
nipkow
parents: 23246
diff changeset
   305
23240
7077dc80a14b tuned list comprehension
nipkow
parents: 23235
diff changeset
   306
(*
7077dc80a14b tuned list comprehension
nipkow
parents: 23235
diff changeset
   307
term "[(x,y,z). b]"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   308
term "[(x,y). Cons True x \<leftarrow> xs]"
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   309
term "[(x,y,z). Cons x [] \<leftarrow> xs]"
23240
7077dc80a14b tuned list comprehension
nipkow
parents: 23235
diff changeset
   310
term "[(x,y,z). x<a, x>b]"
7077dc80a14b tuned list comprehension
nipkow
parents: 23235
diff changeset
   311
term "[(x,y,z). x<a, x\<leftarrow>xs]"
7077dc80a14b tuned list comprehension
nipkow
parents: 23235
diff changeset
   312
term "[(x,y,z). x\<leftarrow>xs, x>b]"
7077dc80a14b tuned list comprehension
nipkow
parents: 23235
diff changeset
   313
term "[(x,y,z). x\<leftarrow>xs, y\<leftarrow>ys]"
7077dc80a14b tuned list comprehension
nipkow
parents: 23235
diff changeset
   314
term "[(x,y,z). x<a, x>b, x=d]"
7077dc80a14b tuned list comprehension
nipkow
parents: 23235
diff changeset
   315
term "[(x,y,z). x<a, x>b, y\<leftarrow>ys]"
7077dc80a14b tuned list comprehension
nipkow
parents: 23235
diff changeset
   316
term "[(x,y,z). x<a, x\<leftarrow>xs,y>b]"
7077dc80a14b tuned list comprehension
nipkow
parents: 23235
diff changeset
   317
term "[(x,y,z). x<a, x\<leftarrow>xs, y\<leftarrow>ys]"
7077dc80a14b tuned list comprehension
nipkow
parents: 23235
diff changeset
   318
term "[(x,y,z). x\<leftarrow>xs, x>b, y<a]"
7077dc80a14b tuned list comprehension
nipkow
parents: 23235
diff changeset
   319
term "[(x,y,z). x\<leftarrow>xs, x>b, y\<leftarrow>ys]"
7077dc80a14b tuned list comprehension
nipkow
parents: 23235
diff changeset
   320
term "[(x,y,z). x\<leftarrow>xs, y\<leftarrow>ys,y>x]"
7077dc80a14b tuned list comprehension
nipkow
parents: 23235
diff changeset
   321
term "[(x,y,z). x\<leftarrow>xs, y\<leftarrow>ys,z\<leftarrow>zs]"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
   322
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
   323
*)
ec73b9707d48 Moved list comprehension into List
nipkow
parents: 23096
diff changeset
   324
21061
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
   325
subsubsection {* @{const Nil} and @{const Cons} *}
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
   326
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
   327
lemma not_Cons_self [simp]:
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
   328
  "xs \<noteq> x # xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   329
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   330
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   331
lemmas not_Cons_self2 [simp] = not_Cons_self [symmetric]
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   332
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   333
lemma neq_Nil_conv: "(xs \<noteq> []) = (\<exists>y ys. xs = y # ys)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   334
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   335
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   336
lemma length_induct:
21061
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
   337
  "(\<And>xs. \<forall>ys. length ys < length xs \<longrightarrow> P ys \<Longrightarrow> P xs) \<Longrightarrow> P xs"
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17501
diff changeset
   338
by (rule measure_induct [of length]) iprover
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   339
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   340
21061
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
   341
subsubsection {* @{const length} *}
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   342
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   343
text {*
21061
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
   344
  Needs to come before @{text "@"} because of theorem @{text
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
   345
  append_eq_append_conv}.
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   346
*}
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   347
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   348
lemma length_append [simp]: "length (xs @ ys) = length xs + length ys"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   349
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   350
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   351
lemma length_map [simp]: "length (map f xs) = length xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   352
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   353
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   354
lemma length_rev [simp]: "length (rev xs) = length xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   355
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   356
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   357
lemma length_tl [simp]: "length (tl xs) = length xs - 1"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   358
by (cases xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   359
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   360
lemma length_0_conv [iff]: "(length xs = 0) = (xs = [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   361
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   362
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   363
lemma length_greater_0_conv [iff]: "(0 < length xs) = (xs \<noteq> [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   364
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   365
23479
10adbdcdc65b new lemmas
nipkow
parents: 23388
diff changeset
   366
lemma length_pos_if_in_set: "x : set xs \<Longrightarrow> length xs > 0"
10adbdcdc65b new lemmas
nipkow
parents: 23388
diff changeset
   367
by auto
10adbdcdc65b new lemmas
nipkow
parents: 23388
diff changeset
   368
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   369
lemma length_Suc_conv:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   370
"(length xs = Suc n) = (\<exists>y ys. xs = y # ys \<and> length ys = n)"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   371
by (induct xs) auto
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   372
14025
d9b155757dc8 *** empty log message ***
nipkow
parents: 13913
diff changeset
   373
lemma Suc_length_conv:
d9b155757dc8 *** empty log message ***
nipkow
parents: 13913
diff changeset
   374
"(Suc n = length xs) = (\<exists>y ys. xs = y # ys \<and> length ys = n)"
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
   375
apply (induct xs, simp, simp)
14025
d9b155757dc8 *** empty log message ***
nipkow
parents: 13913
diff changeset
   376
apply blast
d9b155757dc8 *** empty log message ***
nipkow
parents: 13913
diff changeset
   377
done
d9b155757dc8 *** empty log message ***
nipkow
parents: 13913
diff changeset
   378
14099
55d244f3c86d added fold_red, o2l, postfix, some thms
oheimb
parents: 14050
diff changeset
   379
lemma impossible_Cons [rule_format]: 
55d244f3c86d added fold_red, o2l, postfix, some thms
oheimb
parents: 14050
diff changeset
   380
  "length xs <= length ys --> xs = x # ys = False"
20503
503ac4c5ef91 induct method: renamed 'fixing' to 'arbitrary';
wenzelm
parents: 20453
diff changeset
   381
apply (induct xs)
503ac4c5ef91 induct method: renamed 'fixing' to 'arbitrary';
wenzelm
parents: 20453
diff changeset
   382
apply auto
14099
55d244f3c86d added fold_red, o2l, postfix, some thms
oheimb
parents: 14050
diff changeset
   383
done
55d244f3c86d added fold_red, o2l, postfix, some thms
oheimb
parents: 14050
diff changeset
   384
14247
cb32eb89bddd *** empty log message ***
nipkow
parents: 14208
diff changeset
   385
lemma list_induct2[consumes 1]: "\<And>ys.
cb32eb89bddd *** empty log message ***
nipkow
parents: 14208
diff changeset
   386
 \<lbrakk> length xs = length ys;
cb32eb89bddd *** empty log message ***
nipkow
parents: 14208
diff changeset
   387
   P [] [];
cb32eb89bddd *** empty log message ***
nipkow
parents: 14208
diff changeset
   388
   \<And>x xs y ys. \<lbrakk> length xs = length ys; P xs ys \<rbrakk> \<Longrightarrow> P (x#xs) (y#ys) \<rbrakk>
cb32eb89bddd *** empty log message ***
nipkow
parents: 14208
diff changeset
   389
 \<Longrightarrow> P xs ys"
cb32eb89bddd *** empty log message ***
nipkow
parents: 14208
diff changeset
   390
apply(induct xs)
cb32eb89bddd *** empty log message ***
nipkow
parents: 14208
diff changeset
   391
 apply simp
cb32eb89bddd *** empty log message ***
nipkow
parents: 14208
diff changeset
   392
apply(case_tac ys)
cb32eb89bddd *** empty log message ***
nipkow
parents: 14208
diff changeset
   393
 apply simp
cb32eb89bddd *** empty log message ***
nipkow
parents: 14208
diff changeset
   394
apply(simp)
cb32eb89bddd *** empty log message ***
nipkow
parents: 14208
diff changeset
   395
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   396
22493
db930e490fe5 added another rule for simultaneous induction, and lemmas for zip
krauss
parents: 22422
diff changeset
   397
lemma list_induct2': 
db930e490fe5 added another rule for simultaneous induction, and lemmas for zip
krauss
parents: 22422
diff changeset
   398
  "\<lbrakk> P [] [];
db930e490fe5 added another rule for simultaneous induction, and lemmas for zip
krauss
parents: 22422
diff changeset
   399
  \<And>x xs. P (x#xs) [];
db930e490fe5 added another rule for simultaneous induction, and lemmas for zip
krauss
parents: 22422
diff changeset
   400
  \<And>y ys. P [] (y#ys);
db930e490fe5 added another rule for simultaneous induction, and lemmas for zip
krauss
parents: 22422
diff changeset
   401
   \<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
   402
 \<Longrightarrow> P xs ys"
db930e490fe5 added another rule for simultaneous induction, and lemmas for zip
krauss
parents: 22422
diff changeset
   403
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
   404
22143
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   405
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
   406
by (rule Eq_FalseI) auto
24037
0a41d2ebc0cd proper simproc_setup for "list_neq";
wenzelm
parents: 23983
diff changeset
   407
0a41d2ebc0cd proper simproc_setup for "list_neq";
wenzelm
parents: 23983
diff changeset
   408
simproc_setup list_neq ("(xs::'a list) = ys") = {*
22143
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   409
(*
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   410
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
   411
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
   412
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
   413
*)
24037
0a41d2ebc0cd proper simproc_setup for "list_neq";
wenzelm
parents: 23983
diff changeset
   414
0a41d2ebc0cd proper simproc_setup for "list_neq";
wenzelm
parents: 23983
diff changeset
   415
let
22143
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   416
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   417
fun len (Const("List.list.Nil",_)) acc = acc
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   418
  | len (Const("List.list.Cons",_) $ _ $ xs) (ts,n) = len xs (ts,n+1)
23029
79ee75dc1e59 constant op @ now named append
haftmann
parents: 22994
diff changeset
   419
  | len (Const("List.append",_) $ xs $ ys) acc = len xs (len ys acc)
22143
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   420
  | len (Const("List.rev",_) $ xs) acc = len xs acc
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   421
  | len (Const("List.map",_) $ _ $ xs) acc = len xs acc
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   422
  | len t (ts,n) = (t::ts,n);
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   423
24037
0a41d2ebc0cd proper simproc_setup for "list_neq";
wenzelm
parents: 23983
diff changeset
   424
fun list_neq _ ss ct =
22143
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   425
  let
24037
0a41d2ebc0cd proper simproc_setup for "list_neq";
wenzelm
parents: 23983
diff changeset
   426
    val (Const(_,eqT) $ lhs $ rhs) = Thm.term_of ct;
22143
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   427
    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
   428
    fun prove_neq() =
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   429
      let
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   430
        val Type(_,listT::_) = eqT;
22994
02440636214f abstract size function in hologic.ML
haftmann
parents: 22940
diff changeset
   431
        val size = HOLogic.size_const listT;
22143
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   432
        val eq_len = HOLogic.mk_eq (size $ lhs, size $ rhs);
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   433
        val neq_len = HOLogic.mk_Trueprop (HOLogic.Not $ eq_len);
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   434
        val thm = Goal.prove (Simplifier.the_context ss) [] [] neq_len
22633
haftmann
parents: 22551
diff changeset
   435
          (K (simp_tac (Simplifier.inherit_context ss @{simpset}) 1));
haftmann
parents: 22551
diff changeset
   436
      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
   437
  in
23214
dc23c062b58c renamed gen_submultiset to submultiset;
wenzelm
parents: 23212
diff changeset
   438
    if m < n andalso submultiset (op aconv) (ls,rs) orelse
dc23c062b58c renamed gen_submultiset to submultiset;
wenzelm
parents: 23212
diff changeset
   439
       n < m andalso submultiset (op aconv) (rs,ls)
22143
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   440
    then prove_neq() else NONE
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   441
  end;
24037
0a41d2ebc0cd proper simproc_setup for "list_neq";
wenzelm
parents: 23983
diff changeset
   442
in list_neq end;
22143
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   443
*}
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   444
cf58486ca11b Added simproc list_neq (prompted by an application)
nipkow
parents: 21911
diff changeset
   445
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15307
diff changeset
   446
subsubsection {* @{text "@"} -- append *}
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   447
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   448
lemma append_assoc [simp]: "(xs @ ys) @ zs = xs @ (ys @ zs)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   449
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   450
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   451
lemma append_Nil2 [simp]: "xs @ [] = xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   452
by (induct xs) auto
3507
157be29ad5ba Improved length = size translation.
nipkow
parents: 3465
diff changeset
   453
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   454
lemma append_is_Nil_conv [iff]: "(xs @ ys = []) = (xs = [] \<and> ys = [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   455
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   456
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   457
lemma Nil_is_append_conv [iff]: "([] = xs @ ys) = (xs = [] \<and> ys = [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   458
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   459
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   460
lemma append_self_conv [iff]: "(xs @ ys = xs) = (ys = [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   461
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   462
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   463
lemma self_append_conv [iff]: "(xs = xs @ ys) = (ys = [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   464
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   465
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 24219
diff changeset
   466
lemma append_eq_append_conv [simp,noatp]:
13883
0451e0fb3f22 Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents: 13863
diff changeset
   467
 "!!ys. length xs = length ys \<or> length us = length vs
0451e0fb3f22 Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents: 13863
diff changeset
   468
 ==> (xs@us = ys@vs) = (xs=ys \<and> us=vs)"
0451e0fb3f22 Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents: 13863
diff changeset
   469
apply (induct xs)
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
   470
 apply (case_tac ys, simp, force)
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
   471
apply (case_tac ys, force, simp)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   472
done
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   473
14495
e2a1c31cf6d3 Added append_eq_append_conv2
nipkow
parents: 14402
diff changeset
   474
lemma append_eq_append_conv2: "!!ys zs ts.
e2a1c31cf6d3 Added append_eq_append_conv2
nipkow
parents: 14402
diff changeset
   475
 (xs @ ys = zs @ ts) =
e2a1c31cf6d3 Added append_eq_append_conv2
nipkow
parents: 14402
diff changeset
   476
 (EX us. xs = zs @ us & us @ ys = ts | xs @ us = zs & ys = us@ ts)"
e2a1c31cf6d3 Added append_eq_append_conv2
nipkow
parents: 14402
diff changeset
   477
apply (induct xs)
e2a1c31cf6d3 Added append_eq_append_conv2
nipkow
parents: 14402
diff changeset
   478
 apply fastsimp
e2a1c31cf6d3 Added append_eq_append_conv2
nipkow
parents: 14402
diff changeset
   479
apply(case_tac zs)
e2a1c31cf6d3 Added append_eq_append_conv2
nipkow
parents: 14402
diff changeset
   480
 apply simp
e2a1c31cf6d3 Added append_eq_append_conv2
nipkow
parents: 14402
diff changeset
   481
apply fastsimp
e2a1c31cf6d3 Added append_eq_append_conv2
nipkow
parents: 14402
diff changeset
   482
done
e2a1c31cf6d3 Added append_eq_append_conv2
nipkow
parents: 14402
diff changeset
   483
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   484
lemma same_append_eq [iff]: "(xs @ ys = xs @ zs) = (ys = zs)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   485
by simp
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   486
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   487
lemma append1_eq_conv [iff]: "(xs @ [x] = ys @ [y]) = (xs = ys \<and> x = y)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   488
by simp
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   489
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   490
lemma append_same_eq [iff]: "(ys @ xs = zs @ xs) = (ys = zs)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   491
by simp
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   492
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   493
lemma append_self_conv2 [iff]: "(xs @ ys = ys) = (xs = [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   494
using append_same_eq [of _ _ "[]"] by auto
3507
157be29ad5ba Improved length = size translation.
nipkow
parents: 3465
diff changeset
   495
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   496
lemma self_append_conv2 [iff]: "(ys = xs @ ys) = (xs = [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   497
using append_same_eq [of "[]"] by auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   498
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 24219
diff changeset
   499
lemma hd_Cons_tl [simp,noatp]: "xs \<noteq> [] ==> hd xs # tl xs = xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   500
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   501
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   502
lemma hd_append: "hd (xs @ ys) = (if xs = [] then hd ys else hd xs)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   503
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   504
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   505
lemma hd_append2 [simp]: "xs \<noteq> [] ==> hd (xs @ ys) = hd xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   506
by (simp add: hd_append split: list.split)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   507
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   508
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
   509
by (simp split: list.split)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   510
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   511
lemma tl_append2 [simp]: "xs \<noteq> [] ==> tl (xs @ ys) = tl xs @ ys"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   512
by (simp add: tl_append split: list.split)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   513
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   514
14300
bf8b8c9425c3 *** empty log message ***
nipkow
parents: 14247
diff changeset
   515
lemma Cons_eq_append_conv: "x#xs = ys@zs =
bf8b8c9425c3 *** empty log message ***
nipkow
parents: 14247
diff changeset
   516
 (ys = [] & x#xs = zs | (EX ys'. x#ys' = ys & xs = ys'@zs))"
bf8b8c9425c3 *** empty log message ***
nipkow
parents: 14247
diff changeset
   517
by(cases ys) auto
bf8b8c9425c3 *** empty log message ***
nipkow
parents: 14247
diff changeset
   518
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
   519
lemma append_eq_Cons_conv: "(ys@zs = x#xs) =
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
   520
 (ys = [] & zs = x#xs | (EX ys'. ys = x#ys' & ys'@zs = xs))"
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
   521
by(cases ys) auto
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
   522
14300
bf8b8c9425c3 *** empty log message ***
nipkow
parents: 14247
diff changeset
   523
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   524
text {* Trivial rules for solving @{text "@"}-equations automatically. *}
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   525
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   526
lemma eq_Nil_appendI: "xs = ys ==> xs = [] @ ys"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   527
by simp
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   528
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   529
lemma Cons_eq_appendI:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   530
"[| x # xs1 = ys; xs = xs1 @ zs |] ==> x # xs = ys @ zs"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   531
by (drule sym) simp
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   532
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   533
lemma append_eq_appendI:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   534
"[| xs @ xs1 = zs; ys = xs1 @ us |] ==> xs @ ys = zs @ us"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   535
by (drule sym) simp
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   536
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   537
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   538
text {*
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   539
Simplification procedure for all list equalities.
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   540
Currently only tries to rearrange @{text "@"} to see if
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   541
- both lists end in a singleton list,
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   542
- or both lists end in the same list.
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   543
*}
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   544
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   545
ML_setup {*
3507
157be29ad5ba Improved length = size translation.
nipkow
parents: 3465
diff changeset
   546
local
157be29ad5ba Improved length = size translation.
nipkow
parents: 3465
diff changeset
   547
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   548
fun last (cons as Const("List.list.Cons",_) $ _ $ xs) =
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13366
diff changeset
   549
  (case xs of Const("List.list.Nil",_) => cons | _ => last xs)
23029
79ee75dc1e59 constant op @ now named append
haftmann
parents: 22994
diff changeset
   550
  | last (Const("List.append",_) $ _ $ ys) = last ys
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13366
diff changeset
   551
  | last t = t;
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   552
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   553
fun list1 (Const("List.list.Cons",_) $ _ $ Const("List.list.Nil",_)) = true
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13366
diff changeset
   554
  | list1 _ = false;
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   555
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   556
fun butlast ((cons as Const("List.list.Cons",_) $ x) $ xs) =
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13366
diff changeset
   557
  (case xs of Const("List.list.Nil",_) => xs | _ => cons $ butlast xs)
23029
79ee75dc1e59 constant op @ now named append
haftmann
parents: 22994
diff changeset
   558
  | butlast ((app as Const("List.append",_) $ xs) $ ys) = app $ butlast ys
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13366
diff changeset
   559
  | butlast xs = Const("List.list.Nil",fastype_of xs);
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   560
22633
haftmann
parents: 22551
diff changeset
   561
val rearr_ss = HOL_basic_ss addsimps [@{thm append_assoc},
haftmann
parents: 22551
diff changeset
   562
  @{thm append_Nil}, @{thm append_Cons}];
16973
b2a894562b8f simprocs: Simplifier.inherit_bounds;
wenzelm
parents: 16965
diff changeset
   563
20044
92cc2f4c7335 simprocs: no theory argument -- use simpset context instead;
wenzelm
parents: 19890
diff changeset
   564
fun list_eq ss (F as (eq as Const(_,eqT)) $ lhs $ rhs) =
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13366
diff changeset
   565
  let
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13366
diff changeset
   566
    val lastl = last lhs and lastr = last rhs;
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13366
diff changeset
   567
    fun rearr conv =
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13366
diff changeset
   568
      let
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13366
diff changeset
   569
        val lhs1 = butlast lhs and rhs1 = butlast rhs;
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13366
diff changeset
   570
        val Type(_,listT::_) = eqT
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13366
diff changeset
   571
        val appT = [listT,listT] ---> listT
23029
79ee75dc1e59 constant op @ now named append
haftmann
parents: 22994
diff changeset
   572
        val app = Const("List.append",appT)
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13366
diff changeset
   573
        val F2 = eq $ (app$lhs1$lastl) $ (app$rhs1$lastr)
13480
bb72bd43c6c3 use Tactic.prove instead of prove_goalw_cterm in internal proofs!
wenzelm
parents: 13462
diff changeset
   574
        val eq = HOLogic.mk_Trueprop (HOLogic.mk_eq (F,F2));
20044
92cc2f4c7335 simprocs: no theory argument -- use simpset context instead;
wenzelm
parents: 19890
diff changeset
   575
        val thm = Goal.prove (Simplifier.the_context ss) [] [] eq
17877
67d5ab1cb0d8 Simplifier.inherit_context instead of Simplifier.inherit_bounds;
wenzelm
parents: 17830
diff changeset
   576
          (K (simp_tac (Simplifier.inherit_context ss rearr_ss) 1));
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15489
diff changeset
   577
      in SOME ((conv RS (thm RS trans)) RS eq_reflection) end;
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   578
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13366
diff changeset
   579
  in
22633
haftmann
parents: 22551
diff changeset
   580
    if list1 lastl andalso list1 lastr then rearr @{thm append1_eq_conv}
haftmann
parents: 22551
diff changeset
   581
    else if lastl aconv lastr then rearr @{thm append_same_eq}
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15489
diff changeset
   582
    else NONE
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13366
diff changeset
   583
  end;
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13366
diff changeset
   584
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   585
in
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13366
diff changeset
   586
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13366
diff changeset
   587
val list_eq_simproc =
22633
haftmann
parents: 22551
diff changeset
   588
  Simplifier.simproc @{theory} "list_eq" ["(xs::'a list) = ys"] (K list_eq);
13462
56610e2ba220 sane interface for simprocs;
wenzelm
parents: 13366
diff changeset
   589
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   590
end;
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   591
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   592
Addsimprocs [list_eq_simproc];
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   593
*}
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   594
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   595
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15307
diff changeset
   596
subsubsection {* @{text map} *}
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   597
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   598
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
   599
by (induct xs) simp_all
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   600
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   601
lemma map_ident [simp]: "map (\<lambda>x. x) = (\<lambda>xs. xs)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   602
by (rule ext, induct_tac xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   603
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   604
lemma map_append [simp]: "map f (xs @ ys) = map f xs @ map f ys"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   605
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   606
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   607
lemma map_compose: "map (f o g) xs = map f (map g xs)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   608
by (induct xs) (auto simp add: o_def)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   609
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   610
lemma rev_map: "rev (map f xs) = map f (rev xs)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   611
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   612
13737
e564c3d2d174 added a few lemmas
nipkow
parents: 13601
diff changeset
   613
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
   614
by (induct xs) auto
e564c3d2d174 added a few lemmas
nipkow
parents: 13601
diff changeset
   615
19770
be5c23ebe1eb HOL/Tools/function_package: Added support for mutual recursive definitions.
krauss
parents: 19623
diff changeset
   616
lemma map_cong [fundef_cong, recdef_cong]:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   617
"xs = ys ==> (!!x. x : set ys ==> f x = g x) ==> map f xs = map g ys"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   618
-- {* a congruence rule for @{text map} *}
13737
e564c3d2d174 added a few lemmas
nipkow
parents: 13601
diff changeset
   619
by simp
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   620
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   621
lemma map_is_Nil_conv [iff]: "(map f xs = []) = (xs = [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   622
by (cases xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   623
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   624
lemma Nil_is_map_conv [iff]: "([] = map f xs) = (xs = [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   625
by (cases xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   626
18447
da548623916a removed or modified some instances of [iff]
paulson
parents: 18423
diff changeset
   627
lemma map_eq_Cons_conv:
14025
d9b155757dc8 *** empty log message ***
nipkow
parents: 13913
diff changeset
   628
 "(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
   629
by (cases xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   630
18447
da548623916a removed or modified some instances of [iff]
paulson
parents: 18423
diff changeset
   631
lemma Cons_eq_map_conv:
14025
d9b155757dc8 *** empty log message ***
nipkow
parents: 13913
diff changeset
   632
 "(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
   633
by (cases ys) auto
d9b155757dc8 *** empty log message ***
nipkow
parents: 13913
diff changeset
   634
18447
da548623916a removed or modified some instances of [iff]
paulson
parents: 18423
diff changeset
   635
lemmas map_eq_Cons_D = map_eq_Cons_conv [THEN iffD1]
da548623916a removed or modified some instances of [iff]
paulson
parents: 18423
diff changeset
   636
lemmas Cons_eq_map_D = Cons_eq_map_conv [THEN iffD1]
da548623916a removed or modified some instances of [iff]
paulson
parents: 18423
diff changeset
   637
declare map_eq_Cons_D [dest!]  Cons_eq_map_D [dest!]
da548623916a removed or modified some instances of [iff]
paulson
parents: 18423
diff changeset
   638
14111
993471c762b8 Some new thm (ex_map_conv?)
nipkow
parents: 14099
diff changeset
   639
lemma ex_map_conv:
993471c762b8 Some new thm (ex_map_conv?)
nipkow
parents: 14099
diff changeset
   640
  "(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
   641
by(induct ys, auto simp add: Cons_eq_map_conv)
14111
993471c762b8 Some new thm (ex_map_conv?)
nipkow
parents: 14099
diff changeset
   642
15110
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
   643
lemma map_eq_imp_length_eq:
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
   644
  "!!xs. map f xs = map f ys ==> length xs = length ys"
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
   645
apply (induct ys)
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
   646
 apply simp
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
   647
apply(simp (no_asm_use))
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
   648
apply clarify
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
   649
apply(simp (no_asm_use))
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
   650
apply fast
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
   651
done
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
   652
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
   653
lemma map_inj_on:
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
   654
 "[| 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
   655
  ==> xs = ys"
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
   656
apply(frule map_eq_imp_length_eq)
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
   657
apply(rotate_tac -1)
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
   658
apply(induct rule:list_induct2)
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
   659
 apply simp
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
   660
apply(simp)
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
   661
apply (blast intro:sym)
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
   662
done
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
   663
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
   664
lemma inj_on_map_eq_map:
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
   665
 "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
   666
by(blast dest:map_inj_on)
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
   667
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   668
lemma map_injective:
14338
a1add2de7601 *** empty log message ***
nipkow
parents: 14328
diff changeset
   669
 "!!xs. map f xs = map f ys ==> inj f ==> xs = ys"
a1add2de7601 *** empty log message ***
nipkow
parents: 14328
diff changeset
   670
by (induct ys) (auto dest!:injD)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   671
14339
ec575b7bde7a *** empty log message ***
nipkow
parents: 14338
diff changeset
   672
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
   673
by(blast dest:map_injective)
ec575b7bde7a *** empty log message ***
nipkow
parents: 14338
diff changeset
   674
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   675
lemma inj_mapI: "inj f ==> inj (map f)"
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17501
diff changeset
   676
by (iprover dest: map_injective injD intro: inj_onI)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   677
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   678
lemma inj_mapD: "inj (map f) ==> inj f"
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
   679
apply (unfold inj_on_def, clarify)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   680
apply (erule_tac x = "[x]" in ballE)
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
   681
 apply (erule_tac x = "[y]" in ballE, simp, blast)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   682
apply blast
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   683
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   684
14339
ec575b7bde7a *** empty log message ***
nipkow
parents: 14338
diff changeset
   685
lemma inj_map[iff]: "inj (map f) = inj f"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   686
by (blast dest: inj_mapD intro: inj_mapI)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   687
15303
eedbb8d22ca2 added lemmas
nipkow
parents: 15302
diff changeset
   688
lemma inj_on_mapI: "inj_on f (\<Union>(set ` A)) \<Longrightarrow> inj_on (map f) A"
eedbb8d22ca2 added lemmas
nipkow
parents: 15302
diff changeset
   689
apply(rule inj_onI)
eedbb8d22ca2 added lemmas
nipkow
parents: 15302
diff changeset
   690
apply(erule map_inj_on)
eedbb8d22ca2 added lemmas
nipkow
parents: 15302
diff changeset
   691
apply(blast intro:inj_onI dest:inj_onD)
eedbb8d22ca2 added lemmas
nipkow
parents: 15302
diff changeset
   692
done
eedbb8d22ca2 added lemmas
nipkow
parents: 15302
diff changeset
   693
14343
6bc647f472b9 map_idI
kleing
parents: 14339
diff changeset
   694
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
   695
by (induct xs, auto)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   696
14402
4201e1916482 moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents: 14395
diff changeset
   697
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
   698
by (induct xs) auto
4201e1916482 moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents: 14395
diff changeset
   699
15110
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
   700
lemma map_fst_zip[simp]:
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
   701
  "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
   702
by (induct rule:list_induct2, simp_all)
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
   703
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
   704
lemma map_snd_zip[simp]:
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
   705
  "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
   706
by (induct rule:list_induct2, simp_all)
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
   707
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
   708
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15307
diff changeset
   709
subsubsection {* @{text rev} *}
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   710
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   711
lemma rev_append [simp]: "rev (xs @ ys) = rev ys @ rev xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   712
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   713
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   714
lemma rev_rev_ident [simp]: "rev (rev xs) = xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   715
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   716
15870
4320bce5873f more on rev
kleing
parents: 15868
diff changeset
   717
lemma rev_swap: "(rev xs = ys) = (xs = rev ys)"
4320bce5873f more on rev
kleing
parents: 15868
diff changeset
   718
by auto
4320bce5873f more on rev
kleing
parents: 15868
diff changeset
   719
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   720
lemma rev_is_Nil_conv [iff]: "(rev xs = []) = (xs = [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   721
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   722
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   723
lemma Nil_is_rev_conv [iff]: "([] = rev xs) = (xs = [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   724
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   725
15870
4320bce5873f more on rev
kleing
parents: 15868
diff changeset
   726
lemma rev_singleton_conv [simp]: "(rev xs = [x]) = (xs = [x])"
4320bce5873f more on rev
kleing
parents: 15868
diff changeset
   727
by (cases xs) auto
4320bce5873f more on rev
kleing
parents: 15868
diff changeset
   728
4320bce5873f more on rev
kleing
parents: 15868
diff changeset
   729
lemma singleton_rev_conv [simp]: "([x] = rev xs) = (xs = [x])"
4320bce5873f more on rev
kleing
parents: 15868
diff changeset
   730
by (cases xs) auto
4320bce5873f more on rev
kleing
parents: 15868
diff changeset
   731
21061
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
   732
lemma rev_is_rev_conv [iff]: "(rev xs = rev ys) = (xs = ys)"
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
   733
apply (induct xs arbitrary: ys, force)
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
   734
apply (case_tac ys, simp, force)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   735
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   736
15439
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15426
diff changeset
   737
lemma inj_on_rev[iff]: "inj_on rev A"
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15426
diff changeset
   738
by(simp add:inj_on_def)
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15426
diff changeset
   739
13366
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
   740
lemma rev_induct [case_names Nil snoc]:
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
   741
  "[| 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
   742
apply(simplesubst rev_rev_ident[symmetric])
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   743
apply(rule_tac list = "rev xs" in list.induct, simp_all)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   744
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   745
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   746
ML {* val rev_induct_tac = induct_thm_tac (thm "rev_induct") *}-- "compatibility"
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   747
13366
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
   748
lemma rev_exhaust [case_names Nil snoc]:
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
   749
  "(xs = [] ==> P) ==>(!!ys y. xs = ys @ [y] ==> P) ==> P"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   750
by (induct xs rule: rev_induct) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   751
13366
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
   752
lemmas rev_cases = rev_exhaust
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
   753
18423
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
   754
lemma rev_eq_Cons_iff[iff]: "(rev xs = y#ys) = (xs = rev ys @ [y])"
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
   755
by(rule rev_cases[of xs]) auto
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
   756
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   757
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15307
diff changeset
   758
subsubsection {* @{text set} *}
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   759
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   760
lemma finite_set [iff]: "finite (set xs)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   761
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   762
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   763
lemma set_append [simp]: "set (xs @ ys) = (set xs \<union> set ys)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   764
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   765
17830
695a2365d32f added hd lemma
nipkow
parents: 17765
diff changeset
   766
lemma hd_in_set[simp]: "xs \<noteq> [] \<Longrightarrow> hd xs : set xs"
695a2365d32f added hd lemma
nipkow
parents: 17765
diff changeset
   767
by(cases xs) auto
14099
55d244f3c86d added fold_red, o2l, postfix, some thms
oheimb
parents: 14050
diff changeset
   768
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   769
lemma set_subset_Cons: "set xs \<subseteq> set (x # xs)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   770
by auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   771
14099
55d244f3c86d added fold_red, o2l, postfix, some thms
oheimb
parents: 14050
diff changeset
   772
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
   773
by auto
55d244f3c86d added fold_red, o2l, postfix, some thms
oheimb
parents: 14050
diff changeset
   774
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   775
lemma set_empty [iff]: "(set xs = {}) = (xs = [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   776
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   777
15245
5a21d9a8f14b Added a few lemmas
nipkow
parents: 15236
diff changeset
   778
lemma set_empty2[iff]: "({} = set xs) = (xs = [])"
5a21d9a8f14b Added a few lemmas
nipkow
parents: 15236
diff changeset
   779
by(induct xs) auto
5a21d9a8f14b Added a few lemmas
nipkow
parents: 15236
diff changeset
   780
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   781
lemma set_rev [simp]: "set (rev xs) = set xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   782
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   783
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   784
lemma set_map [simp]: "set (map f xs) = f`(set xs)"
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 set_filter [simp]: "set (filter P xs) = {x. x : set xs \<and> P x}"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   788
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   789
15425
6356d2523f73 [ .. (] -> [ ..< ]
nipkow
parents: 15392
diff changeset
   790
lemma set_upt [simp]: "set[i..<j] = {k. i \<le> k \<and> k < j}"
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
   791
apply (induct j, simp_all)
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
   792
apply (erule ssubst, auto)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   793
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   794
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   795
lemma in_set_conv_decomp: "(x : set xs) = (\<exists>ys zs. xs = ys @ x # zs)"
15113
fafcd72b9d4b some structured proofs
paulson
parents: 15110
diff changeset
   796
proof (induct xs)
fafcd72b9d4b some structured proofs
paulson
parents: 15110
diff changeset
   797
  case Nil show ?case by simp
fafcd72b9d4b some structured proofs
paulson
parents: 15110
diff changeset
   798
  case (Cons a xs)
fafcd72b9d4b some structured proofs
paulson
parents: 15110
diff changeset
   799
  show ?case
fafcd72b9d4b some structured proofs
paulson
parents: 15110
diff changeset
   800
  proof 
fafcd72b9d4b some structured proofs
paulson
parents: 15110
diff changeset
   801
    assume "x \<in> set (a # xs)"
fafcd72b9d4b some structured proofs
paulson
parents: 15110
diff changeset
   802
    with prems show "\<exists>ys zs. a # xs = ys @ x # zs"
fafcd72b9d4b some structured proofs
paulson
parents: 15110
diff changeset
   803
      by (simp, blast intro: Cons_eq_appendI)
fafcd72b9d4b some structured proofs
paulson
parents: 15110
diff changeset
   804
  next
fafcd72b9d4b some structured proofs
paulson
parents: 15110
diff changeset
   805
    assume "\<exists>ys zs. a # xs = ys @ x # zs"
fafcd72b9d4b some structured proofs
paulson
parents: 15110
diff changeset
   806
    then obtain ys zs where eq: "a # xs = ys @ x # zs" by blast
fafcd72b9d4b some structured proofs
paulson
parents: 15110
diff changeset
   807
    show "x \<in> set (a # xs)" 
fafcd72b9d4b some structured proofs
paulson
parents: 15110
diff changeset
   808
      by (cases ys, auto simp add: eq)
fafcd72b9d4b some structured proofs
paulson
parents: 15110
diff changeset
   809
  qed
fafcd72b9d4b some structured proofs
paulson
parents: 15110
diff changeset
   810
qed
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   811
18049
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
   812
lemma in_set_conv_decomp_first:
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
   813
 "(x : set xs) = (\<exists>ys zs. xs = ys @ x # zs \<and> x \<notin> set ys)"
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
   814
proof (induct xs)
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
   815
  case Nil show ?case by simp
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
   816
next
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
   817
  case (Cons a xs)
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
   818
  show ?case
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
   819
  proof cases
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
   820
    assume "x = a" thus ?case using Cons by force
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
   821
  next
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
   822
    assume "x \<noteq> a"
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
   823
    show ?case
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
   824
    proof
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
   825
      assume "x \<in> set (a # xs)"
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
   826
      from prems show "\<exists>ys zs. a # xs = ys @ x # zs \<and> x \<notin> set ys"
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
   827
	by(fastsimp intro!: Cons_eq_appendI)
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
   828
    next
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
   829
      assume "\<exists>ys zs. a # xs = ys @ x # zs \<and> x \<notin> set ys"
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
   830
      then obtain ys zs where eq: "a # xs = ys @ x # zs" by blast
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
   831
      show "x \<in> set (a # xs)" by (cases ys, auto simp add: eq)
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
   832
    qed
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
   833
  qed
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
   834
qed
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
   835
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
   836
lemmas split_list       = in_set_conv_decomp[THEN iffD1, standard]
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
   837
lemmas split_list_first = in_set_conv_decomp_first[THEN iffD1, standard]
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
   838
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
   839
13508
890d736b93a5 Frederic Blanqui's new "guard" examples
paulson
parents: 13480
diff changeset
   840
lemma finite_list: "finite A ==> EX l. set l = A"
890d736b93a5 Frederic Blanqui's new "guard" examples
paulson
parents: 13480
diff changeset
   841
apply (erule finite_induct, auto)
890d736b93a5 Frederic Blanqui's new "guard" examples
paulson
parents: 13480
diff changeset
   842
apply (rule_tac x="x#l" in exI, auto)
890d736b93a5 Frederic Blanqui's new "guard" examples
paulson
parents: 13480
diff changeset
   843
done
890d736b93a5 Frederic Blanqui's new "guard" examples
paulson
parents: 13480
diff changeset
   844
14388
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
   845
lemma card_length: "card (set xs) \<le> length xs"
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
   846
by (induct xs) (auto simp add: card_insert_if)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   847
15168
33a08cfc3ae5 new functions for sets of lists
paulson
parents: 15140
diff changeset
   848
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15307
diff changeset
   849
subsubsection {* @{text filter} *}
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   850
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   851
lemma filter_append [simp]: "filter P (xs @ ys) = filter P xs @ filter P ys"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   852
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   853
15305
0bd9eedaa301 added lemmas
nipkow
parents: 15304
diff changeset
   854
lemma rev_filter: "rev (filter P xs) = filter P (rev xs)"
0bd9eedaa301 added lemmas
nipkow
parents: 15304
diff changeset
   855
by (induct xs) simp_all
0bd9eedaa301 added lemmas
nipkow
parents: 15304
diff changeset
   856
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   857
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
   858
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   859
16998
e0050191e2d1 Added filter lemma
nipkow
parents: 16973
diff changeset
   860
lemma length_filter_le [simp]: "length (filter P xs) \<le> length xs"
e0050191e2d1 Added filter lemma
nipkow
parents: 16973
diff changeset
   861
by (induct xs) (auto simp add: le_SucI)
e0050191e2d1 Added filter lemma
nipkow
parents: 16973
diff changeset
   862
18423
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
   863
lemma sum_length_filter_compl:
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
   864
  "length(filter P xs) + length(filter (%x. ~P x) xs) = length xs"
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
   865
by(induct xs) simp_all
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
   866
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   867
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
   868
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   869
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   870
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
   871
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   872
16998
e0050191e2d1 Added filter lemma
nipkow
parents: 16973
diff changeset
   873
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
   874
by (induct xs) simp_all
16998
e0050191e2d1 Added filter lemma
nipkow
parents: 16973
diff changeset
   875
e0050191e2d1 Added filter lemma
nipkow
parents: 16973
diff changeset
   876
lemma filter_id_conv: "(filter P xs = xs) = (\<forall>x\<in>set xs. P x)"
e0050191e2d1 Added filter lemma
nipkow
parents: 16973
diff changeset
   877
apply (induct xs)
e0050191e2d1 Added filter lemma
nipkow
parents: 16973
diff changeset
   878
 apply auto
e0050191e2d1 Added filter lemma
nipkow
parents: 16973
diff changeset
   879
apply(cut_tac P=P and xs=xs in length_filter_le)
e0050191e2d1 Added filter lemma
nipkow
parents: 16973
diff changeset
   880
apply simp
e0050191e2d1 Added filter lemma
nipkow
parents: 16973
diff changeset
   881
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   882
16965
46697fa536ab added map_filter lemmas
nipkow
parents: 16770
diff changeset
   883
lemma filter_map:
46697fa536ab added map_filter lemmas
nipkow
parents: 16770
diff changeset
   884
  "filter P (map f xs) = map f (filter (P o f) xs)"
46697fa536ab added map_filter lemmas
nipkow
parents: 16770
diff changeset
   885
by (induct xs) simp_all
46697fa536ab added map_filter lemmas
nipkow
parents: 16770
diff changeset
   886
46697fa536ab added map_filter lemmas
nipkow
parents: 16770
diff changeset
   887
lemma length_filter_map[simp]:
46697fa536ab added map_filter lemmas
nipkow
parents: 16770
diff changeset
   888
  "length (filter P (map f xs)) = length(filter (P o f) xs)"
46697fa536ab added map_filter lemmas
nipkow
parents: 16770
diff changeset
   889
by (simp add:filter_map)
46697fa536ab added map_filter lemmas
nipkow
parents: 16770
diff changeset
   890
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   891
lemma filter_is_subset [simp]: "set (filter P xs) \<le> set xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   892
by auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   893
15246
0984a2c2868b added and renamed
nipkow
parents: 15245
diff changeset
   894
lemma length_filter_less:
0984a2c2868b added and renamed
nipkow
parents: 15245
diff changeset
   895
  "\<lbrakk> x : set xs; ~ P x \<rbrakk> \<Longrightarrow> length(filter P xs) < length xs"
0984a2c2868b added and renamed
nipkow
parents: 15245
diff changeset
   896
proof (induct xs)
0984a2c2868b added and renamed
nipkow
parents: 15245
diff changeset
   897
  case Nil thus ?case by simp
0984a2c2868b added and renamed
nipkow
parents: 15245
diff changeset
   898
next
0984a2c2868b added and renamed
nipkow
parents: 15245
diff changeset
   899
  case (Cons x xs) thus ?case
0984a2c2868b added and renamed
nipkow
parents: 15245
diff changeset
   900
    apply (auto split:split_if_asm)
0984a2c2868b added and renamed
nipkow
parents: 15245
diff changeset
   901
    using length_filter_le[of P xs] apply arith
0984a2c2868b added and renamed
nipkow
parents: 15245
diff changeset
   902
  done
0984a2c2868b added and renamed
nipkow
parents: 15245
diff changeset
   903
qed
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   904
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
   905
lemma length_filter_conv_card:
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
   906
 "length(filter p xs) = card{i. i < length xs & p(xs!i)}"
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
   907
proof (induct xs)
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
   908
  case Nil thus ?case by simp
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
   909
next
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
   910
  case (Cons x xs)
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
   911
  let ?S = "{i. i < length xs & p(xs!i)}"
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
   912
  have fin: "finite ?S" by(fast intro: bounded_nat_set_is_finite)
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
   913
  show ?case (is "?l = card ?S'")
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
   914
  proof (cases)
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
   915
    assume "p x"
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
   916
    hence eq: "?S' = insert 0 (Suc ` ?S)"
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
   917
      by(auto simp add: nth_Cons image_def split:nat.split elim:lessE)
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
   918
    have "length (filter p (x # xs)) = Suc(card ?S)"
23388
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
   919
      using Cons `p x` by simp
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
   920
    also have "\<dots> = Suc(card(Suc ` ?S))" using fin
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
   921
      by (simp add: card_image inj_Suc)
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
   922
    also have "\<dots> = card ?S'" using eq fin
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
   923
      by (simp add:card_insert_if) (simp add:image_def)
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
   924
    finally show ?thesis .
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
   925
  next
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
   926
    assume "\<not> p x"
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
   927
    hence eq: "?S' = Suc ` ?S"
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
   928
      by(auto simp add: nth_Cons image_def split:nat.split elim:lessE)
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
   929
    have "length (filter p (x # xs)) = card ?S"
23388
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
   930
      using Cons `\<not> p x` by simp
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
   931
    also have "\<dots> = card(Suc ` ?S)" using fin
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
   932
      by (simp add: card_image inj_Suc)
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
   933
    also have "\<dots> = card ?S'" using eq fin
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
   934
      by (simp add:card_insert_if)
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
   935
    finally show ?thesis .
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
   936
  qed
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
   937
qed
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
   938
17629
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
   939
lemma Cons_eq_filterD:
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
   940
 "x#xs = filter P ys \<Longrightarrow>
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
   941
  \<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
   942
  (is "_ \<Longrightarrow> \<exists>us vs. ?P ys us vs")
17629
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
   943
proof(induct ys)
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
   944
  case Nil thus ?case by simp
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
   945
next
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
   946
  case (Cons y ys)
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
   947
  show ?case (is "\<exists>x. ?Q x")
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
   948
  proof cases
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
   949
    assume Py: "P y"
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
   950
    show ?thesis
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
   951
    proof cases
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
   952
      assume xy: "x = y"
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
   953
      show ?thesis
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
   954
      proof from Py xy Cons(2) show "?Q []" by simp qed
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
   955
    next
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
   956
      assume "x \<noteq> y" with Py Cons(2) show ?thesis by simp
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
   957
    qed
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
   958
  next
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
   959
    assume Py: "\<not> P y"
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
   960
    with Cons obtain us vs where 1 : "?P (y#ys) (y#us) vs" by fastsimp
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
   961
    show ?thesis (is "? us. ?Q us")
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
   962
    proof show "?Q (y#us)" using 1 by simp qed
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
   963
  qed
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
   964
qed
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
   965
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
   966
lemma filter_eq_ConsD:
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
   967
 "filter P ys = x#xs \<Longrightarrow>
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
   968
  \<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
   969
by(rule Cons_eq_filterD) simp
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
   970
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
   971
lemma filter_eq_Cons_iff:
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
   972
 "(filter P ys = x#xs) =
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
   973
  (\<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
   974
by(auto dest:filter_eq_ConsD)
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
   975
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
   976
lemma Cons_eq_filter_iff:
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
   977
 "(x#xs = filter P ys) =
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
   978
  (\<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
   979
by(auto dest:Cons_eq_filterD)
f8ea8068c6d9 a few new filter lemmas
nipkow
parents: 17589
diff changeset
   980
19770
be5c23ebe1eb HOL/Tools/function_package: Added support for mutual recursive definitions.
krauss
parents: 19623
diff changeset
   981
lemma filter_cong[fundef_cong, recdef_cong]:
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
   982
 "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
   983
apply simp
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
   984
apply(erule thin_rl)
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
   985
by (induct ys) simp_all
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
   986
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
   987
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15307
diff changeset
   988
subsubsection {* @{text concat} *}
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   989
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
   990
lemma concat_append [simp]: "concat (xs @ ys) = concat xs @ concat ys"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   991
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   992
18447
da548623916a removed or modified some instances of [iff]
paulson
parents: 18423
diff changeset
   993
lemma concat_eq_Nil_conv [simp]: "(concat xss = []) = (\<forall>xs \<in> set xss. xs = [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   994
by (induct xss) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   995
18447
da548623916a removed or modified some instances of [iff]
paulson
parents: 18423
diff changeset
   996
lemma Nil_eq_concat_conv [simp]: "([] = concat xss) = (\<forall>xs \<in> set xss. xs = [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
   997
by (induct xss) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
   998
24308
700e745994c1 removed set_concat_map and improved set_concat
nipkow
parents: 24286
diff changeset
   999
lemma set_concat [simp]: "set (concat xs) = (UN x:set xs. set x)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1000
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1001
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  1002
lemma concat_map_singleton[simp, code]: "concat(map (%x. [f x]) xs) = map f xs"
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  1003
by (induct xs) auto
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  1004
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1005
lemma map_concat: "map f (concat xs) = concat (map (map f) xs)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1006
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1007
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1008
lemma filter_concat: "filter p (concat xs) = concat (map (filter p) xs)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1009
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1010
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1011
lemma rev_concat: "rev (concat xs) = concat (map rev (rev xs))"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1012
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1013
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1014
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15307
diff changeset
  1015
subsubsection {* @{text nth} *}
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1016
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1017
lemma nth_Cons_0 [simp]: "(x # xs)!0 = x"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1018
by auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1019
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1020
lemma nth_Cons_Suc [simp]: "(x # xs)!(Suc n) = xs!n"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1021
by auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1022
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1023
declare nth.simps [simp del]
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1024
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1025
lemma nth_append:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1026
"!!n. (xs @ ys)!n = (if n < length xs then xs!n else ys!(n - length xs))"
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1027
apply (induct "xs", simp)
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1028
apply (case_tac n, auto)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1029
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1030
14402
4201e1916482 moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents: 14395
diff changeset
  1031
lemma nth_append_length [simp]: "(xs @ x # ys) ! length xs = x"
4201e1916482 moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents: 14395
diff changeset
  1032
by (induct "xs") auto
4201e1916482 moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents: 14395
diff changeset
  1033
4201e1916482 moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents: 14395
diff changeset
  1034
lemma nth_append_length_plus[simp]: "(xs @ ys) ! (length xs + n) = ys ! n"
4201e1916482 moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents: 14395
diff changeset
  1035
by (induct "xs") auto
4201e1916482 moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents: 14395
diff changeset
  1036
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1037
lemma nth_map [simp]: "!!n. n < length xs ==> (map f xs)!n = f(xs!n)"
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1038
apply (induct xs, simp)
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1039
apply (case_tac n, auto)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1040
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1041
18423
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  1042
lemma hd_conv_nth: "xs \<noteq> [] \<Longrightarrow> hd xs = xs!0"
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  1043
by(cases xs) simp_all
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  1044
18049
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  1045
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  1046
lemma list_eq_iff_nth_eq:
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  1047
 "!!ys. (xs = ys) = (length xs = length ys \<and> (ALL i<length xs. xs!i = ys!i))"
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  1048
apply(induct xs)
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  1049
 apply simp apply blast
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  1050
apply(case_tac ys)
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  1051
 apply simp
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  1052
apply(simp add:nth_Cons split:nat.split)apply blast
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  1053
done
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  1054
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1055
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
  1056
apply (induct xs, simp, simp)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1057
apply safe
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1058
apply (rule_tac x = 0 in exI, simp)
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1059
 apply (rule_tac x = "Suc i" in exI, simp)
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1060
apply (case_tac i, simp)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1061
apply (rename_tac j)
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1062
apply (rule_tac x = j in exI, simp)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1063
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1064
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1065
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
  1066
by(auto simp:set_conv_nth)
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1067
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1068
lemma list_ball_nth: "[| n < length xs; !x : set xs. P x|] ==> P(xs!n)"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1069
by (auto simp add: set_conv_nth)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1070
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1071
lemma nth_mem [simp]: "n < length xs ==> xs!n : set xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1072
by (auto simp add: set_conv_nth)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1073
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1074
lemma all_nth_imp_all_set:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1075
"[| !i < length xs. P(xs!i); x : set xs|] ==> P x"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1076
by (auto simp add: set_conv_nth)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1077
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1078
lemma all_set_conv_all_nth:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1079
"(\<forall>x \<in> set xs. P x) = (\<forall>i. i < length xs --> P (xs ! i))"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1080
by (auto simp add: set_conv_nth)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1081
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1082
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15307
diff changeset
  1083
subsubsection {* @{text list_update} *}
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1084
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1085
lemma length_list_update [simp]: "!!i. length(xs[i:=x]) = length xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1086
by (induct xs) (auto split: nat.split)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1087
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1088
lemma nth_list_update:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1089
"!!i j. i < length xs==> (xs[i:=x])!j = (if i = j then x else xs!j)"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1090
by (induct xs) (auto simp add: nth_Cons split: nat.split)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1091
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1092
lemma nth_list_update_eq [simp]: "i < length xs ==> (xs[i:=x])!i = x"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1093
by (simp add: nth_list_update)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1094
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1095
lemma nth_list_update_neq [simp]: "!!i j. i \<noteq> j ==> xs[i:=x]!j = xs!j"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1096
by (induct xs) (auto simp add: nth_Cons split: nat.split)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1097
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1098
lemma list_update_overwrite [simp]:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1099
"!!i. i < size xs ==> xs[i:=x, i:=y] = xs[i:=y]"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1100
by (induct xs) (auto split: nat.split)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1101
14402
4201e1916482 moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents: 14395
diff changeset
  1102
lemma list_update_id[simp]: "!!i. i < length xs ==> xs[i := xs!i] = xs"
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1103
apply (induct xs, simp)
14187
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  1104
apply(simp split:nat.splits)
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  1105
done
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  1106
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1107
lemma list_update_beyond[simp]: "\<And>i. length xs \<le> i \<Longrightarrow> xs[i:=x] = xs"
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1108
apply (induct xs)
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1109
 apply simp
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1110
apply (case_tac i)
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1111
apply simp_all
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1112
done
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1113
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1114
lemma list_update_same_conv:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1115
"!!i. i < length xs ==> (xs[i := x] = xs) = (xs!i = x)"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1116
by (induct xs) (auto split: nat.split)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1117
14187
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  1118
lemma list_update_append1:
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  1119
 "!!i. i < size xs \<Longrightarrow> (xs @ ys)[i:=x] = xs[i:=x] @ ys"
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1120
apply (induct xs, simp)
14187
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  1121
apply(simp split:nat.split)
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  1122
done
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  1123
15868
9634b3f9d910 more about list_update
kleing
parents: 15693
diff changeset
  1124
lemma list_update_append:
9634b3f9d910 more about list_update
kleing
parents: 15693
diff changeset
  1125
  "!!n. (xs @ ys) [n:= x] = 
9634b3f9d910 more about list_update
kleing
parents: 15693
diff changeset
  1126
  (if n < length xs then xs[n:= x] @ ys else xs @ (ys [n-length xs:= x]))"
9634b3f9d910 more about list_update
kleing
parents: 15693
diff changeset
  1127
by (induct xs) (auto split:nat.splits)
9634b3f9d910 more about list_update
kleing
parents: 15693
diff changeset
  1128
14402
4201e1916482 moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents: 14395
diff changeset
  1129
lemma list_update_length [simp]:
4201e1916482 moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents: 14395
diff changeset
  1130
 "(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
  1131
by (induct xs, auto)
4201e1916482 moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents: 14395
diff changeset
  1132
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1133
lemma update_zip:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1134
"!!i xy xs. length xs = length ys ==>
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1135
(zip xs ys)[i:=xy] = zip (xs[i:=fst xy]) (ys[i:=snd xy])"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1136
by (induct ys) (auto, case_tac xs, auto split: nat.split)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1137
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1138
lemma set_update_subset_insert: "!!i. set(xs[i:=x]) <= insert x (set xs)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1139
by (induct xs) (auto split: nat.split)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1140
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1141
lemma set_update_subsetI: "[| set xs <= A; x:A |] ==> set(xs[i := x]) <= A"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1142
by (blast dest!: set_update_subset_insert [THEN subsetD])
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1143
15868
9634b3f9d910 more about list_update
kleing
parents: 15693
diff changeset
  1144
lemma set_update_memI: "!!n. n < length xs \<Longrightarrow> x \<in> set (xs[n := x])"
9634b3f9d910 more about list_update
kleing
parents: 15693
diff changeset
  1145
by (induct xs) (auto split:nat.splits)
9634b3f9d910 more about list_update
kleing
parents: 15693
diff changeset
  1146
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1147
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15307
diff changeset
  1148
subsubsection {* @{text last} and @{text butlast} *}
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1149
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1150
lemma last_snoc [simp]: "last (xs @ [x]) = x"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1151
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1152
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1153
lemma butlast_snoc [simp]: "butlast (xs @ [x]) = xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1154
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1155
14302
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1156
lemma last_ConsL: "xs = [] \<Longrightarrow> last(x#xs) = x"
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1157
by(simp add:last.simps)
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1158
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1159
lemma last_ConsR: "xs \<noteq> [] \<Longrightarrow> last(x#xs) = last xs"
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1160
by(simp add:last.simps)
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1161
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1162
lemma last_append: "last(xs @ ys) = (if ys = [] then last xs else last ys)"
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1163
by (induct xs) (auto)
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1164
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1165
lemma last_appendL[simp]: "ys = [] \<Longrightarrow> last(xs @ ys) = last xs"
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1166
by(simp add:last_append)
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1167
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1168
lemma last_appendR[simp]: "ys \<noteq> [] \<Longrightarrow> last(xs @ ys) = last ys"
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1169
by(simp add:last_append)
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1170
17762
478869f444ca new hd/rev/last lemmas
nipkow
parents: 17724
diff changeset
  1171
lemma hd_rev: "xs \<noteq> [] \<Longrightarrow> hd(rev xs) = last xs"
478869f444ca new hd/rev/last lemmas
nipkow
parents: 17724
diff changeset
  1172
by(rule rev_exhaust[of xs]) simp_all
478869f444ca new hd/rev/last lemmas
nipkow
parents: 17724
diff changeset
  1173
478869f444ca new hd/rev/last lemmas
nipkow
parents: 17724
diff changeset
  1174
lemma last_rev: "xs \<noteq> [] \<Longrightarrow> last(rev xs) = hd xs"
478869f444ca new hd/rev/last lemmas
nipkow
parents: 17724
diff changeset
  1175
by(cases xs) simp_all
478869f444ca new hd/rev/last lemmas
nipkow
parents: 17724
diff changeset
  1176
17765
e3cd31bc2e40 added last in set lemma
nipkow
parents: 17762
diff changeset
  1177
lemma last_in_set[simp]: "as \<noteq> [] \<Longrightarrow> last as \<in> set as"
e3cd31bc2e40 added last in set lemma
nipkow
parents: 17762
diff changeset
  1178
by (induct as) auto
17762
478869f444ca new hd/rev/last lemmas
nipkow
parents: 17724
diff changeset
  1179
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1180
lemma length_butlast [simp]: "length (butlast xs) = length xs - 1"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1181
by (induct xs rule: rev_induct) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1182
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1183
lemma butlast_append:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1184
"!!ys. butlast (xs @ ys) = (if ys = [] then butlast xs else xs @ butlast ys)"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1185
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1186
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1187
lemma append_butlast_last_id [simp]:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1188
"xs \<noteq> [] ==> butlast xs @ [last xs] = xs"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1189
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1190
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1191
lemma in_set_butlastD: "x : set (butlast xs) ==> x : set xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1192
by (induct xs) (auto split: split_if_asm)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1193
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1194
lemma in_set_butlast_appendI:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1195
"x : set (butlast xs) | x : set (butlast ys) ==> x : set (butlast (xs @ ys))"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1196
by (auto dest: in_set_butlastD simp add: butlast_append)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1197
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1198
lemma last_drop[simp]: "!!n. n < length xs \<Longrightarrow> last (drop n xs) = last xs"
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1199
apply (induct xs)
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1200
 apply simp
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1201
apply (auto split:nat.split)
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1202
done
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1203
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17501
diff changeset
  1204
lemma last_conv_nth: "xs\<noteq>[] \<Longrightarrow> last xs = xs!(length xs - 1)"
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17501
diff changeset
  1205
by(induct xs)(auto simp:neq_Nil_conv)
58eeffd73be1 renamed rules to iprover
nipkow
parents: 17501
diff changeset
  1206
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15307
diff changeset
  1207
subsubsection {* @{text take} and @{text drop} *}
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1208
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1209
lemma take_0 [simp]: "take 0 xs = []"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1210
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1211
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1212
lemma drop_0 [simp]: "drop 0 xs = xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1213
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1214
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1215
lemma take_Suc_Cons [simp]: "take (Suc n) (x # xs) = x # take n xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1216
by simp
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1217
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1218
lemma drop_Suc_Cons [simp]: "drop (Suc n) (x # xs) = drop n xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1219
by simp
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1220
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1221
declare take_Cons [simp del] and drop_Cons [simp del]
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1222
15110
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1223
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
  1224
by(clarsimp simp add:neq_Nil_conv)
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1225
14187
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  1226
lemma drop_Suc: "drop (Suc n) xs = drop n (tl xs)"
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  1227
by(cases xs, simp_all)
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  1228
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  1229
lemma drop_tl: "!!n. drop n (tl xs) = tl(drop n xs)"
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  1230
by(induct xs, simp_all add:drop_Cons drop_Suc split:nat.split)
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  1231
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  1232
lemma nth_via_drop: "!!n. drop n xs = y#ys \<Longrightarrow> xs!n = y"
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1233
apply (induct xs, simp)
14187
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  1234
apply(simp add:drop_Cons nth_Cons split:nat.splits)
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  1235
done
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  1236
13913
b3ed67af04b8 Added take/dropWhile thms
nipkow
parents: 13883
diff changeset
  1237
lemma take_Suc_conv_app_nth:
b3ed67af04b8 Added take/dropWhile thms
nipkow
parents: 13883
diff changeset
  1238
 "!!i. i < length xs \<Longrightarrow> take (Suc i) xs = take i xs @ [xs!i]"
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1239
apply (induct xs, simp)
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1240
apply (case_tac i, auto)
13913
b3ed67af04b8 Added take/dropWhile thms
nipkow
parents: 13883
diff changeset
  1241
done
b3ed67af04b8 Added take/dropWhile thms
nipkow
parents: 13883
diff changeset
  1242
14591
7be4d5dadf15 lemma drop_Suc_conv_tl added.
mehta
parents: 14589
diff changeset
  1243
lemma drop_Suc_conv_tl:
7be4d5dadf15 lemma drop_Suc_conv_tl added.
mehta
parents: 14589
diff changeset
  1244
  "!!i. i < length xs \<Longrightarrow> (xs!i) # (drop (Suc i) xs) = drop i xs"
7be4d5dadf15 lemma drop_Suc_conv_tl added.
mehta
parents: 14589
diff changeset
  1245
apply (induct xs, simp)
7be4d5dadf15 lemma drop_Suc_conv_tl added.
mehta
parents: 14589
diff changeset
  1246
apply (case_tac i, auto)
7be4d5dadf15 lemma drop_Suc_conv_tl added.
mehta
parents: 14589
diff changeset
  1247
done
7be4d5dadf15 lemma drop_Suc_conv_tl added.
mehta
parents: 14589
diff changeset
  1248
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1249
lemma length_take [simp]: "!!xs. length (take n xs) = min (length xs) n"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1250
by (induct n) (auto, case_tac xs, auto)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1251
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1252
lemma length_drop [simp]: "!!xs. length (drop n xs) = (length xs - n)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1253
by (induct n) (auto, case_tac xs, auto)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1254
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1255
lemma take_all [simp]: "!!xs. length xs <= n ==> take n xs = xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1256
by (induct n) (auto, case_tac xs, auto)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1257
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1258
lemma drop_all [simp]: "!!xs. length xs <= n ==> drop n xs = []"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1259
by (induct n) (auto, case_tac xs, auto)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1260
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1261
lemma take_append [simp]:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1262
"!!xs. take n (xs @ ys) = (take n xs @ take (n - length xs) ys)"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1263
by (induct n) (auto, case_tac xs, auto)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1264
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1265
lemma drop_append [simp]:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1266
"!!xs. drop n (xs @ ys) = drop n xs @ drop (n - length xs) ys"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1267
by (induct n) (auto, case_tac xs, auto)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1268
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1269
lemma take_take [simp]: "!!xs n. take n (take m xs) = take (min n m) xs"
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1270
apply (induct m, auto)
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1271
apply (case_tac xs, auto)
15236
f289e8ba2bb3 Proofs needed to be updated because induction now preserves name of
nipkow
parents: 15176
diff changeset
  1272
apply (case_tac n, auto)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1273
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1274
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1275
lemma drop_drop [simp]: "!!xs. drop n (drop m xs) = drop (n + m) xs"
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1276
apply (induct m, auto)
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1277
apply (case_tac xs, auto)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1278
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1279
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1280
lemma take_drop: "!!xs n. take n (drop m xs) = drop m (take (n + m) xs)"
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1281
apply (induct m, auto)
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1282
apply (case_tac xs, auto)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1283
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1284
14802
e05116289ff9 added drop_take:thm
nipkow
parents: 14770
diff changeset
  1285
lemma drop_take: "!!m n. drop n (take m xs) = take (m-n) (drop n xs)"
e05116289ff9 added drop_take:thm
nipkow
parents: 14770
diff changeset
  1286
apply(induct xs)
e05116289ff9 added drop_take:thm
nipkow
parents: 14770
diff changeset
  1287
 apply simp
e05116289ff9 added drop_take:thm
nipkow
parents: 14770
diff changeset
  1288
apply(simp add: take_Cons drop_Cons split:nat.split)
e05116289ff9 added drop_take:thm
nipkow
parents: 14770
diff changeset
  1289
done
e05116289ff9 added drop_take:thm
nipkow
parents: 14770
diff changeset
  1290
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1291
lemma append_take_drop_id [simp]: "!!xs. take n xs @ drop n xs = xs"
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1292
apply (induct n, auto)
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1293
apply (case_tac xs, auto)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1294
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1295
15110
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1296
lemma take_eq_Nil[simp]: "!!n. (take n xs = []) = (n = 0 \<or> xs = [])"
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1297
apply(induct xs)
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1298
 apply simp
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1299
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
  1300
done
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1301
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1302
lemma drop_eq_Nil[simp]: "!!n. (drop n xs = []) = (length xs <= n)"
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1303
apply(induct xs)
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1304
apply simp
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1305
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
  1306
done
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1307
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1308
lemma take_map: "!!xs. take n (map f xs) = map f (take n xs)"
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1309
apply (induct n, auto)
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1310
apply (case_tac xs, auto)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1311
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1312
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1313
lemma drop_map: "!!xs. drop n (map f xs) = map f (drop n xs)"
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1314
apply (induct n, auto)
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1315
apply (case_tac xs, auto)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1316
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1317
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1318
lemma rev_take: "!!i. rev (take i xs) = drop (length xs - i) (rev xs)"
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1319
apply (induct xs, auto)
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1320
apply (case_tac i, auto)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1321
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1322
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1323
lemma rev_drop: "!!i. rev (drop i xs) = take (length xs - i) (rev xs)"
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1324
apply (induct xs, auto)
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1325
apply (case_tac i, auto)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1326
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1327
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1328
lemma nth_take [simp]: "!!n i. i < n ==> (take n xs)!i = xs!i"
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1329
apply (induct xs, auto)
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1330
apply (case_tac n, blast)
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1331
apply (case_tac i, auto)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1332
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1333
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1334
lemma nth_drop [simp]:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1335
"!!xs i. n + i <= length xs ==> (drop n xs)!i = xs!(n + i)"
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1336
apply (induct n, auto)
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1337
apply (case_tac xs, auto)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1338
done
3507
157be29ad5ba Improved length = size translation.
nipkow
parents: 3465
diff changeset
  1339
18423
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  1340
lemma hd_drop_conv_nth: "\<lbrakk> xs \<noteq> []; n < length xs \<rbrakk> \<Longrightarrow> hd(drop n xs) = xs!n"
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  1341
by(simp add: hd_conv_nth)
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  1342
14025
d9b155757dc8 *** empty log message ***
nipkow
parents: 13913
diff changeset
  1343
lemma set_take_subset: "\<And>n. set(take n xs) \<subseteq> set xs"
d9b155757dc8 *** empty log message ***
nipkow
parents: 13913
diff changeset
  1344
by(induct xs)(auto simp:take_Cons split:nat.split)
d9b155757dc8 *** empty log message ***
nipkow
parents: 13913
diff changeset
  1345
d9b155757dc8 *** empty log message ***
nipkow
parents: 13913
diff changeset
  1346
lemma set_drop_subset: "\<And>n. set(drop n xs) \<subseteq> set xs"
d9b155757dc8 *** empty log message ***
nipkow
parents: 13913
diff changeset
  1347
by(induct xs)(auto simp:drop_Cons split:nat.split)
d9b155757dc8 *** empty log message ***
nipkow
parents: 13913
diff changeset
  1348
14187
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  1349
lemma in_set_takeD: "x : set(take n xs) \<Longrightarrow> x : set xs"
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  1350
using set_take_subset by fast
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  1351
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  1352
lemma in_set_dropD: "x : set(drop n xs) \<Longrightarrow> x : set xs"
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  1353
using set_drop_subset by fast
26dfcd0ac436 Added new theorems
nipkow
parents: 14111
diff changeset
  1354
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1355
lemma append_eq_conv_conj:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1356
"!!zs. (xs @ ys = zs) = (xs = take (length xs) zs \<and> ys = drop (length xs) zs)"
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1357
apply (induct xs, simp, clarsimp)
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1358
apply (case_tac zs, auto)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1359
done
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1360
14050
826037db30cd new theorem
paulson
parents: 14025
diff changeset
  1361
lemma take_add [rule_format]: 
826037db30cd new theorem
paulson
parents: 14025
diff changeset
  1362
    "\<forall>i. i+j \<le> length(xs) --> take (i+j) xs = take i xs @ take j (drop i xs)"
826037db30cd new theorem
paulson
parents: 14025
diff changeset
  1363
apply (induct xs, auto) 
826037db30cd new theorem
paulson
parents: 14025
diff changeset
  1364
apply (case_tac i, simp_all) 
826037db30cd new theorem
paulson
parents: 14025
diff changeset
  1365
done
826037db30cd new theorem
paulson
parents: 14025
diff changeset
  1366
14300
bf8b8c9425c3 *** empty log message ***
nipkow
parents: 14247
diff changeset
  1367
lemma append_eq_append_conv_if:
bf8b8c9425c3 *** empty log message ***
nipkow
parents: 14247
diff changeset
  1368
 "!! ys\<^isub>1. (xs\<^isub>1 @ xs\<^isub>2 = ys\<^isub>1 @ ys\<^isub>2) =
bf8b8c9425c3 *** empty log message ***
nipkow
parents: 14247
diff changeset
  1369
  (if size xs\<^isub>1 \<le> size ys\<^isub>1
bf8b8c9425c3 *** empty log message ***
nipkow
parents: 14247
diff changeset
  1370
   then xs\<^isub>1 = take (size xs\<^isub>1) ys\<^isub>1 \<and> xs\<^isub>2 = drop (size xs\<^isub>1) ys\<^isub>1 @ ys\<^isub>2
bf8b8c9425c3 *** empty log message ***
nipkow
parents: 14247
diff changeset
  1371
   else take (size ys\<^isub>1) xs\<^isub>1 = ys\<^isub>1 \<and> drop (size ys\<^isub>1) xs\<^isub>1 @ xs\<^isub>2 = ys\<^isub>2)"
bf8b8c9425c3 *** empty log message ***
nipkow
parents: 14247
diff changeset
  1372
apply(induct xs\<^isub>1)
bf8b8c9425c3 *** empty log message ***
nipkow
parents: 14247
diff changeset
  1373
 apply simp
bf8b8c9425c3 *** empty log message ***
nipkow
parents: 14247
diff changeset
  1374
apply(case_tac ys\<^isub>1)
bf8b8c9425c3 *** empty log message ***
nipkow
parents: 14247
diff changeset
  1375
apply simp_all
bf8b8c9425c3 *** empty log message ***
nipkow
parents: 14247
diff changeset
  1376
done
bf8b8c9425c3 *** empty log message ***
nipkow
parents: 14247
diff changeset
  1377
15110
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1378
lemma take_hd_drop:
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1379
  "!!n. n < length xs \<Longrightarrow> take n xs @ [hd (drop n xs)] = take (n+1) xs"
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1380
apply(induct xs)
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1381
apply simp
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1382
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
  1383
done
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  1384
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1385
lemma id_take_nth_drop:
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1386
 "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
  1387
proof -
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1388
  assume si: "i < length xs"
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1389
  hence "xs = take (Suc i) xs @ drop (Suc i) xs" by auto
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1390
  moreover
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1391
  from si have "take (Suc i) xs = take i xs @ [xs!i]"
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1392
    apply (rule_tac take_Suc_conv_app_nth) by arith
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1393
  ultimately show ?thesis by auto
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1394
qed
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1395
  
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1396
lemma upd_conv_take_nth_drop:
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1397
 "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
  1398
proof -
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1399
  assume i: "i < length xs"
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1400
  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
  1401
    by(rule arg_cong[OF id_take_nth_drop[OF i]])
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1402
  also have "\<dots> = take i xs @ a # drop (Suc i) xs"
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1403
    using i by (simp add: list_update_append)
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1404
  finally show ?thesis .
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1405
qed
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1406
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1407
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15307
diff changeset
  1408
subsubsection {* @{text takeWhile} and @{text dropWhile} *}
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1409
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1410
lemma takeWhile_dropWhile_id [simp]: "takeWhile P xs @ dropWhile P xs = xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1411
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1412
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1413
lemma takeWhile_append1 [simp]:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1414
"[| x:set xs; ~P(x)|] ==> takeWhile P (xs @ ys) = takeWhile P xs"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1415
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1416
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1417
lemma takeWhile_append2 [simp]:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1418
"(!!x. x : set xs ==> P x) ==> takeWhile P (xs @ ys) = xs @ takeWhile P ys"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1419
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1420
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1421
lemma takeWhile_tail: "\<not> P x ==> takeWhile P (xs @ (x#l)) = takeWhile P xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1422
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1423
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1424
lemma dropWhile_append1 [simp]:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1425
"[| x : set xs; ~P(x)|] ==> dropWhile P (xs @ ys) = (dropWhile P xs)@ys"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1426
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1427
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1428
lemma dropWhile_append2 [simp]:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1429
"(!!x. x:set xs ==> P(x)) ==> dropWhile P (xs @ ys) = dropWhile P ys"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1430
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1431
23971
e6d505d5b03d renamed lemma "set_take_whileD" to "set_takeWhileD"
krauss
parents: 23740
diff changeset
  1432
lemma set_takeWhileD: "x : set (takeWhile P xs) ==> x : set xs \<and> P x"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1433
by (induct xs) (auto split: split_if_asm)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1434
13913
b3ed67af04b8 Added take/dropWhile thms
nipkow
parents: 13883
diff changeset
  1435
lemma takeWhile_eq_all_conv[simp]:
b3ed67af04b8 Added take/dropWhile thms
nipkow
parents: 13883
diff changeset
  1436
 "(takeWhile P xs = xs) = (\<forall>x \<in> set xs. P x)"
b3ed67af04b8 Added take/dropWhile thms
nipkow
parents: 13883
diff changeset
  1437
by(induct xs, auto)
b3ed67af04b8 Added take/dropWhile thms
nipkow
parents: 13883
diff changeset
  1438
b3ed67af04b8 Added take/dropWhile thms
nipkow
parents: 13883
diff changeset
  1439
lemma dropWhile_eq_Nil_conv[simp]:
b3ed67af04b8 Added take/dropWhile thms
nipkow
parents: 13883
diff changeset
  1440
 "(dropWhile P xs = []) = (\<forall>x \<in> set xs. P x)"
b3ed67af04b8 Added take/dropWhile thms
nipkow
parents: 13883
diff changeset
  1441
by(induct xs, auto)
b3ed67af04b8 Added take/dropWhile thms
nipkow
parents: 13883
diff changeset
  1442
b3ed67af04b8 Added take/dropWhile thms
nipkow
parents: 13883
diff changeset
  1443
lemma dropWhile_eq_Cons_conv:
b3ed67af04b8 Added take/dropWhile thms
nipkow
parents: 13883
diff changeset
  1444
 "(dropWhile P xs = y#ys) = (xs = takeWhile P xs @ y # ys & \<not> P y)"
b3ed67af04b8 Added take/dropWhile thms
nipkow
parents: 13883
diff changeset
  1445
by(induct xs, auto)
b3ed67af04b8 Added take/dropWhile thms
nipkow
parents: 13883
diff changeset
  1446
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1447
text{* The following two lemmmas could be generalized to an arbitrary
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1448
property. *}
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1449
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1450
lemma takeWhile_neq_rev: "\<lbrakk>distinct xs; x \<in> set xs\<rbrakk> \<Longrightarrow>
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1451
 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
  1452
by(induct xs) (auto simp: takeWhile_tail[where l="[]"])
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1453
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1454
lemma dropWhile_neq_rev: "\<lbrakk>distinct xs; x \<in> set xs\<rbrakk> \<Longrightarrow>
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1455
  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
  1456
apply(induct xs)
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1457
 apply simp
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1458
apply auto
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1459
apply(subst dropWhile_append2)
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1460
apply auto
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1461
done
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1462
18423
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  1463
lemma takeWhile_not_last:
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  1464
 "\<lbrakk> xs \<noteq> []; distinct xs\<rbrakk> \<Longrightarrow> takeWhile (\<lambda>y. y \<noteq> last xs) xs = butlast xs"
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  1465
apply(induct xs)
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  1466
 apply simp
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  1467
apply(case_tac xs)
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  1468
apply(auto)
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  1469
done
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  1470
19770
be5c23ebe1eb HOL/Tools/function_package: Added support for mutual recursive definitions.
krauss
parents: 19623
diff changeset
  1471
lemma takeWhile_cong [fundef_cong, recdef_cong]:
18336
1a2e30b37ed3 Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents: 18049
diff changeset
  1472
  "[| 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
  1473
  ==> takeWhile P l = takeWhile Q k"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  1474
by (induct k arbitrary: l) (simp_all)
18336
1a2e30b37ed3 Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents: 18049
diff changeset
  1475
19770
be5c23ebe1eb HOL/Tools/function_package: Added support for mutual recursive definitions.
krauss
parents: 19623
diff changeset
  1476
lemma dropWhile_cong [fundef_cong, recdef_cong]:
18336
1a2e30b37ed3 Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents: 18049
diff changeset
  1477
  "[| 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
  1478
  ==> dropWhile P l = dropWhile Q k"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  1479
by (induct k arbitrary: l, simp_all)
18336
1a2e30b37ed3 Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents: 18049
diff changeset
  1480
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1481
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15307
diff changeset
  1482
subsubsection {* @{text zip} *}
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1483
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1484
lemma zip_Nil [simp]: "zip [] ys = []"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1485
by (induct ys) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1486
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1487
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
  1488
by simp
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1489
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1490
declare zip_Cons [simp del]
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1491
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1492
lemma zip_Cons1:
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1493
 "zip (x#xs) ys = (case ys of [] \<Rightarrow> [] | y#ys \<Rightarrow> (x,y)#zip xs ys)"
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1494
by(auto split:list.split)
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1495
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1496
lemma length_zip [simp]:
22493
db930e490fe5 added another rule for simultaneous induction, and lemmas for zip
krauss
parents: 22422
diff changeset
  1497
"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
  1498
by (induct xs ys rule:list_induct2') auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1499
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1500
lemma zip_append1:
22493
db930e490fe5 added another rule for simultaneous induction, and lemmas for zip
krauss
parents: 22422
diff changeset
  1501
"zip (xs @ ys) zs =
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1502
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
  1503
by (induct xs zs rule:list_induct2') auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1504
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1505
lemma zip_append2:
22493
db930e490fe5 added another rule for simultaneous induction, and lemmas for zip
krauss
parents: 22422
diff changeset
  1506
"zip xs (ys @ zs) =
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1507
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
  1508
by (induct xs ys rule:list_induct2') auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1509
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1510
lemma zip_append [simp]:
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1511
 "[| length xs = length us; length ys = length vs |] ==>
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1512
zip (xs@ys) (us@vs) = zip xs us @ zip ys vs"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1513
by (simp add: zip_append1)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1514
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1515
lemma zip_rev:
14247
cb32eb89bddd *** empty log message ***
nipkow
parents: 14208
diff changeset
  1516
"length xs = length ys ==> zip (rev xs) (rev ys) = rev (zip xs ys)"
cb32eb89bddd *** empty log message ***
nipkow
parents: 14208
diff changeset
  1517
by (induct rule:list_induct2, simp_all)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1518
23096
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1519
lemma map_zip_map:
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1520
 "map f (zip (map g xs) ys) = map (%(x,y). f(g x, y)) (zip xs ys)"
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1521
apply(induct xs arbitrary:ys) apply simp
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1522
apply(case_tac ys)
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1523
apply simp_all
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1524
done
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1525
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1526
lemma map_zip_map2:
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1527
 "map f (zip xs (map g ys)) = map (%(x,y). f(x, g y)) (zip xs ys)"
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1528
apply(induct xs arbitrary:ys) apply simp
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1529
apply(case_tac ys)
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1530
apply simp_all
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1531
done
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1532
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1533
lemma nth_zip [simp]:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1534
"!!i xs. [| i < length xs; i < length ys|] ==> (zip xs ys)!i = (xs!i, ys!i)"
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1535
apply (induct ys, simp)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1536
apply (case_tac xs)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1537
 apply (simp_all add: nth.simps split: nat.split)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1538
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1539
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1540
lemma set_zip:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1541
"set (zip xs ys) = {(xs!i, ys!i) | i. i < min (length xs) (length ys)}"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1542
by (simp add: set_conv_nth cong: rev_conj_cong)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1543
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1544
lemma zip_update:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1545
"length xs = length ys ==> zip (xs[i:=x]) (ys[i:=y]) = (zip xs ys)[i:=(x,y)]"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1546
by (rule sym, simp add: update_zip)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1547
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1548
lemma zip_replicate [simp]:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1549
"!!j. zip (replicate i x) (replicate j y) = replicate (min i j) (x,y)"
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1550
apply (induct i, auto)
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1551
apply (case_tac j, auto)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1552
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1553
19487
d5e79a41bce0 added zip/take/drop lemmas
nipkow
parents: 19390
diff changeset
  1554
lemma take_zip:
d5e79a41bce0 added zip/take/drop lemmas
nipkow
parents: 19390
diff changeset
  1555
 "!!xs ys. take n (zip xs ys) = zip (take n xs) (take n ys)"
d5e79a41bce0 added zip/take/drop lemmas
nipkow
parents: 19390
diff changeset
  1556
apply (induct n)
d5e79a41bce0 added zip/take/drop lemmas
nipkow
parents: 19390
diff changeset
  1557
 apply simp
d5e79a41bce0 added zip/take/drop lemmas
nipkow
parents: 19390
diff changeset
  1558
apply (case_tac xs, simp)
d5e79a41bce0 added zip/take/drop lemmas
nipkow
parents: 19390
diff changeset
  1559
apply (case_tac ys, simp_all)
d5e79a41bce0 added zip/take/drop lemmas
nipkow
parents: 19390
diff changeset
  1560
done
d5e79a41bce0 added zip/take/drop lemmas
nipkow
parents: 19390
diff changeset
  1561
d5e79a41bce0 added zip/take/drop lemmas
nipkow
parents: 19390
diff changeset
  1562
lemma drop_zip:
d5e79a41bce0 added zip/take/drop lemmas
nipkow
parents: 19390
diff changeset
  1563
 "!!xs ys. drop n (zip xs ys) = zip (drop n xs) (drop n ys)"
d5e79a41bce0 added zip/take/drop lemmas
nipkow
parents: 19390
diff changeset
  1564
apply (induct n)
d5e79a41bce0 added zip/take/drop lemmas
nipkow
parents: 19390
diff changeset
  1565
 apply simp
d5e79a41bce0 added zip/take/drop lemmas
nipkow
parents: 19390
diff changeset
  1566
apply (case_tac xs, simp)
d5e79a41bce0 added zip/take/drop lemmas
nipkow
parents: 19390
diff changeset
  1567
apply (case_tac ys, simp_all)
d5e79a41bce0 added zip/take/drop lemmas
nipkow
parents: 19390
diff changeset
  1568
done
d5e79a41bce0 added zip/take/drop lemmas
nipkow
parents: 19390
diff changeset
  1569
22493
db930e490fe5 added another rule for simultaneous induction, and lemmas for zip
krauss
parents: 22422
diff changeset
  1570
lemma set_zip_leftD:
db930e490fe5 added another rule for simultaneous induction, and lemmas for zip
krauss
parents: 22422
diff changeset
  1571
  "(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
  1572
by (induct xs ys rule:list_induct2') auto
db930e490fe5 added another rule for simultaneous induction, and lemmas for zip
krauss
parents: 22422
diff changeset
  1573
db930e490fe5 added another rule for simultaneous induction, and lemmas for zip
krauss
parents: 22422
diff changeset
  1574
lemma set_zip_rightD:
db930e490fe5 added another rule for simultaneous induction, and lemmas for zip
krauss
parents: 22422
diff changeset
  1575
  "(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
  1576
by (induct xs ys rule:list_induct2') auto
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1577
23983
79dc793bec43 Added lemmas
nipkow
parents: 23971
diff changeset
  1578
lemma in_set_zipE:
79dc793bec43 Added lemmas
nipkow
parents: 23971
diff changeset
  1579
  "(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
  1580
by(blast dest: set_zip_leftD set_zip_rightD)
79dc793bec43 Added lemmas
nipkow
parents: 23971
diff changeset
  1581
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15307
diff changeset
  1582
subsubsection {* @{text list_all2} *}
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1583
14316
91b897b9a2dc added some [intro?] and [trans] for list_all2 lemmas
kleing
parents: 14302
diff changeset
  1584
lemma list_all2_lengthD [intro?]: 
91b897b9a2dc added some [intro?] and [trans] for list_all2 lemmas
kleing
parents: 14302
diff changeset
  1585
  "list_all2 P xs ys ==> length xs = length ys"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  1586
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
  1587
19787
b949911ecff5 improved code lemmas
haftmann
parents: 19770
diff changeset
  1588
lemma list_all2_Nil [iff, code]: "list_all2 P [] ys = (ys = [])"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  1589
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
  1590
19787
b949911ecff5 improved code lemmas
haftmann
parents: 19770
diff changeset
  1591
lemma list_all2_Nil2 [iff, code]: "list_all2 P xs [] = (xs = [])"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  1592
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
  1593
07eeb832f28d introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents: 19585
diff changeset
  1594
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
  1595
  "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
  1596
by (auto simp add: list_all2_def)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1597
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1598
lemma list_all2_Cons1:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1599
"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
  1600
by (cases ys) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1601
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1602
lemma list_all2_Cons2:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1603
"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
  1604
by (cases xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1605
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1606
lemma list_all2_rev [iff]:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1607
"list_all2 P (rev xs) (rev ys) = list_all2 P xs ys"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1608
by (simp add: list_all2_def zip_rev cong: conj_cong)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1609
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  1610
lemma list_all2_rev1:
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  1611
"list_all2 P (rev xs) ys = list_all2 P xs (rev ys)"
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  1612
by (subst list_all2_rev [symmetric]) simp
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  1613
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1614
lemma list_all2_append1:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1615
"list_all2 P (xs @ ys) zs =
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1616
(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
  1617
list_all2 P xs us \<and> list_all2 P ys vs)"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1618
apply (simp add: list_all2_def zip_append1)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1619
apply (rule iffI)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1620
 apply (rule_tac x = "take (length xs) zs" in exI)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1621
 apply (rule_tac x = "drop (length xs) zs" in exI)
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1622
 apply (force split: nat_diff_split simp add: min_def, clarify)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1623
apply (simp add: ball_Un)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1624
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1625
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1626
lemma list_all2_append2:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1627
"list_all2 P xs (ys @ zs) =
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1628
(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
  1629
list_all2 P us ys \<and> list_all2 P vs zs)"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1630
apply (simp add: list_all2_def zip_append2)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1631
apply (rule iffI)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1632
 apply (rule_tac x = "take (length ys) xs" in exI)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1633
 apply (rule_tac x = "drop (length ys) xs" in exI)
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1634
 apply (force split: nat_diff_split simp add: min_def, clarify)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1635
apply (simp add: ball_Un)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1636
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1637
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  1638
lemma list_all2_append:
14247
cb32eb89bddd *** empty log message ***
nipkow
parents: 14208
diff changeset
  1639
  "length xs = length ys \<Longrightarrow>
cb32eb89bddd *** empty log message ***
nipkow
parents: 14208
diff changeset
  1640
  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
  1641
by (induct rule:list_induct2, simp_all)
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  1642
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  1643
lemma list_all2_appendI [intro?, trans]:
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  1644
  "\<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
  1645
by (simp add: list_all2_append list_all2_lengthD)
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  1646
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1647
lemma list_all2_conv_all_nth:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1648
"list_all2 P xs ys =
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1649
(length xs = length ys \<and> (\<forall>i < length xs. P (xs!i) (ys!i)))"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1650
by (force simp add: list_all2_def set_zip)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1651
13883
0451e0fb3f22 Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents: 13863
diff changeset
  1652
lemma list_all2_trans:
0451e0fb3f22 Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents: 13863
diff changeset
  1653
  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
  1654
  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
  1655
        (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
  1656
proof (induct as)
0451e0fb3f22 Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents: 13863
diff changeset
  1657
  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
  1658
  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
  1659
  proof (induct bs)
0451e0fb3f22 Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents: 13863
diff changeset
  1660
    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
  1661
    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
  1662
      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
  1663
  qed simp
0451e0fb3f22 Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents: 13863
diff changeset
  1664
qed simp
0451e0fb3f22 Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents: 13863
diff changeset
  1665
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  1666
lemma list_all2_all_nthI [intro?]:
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  1667
  "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
  1668
by (simp add: list_all2_conv_all_nth)
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  1669
14395
cc96cc06abf9 new theorem
paulson
parents: 14388
diff changeset
  1670
lemma list_all2I:
cc96cc06abf9 new theorem
paulson
parents: 14388
diff changeset
  1671
  "\<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
  1672
by (simp add: list_all2_def)
14395
cc96cc06abf9 new theorem
paulson
parents: 14388
diff changeset
  1673
14328
fd063037fdf5 list_all2_nthD no good as [intro?]
kleing
parents: 14327
diff changeset
  1674
lemma list_all2_nthD:
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  1675
  "\<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
  1676
by (simp add: list_all2_conv_all_nth)
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  1677
14302
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1678
lemma list_all2_nthD2:
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1679
  "\<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
  1680
by (frule list_all2_lengthD) (auto intro: list_all2_nthD)
14302
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1681
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  1682
lemma list_all2_map1: 
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  1683
  "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
  1684
by (simp add: list_all2_conv_all_nth)
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  1685
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  1686
lemma list_all2_map2: 
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  1687
  "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
  1688
by (auto simp add: list_all2_conv_all_nth)
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  1689
14316
91b897b9a2dc added some [intro?] and [trans] for list_all2 lemmas
kleing
parents: 14302
diff changeset
  1690
lemma list_all2_refl [intro?]:
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  1691
  "(\<And>x. P x x) \<Longrightarrow> list_all2 P xs xs"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  1692
by (simp add: list_all2_conv_all_nth)
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  1693
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  1694
lemma list_all2_update_cong:
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  1695
  "\<lbrakk> i<size xs; list_all2 P xs ys; P x y \<rbrakk> \<Longrightarrow> list_all2 P (xs[i:=x]) (ys[i:=y])"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  1696
by (simp add: list_all2_conv_all_nth nth_list_update)
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  1697
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  1698
lemma list_all2_update_cong2:
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  1699
  "\<lbrakk>list_all2 P xs ys; P x y; i < length ys\<rbrakk> \<Longrightarrow> list_all2 P (xs[i:=x]) (ys[i:=y])"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  1700
by (simp add: list_all2_lengthD list_all2_update_cong)
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  1701
14302
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1702
lemma list_all2_takeI [simp,intro?]:
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1703
  "\<And>n ys. list_all2 P xs ys \<Longrightarrow> list_all2 P (take n xs) (take n ys)"
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1704
  apply (induct xs)
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1705
   apply simp
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1706
  apply (clarsimp simp add: list_all2_Cons1)
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1707
  apply (case_tac n)
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1708
  apply auto
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1709
  done
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1710
6c24235e8d5d *** empty log message ***
nipkow
parents: 14300
diff changeset
  1711
lemma list_all2_dropI [simp,intro?]:
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  1712
  "\<And>n bs. list_all2 P as bs \<Longrightarrow> list_all2 P (drop n as) (drop n bs)"
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1713
  apply (induct as, simp)
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  1714
  apply (clarsimp simp add: list_all2_Cons1)
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1715
  apply (case_tac n, simp, simp)
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  1716
  done
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  1717
14327
9cd4dea593e3 list_all2_mono should not be [trans]
kleing
parents: 14316
diff changeset
  1718
lemma list_all2_mono [intro?]:
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  1719
  "\<And>y. list_all2 P x y \<Longrightarrow> (\<And>x y. P x y \<Longrightarrow> Q x y) \<Longrightarrow> list_all2 Q x y"
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1720
  apply (induct x, simp)
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1721
  apply (case_tac y, auto)
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  1722
  done
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  1723
22551
e52f5400e331 paraphrasing equality
haftmann
parents: 22539
diff changeset
  1724
lemma list_all2_eq:
e52f5400e331 paraphrasing equality
haftmann
parents: 22539
diff changeset
  1725
  "xs = ys \<longleftrightarrow> list_all2 (op =) xs ys"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  1726
by (induct xs ys rule: list_induct2') auto
22551
e52f5400e331 paraphrasing equality
haftmann
parents: 22539
diff changeset
  1727
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1728
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15307
diff changeset
  1729
subsubsection {* @{text foldl} and @{text foldr} *}
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1730
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1731
lemma foldl_append [simp]:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1732
"!!a. foldl f a (xs @ ys) = foldl f (foldl f a xs) ys"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1733
by (induct xs) auto
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1734
14402
4201e1916482 moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents: 14395
diff changeset
  1735
lemma foldr_append[simp]: "foldr f (xs @ ys) a = foldr f xs (foldr f ys a)"
4201e1916482 moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents: 14395
diff changeset
  1736
by (induct xs) auto
4201e1916482 moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents: 14395
diff changeset
  1737
23096
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1738
lemma foldr_map: "foldr g (map f xs) a = foldr (g o f) xs a"
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1739
by(induct xs) simp_all
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1740
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1741
lemma foldl_map: "foldl g a (map f xs) = foldl (%a x. g a (f x)) a xs"
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1742
by(induct xs arbitrary:a) simp_all
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1743
19770
be5c23ebe1eb HOL/Tools/function_package: Added support for mutual recursive definitions.
krauss
parents: 19623
diff changeset
  1744
lemma foldl_cong [fundef_cong, recdef_cong]:
18336
1a2e30b37ed3 Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents: 18049
diff changeset
  1745
  "[| a = b; l = k; !!a x. x : set l ==> f a x = g a x |] 
1a2e30b37ed3 Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents: 18049
diff changeset
  1746
  ==> foldl f a l = foldl g b k"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  1747
by (induct k arbitrary: a b l) simp_all
18336
1a2e30b37ed3 Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents: 18049
diff changeset
  1748
19770
be5c23ebe1eb HOL/Tools/function_package: Added support for mutual recursive definitions.
krauss
parents: 19623
diff changeset
  1749
lemma foldr_cong [fundef_cong, recdef_cong]:
18336
1a2e30b37ed3 Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents: 18049
diff changeset
  1750
  "[| a = b; l = k; !!a x. x : set l ==> f x a = g x a |] 
1a2e30b37ed3 Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents: 18049
diff changeset
  1751
  ==> foldr f l a = foldr g k b"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  1752
by (induct k arbitrary: a b l) simp_all
18336
1a2e30b37ed3 Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents: 18049
diff changeset
  1753
23096
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1754
text{* The ``First Duality Theorem'' in Bird \& Wadler: *}
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1755
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1756
lemma foldl_foldr1_lemma:
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1757
 "foldl op + a xs = a + foldr op + xs (0\<Colon>'a::monoid_add)"
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1758
by (induct xs arbitrary: a) (auto simp:add_assoc)
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1759
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1760
corollary foldl_foldr1:
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1761
 "foldl op + 0 xs = foldr op + xs (0\<Colon>'a::monoid_add)"
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1762
by (simp add:foldl_foldr1_lemma)
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1763
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1764
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1765
text{* The ``Third Duality Theorem'' in Bird \& Wadler: *}
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1766
14402
4201e1916482 moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents: 14395
diff changeset
  1767
lemma foldr_foldl: "foldr f xs a = foldl (%x y. f y x) a (rev xs)"
4201e1916482 moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents: 14395
diff changeset
  1768
by (induct xs) auto
4201e1916482 moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents: 14395
diff changeset
  1769
4201e1916482 moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents: 14395
diff changeset
  1770
lemma foldl_foldr: "foldl f a xs = foldr (%x y. f y x) (rev xs) a"
4201e1916482 moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents: 14395
diff changeset
  1771
by (simp add: foldr_foldl [of "%x y. f y x" "rev xs"])
4201e1916482 moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents: 14395
diff changeset
  1772
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1773
text {*
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1774
Note: @{text "n \<le> foldl (op +) n ns"} looks simpler, but is more
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1775
difficult to use because it requires an additional transitivity step.
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1776
*}
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1777
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1778
lemma start_le_sum: "!!n::nat. m <= n ==> m <= foldl (op +) n ns"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1779
by (induct ns) auto
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1780
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1781
lemma elem_le_sum: "!!n::nat. n : set ns ==> n <= foldl (op +) 0 ns"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1782
by (force intro: start_le_sum simp add: in_set_conv_decomp)
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1783
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1784
lemma sum_eq_0_conv [iff]:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1785
"!!m::nat. (foldl (op +) m ns = 0) = (m = 0 \<and> (\<forall>n \<in> set ns. n = 0))"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1786
by (induct ns) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1787
23096
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1788
subsubsection {* List summation: @{const listsum} and @{text"\<Sum>"}*}
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1789
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1790
lemma listsum_foldr:
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1791
 "listsum xs = foldr (op +) xs 0"
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1792
by(induct xs) auto
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1793
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1794
(* for efficient code generation *)
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1795
lemma listsum[code]: "listsum xs = foldl (op +) 0 xs"
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1796
by(simp add:listsum_foldr foldl_foldr1)
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1797
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1798
text{* Some syntactic sugar for summing a function over a list: *}
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1799
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1800
syntax
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1801
  "_listsum" :: "pttrn => 'a list => 'b => 'b"    ("(3SUM _<-_. _)" [0, 51, 10] 10)
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1802
syntax (xsymbols)
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1803
  "_listsum" :: "pttrn => 'a list => 'b => 'b"    ("(3\<Sum>_\<leftarrow>_. _)" [0, 51, 10] 10)
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1804
syntax (HTML output)
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1805
  "_listsum" :: "pttrn => 'a list => 'b => 'b"    ("(3\<Sum>_\<leftarrow>_. _)" [0, 51, 10] 10)
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1806
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1807
translations -- {* Beware of argument permutation! *}
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1808
  "SUM x<-xs. b" == "CONST listsum (map (%x. b) xs)"
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1809
  "\<Sum>x\<leftarrow>xs. b" == "CONST listsum (map (%x. b) xs)"
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1810
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1811
lemma listsum_0 [simp]: "(\<Sum>x\<leftarrow>xs. 0) = 0"
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1812
by (induct xs) simp_all
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1813
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1814
text{* For non-Abelian groups @{text xs} needs to be reversed on one side: *}
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1815
lemma uminus_listsum_map:
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1816
 "- listsum (map f xs) = (listsum (map (uminus o f) xs) :: 'a::ab_group_add)"
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1817
by(induct xs) simp_all
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  1818
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1819
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15307
diff changeset
  1820
subsubsection {* @{text upto} *}
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1821
17090
603f23d71ada small mods to code lemmas
nipkow
parents: 17086
diff changeset
  1822
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
  1823
-- {* simp does not terminate! *}
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1824
by (induct j) auto
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1825
15425
6356d2523f73 [ .. (] -> [ ..< ]
nipkow
parents: 15392
diff changeset
  1826
lemma upt_conv_Nil [simp]: "j <= i ==> [i..<j] = []"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1827
by (subst upt_rec) simp
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1828
15425
6356d2523f73 [ .. (] -> [ ..< ]
nipkow
parents: 15392
diff changeset
  1829
lemma upt_eq_Nil_conv[simp]: "([i..<j] = []) = (j = 0 \<or> j <= i)"
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1830
by(induct j)simp_all
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1831
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1832
lemma upt_eq_Cons_conv:
15425
6356d2523f73 [ .. (] -> [ ..< ]
nipkow
parents: 15392
diff changeset
  1833
 "!!x xs. ([i..<j] = x#xs) = (i < j & i = x & [i+1..<j] = xs)"
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1834
apply(induct j)
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1835
 apply simp
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1836
apply(clarsimp simp add: append_eq_Cons_conv)
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1837
apply arith
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1838
done
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  1839
15425
6356d2523f73 [ .. (] -> [ ..< ]
nipkow
parents: 15392
diff changeset
  1840
lemma upt_Suc_append: "i <= j ==> [i..<(Suc j)] = [i..<j]@[j]"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1841
-- {* Only needed if @{text upt_Suc} is deleted from the simpset. *}
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1842
by simp
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1843
15425
6356d2523f73 [ .. (] -> [ ..< ]
nipkow
parents: 15392
diff changeset
  1844
lemma upt_conv_Cons: "i < j ==> [i..<j] = i # [Suc i..<j]"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1845
apply(rule trans)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1846
apply(subst upt_rec)
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1847
 prefer 2 apply (rule refl, simp)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1848
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1849
15425
6356d2523f73 [ .. (] -> [ ..< ]
nipkow
parents: 15392
diff changeset
  1850
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
  1851
-- {* LOOPS as a simprule, since @{text "j <= j"}. *}
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1852
by (induct k) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1853
15425
6356d2523f73 [ .. (] -> [ ..< ]
nipkow
parents: 15392
diff changeset
  1854
lemma length_upt [simp]: "length [i..<j] = j - i"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1855
by (induct j) (auto simp add: Suc_diff_le)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1856
15425
6356d2523f73 [ .. (] -> [ ..< ]
nipkow
parents: 15392
diff changeset
  1857
lemma nth_upt [simp]: "i + k < j ==> [i..<j] ! k = i + k"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1858
apply (induct j)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1859
apply (auto simp add: less_Suc_eq nth_append split: nat_diff_split)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1860
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1861
17906
719364f5179b added 2 lemmas
nipkow
parents: 17877
diff changeset
  1862
719364f5179b added 2 lemmas
nipkow
parents: 17877
diff changeset
  1863
lemma hd_upt[simp]: "i < j \<Longrightarrow> hd[i..<j] = i"
719364f5179b added 2 lemmas
nipkow
parents: 17877
diff changeset
  1864
by(simp add:upt_conv_Cons)
719364f5179b added 2 lemmas
nipkow
parents: 17877
diff changeset
  1865
719364f5179b added 2 lemmas
nipkow
parents: 17877
diff changeset
  1866
lemma last_upt[simp]: "i < j \<Longrightarrow> last[i..<j] = j - 1"
719364f5179b added 2 lemmas
nipkow
parents: 17877
diff changeset
  1867
apply(cases j)
719364f5179b added 2 lemmas
nipkow
parents: 17877
diff changeset
  1868
 apply simp
719364f5179b added 2 lemmas
nipkow
parents: 17877
diff changeset
  1869
by(simp add:upt_Suc_append)
719364f5179b added 2 lemmas
nipkow
parents: 17877
diff changeset
  1870
15425
6356d2523f73 [ .. (] -> [ ..< ]
nipkow
parents: 15392
diff changeset
  1871
lemma take_upt [simp]: "!!i. i+m <= n ==> take m [i..<n] = [i..<i+m]"
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1872
apply (induct m, simp)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1873
apply (subst upt_rec)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1874
apply (rule sym)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1875
apply (subst upt_rec)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1876
apply (simp del: upt.simps)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1877
done
3507
157be29ad5ba Improved length = size translation.
nipkow
parents: 3465
diff changeset
  1878
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1879
lemma drop_upt[simp]: "drop m [i..<j] = [i+m..<j]"
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1880
apply(induct j)
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1881
apply auto
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1882
done
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1883
15425
6356d2523f73 [ .. (] -> [ ..< ]
nipkow
parents: 15392
diff changeset
  1884
lemma map_Suc_upt: "map Suc [m..<n] = [Suc m..n]"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1885
by (induct n) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1886
15425
6356d2523f73 [ .. (] -> [ ..< ]
nipkow
parents: 15392
diff changeset
  1887
lemma nth_map_upt: "!!i. i < n-m ==> (map f [m..<n]) ! i = f(m+i)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1888
apply (induct n m rule: diff_induct)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1889
prefer 3 apply (subst map_Suc_upt[symmetric])
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1890
apply (auto simp add: less_diff_conv nth_upt)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1891
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1892
13883
0451e0fb3f22 Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents: 13863
diff changeset
  1893
lemma nth_take_lemma:
0451e0fb3f22 Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents: 13863
diff changeset
  1894
  "!!xs ys. k <= length xs ==> k <= length ys ==>
0451e0fb3f22 Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents: 13863
diff changeset
  1895
     (!!i. i < k --> xs!i = ys!i) ==> take k xs = take k ys"
0451e0fb3f22 Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents: 13863
diff changeset
  1896
apply (atomize, induct k)
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1897
apply (simp_all add: less_Suc_eq_0_disj all_conj_distrib, clarify)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1898
txt {* Both lists must be non-empty *}
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1899
apply (case_tac xs, simp)
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1900
apply (case_tac ys, clarify)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1901
 apply (simp (no_asm_use))
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1902
apply clarify
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1903
txt {* prenexing's needed, not miniscoping *}
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1904
apply (simp (no_asm_use) add: all_simps [symmetric] del: all_simps)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1905
apply blast
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1906
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1907
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1908
lemma nth_equalityI:
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1909
 "[| length xs = length ys; ALL i < length xs. xs!i = ys!i |] ==> xs = ys"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1910
apply (frule nth_take_lemma [OF le_refl eq_imp_le])
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1911
apply (simp_all add: take_all)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1912
done
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1913
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  1914
(* needs nth_equalityI *)
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  1915
lemma list_all2_antisym:
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  1916
  "\<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
  1917
  \<Longrightarrow> xs = ys"
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  1918
  apply (simp add: list_all2_conv_all_nth) 
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  1919
  apply (rule nth_equalityI, blast, simp)
13863
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  1920
  done
ec901a432ea1 more about list_all2
kleing
parents: 13737
diff changeset
  1921
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1922
lemma take_equalityI: "(\<forall>i. take i xs = take i ys) ==> xs = ys"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1923
-- {* The famous take-lemma. *}
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1924
apply (drule_tac x = "max (length xs) (length ys)" in spec)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1925
apply (simp add: le_max_iff_disj take_all)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1926
done
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1927
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1928
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  1929
lemma take_Cons':
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  1930
     "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
  1931
by (cases n) simp_all
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  1932
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  1933
lemma drop_Cons':
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  1934
     "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
  1935
by (cases n) simp_all
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  1936
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  1937
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
  1938
by (cases n) simp_all
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  1939
18622
4524643feecc theorems need names
paulson
parents: 18490
diff changeset
  1940
lemmas take_Cons_number_of = take_Cons'[of "number_of v",standard]
4524643feecc theorems need names
paulson
parents: 18490
diff changeset
  1941
lemmas drop_Cons_number_of = drop_Cons'[of "number_of v",standard]
4524643feecc theorems need names
paulson
parents: 18490
diff changeset
  1942
lemmas nth_Cons_number_of = nth_Cons'[of _ _ "number_of v",standard]
4524643feecc theorems need names
paulson
parents: 18490
diff changeset
  1943
4524643feecc theorems need names
paulson
parents: 18490
diff changeset
  1944
declare take_Cons_number_of [simp] 
4524643feecc theorems need names
paulson
parents: 18490
diff changeset
  1945
        drop_Cons_number_of [simp] 
4524643feecc theorems need names
paulson
parents: 18490
diff changeset
  1946
        nth_Cons_number_of [simp] 
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  1947
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  1948
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15307
diff changeset
  1949
subsubsection {* @{text "distinct"} and @{text remdups} *}
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1950
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1951
lemma distinct_append [simp]:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1952
"distinct (xs @ ys) = (distinct xs \<and> distinct ys \<and> set xs \<inter> set ys = {})"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1953
by (induct xs) auto
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1954
15305
0bd9eedaa301 added lemmas
nipkow
parents: 15304
diff changeset
  1955
lemma distinct_rev[simp]: "distinct(rev xs) = distinct xs"
0bd9eedaa301 added lemmas
nipkow
parents: 15304
diff changeset
  1956
by(induct xs) auto
0bd9eedaa301 added lemmas
nipkow
parents: 15304
diff changeset
  1957
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1958
lemma set_remdups [simp]: "set (remdups xs) = set xs"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1959
by (induct xs) (auto simp add: insert_absorb)
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1960
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1961
lemma distinct_remdups [iff]: "distinct (remdups xs)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1962
by (induct xs) auto
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1963
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 15064
diff changeset
  1964
lemma remdups_eq_nil_iff [simp]: "(remdups x = []) = (x = [])"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  1965
by (induct x, auto) 
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 15064
diff changeset
  1966
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 15064
diff changeset
  1967
lemma remdups_eq_nil_right_iff [simp]: "([] = remdups x) = (x = [])"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  1968
by (induct x, auto)
15072
4861bf6af0b4 new material courtesy of Norbert Voelker
paulson
parents: 15064
diff changeset
  1969
15245
5a21d9a8f14b Added a few lemmas
nipkow
parents: 15236
diff changeset
  1970
lemma length_remdups_leq[iff]: "length(remdups xs) <= length xs"
5a21d9a8f14b Added a few lemmas
nipkow
parents: 15236
diff changeset
  1971
by (induct xs) auto
5a21d9a8f14b Added a few lemmas
nipkow
parents: 15236
diff changeset
  1972
5a21d9a8f14b Added a few lemmas
nipkow
parents: 15236
diff changeset
  1973
lemma length_remdups_eq[iff]:
5a21d9a8f14b Added a few lemmas
nipkow
parents: 15236
diff changeset
  1974
  "(length (remdups xs) = length xs) = (remdups xs = xs)"
5a21d9a8f14b Added a few lemmas
nipkow
parents: 15236
diff changeset
  1975
apply(induct xs)
5a21d9a8f14b Added a few lemmas
nipkow
parents: 15236
diff changeset
  1976
 apply auto
5a21d9a8f14b Added a few lemmas
nipkow
parents: 15236
diff changeset
  1977
apply(subgoal_tac "length (remdups xs) <= length xs")
5a21d9a8f14b Added a few lemmas
nipkow
parents: 15236
diff changeset
  1978
 apply arith
5a21d9a8f14b Added a few lemmas
nipkow
parents: 15236
diff changeset
  1979
apply(rule length_remdups_leq)
5a21d9a8f14b Added a few lemmas
nipkow
parents: 15236
diff changeset
  1980
done
5a21d9a8f14b Added a few lemmas
nipkow
parents: 15236
diff changeset
  1981
18490
434e34392c40 new lemmas
nipkow
parents: 18451
diff changeset
  1982
434e34392c40 new lemmas
nipkow
parents: 18451
diff changeset
  1983
lemma distinct_map:
434e34392c40 new lemmas
nipkow
parents: 18451
diff changeset
  1984
  "distinct(map f xs) = (distinct xs & inj_on f (set xs))"
434e34392c40 new lemmas
nipkow
parents: 18451
diff changeset
  1985
by (induct xs) auto
434e34392c40 new lemmas
nipkow
parents: 18451
diff changeset
  1986
434e34392c40 new lemmas
nipkow
parents: 18451
diff changeset
  1987
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  1988
lemma distinct_filter [simp]: "distinct xs ==> distinct (filter P xs)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  1989
by (induct xs) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  1990
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1991
lemma distinct_upt[simp]: "distinct[i..<j]"
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1992
by (induct j) auto
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1993
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1994
lemma distinct_take[simp]: "\<And>i. distinct xs \<Longrightarrow> distinct (take i xs)"
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1995
apply(induct xs)
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1996
 apply simp
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1997
apply (case_tac i)
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1998
 apply simp_all
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  1999
apply(blast dest:in_set_takeD)
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2000
done
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2001
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2002
lemma distinct_drop[simp]: "\<And>i. distinct xs \<Longrightarrow> distinct (drop i xs)"
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2003
apply(induct xs)
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2004
 apply simp
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2005
apply (case_tac i)
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2006
 apply simp_all
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2007
done
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2008
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2009
lemma distinct_list_update:
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2010
assumes d: "distinct xs" and a: "a \<notin> set xs - {xs!i}"
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2011
shows "distinct (xs[i:=a])"
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2012
proof (cases "i < length xs")
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2013
  case True
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2014
  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
  2015
    apply (drule_tac id_take_nth_drop) by simp
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2016
  with d True show ?thesis
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2017
    apply (simp add: upd_conv_take_nth_drop)
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2018
    apply (drule subst [OF id_take_nth_drop]) apply assumption
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2019
    apply simp apply (cases "a = xs!i") apply simp by blast
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2020
next
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2021
  case False with d show ?thesis by auto
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2022
qed
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2023
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2024
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2025
text {* It is best to avoid this indexed version of distinct, but
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2026
sometimes it is useful. *}
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2027
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2028
lemma distinct_conv_nth:
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2029
"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
  2030
apply (induct xs, simp, simp)
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  2031
apply (rule iffI, clarsimp)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2032
 apply (case_tac i)
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  2033
apply (case_tac j, simp)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2034
apply (simp add: set_conv_nth)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2035
 apply (case_tac j)
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  2036
apply (clarsimp simp add: set_conv_nth, simp)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2037
apply (rule conjI)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2038
 apply (clarsimp simp add: set_conv_nth)
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2039
 apply (erule_tac x = 0 in allE, simp)
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  2040
 apply (erule_tac x = "Suc i" in allE, simp, clarsimp)
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2041
apply (erule_tac x = "Suc i" in allE, simp)
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  2042
apply (erule_tac x = "Suc j" in allE, simp)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2043
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2044
18490
434e34392c40 new lemmas
nipkow
parents: 18451
diff changeset
  2045
lemma nth_eq_iff_index_eq:
434e34392c40 new lemmas
nipkow
parents: 18451
diff changeset
  2046
 "\<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
  2047
by(auto simp: distinct_conv_nth)
434e34392c40 new lemmas
nipkow
parents: 18451
diff changeset
  2048
15110
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  2049
lemma distinct_card: "distinct xs ==> card (set xs) = size xs"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  2050
by (induct xs) auto
14388
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  2051
15110
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  2052
lemma card_distinct: "card (set xs) = size xs ==> distinct xs"
14388
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  2053
proof (induct xs)
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  2054
  case Nil thus ?case by simp
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  2055
next
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  2056
  case (Cons x xs)
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  2057
  show ?case
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  2058
  proof (cases "x \<in> set xs")
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  2059
    case False with Cons show ?thesis by simp
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  2060
  next
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  2061
    case True with Cons.prems
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  2062
    have "card (set xs) = Suc (length xs)" 
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  2063
      by (simp add: card_insert_if split: split_if_asm)
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  2064
    moreover have "card (set xs) \<le> length xs" by (rule card_length)
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  2065
    ultimately have False by simp
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  2066
    thus ?thesis ..
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  2067
  qed
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  2068
qed
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  2069
18490
434e34392c40 new lemmas
nipkow
parents: 18451
diff changeset
  2070
434e34392c40 new lemmas
nipkow
parents: 18451
diff changeset
  2071
lemma length_remdups_concat:
434e34392c40 new lemmas
nipkow
parents: 18451
diff changeset
  2072
 "length(remdups(concat xss)) = card(\<Union>xs \<in> set xss. set xs)"
24308
700e745994c1 removed set_concat_map and improved set_concat
nipkow
parents: 24286
diff changeset
  2073
by(simp add: set_concat distinct_card[symmetric])
17906
719364f5179b added 2 lemmas
nipkow
parents: 17877
diff changeset
  2074
719364f5179b added 2 lemmas
nipkow
parents: 17877
diff changeset
  2075
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15307
diff changeset
  2076
subsubsection {* @{text remove1} *}
15110
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  2077
18049
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  2078
lemma remove1_append:
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  2079
  "remove1 x (xs @ ys) =
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  2080
  (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
  2081
by (induct xs) auto
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  2082
23479
10adbdcdc65b new lemmas
nipkow
parents: 23388
diff changeset
  2083
lemma in_set_remove1[simp]:
10adbdcdc65b new lemmas
nipkow
parents: 23388
diff changeset
  2084
  "a \<noteq> b \<Longrightarrow> a : set(remove1 b xs) = (a : set xs)"
10adbdcdc65b new lemmas
nipkow
parents: 23388
diff changeset
  2085
apply (induct xs)
10adbdcdc65b new lemmas
nipkow
parents: 23388
diff changeset
  2086
apply auto
10adbdcdc65b new lemmas
nipkow
parents: 23388
diff changeset
  2087
done
10adbdcdc65b new lemmas
nipkow
parents: 23388
diff changeset
  2088
15110
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  2089
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
  2090
apply(induct xs)
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  2091
 apply simp
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  2092
apply simp
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  2093
apply blast
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  2094
done
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  2095
17724
e969fc0a4925 simprules need names
paulson
parents: 17629
diff changeset
  2096
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
  2097
apply(induct xs)
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  2098
 apply simp
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  2099
apply simp
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  2100
apply blast
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  2101
done
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  2102
23479
10adbdcdc65b new lemmas
nipkow
parents: 23388
diff changeset
  2103
lemma length_remove1:
10adbdcdc65b new lemmas
nipkow
parents: 23388
diff changeset
  2104
  "length(remove1 x xs) = (if x : set xs then length xs - 1 else length xs)"
10adbdcdc65b new lemmas
nipkow
parents: 23388
diff changeset
  2105
apply (induct xs)
10adbdcdc65b new lemmas
nipkow
parents: 23388
diff changeset
  2106
 apply (auto dest!:length_pos_if_in_set)
10adbdcdc65b new lemmas
nipkow
parents: 23388
diff changeset
  2107
done
10adbdcdc65b new lemmas
nipkow
parents: 23388
diff changeset
  2108
18049
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  2109
lemma remove1_filter_not[simp]:
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  2110
  "\<not> P x \<Longrightarrow> remove1 x (filter P xs) = filter P xs"
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  2111
by(induct xs) auto
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  2112
15110
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  2113
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
  2114
apply(insert set_remove1_subset)
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  2115
apply fast
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  2116
done
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  2117
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  2118
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
  2119
by (induct xs) simp_all
78b5636eabc7 Added a number of new thms and the new function remove1
nipkow
parents: 15072
diff changeset
  2120
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2121
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15307
diff changeset
  2122
subsubsection {* @{text replicate} *}
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2123
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2124
lemma length_replicate [simp]: "length (replicate n x) = n"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2125
by (induct n) auto
13124
6e1decd8a7a9 new thm distinct_conv_nth
nipkow
parents: 13122
diff changeset
  2126
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2127
lemma map_replicate [simp]: "map f (replicate n x) = replicate n (f x)"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2128
by (induct n) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2129
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2130
lemma replicate_app_Cons_same:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2131
"(replicate n x) @ (x # xs) = x # replicate n x @ xs"
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2132
by (induct n) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2133
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2134
lemma rev_replicate [simp]: "rev (replicate n x) = replicate n x"
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  2135
apply (induct n, simp)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2136
apply (simp add: replicate_app_Cons_same)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2137
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2138
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2139
lemma replicate_add: "replicate (n + m) x = replicate n x @ replicate m x"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2140
by (induct n) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2141
16397
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  2142
text{* Courtesy of Matthias Daum: *}
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  2143
lemma append_replicate_commute:
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  2144
  "replicate n x @ replicate k x = replicate k x @ replicate n x"
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  2145
apply (simp add: replicate_add [THEN sym])
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  2146
apply (simp add: add_commute)
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  2147
done
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  2148
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2149
lemma hd_replicate [simp]: "n \<noteq> 0 ==> hd (replicate n x) = x"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2150
by (induct n) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2151
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2152
lemma tl_replicate [simp]: "n \<noteq> 0 ==> tl (replicate n x) = replicate (n - 1) x"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2153
by (induct n) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2154
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2155
lemma last_replicate [simp]: "n \<noteq> 0 ==> last (replicate n x) = x"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2156
by (atomize (full), induct n) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2157
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2158
lemma nth_replicate[simp]: "!!i. i < n ==> (replicate n x)!i = x"
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  2159
apply (induct n, simp)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2160
apply (simp add: nth_Cons split: nat.split)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2161
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2162
16397
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  2163
text{* Courtesy of Matthias Daum (2 lemmas): *}
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  2164
lemma take_replicate[simp]: "take i (replicate k x) = replicate (min i k) x"
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  2165
apply (case_tac "k \<le> i")
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  2166
 apply  (simp add: min_def)
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  2167
apply (drule not_leE)
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  2168
apply (simp add: min_def)
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  2169
apply (subgoal_tac "replicate k x = replicate i x @ replicate (k - i) x")
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  2170
 apply  simp
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  2171
apply (simp add: replicate_add [symmetric])
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  2172
done
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  2173
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  2174
lemma drop_replicate[simp]: "!!i. drop i (replicate k x) = replicate (k-i) x"
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  2175
apply (induct k)
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  2176
 apply simp
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  2177
apply clarsimp
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  2178
apply (case_tac i)
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  2179
 apply simp
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  2180
apply clarsimp
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  2181
done
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  2182
c047008f88d4 added lemmas
nipkow
parents: 15870
diff changeset
  2183
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2184
lemma set_replicate_Suc: "set (replicate (Suc n) x) = {x}"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2185
by (induct n) auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2186
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2187
lemma set_replicate [simp]: "n \<noteq> 0 ==> set (replicate n x) = {x}"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2188
by (fast dest!: not0_implies_Suc intro!: set_replicate_Suc)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2189
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2190
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
  2191
by auto
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2192
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2193
lemma in_set_replicateD: "x : set (replicate n y) ==> x = y"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2194
by (simp add: set_replicate_conv_if split: split_if_asm)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2195
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2196
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15307
diff changeset
  2197
subsubsection{*@{text rotate1} and @{text rotate}*}
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2198
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2199
lemma rotate_simps[simp]: "rotate1 [] = [] \<and> rotate1 (x#xs) = xs @ [x]"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2200
by(simp add:rotate1_def)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2201
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2202
lemma rotate0[simp]: "rotate 0 = id"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2203
by(simp add:rotate_def)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2204
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2205
lemma rotate_Suc[simp]: "rotate (Suc n) xs = rotate1(rotate n xs)"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2206
by(simp add:rotate_def)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2207
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2208
lemma rotate_add:
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2209
  "rotate (m+n) = rotate m o rotate n"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2210
by(simp add:rotate_def funpow_add)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2211
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2212
lemma rotate_rotate: "rotate m (rotate n xs) = rotate (m+n) xs"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2213
by(simp add:rotate_add)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2214
18049
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  2215
lemma rotate1_rotate_swap: "rotate1 (rotate n xs) = rotate n (rotate1 xs)"
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  2216
by(simp add:rotate_def funpow_swap1)
156bba334c12 A few new lemmas
nipkow
parents: 17956
diff changeset
  2217
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2218
lemma rotate1_length01[simp]: "length xs <= 1 \<Longrightarrow> rotate1 xs = xs"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2219
by(cases xs) simp_all
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2220
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2221
lemma rotate_length01[simp]: "length xs <= 1 \<Longrightarrow> rotate n xs = xs"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2222
apply(induct n)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2223
 apply simp
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2224
apply (simp add:rotate_def)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2225
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2226
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2227
lemma rotate1_hd_tl: "xs \<noteq> [] \<Longrightarrow> rotate1 xs = tl xs @ [hd xs]"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2228
by(simp add:rotate1_def split:list.split)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2229
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2230
lemma rotate_drop_take:
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2231
  "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
  2232
apply(induct n)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2233
 apply simp
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2234
apply(simp add:rotate_def)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2235
apply(cases "xs = []")
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2236
 apply (simp)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2237
apply(case_tac "n mod length xs = 0")
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2238
 apply(simp add:mod_Suc)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2239
 apply(simp add: rotate1_hd_tl drop_Suc take_Suc)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2240
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
  2241
                take_hd_drop linorder_not_le)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2242
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2243
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2244
lemma rotate_conv_mod: "rotate n xs = rotate (n mod length xs) xs"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2245
by(simp add:rotate_drop_take)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2246
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2247
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
  2248
by(simp add:rotate_drop_take)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2249
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2250
lemma length_rotate1[simp]: "length(rotate1 xs) = length xs"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2251
by(simp add:rotate1_def split:list.split)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2252
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2253
lemma length_rotate[simp]: "!!xs. length(rotate n xs) = length xs"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2254
by (induct n) (simp_all add:rotate_def)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2255
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2256
lemma distinct1_rotate[simp]: "distinct(rotate1 xs) = distinct xs"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2257
by(simp add:rotate1_def split:list.split) blast
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2258
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2259
lemma distinct_rotate[simp]: "distinct(rotate n xs) = distinct xs"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2260
by (induct n) (simp_all add:rotate_def)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2261
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2262
lemma rotate_map: "rotate n (map f xs) = map f (rotate n xs)"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2263
by(simp add:rotate_drop_take take_map drop_map)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2264
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2265
lemma set_rotate1[simp]: "set(rotate1 xs) = set xs"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2266
by(simp add:rotate1_def split:list.split)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2267
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2268
lemma set_rotate[simp]: "set(rotate n xs) = set xs"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2269
by (induct n) (simp_all add:rotate_def)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2270
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2271
lemma rotate1_is_Nil_conv[simp]: "(rotate1 xs = []) = (xs = [])"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2272
by(simp add:rotate1_def split:list.split)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2273
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2274
lemma rotate_is_Nil_conv[simp]: "(rotate n xs = []) = (xs = [])"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2275
by (induct n) (simp_all add:rotate_def)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2276
15439
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15426
diff changeset
  2277
lemma rotate_rev:
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15426
diff changeset
  2278
  "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
  2279
apply(simp add:rotate_drop_take rev_drop rev_take)
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15426
diff changeset
  2280
apply(cases "length xs = 0")
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15426
diff changeset
  2281
 apply simp
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15426
diff changeset
  2282
apply(cases "n mod length xs = 0")
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15426
diff changeset
  2283
 apply simp
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15426
diff changeset
  2284
apply(simp add:rotate_drop_take rev_drop rev_take)
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15426
diff changeset
  2285
done
71c0f98e31f1 made diff_less a simp rule
nipkow
parents: 15426
diff changeset
  2286
18423
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  2287
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
  2288
apply(simp add:rotate_drop_take hd_append hd_drop_conv_nth hd_conv_nth)
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  2289
apply(subgoal_tac "length xs \<noteq> 0")
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  2290
 prefer 2 apply simp
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  2291
using mod_less_divisor[of "length xs" n] by arith
d7859164447f new lemmas
nipkow
parents: 18336
diff changeset
  2292
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2293
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15307
diff changeset
  2294
subsubsection {* @{text sublist} --- a generalization of @{text nth} to sets *}
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2295
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2296
lemma sublist_empty [simp]: "sublist xs {} = []"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2297
by (auto simp add: sublist_def)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2298
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2299
lemma sublist_nil [simp]: "sublist [] A = []"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2300
by (auto simp add: sublist_def)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2301
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2302
lemma length_sublist:
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2303
  "length(sublist xs I) = card{i. i < length xs \<and> i : I}"
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2304
by(simp add: sublist_def length_filter_conv_card cong:conj_cong)
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2305
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2306
lemma sublist_shift_lemma_Suc:
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2307
  "!!is. map fst (filter (%p. P(Suc(snd p))) (zip xs is)) =
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2308
         map fst (filter (%p. P(snd p)) (zip xs (map Suc is)))"
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2309
apply(induct xs)
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2310
 apply simp
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2311
apply (case_tac "is")
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2312
 apply simp
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2313
apply simp
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2314
done
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2315
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2316
lemma sublist_shift_lemma:
23279
e39dd93161d9 tuned list comprehension, changed filter syntax from : to <-
nipkow
parents: 23246
diff changeset
  2317
     "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
  2318
      map fst [p<-zip xs [0..<length xs] . snd p + i : A]"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2319
by (induct xs rule: rev_induct) (simp_all add: add_commute)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2320
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2321
lemma sublist_append:
15168
33a08cfc3ae5 new functions for sets of lists
paulson
parents: 15140
diff changeset
  2322
     "sublist (l @ l') A = sublist l A @ sublist l' {j. j + length l : A}"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2323
apply (unfold sublist_def)
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  2324
apply (induct l' rule: rev_induct, simp)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2325
apply (simp add: upt_add_eq_append[of 0] zip_append sublist_shift_lemma)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2326
apply (simp add: add_commute)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2327
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2328
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2329
lemma sublist_Cons:
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2330
"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
  2331
apply (induct l rule: rev_induct)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2332
 apply (simp add: sublist_def)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2333
apply (simp del: append_Cons add: append_Cons[symmetric] sublist_append)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2334
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2335
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2336
lemma set_sublist: "!!I. set(sublist xs I) = {xs!i|i. i<size xs \<and> i \<in> I}"
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2337
apply(induct xs)
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2338
 apply simp
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2339
apply(auto simp add:sublist_Cons nth_Cons split:nat.split elim: lessE)
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2340
 apply(erule lessE)
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2341
  apply auto
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2342
apply(erule lessE)
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2343
apply auto
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2344
done
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2345
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2346
lemma set_sublist_subset: "set(sublist xs I) \<subseteq> set xs"
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2347
by(auto simp add:set_sublist)
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2348
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2349
lemma notin_set_sublistI[simp]: "x \<notin> set xs \<Longrightarrow> x \<notin> set(sublist xs I)"
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2350
by(auto simp add:set_sublist)
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2351
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2352
lemma in_set_sublistD: "x \<in> set(sublist xs I) \<Longrightarrow> x \<in> set xs"
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2353
by(auto simp add:set_sublist)
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2354
13142
1ebd8ed5a1a0 tuned document;
wenzelm
parents: 13124
diff changeset
  2355
lemma sublist_singleton [simp]: "sublist [x] A = (if 0 : A then [x] else [])"
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2356
by (simp add: sublist_Cons)
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2357
15281
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2358
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2359
lemma distinct_sublistI[simp]: "!!I. distinct xs \<Longrightarrow> distinct(sublist xs I)"
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2360
apply(induct xs)
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2361
 apply simp
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2362
apply(auto simp add:sublist_Cons)
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2363
done
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2364
bd4611956c7b More lemmas
nipkow
parents: 15251
diff changeset
  2365
15045
d59f7e2e18d3 Moved to new m<..<n syntax for set intervals.
nipkow
parents: 14981
diff changeset
  2366
lemma sublist_upt_eq_take [simp]: "sublist l {..<n} = take n l"
14208
144f45277d5a misc tidying
paulson
parents: 14187
diff changeset
  2367
apply (induct l rule: rev_induct, simp)
13145
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2368
apply (simp split: nat_diff_split add: sublist_append)
59bc43b51aa2 *** empty log message ***
nipkow
parents: 13142
diff changeset
  2369
done
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2370
17501
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2371
lemma filter_in_sublist: "\<And>s. distinct xs \<Longrightarrow>
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2372
  filter (%x. x \<in> set(sublist xs s)) xs = sublist xs s"
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2373
proof (induct xs)
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2374
  case Nil thus ?case by simp
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2375
next
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2376
  case (Cons a xs)
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2377
  moreover hence "!x. x: set xs \<longrightarrow> x \<noteq> a" by auto
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2378
  ultimately show ?case by(simp add: sublist_Cons cong:filter_cong)
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2379
qed
acbebb72e85a added a number of lemmas
nipkow
parents: 17090
diff changeset
  2380
13114
f2b00262bdfc converted;
wenzelm
parents: 12887
diff changeset
  2381
19390
6c7383f80ad1 Added function "splice"
nipkow
parents: 19363
diff changeset
  2382
subsubsection {* @{const splice} *}
6c7383f80ad1 Added function "splice"
nipkow
parents: 19363
diff changeset
  2383
19607
07eeb832f28d introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents: 19585
diff changeset
  2384
lemma splice_Nil2 [simp, code]:
19390
6c7383f80ad1 Added function "splice"
nipkow
parents: 19363
diff changeset
  2385
 "splice xs [] = xs"
6c7383f80ad1 Added function "splice"
nipkow
parents: 19363
diff changeset
  2386
by (cases xs) simp_all
6c7383f80ad1 Added function "splice"
nipkow
parents: 19363
diff changeset
  2387
19607
07eeb832f28d introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents: 19585
diff changeset
  2388
lemma splice_Cons_Cons [simp, code]:
19390
6c7383f80ad1 Added function "splice"
nipkow
parents: 19363
diff changeset
  2389
 "splice (x#xs) (y#ys) = x # y # splice xs ys"
6c7383f80ad1 Added function "splice"
nipkow
parents: 19363
diff changeset
  2390
by simp
6c7383f80ad1 Added function "splice"
nipkow
parents: 19363
diff changeset
  2391
19607
07eeb832f28d introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents: 19585
diff changeset
  2392
declare splice.simps(2) [simp del, code del]
19390
6c7383f80ad1 Added function "splice"
nipkow
parents: 19363
diff changeset
  2393
22793
dc13dfd588b2 new lemma splice_length
nipkow
parents: 22633
diff changeset
  2394
lemma length_splice[simp]: "!!ys. length(splice xs ys) = length xs + length ys"
dc13dfd588b2 new lemma splice_length
nipkow
parents: 22633
diff changeset
  2395
apply(induct xs) apply simp
dc13dfd588b2 new lemma splice_length
nipkow
parents: 22633
diff changeset
  2396
apply(case_tac ys)
dc13dfd588b2 new lemma splice_length
nipkow
parents: 22633
diff changeset
  2397
 apply auto
dc13dfd588b2 new lemma splice_length
nipkow
parents: 22633
diff changeset
  2398
done
dc13dfd588b2 new lemma splice_length
nipkow
parents: 22633
diff changeset
  2399
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15307
diff changeset
  2400
subsubsection {* @{text lists}: the list-forming operator over sets *}
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2401
23740
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  2402
inductive_set
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  2403
  lists :: "'a set => 'a list set"
23740
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  2404
  for A :: "'a set"
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  2405
where
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  2406
    Nil [intro!]: "[]: lists A"
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 24219
diff changeset
  2407
  | Cons [intro!,noatp]: "[| a: A;l: lists A|] ==> a#l : lists A"
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 24219
diff changeset
  2408
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 24219
diff changeset
  2409
inductive_cases listsE [elim!,noatp]: "x#l : lists A"
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 24219
diff changeset
  2410
inductive_cases listspE [elim!,noatp]: "listsp A (x # l)"
23740
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  2411
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  2412
lemma listsp_mono [mono]: "A \<le> B ==> listsp A \<le> listsp B"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  2413
by (clarify, erule listsp.induct, blast+)
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  2414
23740
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  2415
lemmas lists_mono = listsp_mono [to_set]
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  2416
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22262
diff changeset
  2417
lemma listsp_infI:
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22262
diff changeset
  2418
  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
  2419
by induct blast+
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2420
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22262
diff changeset
  2421
lemmas lists_IntI = listsp_infI [to_set]
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22262
diff changeset
  2422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22262
diff changeset
  2423
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
  2424
proof (rule mono_inf [where f=listsp, THEN order_antisym])
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  2425
  show "mono listsp" by (simp add: mono_def listsp_mono)
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22262
diff changeset
  2426
  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
  2427
qed
04f04408b99b lemmas about card (set xs)
kleing
parents: 14343
diff changeset
  2428
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22262
diff changeset
  2429
lemmas listsp_conj_eq [simp] = listsp_inf_eq [simplified inf_fun_eq inf_bool_eq]
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22262
diff changeset
  2430
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22262
diff changeset
  2431
lemmas lists_Int_eq [simp] = listsp_inf_eq [to_set]
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  2432
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  2433
lemma append_in_listsp_conv [iff]:
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  2434
     "(listsp A (xs @ ys)) = (listsp A xs \<and> listsp A ys)"
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2435
by (induct xs) auto
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2436
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  2437
lemmas append_in_lists_conv [iff] = append_in_listsp_conv [to_set]
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  2438
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  2439
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
  2440
-- {* eliminate @{text listsp} in favour of @{text set} *}
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2441
by (induct xs) auto
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2442
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  2443
lemmas in_lists_conv_set = in_listsp_conv_set [to_set]
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  2444
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 24219
diff changeset
  2445
lemma in_listspD [dest!,noatp]: "listsp A xs ==> \<forall>x\<in>set xs. A x"
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  2446
by (rule in_listsp_conv_set [THEN iffD1])
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  2447
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 24219
diff changeset
  2448
lemmas in_listsD [dest!,noatp] = in_listspD [to_set]
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 24219
diff changeset
  2449
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 24219
diff changeset
  2450
lemma in_listspI [intro!,noatp]: "\<forall>x\<in>set xs. A x ==> listsp A xs"
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  2451
by (rule in_listsp_conv_set [THEN iffD2])
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  2452
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 24219
diff changeset
  2453
lemmas in_listsI [intro!,noatp] = in_listspI [to_set]
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2454
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2455
lemma lists_UNIV [simp]: "lists UNIV = UNIV"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2456
by auto
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2457
17086
0eb0c9259dd7 added quite a few functions for code generation
nipkow
parents: 16998
diff changeset
  2458
0eb0c9259dd7 added quite a few functions for code generation
nipkow
parents: 16998
diff changeset
  2459
0eb0c9259dd7 added quite a few functions for code generation
nipkow
parents: 16998
diff changeset
  2460
subsubsection{* Inductive definition for membership *}
0eb0c9259dd7 added quite a few functions for code generation
nipkow
parents: 16998
diff changeset
  2461
23740
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  2462
inductive ListMem :: "'a \<Rightarrow> 'a list \<Rightarrow> bool"
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  2463
where
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  2464
    elem:  "ListMem x (x # xs)"
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  2465
  | insert:  "ListMem x xs \<Longrightarrow> ListMem x (y # xs)"
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  2466
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  2467
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
  2468
apply (rule iffI)
0eb0c9259dd7 added quite a few functions for code generation
nipkow
parents: 16998
diff changeset
  2469
 apply (induct set: ListMem)
0eb0c9259dd7 added quite a few functions for code generation
nipkow
parents: 16998
diff changeset
  2470
  apply auto
0eb0c9259dd7 added quite a few functions for code generation
nipkow
parents: 16998
diff changeset
  2471
apply (induct xs)
0eb0c9259dd7 added quite a few functions for code generation
nipkow
parents: 16998
diff changeset
  2472
 apply (auto intro: ListMem.intros)
0eb0c9259dd7 added quite a few functions for code generation
nipkow
parents: 16998
diff changeset
  2473
done
0eb0c9259dd7 added quite a few functions for code generation
nipkow
parents: 16998
diff changeset
  2474
0eb0c9259dd7 added quite a few functions for code generation
nipkow
parents: 16998
diff changeset
  2475
0eb0c9259dd7 added quite a few functions for code generation
nipkow
parents: 16998
diff changeset
  2476
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15307
diff changeset
  2477
subsubsection{*Lists as Cartesian products*}
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2478
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2479
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
  2480
@{term A} and tail drawn from @{term Xs}.*}
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2481
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2482
constdefs
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2483
  set_Cons :: "'a set \<Rightarrow> 'a list set \<Rightarrow> 'a list set"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2484
  "set_Cons A XS == {z. \<exists>x xs. z = x#xs & x \<in> A & xs \<in> XS}"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2485
17724
e969fc0a4925 simprules need names
paulson
parents: 17629
diff changeset
  2486
lemma set_Cons_sing_Nil [simp]: "set_Cons A {[]} = (%x. [x])`A"
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2487
by (auto simp add: set_Cons_def)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2488
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2489
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
  2490
with elements drawn from the corresponding element of the argument.*}
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2491
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2492
consts  listset :: "'a set list \<Rightarrow> 'a list set"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2493
primrec
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2494
   "listset []    = {[]}"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2495
   "listset(A#As) = set_Cons A (listset As)"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2496
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2497
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2498
subsection{*Relations on Lists*}
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2499
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2500
subsubsection {* Length Lexicographic Ordering *}
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2501
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2502
text{*These orderings preserve well-foundedness: shorter lists 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2503
  precede longer lists. These ordering are not used in dictionaries.*}
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2504
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2505
consts lexn :: "('a * 'a)set => nat => ('a list * 'a list)set"
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2506
        --{*The lexicographic ordering for lists of the specified length*}
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2507
primrec
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2508
  "lexn r 0 = {}"
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2509
  "lexn r (Suc n) =
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2510
    (prod_fun (%(x,xs). x#xs) (%(x,xs). x#xs) ` (r <*lex*> lexn r n)) Int
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2511
    {(xs,ys). length xs = Suc n \<and> length ys = Suc n}"
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2512
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2513
constdefs
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2514
  lex :: "('a \<times> 'a) set => ('a list \<times> 'a list) set"
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2515
    "lex r == \<Union>n. lexn r n"
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2516
        --{*Holds only between lists of the same length*}
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2517
15693
3a67e61c6e96 tuned Map, renamed lex stuff in List.
nipkow
parents: 15656
diff changeset
  2518
  lenlex :: "('a \<times> 'a) set => ('a list \<times> 'a list) set"
3a67e61c6e96 tuned Map, renamed lex stuff in List.
nipkow
parents: 15656
diff changeset
  2519
    "lenlex r == inv_image (less_than <*lex*> lex r) (%xs. (length xs, xs))"
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2520
        --{*Compares lists by their length and then lexicographically*}
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2521
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2522
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2523
lemma wf_lexn: "wf r ==> wf (lexn r n)"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2524
apply (induct n, simp, simp)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2525
apply(rule wf_subset)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2526
 prefer 2 apply (rule Int_lower1)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2527
apply(rule wf_prod_fun_image)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2528
 prefer 2 apply (rule inj_onI, auto)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2529
done
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2530
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2531
lemma lexn_length:
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2532
     "!!xs ys. (xs, ys) : lexn r n ==> length xs = n \<and> length ys = n"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2533
by (induct n) auto
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2534
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2535
lemma wf_lex [intro!]: "wf r ==> wf (lex r)"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2536
apply (unfold lex_def)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2537
apply (rule wf_UN)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2538
apply (blast intro: wf_lexn, clarify)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2539
apply (rename_tac m n)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2540
apply (subgoal_tac "m \<noteq> n")
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2541
 prefer 2 apply blast
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2542
apply (blast dest: lexn_length not_sym)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2543
done
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2544
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2545
lemma lexn_conv:
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2546
  "lexn r n =
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2547
    {(xs,ys). length xs = n \<and> length ys = n \<and>
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2548
    (\<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
  2549
apply (induct n, simp)
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2550
apply (simp add: image_Collect lex_prod_def, safe, blast)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2551
 apply (rule_tac x = "ab # xys" in exI, simp)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2552
apply (case_tac xys, simp_all, blast)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2553
done
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2554
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2555
lemma lex_conv:
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2556
  "lex r =
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2557
    {(xs,ys). length xs = length ys \<and>
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2558
    (\<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
  2559
by (force simp add: lex_def lexn_conv)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2560
15693
3a67e61c6e96 tuned Map, renamed lex stuff in List.
nipkow
parents: 15656
diff changeset
  2561
lemma wf_lenlex [intro!]: "wf r ==> wf (lenlex r)"
3a67e61c6e96 tuned Map, renamed lex stuff in List.
nipkow
parents: 15656
diff changeset
  2562
by (unfold lenlex_def) blast
3a67e61c6e96 tuned Map, renamed lex stuff in List.
nipkow
parents: 15656
diff changeset
  2563
3a67e61c6e96 tuned Map, renamed lex stuff in List.
nipkow
parents: 15656
diff changeset
  2564
lemma lenlex_conv:
3a67e61c6e96 tuned Map, renamed lex stuff in List.
nipkow
parents: 15656
diff changeset
  2565
    "lenlex r = {(xs,ys). length xs < length ys |
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2566
                 length xs = length ys \<and> (xs, ys) : lex r}"
19623
12e6cc4382ae added lemma in_measure
nipkow
parents: 19607
diff changeset
  2567
by (simp add: lenlex_def diag_def lex_prod_def inv_image_def)
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2568
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2569
lemma Nil_notin_lex [iff]: "([], ys) \<notin> lex r"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2570
by (simp add: lex_conv)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2571
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2572
lemma Nil2_notin_lex [iff]: "(xs, []) \<notin> lex r"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2573
by (simp add:lex_conv)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2574
18447
da548623916a removed or modified some instances of [iff]
paulson
parents: 18423
diff changeset
  2575
lemma Cons_in_lex [simp]:
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2576
    "((x # xs, y # ys) : lex r) =
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2577
      ((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
  2578
apply (simp add: lex_conv)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2579
apply (rule iffI)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2580
 prefer 2 apply (blast intro: Cons_eq_appendI, clarify)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2581
apply (case_tac xys, simp, simp)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2582
apply blast
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2583
done
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2584
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2585
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2586
subsubsection {* Lexicographic Ordering *}
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2587
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2588
text {* Classical lexicographic ordering on lists, ie. "a" < "ab" < "b".
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2589
    This ordering does \emph{not} preserve well-foundedness.
17090
603f23d71ada small mods to code lemmas
nipkow
parents: 17086
diff changeset
  2590
     Author: N. Voelker, March 2005. *} 
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2591
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2592
constdefs 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2593
  lexord :: "('a * 'a)set \<Rightarrow> ('a list * 'a list) set" 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2594
  "lexord  r == {(x,y). \<exists> a v. y = x @ a # v \<or> 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2595
            (\<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
  2596
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2597
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
  2598
by (unfold lexord_def, induct_tac y, auto) 
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2599
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2600
lemma lexord_Nil_right[simp]: "(x,[]) \<notin> lexord r"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  2601
by (unfold lexord_def, induct_tac x, auto)
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2602
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2603
lemma lexord_cons_cons[simp]:
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2604
     "((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
  2605
  apply (unfold lexord_def, safe, simp_all)
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2606
  apply (case_tac u, simp, simp)
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2607
  apply (case_tac u, simp, clarsimp, blast, blast, clarsimp)
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2608
  apply (erule_tac x="b # u" in allE)
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2609
  by force
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2610
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2611
lemmas lexord_simps = lexord_Nil_left lexord_Nil_right lexord_cons_cons
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2612
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2613
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
  2614
by (induct_tac x, auto)  
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2615
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2616
lemma lexord_append_left_rightI:
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2617
     "(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
  2618
by (induct_tac u, auto)
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2619
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2620
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
  2621
by (induct x, auto)
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2622
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2623
lemma lexord_append_leftD:
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2624
     "\<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
  2625
by (erule rev_mp, induct_tac x, auto)
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2626
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2627
lemma lexord_take_index_conv: 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2628
   "((x,y) : lexord r) = 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2629
    ((length x < length y \<and> take (length x) y = x) \<or> 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2630
     (\<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
  2631
  apply (unfold lexord_def Let_def, clarsimp) 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2632
  apply (rule_tac f = "(% a b. a \<or> b)" in arg_cong2)
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2633
  apply auto 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2634
  apply (rule_tac x="hd (drop (length x) y)" in exI)
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2635
  apply (rule_tac x="tl (drop (length x) y)" in exI)
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2636
  apply (erule subst, simp add: min_def) 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2637
  apply (rule_tac x ="length u" in exI, simp) 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2638
  apply (rule_tac x ="take i x" in exI) 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2639
  apply (rule_tac x ="x ! i" in exI) 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2640
  apply (rule_tac x ="y ! i" in exI, safe) 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2641
  apply (rule_tac x="drop (Suc i) x" in exI)
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2642
  apply (drule sym, simp add: drop_Suc_conv_tl) 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2643
  apply (rule_tac x="drop (Suc i) y" in exI)
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2644
  by (simp add: drop_Suc_conv_tl) 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2645
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2646
-- {* lexord is extension of partial ordering List.lex *} 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2647
lemma lexord_lex: " (x,y) \<in> lex r = ((x,y) \<in> lexord r \<and> length x = length y)"
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2648
  apply (rule_tac x = y in spec) 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2649
  apply (induct_tac x, clarsimp) 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2650
  by (clarify, case_tac x, simp, force)
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2651
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2652
lemma lexord_irreflexive: "(! x. (x,x) \<notin> r) \<Longrightarrow> (y,y) \<notin> lexord r"
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2653
  by (induct y, auto)
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2654
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2655
lemma lexord_trans: 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2656
    "\<lbrakk> (x, y) \<in> lexord r; (y, z) \<in> lexord r; trans r \<rbrakk> \<Longrightarrow> (x, z) \<in> lexord r"
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2657
   apply (erule rev_mp)+
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2658
   apply (rule_tac x = x in spec) 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2659
  apply (rule_tac x = z in spec) 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2660
  apply ( induct_tac y, simp, clarify)
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2661
  apply (case_tac xa, erule ssubst) 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2662
  apply (erule allE, erule allE) -- {* avoid simp recursion *} 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2663
  apply (case_tac x, simp, simp) 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2664
  apply (case_tac x, erule allE, erule allE, simp) 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2665
  apply (erule_tac x = listb in allE) 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2666
  apply (erule_tac x = lista in allE, simp)
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2667
  apply (unfold trans_def)
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2668
  by blast
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2669
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2670
lemma lexord_transI:  "trans r \<Longrightarrow> trans (lexord r)"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  2671
by (rule transI, drule lexord_trans, blast) 
15656
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2672
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2673
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
  2674
  apply (rule_tac x = y in spec) 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2675
  apply (induct_tac x, rule allI) 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2676
  apply (case_tac x, simp, simp) 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2677
  apply (rule allI, case_tac x, simp, simp) 
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2678
  by blast
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2679
988f91b9c4ef lexicographic order by Norbert Voelker
paulson
parents: 15570
diff changeset
  2680
21103
367b4ad7c7cc Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents: 21079
diff changeset
  2681
subsection {* Lexicographic combination of measure functions *}
367b4ad7c7cc Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents: 21079
diff changeset
  2682
367b4ad7c7cc Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents: 21079
diff changeset
  2683
text {* These are useful for termination proofs *}
367b4ad7c7cc Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents: 21079
diff changeset
  2684
367b4ad7c7cc Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents: 21079
diff changeset
  2685
definition
367b4ad7c7cc Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents: 21079
diff changeset
  2686
  "measures fs = inv_image (lex less_than) (%a. map (%f. f a) fs)"
367b4ad7c7cc Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents: 21079
diff changeset
  2687
21106
51599a81b308 Added "recdef_wf" and "simp" attribute to "wf_measures"
krauss
parents: 21103
diff changeset
  2688
lemma wf_measures[recdef_wf, simp]: "wf (measures fs)"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  2689
unfolding measures_def
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  2690
by blast
21103
367b4ad7c7cc Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents: 21079
diff changeset
  2691
367b4ad7c7cc Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents: 21079
diff changeset
  2692
lemma in_measures[simp]: 
367b4ad7c7cc Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents: 21079
diff changeset
  2693
  "(x, y) \<in> measures [] = False"
367b4ad7c7cc Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents: 21079
diff changeset
  2694
  "(x, y) \<in> measures (f # fs)
367b4ad7c7cc Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents: 21079
diff changeset
  2695
         = (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
  2696
unfolding measures_def
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  2697
by auto
21103
367b4ad7c7cc Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents: 21079
diff changeset
  2698
367b4ad7c7cc Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents: 21079
diff changeset
  2699
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
  2700
by simp
21103
367b4ad7c7cc Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents: 21079
diff changeset
  2701
367b4ad7c7cc Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents: 21079
diff changeset
  2702
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
  2703
by auto
21103
367b4ad7c7cc Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents: 21079
diff changeset
  2704
21211
5370cfbf3070 Preparations for making "lexicographic_order" part of "fun"
krauss
parents: 21193
diff changeset
  2705
(* install the lexicographic_order method and the "fun" command *)
21131
a447addc14af added lexicographic_order tactic
bulwahn
parents: 21126
diff changeset
  2706
use "Tools/function_package/lexicographic_order.ML"
21211
5370cfbf3070 Preparations for making "lexicographic_order" part of "fun"
krauss
parents: 21193
diff changeset
  2707
use "Tools/function_package/fundef_datatype.ML"
5370cfbf3070 Preparations for making "lexicographic_order" part of "fun"
krauss
parents: 21193
diff changeset
  2708
setup LexicographicOrder.setup
5370cfbf3070 Preparations for making "lexicographic_order" part of "fun"
krauss
parents: 21193
diff changeset
  2709
setup FundefDatatype.setup
5370cfbf3070 Preparations for making "lexicographic_order" part of "fun"
krauss
parents: 21193
diff changeset
  2710
21103
367b4ad7c7cc Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents: 21079
diff changeset
  2711
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15307
diff changeset
  2712
subsubsection{*Lifting a Relation on List Elements to the Lists*}
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2713
23740
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  2714
inductive_set
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  2715
  listrel :: "('a * 'a)set => ('a list * 'a list)set"
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  2716
  for r :: "('a * 'a)set"
22262
96ba62dff413 Adapted to new inductive definition package.
berghofe
parents: 22143
diff changeset
  2717
where
23740
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  2718
    Nil:  "([],[]) \<in> listrel r"
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  2719
  | 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
  2720
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  2721
inductive_cases listrel_Nil1 [elim!]: "([],xs) \<in> listrel r"
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  2722
inductive_cases listrel_Nil2 [elim!]: "(xs,[]) \<in> listrel r"
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  2723
inductive_cases listrel_Cons1 [elim!]: "(y#ys,xs) \<in> listrel r"
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  2724
inductive_cases listrel_Cons2 [elim!]: "(xs,y#ys) \<in> listrel r"
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2725
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2726
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2727
lemma listrel_mono: "r \<subseteq> s \<Longrightarrow> listrel r \<subseteq> listrel s"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2728
apply clarify  
23740
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  2729
apply (erule listrel.induct)
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  2730
apply (blast intro: listrel.intros)+
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2731
done
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2732
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2733
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
  2734
apply clarify 
23740
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  2735
apply (erule listrel.induct, auto) 
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2736
done
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2737
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2738
lemma listrel_refl: "refl A r \<Longrightarrow> refl (lists A) (listrel r)" 
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2739
apply (simp add: refl_def listrel_subset Ball_def)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2740
apply (rule allI) 
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2741
apply (induct_tac x) 
23740
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  2742
apply (auto intro: listrel.intros)
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2743
done
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2744
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2745
lemma listrel_sym: "sym r \<Longrightarrow> sym (listrel r)" 
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2746
apply (auto simp add: sym_def)
23740
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  2747
apply (erule listrel.induct) 
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  2748
apply (blast intro: listrel.intros)+
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2749
done
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2750
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2751
lemma listrel_trans: "trans r \<Longrightarrow> trans (listrel r)" 
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2752
apply (simp add: trans_def)
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2753
apply (intro allI) 
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2754
apply (rule impI) 
23740
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  2755
apply (erule listrel.induct) 
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  2756
apply (blast intro: listrel.intros)+
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2757
done
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2758
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2759
theorem equiv_listrel: "equiv A r \<Longrightarrow> equiv (lists A) (listrel r)"
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2760
by (simp add: equiv_def listrel_refl listrel_sym listrel_trans) 
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2761
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2762
lemma listrel_Nil [simp]: "listrel r `` {[]} = {[]}"
23740
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  2763
by (blast intro: listrel.intros)
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2764
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2765
lemma listrel_Cons:
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2766
     "listrel r `` {x#xs} = set_Cons (r``{x}) (listrel r `` {xs})";
23740
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  2767
by (auto simp add: set_Cons_def intro: listrel.intros) 
15302
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2768
a643fcbc3468 Restructured List and added "rotate"
nipkow
parents: 15281
diff changeset
  2769
15392
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15307
diff changeset
  2770
subsection{*Miscellany*}
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15307
diff changeset
  2771
290bc97038c7 First step in reorganizing Finite_Set
nipkow
parents: 15307
diff changeset
  2772
subsubsection {* Characters and strings *}
13366
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
  2773
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
  2774
datatype nibble =
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
  2775
    Nibble0 | Nibble1 | Nibble2 | Nibble3 | Nibble4 | Nibble5 | Nibble6 | Nibble7
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
  2776
  | Nibble8 | Nibble9 | NibbleA | NibbleB | NibbleC | NibbleD | NibbleE | NibbleF
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
  2777
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
  2778
datatype char = Char nibble nibble
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
  2779
  -- "Note: canonical order of character encoding coincides with standard term ordering"
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
  2780
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
  2781
types string = "char list"
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
  2782
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
  2783
syntax
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
  2784
  "_Char" :: "xstr => char"    ("CHR _")
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
  2785
  "_String" :: "xstr => string"    ("_")
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
  2786
21754
6316163ae934 moved char/string syntax to Tools/string_syntax.ML;
wenzelm
parents: 21548
diff changeset
  2787
setup StringSyntax.setup
13366
114b7c14084a moved stuff from Main.thy;
wenzelm
parents: 13187
diff changeset
  2788
20453
855f07fabd76 final syntax for some Isar code generator keywords
haftmann
parents: 20439
diff changeset
  2789
21061
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2790
subsection {* Code generator *}
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2791
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2792
subsubsection {* Setup *}
15064
4f3102b50197 - Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents: 15045
diff changeset
  2793
16770
1f1b1fae30e4 Auxiliary functions to be used in generated code are now defined using "attach".
berghofe
parents: 16634
diff changeset
  2794
types_code
1f1b1fae30e4 Auxiliary functions to be used in generated code are now defined using "attach".
berghofe
parents: 16634
diff changeset
  2795
  "list" ("_ list")
1f1b1fae30e4 Auxiliary functions to be used in generated code are now defined using "attach".
berghofe
parents: 16634
diff changeset
  2796
attach (term_of) {*
21760
78248dda3a90 fixed term_of_list;
wenzelm
parents: 21754
diff changeset
  2797
fun term_of_list f T = HOLogic.mk_list T o map f;
16770
1f1b1fae30e4 Auxiliary functions to be used in generated code are now defined using "attach".
berghofe
parents: 16634
diff changeset
  2798
*}
1f1b1fae30e4 Auxiliary functions to be used in generated code are now defined using "attach".
berghofe
parents: 16634
diff changeset
  2799
attach (test) {*
15064
4f3102b50197 - Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents: 15045
diff changeset
  2800
fun gen_list' aG i j = frequency
4f3102b50197 - Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents: 15045
diff changeset
  2801
  [(i, fn () => aG j :: gen_list' aG (i-1) j), (1, fn () => [])] ()
4f3102b50197 - Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents: 15045
diff changeset
  2802
and gen_list aG i = gen_list' aG i i;
16770
1f1b1fae30e4 Auxiliary functions to be used in generated code are now defined using "attach".
berghofe
parents: 16634
diff changeset
  2803
*}
1f1b1fae30e4 Auxiliary functions to be used in generated code are now defined using "attach".
berghofe
parents: 16634
diff changeset
  2804
  "char" ("string")
1f1b1fae30e4 Auxiliary functions to be used in generated code are now defined using "attach".
berghofe
parents: 16634
diff changeset
  2805
attach (term_of) {*
24130
5ab8044b6d46 Repaired term_of_char.
berghofe
parents: 24037
diff changeset
  2806
val term_of_char = HOLogic.mk_char o ord;
16770
1f1b1fae30e4 Auxiliary functions to be used in generated code are now defined using "attach".
berghofe
parents: 16634
diff changeset
  2807
*}
1f1b1fae30e4 Auxiliary functions to be used in generated code are now defined using "attach".
berghofe
parents: 16634
diff changeset
  2808
attach (test) {*
15064
4f3102b50197 - Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents: 15045
diff changeset
  2809
fun gen_char i = chr (random_range (ord "a") (Int.min (ord "a" + i, ord "z")));
4f3102b50197 - Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents: 15045
diff changeset
  2810
*}
4f3102b50197 - Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents: 15045
diff changeset
  2811
4f3102b50197 - Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents: 15045
diff changeset
  2812
consts_code "Cons" ("(_ ::/ _)")
4f3102b50197 - Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents: 15045
diff changeset
  2813
20453
855f07fabd76 final syntax for some Isar code generator keywords
haftmann
parents: 20439
diff changeset
  2814
code_type list
855f07fabd76 final syntax for some Isar code generator keywords
haftmann
parents: 20439
diff changeset
  2815
  (SML "_ list")
21911
e29bcab0c81c added OCaml code generation (without dictionaries)
haftmann
parents: 21891
diff changeset
  2816
  (OCaml "_ list")
21113
5b76e541cc0a adapted to new serializer syntax
haftmann
parents: 21106
diff changeset
  2817
  (Haskell "![_]")
20453
855f07fabd76 final syntax for some Isar code generator keywords
haftmann
parents: 20439
diff changeset
  2818
22799
ed7d53db2170 moved code generation pretty integers and characters to separate theories
haftmann
parents: 22793
diff changeset
  2819
code_reserved SML
ed7d53db2170 moved code generation pretty integers and characters to separate theories
haftmann
parents: 22793
diff changeset
  2820
  list
ed7d53db2170 moved code generation pretty integers and characters to separate theories
haftmann
parents: 22793
diff changeset
  2821
ed7d53db2170 moved code generation pretty integers and characters to separate theories
haftmann
parents: 22793
diff changeset
  2822
code_reserved OCaml
ed7d53db2170 moved code generation pretty integers and characters to separate theories
haftmann
parents: 22793
diff changeset
  2823
  list
ed7d53db2170 moved code generation pretty integers and characters to separate theories
haftmann
parents: 22793
diff changeset
  2824
20453
855f07fabd76 final syntax for some Isar code generator keywords
haftmann
parents: 20439
diff changeset
  2825
code_const Nil
21113
5b76e541cc0a adapted to new serializer syntax
haftmann
parents: 21106
diff changeset
  2826
  (SML "[]")
21911
e29bcab0c81c added OCaml code generation (without dictionaries)
haftmann
parents: 21891
diff changeset
  2827
  (OCaml "[]")
21113
5b76e541cc0a adapted to new serializer syntax
haftmann
parents: 21106
diff changeset
  2828
  (Haskell "[]")
20453
855f07fabd76 final syntax for some Isar code generator keywords
haftmann
parents: 20439
diff changeset
  2829
21911
e29bcab0c81c added OCaml code generation (without dictionaries)
haftmann
parents: 21891
diff changeset
  2830
setup {*
24219
e558fe311376 new structure for code generator modules
haftmann
parents: 24166
diff changeset
  2831
  fold (fn target => CodeTarget.add_pretty_list target
22799
ed7d53db2170 moved code generation pretty integers and characters to separate theories
haftmann
parents: 22793
diff changeset
  2832
    @{const_name Nil} @{const_name Cons}
ed7d53db2170 moved code generation pretty integers and characters to separate theories
haftmann
parents: 22793
diff changeset
  2833
  ) ["SML", "OCaml", "Haskell"]
21911
e29bcab0c81c added OCaml code generation (without dictionaries)
haftmann
parents: 21891
diff changeset
  2834
*}
e29bcab0c81c added OCaml code generation (without dictionaries)
haftmann
parents: 21891
diff changeset
  2835
22799
ed7d53db2170 moved code generation pretty integers and characters to separate theories
haftmann
parents: 22793
diff changeset
  2836
code_instance list :: eq
ed7d53db2170 moved code generation pretty integers and characters to separate theories
haftmann
parents: 22793
diff changeset
  2837
  (Haskell -)
20588
c847c56edf0c added operational equality
haftmann
parents: 20503
diff changeset
  2838
21455
b6be1d1b66c5 incorporated structure HOList into HOLogic
haftmann
parents: 21404
diff changeset
  2839
code_const "op = \<Colon> 'a\<Colon>eq list \<Rightarrow> 'a list \<Rightarrow> bool"
20588
c847c56edf0c added operational equality
haftmann
parents: 20503
diff changeset
  2840
  (Haskell infixl 4 "==")
c847c56edf0c added operational equality
haftmann
parents: 20503
diff changeset
  2841
20453
855f07fabd76 final syntax for some Isar code generator keywords
haftmann
parents: 20439
diff changeset
  2842
setup {*
855f07fabd76 final syntax for some Isar code generator keywords
haftmann
parents: 20439
diff changeset
  2843
let
855f07fabd76 final syntax for some Isar code generator keywords
haftmann
parents: 20439
diff changeset
  2844
855f07fabd76 final syntax for some Isar code generator keywords
haftmann
parents: 20439
diff changeset
  2845
fun list_codegen thy defs gr dep thyname b t =
855f07fabd76 final syntax for some Isar code generator keywords
haftmann
parents: 20439
diff changeset
  2846
  let val (gr', ps) = foldl_map (Codegen.invoke_codegen thy defs dep thyname false)
855f07fabd76 final syntax for some Isar code generator keywords
haftmann
parents: 20439
diff changeset
  2847
    (gr, HOLogic.dest_list t)
855f07fabd76 final syntax for some Isar code generator keywords
haftmann
parents: 20439
diff changeset
  2848
  in SOME (gr', Pretty.list "[" "]" ps) end handle TERM _ => NONE;
855f07fabd76 final syntax for some Isar code generator keywords
haftmann
parents: 20439
diff changeset
  2849
855f07fabd76 final syntax for some Isar code generator keywords
haftmann
parents: 20439
diff changeset
  2850
fun char_codegen thy defs gr dep thyname b t =
22539
ad3bd3d6ba8a Improved code generator for characters: now handles
berghofe
parents: 22506
diff changeset
  2851
  case Option.map chr (try HOLogic.dest_char t) of
ad3bd3d6ba8a Improved code generator for characters: now handles
berghofe
parents: 22506
diff changeset
  2852
      SOME c => SOME (gr, Pretty.quote (Pretty.str (ML_Syntax.print_char c)))
20453
855f07fabd76 final syntax for some Isar code generator keywords
haftmann
parents: 20439
diff changeset
  2853
    | NONE => NONE;
855f07fabd76 final syntax for some Isar code generator keywords
haftmann
parents: 20439
diff changeset
  2854
855f07fabd76 final syntax for some Isar code generator keywords
haftmann
parents: 20439
diff changeset
  2855
in
855f07fabd76 final syntax for some Isar code generator keywords
haftmann
parents: 20439
diff changeset
  2856
  Codegen.add_codegen "list_codegen" list_codegen
855f07fabd76 final syntax for some Isar code generator keywords
haftmann
parents: 20439
diff changeset
  2857
  #> Codegen.add_codegen "char_codegen" char_codegen
855f07fabd76 final syntax for some Isar code generator keywords
haftmann
parents: 20439
diff changeset
  2858
end;
855f07fabd76 final syntax for some Isar code generator keywords
haftmann
parents: 20439
diff changeset
  2859
*}
15064
4f3102b50197 - Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents: 15045
diff changeset
  2860
21061
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2861
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2862
subsubsection {* Generation of efficient code *}
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2863
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2864
consts
23740
d7f18c837ce7 Adapted to new package for inductive sets.
berghofe
parents: 23554
diff changeset
  2865
  member :: "'a \<Rightarrow> 'a list \<Rightarrow> bool" (infixl "mem" 55)
21061
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2866
  null:: "'a list \<Rightarrow> bool"
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2867
  list_inter :: "'a list \<Rightarrow> 'a list \<Rightarrow> 'a list"
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2868
  list_ex :: "('a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> bool"
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2869
  list_all :: "('a \<Rightarrow> bool) \<Rightarrow> ('a list \<Rightarrow> bool)"
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2870
  filtermap :: "('a \<Rightarrow> 'b option) \<Rightarrow> 'a list \<Rightarrow> 'b list"
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2871
  map_filter :: "('a \<Rightarrow> 'b) \<Rightarrow> ('a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> 'b list"
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2872
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2873
primrec
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2874
  "x mem [] = False"
21079
747d716e98d0 added reserved words for Haskell
haftmann
parents: 21061
diff changeset
  2875
  "x mem (y#ys) = (x = y \<or> x mem ys)"
21061
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2876
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2877
primrec
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2878
  "null [] = True"
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2879
  "null (x#xs) = False"
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2880
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2881
primrec
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2882
  "list_inter [] bs = []"
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2883
  "list_inter (a#as) bs =
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2884
     (if a \<in> set bs then a # list_inter as bs else list_inter as bs)"
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2885
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2886
primrec
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2887
  "list_all P [] = True"
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2888
  "list_all P (x#xs) = (P x \<and> list_all P xs)"
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2889
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2890
primrec
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2891
  "list_ex P [] = False"
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2892
  "list_ex P (x#xs) = (P x \<or> list_ex P xs)"
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2893
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2894
primrec
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2895
  "filtermap f [] = []"
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2896
  "filtermap f (x#xs) =
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2897
     (case f x of None \<Rightarrow> filtermap f xs
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2898
      | Some y \<Rightarrow> y # filtermap f xs)"
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2899
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2900
primrec
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2901
  "map_filter f P [] = []"
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2902
  "map_filter f P (x#xs) =
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2903
     (if P x then f x # map_filter f P xs else map_filter f P xs)"
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2904
23096
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  2905
21061
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2906
text {*
21754
6316163ae934 moved char/string syntax to Tools/string_syntax.ML;
wenzelm
parents: 21548
diff changeset
  2907
  Only use @{text mem} for generating executable code.  Otherwise use
6316163ae934 moved char/string syntax to Tools/string_syntax.ML;
wenzelm
parents: 21548
diff changeset
  2908
  @{prop "x : set xs"} instead --- it is much easier to reason about.
21061
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2909
  The same is true for @{const list_all} and @{const list_ex}: write
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2910
  @{text "\<forall>x\<in>set xs"} and @{text "\<exists>x\<in>set xs"} instead because the HOL
21754
6316163ae934 moved char/string syntax to Tools/string_syntax.ML;
wenzelm
parents: 21548
diff changeset
  2911
  quantifiers are aleady known to the automatic provers. In fact, the
6316163ae934 moved char/string syntax to Tools/string_syntax.ML;
wenzelm
parents: 21548
diff changeset
  2912
  declarations in the code subsection make sure that @{text "\<in>"},
6316163ae934 moved char/string syntax to Tools/string_syntax.ML;
wenzelm
parents: 21548
diff changeset
  2913
  @{text "\<forall>x\<in>set xs"} and @{text "\<exists>x\<in>set xs"} are implemented
6316163ae934 moved char/string syntax to Tools/string_syntax.ML;
wenzelm
parents: 21548
diff changeset
  2914
  efficiently.
21061
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2915
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2916
  Efficient emptyness check is implemented by @{const null}.
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2917
23060
0c0b03d0ec7e improved code for rev
haftmann
parents: 23029
diff changeset
  2918
  The functions @{const filtermap} and @{const map_filter} are just
0c0b03d0ec7e improved code for rev
haftmann
parents: 23029
diff changeset
  2919
  there to generate efficient code. Do not use
21754
6316163ae934 moved char/string syntax to Tools/string_syntax.ML;
wenzelm
parents: 21548
diff changeset
  2920
  them for modelling and proving.
21061
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2921
*}
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2922
23060
0c0b03d0ec7e improved code for rev
haftmann
parents: 23029
diff changeset
  2923
lemma rev_foldl_cons [code]:
0c0b03d0ec7e improved code for rev
haftmann
parents: 23029
diff changeset
  2924
  "rev xs = foldl (\<lambda>xs x. x # xs) [] xs"
0c0b03d0ec7e improved code for rev
haftmann
parents: 23029
diff changeset
  2925
proof (induct xs)
0c0b03d0ec7e improved code for rev
haftmann
parents: 23029
diff changeset
  2926
  case Nil then show ?case by simp
0c0b03d0ec7e improved code for rev
haftmann
parents: 23029
diff changeset
  2927
next
0c0b03d0ec7e improved code for rev
haftmann
parents: 23029
diff changeset
  2928
  case Cons
0c0b03d0ec7e improved code for rev
haftmann
parents: 23029
diff changeset
  2929
  {
0c0b03d0ec7e improved code for rev
haftmann
parents: 23029
diff changeset
  2930
    fix x xs ys
0c0b03d0ec7e improved code for rev
haftmann
parents: 23029
diff changeset
  2931
    have "foldl (\<lambda>xs x. x # xs) ys xs @ [x]
0c0b03d0ec7e improved code for rev
haftmann
parents: 23029
diff changeset
  2932
      = foldl (\<lambda>xs x. x # xs) (ys @ [x]) xs"
0c0b03d0ec7e improved code for rev
haftmann
parents: 23029
diff changeset
  2933
    by (induct xs arbitrary: ys) auto
0c0b03d0ec7e improved code for rev
haftmann
parents: 23029
diff changeset
  2934
  }
0c0b03d0ec7e improved code for rev
haftmann
parents: 23029
diff changeset
  2935
  note aux = this
0c0b03d0ec7e improved code for rev
haftmann
parents: 23029
diff changeset
  2936
  show ?case by (induct xs) (auto simp add: Cons aux)
0c0b03d0ec7e improved code for rev
haftmann
parents: 23029
diff changeset
  2937
qed
0c0b03d0ec7e improved code for rev
haftmann
parents: 23029
diff changeset
  2938
24166
7b28dc69bdbb new nbe implementation
haftmann
parents: 24130
diff changeset
  2939
lemma mem_iff [code post]:
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22262
diff changeset
  2940
  "x mem xs \<longleftrightarrow> x \<in> set xs"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  2941
by (induct xs) auto
21061
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2942
22799
ed7d53db2170 moved code generation pretty integers and characters to separate theories
haftmann
parents: 22793
diff changeset
  2943
lemmas in_set_code [code unfold] = mem_iff [symmetric]
21061
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2944
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2945
lemma empty_null [code inline]:
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22262
diff changeset
  2946
  "xs = [] \<longleftrightarrow> null xs"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  2947
by (cases xs) simp_all
21061
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2948
24166
7b28dc69bdbb new nbe implementation
haftmann
parents: 24130
diff changeset
  2949
lemmas null_empty [code post] =
21061
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2950
  empty_null [symmetric]
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2951
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2952
lemma list_inter_conv:
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2953
  "set (list_inter xs ys) = set xs \<inter> set ys"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  2954
by (induct xs) auto
21061
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2955
24166
7b28dc69bdbb new nbe implementation
haftmann
parents: 24130
diff changeset
  2956
lemma list_all_iff [code post]:
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22262
diff changeset
  2957
  "list_all P xs \<longleftrightarrow> (\<forall>x \<in> set xs. P x)"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  2958
by (induct xs) auto
21061
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2959
22799
ed7d53db2170 moved code generation pretty integers and characters to separate theories
haftmann
parents: 22793
diff changeset
  2960
lemmas list_ball_code [code unfold] = list_all_iff [symmetric]
21061
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2961
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2962
lemma list_all_append [simp]:
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22262
diff changeset
  2963
  "list_all P (xs @ ys) \<longleftrightarrow> (list_all P xs \<and> list_all P ys)"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  2964
by (induct xs) auto
21061
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2965
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2966
lemma list_all_rev [simp]:
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22262
diff changeset
  2967
  "list_all P (rev xs) \<longleftrightarrow> list_all P xs"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  2968
by (simp add: list_all_iff)
21061
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2969
22506
c78f1d924bfe two further properties about lists
haftmann
parents: 22493
diff changeset
  2970
lemma list_all_length:
c78f1d924bfe two further properties about lists
haftmann
parents: 22493
diff changeset
  2971
  "list_all P xs \<longleftrightarrow> (\<forall>n < length xs. P (xs ! n))"
c78f1d924bfe two further properties about lists
haftmann
parents: 22493
diff changeset
  2972
  unfolding list_all_iff by (auto intro: all_nth_imp_all_set)
c78f1d924bfe two further properties about lists
haftmann
parents: 22493
diff changeset
  2973
24166
7b28dc69bdbb new nbe implementation
haftmann
parents: 24130
diff changeset
  2974
lemma list_ex_iff [code post]:
22422
ee19cdb07528 stepping towards uniform lattice theory development in HOL
haftmann
parents: 22262
diff changeset
  2975
  "list_ex P xs \<longleftrightarrow> (\<exists>x \<in> set xs. P x)"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  2976
by (induct xs) simp_all
21061
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2977
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2978
lemmas list_bex_code [code unfold] =
22799
ed7d53db2170 moved code generation pretty integers and characters to separate theories
haftmann
parents: 22793
diff changeset
  2979
  list_ex_iff [symmetric]
21061
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2980
22506
c78f1d924bfe two further properties about lists
haftmann
parents: 22493
diff changeset
  2981
lemma list_ex_length:
c78f1d924bfe two further properties about lists
haftmann
parents: 22493
diff changeset
  2982
  "list_ex P xs \<longleftrightarrow> (\<exists>n < length xs. P (xs ! n))"
c78f1d924bfe two further properties about lists
haftmann
parents: 22493
diff changeset
  2983
  unfolding list_ex_iff set_conv_nth by auto
c78f1d924bfe two further properties about lists
haftmann
parents: 22493
diff changeset
  2984
21061
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2985
lemma filtermap_conv:
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2986
   "filtermap f xs = map (\<lambda>x. the (f x)) (filter (\<lambda>x. f x \<noteq> None) xs)"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  2987
by (induct xs) (simp_all split: option.split) 
21061
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2988
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2989
lemma map_filter_conv [simp]:
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2990
  "map_filter f P xs = map f (filter P xs)"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  2991
by (induct xs) auto
21061
580dfc999ef6 added normal post setup; cleaned up "execution" constants
haftmann
parents: 21046
diff changeset
  2992
23096
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  2993
lemma [code inline]: "listsum (map f xs) = foldl (%n x. n + f x) 0 xs"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  2994
by (simp add: listsum_foldr foldl_map [symmetric] foldl_foldr1)
23096
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  2995
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  2996
423ad2fe9f76 *** empty log message ***
nipkow
parents: 23060
diff changeset
  2997
text {* Code for bounded quantification over nats. *}
21891
b4e4ea3db161 added code lemmas for quantification over bounded nats
haftmann
parents: 21871
diff changeset
  2998
22799
ed7d53db2170 moved code generation pretty integers and characters to separate theories
haftmann
parents: 22793
diff changeset
  2999
lemma atMost_upto [code unfold]:
21891
b4e4ea3db161 added code lemmas for quantification over bounded nats
haftmann
parents: 21871
diff changeset
  3000
  "{..n} = set [0..n]"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  3001
by auto
22799
ed7d53db2170 moved code generation pretty integers and characters to separate theories
haftmann
parents: 22793
diff changeset
  3002
ed7d53db2170 moved code generation pretty integers and characters to separate theories
haftmann
parents: 22793
diff changeset
  3003
lemma atLeast_upt [code unfold]:
21891
b4e4ea3db161 added code lemmas for quantification over bounded nats
haftmann
parents: 21871
diff changeset
  3004
  "{..<n} = set [0..<n]"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  3005
by auto
22799
ed7d53db2170 moved code generation pretty integers and characters to separate theories
haftmann
parents: 22793
diff changeset
  3006
ed7d53db2170 moved code generation pretty integers and characters to separate theories
haftmann
parents: 22793
diff changeset
  3007
lemma greaterThanLessThan_upd [code unfold]:
21891
b4e4ea3db161 added code lemmas for quantification over bounded nats
haftmann
parents: 21871
diff changeset
  3008
  "{n<..<m} = set [Suc n..<m]"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  3009
by auto
22799
ed7d53db2170 moved code generation pretty integers and characters to separate theories
haftmann
parents: 22793
diff changeset
  3010
ed7d53db2170 moved code generation pretty integers and characters to separate theories
haftmann
parents: 22793
diff changeset
  3011
lemma atLeastLessThan_upd [code unfold]:
21891
b4e4ea3db161 added code lemmas for quantification over bounded nats
haftmann
parents: 21871
diff changeset
  3012
  "{n..<m} = set [n..<m]"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  3013
by auto
22799
ed7d53db2170 moved code generation pretty integers and characters to separate theories
haftmann
parents: 22793
diff changeset
  3014
ed7d53db2170 moved code generation pretty integers and characters to separate theories
haftmann
parents: 22793
diff changeset
  3015
lemma greaterThanAtMost_upto [code unfold]:
21891
b4e4ea3db161 added code lemmas for quantification over bounded nats
haftmann
parents: 21871
diff changeset
  3016
  "{n<..m} = set [Suc n..m]"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  3017
by auto
22799
ed7d53db2170 moved code generation pretty integers and characters to separate theories
haftmann
parents: 22793
diff changeset
  3018
ed7d53db2170 moved code generation pretty integers and characters to separate theories
haftmann
parents: 22793
diff changeset
  3019
lemma atLeastAtMost_upto [code unfold]:
21891
b4e4ea3db161 added code lemmas for quantification over bounded nats
haftmann
parents: 21871
diff changeset
  3020
  "{n..m} = set [n..m]"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  3021
by auto
22799
ed7d53db2170 moved code generation pretty integers and characters to separate theories
haftmann
parents: 22793
diff changeset
  3022
ed7d53db2170 moved code generation pretty integers and characters to separate theories
haftmann
parents: 22793
diff changeset
  3023
lemma all_nat_less_eq [code unfold]:
21891
b4e4ea3db161 added code lemmas for quantification over bounded nats
haftmann
parents: 21871
diff changeset
  3024
  "(\<forall>m<n\<Colon>nat. P m) \<longleftrightarrow> (\<forall>m \<in> {0..<n}. P m)"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  3025
by auto
22799
ed7d53db2170 moved code generation pretty integers and characters to separate theories
haftmann
parents: 22793
diff changeset
  3026
ed7d53db2170 moved code generation pretty integers and characters to separate theories
haftmann
parents: 22793
diff changeset
  3027
lemma ex_nat_less_eq [code unfold]:
21891
b4e4ea3db161 added code lemmas for quantification over bounded nats
haftmann
parents: 21871
diff changeset
  3028
  "(\<exists>m<n\<Colon>nat. P m) \<longleftrightarrow> (\<exists>m \<in> {0..<n}. P m)"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  3029
by auto
22799
ed7d53db2170 moved code generation pretty integers and characters to separate theories
haftmann
parents: 22793
diff changeset
  3030
ed7d53db2170 moved code generation pretty integers and characters to separate theories
haftmann
parents: 22793
diff changeset
  3031
lemma all_nat_less [code unfold]:
21891
b4e4ea3db161 added code lemmas for quantification over bounded nats
haftmann
parents: 21871
diff changeset
  3032
  "(\<forall>m\<le>n\<Colon>nat. P m) \<longleftrightarrow> (\<forall>m \<in> {0..n}. P m)"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  3033
by auto
22799
ed7d53db2170 moved code generation pretty integers and characters to separate theories
haftmann
parents: 22793
diff changeset
  3034
ed7d53db2170 moved code generation pretty integers and characters to separate theories
haftmann
parents: 22793
diff changeset
  3035
lemma ex_nat_less [code unfold]:
21891
b4e4ea3db161 added code lemmas for quantification over bounded nats
haftmann
parents: 21871
diff changeset
  3036
  "(\<exists>m\<le>n\<Colon>nat. P m) \<longleftrightarrow> (\<exists>m \<in> {0..n}. P m)"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  3037
by auto
22799
ed7d53db2170 moved code generation pretty integers and characters to separate theories
haftmann
parents: 22793
diff changeset
  3038
23245
57aee3d85ff3 added a few theorems about foldl and set
chaieb
parents: 23240
diff changeset
  3039
lemma foldl_append_append: "\<And> ss ss'. foldl (op @) (ss@ss') xs = ss@(foldl (op @) ss' xs)"
57aee3d85ff3 added a few theorems about foldl and set
chaieb
parents: 23240
diff changeset
  3040
by (induct xs, simp_all)
57aee3d85ff3 added a few theorems about foldl and set
chaieb
parents: 23240
diff changeset
  3041
57aee3d85ff3 added a few theorems about foldl and set
chaieb
parents: 23240
diff changeset
  3042
lemma foldl_append_map_set: "\<And> ss. set (foldl (op @) ss (map f xs)) = set ss \<union> UNION (set xs) (\<lambda>x. set (f x))"
57aee3d85ff3 added a few theorems about foldl and set
chaieb
parents: 23240
diff changeset
  3043
proof(induct xs)
57aee3d85ff3 added a few theorems about foldl and set
chaieb
parents: 23240
diff changeset
  3044
  case Nil thus ?case by simp
57aee3d85ff3 added a few theorems about foldl and set
chaieb
parents: 23240
diff changeset
  3045
next
57aee3d85ff3 added a few theorems about foldl and set
chaieb
parents: 23240
diff changeset
  3046
  case (Cons x xs ss)
57aee3d85ff3 added a few theorems about foldl and set
chaieb
parents: 23240
diff changeset
  3047
  have "set (foldl op @ ss (map f (x # xs))) = set (foldl op @ (ss @ f x) (map f xs))" by simp
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  3048
  also have "\<dots> = set (ss@ f x) \<union> UNION (set xs) (\<lambda>x. set (f x))"
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  3049
    using prems by simp
23245
57aee3d85ff3 added a few theorems about foldl and set
chaieb
parents: 23240
diff changeset
  3050
  also have "\<dots>= set ss \<union> set (f x) \<union> UNION (set xs) (\<lambda>x. set (f x))" by simp
57aee3d85ff3 added a few theorems about foldl and set
chaieb
parents: 23240
diff changeset
  3051
  also have "\<dots> = set ss \<union> UNION (set (x#xs)) (\<lambda>x. set (f x))"
57aee3d85ff3 added a few theorems about foldl and set
chaieb
parents: 23240
diff changeset
  3052
    by (simp add: Un_assoc)
57aee3d85ff3 added a few theorems about foldl and set
chaieb
parents: 23240
diff changeset
  3053
  finally show ?case by simp
57aee3d85ff3 added a few theorems about foldl and set
chaieb
parents: 23240
diff changeset
  3054
qed
57aee3d85ff3 added a few theorems about foldl and set
chaieb
parents: 23240
diff changeset
  3055
57aee3d85ff3 added a few theorems about foldl and set
chaieb
parents: 23240
diff changeset
  3056
lemma foldl_append_map_Nil_set: 
57aee3d85ff3 added a few theorems about foldl and set
chaieb
parents: 23240
diff changeset
  3057
  "set (foldl (op @) [] (map f xs)) = UNION (set xs) (\<lambda>x. set (f x))"
57aee3d85ff3 added a few theorems about foldl and set
chaieb
parents: 23240
diff changeset
  3058
using foldl_append_map_set[where ss="[]" and xs="xs" and f="f"] by simp
57aee3d85ff3 added a few theorems about foldl and set
chaieb
parents: 23240
diff changeset
  3059
23388
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3060
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3061
subsubsection {* List partitioning *}
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3062
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3063
consts
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3064
  partition :: "('a \<Rightarrow> bool) \<Rightarrow>'a list \<Rightarrow> 'a list \<times> 'a list"
23246
309a57cae012 added a function partition and a few lemmas
chaieb
parents: 23245
diff changeset
  3065
primrec
23388
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3066
  "partition P [] = ([], [])"
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3067
  "partition P (x # xs) = 
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3068
      (let (yes, no) = partition P xs
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3069
      in if P x then (x # yes, no) else (yes, x # no))"
23246
309a57cae012 added a function partition and a few lemmas
chaieb
parents: 23245
diff changeset
  3070
309a57cae012 added a function partition and a few lemmas
chaieb
parents: 23245
diff changeset
  3071
lemma partition_P:
23388
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3072
  "partition P xs = (yes, no) \<Longrightarrow> (\<forall>p\<in> set yes.  P p) \<and> (\<forall>p\<in> set no. \<not> P p)"
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3073
proof (induct xs arbitrary: yes no rule: partition.induct)
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3074
  case Nil then show ?case by simp
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3075
next
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3076
  case (Cons a as)
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3077
  let ?p = "partition P as"
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3078
  let ?p' = "partition P (a # as)"
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3079
  note prem = `?p' = (yes, no)`
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3080
  show ?case
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3081
  proof (cases "P a")
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3082
    case True
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3083
    with prem have yes: "yes = a # fst ?p" and no: "no = snd ?p"
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3084
      by (simp_all add: Let_def split_def)
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3085
    have "(\<forall>p\<in> set (fst ?p).  P p) \<and> (\<forall>p\<in> set no. \<not> P p)"
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3086
      by (rule Cons.hyps) (simp add: yes no)
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3087
    with True yes show ?thesis by simp
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3088
  next
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3089
    case False
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3090
    with prem have yes: "yes = fst ?p" and no: "no = a # snd ?p"
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3091
      by (simp_all add: Let_def split_def)
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3092
    have "(\<forall>p\<in> set yes.  P p) \<and> (\<forall>p\<in> set (snd ?p). \<not> P p)"
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3093
      by (rule Cons.hyps) (simp add: yes no)
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3094
    with False no show ?thesis by simp
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3095
  qed
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3096
qed
23246
309a57cae012 added a function partition and a few lemmas
chaieb
parents: 23245
diff changeset
  3097
309a57cae012 added a function partition and a few lemmas
chaieb
parents: 23245
diff changeset
  3098
lemma partition_filter1:
23388
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3099
    "fst (partition P xs) = filter P xs"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  3100
by (induct xs rule: partition.induct) (auto simp add: Let_def split_def)
23246
309a57cae012 added a function partition and a few lemmas
chaieb
parents: 23245
diff changeset
  3101
309a57cae012 added a function partition and a few lemmas
chaieb
parents: 23245
diff changeset
  3102
lemma partition_filter2:
23388
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3103
    "snd (partition P xs) = filter (Not o P) xs"
24349
0dd8782fb02d Final mods for list comprehension
nipkow
parents: 24335
diff changeset
  3104
by (induct xs rule: partition.induct) (auto simp add: Let_def split_def)
23388
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3105
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3106
lemma partition_set:
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3107
  assumes "partition P xs = (yes, no)"
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3108
  shows "set yes \<union> set no = set xs"
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3109
proof -
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3110
  have "set xs = {x. x \<in> set xs \<and> P x} \<union> {x. x \<in> set xs \<and> \<not> P x}" by blast
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3111
  also have "\<dots> = set (List.filter P xs) Un (set (List.filter (Not o P) xs))" by simp
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3112
  also have "\<dots> = set (fst (partition P xs)) \<union> set (snd (partition P xs))"
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3113
    using partition_filter1 [of P xs] partition_filter2 [of P xs] by simp
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3114
  finally show "set yes Un set no = set xs" using assms by simp
23246
309a57cae012 added a function partition and a few lemmas
chaieb
parents: 23245
diff changeset
  3115
qed
309a57cae012 added a function partition and a few lemmas
chaieb
parents: 23245
diff changeset
  3116
23388
77645da0db85 tuned proofs: avoid implicit prems;
wenzelm
parents: 23279
diff changeset
  3117
end