src/HOL/List.thy
author kleing
Thu, 28 Apr 2005 12:04:34 +0200
changeset 15870 4320bce5873f
parent 15868 9634b3f9d910
child 16397 c047008f88d4
permissions -rw-r--r--
more on rev
wenzelm@13462
     1
(*  Title:      HOL/List.thy
wenzelm@13462
     2
    ID:         $Id$
wenzelm@13462
     3
    Author:     Tobias Nipkow
clasohm@923
     4
*)
clasohm@923
     5
wenzelm@13114
     6
header {* The datatype of finite lists *}
wenzelm@13122
     7
nipkow@15131
     8
theory List
nipkow@15140
     9
imports PreList
nipkow@15131
    10
begin
clasohm@923
    11
wenzelm@13142
    12
datatype 'a list =
wenzelm@13366
    13
    Nil    ("[]")
wenzelm@13366
    14
  | Cons 'a  "'a list"    (infixr "#" 65)
clasohm@923
    15
nipkow@15392
    16
subsection{*Basic list processing functions*}
nipkow@15302
    17
clasohm@923
    18
consts
wenzelm@13366
    19
  "@" :: "'a list => 'a list => 'a list"    (infixr 65)
wenzelm@13366
    20
  filter:: "('a => bool) => 'a list => 'a list"
wenzelm@13366
    21
  concat:: "'a list list => 'a list"
wenzelm@13366
    22
  foldl :: "('b => 'a => 'b) => 'b => 'a list => 'b"
wenzelm@13366
    23
  foldr :: "('a => 'b => 'b) => 'a list => 'b => 'b"
wenzelm@13366
    24
  hd:: "'a list => 'a"
wenzelm@13366
    25
  tl:: "'a list => 'a list"
wenzelm@13366
    26
  last:: "'a list => 'a"
wenzelm@13366
    27
  butlast :: "'a list => 'a list"
wenzelm@13366
    28
  set :: "'a list => 'a set"
wenzelm@13366
    29
  list_all:: "('a => bool) => ('a list => bool)"
wenzelm@13366
    30
  list_all2 :: "('a => 'b => bool) => 'a list => 'b list => bool"
nipkow@15439
    31
  list_ex :: "('a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> bool"
wenzelm@13366
    32
  map :: "('a=>'b) => ('a list => 'b list)"
wenzelm@13366
    33
  mem :: "'a => 'a list => bool"    (infixl 55)
wenzelm@13366
    34
  nth :: "'a list => nat => 'a"    (infixl "!" 100)
wenzelm@13366
    35
  list_update :: "'a list => nat => 'a => 'a list"
wenzelm@13366
    36
  take:: "nat => 'a list => 'a list"
wenzelm@13366
    37
  drop:: "nat => 'a list => 'a list"
wenzelm@13366
    38
  takeWhile :: "('a => bool) => 'a list => 'a list"
wenzelm@13366
    39
  dropWhile :: "('a => bool) => 'a list => 'a list"
wenzelm@13366
    40
  rev :: "'a list => 'a list"
wenzelm@13366
    41
  zip :: "'a list => 'b list => ('a * 'b) list"
nipkow@15425
    42
  upt :: "nat => nat => nat list" ("(1[_..</_'])")
wenzelm@13366
    43
  remdups :: "'a list => 'a list"
nipkow@15110
    44
  remove1 :: "'a => 'a list => 'a list"
wenzelm@13366
    45
  null:: "'a list => bool"
wenzelm@13366
    46
  "distinct":: "'a list => bool"
wenzelm@13366
    47
  replicate :: "nat => 'a => 'a list"
nipkow@15302
    48
  rotate1 :: "'a list \<Rightarrow> 'a list"
nipkow@15302
    49
  rotate :: "nat \<Rightarrow> 'a list \<Rightarrow> 'a list"
nipkow@15302
    50
  sublist :: "'a list => nat set => 'a list"
nipkow@15302
    51
clasohm@923
    52
nipkow@13146
    53
nonterminals lupdbinds lupdbind
nipkow@5077
    54
clasohm@923
    55
syntax
wenzelm@13366
    56
  -- {* list Enumeration *}
wenzelm@13366
    57
  "@list" :: "args => 'a list"    ("[(_)]")
clasohm@923
    58
wenzelm@13366
    59
  -- {* Special syntax for filter *}
wenzelm@13366
    60
  "@filter" :: "[pttrn, 'a list, bool] => 'a list"    ("(1[_:_./ _])")
clasohm@923
    61
wenzelm@13366
    62
  -- {* list update *}
wenzelm@13366
    63
  "_lupdbind":: "['a, 'a] => lupdbind"    ("(2_ :=/ _)")
wenzelm@13366
    64
  "" :: "lupdbind => lupdbinds"    ("_")
wenzelm@13366
    65
  "_lupdbinds" :: "[lupdbind, lupdbinds] => lupdbinds"    ("_,/ _")
wenzelm@13366
    66
  "_LUpdate" :: "['a, lupdbinds] => 'a"    ("_/[(_)]" [900,0] 900)
nipkow@5077
    67
wenzelm@13366
    68
  upto:: "nat => nat => nat list"    ("(1[_../_])")
nipkow@5427
    69
clasohm@923
    70
translations
wenzelm@13366
    71
  "[x, xs]" == "x#[xs]"
wenzelm@13366
    72
  "[x]" == "x#[]"
wenzelm@13366
    73
  "[x:xs . P]"== "filter (%x. P) xs"
clasohm@923
    74
wenzelm@13366
    75
  "_LUpdate xs (_lupdbinds b bs)"== "_LUpdate (_LUpdate xs b) bs"
wenzelm@13366
    76
  "xs[i:=x]" == "list_update xs i x"
nipkow@5077
    77
nipkow@15425
    78
  "[i..j]" == "[i..<(Suc j)]"
nipkow@5427
    79
nipkow@5427
    80
wenzelm@12114
    81
syntax (xsymbols)
wenzelm@13366
    82
  "@filter" :: "[pttrn, 'a list, bool] => 'a list"("(1[_\<in>_ ./ _])")
kleing@14565
    83
syntax (HTML output)
kleing@14565
    84
  "@filter" :: "[pttrn, 'a list, bool] => 'a list"("(1[_\<in>_ ./ _])")
wenzelm@2262
    85
wenzelm@2262
    86
wenzelm@13142
    87
text {*
wenzelm@14589
    88
  Function @{text size} is overloaded for all datatypes. Users may
wenzelm@13366
    89
  refer to the list version as @{text length}. *}
paulson@3342
    90
wenzelm@13142
    91
syntax length :: "'a list => nat"
wenzelm@13142
    92
translations "length" => "size :: _ list => nat"
paulson@3342
    93
wenzelm@13142
    94
typed_print_translation {*
wenzelm@13366
    95
  let
wenzelm@13366
    96
    fun size_tr' _ (Type ("fun", (Type ("list", _) :: _))) [t] =
wenzelm@13366
    97
          Syntax.const "length" $ t
wenzelm@13366
    98
      | size_tr' _ _ _ = raise Match;
wenzelm@13366
    99
  in [("size", size_tr')] end
wenzelm@13114
   100
*}
paulson@3437
   101
nipkow@15302
   102
berghofe@5183
   103
primrec
paulson@15307
   104
  "hd(x#xs) = x"
paulson@15307
   105
berghofe@5183
   106
primrec
paulson@15307
   107
  "tl([]) = []"
paulson@15307
   108
  "tl(x#xs) = xs"
paulson@15307
   109
berghofe@5183
   110
primrec
paulson@15307
   111
  "null([]) = True"
paulson@15307
   112
  "null(x#xs) = False"
paulson@15307
   113
paulson@8972
   114
primrec
paulson@15307
   115
  "last(x#xs) = (if xs=[] then x else last xs)"
paulson@15307
   116
berghofe@5183
   117
primrec
paulson@15307
   118
  "butlast []= []"
paulson@15307
   119
  "butlast(x#xs) = (if xs=[] then [] else x#butlast xs)"
paulson@15307
   120
berghofe@5183
   121
primrec
paulson@15307
   122
  "x mem [] = False"
paulson@15307
   123
  "x mem (y#ys) = (if y=x then True else x mem ys)"
paulson@15307
   124
oheimb@5518
   125
primrec
paulson@15307
   126
  "set [] = {}"
paulson@15307
   127
  "set (x#xs) = insert x (set xs)"
paulson@15307
   128
berghofe@5183
   129
primrec
paulson@15307
   130
  list_all_Nil:"list_all P [] = True"
paulson@15307
   131
  list_all_Cons: "list_all P (x#xs) = (P(x) \<and> list_all P xs)"
paulson@15307
   132
oheimb@5518
   133
primrec
nipkow@15439
   134
"list_ex P [] = False"
nipkow@15439
   135
"list_ex P (x#xs) = (P x \<or> list_ex P xs)"
nipkow@15439
   136
nipkow@15439
   137
primrec
paulson@15307
   138
  "map f [] = []"
paulson@15307
   139
  "map f (x#xs) = f(x)#map f xs"
paulson@15307
   140
berghofe@5183
   141
primrec
paulson@15307
   142
  append_Nil:"[]@ys = ys"
paulson@15307
   143
  append_Cons: "(x#xs)@ys = x#(xs@ys)"
paulson@15307
   144
berghofe@5183
   145
primrec
paulson@15307
   146
  "rev([]) = []"
paulson@15307
   147
  "rev(x#xs) = rev(xs) @ [x]"
paulson@15307
   148
berghofe@5183
   149
primrec
paulson@15307
   150
  "filter P [] = []"
paulson@15307
   151
  "filter P (x#xs) = (if P x then x#filter P xs else filter P xs)"
paulson@15307
   152
berghofe@5183
   153
primrec
paulson@15307
   154
  foldl_Nil:"foldl f a [] = a"
paulson@15307
   155
  foldl_Cons: "foldl f a (x#xs) = foldl f (f a x) xs"
paulson@15307
   156
berghofe@5183
   157
primrec
paulson@15307
   158
  "foldr f [] a = a"
paulson@15307
   159
  "foldr f (x#xs) a = f x (foldr f xs a)"
paulson@15307
   160
paulson@8000
   161
primrec
paulson@15307
   162
  "concat([]) = []"
paulson@15307
   163
  "concat(x#xs) = x @ concat(xs)"
paulson@15307
   164
berghofe@5183
   165
primrec
paulson@15307
   166
  drop_Nil:"drop n [] = []"
paulson@15307
   167
  drop_Cons: "drop n (x#xs) = (case n of 0 => x#xs | Suc(m) => drop m xs)"
paulson@15307
   168
  -- {*Warning: simpset does not contain this definition, but separate
paulson@15307
   169
       theorems for @{text "n = 0"} and @{text "n = Suc k"} *}
paulson@15307
   170
berghofe@5183
   171
primrec
paulson@15307
   172
  take_Nil:"take n [] = []"
paulson@15307
   173
  take_Cons: "take n (x#xs) = (case n of 0 => [] | Suc(m) => x # take m xs)"
paulson@15307
   174
  -- {*Warning: simpset does not contain this definition, but separate
paulson@15307
   175
       theorems for @{text "n = 0"} and @{text "n = Suc k"} *}
paulson@15307
   176
berghofe@5183
   177
primrec
paulson@15307
   178
  nth_Cons:"(x#xs)!n = (case n of 0 => x | (Suc k) => xs!k)"
paulson@15307
   179
  -- {*Warning: simpset does not contain this definition, but separate
paulson@15307
   180
       theorems for @{text "n = 0"} and @{text "n = Suc k"} *}
paulson@15307
   181
wenzelm@13142
   182
primrec
paulson@15307
   183
  "[][i:=v] = []"
paulson@15307
   184
  "(x#xs)[i:=v] = (case i of 0 => v # xs | Suc j => x # xs[j:=v])"
paulson@15307
   185
berghofe@5183
   186
primrec
paulson@15307
   187
  "takeWhile P [] = []"
paulson@15307
   188
  "takeWhile P (x#xs) = (if P x then x#takeWhile P xs else [])"
paulson@15307
   189
berghofe@5183
   190
primrec
paulson@15307
   191
  "dropWhile P [] = []"
paulson@15307
   192
  "dropWhile P (x#xs) = (if P x then dropWhile P xs else x#xs)"
paulson@15307
   193
berghofe@5183
   194
primrec
paulson@15307
   195
  "zip xs [] = []"
paulson@15307
   196
  zip_Cons: "zip xs (y#ys) = (case xs of [] => [] | z#zs => (z,y)#zip zs ys)"
paulson@15307
   197
  -- {*Warning: simpset does not contain this definition, but separate
paulson@15307
   198
       theorems for @{text "xs = []"} and @{text "xs = z # zs"} *}
paulson@15307
   199
nipkow@5427
   200
primrec
nipkow@15425
   201
  upt_0: "[i..<0] = []"
nipkow@15425
   202
  upt_Suc: "[i..<(Suc j)] = (if i <= j then [i..<j] @ [j] else [])"
paulson@15307
   203
berghofe@5183
   204
primrec
paulson@15307
   205
  "distinct [] = True"
paulson@15307
   206
  "distinct (x#xs) = (x ~: set xs \<and> distinct xs)"
paulson@15307
   207
berghofe@5183
   208
primrec
paulson@15307
   209
  "remdups [] = []"
paulson@15307
   210
  "remdups (x#xs) = (if x : set xs then remdups xs else x # remdups xs)"
paulson@15307
   211
berghofe@5183
   212
primrec
paulson@15307
   213
  "remove1 x [] = []"
paulson@15307
   214
  "remove1 x (y#xs) = (if x=y then xs else y # remove1 x xs)"
paulson@15307
   215
nipkow@15110
   216
primrec
paulson@15307
   217
  replicate_0: "replicate 0 x = []"
paulson@15307
   218
  replicate_Suc: "replicate (Suc n) x = x # replicate n x"
paulson@15307
   219
nipkow@8115
   220
defs
nipkow@15302
   221
rotate1_def: "rotate1 xs == (case xs of [] \<Rightarrow> [] | x#xs \<Rightarrow> xs @ [x])"
nipkow@15302
   222
rotate_def:  "rotate n == rotate1 ^ n"
nipkow@15302
   223
nipkow@15302
   224
list_all2_def:
nipkow@15302
   225
 "list_all2 P xs ys ==
nipkow@15302
   226
  length xs = length ys \<and> (\<forall>(x, y) \<in> set (zip xs ys). P x y)"
nipkow@15302
   227
nipkow@15302
   228
sublist_def:
nipkow@15425
   229
 "sublist xs A == map fst (filter (%p. snd p : A) (zip xs [0..<size xs]))"
nipkow@5281
   230
nipkow@3507
   231
wenzelm@13142
   232
lemma not_Cons_self [simp]: "xs \<noteq> x # xs"
nipkow@13145
   233
by (induct xs) auto
nipkow@3507
   234
wenzelm@13142
   235
lemmas not_Cons_self2 [simp] = not_Cons_self [symmetric]
wenzelm@13114
   236
wenzelm@13142
   237
lemma neq_Nil_conv: "(xs \<noteq> []) = (\<exists>y ys. xs = y # ys)"
nipkow@13145
   238
by (induct xs) auto
wenzelm@13114
   239
wenzelm@13142
   240
lemma length_induct:
nipkow@13145
   241
"(!!xs. \<forall>ys. length ys < length xs --> P ys ==> P xs) ==> P xs"
nipkow@13145
   242
by (rule measure_induct [of length]) rules
wenzelm@13114
   243
wenzelm@13114
   244
nipkow@15392
   245
subsubsection {* @{text length} *}
wenzelm@13114
   246
wenzelm@13142
   247
text {*
nipkow@13145
   248
Needs to come before @{text "@"} because of theorem @{text
nipkow@13145
   249
append_eq_append_conv}.
wenzelm@13142
   250
*}
wenzelm@13114
   251
wenzelm@13142
   252
lemma length_append [simp]: "length (xs @ ys) = length xs + length ys"
nipkow@13145
   253
by (induct xs) auto
wenzelm@13114
   254
wenzelm@13142
   255
lemma length_map [simp]: "length (map f xs) = length xs"
nipkow@13145
   256
by (induct xs) auto
wenzelm@13114
   257
wenzelm@13142
   258
lemma length_rev [simp]: "length (rev xs) = length xs"
nipkow@13145
   259
by (induct xs) auto
wenzelm@13114
   260
wenzelm@13142
   261
lemma length_tl [simp]: "length (tl xs) = length xs - 1"
nipkow@13145
   262
by (cases xs) auto
wenzelm@13142
   263
wenzelm@13142
   264
lemma length_0_conv [iff]: "(length xs = 0) = (xs = [])"
nipkow@13145
   265
by (induct xs) auto
wenzelm@13142
   266
wenzelm@13142
   267
lemma length_greater_0_conv [iff]: "(0 < length xs) = (xs \<noteq> [])"
nipkow@13145
   268
by (induct xs) auto
wenzelm@13114
   269
wenzelm@13114
   270
lemma length_Suc_conv:
nipkow@13145
   271
"(length xs = Suc n) = (\<exists>y ys. xs = y # ys \<and> length ys = n)"
nipkow@13145
   272
by (induct xs) auto
wenzelm@13114
   273
nipkow@14025
   274
lemma Suc_length_conv:
nipkow@14025
   275
"(Suc n = length xs) = (\<exists>y ys. xs = y # ys \<and> length ys = n)"
paulson@14208
   276
apply (induct xs, simp, simp)
nipkow@14025
   277
apply blast
nipkow@14025
   278
done
nipkow@14025
   279
oheimb@14099
   280
lemma impossible_Cons [rule_format]: 
oheimb@14099
   281
  "length xs <= length ys --> xs = x # ys = False"
paulson@14208
   282
apply (induct xs, auto)
oheimb@14099
   283
done
oheimb@14099
   284
nipkow@14247
   285
lemma list_induct2[consumes 1]: "\<And>ys.
nipkow@14247
   286
 \<lbrakk> length xs = length ys;
nipkow@14247
   287
   P [] [];
nipkow@14247
   288
   \<And>x xs y ys. \<lbrakk> length xs = length ys; P xs ys \<rbrakk> \<Longrightarrow> P (x#xs) (y#ys) \<rbrakk>
nipkow@14247
   289
 \<Longrightarrow> P xs ys"
nipkow@14247
   290
apply(induct xs)
nipkow@14247
   291
 apply simp
nipkow@14247
   292
apply(case_tac ys)
nipkow@14247
   293
 apply simp
nipkow@14247
   294
apply(simp)
nipkow@14247
   295
done
wenzelm@13114
   296
nipkow@15392
   297
subsubsection {* @{text "@"} -- append *}
wenzelm@13114
   298
wenzelm@13142
   299
lemma append_assoc [simp]: "(xs @ ys) @ zs = xs @ (ys @ zs)"
nipkow@13145
   300
by (induct xs) auto
wenzelm@13114
   301
wenzelm@13142
   302
lemma append_Nil2 [simp]: "xs @ [] = xs"
nipkow@13145
   303
by (induct xs) auto
wenzelm@13114
   304
wenzelm@13142
   305
lemma append_is_Nil_conv [iff]: "(xs @ ys = []) = (xs = [] \<and> ys = [])"
nipkow@13145
   306
by (induct xs) auto
wenzelm@13114
   307
wenzelm@13142
   308
lemma Nil_is_append_conv [iff]: "([] = xs @ ys) = (xs = [] \<and> ys = [])"
nipkow@13145
   309
by (induct xs) auto
wenzelm@13114
   310
wenzelm@13142
   311
lemma append_self_conv [iff]: "(xs @ ys = xs) = (ys = [])"
nipkow@13145
   312
by (induct xs) auto
wenzelm@13114
   313
wenzelm@13142
   314
lemma self_append_conv [iff]: "(xs = xs @ ys) = (ys = [])"
nipkow@13145
   315
by (induct xs) auto
wenzelm@13114
   316
berghofe@13883
   317
lemma append_eq_append_conv [simp]:
berghofe@13883
   318
 "!!ys. length xs = length ys \<or> length us = length vs
berghofe@13883
   319
 ==> (xs@us = ys@vs) = (xs=ys \<and> us=vs)"
berghofe@13883
   320
apply (induct xs)
paulson@14208
   321
 apply (case_tac ys, simp, force)
paulson@14208
   322
apply (case_tac ys, force, simp)
nipkow@13145
   323
done
wenzelm@13114
   324
nipkow@14495
   325
lemma append_eq_append_conv2: "!!ys zs ts.
nipkow@14495
   326
 (xs @ ys = zs @ ts) =
nipkow@14495
   327
 (EX us. xs = zs @ us & us @ ys = ts | xs @ us = zs & ys = us@ ts)"
nipkow@14495
   328
apply (induct xs)
nipkow@14495
   329
 apply fastsimp
nipkow@14495
   330
apply(case_tac zs)
nipkow@14495
   331
 apply simp
nipkow@14495
   332
apply fastsimp
nipkow@14495
   333
done
nipkow@14495
   334
wenzelm@13142
   335
lemma same_append_eq [iff]: "(xs @ ys = xs @ zs) = (ys = zs)"
nipkow@13145
   336
by simp
wenzelm@13114
   337
wenzelm@13142
   338
lemma append1_eq_conv [iff]: "(xs @ [x] = ys @ [y]) = (xs = ys \<and> x = y)"
nipkow@13145
   339
by simp
wenzelm@13114
   340
wenzelm@13142
   341
lemma append_same_eq [iff]: "(ys @ xs = zs @ xs) = (ys = zs)"
nipkow@13145
   342
by simp
wenzelm@13114
   343
wenzelm@13142
   344
lemma append_self_conv2 [iff]: "(xs @ ys = ys) = (xs = [])"
nipkow@13145
   345
using append_same_eq [of _ _ "[]"] by auto
wenzelm@13114
   346
wenzelm@13142
   347
lemma self_append_conv2 [iff]: "(ys = xs @ ys) = (xs = [])"
nipkow@13145
   348
using append_same_eq [of "[]"] by auto
wenzelm@13114
   349
wenzelm@13142
   350
lemma hd_Cons_tl [simp]: "xs \<noteq> [] ==> hd xs # tl xs = xs"
nipkow@13145
   351
by (induct xs) auto
wenzelm@13114
   352
wenzelm@13142
   353
lemma hd_append: "hd (xs @ ys) = (if xs = [] then hd ys else hd xs)"
nipkow@13145
   354
by (induct xs) auto
wenzelm@13114
   355
wenzelm@13142
   356
lemma hd_append2 [simp]: "xs \<noteq> [] ==> hd (xs @ ys) = hd xs"
nipkow@13145
   357
by (simp add: hd_append split: list.split)
wenzelm@13114
   358
wenzelm@13142
   359
lemma tl_append: "tl (xs @ ys) = (case xs of [] => tl ys | z#zs => zs @ ys)"
nipkow@13145
   360
by (simp split: list.split)
wenzelm@13114
   361
wenzelm@13142
   362
lemma tl_append2 [simp]: "xs \<noteq> [] ==> tl (xs @ ys) = tl xs @ ys"
nipkow@13145
   363
by (simp add: tl_append split: list.split)
wenzelm@13114
   364
wenzelm@13142
   365
nipkow@14300
   366
lemma Cons_eq_append_conv: "x#xs = ys@zs =
nipkow@14300
   367
 (ys = [] & x#xs = zs | (EX ys'. x#ys' = ys & xs = ys'@zs))"
nipkow@14300
   368
by(cases ys) auto
nipkow@14300
   369
nipkow@15281
   370
lemma append_eq_Cons_conv: "(ys@zs = x#xs) =
nipkow@15281
   371
 (ys = [] & zs = x#xs | (EX ys'. ys = x#ys' & ys'@zs = xs))"
nipkow@15281
   372
by(cases ys) auto
nipkow@15281
   373
nipkow@14300
   374
wenzelm@13142
   375
text {* Trivial rules for solving @{text "@"}-equations automatically. *}
wenzelm@13114
   376
wenzelm@13114
   377
lemma eq_Nil_appendI: "xs = ys ==> xs = [] @ ys"
nipkow@13145
   378
by simp
wenzelm@13114
   379
wenzelm@13142
   380
lemma Cons_eq_appendI:
nipkow@13145
   381
"[| x # xs1 = ys; xs = xs1 @ zs |] ==> x # xs = ys @ zs"
nipkow@13145
   382
by (drule sym) simp
wenzelm@13114
   383
wenzelm@13142
   384
lemma append_eq_appendI:
nipkow@13145
   385
"[| xs @ xs1 = zs; ys = xs1 @ us |] ==> xs @ ys = zs @ us"
nipkow@13145
   386
by (drule sym) simp
wenzelm@13114
   387
wenzelm@13114
   388
wenzelm@13142
   389
text {*
nipkow@13145
   390
Simplification procedure for all list equalities.
nipkow@13145
   391
Currently only tries to rearrange @{text "@"} to see if
nipkow@13145
   392
- both lists end in a singleton list,
nipkow@13145
   393
- or both lists end in the same list.
wenzelm@13142
   394
*}
wenzelm@13142
   395
wenzelm@13142
   396
ML_setup {*
nipkow@3507
   397
local
nipkow@3507
   398
wenzelm@13122
   399
val append_assoc = thm "append_assoc";
wenzelm@13122
   400
val append_Nil = thm "append_Nil";
wenzelm@13122
   401
val append_Cons = thm "append_Cons";
wenzelm@13122
   402
val append1_eq_conv = thm "append1_eq_conv";
wenzelm@13122
   403
val append_same_eq = thm "append_same_eq";
wenzelm@13122
   404
wenzelm@13114
   405
fun last (cons as Const("List.list.Cons",_) $ _ $ xs) =
wenzelm@13462
   406
  (case xs of Const("List.list.Nil",_) => cons | _ => last xs)
wenzelm@13462
   407
  | last (Const("List.op @",_) $ _ $ ys) = last ys
wenzelm@13462
   408
  | last t = t;
nipkow@3507
   409
wenzelm@13114
   410
fun list1 (Const("List.list.Cons",_) $ _ $ Const("List.list.Nil",_)) = true
wenzelm@13462
   411
  | list1 _ = false;
wenzelm@13114
   412
wenzelm@13114
   413
fun butlast ((cons as Const("List.list.Cons",_) $ x) $ xs) =
wenzelm@13462
   414
  (case xs of Const("List.list.Nil",_) => xs | _ => cons $ butlast xs)
wenzelm@13462
   415
  | butlast ((app as Const("List.op @",_) $ xs) $ ys) = app $ butlast ys
wenzelm@13462
   416
  | butlast xs = Const("List.list.Nil",fastype_of xs);
wenzelm@13114
   417
wenzelm@13114
   418
val rearr_tac =
wenzelm@13462
   419
  simp_tac (HOL_basic_ss addsimps [append_assoc, append_Nil, append_Cons]);
wenzelm@13114
   420
wenzelm@13114
   421
fun list_eq sg _ (F as (eq as Const(_,eqT)) $ lhs $ rhs) =
wenzelm@13462
   422
  let
wenzelm@13462
   423
    val lastl = last lhs and lastr = last rhs;
wenzelm@13462
   424
    fun rearr conv =
wenzelm@13462
   425
      let
wenzelm@13462
   426
        val lhs1 = butlast lhs and rhs1 = butlast rhs;
wenzelm@13462
   427
        val Type(_,listT::_) = eqT
wenzelm@13462
   428
        val appT = [listT,listT] ---> listT
wenzelm@13462
   429
        val app = Const("List.op @",appT)
wenzelm@13462
   430
        val F2 = eq $ (app$lhs1$lastl) $ (app$rhs1$lastr)
wenzelm@13480
   431
        val eq = HOLogic.mk_Trueprop (HOLogic.mk_eq (F,F2));
wenzelm@13480
   432
        val thm = Tactic.prove sg [] [] eq (K (rearr_tac 1));
skalberg@15531
   433
      in SOME ((conv RS (thm RS trans)) RS eq_reflection) end;
wenzelm@13114
   434
wenzelm@13462
   435
  in
wenzelm@13462
   436
    if list1 lastl andalso list1 lastr then rearr append1_eq_conv
wenzelm@13462
   437
    else if lastl aconv lastr then rearr append_same_eq
skalberg@15531
   438
    else NONE
wenzelm@13462
   439
  end;
wenzelm@13462
   440
nipkow@3507
   441
in
wenzelm@13462
   442
wenzelm@13462
   443
val list_eq_simproc =
wenzelm@13462
   444
  Simplifier.simproc (Theory.sign_of (the_context ())) "list_eq" ["(xs::'a list) = ys"] list_eq;
wenzelm@13462
   445
wenzelm@13114
   446
end;
nipkow@3507
   447
wenzelm@13114
   448
Addsimprocs [list_eq_simproc];
wenzelm@13114
   449
*}
wenzelm@13114
   450
wenzelm@13114
   451
nipkow@15392
   452
subsubsection {* @{text map} *}
wenzelm@13114
   453
wenzelm@13142
   454
lemma map_ext: "(!!x. x : set xs --> f x = g x) ==> map f xs = map g xs"
nipkow@13145
   455
by (induct xs) simp_all
wenzelm@13114
   456
wenzelm@13142
   457
lemma map_ident [simp]: "map (\<lambda>x. x) = (\<lambda>xs. xs)"
nipkow@13145
   458
by (rule ext, induct_tac xs) auto
wenzelm@13114
   459
wenzelm@13142
   460
lemma map_append [simp]: "map f (xs @ ys) = map f xs @ map f ys"
nipkow@13145
   461
by (induct xs) auto
wenzelm@13114
   462
wenzelm@13142
   463
lemma map_compose: "map (f o g) xs = map f (map g xs)"
nipkow@13145
   464
by (induct xs) (auto simp add: o_def)
wenzelm@13114
   465
wenzelm@13142
   466
lemma rev_map: "rev (map f xs) = map f (rev xs)"
nipkow@13145
   467
by (induct xs) auto
wenzelm@13114
   468
nipkow@13737
   469
lemma map_eq_conv[simp]: "(map f xs = map g xs) = (!x : set xs. f x = g x)"
nipkow@13737
   470
by (induct xs) auto
nipkow@13737
   471
wenzelm@13366
   472
lemma map_cong [recdef_cong]:
nipkow@13145
   473
"xs = ys ==> (!!x. x : set ys ==> f x = g x) ==> map f xs = map g ys"
nipkow@13145
   474
-- {* a congruence rule for @{text map} *}
nipkow@13737
   475
by simp
wenzelm@13114
   476
wenzelm@13142
   477
lemma map_is_Nil_conv [iff]: "(map f xs = []) = (xs = [])"
nipkow@13145
   478
by (cases xs) auto
wenzelm@13114
   479
wenzelm@13142
   480
lemma Nil_is_map_conv [iff]: "([] = map f xs) = (xs = [])"
nipkow@13145
   481
by (cases xs) auto
wenzelm@13114
   482
nipkow@14025
   483
lemma map_eq_Cons_conv[iff]:
nipkow@14025
   484
 "(map f xs = y#ys) = (\<exists>z zs. xs = z#zs \<and> f z = y \<and> map f zs = ys)"
nipkow@13145
   485
by (cases xs) auto
wenzelm@13114
   486
nipkow@14025
   487
lemma Cons_eq_map_conv[iff]:
nipkow@14025
   488
 "(x#xs = map f ys) = (\<exists>z zs. ys = z#zs \<and> x = f z \<and> xs = map f zs)"
nipkow@14025
   489
by (cases ys) auto
nipkow@14025
   490
nipkow@14111
   491
lemma ex_map_conv:
nipkow@14111
   492
  "(EX xs. ys = map f xs) = (ALL y : set ys. EX x. y = f x)"
nipkow@14111
   493
by(induct ys, auto)
nipkow@14111
   494
nipkow@15110
   495
lemma map_eq_imp_length_eq:
nipkow@15110
   496
  "!!xs. map f xs = map f ys ==> length xs = length ys"
nipkow@15110
   497
apply (induct ys)
nipkow@15110
   498
 apply simp
nipkow@15110
   499
apply(simp (no_asm_use))
nipkow@15110
   500
apply clarify
nipkow@15110
   501
apply(simp (no_asm_use))
nipkow@15110
   502
apply fast
nipkow@15110
   503
done
nipkow@15110
   504
nipkow@15110
   505
lemma map_inj_on:
nipkow@15110
   506
 "[| map f xs = map f ys; inj_on f (set xs Un set ys) |]
nipkow@15110
   507
  ==> xs = ys"
nipkow@15110
   508
apply(frule map_eq_imp_length_eq)
nipkow@15110
   509
apply(rotate_tac -1)
nipkow@15110
   510
apply(induct rule:list_induct2)
nipkow@15110
   511
 apply simp
nipkow@15110
   512
apply(simp)
nipkow@15110
   513
apply (blast intro:sym)
nipkow@15110
   514
done
nipkow@15110
   515
nipkow@15110
   516
lemma inj_on_map_eq_map:
nipkow@15110
   517
 "inj_on f (set xs Un set ys) \<Longrightarrow> (map f xs = map f ys) = (xs = ys)"
nipkow@15110
   518
by(blast dest:map_inj_on)
nipkow@15110
   519
wenzelm@13114
   520
lemma map_injective:
nipkow@14338
   521
 "!!xs. map f xs = map f ys ==> inj f ==> xs = ys"
nipkow@14338
   522
by (induct ys) (auto dest!:injD)
wenzelm@13114
   523
nipkow@14339
   524
lemma inj_map_eq_map[simp]: "inj f \<Longrightarrow> (map f xs = map f ys) = (xs = ys)"
nipkow@14339
   525
by(blast dest:map_injective)
nipkow@14339
   526
wenzelm@13114
   527
lemma inj_mapI: "inj f ==> inj (map f)"
paulson@13585
   528
by (rules dest: map_injective injD intro: inj_onI)
wenzelm@13114
   529
wenzelm@13114
   530
lemma inj_mapD: "inj (map f) ==> inj f"
paulson@14208
   531
apply (unfold inj_on_def, clarify)
nipkow@13145
   532
apply (erule_tac x = "[x]" in ballE)
paulson@14208
   533
 apply (erule_tac x = "[y]" in ballE, simp, blast)
nipkow@13145
   534
apply blast
nipkow@13145
   535
done
wenzelm@13114
   536
nipkow@14339
   537
lemma inj_map[iff]: "inj (map f) = inj f"
nipkow@13145
   538
by (blast dest: inj_mapD intro: inj_mapI)
wenzelm@13114
   539
nipkow@15303
   540
lemma inj_on_mapI: "inj_on f (\<Union>(set ` A)) \<Longrightarrow> inj_on (map f) A"
nipkow@15303
   541
apply(rule inj_onI)
nipkow@15303
   542
apply(erule map_inj_on)
nipkow@15303
   543
apply(blast intro:inj_onI dest:inj_onD)
nipkow@15303
   544
done
nipkow@15303
   545
kleing@14343
   546
lemma map_idI: "(\<And>x. x \<in> set xs \<Longrightarrow> f x = x) \<Longrightarrow> map f xs = xs"
kleing@14343
   547
by (induct xs, auto)
wenzelm@13114
   548
nipkow@14402
   549
lemma map_fun_upd [simp]: "y \<notin> set xs \<Longrightarrow> map (f(y:=v)) xs = map f xs"
nipkow@14402
   550
by (induct xs) auto
nipkow@14402
   551
nipkow@15110
   552
lemma map_fst_zip[simp]:
nipkow@15110
   553
  "length xs = length ys \<Longrightarrow> map fst (zip xs ys) = xs"
nipkow@15110
   554
by (induct rule:list_induct2, simp_all)
nipkow@15110
   555
nipkow@15110
   556
lemma map_snd_zip[simp]:
nipkow@15110
   557
  "length xs = length ys \<Longrightarrow> map snd (zip xs ys) = ys"
nipkow@15110
   558
by (induct rule:list_induct2, simp_all)
nipkow@15110
   559
nipkow@15110
   560
nipkow@15392
   561
subsubsection {* @{text rev} *}
wenzelm@13114
   562
wenzelm@13142
   563
lemma rev_append [simp]: "rev (xs @ ys) = rev ys @ rev xs"
nipkow@13145
   564
by (induct xs) auto
wenzelm@13114
   565
wenzelm@13142
   566
lemma rev_rev_ident [simp]: "rev (rev xs) = xs"
nipkow@13145
   567
by (induct xs) auto
wenzelm@13114
   568
kleing@15870
   569
lemma rev_swap: "(rev xs = ys) = (xs = rev ys)"
kleing@15870
   570
by auto
kleing@15870
   571
wenzelm@13142
   572
lemma rev_is_Nil_conv [iff]: "(rev xs = []) = (xs = [])"
nipkow@13145
   573
by (induct xs) auto
wenzelm@13114
   574
wenzelm@13142
   575
lemma Nil_is_rev_conv [iff]: "([] = rev xs) = (xs = [])"
nipkow@13145
   576
by (induct xs) auto
wenzelm@13114
   577
kleing@15870
   578
lemma rev_singleton_conv [simp]: "(rev xs = [x]) = (xs = [x])"
kleing@15870
   579
by (cases xs) auto
kleing@15870
   580
kleing@15870
   581
lemma singleton_rev_conv [simp]: "([x] = rev xs) = (xs = [x])"
kleing@15870
   582
by (cases xs) auto
kleing@15870
   583
wenzelm@13142
   584
lemma rev_is_rev_conv [iff]: "!!ys. (rev xs = rev ys) = (xs = ys)"
paulson@14208
   585
apply (induct xs, force)
paulson@14208
   586
apply (case_tac ys, simp, force)
nipkow@13145
   587
done
wenzelm@13114
   588
nipkow@15439
   589
lemma inj_on_rev[iff]: "inj_on rev A"
nipkow@15439
   590
by(simp add:inj_on_def)
nipkow@15439
   591
wenzelm@13366
   592
lemma rev_induct [case_names Nil snoc]:
wenzelm@13366
   593
  "[| P []; !!x xs. P xs ==> P (xs @ [x]) |] ==> P xs"
berghofe@15489
   594
apply(simplesubst rev_rev_ident[symmetric])
nipkow@13145
   595
apply(rule_tac list = "rev xs" in list.induct, simp_all)
nipkow@13145
   596
done
wenzelm@13114
   597
nipkow@13145
   598
ML {* val rev_induct_tac = induct_thm_tac (thm "rev_induct") *}-- "compatibility"
wenzelm@13114
   599
wenzelm@13366
   600
lemma rev_exhaust [case_names Nil snoc]:
wenzelm@13366
   601
  "(xs = [] ==> P) ==>(!!ys y. xs = ys @ [y] ==> P) ==> P"
nipkow@13145
   602
by (induct xs rule: rev_induct) auto
wenzelm@13114
   603
wenzelm@13366
   604
lemmas rev_cases = rev_exhaust
wenzelm@13366
   605
wenzelm@13114
   606
nipkow@15392
   607
subsubsection {* @{text set} *}
wenzelm@13114
   608
wenzelm@13142
   609
lemma finite_set [iff]: "finite (set xs)"
nipkow@13145
   610
by (induct xs) auto
wenzelm@13114
   611
wenzelm@13142
   612
lemma set_append [simp]: "set (xs @ ys) = (set xs \<union> set ys)"
nipkow@13145
   613
by (induct xs) auto
wenzelm@13114
   614
oheimb@14099
   615
lemma hd_in_set: "l = x#xs \<Longrightarrow> x\<in>set l"
paulson@14208
   616
by (case_tac l, auto)
oheimb@14099
   617
wenzelm@13142
   618
lemma set_subset_Cons: "set xs \<subseteq> set (x # xs)"
nipkow@13145
   619
by auto
wenzelm@13114
   620
oheimb@14099
   621
lemma set_ConsD: "y \<in> set (x # xs) \<Longrightarrow> y=x \<or> y \<in> set xs" 
oheimb@14099
   622
by auto
oheimb@14099
   623
wenzelm@13142
   624
lemma set_empty [iff]: "(set xs = {}) = (xs = [])"
nipkow@13145
   625
by (induct xs) auto
wenzelm@13114
   626
nipkow@15245
   627
lemma set_empty2[iff]: "({} = set xs) = (xs = [])"
nipkow@15245
   628
by(induct xs) auto
nipkow@15245
   629
wenzelm@13142
   630
lemma set_rev [simp]: "set (rev xs) = set xs"
nipkow@13145
   631
by (induct xs) auto
wenzelm@13114
   632
wenzelm@13142
   633
lemma set_map [simp]: "set (map f xs) = f`(set xs)"
nipkow@13145
   634
by (induct xs) auto
wenzelm@13114
   635
wenzelm@13142
   636
lemma set_filter [simp]: "set (filter P xs) = {x. x : set xs \<and> P x}"
nipkow@13145
   637
by (induct xs) auto
wenzelm@13114
   638
nipkow@15425
   639
lemma set_upt [simp]: "set[i..<j] = {k. i \<le> k \<and> k < j}"
paulson@14208
   640
apply (induct j, simp_all)
paulson@14208
   641
apply (erule ssubst, auto)
nipkow@13145
   642
done
wenzelm@13114
   643
wenzelm@13142
   644
lemma in_set_conv_decomp: "(x : set xs) = (\<exists>ys zs. xs = ys @ x # zs)"
paulson@15113
   645
proof (induct xs)
paulson@15113
   646
  case Nil show ?case by simp
paulson@15113
   647
  case (Cons a xs)
paulson@15113
   648
  show ?case
paulson@15113
   649
  proof 
paulson@15113
   650
    assume "x \<in> set (a # xs)"
paulson@15113
   651
    with prems show "\<exists>ys zs. a # xs = ys @ x # zs"
paulson@15113
   652
      by (simp, blast intro: Cons_eq_appendI)
paulson@15113
   653
  next
paulson@15113
   654
    assume "\<exists>ys zs. a # xs = ys @ x # zs"
paulson@15113
   655
    then obtain ys zs where eq: "a # xs = ys @ x # zs" by blast
paulson@15113
   656
    show "x \<in> set (a # xs)" 
paulson@15113
   657
      by (cases ys, auto simp add: eq)
paulson@15113
   658
  qed
paulson@15113
   659
qed
wenzelm@13114
   660
paulson@13508
   661
lemma finite_list: "finite A ==> EX l. set l = A"
paulson@13508
   662
apply (erule finite_induct, auto)
paulson@13508
   663
apply (rule_tac x="x#l" in exI, auto)
paulson@13508
   664
done
paulson@13508
   665
kleing@14388
   666
lemma card_length: "card (set xs) \<le> length xs"
kleing@14388
   667
by (induct xs) (auto simp add: card_insert_if)
wenzelm@13114
   668
paulson@15168
   669
nipkow@15439
   670
subsubsection {* @{text mem}, @{text list_all} and @{text list_ex} *}
wenzelm@13114
   671
nipkow@15302
   672
text{* Only use @{text mem} for generating executable code.  Otherwise
nipkow@15439
   673
use @{prop"x : set xs"} instead --- it is much easier to reason about.
nipkow@15439
   674
The same is true for @{text list_all} and @{text list_ex}: write
nipkow@15439
   675
@{text"\<forall>x\<in>set xs"} and @{text"\<exists>x\<in>set xs"} instead because the HOL
nipkow@15439
   676
quantifiers are aleady known to the automatic provers. For the purpose
nipkow@15439
   677
of generating executable code use the theorems @{text set_mem_eq},
nipkow@15439
   678
@{text list_all_conv} and @{text list_ex_iff} to get rid off or
nipkow@15439
   679
introduce the combinators. *}
nipkow@15302
   680
wenzelm@13114
   681
lemma set_mem_eq: "(x mem xs) = (x : set xs)"
nipkow@13145
   682
by (induct xs) auto
wenzelm@13114
   683
wenzelm@13142
   684
lemma list_all_conv: "list_all P xs = (\<forall>x \<in> set xs. P x)"
nipkow@13145
   685
by (induct xs) auto
wenzelm@13114
   686
wenzelm@13142
   687
lemma list_all_append [simp]:
nipkow@13145
   688
"list_all P (xs @ ys) = (list_all P xs \<and> list_all P ys)"
nipkow@13145
   689
by (induct xs) auto
wenzelm@13114
   690
kleing@15426
   691
lemma list_all_rev [simp]: "list_all P (rev xs) = list_all P xs"
kleing@15426
   692
by (simp add: list_all_conv)
kleing@15426
   693
nipkow@15439
   694
lemma list_ex_iff: "list_ex P xs = (\<exists>x \<in> set xs. P x)"
nipkow@15439
   695
by (induct xs) simp_all
kleing@15426
   696
wenzelm@13114
   697
nipkow@15392
   698
subsubsection {* @{text filter} *}
wenzelm@13114
   699
wenzelm@13142
   700
lemma filter_append [simp]: "filter P (xs @ ys) = filter P xs @ filter P ys"
nipkow@13145
   701
by (induct xs) auto
wenzelm@13114
   702
nipkow@15305
   703
lemma rev_filter: "rev (filter P xs) = filter P (rev xs)"
nipkow@15305
   704
by (induct xs) simp_all
nipkow@15305
   705
wenzelm@13142
   706
lemma filter_filter [simp]: "filter P (filter Q xs) = filter (\<lambda>x. Q x \<and> P x) xs"
nipkow@13145
   707
by (induct xs) auto
wenzelm@13114
   708
wenzelm@13142
   709
lemma filter_True [simp]: "\<forall>x \<in> set xs. P x ==> filter P xs = xs"
nipkow@13145
   710
by (induct xs) auto
wenzelm@13114
   711
wenzelm@13142
   712
lemma filter_False [simp]: "\<forall>x \<in> set xs. \<not> P x ==> filter P xs = []"
nipkow@13145
   713
by (induct xs) auto
wenzelm@13114
   714
nipkow@15246
   715
lemma length_filter_le [simp]: "length (filter P xs) \<le> length xs"
nipkow@13145
   716
by (induct xs) (auto simp add: le_SucI)
wenzelm@13114
   717
wenzelm@13142
   718
lemma filter_is_subset [simp]: "set (filter P xs) \<le> set xs"
nipkow@13145
   719
by auto
wenzelm@13114
   720
nipkow@15246
   721
lemma length_filter_less:
nipkow@15246
   722
  "\<lbrakk> x : set xs; ~ P x \<rbrakk> \<Longrightarrow> length(filter P xs) < length xs"
nipkow@15246
   723
proof (induct xs)
nipkow@15246
   724
  case Nil thus ?case by simp
nipkow@15246
   725
next
nipkow@15246
   726
  case (Cons x xs) thus ?case
nipkow@15246
   727
    apply (auto split:split_if_asm)
nipkow@15246
   728
    using length_filter_le[of P xs] apply arith
nipkow@15246
   729
  done
nipkow@15246
   730
qed
wenzelm@13114
   731
nipkow@15281
   732
lemma length_filter_conv_card:
nipkow@15281
   733
 "length(filter p xs) = card{i. i < length xs & p(xs!i)}"
nipkow@15281
   734
proof (induct xs)
nipkow@15281
   735
  case Nil thus ?case by simp
nipkow@15281
   736
next
nipkow@15281
   737
  case (Cons x xs)
nipkow@15281
   738
  let ?S = "{i. i < length xs & p(xs!i)}"
nipkow@15281
   739
  have fin: "finite ?S" by(fast intro: bounded_nat_set_is_finite)
nipkow@15281
   740
  show ?case (is "?l = card ?S'")
nipkow@15281
   741
  proof (cases)
nipkow@15281
   742
    assume "p x"
nipkow@15281
   743
    hence eq: "?S' = insert 0 (Suc ` ?S)"
nipkow@15281
   744
      by(auto simp add: nth_Cons image_def split:nat.split elim:lessE)
nipkow@15281
   745
    have "length (filter p (x # xs)) = Suc(card ?S)"
nipkow@15281
   746
      using Cons by simp
nipkow@15281
   747
    also have "\<dots> = Suc(card(Suc ` ?S))" using fin
nipkow@15281
   748
      by (simp add: card_image inj_Suc)
nipkow@15281
   749
    also have "\<dots> = card ?S'" using eq fin
nipkow@15281
   750
      by (simp add:card_insert_if) (simp add:image_def)
nipkow@15281
   751
    finally show ?thesis .
nipkow@15281
   752
  next
nipkow@15281
   753
    assume "\<not> p x"
nipkow@15281
   754
    hence eq: "?S' = Suc ` ?S"
nipkow@15281
   755
      by(auto simp add: nth_Cons image_def split:nat.split elim:lessE)
nipkow@15281
   756
    have "length (filter p (x # xs)) = card ?S"
nipkow@15281
   757
      using Cons by simp
nipkow@15281
   758
    also have "\<dots> = card(Suc ` ?S)" using fin
nipkow@15281
   759
      by (simp add: card_image inj_Suc)
nipkow@15281
   760
    also have "\<dots> = card ?S'" using eq fin
nipkow@15281
   761
      by (simp add:card_insert_if)
nipkow@15281
   762
    finally show ?thesis .
nipkow@15281
   763
  qed
nipkow@15281
   764
qed
nipkow@15281
   765
nipkow@15281
   766
nipkow@15392
   767
subsubsection {* @{text concat} *}
wenzelm@13114
   768
wenzelm@13142
   769
lemma concat_append [simp]: "concat (xs @ ys) = concat xs @ concat ys"
nipkow@13145
   770
by (induct xs) auto
wenzelm@13114
   771
wenzelm@13142
   772
lemma concat_eq_Nil_conv [iff]: "(concat xss = []) = (\<forall>xs \<in> set xss. xs = [])"
nipkow@13145
   773
by (induct xss) auto
wenzelm@13114
   774
wenzelm@13142
   775
lemma Nil_eq_concat_conv [iff]: "([] = concat xss) = (\<forall>xs \<in> set xss. xs = [])"
nipkow@13145
   776
by (induct xss) auto
wenzelm@13114
   777
wenzelm@13142
   778
lemma set_concat [simp]: "set (concat xs) = \<Union>(set ` set xs)"
nipkow@13145
   779
by (induct xs) auto
wenzelm@13114
   780
wenzelm@13142
   781
lemma map_concat: "map f (concat xs) = concat (map (map f) xs)"
nipkow@13145
   782
by (induct xs) auto
wenzelm@13114
   783
wenzelm@13142
   784
lemma filter_concat: "filter p (concat xs) = concat (map (filter p) xs)"
nipkow@13145
   785
by (induct xs) auto
wenzelm@13114
   786
wenzelm@13142
   787
lemma rev_concat: "rev (concat xs) = concat (map rev (rev xs))"
nipkow@13145
   788
by (induct xs) auto
wenzelm@13114
   789
wenzelm@13114
   790
nipkow@15392
   791
subsubsection {* @{text nth} *}
wenzelm@13114
   792
wenzelm@13142
   793
lemma nth_Cons_0 [simp]: "(x # xs)!0 = x"
nipkow@13145
   794
by auto
wenzelm@13114
   795
wenzelm@13142
   796
lemma nth_Cons_Suc [simp]: "(x # xs)!(Suc n) = xs!n"
nipkow@13145
   797
by auto
wenzelm@13114
   798
wenzelm@13142
   799
declare nth.simps [simp del]
wenzelm@13114
   800
wenzelm@13114
   801
lemma nth_append:
nipkow@13145
   802
"!!n. (xs @ ys)!n = (if n < length xs then xs!n else ys!(n - length xs))"
paulson@14208
   803
apply (induct "xs", simp)
paulson@14208
   804
apply (case_tac n, auto)
nipkow@13145
   805
done
wenzelm@13114
   806
nipkow@14402
   807
lemma nth_append_length [simp]: "(xs @ x # ys) ! length xs = x"
nipkow@14402
   808
by (induct "xs") auto
nipkow@14402
   809
nipkow@14402
   810
lemma nth_append_length_plus[simp]: "(xs @ ys) ! (length xs + n) = ys ! n"
nipkow@14402
   811
by (induct "xs") auto
nipkow@14402
   812
wenzelm@13142
   813
lemma nth_map [simp]: "!!n. n < length xs ==> (map f xs)!n = f(xs!n)"
paulson@14208
   814
apply (induct xs, simp)
paulson@14208
   815
apply (case_tac n, auto)
nipkow@13145
   816
done
wenzelm@13114
   817
wenzelm@13142
   818
lemma set_conv_nth: "set xs = {xs!i | i. i < length xs}"
paulson@15251
   819
apply (induct xs, simp, simp)
nipkow@13145
   820
apply safe
paulson@14208
   821
apply (rule_tac x = 0 in exI, simp)
paulson@14208
   822
 apply (rule_tac x = "Suc i" in exI, simp)
paulson@14208
   823
apply (case_tac i, simp)
nipkow@13145
   824
apply (rename_tac j)
paulson@14208
   825
apply (rule_tac x = j in exI, simp)
nipkow@13145
   826
done
wenzelm@13114
   827
nipkow@13145
   828
lemma list_ball_nth: "[| n < length xs; !x : set xs. P x|] ==> P(xs!n)"
nipkow@13145
   829
by (auto simp add: set_conv_nth)
wenzelm@13114
   830
wenzelm@13142
   831
lemma nth_mem [simp]: "n < length xs ==> xs!n : set xs"
nipkow@13145
   832
by (auto simp add: set_conv_nth)
wenzelm@13114
   833
wenzelm@13114
   834
lemma all_nth_imp_all_set:
nipkow@13145
   835
"[| !i < length xs. P(xs!i); x : set xs|] ==> P x"
nipkow@13145
   836
by (auto simp add: set_conv_nth)
wenzelm@13114
   837
wenzelm@13114
   838
lemma all_set_conv_all_nth:
nipkow@13145
   839
"(\<forall>x \<in> set xs. P x) = (\<forall>i. i < length xs --> P (xs ! i))"
nipkow@13145
   840
by (auto simp add: set_conv_nth)
wenzelm@13114
   841
wenzelm@13114
   842
nipkow@15392
   843
subsubsection {* @{text list_update} *}
wenzelm@13114
   844
wenzelm@13142
   845
lemma length_list_update [simp]: "!!i. length(xs[i:=x]) = length xs"
nipkow@13145
   846
by (induct xs) (auto split: nat.split)
wenzelm@13114
   847
wenzelm@13114
   848
lemma nth_list_update:
nipkow@13145
   849
"!!i j. i < length xs==> (xs[i:=x])!j = (if i = j then x else xs!j)"
nipkow@13145
   850
by (induct xs) (auto simp add: nth_Cons split: nat.split)
wenzelm@13114
   851
wenzelm@13142
   852
lemma nth_list_update_eq [simp]: "i < length xs ==> (xs[i:=x])!i = x"
nipkow@13145
   853
by (simp add: nth_list_update)
wenzelm@13114
   854
wenzelm@13142
   855
lemma nth_list_update_neq [simp]: "!!i j. i \<noteq> j ==> xs[i:=x]!j = xs!j"
nipkow@13145
   856
by (induct xs) (auto simp add: nth_Cons split: nat.split)
wenzelm@13114
   857
wenzelm@13142
   858
lemma list_update_overwrite [simp]:
nipkow@13145
   859
"!!i. i < size xs ==> xs[i:=x, i:=y] = xs[i:=y]"
nipkow@13145
   860
by (induct xs) (auto split: nat.split)
wenzelm@13114
   861
nipkow@14402
   862
lemma list_update_id[simp]: "!!i. i < length xs ==> xs[i := xs!i] = xs"
paulson@14208
   863
apply (induct xs, simp)
nipkow@14187
   864
apply(simp split:nat.splits)
nipkow@14187
   865
done
nipkow@14187
   866
wenzelm@13114
   867
lemma list_update_same_conv:
nipkow@13145
   868
"!!i. i < length xs ==> (xs[i := x] = xs) = (xs!i = x)"
nipkow@13145
   869
by (induct xs) (auto split: nat.split)
wenzelm@13114
   870
nipkow@14187
   871
lemma list_update_append1:
nipkow@14187
   872
 "!!i. i < size xs \<Longrightarrow> (xs @ ys)[i:=x] = xs[i:=x] @ ys"
paulson@14208
   873
apply (induct xs, simp)
nipkow@14187
   874
apply(simp split:nat.split)
nipkow@14187
   875
done
nipkow@14187
   876
kleing@15868
   877
lemma list_update_append:
kleing@15868
   878
  "!!n. (xs @ ys) [n:= x] = 
kleing@15868
   879
  (if n < length xs then xs[n:= x] @ ys else xs @ (ys [n-length xs:= x]))"
kleing@15868
   880
by (induct xs) (auto split:nat.splits)
kleing@15868
   881
nipkow@14402
   882
lemma list_update_length [simp]:
nipkow@14402
   883
 "(xs @ x # ys)[length xs := y] = (xs @ y # ys)"
nipkow@14402
   884
by (induct xs, auto)
nipkow@14402
   885
wenzelm@13114
   886
lemma update_zip:
nipkow@13145
   887
"!!i xy xs. length xs = length ys ==>
nipkow@13145
   888
(zip xs ys)[i:=xy] = zip (xs[i:=fst xy]) (ys[i:=snd xy])"
nipkow@13145
   889
by (induct ys) (auto, case_tac xs, auto split: nat.split)
wenzelm@13114
   890
wenzelm@13114
   891
lemma set_update_subset_insert: "!!i. set(xs[i:=x]) <= insert x (set xs)"
nipkow@13145
   892
by (induct xs) (auto split: nat.split)
wenzelm@13114
   893
wenzelm@13114
   894
lemma set_update_subsetI: "[| set xs <= A; x:A |] ==> set(xs[i := x]) <= A"
nipkow@13145
   895
by (blast dest!: set_update_subset_insert [THEN subsetD])
wenzelm@13114
   896
kleing@15868
   897
lemma set_update_memI: "!!n. n < length xs \<Longrightarrow> x \<in> set (xs[n := x])"
kleing@15868
   898
by (induct xs) (auto split:nat.splits)
kleing@15868
   899
wenzelm@13114
   900
nipkow@15392
   901
subsubsection {* @{text last} and @{text butlast} *}
wenzelm@13114
   902
wenzelm@13142
   903
lemma last_snoc [simp]: "last (xs @ [x]) = x"
nipkow@13145
   904
by (induct xs) auto
wenzelm@13114
   905
wenzelm@13142
   906
lemma butlast_snoc [simp]: "butlast (xs @ [x]) = xs"
nipkow@13145
   907
by (induct xs) auto
wenzelm@13114
   908
nipkow@14302
   909
lemma last_ConsL: "xs = [] \<Longrightarrow> last(x#xs) = x"
nipkow@14302
   910
by(simp add:last.simps)
nipkow@14302
   911
nipkow@14302
   912
lemma last_ConsR: "xs \<noteq> [] \<Longrightarrow> last(x#xs) = last xs"
nipkow@14302
   913
by(simp add:last.simps)
nipkow@14302
   914
nipkow@14302
   915
lemma last_append: "last(xs @ ys) = (if ys = [] then last xs else last ys)"
nipkow@14302
   916
by (induct xs) (auto)
nipkow@14302
   917
nipkow@14302
   918
lemma last_appendL[simp]: "ys = [] \<Longrightarrow> last(xs @ ys) = last xs"
nipkow@14302
   919
by(simp add:last_append)
nipkow@14302
   920
nipkow@14302
   921
lemma last_appendR[simp]: "ys \<noteq> [] \<Longrightarrow> last(xs @ ys) = last ys"
nipkow@14302
   922
by(simp add:last_append)
nipkow@14302
   923
nipkow@14302
   924
wenzelm@13142
   925
lemma length_butlast [simp]: "length (butlast xs) = length xs - 1"
nipkow@13145
   926
by (induct xs rule: rev_induct) auto
wenzelm@13114
   927
wenzelm@13114
   928
lemma butlast_append:
nipkow@13145
   929
"!!ys. butlast (xs @ ys) = (if ys = [] then butlast xs else xs @ butlast ys)"
nipkow@13145
   930
by (induct xs) auto
wenzelm@13114
   931
wenzelm@13142
   932
lemma append_butlast_last_id [simp]:
nipkow@13145
   933
"xs \<noteq> [] ==> butlast xs @ [last xs] = xs"
nipkow@13145
   934
by (induct xs) auto
wenzelm@13114
   935
wenzelm@13142
   936
lemma in_set_butlastD: "x : set (butlast xs) ==> x : set xs"
nipkow@13145
   937
by (induct xs) (auto split: split_if_asm)
wenzelm@13114
   938
wenzelm@13114
   939
lemma in_set_butlast_appendI:
nipkow@13145
   940
"x : set (butlast xs) | x : set (butlast ys) ==> x : set (butlast (xs @ ys))"
nipkow@13145
   941
by (auto dest: in_set_butlastD simp add: butlast_append)
wenzelm@13114
   942
wenzelm@13114
   943
nipkow@15392
   944
subsubsection {* @{text take} and @{text drop} *}
wenzelm@13114
   945
wenzelm@13142
   946
lemma take_0 [simp]: "take 0 xs = []"
nipkow@13145
   947
by (induct xs) auto
wenzelm@13114
   948
wenzelm@13142
   949
lemma drop_0 [simp]: "drop 0 xs = xs"
nipkow@13145
   950
by (induct xs) auto
wenzelm@13114
   951
wenzelm@13142
   952
lemma take_Suc_Cons [simp]: "take (Suc n) (x # xs) = x # take n xs"
nipkow@13145
   953
by simp
wenzelm@13114
   954
wenzelm@13142
   955
lemma drop_Suc_Cons [simp]: "drop (Suc n) (x # xs) = drop n xs"
nipkow@13145
   956
by simp
wenzelm@13114
   957
wenzelm@13142
   958
declare take_Cons [simp del] and drop_Cons [simp del]
wenzelm@13114
   959
nipkow@15110
   960
lemma take_Suc: "xs ~= [] ==> take (Suc n) xs = hd xs # take n (tl xs)"
nipkow@15110
   961
by(clarsimp simp add:neq_Nil_conv)
nipkow@15110
   962
nipkow@14187
   963
lemma drop_Suc: "drop (Suc n) xs = drop n (tl xs)"
nipkow@14187
   964
by(cases xs, simp_all)
nipkow@14187
   965
nipkow@14187
   966
lemma drop_tl: "!!n. drop n (tl xs) = tl(drop n xs)"
nipkow@14187
   967
by(induct xs, simp_all add:drop_Cons drop_Suc split:nat.split)
nipkow@14187
   968
nipkow@14187
   969
lemma nth_via_drop: "!!n. drop n xs = y#ys \<Longrightarrow> xs!n = y"
paulson@14208
   970
apply (induct xs, simp)
nipkow@14187
   971
apply(simp add:drop_Cons nth_Cons split:nat.splits)
nipkow@14187
   972
done
nipkow@14187
   973
nipkow@13913
   974
lemma take_Suc_conv_app_nth:
nipkow@13913
   975
 "!!i. i < length xs \<Longrightarrow> take (Suc i) xs = take i xs @ [xs!i]"
paulson@14208
   976
apply (induct xs, simp)
paulson@14208
   977
apply (case_tac i, auto)
nipkow@13913
   978
done
nipkow@13913
   979
mehta@14591
   980
lemma drop_Suc_conv_tl:
mehta@14591
   981
  "!!i. i < length xs \<Longrightarrow> (xs!i) # (drop (Suc i) xs) = drop i xs"
mehta@14591
   982
apply (induct xs, simp)
mehta@14591
   983
apply (case_tac i, auto)
mehta@14591
   984
done
mehta@14591
   985
wenzelm@13142
   986
lemma length_take [simp]: "!!xs. length (take n xs) = min (length xs) n"
nipkow@13145
   987
by (induct n) (auto, case_tac xs, auto)
wenzelm@13114
   988
wenzelm@13142
   989
lemma length_drop [simp]: "!!xs. length (drop n xs) = (length xs - n)"
nipkow@13145
   990
by (induct n) (auto, case_tac xs, auto)
wenzelm@13114
   991
wenzelm@13142
   992
lemma take_all [simp]: "!!xs. length xs <= n ==> take n xs = xs"
nipkow@13145
   993
by (induct n) (auto, case_tac xs, auto)
wenzelm@13114
   994
wenzelm@13142
   995
lemma drop_all [simp]: "!!xs. length xs <= n ==> drop n xs = []"
nipkow@13145
   996
by (induct n) (auto, case_tac xs, auto)
wenzelm@13114
   997
wenzelm@13142
   998
lemma take_append [simp]:
nipkow@13145
   999
"!!xs. take n (xs @ ys) = (take n xs @ take (n - length xs) ys)"
nipkow@13145
  1000
by (induct n) (auto, case_tac xs, auto)
wenzelm@13114
  1001
wenzelm@13142
  1002
lemma drop_append [simp]:
nipkow@13145
  1003
"!!xs. drop n (xs @ ys) = drop n xs @ drop (n - length xs) ys"
nipkow@13145
  1004
by (induct n) (auto, case_tac xs, auto)
wenzelm@13114
  1005
wenzelm@13142
  1006
lemma take_take [simp]: "!!xs n. take n (take m xs) = take (min n m) xs"
paulson@14208
  1007
apply (induct m, auto)
paulson@14208
  1008
apply (case_tac xs, auto)
nipkow@15236
  1009
apply (case_tac n, auto)
nipkow@13145
  1010
done
wenzelm@13142
  1011
wenzelm@13142
  1012
lemma drop_drop [simp]: "!!xs. drop n (drop m xs) = drop (n + m) xs"
paulson@14208
  1013
apply (induct m, auto)
paulson@14208
  1014
apply (case_tac xs, auto)
nipkow@13145
  1015
done
wenzelm@13114
  1016
wenzelm@13114
  1017
lemma take_drop: "!!xs n. take n (drop m xs) = drop m (take (n + m) xs)"
paulson@14208
  1018
apply (induct m, auto)
paulson@14208
  1019
apply (case_tac xs, auto)
nipkow@13145
  1020
done
wenzelm@13114
  1021
nipkow@14802
  1022
lemma drop_take: "!!m n. drop n (take m xs) = take (m-n) (drop n xs)"
nipkow@14802
  1023
apply(induct xs)
nipkow@14802
  1024
 apply simp
nipkow@14802
  1025
apply(simp add: take_Cons drop_Cons split:nat.split)
nipkow@14802
  1026
done
nipkow@14802
  1027
wenzelm@13142
  1028
lemma append_take_drop_id [simp]: "!!xs. take n xs @ drop n xs = xs"
paulson@14208
  1029
apply (induct n, auto)
paulson@14208
  1030
apply (case_tac xs, auto)
nipkow@13145
  1031
done
wenzelm@13114
  1032
nipkow@15110
  1033
lemma take_eq_Nil[simp]: "!!n. (take n xs = []) = (n = 0 \<or> xs = [])"
nipkow@15110
  1034
apply(induct xs)
nipkow@15110
  1035
 apply simp
nipkow@15110
  1036
apply(simp add:take_Cons split:nat.split)
nipkow@15110
  1037
done
nipkow@15110
  1038
nipkow@15110
  1039
lemma drop_eq_Nil[simp]: "!!n. (drop n xs = []) = (length xs <= n)"
nipkow@15110
  1040
apply(induct xs)
nipkow@15110
  1041
apply simp
nipkow@15110
  1042
apply(simp add:drop_Cons split:nat.split)
nipkow@15110
  1043
done
nipkow@15110
  1044
wenzelm@13114
  1045
lemma take_map: "!!xs. take n (map f xs) = map f (take n xs)"
paulson@14208
  1046
apply (induct n, auto)
paulson@14208
  1047
apply (case_tac xs, auto)
nipkow@13145
  1048
done
wenzelm@13114
  1049
wenzelm@13142
  1050
lemma drop_map: "!!xs. drop n (map f xs) = map f (drop n xs)"
paulson@14208
  1051
apply (induct n, auto)
paulson@14208
  1052
apply (case_tac xs, auto)
nipkow@13145
  1053
done
wenzelm@13114
  1054
wenzelm@13114
  1055
lemma rev_take: "!!i. rev (take i xs) = drop (length xs - i) (rev xs)"
paulson@14208
  1056
apply (induct xs, auto)
paulson@14208
  1057
apply (case_tac i, auto)
nipkow@13145
  1058
done
wenzelm@13114
  1059
wenzelm@13114
  1060
lemma rev_drop: "!!i. rev (drop i xs) = take (length xs - i) (rev xs)"
paulson@14208
  1061
apply (induct xs, auto)
paulson@14208
  1062
apply (case_tac i, auto)
nipkow@13145
  1063
done
wenzelm@13114
  1064
wenzelm@13142
  1065
lemma nth_take [simp]: "!!n i. i < n ==> (take n xs)!i = xs!i"
paulson@14208
  1066
apply (induct xs, auto)
paulson@14208
  1067
apply (case_tac n, blast)
paulson@14208
  1068
apply (case_tac i, auto)
nipkow@13145
  1069
done
wenzelm@13114
  1070
wenzelm@13142
  1071
lemma nth_drop [simp]:
nipkow@13145
  1072
"!!xs i. n + i <= length xs ==> (drop n xs)!i = xs!(n + i)"
paulson@14208
  1073
apply (induct n, auto)
paulson@14208
  1074
apply (case_tac xs, auto)
nipkow@13145
  1075
done
wenzelm@13114
  1076
nipkow@14025
  1077
lemma set_take_subset: "\<And>n. set(take n xs) \<subseteq> set xs"
nipkow@14025
  1078
by(induct xs)(auto simp:take_Cons split:nat.split)
nipkow@14025
  1079
nipkow@14025
  1080
lemma set_drop_subset: "\<And>n. set(drop n xs) \<subseteq> set xs"
nipkow@14025
  1081
by(induct xs)(auto simp:drop_Cons split:nat.split)
nipkow@14025
  1082
nipkow@14187
  1083
lemma in_set_takeD: "x : set(take n xs) \<Longrightarrow> x : set xs"
nipkow@14187
  1084
using set_take_subset by fast
nipkow@14187
  1085
nipkow@14187
  1086
lemma in_set_dropD: "x : set(drop n xs) \<Longrightarrow> x : set xs"
nipkow@14187
  1087
using set_drop_subset by fast
nipkow@14187
  1088
wenzelm@13114
  1089
lemma append_eq_conv_conj:
nipkow@13145
  1090
"!!zs. (xs @ ys = zs) = (xs = take (length xs) zs \<and> ys = drop (length xs) zs)"
paulson@14208
  1091
apply (induct xs, simp, clarsimp)
paulson@14208
  1092
apply (case_tac zs, auto)
nipkow@13145
  1093
done
wenzelm@13114
  1094
paulson@14050
  1095
lemma take_add [rule_format]: 
paulson@14050
  1096
    "\<forall>i. i+j \<le> length(xs) --> take (i+j) xs = take i xs @ take j (drop i xs)"
paulson@14050
  1097
apply (induct xs, auto) 
paulson@14050
  1098
apply (case_tac i, simp_all) 
paulson@14050
  1099
done
paulson@14050
  1100
nipkow@14300
  1101
lemma append_eq_append_conv_if:
nipkow@14300
  1102
 "!! ys\<^isub>1. (xs\<^isub>1 @ xs\<^isub>2 = ys\<^isub>1 @ ys\<^isub>2) =
nipkow@14300
  1103
  (if size xs\<^isub>1 \<le> size ys\<^isub>1
nipkow@14300
  1104
   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
nipkow@14300
  1105
   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)"
nipkow@14300
  1106
apply(induct xs\<^isub>1)
nipkow@14300
  1107
 apply simp
nipkow@14300
  1108
apply(case_tac ys\<^isub>1)
nipkow@14300
  1109
apply simp_all
nipkow@14300
  1110
done
nipkow@14300
  1111
nipkow@15110
  1112
lemma take_hd_drop:
nipkow@15110
  1113
  "!!n. n < length xs \<Longrightarrow> take n xs @ [hd (drop n xs)] = take (n+1) xs"
nipkow@15110
  1114
apply(induct xs)
nipkow@15110
  1115
apply simp
nipkow@15110
  1116
apply(simp add:drop_Cons split:nat.split)
nipkow@15110
  1117
done
nipkow@15110
  1118
wenzelm@13114
  1119
nipkow@15392
  1120
subsubsection {* @{text takeWhile} and @{text dropWhile} *}
wenzelm@13114
  1121
wenzelm@13142
  1122
lemma takeWhile_dropWhile_id [simp]: "takeWhile P xs @ dropWhile P xs = xs"
nipkow@13145
  1123
by (induct xs) auto
wenzelm@13114
  1124
wenzelm@13142
  1125
lemma takeWhile_append1 [simp]:
nipkow@13145
  1126
"[| x:set xs; ~P(x)|] ==> takeWhile P (xs @ ys) = takeWhile P xs"
nipkow@13145
  1127
by (induct xs) auto
wenzelm@13114
  1128
wenzelm@13142
  1129
lemma takeWhile_append2 [simp]:
nipkow@13145
  1130
"(!!x. x : set xs ==> P x) ==> takeWhile P (xs @ ys) = xs @ takeWhile P ys"
nipkow@13145
  1131
by (induct xs) auto
wenzelm@13114
  1132
wenzelm@13142
  1133
lemma takeWhile_tail: "\<not> P x ==> takeWhile P (xs @ (x#l)) = takeWhile P xs"
nipkow@13145
  1134
by (induct xs) auto
wenzelm@13114
  1135
wenzelm@13142
  1136
lemma dropWhile_append1 [simp]:
nipkow@13145
  1137
"[| x : set xs; ~P(x)|] ==> dropWhile P (xs @ ys) = (dropWhile P xs)@ys"
nipkow@13145
  1138
by (induct xs) auto
wenzelm@13114
  1139
wenzelm@13142
  1140
lemma dropWhile_append2 [simp]:
nipkow@13145
  1141
"(!!x. x:set xs ==> P(x)) ==> dropWhile P (xs @ ys) = dropWhile P ys"
nipkow@13145
  1142
by (induct xs) auto
wenzelm@13114
  1143
wenzelm@13142
  1144
lemma set_take_whileD: "x : set (takeWhile P xs) ==> x : set xs \<and> P x"
nipkow@13145
  1145
by (induct xs) (auto split: split_if_asm)
wenzelm@13114
  1146
nipkow@13913
  1147
lemma takeWhile_eq_all_conv[simp]:
nipkow@13913
  1148
 "(takeWhile P xs = xs) = (\<forall>x \<in> set xs. P x)"
nipkow@13913
  1149
by(induct xs, auto)
nipkow@13913
  1150
nipkow@13913
  1151
lemma dropWhile_eq_Nil_conv[simp]:
nipkow@13913
  1152
 "(dropWhile P xs = []) = (\<forall>x \<in> set xs. P x)"
nipkow@13913
  1153
by(induct xs, auto)
nipkow@13913
  1154
nipkow@13913
  1155
lemma dropWhile_eq_Cons_conv:
nipkow@13913
  1156
 "(dropWhile P xs = y#ys) = (xs = takeWhile P xs @ y # ys & \<not> P y)"
nipkow@13913
  1157
by(induct xs, auto)
nipkow@13913
  1158
wenzelm@13114
  1159
nipkow@15392
  1160
subsubsection {* @{text zip} *}
wenzelm@13114
  1161
wenzelm@13142
  1162
lemma zip_Nil [simp]: "zip [] ys = []"
nipkow@13145
  1163
by (induct ys) auto
wenzelm@13114
  1164
wenzelm@13142
  1165
lemma zip_Cons_Cons [simp]: "zip (x # xs) (y # ys) = (x, y) # zip xs ys"
nipkow@13145
  1166
by simp
wenzelm@13114
  1167
wenzelm@13142
  1168
declare zip_Cons [simp del]
wenzelm@13114
  1169
nipkow@15281
  1170
lemma zip_Cons1:
nipkow@15281
  1171
 "zip (x#xs) ys = (case ys of [] \<Rightarrow> [] | y#ys \<Rightarrow> (x,y)#zip xs ys)"
nipkow@15281
  1172
by(auto split:list.split)
nipkow@15281
  1173
wenzelm@13142
  1174
lemma length_zip [simp]:
nipkow@13145
  1175
"!!xs. length (zip xs ys) = min (length xs) (length ys)"
paulson@14208
  1176
apply (induct ys, simp)
paulson@14208
  1177
apply (case_tac xs, auto)
nipkow@13145
  1178
done
wenzelm@13114
  1179
wenzelm@13114
  1180
lemma zip_append1:
nipkow@13145
  1181
"!!xs. zip (xs @ ys) zs =
nipkow@13145
  1182
zip xs (take (length xs) zs) @ zip ys (drop (length xs) zs)"
paulson@14208
  1183
apply (induct zs, simp)
paulson@14208
  1184
apply (case_tac xs, simp_all)
nipkow@13145
  1185
done
wenzelm@13114
  1186
wenzelm@13114
  1187
lemma zip_append2:
nipkow@13145
  1188
"!!ys. zip xs (ys @ zs) =
nipkow@13145
  1189
zip (take (length ys) xs) ys @ zip (drop (length ys) xs) zs"
paulson@14208
  1190
apply (induct xs, simp)
paulson@14208
  1191
apply (case_tac ys, simp_all)
nipkow@13145
  1192
done
wenzelm@13114
  1193
wenzelm@13142
  1194
lemma zip_append [simp]:
wenzelm@13142
  1195
 "[| length xs = length us; length ys = length vs |] ==>
nipkow@13145
  1196
zip (xs@ys) (us@vs) = zip xs us @ zip ys vs"
nipkow@13145
  1197
by (simp add: zip_append1)
wenzelm@13114
  1198
wenzelm@13114
  1199
lemma zip_rev:
nipkow@14247
  1200
"length xs = length ys ==> zip (rev xs) (rev ys) = rev (zip xs ys)"
nipkow@14247
  1201
by (induct rule:list_induct2, simp_all)
wenzelm@13114
  1202
wenzelm@13142
  1203
lemma nth_zip [simp]:
nipkow@13145
  1204
"!!i xs. [| i < length xs; i < length ys|] ==> (zip xs ys)!i = (xs!i, ys!i)"
paulson@14208
  1205
apply (induct ys, simp)
nipkow@13145
  1206
apply (case_tac xs)
nipkow@13145
  1207
 apply (simp_all add: nth.simps split: nat.split)
nipkow@13145
  1208
done
wenzelm@13114
  1209
wenzelm@13114
  1210
lemma set_zip:
nipkow@13145
  1211
"set (zip xs ys) = {(xs!i, ys!i) | i. i < min (length xs) (length ys)}"
nipkow@13145
  1212
by (simp add: set_conv_nth cong: rev_conj_cong)
wenzelm@13114
  1213
wenzelm@13114
  1214
lemma zip_update:
nipkow@13145
  1215
"length xs = length ys ==> zip (xs[i:=x]) (ys[i:=y]) = (zip xs ys)[i:=(x,y)]"
nipkow@13145
  1216
by (rule sym, simp add: update_zip)
wenzelm@13114
  1217
wenzelm@13142
  1218
lemma zip_replicate [simp]:
nipkow@13145
  1219
"!!j. zip (replicate i x) (replicate j y) = replicate (min i j) (x,y)"
paulson@14208
  1220
apply (induct i, auto)
paulson@14208
  1221
apply (case_tac j, auto)
nipkow@13145
  1222
done
wenzelm@13114
  1223
wenzelm@13142
  1224
nipkow@15392
  1225
subsubsection {* @{text list_all2} *}
wenzelm@13114
  1226
kleing@14316
  1227
lemma list_all2_lengthD [intro?]: 
kleing@14316
  1228
  "list_all2 P xs ys ==> length xs = length ys"
nipkow@13145
  1229
by (simp add: list_all2_def)
wenzelm@13114
  1230
wenzelm@13142
  1231
lemma list_all2_Nil [iff]: "list_all2 P [] ys = (ys = [])"
nipkow@13145
  1232
by (simp add: list_all2_def)
wenzelm@13114
  1233
wenzelm@13142
  1234
lemma list_all2_Nil2[iff]: "list_all2 P xs [] = (xs = [])"
nipkow@13145
  1235
by (simp add: list_all2_def)
wenzelm@13114
  1236
wenzelm@13142
  1237
lemma list_all2_Cons [iff]:
nipkow@13145
  1238
"list_all2 P (x # xs) (y # ys) = (P x y \<and> list_all2 P xs ys)"
nipkow@13145
  1239
by (auto simp add: list_all2_def)
wenzelm@13114
  1240
wenzelm@13114
  1241
lemma list_all2_Cons1:
nipkow@13145
  1242
"list_all2 P (x # xs) ys = (\<exists>z zs. ys = z # zs \<and> P x z \<and> list_all2 P xs zs)"
nipkow@13145
  1243
by (cases ys) auto
wenzelm@13114
  1244
wenzelm@13114
  1245
lemma list_all2_Cons2:
nipkow@13145
  1246
"list_all2 P xs (y # ys) = (\<exists>z zs. xs = z # zs \<and> P z y \<and> list_all2 P zs ys)"
nipkow@13145
  1247
by (cases xs) auto
wenzelm@13114
  1248
wenzelm@13142
  1249
lemma list_all2_rev [iff]:
nipkow@13145
  1250
"list_all2 P (rev xs) (rev ys) = list_all2 P xs ys"
nipkow@13145
  1251
by (simp add: list_all2_def zip_rev cong: conj_cong)
wenzelm@13114
  1252
kleing@13863
  1253
lemma list_all2_rev1:
kleing@13863
  1254
"list_all2 P (rev xs) ys = list_all2 P xs (rev ys)"
kleing@13863
  1255
by (subst list_all2_rev [symmetric]) simp
kleing@13863
  1256
wenzelm@13114
  1257
lemma list_all2_append1:
nipkow@13145
  1258
"list_all2 P (xs @ ys) zs =
nipkow@13145
  1259
(EX us vs. zs = us @ vs \<and> length us = length xs \<and> length vs = length ys \<and>
nipkow@13145
  1260
list_all2 P xs us \<and> list_all2 P ys vs)"
nipkow@13145
  1261
apply (simp add: list_all2_def zip_append1)
nipkow@13145
  1262
apply (rule iffI)
nipkow@13145
  1263
 apply (rule_tac x = "take (length xs) zs" in exI)
nipkow@13145
  1264
 apply (rule_tac x = "drop (length xs) zs" in exI)
paulson@14208
  1265
 apply (force split: nat_diff_split simp add: min_def, clarify)
nipkow@13145
  1266
apply (simp add: ball_Un)
nipkow@13145
  1267
done
wenzelm@13114
  1268
wenzelm@13114
  1269
lemma list_all2_append2:
nipkow@13145
  1270
"list_all2 P xs (ys @ zs) =
nipkow@13145
  1271
(EX us vs. xs = us @ vs \<and> length us = length ys \<and> length vs = length zs \<and>
nipkow@13145
  1272
list_all2 P us ys \<and> list_all2 P vs zs)"
nipkow@13145
  1273
apply (simp add: list_all2_def zip_append2)
nipkow@13145
  1274
apply (rule iffI)
nipkow@13145
  1275
 apply (rule_tac x = "take (length ys) xs" in exI)
nipkow@13145
  1276
 apply (rule_tac x = "drop (length ys) xs" in exI)
paulson@14208
  1277
 apply (force split: nat_diff_split simp add: min_def, clarify)
nipkow@13145
  1278
apply (simp add: ball_Un)
nipkow@13145
  1279
done
wenzelm@13114
  1280
kleing@13863
  1281
lemma list_all2_append:
nipkow@14247
  1282
  "length xs = length ys \<Longrightarrow>
nipkow@14247
  1283
  list_all2 P (xs@us) (ys@vs) = (list_all2 P xs ys \<and> list_all2 P us vs)"
nipkow@14247
  1284
by (induct rule:list_induct2, simp_all)
kleing@13863
  1285
kleing@13863
  1286
lemma list_all2_appendI [intro?, trans]:
kleing@13863
  1287
  "\<lbrakk> list_all2 P a b; list_all2 P c d \<rbrakk> \<Longrightarrow> list_all2 P (a@c) (b@d)"
kleing@13863
  1288
  by (simp add: list_all2_append list_all2_lengthD)
kleing@13863
  1289
wenzelm@13114
  1290
lemma list_all2_conv_all_nth:
nipkow@13145
  1291
"list_all2 P xs ys =
nipkow@13145
  1292
(length xs = length ys \<and> (\<forall>i < length xs. P (xs!i) (ys!i)))"
nipkow@13145
  1293
by (force simp add: list_all2_def set_zip)
wenzelm@13114
  1294
berghofe@13883
  1295
lemma list_all2_trans:
berghofe@13883
  1296
  assumes tr: "!!a b c. P1 a b ==> P2 b c ==> P3 a c"
berghofe@13883
  1297
  shows "!!bs cs. list_all2 P1 as bs ==> list_all2 P2 bs cs ==> list_all2 P3 as cs"
berghofe@13883
  1298
        (is "!!bs cs. PROP ?Q as bs cs")
berghofe@13883
  1299
proof (induct as)
berghofe@13883
  1300
  fix x xs bs assume I1: "!!bs cs. PROP ?Q xs bs cs"
berghofe@13883
  1301
  show "!!cs. PROP ?Q (x # xs) bs cs"
berghofe@13883
  1302
  proof (induct bs)
berghofe@13883
  1303
    fix y ys cs assume I2: "!!cs. PROP ?Q (x # xs) ys cs"
berghofe@13883
  1304
    show "PROP ?Q (x # xs) (y # ys) cs"
berghofe@13883
  1305
      by (induct cs) (auto intro: tr I1 I2)
berghofe@13883
  1306
  qed simp
berghofe@13883
  1307
qed simp
berghofe@13883
  1308
kleing@13863
  1309
lemma list_all2_all_nthI [intro?]:
kleing@13863
  1310
  "length a = length b \<Longrightarrow> (\<And>n. n < length a \<Longrightarrow> P (a!n) (b!n)) \<Longrightarrow> list_all2 P a b"
kleing@13863
  1311
  by (simp add: list_all2_conv_all_nth)
kleing@13863
  1312
paulson@14395
  1313
lemma list_all2I:
paulson@14395
  1314
  "\<forall>x \<in> set (zip a b). split P x \<Longrightarrow> length a = length b \<Longrightarrow> list_all2 P a b"
paulson@14395
  1315
  by (simp add: list_all2_def)
paulson@14395
  1316
kleing@14328
  1317
lemma list_all2_nthD:
kleing@13863
  1318
  "\<lbrakk> list_all2 P xs ys; p < size xs \<rbrakk> \<Longrightarrow> P (xs!p) (ys!p)"
kleing@13863
  1319
  by (simp add: list_all2_conv_all_nth)
kleing@13863
  1320
nipkow@14302
  1321
lemma list_all2_nthD2:
nipkow@14302
  1322
  "\<lbrakk>list_all2 P xs ys; p < size ys\<rbrakk> \<Longrightarrow> P (xs!p) (ys!p)"
nipkow@14302
  1323
  by (frule list_all2_lengthD) (auto intro: list_all2_nthD)
nipkow@14302
  1324
kleing@13863
  1325
lemma list_all2_map1: 
kleing@13863
  1326
  "list_all2 P (map f as) bs = list_all2 (\<lambda>x y. P (f x) y) as bs"
kleing@13863
  1327
  by (simp add: list_all2_conv_all_nth)
kleing@13863
  1328
kleing@13863
  1329
lemma list_all2_map2: 
kleing@13863
  1330
  "list_all2 P as (map f bs) = list_all2 (\<lambda>x y. P x (f y)) as bs"
kleing@13863
  1331
  by (auto simp add: list_all2_conv_all_nth)
kleing@13863
  1332
kleing@14316
  1333
lemma list_all2_refl [intro?]:
kleing@13863
  1334
  "(\<And>x. P x x) \<Longrightarrow> list_all2 P xs xs"
kleing@13863
  1335
  by (simp add: list_all2_conv_all_nth)
kleing@13863
  1336
kleing@13863
  1337
lemma list_all2_update_cong:
kleing@13863
  1338
  "\<lbrakk> i<size xs; list_all2 P xs ys; P x y \<rbrakk> \<Longrightarrow> list_all2 P (xs[i:=x]) (ys[i:=y])"
kleing@13863
  1339
  by (simp add: list_all2_conv_all_nth nth_list_update)
kleing@13863
  1340
kleing@13863
  1341
lemma list_all2_update_cong2:
kleing@13863
  1342
  "\<lbrakk>list_all2 P xs ys; P x y; i < length ys\<rbrakk> \<Longrightarrow> list_all2 P (xs[i:=x]) (ys[i:=y])"
kleing@13863
  1343
  by (simp add: list_all2_lengthD list_all2_update_cong)
kleing@13863
  1344
nipkow@14302
  1345
lemma list_all2_takeI [simp,intro?]:
nipkow@14302
  1346
  "\<And>n ys. list_all2 P xs ys \<Longrightarrow> list_all2 P (take n xs) (take n ys)"
nipkow@14302
  1347
  apply (induct xs)
nipkow@14302
  1348
   apply simp
nipkow@14302
  1349
  apply (clarsimp simp add: list_all2_Cons1)
nipkow@14302
  1350
  apply (case_tac n)
nipkow@14302
  1351
  apply auto
nipkow@14302
  1352
  done
nipkow@14302
  1353
nipkow@14302
  1354
lemma list_all2_dropI [simp,intro?]:
kleing@13863
  1355
  "\<And>n bs. list_all2 P as bs \<Longrightarrow> list_all2 P (drop n as) (drop n bs)"
paulson@14208
  1356
  apply (induct as, simp)
kleing@13863
  1357
  apply (clarsimp simp add: list_all2_Cons1)
paulson@14208
  1358
  apply (case_tac n, simp, simp)
kleing@13863
  1359
  done
kleing@13863
  1360
kleing@14327
  1361
lemma list_all2_mono [intro?]:
kleing@13863
  1362
  "\<And>y. list_all2 P x y \<Longrightarrow> (\<And>x y. P x y \<Longrightarrow> Q x y) \<Longrightarrow> list_all2 Q x y"
paulson@14208
  1363
  apply (induct x, simp)
paulson@14208
  1364
  apply (case_tac y, auto)
kleing@13863
  1365
  done
kleing@13863
  1366
wenzelm@13114
  1367
nipkow@15392
  1368
subsubsection {* @{text foldl} and @{text foldr} *}
wenzelm@13114
  1369
wenzelm@13142
  1370
lemma foldl_append [simp]:
nipkow@13145
  1371
"!!a. foldl f a (xs @ ys) = foldl f (foldl f a xs) ys"
nipkow@13145
  1372
by (induct xs) auto
wenzelm@13114
  1373
nipkow@14402
  1374
lemma foldr_append[simp]: "foldr f (xs @ ys) a = foldr f xs (foldr f ys a)"
nipkow@14402
  1375
by (induct xs) auto
nipkow@14402
  1376
nipkow@14402
  1377
lemma foldr_foldl: "foldr f xs a = foldl (%x y. f y x) a (rev xs)"
nipkow@14402
  1378
by (induct xs) auto
nipkow@14402
  1379
nipkow@14402
  1380
lemma foldl_foldr: "foldl f a xs = foldr (%x y. f y x) (rev xs) a"
nipkow@14402
  1381
by (simp add: foldr_foldl [of "%x y. f y x" "rev xs"])
nipkow@14402
  1382
wenzelm@13142
  1383
text {*
nipkow@13145
  1384
Note: @{text "n \<le> foldl (op +) n ns"} looks simpler, but is more
nipkow@13145
  1385
difficult to use because it requires an additional transitivity step.
wenzelm@13142
  1386
*}
wenzelm@13114
  1387
wenzelm@13142
  1388
lemma start_le_sum: "!!n::nat. m <= n ==> m <= foldl (op +) n ns"
nipkow@13145
  1389
by (induct ns) auto
wenzelm@13114
  1390
wenzelm@13142
  1391
lemma elem_le_sum: "!!n::nat. n : set ns ==> n <= foldl (op +) 0 ns"
nipkow@13145
  1392
by (force intro: start_le_sum simp add: in_set_conv_decomp)
wenzelm@13114
  1393
wenzelm@13142
  1394
lemma sum_eq_0_conv [iff]:
nipkow@13145
  1395
"!!m::nat. (foldl (op +) m ns = 0) = (m = 0 \<and> (\<forall>n \<in> set ns. n = 0))"
nipkow@13145
  1396
by (induct ns) auto
wenzelm@13114
  1397
wenzelm@13142
  1398
nipkow@15392
  1399
subsubsection {* @{text upto} *}
wenzelm@13142
  1400
nipkow@15425
  1401
lemma upt_rec: "[i..<j] = (if i<j then i#[Suc i..<j] else [])"
nipkow@13145
  1402
-- {* Does not terminate! *}
nipkow@13145
  1403
by (induct j) auto
wenzelm@13114
  1404
nipkow@15425
  1405
lemma upt_conv_Nil [simp]: "j <= i ==> [i..<j] = []"
nipkow@13145
  1406
by (subst upt_rec) simp
wenzelm@13114
  1407
nipkow@15425
  1408
lemma upt_eq_Nil_conv[simp]: "([i..<j] = []) = (j = 0 \<or> j <= i)"
nipkow@15281
  1409
by(induct j)simp_all
nipkow@15281
  1410
nipkow@15281
  1411
lemma upt_eq_Cons_conv:
nipkow@15425
  1412
 "!!x xs. ([i..<j] = x#xs) = (i < j & i = x & [i+1..<j] = xs)"
nipkow@15281
  1413
apply(induct j)
nipkow@15281
  1414
 apply simp
nipkow@15281
  1415
apply(clarsimp simp add: append_eq_Cons_conv)
nipkow@15281
  1416
apply arith
nipkow@15281
  1417
done
nipkow@15281
  1418
nipkow@15425
  1419
lemma upt_Suc_append: "i <= j ==> [i..<(Suc j)] = [i..<j]@[j]"
nipkow@13145
  1420
-- {* Only needed if @{text upt_Suc} is deleted from the simpset. *}
nipkow@13145
  1421
by simp
wenzelm@13114
  1422
nipkow@15425
  1423
lemma upt_conv_Cons: "i < j ==> [i..<j] = i # [Suc i..<j]"
nipkow@13145
  1424
apply(rule trans)
nipkow@13145
  1425
apply(subst upt_rec)
paulson@14208
  1426
 prefer 2 apply (rule refl, simp)
nipkow@13145
  1427
done
wenzelm@13114
  1428
nipkow@15425
  1429
lemma upt_add_eq_append: "i<=j ==> [i..<j+k] = [i..<j]@[j..<j+k]"
nipkow@13145
  1430
-- {* LOOPS as a simprule, since @{text "j <= j"}. *}
nipkow@13145
  1431
by (induct k) auto
wenzelm@13114
  1432
nipkow@15425
  1433
lemma length_upt [simp]: "length [i..<j] = j - i"
nipkow@13145
  1434
by (induct j) (auto simp add: Suc_diff_le)
wenzelm@13114
  1435
nipkow@15425
  1436
lemma nth_upt [simp]: "i + k < j ==> [i..<j] ! k = i + k"
nipkow@13145
  1437
apply (induct j)
nipkow@13145
  1438
apply (auto simp add: less_Suc_eq nth_append split: nat_diff_split)
nipkow@13145
  1439
done
wenzelm@13114
  1440
nipkow@15425
  1441
lemma take_upt [simp]: "!!i. i+m <= n ==> take m [i..<n] = [i..<i+m]"
paulson@14208
  1442
apply (induct m, simp)
nipkow@13145
  1443
apply (subst upt_rec)
nipkow@13145
  1444
apply (rule sym)
nipkow@13145
  1445
apply (subst upt_rec)
nipkow@13145
  1446
apply (simp del: upt.simps)
nipkow@13145
  1447
done
wenzelm@13114
  1448
nipkow@15425
  1449
lemma map_Suc_upt: "map Suc [m..<n] = [Suc m..n]"
nipkow@13145
  1450
by (induct n) auto
wenzelm@13114
  1451
nipkow@15425
  1452
lemma nth_map_upt: "!!i. i < n-m ==> (map f [m..<n]) ! i = f(m+i)"
nipkow@13145
  1453
apply (induct n m rule: diff_induct)
nipkow@13145
  1454
prefer 3 apply (subst map_Suc_upt[symmetric])
nipkow@13145
  1455
apply (auto simp add: less_diff_conv nth_upt)
nipkow@13145
  1456
done
wenzelm@13114
  1457
berghofe@13883
  1458
lemma nth_take_lemma:
berghofe@13883
  1459
  "!!xs ys. k <= length xs ==> k <= length ys ==>
berghofe@13883
  1460
     (!!i. i < k --> xs!i = ys!i) ==> take k xs = take k ys"
berghofe@13883
  1461
apply (atomize, induct k)
paulson@14208
  1462
apply (simp_all add: less_Suc_eq_0_disj all_conj_distrib, clarify)
nipkow@13145
  1463
txt {* Both lists must be non-empty *}
paulson@14208
  1464
apply (case_tac xs, simp)
paulson@14208
  1465
apply (case_tac ys, clarify)
nipkow@13145
  1466
 apply (simp (no_asm_use))
nipkow@13145
  1467
apply clarify
nipkow@13145
  1468
txt {* prenexing's needed, not miniscoping *}
nipkow@13145
  1469
apply (simp (no_asm_use) add: all_simps [symmetric] del: all_simps)
nipkow@13145
  1470
apply blast
nipkow@13145
  1471
done
wenzelm@13114
  1472
wenzelm@13114
  1473
lemma nth_equalityI:
wenzelm@13114
  1474
 "[| length xs = length ys; ALL i < length xs. xs!i = ys!i |] ==> xs = ys"
nipkow@13145
  1475
apply (frule nth_take_lemma [OF le_refl eq_imp_le])
nipkow@13145
  1476
apply (simp_all add: take_all)
nipkow@13145
  1477
done
wenzelm@13114
  1478
kleing@13863
  1479
(* needs nth_equalityI *)
kleing@13863
  1480
lemma list_all2_antisym:
kleing@13863
  1481
  "\<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> 
kleing@13863
  1482
  \<Longrightarrow> xs = ys"
kleing@13863
  1483
  apply (simp add: list_all2_conv_all_nth) 
paulson@14208
  1484
  apply (rule nth_equalityI, blast, simp)
kleing@13863
  1485
  done
kleing@13863
  1486
wenzelm@13142
  1487
lemma take_equalityI: "(\<forall>i. take i xs = take i ys) ==> xs = ys"
nipkow@13145
  1488
-- {* The famous take-lemma. *}
nipkow@13145
  1489
apply (drule_tac x = "max (length xs) (length ys)" in spec)
nipkow@13145
  1490
apply (simp add: le_max_iff_disj take_all)
nipkow@13145
  1491
done
wenzelm@13114
  1492
wenzelm@13114
  1493
nipkow@15302
  1494
lemma take_Cons':
nipkow@15302
  1495
     "take n (x # xs) = (if n = 0 then [] else x # take (n - 1) xs)"
nipkow@15302
  1496
by (cases n) simp_all
nipkow@15302
  1497
nipkow@15302
  1498
lemma drop_Cons':
nipkow@15302
  1499
     "drop n (x # xs) = (if n = 0 then x # xs else drop (n - 1) xs)"
nipkow@15302
  1500
by (cases n) simp_all
nipkow@15302
  1501
nipkow@15302
  1502
lemma nth_Cons': "(x # xs)!n = (if n = 0 then x else xs!(n - 1))"
nipkow@15302
  1503
by (cases n) simp_all
nipkow@15302
  1504
nipkow@15302
  1505
lemmas [simp] = take_Cons'[of "number_of v",standard]
nipkow@15302
  1506
                drop_Cons'[of "number_of v",standard]
nipkow@15302
  1507
                nth_Cons'[of _ _ "number_of v",standard]
nipkow@15302
  1508
nipkow@15302
  1509
nipkow@15392
  1510
subsubsection {* @{text "distinct"} and @{text remdups} *}
wenzelm@13114
  1511
wenzelm@13142
  1512
lemma distinct_append [simp]:
nipkow@13145
  1513
"distinct (xs @ ys) = (distinct xs \<and> distinct ys \<and> set xs \<inter> set ys = {})"
nipkow@13145
  1514
by (induct xs) auto
wenzelm@13114
  1515
nipkow@15305
  1516
lemma distinct_rev[simp]: "distinct(rev xs) = distinct xs"
nipkow@15305
  1517
by(induct xs) auto
nipkow@15305
  1518
wenzelm@13142
  1519
lemma set_remdups [simp]: "set (remdups xs) = set xs"
nipkow@13145
  1520
by (induct xs) (auto simp add: insert_absorb)
wenzelm@13114
  1521
wenzelm@13142
  1522
lemma distinct_remdups [iff]: "distinct (remdups xs)"
nipkow@13145
  1523
by (induct xs) auto
wenzelm@13114
  1524
paulson@15072
  1525
lemma remdups_eq_nil_iff [simp]: "(remdups x = []) = (x = [])"
paulson@15251
  1526
  by (induct x, auto) 
paulson@15072
  1527
paulson@15072
  1528
lemma remdups_eq_nil_right_iff [simp]: "([] = remdups x) = (x = [])"
paulson@15251
  1529
  by (induct x, auto)
paulson@15072
  1530
nipkow@15245
  1531
lemma length_remdups_leq[iff]: "length(remdups xs) <= length xs"
nipkow@15245
  1532
by (induct xs) auto
nipkow@15245
  1533
nipkow@15245
  1534
lemma length_remdups_eq[iff]:
nipkow@15245
  1535
  "(length (remdups xs) = length xs) = (remdups xs = xs)"
nipkow@15245
  1536
apply(induct xs)
nipkow@15245
  1537
 apply auto
nipkow@15245
  1538
apply(subgoal_tac "length (remdups xs) <= length xs")
nipkow@15245
  1539
 apply arith
nipkow@15245
  1540
apply(rule length_remdups_leq)
nipkow@15245
  1541
done
nipkow@15245
  1542
wenzelm@13142
  1543
lemma distinct_filter [simp]: "distinct xs ==> distinct (filter P xs)"
nipkow@13145
  1544
by (induct xs) auto
wenzelm@13114
  1545
nipkow@15304
  1546
lemma distinct_map_filterI:
nipkow@15304
  1547
 "distinct(map f xs) \<Longrightarrow> distinct(map f (filter P xs))"
nipkow@15304
  1548
apply(induct xs)
nipkow@15304
  1549
 apply simp
nipkow@15304
  1550
apply force
nipkow@15304
  1551
done
nipkow@15304
  1552
wenzelm@13142
  1553
text {*
nipkow@13145
  1554
It is best to avoid this indexed version of distinct, but sometimes
nipkow@13145
  1555
it is useful. *}
nipkow@13124
  1556
lemma distinct_conv_nth:
nipkow@13145
  1557
"distinct xs = (\<forall>i j. i < size xs \<and> j < size xs \<and> i \<noteq> j --> xs!i \<noteq> xs!j)"
paulson@15251
  1558
apply (induct xs, simp, simp)
paulson@14208
  1559
apply (rule iffI, clarsimp)
nipkow@13145
  1560
 apply (case_tac i)
paulson@14208
  1561
apply (case_tac j, simp)
nipkow@13145
  1562
apply (simp add: set_conv_nth)
nipkow@13145
  1563
 apply (case_tac j)
paulson@14208
  1564
apply (clarsimp simp add: set_conv_nth, simp)
nipkow@13145
  1565
apply (rule conjI)
nipkow@13145
  1566
 apply (clarsimp simp add: set_conv_nth)
nipkow@13145
  1567
 apply (erule_tac x = 0 in allE)
paulson@14208
  1568
 apply (erule_tac x = "Suc i" in allE, simp, clarsimp)
nipkow@13145
  1569
apply (erule_tac x = "Suc i" in allE)
paulson@14208
  1570
apply (erule_tac x = "Suc j" in allE, simp)
nipkow@13145
  1571
done
nipkow@13124
  1572
nipkow@15110
  1573
lemma distinct_card: "distinct xs ==> card (set xs) = size xs"
kleing@14388
  1574
  by (induct xs) auto
kleing@14388
  1575
nipkow@15110
  1576
lemma card_distinct: "card (set xs) = size xs ==> distinct xs"
kleing@14388
  1577
proof (induct xs)
kleing@14388
  1578
  case Nil thus ?case by simp
kleing@14388
  1579
next
kleing@14388
  1580
  case (Cons x xs)
kleing@14388
  1581
  show ?case
kleing@14388
  1582
  proof (cases "x \<in> set xs")
kleing@14388
  1583
    case False with Cons show ?thesis by simp
kleing@14388
  1584
  next
kleing@14388
  1585
    case True with Cons.prems
kleing@14388
  1586
    have "card (set xs) = Suc (length xs)" 
kleing@14388
  1587
      by (simp add: card_insert_if split: split_if_asm)
kleing@14388
  1588
    moreover have "card (set xs) \<le> length xs" by (rule card_length)
kleing@14388
  1589
    ultimately have False by simp
kleing@14388
  1590
    thus ?thesis ..
kleing@14388
  1591
  qed
kleing@14388
  1592
qed
kleing@14388
  1593
nipkow@15110
  1594
lemma inj_on_setI: "distinct(map f xs) ==> inj_on f (set xs)"
nipkow@15110
  1595
apply(induct xs)
nipkow@15110
  1596
 apply simp
nipkow@15110
  1597
apply fastsimp
nipkow@15110
  1598
done
nipkow@15110
  1599
nipkow@15110
  1600
lemma inj_on_set_conv:
nipkow@15110
  1601
 "distinct xs \<Longrightarrow> inj_on f (set xs) = distinct(map f xs)"
nipkow@15110
  1602
apply(induct xs)
nipkow@15110
  1603
 apply simp
nipkow@15110
  1604
apply fastsimp
nipkow@15110
  1605
done
nipkow@15110
  1606
nipkow@15110
  1607
nipkow@15392
  1608
subsubsection {* @{text remove1} *}
nipkow@15110
  1609
nipkow@15110
  1610
lemma set_remove1_subset: "set(remove1 x xs) <= set xs"
nipkow@15110
  1611
apply(induct xs)
nipkow@15110
  1612
 apply simp
nipkow@15110
  1613
apply simp
nipkow@15110
  1614
apply blast
nipkow@15110
  1615
done
nipkow@15110
  1616
nipkow@15110
  1617
lemma [simp]: "distinct xs ==> set(remove1 x xs) = set xs - {x}"
nipkow@15110
  1618
apply(induct xs)
nipkow@15110
  1619
 apply simp
nipkow@15110
  1620
apply simp
nipkow@15110
  1621
apply blast
nipkow@15110
  1622
done
nipkow@15110
  1623
nipkow@15110
  1624
lemma notin_set_remove1[simp]: "x ~: set xs ==> x ~: set(remove1 y xs)"
nipkow@15110
  1625
apply(insert set_remove1_subset)
nipkow@15110
  1626
apply fast
nipkow@15110
  1627
done
nipkow@15110
  1628
nipkow@15110
  1629
lemma distinct_remove1[simp]: "distinct xs ==> distinct(remove1 x xs)"
nipkow@15110
  1630
by (induct xs) simp_all
nipkow@15110
  1631
wenzelm@13114
  1632
nipkow@15392
  1633
subsubsection {* @{text replicate} *}
wenzelm@13114
  1634
wenzelm@13142
  1635
lemma length_replicate [simp]: "length (replicate n x) = n"
nipkow@13145
  1636
by (induct n) auto
wenzelm@13142
  1637
wenzelm@13142
  1638
lemma map_replicate [simp]: "map f (replicate n x) = replicate n (f x)"
nipkow@13145
  1639
by (induct n) auto
wenzelm@13114
  1640
wenzelm@13114
  1641
lemma replicate_app_Cons_same:
nipkow@13145
  1642
"(replicate n x) @ (x # xs) = x # replicate n x @ xs"
nipkow@13145
  1643
by (induct n) auto
wenzelm@13114
  1644
wenzelm@13142
  1645
lemma rev_replicate [simp]: "rev (replicate n x) = replicate n x"
paulson@14208
  1646
apply (induct n, simp)
nipkow@13145
  1647
apply (simp add: replicate_app_Cons_same)
nipkow@13145
  1648
done
wenzelm@13114
  1649
wenzelm@13142
  1650
lemma replicate_add: "replicate (n + m) x = replicate n x @ replicate m x"
nipkow@13145
  1651
by (induct n) auto
wenzelm@13114
  1652
wenzelm@13142
  1653
lemma hd_replicate [simp]: "n \<noteq> 0 ==> hd (replicate n x) = x"
nipkow@13145
  1654
by (induct n) auto
wenzelm@13114
  1655
wenzelm@13142
  1656
lemma tl_replicate [simp]: "n \<noteq> 0 ==> tl (replicate n x) = replicate (n - 1) x"
nipkow@13145
  1657
by (induct n) auto
wenzelm@13114
  1658
wenzelm@13142
  1659
lemma last_replicate [simp]: "n \<noteq> 0 ==> last (replicate n x) = x"
nipkow@13145
  1660
by (atomize (full), induct n) auto
wenzelm@13114
  1661
wenzelm@13142
  1662
lemma nth_replicate[simp]: "!!i. i < n ==> (replicate n x)!i = x"
paulson@14208
  1663
apply (induct n, simp)
nipkow@13145
  1664
apply (simp add: nth_Cons split: nat.split)
nipkow@13145
  1665
done
wenzelm@13114
  1666
wenzelm@13142
  1667
lemma set_replicate_Suc: "set (replicate (Suc n) x) = {x}"
nipkow@13145
  1668
by (induct n) auto
wenzelm@13114
  1669
wenzelm@13142
  1670
lemma set_replicate [simp]: "n \<noteq> 0 ==> set (replicate n x) = {x}"
nipkow@13145
  1671
by (fast dest!: not0_implies_Suc intro!: set_replicate_Suc)
wenzelm@13114
  1672
wenzelm@13142
  1673
lemma set_replicate_conv_if: "set (replicate n x) = (if n = 0 then {} else {x})"
nipkow@13145
  1674
by auto
wenzelm@13114
  1675
wenzelm@13142
  1676
lemma in_set_replicateD: "x : set (replicate n y) ==> x = y"
nipkow@13145
  1677
by (simp add: set_replicate_conv_if split: split_if_asm)
wenzelm@13114
  1678
wenzelm@13114
  1679
nipkow@15392
  1680
subsubsection{*@{text rotate1} and @{text rotate}*}
nipkow@15302
  1681
nipkow@15302
  1682
lemma rotate_simps[simp]: "rotate1 [] = [] \<and> rotate1 (x#xs) = xs @ [x]"
nipkow@15302
  1683
by(simp add:rotate1_def)
nipkow@15302
  1684
nipkow@15302
  1685
lemma rotate0[simp]: "rotate 0 = id"
nipkow@15302
  1686
by(simp add:rotate_def)
nipkow@15302
  1687
nipkow@15302
  1688
lemma rotate_Suc[simp]: "rotate (Suc n) xs = rotate1(rotate n xs)"
nipkow@15302
  1689
by(simp add:rotate_def)
nipkow@15302
  1690
nipkow@15302
  1691
lemma rotate_add:
nipkow@15302
  1692
  "rotate (m+n) = rotate m o rotate n"
nipkow@15302
  1693
by(simp add:rotate_def funpow_add)
nipkow@15302
  1694
nipkow@15302
  1695
lemma rotate_rotate: "rotate m (rotate n xs) = rotate (m+n) xs"
nipkow@15302
  1696
by(simp add:rotate_add)
nipkow@15302
  1697
nipkow@15302
  1698
lemma rotate1_length01[simp]: "length xs <= 1 \<Longrightarrow> rotate1 xs = xs"
nipkow@15302
  1699
by(cases xs) simp_all
nipkow@15302
  1700
nipkow@15302
  1701
lemma rotate_length01[simp]: "length xs <= 1 \<Longrightarrow> rotate n xs = xs"
nipkow@15302
  1702
apply(induct n)
nipkow@15302
  1703
 apply simp
nipkow@15302
  1704
apply (simp add:rotate_def)
nipkow@15302
  1705
done
nipkow@15302
  1706
nipkow@15302
  1707
lemma rotate1_hd_tl: "xs \<noteq> [] \<Longrightarrow> rotate1 xs = tl xs @ [hd xs]"
nipkow@15302
  1708
by(simp add:rotate1_def split:list.split)
nipkow@15302
  1709
nipkow@15302
  1710
lemma rotate_drop_take:
nipkow@15302
  1711
  "rotate n xs = drop (n mod length xs) xs @ take (n mod length xs) xs"
nipkow@15302
  1712
apply(induct n)
nipkow@15302
  1713
 apply simp
nipkow@15302
  1714
apply(simp add:rotate_def)
nipkow@15302
  1715
apply(cases "xs = []")
nipkow@15302
  1716
 apply (simp)
nipkow@15302
  1717
apply(case_tac "n mod length xs = 0")
nipkow@15302
  1718
 apply(simp add:mod_Suc)
nipkow@15302
  1719
 apply(simp add: rotate1_hd_tl drop_Suc take_Suc)
nipkow@15302
  1720
apply(simp add:mod_Suc rotate1_hd_tl drop_Suc[symmetric] drop_tl[symmetric]
nipkow@15302
  1721
                take_hd_drop linorder_not_le)
nipkow@15302
  1722
done
nipkow@15302
  1723
nipkow@15302
  1724
lemma rotate_conv_mod: "rotate n xs = rotate (n mod length xs) xs"
nipkow@15302
  1725
by(simp add:rotate_drop_take)
nipkow@15302
  1726
nipkow@15302
  1727
lemma rotate_id[simp]: "n mod length xs = 0 \<Longrightarrow> rotate n xs = xs"
nipkow@15302
  1728
by(simp add:rotate_drop_take)
nipkow@15302
  1729
nipkow@15302
  1730
lemma length_rotate1[simp]: "length(rotate1 xs) = length xs"
nipkow@15302
  1731
by(simp add:rotate1_def split:list.split)
nipkow@15302
  1732
nipkow@15302
  1733
lemma length_rotate[simp]: "!!xs. length(rotate n xs) = length xs"
nipkow@15302
  1734
by (induct n) (simp_all add:rotate_def)
nipkow@15302
  1735
nipkow@15302
  1736
lemma distinct1_rotate[simp]: "distinct(rotate1 xs) = distinct xs"
nipkow@15302
  1737
by(simp add:rotate1_def split:list.split) blast
nipkow@15302
  1738
nipkow@15302
  1739
lemma distinct_rotate[simp]: "distinct(rotate n xs) = distinct xs"
nipkow@15302
  1740
by (induct n) (simp_all add:rotate_def)
nipkow@15302
  1741
nipkow@15302
  1742
lemma rotate_map: "rotate n (map f xs) = map f (rotate n xs)"
nipkow@15302
  1743
by(simp add:rotate_drop_take take_map drop_map)
nipkow@15302
  1744
nipkow@15302
  1745
lemma set_rotate1[simp]: "set(rotate1 xs) = set xs"
nipkow@15302
  1746
by(simp add:rotate1_def split:list.split)
nipkow@15302
  1747
nipkow@15302
  1748
lemma set_rotate[simp]: "set(rotate n xs) = set xs"
nipkow@15302
  1749
by (induct n) (simp_all add:rotate_def)
nipkow@15302
  1750
nipkow@15302
  1751
lemma rotate1_is_Nil_conv[simp]: "(rotate1 xs = []) = (xs = [])"
nipkow@15302
  1752
by(simp add:rotate1_def split:list.split)
nipkow@15302
  1753
nipkow@15302
  1754
lemma rotate_is_Nil_conv[simp]: "(rotate n xs = []) = (xs = [])"
nipkow@15302
  1755
by (induct n) (simp_all add:rotate_def)
nipkow@15302
  1756
nipkow@15439
  1757
lemma rotate_rev:
nipkow@15439
  1758
  "rotate n (rev xs) = rev(rotate (length xs - (n mod length xs)) xs)"
nipkow@15439
  1759
apply(simp add:rotate_drop_take rev_drop rev_take)
nipkow@15439
  1760
apply(cases "length xs = 0")
nipkow@15439
  1761
 apply simp
nipkow@15439
  1762
apply(cases "n mod length xs = 0")
nipkow@15439
  1763
 apply simp
nipkow@15439
  1764
apply(simp add:rotate_drop_take rev_drop rev_take)
nipkow@15439
  1765
done
nipkow@15439
  1766
nipkow@15302
  1767
nipkow@15392
  1768
subsubsection {* @{text sublist} --- a generalization of @{text nth} to sets *}
nipkow@15302
  1769
nipkow@15302
  1770
lemma sublist_empty [simp]: "sublist xs {} = []"
nipkow@15302
  1771
by (auto simp add: sublist_def)
nipkow@15302
  1772
nipkow@15302
  1773
lemma sublist_nil [simp]: "sublist [] A = []"
nipkow@15302
  1774
by (auto simp add: sublist_def)
nipkow@15302
  1775
nipkow@15302
  1776
lemma length_sublist:
nipkow@15302
  1777
  "length(sublist xs I) = card{i. i < length xs \<and> i : I}"
nipkow@15302
  1778
by(simp add: sublist_def length_filter_conv_card cong:conj_cong)
nipkow@15302
  1779
nipkow@15302
  1780
lemma sublist_shift_lemma_Suc:
nipkow@15302
  1781
  "!!is. map fst (filter (%p. P(Suc(snd p))) (zip xs is)) =
nipkow@15302
  1782
         map fst (filter (%p. P(snd p)) (zip xs (map Suc is)))"
nipkow@15302
  1783
apply(induct xs)
nipkow@15302
  1784
 apply simp
nipkow@15302
  1785
apply (case_tac "is")
nipkow@15302
  1786
 apply simp
nipkow@15302
  1787
apply simp
nipkow@15302
  1788
done
nipkow@15302
  1789
nipkow@15302
  1790
lemma sublist_shift_lemma:
nipkow@15425
  1791
     "map fst [p:zip xs [i..<i + length xs] . snd p : A] =
nipkow@15425
  1792
      map fst [p:zip xs [0..<length xs] . snd p + i : A]"
nipkow@15302
  1793
by (induct xs rule: rev_induct) (simp_all add: add_commute)
nipkow@15302
  1794
nipkow@15302
  1795
lemma sublist_append:
nipkow@15302
  1796
     "sublist (l @ l') A = sublist l A @ sublist l' {j. j + length l : A}"
nipkow@15302
  1797
apply (unfold sublist_def)
nipkow@15302
  1798
apply (induct l' rule: rev_induct, simp)
nipkow@15302
  1799
apply (simp add: upt_add_eq_append[of 0] zip_append sublist_shift_lemma)
nipkow@15302
  1800
apply (simp add: add_commute)
nipkow@15302
  1801
done
nipkow@15302
  1802
nipkow@15302
  1803
lemma sublist_Cons:
nipkow@15302
  1804
"sublist (x # l) A = (if 0:A then [x] else []) @ sublist l {j. Suc j : A}"
nipkow@15302
  1805
apply (induct l rule: rev_induct)
nipkow@15302
  1806
 apply (simp add: sublist_def)
nipkow@15302
  1807
apply (simp del: append_Cons add: append_Cons[symmetric] sublist_append)
nipkow@15302
  1808
done
nipkow@15302
  1809
nipkow@15302
  1810
lemma set_sublist: "!!I. set(sublist xs I) = {xs!i|i. i<size xs \<and> i \<in> I}"
nipkow@15302
  1811
apply(induct xs)
nipkow@15302
  1812
 apply simp
nipkow@15302
  1813
apply(auto simp add:sublist_Cons nth_Cons split:nat.split elim: lessE)
nipkow@15302
  1814
 apply(erule lessE)
nipkow@15302
  1815
  apply auto
nipkow@15302
  1816
apply(erule lessE)
nipkow@15302
  1817
apply auto
nipkow@15302
  1818
done
nipkow@15302
  1819
nipkow@15302
  1820
lemma set_sublist_subset: "set(sublist xs I) \<subseteq> set xs"
nipkow@15302
  1821
by(auto simp add:set_sublist)
nipkow@15302
  1822
nipkow@15302
  1823
lemma notin_set_sublistI[simp]: "x \<notin> set xs \<Longrightarrow> x \<notin> set(sublist xs I)"
nipkow@15302
  1824
by(auto simp add:set_sublist)
nipkow@15302
  1825
nipkow@15302
  1826
lemma in_set_sublistD: "x \<in> set(sublist xs I) \<Longrightarrow> x \<in> set xs"
nipkow@15302
  1827
by(auto simp add:set_sublist)
nipkow@15302
  1828
nipkow@15302
  1829
lemma sublist_singleton [simp]: "sublist [x] A = (if 0 : A then [x] else [])"
nipkow@15302
  1830
by (simp add: sublist_Cons)
nipkow@15302
  1831
nipkow@15302
  1832
nipkow@15302
  1833
lemma distinct_sublistI[simp]: "!!I. distinct xs \<Longrightarrow> distinct(sublist xs I)"
nipkow@15302
  1834
apply(induct xs)
nipkow@15302
  1835
 apply simp
nipkow@15302
  1836
apply(auto simp add:sublist_Cons)
nipkow@15302
  1837
done
nipkow@15302
  1838
nipkow@15302
  1839
nipkow@15302
  1840
lemma sublist_upt_eq_take [simp]: "sublist l {..<n} = take n l"
nipkow@15302
  1841
apply (induct l rule: rev_induct, simp)
nipkow@15302
  1842
apply (simp split: nat_diff_split add: sublist_append)
nipkow@15302
  1843
done
nipkow@15302
  1844
nipkow@15302
  1845
nipkow@15392
  1846
subsubsection{*Sets of Lists*}
nipkow@15392
  1847
nipkow@15392
  1848
subsubsection {* @{text lists}: the list-forming operator over sets *}
nipkow@15302
  1849
nipkow@15302
  1850
consts lists :: "'a set => 'a list set"
nipkow@15302
  1851
inductive "lists A"
nipkow@15302
  1852
 intros
nipkow@15302
  1853
  Nil [intro!]: "[]: lists A"
nipkow@15302
  1854
  Cons [intro!]: "[| a: A;l: lists A|] ==> a#l : lists A"
nipkow@15302
  1855
nipkow@15302
  1856
inductive_cases listsE [elim!]: "x#l : lists A"
nipkow@15302
  1857
nipkow@15302
  1858
lemma lists_mono [mono]: "A \<subseteq> B ==> lists A \<subseteq> lists B"
nipkow@15302
  1859
by (unfold lists.defs) (blast intro!: lfp_mono)
nipkow@15302
  1860
nipkow@15302
  1861
lemma lists_IntI:
nipkow@15302
  1862
  assumes l: "l: lists A" shows "l: lists B ==> l: lists (A Int B)" using l
nipkow@15302
  1863
  by induct blast+
nipkow@15302
  1864
nipkow@15302
  1865
lemma lists_Int_eq [simp]: "lists (A \<inter> B) = lists A \<inter> lists B"
nipkow@15302
  1866
proof (rule mono_Int [THEN equalityI])
nipkow@15302
  1867
  show "mono lists" by (simp add: mono_def lists_mono)
nipkow@15302
  1868
  show "lists A \<inter> lists B \<subseteq> lists (A \<inter> B)" by (blast intro: lists_IntI)
nipkow@15302
  1869
qed
nipkow@15302
  1870
nipkow@15302
  1871
lemma append_in_lists_conv [iff]:
nipkow@15302
  1872
     "(xs @ ys : lists A) = (xs : lists A \<and> ys : lists A)"
nipkow@15302
  1873
by (induct xs) auto
nipkow@15302
  1874
nipkow@15302
  1875
lemma in_lists_conv_set: "(xs : lists A) = (\<forall>x \<in> set xs. x : A)"
nipkow@15302
  1876
-- {* eliminate @{text lists} in favour of @{text set} *}
nipkow@15302
  1877
by (induct xs) auto
nipkow@15302
  1878
nipkow@15302
  1879
lemma in_listsD [dest!]: "xs \<in> lists A ==> \<forall>x\<in>set xs. x \<in> A"
nipkow@15302
  1880
by (rule in_lists_conv_set [THEN iffD1])
nipkow@15302
  1881
nipkow@15302
  1882
lemma in_listsI [intro!]: "\<forall>x\<in>set xs. x \<in> A ==> xs \<in> lists A"
nipkow@15302
  1883
by (rule in_lists_conv_set [THEN iffD2])
nipkow@15302
  1884
nipkow@15302
  1885
lemma lists_UNIV [simp]: "lists UNIV = UNIV"
nipkow@15302
  1886
by auto
nipkow@15302
  1887
nipkow@15392
  1888
subsubsection{*Lists as Cartesian products*}
nipkow@15302
  1889
nipkow@15302
  1890
text{*@{text"set_Cons A Xs"}: the set of lists with head drawn from
nipkow@15302
  1891
@{term A} and tail drawn from @{term Xs}.*}
nipkow@15302
  1892
nipkow@15302
  1893
constdefs
nipkow@15302
  1894
  set_Cons :: "'a set \<Rightarrow> 'a list set \<Rightarrow> 'a list set"
nipkow@15302
  1895
  "set_Cons A XS == {z. \<exists>x xs. z = x#xs & x \<in> A & xs \<in> XS}"
nipkow@15302
  1896
nipkow@15302
  1897
lemma [simp]: "set_Cons A {[]} = (%x. [x])`A"
nipkow@15302
  1898
by (auto simp add: set_Cons_def)
nipkow@15302
  1899
nipkow@15302
  1900
text{*Yields the set of lists, all of the same length as the argument and
nipkow@15302
  1901
with elements drawn from the corresponding element of the argument.*}
nipkow@15302
  1902
nipkow@15302
  1903
consts  listset :: "'a set list \<Rightarrow> 'a list set"
nipkow@15302
  1904
primrec
nipkow@15302
  1905
   "listset []    = {[]}"
nipkow@15302
  1906
   "listset(A#As) = set_Cons A (listset As)"
nipkow@15302
  1907
nipkow@15302
  1908
paulson@15656
  1909
subsection{*Relations on Lists*}
paulson@15656
  1910
paulson@15656
  1911
subsubsection {* Length Lexicographic Ordering *}
paulson@15656
  1912
paulson@15656
  1913
text{*These orderings preserve well-foundedness: shorter lists 
paulson@15656
  1914
  precede longer lists. These ordering are not used in dictionaries.*}
paulson@15656
  1915
paulson@15656
  1916
consts lexn :: "('a * 'a)set => nat => ('a list * 'a list)set"
paulson@15656
  1917
        --{*The lexicographic ordering for lists of the specified length*}
nipkow@15302
  1918
primrec
paulson@15656
  1919
  "lexn r 0 = {}"
paulson@15656
  1920
  "lexn r (Suc n) =
paulson@15656
  1921
    (prod_fun (%(x,xs). x#xs) (%(x,xs). x#xs) ` (r <*lex*> lexn r n)) Int
paulson@15656
  1922
    {(xs,ys). length xs = Suc n \<and> length ys = Suc n}"
nipkow@15302
  1923
nipkow@15302
  1924
constdefs
paulson@15656
  1925
  lex :: "('a \<times> 'a) set => ('a list \<times> 'a list) set"
paulson@15656
  1926
    "lex r == \<Union>n. lexn r n"
paulson@15656
  1927
        --{*Holds only between lists of the same length*}
paulson@15656
  1928
nipkow@15693
  1929
  lenlex :: "('a \<times> 'a) set => ('a list \<times> 'a list) set"
nipkow@15693
  1930
    "lenlex r == inv_image (less_than <*lex*> lex r) (%xs. (length xs, xs))"
paulson@15656
  1931
        --{*Compares lists by their length and then lexicographically*}
nipkow@15302
  1932
nipkow@15302
  1933
wenzelm@13142
  1934
lemma wf_lexn: "wf r ==> wf (lexn r n)"
paulson@15251
  1935
apply (induct n, simp, simp)
nipkow@13145
  1936
apply(rule wf_subset)
nipkow@13145
  1937
 prefer 2 apply (rule Int_lower1)
nipkow@13145
  1938
apply(rule wf_prod_fun_image)
paulson@14208
  1939
 prefer 2 apply (rule inj_onI, auto)
nipkow@13145
  1940
done
wenzelm@13114
  1941
wenzelm@13114
  1942
lemma lexn_length:
paulson@15168
  1943
     "!!xs ys. (xs, ys) : lexn r n ==> length xs = n \<and> length ys = n"
nipkow@13145
  1944
by (induct n) auto
wenzelm@13114
  1945
wenzelm@13142
  1946
lemma wf_lex [intro!]: "wf r ==> wf (lex r)"
nipkow@13145
  1947
apply (unfold lex_def)
nipkow@13145
  1948
apply (rule wf_UN)
paulson@14208
  1949
apply (blast intro: wf_lexn, clarify)
nipkow@13145
  1950
apply (rename_tac m n)
nipkow@13145
  1951
apply (subgoal_tac "m \<noteq> n")
nipkow@13145
  1952
 prefer 2 apply blast
nipkow@13145
  1953
apply (blast dest: lexn_length not_sym)
nipkow@13145
  1954
done
wenzelm@13114
  1955
wenzelm@13114
  1956
lemma lexn_conv:
paulson@15656
  1957
  "lexn r n =
paulson@15656
  1958
    {(xs,ys). length xs = n \<and> length ys = n \<and>
paulson@15656
  1959
    (\<exists>xys x y xs' ys'. xs= xys @ x#xs' \<and> ys= xys @ y # ys' \<and> (x, y):r)}"
paulson@15251
  1960
apply (induct n, simp, blast)
paulson@14208
  1961
apply (simp add: image_Collect lex_prod_def, safe, blast)
paulson@14208
  1962
 apply (rule_tac x = "ab # xys" in exI, simp)
paulson@14208
  1963
apply (case_tac xys, simp_all, blast)
nipkow@13145
  1964
done
wenzelm@13114
  1965
wenzelm@13114
  1966
lemma lex_conv:
paulson@15656
  1967
  "lex r =
paulson@15656
  1968
    {(xs,ys). length xs = length ys \<and>
paulson@15656
  1969
    (\<exists>xys x y xs' ys'. xs = xys @ x # xs' \<and> ys = xys @ y # ys' \<and> (x, y):r)}"
nipkow@13145
  1970
by (force simp add: lex_def lexn_conv)
wenzelm@13114
  1971
nipkow@15693
  1972
lemma wf_lenlex [intro!]: "wf r ==> wf (lenlex r)"
nipkow@15693
  1973
by (unfold lenlex_def) blast
nipkow@15693
  1974
nipkow@15693
  1975
lemma lenlex_conv:
nipkow@15693
  1976
    "lenlex r = {(xs,ys). length xs < length ys |
paulson@15656
  1977
                 length xs = length ys \<and> (xs, ys) : lex r}"
nipkow@15693
  1978
by (simp add: lenlex_def diag_def lex_prod_def measure_def inv_image_def)
wenzelm@13114
  1979
wenzelm@13142
  1980
lemma Nil_notin_lex [iff]: "([], ys) \<notin> lex r"
nipkow@13145
  1981
by (simp add: lex_conv)
wenzelm@13114
  1982
wenzelm@13142
  1983
lemma Nil2_notin_lex [iff]: "(xs, []) \<notin> lex r"
nipkow@13145
  1984
by (simp add:lex_conv)
wenzelm@13114
  1985
wenzelm@13142
  1986
lemma Cons_in_lex [iff]:
paulson@15656
  1987
    "((x # xs, y # ys) : lex r) =
paulson@15656
  1988
      ((x, y) : r \<and> length xs = length ys | x = y \<and> (xs, ys) : lex r)"
nipkow@13145
  1989
apply (simp add: lex_conv)
nipkow@13145
  1990
apply (rule iffI)
paulson@14208
  1991
 prefer 2 apply (blast intro: Cons_eq_appendI, clarify)
paulson@14208
  1992
apply (case_tac xys, simp, simp)
nipkow@13145
  1993
apply blast
nipkow@13145
  1994
done
wenzelm@13114
  1995
wenzelm@13114
  1996
paulson@15656
  1997
subsubsection {* Lexicographic Ordering *}
paulson@15656
  1998
paulson@15656
  1999
text {* Classical lexicographic ordering on lists, ie. "a" < "ab" < "b".
paulson@15656
  2000
    This ordering does \emph{not} preserve well-foundedness.
paulson@15656
  2001
     Author: N. Voelker, March 2005 *} 
paulson@15656
  2002
paulson@15656
  2003
constdefs 
paulson@15656
  2004
  lexord :: "('a * 'a)set \<Rightarrow> ('a list * 'a list) set" 
paulson@15656
  2005
  "lexord  r == {(x,y). \<exists> a v. y = x @ a # v \<or> 
paulson@15656
  2006
            (\<exists> u a b v w. (a,b) \<in> r \<and> x = u @ (a # v) \<and> y = u @ (b # w))}"
paulson@15656
  2007
paulson@15656
  2008
lemma lexord_Nil_left[simp]:  "([],y) \<in> lexord r = (\<exists> a x. y = a # x)"
paulson@15656
  2009
  by (unfold lexord_def, induct_tac y, auto) 
paulson@15656
  2010
paulson@15656
  2011
lemma lexord_Nil_right[simp]: "(x,[]) \<notin> lexord r"
paulson@15656
  2012
  by (unfold lexord_def, induct_tac x, auto)
paulson@15656
  2013
paulson@15656
  2014
lemma lexord_cons_cons[simp]:
paulson@15656
  2015
     "((a # x, b # y) \<in> lexord r) = ((a,b)\<in> r | (a = b & (x,y)\<in> lexord r))"
paulson@15656
  2016
  apply (unfold lexord_def, safe, simp_all)
paulson@15656
  2017
  apply (case_tac u, simp, simp)
paulson@15656
  2018
  apply (case_tac u, simp, clarsimp, blast, blast, clarsimp)
paulson@15656
  2019
  apply (erule_tac x="b # u" in allE)
paulson@15656
  2020
  by force
paulson@15656
  2021
paulson@15656
  2022
lemmas lexord_simps = lexord_Nil_left lexord_Nil_right lexord_cons_cons
paulson@15656
  2023
paulson@15656
  2024
lemma lexord_append_rightI: "\<exists> b z. y = b # z \<Longrightarrow> (x, x @ y) \<in> lexord r"
paulson@15656
  2025
  by (induct_tac x, auto)  
paulson@15656
  2026
paulson@15656
  2027
lemma lexord_append_left_rightI:
paulson@15656
  2028
     "(a,b) \<in> r \<Longrightarrow> (u @ a # x, u @ b # y) \<in> lexord r"
paulson@15656
  2029
  by (induct_tac u, auto)
paulson@15656
  2030
paulson@15656
  2031
lemma lexord_append_leftI: " (u,v) \<in> lexord r \<Longrightarrow> (x @ u, x @ v) \<in> lexord r"
paulson@15656
  2032
  by (induct x, auto)
paulson@15656
  2033
paulson@15656
  2034
lemma lexord_append_leftD:
paulson@15656
  2035
     "\<lbrakk> (x @ u, x @ v) \<in> lexord r; (! a. (a,a) \<notin> r) \<rbrakk> \<Longrightarrow> (u,v) \<in> lexord r"
paulson@15656
  2036
  by (erule rev_mp, induct_tac x, auto)
paulson@15656
  2037
paulson@15656
  2038
lemma lexord_take_index_conv: 
paulson@15656
  2039
   "((x,y) : lexord r) = 
paulson@15656
  2040
    ((length x < length y \<and> take (length x) y = x) \<or> 
paulson@15656
  2041
     (\<exists>i. i < min(length x)(length y) & take i x = take i y & (x!i,y!i) \<in> r))"
paulson@15656
  2042
  apply (unfold lexord_def Let_def, clarsimp) 
paulson@15656
  2043
  apply (rule_tac f = "(% a b. a \<or> b)" in arg_cong2)
paulson@15656
  2044
  apply auto 
paulson@15656
  2045
  apply (rule_tac x="hd (drop (length x) y)" in exI)
paulson@15656
  2046
  apply (rule_tac x="tl (drop (length x) y)" in exI)
paulson@15656
  2047
  apply (erule subst, simp add: min_def) 
paulson@15656
  2048
  apply (rule_tac x ="length u" in exI, simp) 
paulson@15656
  2049
  apply (rule_tac x ="take i x" in exI) 
paulson@15656
  2050
  apply (rule_tac x ="x ! i" in exI) 
paulson@15656
  2051
  apply (rule_tac x ="y ! i" in exI, safe) 
paulson@15656
  2052
  apply (rule_tac x="drop (Suc i) x" in exI)
paulson@15656
  2053
  apply (drule sym, simp add: drop_Suc_conv_tl) 
paulson@15656
  2054
  apply (rule_tac x="drop (Suc i) y" in exI)
paulson@15656
  2055
  by (simp add: drop_Suc_conv_tl) 
paulson@15656
  2056
paulson@15656
  2057
-- {* lexord is extension of partial ordering List.lex *} 
paulson@15656
  2058
lemma lexord_lex: " (x,y) \<in> lex r = ((x,y) \<in> lexord r \<and> length x = length y)"
paulson@15656
  2059
  apply (rule_tac x = y in spec) 
paulson@15656
  2060
  apply (induct_tac x, clarsimp) 
paulson@15656
  2061
  by (clarify, case_tac x, simp, force)
paulson@15656
  2062
paulson@15656
  2063
lemma lexord_irreflexive: "(! x. (x,x) \<notin> r) \<Longrightarrow> (y,y) \<notin> lexord r"
paulson@15656
  2064
  by (induct y, auto)
paulson@15656
  2065
paulson@15656
  2066
lemma lexord_trans: 
paulson@15656
  2067
    "\<lbrakk> (x, y) \<in> lexord r; (y, z) \<in> lexord r; trans r \<rbrakk> \<Longrightarrow> (x, z) \<in> lexord r"
paulson@15656
  2068
   apply (erule rev_mp)+
paulson@15656
  2069
   apply (rule_tac x = x in spec) 
paulson@15656
  2070
  apply (rule_tac x = z in spec) 
paulson@15656
  2071
  apply ( induct_tac y, simp, clarify)
paulson@15656
  2072
  apply (case_tac xa, erule ssubst) 
paulson@15656
  2073
  apply (erule allE, erule allE) -- {* avoid simp recursion *} 
paulson@15656
  2074
  apply (case_tac x, simp, simp) 
paulson@15656
  2075
  apply (case_tac x, erule allE, erule allE, simp) 
paulson@15656
  2076
  apply (erule_tac x = listb in allE) 
paulson@15656
  2077
  apply (erule_tac x = lista in allE, simp)
paulson@15656
  2078
  apply (unfold trans_def)
paulson@15656
  2079
  by blast
paulson@15656
  2080
paulson@15656
  2081
lemma lexord_transI:  "trans r \<Longrightarrow> trans (lexord r)"
paulson@15656
  2082
  by (rule transI, drule lexord_trans, blast) 
paulson@15656
  2083
paulson@15656
  2084
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"
paulson@15656
  2085
  apply (rule_tac x = y in spec) 
paulson@15656
  2086
  apply (induct_tac x, rule allI) 
paulson@15656
  2087
  apply (case_tac x, simp, simp) 
paulson@15656
  2088
  apply (rule allI, case_tac x, simp, simp) 
paulson@15656
  2089
  by blast
paulson@15656
  2090
paulson@15656
  2091
nipkow@15392
  2092
subsubsection{*Lifting a Relation on List Elements to the Lists*}
nipkow@15302
  2093
nipkow@15302
  2094
consts  listrel :: "('a * 'a)set => ('a list * 'a list)set"
nipkow@15302
  2095
nipkow@15302
  2096
inductive "listrel(r)"
nipkow@15302
  2097
 intros
nipkow@15302
  2098
   Nil:  "([],[]) \<in> listrel r"
nipkow@15302
  2099
   Cons: "[| (x,y) \<in> r; (xs,ys) \<in> listrel r |] ==> (x#xs, y#ys) \<in> listrel r"
nipkow@15302
  2100
nipkow@15302
  2101
inductive_cases listrel_Nil1 [elim!]: "([],xs) \<in> listrel r"
nipkow@15302
  2102
inductive_cases listrel_Nil2 [elim!]: "(xs,[]) \<in> listrel r"
nipkow@15302
  2103
inductive_cases listrel_Cons1 [elim!]: "(y#ys,xs) \<in> listrel r"
nipkow@15302
  2104
inductive_cases listrel_Cons2 [elim!]: "(xs,y#ys) \<in> listrel r"
nipkow@15302
  2105
nipkow@15302
  2106
nipkow@15302
  2107
lemma listrel_mono: "r \<subseteq> s \<Longrightarrow> listrel r \<subseteq> listrel s"
nipkow@15302
  2108
apply clarify  
nipkow@15302
  2109
apply (erule listrel.induct)
nipkow@15302
  2110
apply (blast intro: listrel.intros)+
nipkow@15281
  2111
done
nipkow@15281
  2112
nipkow@15302
  2113
lemma listrel_subset: "r \<subseteq> A \<times> A \<Longrightarrow> listrel r \<subseteq> lists A \<times> lists A"
nipkow@15302
  2114
apply clarify 
nipkow@15302
  2115
apply (erule listrel.induct, auto) 
nipkow@13145
  2116
done
wenzelm@13114
  2117
nipkow@15302
  2118
lemma listrel_refl: "refl A r \<Longrightarrow> refl (lists A) (listrel r)" 
nipkow@15302
  2119
apply (simp add: refl_def listrel_subset Ball_def)
nipkow@15302
  2120
apply (rule allI) 
nipkow@15302
  2121
apply (induct_tac x) 
nipkow@15302
  2122
apply (auto intro: listrel.intros)
nipkow@13145
  2123
done
wenzelm@13114
  2124
nipkow@15302
  2125
lemma listrel_sym: "sym r \<Longrightarrow> sym (listrel r)" 
nipkow@15302
  2126
apply (auto simp add: sym_def)
nipkow@15302
  2127
apply (erule listrel.induct) 
nipkow@15302
  2128
apply (blast intro: listrel.intros)+
nipkow@15281
  2129
done
nipkow@15281
  2130
nipkow@15302
  2131
lemma listrel_trans: "trans r \<Longrightarrow> trans (listrel r)" 
nipkow@15302
  2132
apply (simp add: trans_def)
nipkow@15302
  2133
apply (intro allI) 
nipkow@15302
  2134
apply (rule impI) 
nipkow@15302
  2135
apply (erule listrel.induct) 
nipkow@15302
  2136
apply (blast intro: listrel.intros)+
nipkow@15281
  2137
done
nipkow@15281
  2138
nipkow@15302
  2139
theorem equiv_listrel: "equiv A r \<Longrightarrow> equiv (lists A) (listrel r)"
nipkow@15302
  2140
by (simp add: equiv_def listrel_refl listrel_sym listrel_trans) 
nipkow@15302
  2141
nipkow@15302
  2142
lemma listrel_Nil [simp]: "listrel r `` {[]} = {[]}"
nipkow@15302
  2143
by (blast intro: listrel.intros)
nipkow@15302
  2144
nipkow@15302
  2145
lemma listrel_Cons:
nipkow@15302
  2146
     "listrel r `` {x#xs} = set_Cons (r``{x}) (listrel r `` {xs})";
nipkow@15302
  2147
by (auto simp add: set_Cons_def intro: listrel.intros) 
nipkow@15302
  2148
nipkow@15302
  2149
nipkow@15392
  2150
subsection{*Miscellany*}
nipkow@15392
  2151
nipkow@15392
  2152
subsubsection {* Characters and strings *}
wenzelm@13366
  2153
wenzelm@13366
  2154
datatype nibble =
wenzelm@13366
  2155
    Nibble0 | Nibble1 | Nibble2 | Nibble3 | Nibble4 | Nibble5 | Nibble6 | Nibble7
wenzelm@13366
  2156
  | Nibble8 | Nibble9 | NibbleA | NibbleB | NibbleC | NibbleD | NibbleE | NibbleF
wenzelm@13366
  2157
wenzelm@13366
  2158
datatype char = Char nibble nibble
wenzelm@13366
  2159
  -- "Note: canonical order of character encoding coincides with standard term ordering"
wenzelm@13366
  2160
wenzelm@13366
  2161
types string = "char list"
wenzelm@13366
  2162
wenzelm@13366
  2163
syntax
wenzelm@13366
  2164
  "_Char" :: "xstr => char"    ("CHR _")
wenzelm@13366
  2165
  "_String" :: "xstr => string"    ("_")
wenzelm@13366
  2166
wenzelm@13366
  2167
parse_ast_translation {*
wenzelm@13366
  2168
  let
wenzelm@13366
  2169
    val constants = Syntax.Appl o map Syntax.Constant;
wenzelm@13366
  2170
wenzelm@13366
  2171
    fun mk_nib n = "Nibble" ^ chr (n + (if n <= 9 then ord "0" else ord "A" - 10));
wenzelm@13366
  2172
    fun mk_char c =
wenzelm@13366
  2173
      if Symbol.is_ascii c andalso Symbol.is_printable c then
wenzelm@13366
  2174
        constants ["Char", mk_nib (ord c div 16), mk_nib (ord c mod 16)]
wenzelm@13366
  2175
      else error ("Printable ASCII character expected: " ^ quote c);
wenzelm@13366
  2176
wenzelm@13366
  2177
    fun mk_string [] = Syntax.Constant "Nil"
wenzelm@13366
  2178
      | mk_string (c :: cs) = Syntax.Appl [Syntax.Constant "Cons", mk_char c, mk_string cs];
wenzelm@13366
  2179
wenzelm@13366
  2180
    fun char_ast_tr [Syntax.Variable xstr] =
wenzelm@13366
  2181
        (case Syntax.explode_xstr xstr of
wenzelm@13366
  2182
          [c] => mk_char c
wenzelm@13366
  2183
        | _ => error ("Single character expected: " ^ xstr))
wenzelm@13366
  2184
      | char_ast_tr asts = raise AST ("char_ast_tr", asts);
wenzelm@13366
  2185
wenzelm@13366
  2186
    fun string_ast_tr [Syntax.Variable xstr] =
wenzelm@13366
  2187
        (case Syntax.explode_xstr xstr of
wenzelm@13366
  2188
          [] => constants [Syntax.constrainC, "Nil", "string"]
wenzelm@13366
  2189
        | cs => mk_string cs)
wenzelm@13366
  2190
      | string_ast_tr asts = raise AST ("string_tr", asts);
wenzelm@13366
  2191
  in [("_Char", char_ast_tr), ("_String", string_ast_tr)] end;
wenzelm@13366
  2192
*}
wenzelm@13366
  2193
berghofe@15064
  2194
ML {*
berghofe@15064
  2195
fun int_of_nibble h =
berghofe@15064
  2196
  if "0" <= h andalso h <= "9" then ord h - ord "0"
berghofe@15064
  2197
  else if "A" <= h andalso h <= "F" then ord h - ord "A" + 10
berghofe@15064
  2198
  else raise Match;
berghofe@15064
  2199
berghofe@15064
  2200
fun nibble_of_int i =
berghofe@15064
  2201
  if i <= 9 then chr (ord "0" + i) else chr (ord "A" + i - 10);
berghofe@15064
  2202
*}
berghofe@15064
  2203
wenzelm@13366
  2204
print_ast_translation {*
wenzelm@13366
  2205
  let
wenzelm@13366
  2206
    fun dest_nib (Syntax.Constant c) =
wenzelm@13366
  2207
        (case explode c of
berghofe@15064
  2208
          ["N", "i", "b", "b", "l", "e", h] => int_of_nibble h
wenzelm@13366
  2209
        | _ => raise Match)
wenzelm@13366
  2210
      | dest_nib _ = raise Match;
wenzelm@13366
  2211
wenzelm@13366
  2212
    fun dest_chr c1 c2 =
wenzelm@13366
  2213
      let val c = chr (dest_nib c1 * 16 + dest_nib c2)
wenzelm@13366
  2214
      in if Symbol.is_printable c then c else raise Match end;
wenzelm@13366
  2215
wenzelm@13366
  2216
    fun dest_char (Syntax.Appl [Syntax.Constant "Char", c1, c2]) = dest_chr c1 c2
wenzelm@13366
  2217
      | dest_char _ = raise Match;
wenzelm@13366
  2218
wenzelm@13366
  2219
    fun xstr cs = Syntax.Appl [Syntax.Constant "_xstr", Syntax.Variable (Syntax.implode_xstr cs)];
wenzelm@13366
  2220
wenzelm@13366
  2221
    fun char_ast_tr' [c1, c2] = Syntax.Appl [Syntax.Constant "_Char", xstr [dest_chr c1 c2]]
wenzelm@13366
  2222
      | char_ast_tr' _ = raise Match;
wenzelm@13366
  2223
wenzelm@13366
  2224
    fun list_ast_tr' [args] = Syntax.Appl [Syntax.Constant "_String",
wenzelm@13366
  2225
            xstr (map dest_char (Syntax.unfold_ast "_args" args))]
wenzelm@13366
  2226
      | list_ast_tr' ts = raise Match;
wenzelm@13366
  2227
  in [("Char", char_ast_tr'), ("@list", list_ast_tr')] end;
wenzelm@13366
  2228
*}
wenzelm@13366
  2229
nipkow@15392
  2230
subsubsection {* Code generator setup *}
berghofe@15064
  2231
berghofe@15064
  2232
ML {*
berghofe@15064
  2233
local
berghofe@15064
  2234
berghofe@15064
  2235
fun list_codegen thy gr dep b t =
berghofe@15064
  2236
  let val (gr', ps) = foldl_map (Codegen.invoke_codegen thy dep false)
berghofe@15064
  2237
    (gr, HOLogic.dest_list t)
skalberg@15531
  2238
  in SOME (gr', Pretty.list "[" "]" ps) end handle TERM _ => NONE;
berghofe@15064
  2239
berghofe@15064
  2240
fun dest_nibble (Const (s, _)) = int_of_nibble (unprefix "List.nibble.Nibble" s)
berghofe@15064
  2241
  | dest_nibble _ = raise Match;
berghofe@15064
  2242
berghofe@15064
  2243
fun char_codegen thy gr dep b (Const ("List.char.Char", _) $ c1 $ c2) =
berghofe@15064
  2244
    (let val c = chr (dest_nibble c1 * 16 + dest_nibble c2)
skalberg@15531
  2245
     in if Symbol.is_printable c then SOME (gr, Pretty.quote (Pretty.str c))
skalberg@15531
  2246
       else NONE
skalberg@15570
  2247
     end handle Fail _ => NONE | Match => NONE)
skalberg@15531
  2248
  | char_codegen thy gr dep b _ = NONE;
berghofe@15064
  2249
berghofe@15064
  2250
in
berghofe@15064
  2251
berghofe@15064
  2252
val list_codegen_setup =
berghofe@15064
  2253
  [Codegen.add_codegen "list_codegen" list_codegen,
berghofe@15064
  2254
   Codegen.add_codegen "char_codegen" char_codegen];
berghofe@15064
  2255
berghofe@15064
  2256
end;
berghofe@15064
  2257
berghofe@15064
  2258
val term_of_list = HOLogic.mk_list;
berghofe@15064
  2259
berghofe@15064
  2260
fun gen_list' aG i j = frequency
berghofe@15064
  2261
  [(i, fn () => aG j :: gen_list' aG (i-1) j), (1, fn () => [])] ()
berghofe@15064
  2262
and gen_list aG i = gen_list' aG i i;
berghofe@15064
  2263
berghofe@15064
  2264
val nibbleT = Type ("List.nibble", []);
berghofe@15064
  2265
berghofe@15064
  2266
fun term_of_char c =
berghofe@15064
  2267
  Const ("List.char.Char", nibbleT --> nibbleT --> Type ("List.char", [])) $
berghofe@15064
  2268
    Const ("List.nibble.Nibble" ^ nibble_of_int (ord c div 16), nibbleT) $
berghofe@15064
  2269
    Const ("List.nibble.Nibble" ^ nibble_of_int (ord c mod 16), nibbleT);
berghofe@15064
  2270
berghofe@15064
  2271
fun gen_char i = chr (random_range (ord "a") (Int.min (ord "a" + i, ord "z")));
berghofe@15064
  2272
*}
berghofe@15064
  2273
berghofe@15064
  2274
types_code
berghofe@15064
  2275
  "list" ("_ list")
berghofe@15064
  2276
  "char" ("string")
berghofe@15064
  2277
berghofe@15064
  2278
consts_code "Cons" ("(_ ::/ _)")
berghofe@15064
  2279
berghofe@15064
  2280
setup list_codegen_setup
berghofe@15064
  2281
wenzelm@13122
  2282
end