src/HOL/Word/Bool_List_Representation.thy
author wenzelm
Tue, 03 Sep 2013 01:12:40 +0200
changeset 53374 a14d2a854c02
parent 53062 3af1a6020014
child 53438 6301ed01e34d
permissions -rw-r--r--
tuned proofs -- clarified flow of facts wrt. calculation;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
     1
(* 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
     2
  Author: Jeremy Dawson, NICTA
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
     3
44939
5930d35c976d removed unused legacy lemma names, some comment cleanup.
kleing
parents: 41842
diff changeset
     4
  Theorems to do with integers, expressed using Pls, Min, BIT,
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
     5
  theorems linking them to lists of booleans, and repeated splitting 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
     6
  and concatenation.
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
     7
*) 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
     8
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
     9
header "Bool lists and integers"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
    10
37658
df789294c77a more speaking names
haftmann
parents: 37657
diff changeset
    11
theory Bool_List_Representation
df789294c77a more speaking names
haftmann
parents: 37657
diff changeset
    12
imports Bit_Int
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
    13
begin
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
    14
53062
3af1a6020014 some vague grouping of related theorems, with slight tuning of headings and sorting out of dubious lemmas into separate theory
haftmann
parents: 47219
diff changeset
    15
definition map2 :: "('a \<Rightarrow> 'b \<Rightarrow> 'c) \<Rightarrow> 'a list \<Rightarrow> 'b list \<Rightarrow> 'c list"
3af1a6020014 some vague grouping of related theorems, with slight tuning of headings and sorting out of dubious lemmas into separate theory
haftmann
parents: 47219
diff changeset
    16
where
3af1a6020014 some vague grouping of related theorems, with slight tuning of headings and sorting out of dubious lemmas into separate theory
haftmann
parents: 47219
diff changeset
    17
  "map2 f as bs = map (split f) (zip as bs)"
3af1a6020014 some vague grouping of related theorems, with slight tuning of headings and sorting out of dubious lemmas into separate theory
haftmann
parents: 47219
diff changeset
    18
3af1a6020014 some vague grouping of related theorems, with slight tuning of headings and sorting out of dubious lemmas into separate theory
haftmann
parents: 47219
diff changeset
    19
lemma map2_Nil [simp, code]:
3af1a6020014 some vague grouping of related theorems, with slight tuning of headings and sorting out of dubious lemmas into separate theory
haftmann
parents: 47219
diff changeset
    20
  "map2 f [] ys = []"
3af1a6020014 some vague grouping of related theorems, with slight tuning of headings and sorting out of dubious lemmas into separate theory
haftmann
parents: 47219
diff changeset
    21
  unfolding map2_def by auto
3af1a6020014 some vague grouping of related theorems, with slight tuning of headings and sorting out of dubious lemmas into separate theory
haftmann
parents: 47219
diff changeset
    22
3af1a6020014 some vague grouping of related theorems, with slight tuning of headings and sorting out of dubious lemmas into separate theory
haftmann
parents: 47219
diff changeset
    23
lemma map2_Nil2 [simp, code]:
3af1a6020014 some vague grouping of related theorems, with slight tuning of headings and sorting out of dubious lemmas into separate theory
haftmann
parents: 47219
diff changeset
    24
  "map2 f xs [] = []"
3af1a6020014 some vague grouping of related theorems, with slight tuning of headings and sorting out of dubious lemmas into separate theory
haftmann
parents: 47219
diff changeset
    25
  unfolding map2_def by auto
3af1a6020014 some vague grouping of related theorems, with slight tuning of headings and sorting out of dubious lemmas into separate theory
haftmann
parents: 47219
diff changeset
    26
3af1a6020014 some vague grouping of related theorems, with slight tuning of headings and sorting out of dubious lemmas into separate theory
haftmann
parents: 47219
diff changeset
    27
lemma map2_Cons [simp, code]:
3af1a6020014 some vague grouping of related theorems, with slight tuning of headings and sorting out of dubious lemmas into separate theory
haftmann
parents: 47219
diff changeset
    28
  "map2 f (x # xs) (y # ys) = f x y # map2 f xs ys"
3af1a6020014 some vague grouping of related theorems, with slight tuning of headings and sorting out of dubious lemmas into separate theory
haftmann
parents: 47219
diff changeset
    29
  unfolding map2_def by auto
3af1a6020014 some vague grouping of related theorems, with slight tuning of headings and sorting out of dubious lemmas into separate theory
haftmann
parents: 47219
diff changeset
    30
3af1a6020014 some vague grouping of related theorems, with slight tuning of headings and sorting out of dubious lemmas into separate theory
haftmann
parents: 47219
diff changeset
    31
37657
17e1085d07b2 moved specific operations here
haftmann
parents: 37654
diff changeset
    32
subsection {* Operations on lists of booleans *}
17e1085d07b2 moved specific operations here
haftmann
parents: 37654
diff changeset
    33
17e1085d07b2 moved specific operations here
haftmann
parents: 37654
diff changeset
    34
primrec bl_to_bin_aux :: "bool list \<Rightarrow> int \<Rightarrow> int" where
17e1085d07b2 moved specific operations here
haftmann
parents: 37654
diff changeset
    35
  Nil: "bl_to_bin_aux [] w = w"
17e1085d07b2 moved specific operations here
haftmann
parents: 37654
diff changeset
    36
  | Cons: "bl_to_bin_aux (b # bs) w = 
17e1085d07b2 moved specific operations here
haftmann
parents: 37654
diff changeset
    37
      bl_to_bin_aux bs (w BIT (if b then 1 else 0))"
17e1085d07b2 moved specific operations here
haftmann
parents: 37654
diff changeset
    38
17e1085d07b2 moved specific operations here
haftmann
parents: 37654
diff changeset
    39
definition bl_to_bin :: "bool list \<Rightarrow> int" where
46001
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 45997
diff changeset
    40
  bl_to_bin_def: "bl_to_bin bs = bl_to_bin_aux bs 0"
37667
41acc0fa6b6c avoid bitstrings in generated code
haftmann
parents: 37658
diff changeset
    41
37657
17e1085d07b2 moved specific operations here
haftmann
parents: 37654
diff changeset
    42
primrec bin_to_bl_aux :: "nat \<Rightarrow> int \<Rightarrow> bool list \<Rightarrow> bool list" where
17e1085d07b2 moved specific operations here
haftmann
parents: 37654
diff changeset
    43
  Z: "bin_to_bl_aux 0 w bl = bl"
17e1085d07b2 moved specific operations here
haftmann
parents: 37654
diff changeset
    44
  | Suc: "bin_to_bl_aux (Suc n) w bl =
17e1085d07b2 moved specific operations here
haftmann
parents: 37654
diff changeset
    45
      bin_to_bl_aux n (bin_rest w) ((bin_last w = 1) # bl)"
17e1085d07b2 moved specific operations here
haftmann
parents: 37654
diff changeset
    46
17e1085d07b2 moved specific operations here
haftmann
parents: 37654
diff changeset
    47
definition bin_to_bl :: "nat \<Rightarrow> int \<Rightarrow> bool list" where
17e1085d07b2 moved specific operations here
haftmann
parents: 37654
diff changeset
    48
  bin_to_bl_def : "bin_to_bl n w = bin_to_bl_aux n w []"
17e1085d07b2 moved specific operations here
haftmann
parents: 37654
diff changeset
    49
17e1085d07b2 moved specific operations here
haftmann
parents: 37654
diff changeset
    50
primrec bl_of_nth :: "nat \<Rightarrow> (nat \<Rightarrow> bool) \<Rightarrow> bool list" where
17e1085d07b2 moved specific operations here
haftmann
parents: 37654
diff changeset
    51
  Suc: "bl_of_nth (Suc n) f = f n # bl_of_nth n f"
17e1085d07b2 moved specific operations here
haftmann
parents: 37654
diff changeset
    52
  | Z: "bl_of_nth 0 f = []"
17e1085d07b2 moved specific operations here
haftmann
parents: 37654
diff changeset
    53
17e1085d07b2 moved specific operations here
haftmann
parents: 37654
diff changeset
    54
primrec takefill :: "'a \<Rightarrow> nat \<Rightarrow> 'a list \<Rightarrow> 'a list" where
17e1085d07b2 moved specific operations here
haftmann
parents: 37654
diff changeset
    55
  Z: "takefill fill 0 xs = []"
17e1085d07b2 moved specific operations here
haftmann
parents: 37654
diff changeset
    56
  | Suc: "takefill fill (Suc n) xs = (
17e1085d07b2 moved specific operations here
haftmann
parents: 37654
diff changeset
    57
      case xs of [] => fill # takefill fill n xs
17e1085d07b2 moved specific operations here
haftmann
parents: 37654
diff changeset
    58
        | y # ys => y # takefill fill n ys)"
17e1085d07b2 moved specific operations here
haftmann
parents: 37654
diff changeset
    59
17e1085d07b2 moved specific operations here
haftmann
parents: 37654
diff changeset
    60
24465
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
    61
subsection "Arithmetic in terms of bool lists"
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
    62
44939
5930d35c976d removed unused legacy lemma names, some comment cleanup.
kleing
parents: 41842
diff changeset
    63
text {* 
5930d35c976d removed unused legacy lemma names, some comment cleanup.
kleing
parents: 41842
diff changeset
    64
  Arithmetic operations in terms of the reversed bool list,
5930d35c976d removed unused legacy lemma names, some comment cleanup.
kleing
parents: 41842
diff changeset
    65
  assuming input list(s) the same length, and don't extend them. 
5930d35c976d removed unused legacy lemma names, some comment cleanup.
kleing
parents: 41842
diff changeset
    66
*}
24465
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
    67
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
    68
primrec rbl_succ :: "bool list => bool list" where
24465
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
    69
  Nil: "rbl_succ Nil = Nil"
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
    70
  | Cons: "rbl_succ (x # xs) = (if x then False # rbl_succ xs else True # xs)"
24465
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
    71
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
    72
primrec rbl_pred :: "bool list => bool list" where
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
    73
  Nil: "rbl_pred Nil = Nil"
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
    74
  | Cons: "rbl_pred (x # xs) = (if x then False # xs else True # rbl_pred xs)"
24465
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
    75
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
    76
primrec rbl_add :: "bool list => bool list => bool list" where
44939
5930d35c976d removed unused legacy lemma names, some comment cleanup.
kleing
parents: 41842
diff changeset
    77
  -- "result is length of first arg, second arg may be longer"
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
    78
  Nil: "rbl_add Nil x = Nil"
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
    79
  | Cons: "rbl_add (y # ys) x = (let ws = rbl_add ys (tl x) in 
24465
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
    80
    (y ~= hd x) # (if hd x & y then rbl_succ ws else ws))"
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
    81
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
    82
primrec rbl_mult :: "bool list => bool list => bool list" where
44939
5930d35c976d removed unused legacy lemma names, some comment cleanup.
kleing
parents: 41842
diff changeset
    83
  -- "result is length of first arg, second arg may be longer"
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
    84
  Nil: "rbl_mult Nil x = Nil"
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
    85
  | Cons: "rbl_mult (y # ys) x = (let ws = False # rbl_mult ys x in 
24465
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
    86
    if y then rbl_add ws x else ws)"
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
    87
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
    88
lemma butlast_power:
30971
7fbebf75b3ef funpow and relpow with shared "^^" syntax
haftmann
parents: 30952
diff changeset
    89
  "(butlast ^^ n) bl = take (length bl - n) bl"
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
    90
  by (induct n) (auto simp: butlast_take)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
    91
46001
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 45997
diff changeset
    92
lemma bin_to_bl_aux_zero_minus_simp [simp]:
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 45997
diff changeset
    93
  "0 < n \<Longrightarrow> bin_to_bl_aux n 0 bl = 
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 45997
diff changeset
    94
    bin_to_bl_aux (n - 1) 0 (False # bl)"
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 45997
diff changeset
    95
  by (cases n) auto
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 45997
diff changeset
    96
46617
8c5d10d41391 make bool list functions respect int/bin distinction
huffman
parents: 46240
diff changeset
    97
lemma bin_to_bl_aux_minus1_minus_simp [simp]:
8c5d10d41391 make bool list functions respect int/bin distinction
huffman
parents: 46240
diff changeset
    98
  "0 < n ==> bin_to_bl_aux n -1 bl = 
8c5d10d41391 make bool list functions respect int/bin distinction
huffman
parents: 46240
diff changeset
    99
    bin_to_bl_aux (n - 1) -1 (True # bl)"
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   100
  by (cases n) auto
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   101
46617
8c5d10d41391 make bool list functions respect int/bin distinction
huffman
parents: 46240
diff changeset
   102
lemma bin_to_bl_aux_one_minus_simp [simp]:
8c5d10d41391 make bool list functions respect int/bin distinction
huffman
parents: 46240
diff changeset
   103
  "0 < n \<Longrightarrow> bin_to_bl_aux n 1 bl = 
8c5d10d41391 make bool list functions respect int/bin distinction
huffman
parents: 46240
diff changeset
   104
    bin_to_bl_aux (n - 1) 0 (True # bl)"
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   105
  by (cases n) auto
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   106
26086
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 26008
diff changeset
   107
lemma bin_to_bl_aux_Bit_minus_simp [simp]:
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   108
  "0 < n ==> bin_to_bl_aux n (w BIT b) bl = 
37654
8e33b9d04a82 use existing bit type from theory Bit
haftmann
parents: 32642
diff changeset
   109
    bin_to_bl_aux (n - 1) w ((b = 1) # bl)"
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   110
  by (cases n) auto
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   111
26086
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 26008
diff changeset
   112
lemma bin_to_bl_aux_Bit0_minus_simp [simp]:
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46655
diff changeset
   113
  "0 < n ==> bin_to_bl_aux n (numeral (Num.Bit0 w)) bl = 
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46655
diff changeset
   114
    bin_to_bl_aux (n - 1) (numeral w) (False # bl)"
26086
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 26008
diff changeset
   115
  by (cases n) auto
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 26008
diff changeset
   116
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 26008
diff changeset
   117
lemma bin_to_bl_aux_Bit1_minus_simp [simp]:
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46655
diff changeset
   118
  "0 < n ==> bin_to_bl_aux n (numeral (Num.Bit1 w)) bl = 
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46655
diff changeset
   119
    bin_to_bl_aux (n - 1) (numeral w) (True # bl)"
26086
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 26008
diff changeset
   120
  by (cases n) auto
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   121
44939
5930d35c976d removed unused legacy lemma names, some comment cleanup.
kleing
parents: 41842
diff changeset
   122
text {* Link between bin and bool list. *}
24465
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   123
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   124
lemma bl_to_bin_aux_append: 
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   125
  "bl_to_bin_aux (bs @ cs) w = bl_to_bin_aux cs (bl_to_bin_aux bs w)"
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   126
  by (induct bs arbitrary: w) auto
24465
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   127
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   128
lemma bin_to_bl_aux_append: 
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   129
  "bin_to_bl_aux n w bs @ cs = bin_to_bl_aux n w (bs @ cs)"
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   130
  by (induct n arbitrary: w bs) auto
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   131
24465
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   132
lemma bl_to_bin_append: 
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   133
  "bl_to_bin (bs @ cs) = bl_to_bin_aux cs (bl_to_bin bs)"
24465
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   134
  unfolding bl_to_bin_def by (rule bl_to_bin_aux_append)
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   135
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   136
lemma bin_to_bl_aux_alt: 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   137
  "bin_to_bl_aux n w bs = bin_to_bl n w @ bs" 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   138
  unfolding bin_to_bl_def by (simp add : bin_to_bl_aux_append)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   139
45996
e69d631fe9af declare simp rules immediately, instead of using 'declare' commands
huffman
parents: 45854
diff changeset
   140
lemma bin_to_bl_0 [simp]: "bin_to_bl 0 bs = []"
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   141
  unfolding bin_to_bl_def by auto
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   142
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   143
lemma size_bin_to_bl_aux: 
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   144
  "size (bin_to_bl_aux n w bs) = n + length bs"
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   145
  by (induct n arbitrary: w bs) auto
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   146
45996
e69d631fe9af declare simp rules immediately, instead of using 'declare' commands
huffman
parents: 45854
diff changeset
   147
lemma size_bin_to_bl [simp]: "size (bin_to_bl n w) = n" 
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   148
  unfolding bin_to_bl_def by (simp add : size_bin_to_bl_aux)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   149
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   150
lemma bin_bl_bin': 
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   151
  "bl_to_bin (bin_to_bl_aux n w bs) = 
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   152
    bl_to_bin_aux bs (bintrunc n w)"
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   153
  by (induct n arbitrary: w bs) (auto simp add : bl_to_bin_def)
24465
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   154
45996
e69d631fe9af declare simp rules immediately, instead of using 'declare' commands
huffman
parents: 45854
diff changeset
   155
lemma bin_bl_bin [simp]: "bl_to_bin (bin_to_bl n w) = bintrunc n w"
24465
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   156
  unfolding bin_to_bl_def bin_bl_bin' by auto
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   157
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   158
lemma bl_bin_bl':
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   159
  "bin_to_bl (n + length bs) (bl_to_bin_aux bs w) = 
24465
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   160
    bin_to_bl_aux n w bs"
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   161
  apply (induct bs arbitrary: w n)
24465
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   162
   apply auto
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   163
    apply (simp_all only : add_Suc [symmetric])
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   164
    apply (auto simp add : bin_to_bl_def)
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   165
  done
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   166
45996
e69d631fe9af declare simp rules immediately, instead of using 'declare' commands
huffman
parents: 45854
diff changeset
   167
lemma bl_bin_bl [simp]: "bin_to_bl (length bs) (bl_to_bin bs) = bs"
24465
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   168
  unfolding bl_to_bin_def
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   169
  apply (rule box_equals)
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   170
    apply (rule bl_bin_bl')
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   171
   prefer 2
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   172
   apply (rule bin_to_bl_aux.Z)
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   173
  apply simp
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   174
  done
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   175
  
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   176
lemma bl_to_bin_inj:
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   177
  "bl_to_bin bs = bl_to_bin cs ==> length bs = length cs ==> bs = cs"
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   178
  apply (rule_tac box_equals)
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   179
    defer
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   180
    apply (rule bl_bin_bl)
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   181
   apply (rule bl_bin_bl)
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   182
  apply simp
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   183
  done
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   184
45996
e69d631fe9af declare simp rules immediately, instead of using 'declare' commands
huffman
parents: 45854
diff changeset
   185
lemma bl_to_bin_False [simp]: "bl_to_bin (False # bl) = bl_to_bin bl"
46001
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 45997
diff changeset
   186
  unfolding bl_to_bin_def by auto
45996
e69d631fe9af declare simp rules immediately, instead of using 'declare' commands
huffman
parents: 45854
diff changeset
   187
46001
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 45997
diff changeset
   188
lemma bl_to_bin_Nil [simp]: "bl_to_bin [] = 0"
24465
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   189
  unfolding bl_to_bin_def by auto
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   190
46001
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 45997
diff changeset
   191
lemma bin_to_bl_zero_aux: 
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 45997
diff changeset
   192
  "bin_to_bl_aux n 0 bl = replicate n False @ bl"
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 45997
diff changeset
   193
  by (induct n arbitrary: bl) (auto simp: replicate_app_Cons_same)
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 45997
diff changeset
   194
46617
8c5d10d41391 make bool list functions respect int/bin distinction
huffman
parents: 46240
diff changeset
   195
lemma bin_to_bl_zero: "bin_to_bl n 0 = replicate n False"
8c5d10d41391 make bool list functions respect int/bin distinction
huffman
parents: 46240
diff changeset
   196
  unfolding bin_to_bl_def by (simp add: bin_to_bl_zero_aux)
8c5d10d41391 make bool list functions respect int/bin distinction
huffman
parents: 46240
diff changeset
   197
8c5d10d41391 make bool list functions respect int/bin distinction
huffman
parents: 46240
diff changeset
   198
lemma bin_to_bl_minus1_aux:
8c5d10d41391 make bool list functions respect int/bin distinction
huffman
parents: 46240
diff changeset
   199
  "bin_to_bl_aux n -1 bl = replicate n True @ bl"
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   200
  by (induct n arbitrary: bl) (auto simp: replicate_app_Cons_same)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   201
46617
8c5d10d41391 make bool list functions respect int/bin distinction
huffman
parents: 46240
diff changeset
   202
lemma bin_to_bl_minus1: "bin_to_bl n -1 = replicate n True"
8c5d10d41391 make bool list functions respect int/bin distinction
huffman
parents: 46240
diff changeset
   203
  unfolding bin_to_bl_def by (simp add: bin_to_bl_minus1_aux)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   204
24465
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   205
lemma bl_to_bin_rep_F: 
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   206
  "bl_to_bin (replicate n False @ bl) = bl_to_bin bl"
46001
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 45997
diff changeset
   207
  apply (simp add: bin_to_bl_zero_aux [symmetric] bin_bl_bin')
24465
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   208
  apply (simp add: bl_to_bin_def)
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   209
  done
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   210
45996
e69d631fe9af declare simp rules immediately, instead of using 'declare' commands
huffman
parents: 45854
diff changeset
   211
lemma bin_to_bl_trunc [simp]:
24465
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   212
  "n <= m ==> bin_to_bl n (bintrunc m w) = bin_to_bl n w"
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   213
  by (auto intro: bl_to_bin_inj)
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   214
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   215
lemma bin_to_bl_aux_bintr:
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   216
  "bin_to_bl_aux n (bintrunc m bin) bl = 
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   217
    replicate (n - m) False @ bin_to_bl_aux (min n m) bin bl"
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   218
  apply (induct n arbitrary: m bin bl)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   219
   apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   220
  apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   221
  apply (case_tac "m")
46001
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 45997
diff changeset
   222
   apply (clarsimp simp: bin_to_bl_zero_aux) 
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   223
   apply (erule thin_rl)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   224
   apply (induct_tac n)   
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   225
    apply auto
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   226
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   227
45854
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   228
lemma bin_to_bl_bintr:
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   229
  "bin_to_bl n (bintrunc m bin) =
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   230
    replicate (n - m) False @ bin_to_bl (min n m) bin"
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   231
  unfolding bin_to_bl_def by (rule bin_to_bl_aux_bintr)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   232
46001
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 45997
diff changeset
   233
lemma bl_to_bin_rep_False: "bl_to_bin (replicate n False) = 0"
24465
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   234
  by (induct n) auto
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   235
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   236
lemma len_bin_to_bl_aux: 
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   237
  "length (bin_to_bl_aux n w bs) = n + length bs"
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   238
  by (induct n arbitrary: w bs) auto
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   239
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   240
lemma len_bin_to_bl [simp]: "length (bin_to_bl n w) = n"
46617
8c5d10d41391 make bool list functions respect int/bin distinction
huffman
parents: 46240
diff changeset
   241
  by (fact size_bin_to_bl) (* FIXME: duplicate *)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   242
  
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   243
lemma sign_bl_bin': 
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   244
  "bin_sign (bl_to_bin_aux bs w) = bin_sign w"
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   245
  by (induct bs arbitrary: w) auto
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   246
  
46001
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 45997
diff changeset
   247
lemma sign_bl_bin: "bin_sign (bl_to_bin bs) = 0"
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   248
  unfolding bl_to_bin_def by (simp add : sign_bl_bin')
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   249
  
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   250
lemma bl_sbin_sign_aux: 
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   251
  "hd (bin_to_bl_aux (Suc n) w bs) = 
46001
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 45997
diff changeset
   252
    (bin_sign (sbintrunc n w) = -1)"
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   253
  apply (induct n arbitrary: w bs)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   254
   apply clarsimp
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   255
   apply (cases w rule: bin_exhaust)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   256
   apply (simp split add : bit.split)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   257
  apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   258
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   259
    
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   260
lemma bl_sbin_sign: 
46001
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 45997
diff changeset
   261
  "hd (bin_to_bl (Suc n) w) = (bin_sign (sbintrunc n w) = -1)"
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   262
  unfolding bin_to_bl_def by (rule bl_sbin_sign_aux)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   263
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   264
lemma bin_nth_of_bl_aux:
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   265
  "bin_nth (bl_to_bin_aux bl w) n = 
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   266
    (n < size bl & rev bl ! n | n >= length bl & bin_nth w (n - size bl))"
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   267
  apply (induct bl arbitrary: w)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   268
   apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   269
  apply clarsimp
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   270
  apply (cut_tac x=n and y="size bl" in linorder_less_linear)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   271
  apply (erule disjE, simp add: nth_append)+
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   272
  apply auto
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   273
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   274
45475
b2b087c20e45 removed some old-style semicolons
huffman
parents: 44939
diff changeset
   275
lemma bin_nth_of_bl: "bin_nth (bl_to_bin bl) n = (n < length bl & rev bl ! n)"
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   276
  unfolding bl_to_bin_def by (simp add : bin_nth_of_bl_aux)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   277
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   278
lemma bin_nth_bl: "n < m \<Longrightarrow> bin_nth w n = nth (rev (bin_to_bl m w)) n"
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   279
  apply (induct n arbitrary: m w)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   280
   apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   281
   apply (case_tac m, clarsimp)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   282
   apply (clarsimp simp: bin_to_bl_def)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   283
   apply (simp add: bin_to_bl_aux_alt)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   284
  apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   285
  apply (case_tac m, clarsimp)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   286
  apply (clarsimp simp: bin_to_bl_def)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   287
  apply (simp add: bin_to_bl_aux_alt)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   288
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   289
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   290
lemma nth_rev:
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   291
  "n < length xs \<Longrightarrow> rev xs ! n = xs ! (length xs - 1 - n)"
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   292
  apply (induct xs)
24465
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   293
   apply simp
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   294
  apply (clarsimp simp add : nth_append nth.simps split add : nat.split)
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   295
  apply (rule_tac f = "\<lambda>n. xs ! n" in arg_cong)
24465
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   296
  apply arith
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   297
  done
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   298
45854
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   299
lemma nth_rev_alt: "n < length ys \<Longrightarrow> ys ! n = rev ys ! (length ys - Suc n)"
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   300
  by (simp add: nth_rev)
24465
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   301
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   302
lemma nth_bin_to_bl_aux:
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   303
  "n < m + length bl \<Longrightarrow> (bin_to_bl_aux m w bl) ! n = 
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   304
    (if n < m then bin_nth w (m - 1 - n) else bl ! (n - m))"
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   305
  apply (induct m arbitrary: w n bl)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   306
   apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   307
  apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   308
  apply (case_tac w rule: bin_exhaust)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   309
  apply simp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   310
  done
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   311
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   312
lemma nth_bin_to_bl: "n < m ==> (bin_to_bl m w) ! n = bin_nth w (m - Suc n)"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   313
  unfolding bin_to_bl_def by (simp add : nth_bin_to_bl_aux)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   314
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   315
lemma bl_to_bin_lt2p_aux:
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   316
  "bl_to_bin_aux bs w < (w + 1) * (2 ^ length bs)"
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   317
  apply (induct bs arbitrary: w)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   318
   apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   319
  apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   320
  apply safe
53062
3af1a6020014 some vague grouping of related theorems, with slight tuning of headings and sorting out of dubious lemmas into separate theory
haftmann
parents: 47219
diff changeset
   321
  apply (drule meta_spec, erule xtrans(8) [rotated], simp add: Bit_def)+
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   322
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   323
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   324
lemma bl_to_bin_lt2p: "bl_to_bin bs < (2 ^ length bs)"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   325
  apply (unfold bl_to_bin_def)
53062
3af1a6020014 some vague grouping of related theorems, with slight tuning of headings and sorting out of dubious lemmas into separate theory
haftmann
parents: 47219
diff changeset
   326
  apply (rule xtrans(1))
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   327
   prefer 2
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   328
   apply (rule bl_to_bin_lt2p_aux)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   329
  apply simp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   330
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   331
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   332
lemma bl_to_bin_ge2p_aux:
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   333
  "bl_to_bin_aux bs w >= w * (2 ^ length bs)"
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   334
  apply (induct bs arbitrary: w)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   335
   apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   336
  apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   337
  apply safe
46652
bec50f8b3727 avoid using BIT_simps in proofs
huffman
parents: 46645
diff changeset
   338
   apply (drule meta_spec, erule order_trans [rotated],
bec50f8b3727 avoid using BIT_simps in proofs
huffman
parents: 46645
diff changeset
   339
          simp add: Bit_B0_2t Bit_B1_2t algebra_simps)+
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   340
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   341
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   342
lemma bl_to_bin_ge0: "bl_to_bin bs >= 0"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   343
  apply (unfold bl_to_bin_def)
53062
3af1a6020014 some vague grouping of related theorems, with slight tuning of headings and sorting out of dubious lemmas into separate theory
haftmann
parents: 47219
diff changeset
   344
  apply (rule xtrans(4))
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   345
   apply (rule bl_to_bin_ge2p_aux)
46617
8c5d10d41391 make bool list functions respect int/bin distinction
huffman
parents: 46240
diff changeset
   346
  apply simp
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   347
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   348
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   349
lemma butlast_rest_bin: 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   350
  "butlast (bin_to_bl n w) = bin_to_bl (n - 1) (bin_rest w)"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   351
  apply (unfold bin_to_bl_def)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   352
  apply (cases w rule: bin_exhaust)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   353
  apply (cases n, clarsimp)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   354
  apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   355
  apply (auto simp add: bin_to_bl_aux_alt)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   356
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   357
45854
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   358
lemma butlast_bin_rest:
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   359
  "butlast bl = bin_to_bl (length bl - Suc 0) (bin_rest (bl_to_bin bl))"
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   360
  using butlast_rest_bin [where w="bl_to_bin bl" and n="length bl"] by simp
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   361
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   362
lemma butlast_rest_bl2bin_aux:
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   363
  "bl ~= [] \<Longrightarrow>
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   364
    bl_to_bin_aux (butlast bl) w = bin_rest (bl_to_bin_aux bl w)"
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   365
  by (induct bl arbitrary: w) auto
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   366
  
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   367
lemma butlast_rest_bl2bin: 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   368
  "bl_to_bin (butlast bl) = bin_rest (bl_to_bin bl)"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   369
  apply (unfold bl_to_bin_def)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   370
  apply (cases bl)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   371
   apply (auto simp add: butlast_rest_bl2bin_aux)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   372
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   373
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   374
lemma trunc_bl2bin_aux:
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   375
  "bintrunc m (bl_to_bin_aux bl w) = 
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   376
    bl_to_bin_aux (drop (length bl - m) bl) (bintrunc (m - length bl) w)"
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   377
  apply (induct bl arbitrary: w)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   378
   apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   379
  apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   380
  apply safe
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   381
   apply (case_tac "m - size bl")
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   382
    apply (simp add : diff_is_0_eq [THEN iffD1, THEN Suc_diff_le])
46652
bec50f8b3727 avoid using BIT_simps in proofs
huffman
parents: 46645
diff changeset
   383
   apply simp
bec50f8b3727 avoid using BIT_simps in proofs
huffman
parents: 46645
diff changeset
   384
   apply (rule_tac f = "%nat. bl_to_bin_aux bl (bintrunc nat w BIT 1)" 
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   385
                   in arg_cong)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   386
   apply simp
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   387
  apply (case_tac "m - size bl")
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   388
   apply (simp add: diff_is_0_eq [THEN iffD1, THEN Suc_diff_le])
46652
bec50f8b3727 avoid using BIT_simps in proofs
huffman
parents: 46645
diff changeset
   389
  apply simp
bec50f8b3727 avoid using BIT_simps in proofs
huffman
parents: 46645
diff changeset
   390
  apply (rule_tac f = "%nat. bl_to_bin_aux bl (bintrunc nat w BIT 0)"
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   391
                  in arg_cong)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   392
  apply simp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   393
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   394
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   395
lemma trunc_bl2bin: 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   396
  "bintrunc m (bl_to_bin bl) = bl_to_bin (drop (length bl - m) bl)"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   397
  unfolding bl_to_bin_def by (simp add : trunc_bl2bin_aux)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   398
  
45854
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   399
lemma trunc_bl2bin_len [simp]:
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   400
  "bintrunc (length bl) (bl_to_bin bl) = bl_to_bin bl"
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   401
  by (simp add: trunc_bl2bin)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   402
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   403
lemma bl2bin_drop: 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   404
  "bl_to_bin (drop k bl) = bintrunc (length bl - k) (bl_to_bin bl)"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   405
  apply (rule trans)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   406
   prefer 2
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   407
   apply (rule trunc_bl2bin [symmetric])
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   408
  apply (cases "k <= length bl")
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   409
   apply auto
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   410
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   411
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   412
lemma nth_rest_power_bin:
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   413
  "bin_nth ((bin_rest ^^ k) w) n = bin_nth w (n + k)"
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   414
  apply (induct k arbitrary: n, clarsimp)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   415
  apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   416
  apply (simp only: bin_nth.Suc [symmetric] add_Suc)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   417
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   418
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   419
lemma take_rest_power_bin:
30971
7fbebf75b3ef funpow and relpow with shared "^^" syntax
haftmann
parents: 30952
diff changeset
   420
  "m <= n ==> take m (bin_to_bl n w) = bin_to_bl m ((bin_rest ^^ (n - m)) w)" 
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   421
  apply (rule nth_equalityI)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   422
   apply simp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   423
  apply (clarsimp simp add: nth_bin_to_bl nth_rest_power_bin)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   424
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   425
24465
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   426
lemma hd_butlast: "size xs > 1 ==> hd (butlast xs) = hd xs"
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   427
  by (cases xs) auto
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   428
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   429
lemma last_bin_last': 
37654
8e33b9d04a82 use existing bit type from theory Bit
haftmann
parents: 32642
diff changeset
   430
  "size xs > 0 \<Longrightarrow> last xs = (bin_last (bl_to_bin_aux xs w) = 1)" 
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   431
  by (induct xs arbitrary: w) auto
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   432
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   433
lemma last_bin_last: 
37654
8e33b9d04a82 use existing bit type from theory Bit
haftmann
parents: 32642
diff changeset
   434
  "size xs > 0 ==> last xs = (bin_last (bl_to_bin xs) = 1)" 
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   435
  unfolding bl_to_bin_def by (erule last_bin_last')
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   436
  
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   437
lemma bin_last_last: 
37654
8e33b9d04a82 use existing bit type from theory Bit
haftmann
parents: 32642
diff changeset
   438
  "bin_last w = (if last (bin_to_bl (Suc n) w) then 1 else 0)" 
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   439
  apply (unfold bin_to_bl_def)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   440
  apply simp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   441
  apply (auto simp add: bin_to_bl_aux_alt)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   442
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   443
24465
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   444
(** links between bit-wise operations and operations on bool lists **)
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   445
    
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   446
lemma bl_xor_aux_bin:
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   447
  "map2 (%x y. x ~= y) (bin_to_bl_aux n v bs) (bin_to_bl_aux n w cs) = 
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   448
    bin_to_bl_aux n (v XOR w) (map2 (%x y. x ~= y) bs cs)"
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   449
  apply (induct n arbitrary: v w bs cs)
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   450
   apply simp
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   451
  apply (case_tac v rule: bin_exhaust)
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   452
  apply (case_tac w rule: bin_exhaust)
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   453
  apply clarsimp
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   454
  apply (case_tac b)
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   455
  apply (case_tac ba, safe, simp_all)+
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   456
  done
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   457
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   458
lemma bl_or_aux_bin:
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   459
  "map2 (op | ) (bin_to_bl_aux n v bs) (bin_to_bl_aux n w cs) = 
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   460
    bin_to_bl_aux n (v OR w) (map2 (op | ) bs cs)"
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   461
  apply (induct n arbitrary: v w bs cs)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   462
   apply simp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   463
  apply (case_tac v rule: bin_exhaust)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   464
  apply (case_tac w rule: bin_exhaust)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   465
  apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   466
  apply (case_tac b)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   467
  apply (case_tac ba, safe, simp_all)+
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   468
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   469
    
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   470
lemma bl_and_aux_bin:
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   471
  "map2 (op & ) (bin_to_bl_aux n v bs) (bin_to_bl_aux n w cs) = 
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   472
    bin_to_bl_aux n (v AND w) (map2 (op & ) bs cs)" 
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   473
  apply (induct n arbitrary: v w bs cs)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   474
   apply simp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   475
  apply (case_tac v rule: bin_exhaust)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   476
  apply (case_tac w rule: bin_exhaust)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   477
  apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   478
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   479
    
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   480
lemma bl_not_aux_bin:
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   481
  "map Not (bin_to_bl_aux n w cs) = 
24353
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
   482
    bin_to_bl_aux n (NOT w) (map Not cs)"
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   483
  apply (induct n arbitrary: w cs)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   484
   apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   485
  apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   486
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   487
45854
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   488
lemma bl_not_bin: "map Not (bin_to_bl n w) = bin_to_bl n (NOT w)"
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   489
  unfolding bin_to_bl_def by (simp add: bl_not_aux_bin)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   490
45854
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   491
lemma bl_and_bin:
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   492
  "map2 (op \<and>) (bin_to_bl n v) (bin_to_bl n w) = bin_to_bl n (v AND w)"
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   493
  unfolding bin_to_bl_def by (simp add: bl_and_aux_bin)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   494
45854
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   495
lemma bl_or_bin:
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   496
  "map2 (op \<or>) (bin_to_bl n v) (bin_to_bl n w) = bin_to_bl n (v OR w)"
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   497
  unfolding bin_to_bl_def by (simp add: bl_or_aux_bin)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   498
45854
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   499
lemma bl_xor_bin:
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   500
  "map2 (\<lambda>x y. x \<noteq> y) (bin_to_bl n v) (bin_to_bl n w) = bin_to_bl n (v XOR w)"
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   501
  unfolding bin_to_bl_def by (simp only: bl_xor_aux_bin map2_Nil)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   502
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   503
lemma drop_bin2bl_aux:
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   504
  "drop m (bin_to_bl_aux n bin bs) = 
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   505
    bin_to_bl_aux (n - m) bin (drop (m - n) bs)"
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   506
  apply (induct n arbitrary: m bin bs, clarsimp)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   507
  apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   508
  apply (case_tac bin rule: bin_exhaust)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   509
  apply (case_tac "m <= n", simp)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   510
  apply (case_tac "m - n", simp)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   511
  apply simp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   512
  apply (rule_tac f = "%nat. drop nat bs" in arg_cong) 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   513
  apply simp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   514
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   515
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   516
lemma drop_bin2bl: "drop m (bin_to_bl n bin) = bin_to_bl (n - m) bin"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   517
  unfolding bin_to_bl_def by (simp add : drop_bin2bl_aux)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   518
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   519
lemma take_bin2bl_lem1:
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   520
  "take m (bin_to_bl_aux m w bs) = bin_to_bl m w"
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   521
  apply (induct m arbitrary: w bs, clarsimp)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   522
  apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   523
  apply (simp add: bin_to_bl_aux_alt)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   524
  apply (simp add: bin_to_bl_def)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   525
  apply (simp add: bin_to_bl_aux_alt)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   526
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   527
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   528
lemma take_bin2bl_lem:
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   529
  "take m (bin_to_bl_aux (m + n) w bs) = 
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   530
    take m (bin_to_bl (m + n) w)"
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   531
  apply (induct n arbitrary: w bs)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   532
   apply (simp_all (no_asm) add: bin_to_bl_def take_bin2bl_lem1)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   533
  apply simp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   534
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   535
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   536
lemma bin_split_take:
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   537
  "bin_split n c = (a, b) \<Longrightarrow>
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   538
    bin_to_bl m a = take m (bin_to_bl (m + n) c)"
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   539
  apply (induct n arbitrary: b c)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   540
   apply clarsimp
53062
3af1a6020014 some vague grouping of related theorems, with slight tuning of headings and sorting out of dubious lemmas into separate theory
haftmann
parents: 47219
diff changeset
   541
  apply (clarsimp simp: Let_def split: prod.split_asm)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   542
  apply (simp add: bin_to_bl_def)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   543
  apply (simp add: take_bin2bl_lem)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   544
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   545
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   546
lemma bin_split_take1: 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   547
  "k = m + n ==> bin_split n c = (a, b) ==> 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   548
    bin_to_bl m a = take m (bin_to_bl k c)"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   549
  by (auto elim: bin_split_take)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   550
  
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   551
lemma nth_takefill: "m < n \<Longrightarrow>
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   552
    takefill fill n l ! m = (if m < length l then l ! m else fill)"
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   553
  apply (induct n arbitrary: m l, clarsimp)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   554
  apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   555
  apply (case_tac m)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   556
   apply (simp split: list.split)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   557
  apply (simp split: list.split)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   558
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   559
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   560
lemma takefill_alt:
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   561
  "takefill fill n l = take n l @ replicate (n - length l) fill"
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   562
  by (induct n arbitrary: l) (auto split: list.split)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   563
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   564
lemma takefill_replicate [simp]:
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   565
  "takefill fill n (replicate m fill) = replicate n fill"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   566
  by (simp add : takefill_alt replicate_add [symmetric])
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   567
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   568
lemma takefill_le':
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   569
  "n = m + k \<Longrightarrow> takefill x m (takefill x n l) = takefill x m l"
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   570
  by (induct m arbitrary: l n) (auto split: list.split)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   571
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   572
lemma length_takefill [simp]: "length (takefill fill n l) = n"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   573
  by (simp add : takefill_alt)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   574
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   575
lemma take_takefill':
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   576
  "!!w n.  n = k + m ==> take k (takefill fill n w) = takefill fill k w"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   577
  by (induct k) (auto split add : list.split) 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   578
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   579
lemma drop_takefill:
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   580
  "!!w. drop k (takefill fill (m + k) w) = takefill fill m (drop k w)"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   581
  by (induct k) (auto split add : list.split) 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   582
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   583
lemma takefill_le [simp]:
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   584
  "m \<le> n \<Longrightarrow> takefill x m (takefill x n l) = takefill x m l"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   585
  by (auto simp: le_iff_add takefill_le')
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   586
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   587
lemma take_takefill [simp]:
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   588
  "m \<le> n \<Longrightarrow> take m (takefill fill n w) = takefill fill m w"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   589
  by (auto simp: le_iff_add take_takefill')
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   590
 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   591
lemma takefill_append:
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   592
  "takefill fill (m + length xs) (xs @ w) = xs @ (takefill fill m w)"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   593
  by (induct xs) auto
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   594
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   595
lemma takefill_same': 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   596
  "l = length xs ==> takefill fill l xs = xs"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   597
  by clarify (induct xs, auto)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   598
 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   599
lemmas takefill_same [simp] = takefill_same' [OF refl]
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   600
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   601
lemma takefill_bintrunc:
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   602
  "takefill False n bl = rev (bin_to_bl n (bl_to_bin (rev bl)))"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   603
  apply (rule nth_equalityI)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   604
   apply simp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   605
  apply (clarsimp simp: nth_takefill nth_rev nth_bin_to_bl bin_nth_of_bl)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   606
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   607
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   608
lemma bl_bin_bl_rtf:
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   609
  "bin_to_bl n (bl_to_bin bl) = rev (takefill False n (rev bl))"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   610
  by (simp add : takefill_bintrunc)
45854
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   611
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   612
lemma bl_bin_bl_rep_drop:
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   613
  "bin_to_bl n (bl_to_bin bl) =
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   614
    replicate (n - length bl) False @ drop (length bl - n) bl"
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   615
  by (simp add: bl_bin_bl_rtf takefill_alt rev_take)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   616
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   617
lemma tf_rev:
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   618
  "n + k = m + length bl ==> takefill x m (rev (takefill y n bl)) = 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   619
    rev (takefill y m (rev (takefill x k (rev bl))))"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   620
  apply (rule nth_equalityI)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   621
   apply (auto simp add: nth_takefill nth_rev)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   622
  apply (rule_tac f = "%n. bl ! n" in arg_cong) 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   623
  apply arith 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   624
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   625
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   626
lemma takefill_minus:
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   627
  "0 < n ==> takefill fill (Suc (n - 1)) w = takefill fill n w"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   628
  by auto
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   629
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   630
lemmas takefill_Suc_cases = 
45604
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45543
diff changeset
   631
  list.cases [THEN takefill.Suc [THEN trans]]
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   632
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   633
lemmas takefill_Suc_Nil = takefill_Suc_cases (1)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   634
lemmas takefill_Suc_Cons = takefill_Suc_cases (2)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   635
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   636
lemmas takefill_minus_simps = takefill_Suc_cases [THEN [2] 
45604
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45543
diff changeset
   637
  takefill_minus [symmetric, THEN trans]]
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   638
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46655
diff changeset
   639
lemma takefill_numeral_Nil [simp]:
47219
172c031ad743 restate various simp rules for word operations using pred_numeral
huffman
parents: 47108
diff changeset
   640
  "takefill fill (numeral k) [] = fill # takefill fill (pred_numeral k) []"
172c031ad743 restate various simp rules for word operations using pred_numeral
huffman
parents: 47108
diff changeset
   641
  by (simp add: numeral_eq_Suc)
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46655
diff changeset
   642
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46655
diff changeset
   643
lemma takefill_numeral_Cons [simp]:
47219
172c031ad743 restate various simp rules for word operations using pred_numeral
huffman
parents: 47108
diff changeset
   644
  "takefill fill (numeral k) (x # xs) = x # takefill fill (pred_numeral k) xs"
172c031ad743 restate various simp rules for word operations using pred_numeral
huffman
parents: 47108
diff changeset
   645
  by (simp add: numeral_eq_Suc)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   646
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   647
(* links with function bl_to_bin *)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   648
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   649
lemma bl_to_bin_aux_cat: 
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   650
  "!!nv v. bl_to_bin_aux bs (bin_cat w nv v) = 
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   651
    bin_cat w (nv + length bs) (bl_to_bin_aux bs v)"
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   652
  apply (induct bs)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   653
   apply simp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   654
  apply (simp add: bin_cat_Suc_Bit [symmetric] del: bin_cat.simps)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   655
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   656
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   657
lemma bin_to_bl_aux_cat: 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   658
  "!!w bs. bin_to_bl_aux (nv + nw) (bin_cat v nw w) bs = 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   659
    bin_to_bl_aux nv v (bin_to_bl_aux nw w bs)"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   660
  by (induct nw) auto 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   661
45854
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   662
lemma bl_to_bin_aux_alt:
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   663
  "bl_to_bin_aux bs w = bin_cat w (length bs) (bl_to_bin bs)"
46001
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 45997
diff changeset
   664
  using bl_to_bin_aux_cat [where nv = "0" and v = "0"]
45854
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   665
  unfolding bl_to_bin_def [symmetric] by simp
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   666
45854
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   667
lemma bin_to_bl_cat:
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   668
  "bin_to_bl (nv + nw) (bin_cat v nw w) =
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   669
    bin_to_bl_aux nv v (bin_to_bl nw w)"
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   670
  unfolding bin_to_bl_def by (simp add: bin_to_bl_aux_cat)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   671
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   672
lemmas bl_to_bin_aux_app_cat = 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   673
  trans [OF bl_to_bin_aux_append bl_to_bin_aux_alt]
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   674
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   675
lemmas bin_to_bl_aux_cat_app =
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   676
  trans [OF bin_to_bl_aux_cat bin_to_bl_aux_alt]
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   677
45854
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   678
lemma bl_to_bin_app_cat:
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   679
  "bl_to_bin (bsa @ bs) = bin_cat (bl_to_bin bsa) (length bs) (bl_to_bin bs)"
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   680
  by (simp only: bl_to_bin_aux_app_cat bl_to_bin_def)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   681
45854
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   682
lemma bin_to_bl_cat_app:
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   683
  "bin_to_bl (n + nw) (bin_cat w nw wa) = bin_to_bl n w @ bin_to_bl nw wa"
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   684
  by (simp only: bin_to_bl_def bin_to_bl_aux_cat_app)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   685
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   686
(* bl_to_bin_app_cat_alt and bl_to_bin_app_cat are easily interderivable *)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   687
lemma bl_to_bin_app_cat_alt: 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   688
  "bin_cat (bl_to_bin cs) n w = bl_to_bin (cs @ bin_to_bl n w)"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   689
  by (simp add : bl_to_bin_app_cat)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   690
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   691
lemma mask_lem: "(bl_to_bin (True # replicate n False)) = 
46645
573aff6b9b0a adapt lemma mask_lem to respect int/bin distinction
huffman
parents: 46617
diff changeset
   692
    (bl_to_bin (replicate n True)) + 1"
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   693
  apply (unfold bl_to_bin_def)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   694
  apply (induct n)
46645
573aff6b9b0a adapt lemma mask_lem to respect int/bin distinction
huffman
parents: 46617
diff changeset
   695
   apply simp
31790
05c92381363c corrected and unified thm names
nipkow
parents: 30971
diff changeset
   696
  apply (simp only: Suc_eq_plus1 replicate_add
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   697
                    append_Cons [symmetric] bl_to_bin_aux_append)
46645
573aff6b9b0a adapt lemma mask_lem to respect int/bin distinction
huffman
parents: 46617
diff changeset
   698
  apply (simp add: Bit_B0_2t Bit_B1_2t)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   699
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   700
24465
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24399
diff changeset
   701
(* function bl_of_nth *)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   702
lemma length_bl_of_nth [simp]: "length (bl_of_nth n f) = n"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   703
  by (induct n)  auto
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   704
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   705
lemma nth_bl_of_nth [simp]:
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   706
  "m < n \<Longrightarrow> rev (bl_of_nth n f) ! m = f m"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   707
  apply (induct n)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   708
   apply simp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   709
  apply (clarsimp simp add : nth_append)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   710
  apply (rule_tac f = "f" in arg_cong) 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   711
  apply simp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   712
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   713
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   714
lemma bl_of_nth_inj: 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   715
  "(!!k. k < n ==> f k = g k) ==> bl_of_nth n f = bl_of_nth n g"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   716
  by (induct n)  auto
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   717
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   718
lemma bl_of_nth_nth_le:
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   719
  "n \<le> length xs \<Longrightarrow> bl_of_nth n (nth (rev xs)) = drop (length xs - n) xs"
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   720
  apply (induct n arbitrary: xs, clarsimp)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   721
  apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   722
  apply (rule trans [OF _ hd_Cons_tl])
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   723
   apply (frule Suc_le_lessD)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   724
   apply (simp add: nth_rev trans [OF drop_Suc drop_tl, symmetric])
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   725
   apply (subst hd_drop_conv_nth)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   726
     apply force
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   727
    apply simp_all
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   728
  apply (rule_tac f = "%n. drop n xs" in arg_cong) 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   729
  apply simp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   730
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   731
45854
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   732
lemma bl_of_nth_nth [simp]: "bl_of_nth (length xs) (op ! (rev xs)) = xs"
40554613b4f0 replace many uses of 'lemmas' with explicit 'lemma'
huffman
parents: 45847
diff changeset
   733
  by (simp add: bl_of_nth_nth_le)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   734
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   735
lemma size_rbl_pred: "length (rbl_pred bl) = length bl"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   736
  by (induct bl) auto
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   737
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   738
lemma size_rbl_succ: "length (rbl_succ bl) = length bl"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   739
  by (induct bl) auto
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   740
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   741
lemma size_rbl_add:
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   742
  "!!cl. length (rbl_add bl cl) = length bl"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   743
  by (induct bl) (auto simp: Let_def size_rbl_succ)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   744
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   745
lemma size_rbl_mult: 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   746
  "!!cl. length (rbl_mult bl cl) = length bl"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   747
  by (induct bl) (auto simp add : Let_def size_rbl_add)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   748
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   749
lemmas rbl_sizes [simp] = 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   750
  size_rbl_pred size_rbl_succ size_rbl_add size_rbl_mult
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   751
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   752
lemmas rbl_Nils =
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   753
  rbl_pred.Nil rbl_succ.Nil rbl_add.Nil rbl_mult.Nil
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   754
46653
a557db8f2fbf avoid using BIT_simps in proofs;
huffman
parents: 46652
diff changeset
   755
lemma rbl_pred:
a557db8f2fbf avoid using BIT_simps in proofs;
huffman
parents: 46652
diff changeset
   756
  "rbl_pred (rev (bin_to_bl n bin)) = rev (bin_to_bl n (bin - 1))"
a557db8f2fbf avoid using BIT_simps in proofs;
huffman
parents: 46652
diff changeset
   757
  apply (induct n arbitrary: bin, simp)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   758
  apply (unfold bin_to_bl_def)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   759
  apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   760
  apply (case_tac bin rule: bin_exhaust)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   761
  apply (case_tac b)
46653
a557db8f2fbf avoid using BIT_simps in proofs;
huffman
parents: 46652
diff changeset
   762
   apply (clarsimp simp: bin_to_bl_aux_alt)+
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   763
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   764
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   765
lemma rbl_succ: 
46653
a557db8f2fbf avoid using BIT_simps in proofs;
huffman
parents: 46652
diff changeset
   766
  "rbl_succ (rev (bin_to_bl n bin)) = rev (bin_to_bl n (bin + 1))"
a557db8f2fbf avoid using BIT_simps in proofs;
huffman
parents: 46652
diff changeset
   767
  apply (induct n arbitrary: bin, simp)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   768
  apply (unfold bin_to_bl_def)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   769
  apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   770
  apply (case_tac bin rule: bin_exhaust)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   771
  apply (case_tac b)
46653
a557db8f2fbf avoid using BIT_simps in proofs;
huffman
parents: 46652
diff changeset
   772
   apply (clarsimp simp: bin_to_bl_aux_alt)+
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   773
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   774
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   775
lemma rbl_add: 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   776
  "!!bina binb. rbl_add (rev (bin_to_bl n bina)) (rev (bin_to_bl n binb)) = 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   777
    rev (bin_to_bl n (bina + binb))"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   778
  apply (induct n, simp)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   779
  apply (unfold bin_to_bl_def)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   780
  apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   781
  apply (case_tac bina rule: bin_exhaust)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   782
  apply (case_tac binb rule: bin_exhaust)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   783
  apply (case_tac b)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   784
   apply (case_tac [!] "ba")
46655
be76913ec1a4 avoid using Int.succ_def in proofs
huffman
parents: 46653
diff changeset
   785
     apply (auto simp: rbl_succ bin_to_bl_aux_alt Let_def add_ac)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   786
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   787
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   788
lemma rbl_add_app2: 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   789
  "!!blb. length blb >= length bla ==> 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   790
    rbl_add bla (blb @ blc) = rbl_add bla blb"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   791
  apply (induct bla, simp)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   792
  apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   793
  apply (case_tac blb, clarsimp)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   794
  apply (clarsimp simp: Let_def)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   795
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   796
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   797
lemma rbl_add_take2: 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   798
  "!!blb. length blb >= length bla ==> 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   799
    rbl_add bla (take (length bla) blb) = rbl_add bla blb"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   800
  apply (induct bla, simp)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   801
  apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   802
  apply (case_tac blb, clarsimp)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   803
  apply (clarsimp simp: Let_def)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   804
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   805
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   806
lemma rbl_add_long: 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   807
  "m >= n ==> rbl_add (rev (bin_to_bl n bina)) (rev (bin_to_bl m binb)) = 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   808
    rev (bin_to_bl n (bina + binb))"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   809
  apply (rule box_equals [OF _ rbl_add_take2 rbl_add])
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   810
   apply (rule_tac f = "rbl_add (rev (bin_to_bl n bina))" in arg_cong) 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   811
   apply (rule rev_swap [THEN iffD1])
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   812
   apply (simp add: rev_take drop_bin2bl)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   813
  apply simp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   814
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   815
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   816
lemma rbl_mult_app2:
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   817
  "!!blb. length blb >= length bla ==> 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   818
    rbl_mult bla (blb @ blc) = rbl_mult bla blb"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   819
  apply (induct bla, simp)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   820
  apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   821
  apply (case_tac blb, clarsimp)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   822
  apply (clarsimp simp: Let_def rbl_add_app2)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   823
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   824
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   825
lemma rbl_mult_take2: 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   826
  "length blb >= length bla ==> 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   827
    rbl_mult bla (take (length bla) blb) = rbl_mult bla blb"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   828
  apply (rule trans)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   829
   apply (rule rbl_mult_app2 [symmetric])
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   830
   apply simp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   831
  apply (rule_tac f = "rbl_mult bla" in arg_cong) 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   832
  apply (rule append_take_drop_id)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   833
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   834
    
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   835
lemma rbl_mult_gt1: 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   836
  "m >= length bl ==> rbl_mult bl (rev (bin_to_bl m binb)) = 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   837
    rbl_mult bl (rev (bin_to_bl (length bl) binb))"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   838
  apply (rule trans)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   839
   apply (rule rbl_mult_take2 [symmetric])
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   840
   apply simp_all
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   841
  apply (rule_tac f = "rbl_mult bl" in arg_cong) 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   842
  apply (rule rev_swap [THEN iffD1])
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   843
  apply (simp add: rev_take drop_bin2bl)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   844
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   845
    
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   846
lemma rbl_mult_gt: 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   847
  "m > n ==> rbl_mult (rev (bin_to_bl n bina)) (rev (bin_to_bl m binb)) = 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   848
    rbl_mult (rev (bin_to_bl n bina)) (rev (bin_to_bl n binb))"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   849
  by (auto intro: trans [OF rbl_mult_gt1])
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   850
  
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   851
lemmas rbl_mult_Suc = lessI [THEN rbl_mult_gt]
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   852
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   853
lemma rbbl_Cons: 
37654
8e33b9d04a82 use existing bit type from theory Bit
haftmann
parents: 32642
diff changeset
   854
  "b # rev (bin_to_bl n x) = rev (bin_to_bl (Suc n) (x BIT If b 1 0))"
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   855
  apply (unfold bin_to_bl_def)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   856
  apply simp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   857
  apply (simp add: bin_to_bl_aux_alt)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   858
  done
46653
a557db8f2fbf avoid using BIT_simps in proofs;
huffman
parents: 46652
diff changeset
   859
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   860
lemma rbl_mult: "!!bina binb. 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   861
    rbl_mult (rev (bin_to_bl n bina)) (rev (bin_to_bl n binb)) = 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   862
    rev (bin_to_bl n (bina * binb))"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   863
  apply (induct n)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   864
   apply simp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   865
  apply (unfold bin_to_bl_def)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   866
  apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   867
  apply (case_tac bina rule: bin_exhaust)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   868
  apply (case_tac binb rule: bin_exhaust)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   869
  apply (case_tac b)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   870
   apply (case_tac [!] "ba")
46653
a557db8f2fbf avoid using BIT_simps in proofs;
huffman
parents: 46652
diff changeset
   871
     apply (auto simp: bin_to_bl_aux_alt Let_def)
a557db8f2fbf avoid using BIT_simps in proofs;
huffman
parents: 46652
diff changeset
   872
     apply (auto simp: rbbl_Cons rbl_mult_Suc rbl_add)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   873
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   874
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   875
lemma rbl_add_split: 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   876
  "P (rbl_add (y # ys) (x # xs)) = 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   877
    (ALL ws. length ws = length ys --> ws = rbl_add ys xs --> 
26008
24c82bef5696 eliminated escaped white space;
wenzelm
parents: 25919
diff changeset
   878
    (y --> ((x --> P (False # rbl_succ ws)) & (~ x -->  P (True # ws)))) &
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   879
    (~ y --> P (x # ws)))"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   880
  apply (auto simp add: Let_def)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   881
   apply (case_tac [!] "y")
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   882
     apply auto
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   883
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   884
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   885
lemma rbl_mult_split: 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   886
  "P (rbl_mult (y # ys) xs) = 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   887
    (ALL ws. length ws = Suc (length ys) --> ws = False # rbl_mult ys xs --> 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   888
    (y --> P (rbl_add ws xs)) & (~ y -->  P ws))"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   889
  by (clarsimp simp add : Let_def)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   890
  
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   891
24350
4d74f37c6367 headers for document generation
huffman
parents: 24333
diff changeset
   892
subsection "Repeated splitting or concatenation"
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   893
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   894
lemma sclem:
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   895
  "size (concat (map (bin_to_bl n) xs)) = length xs * n"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   896
  by (induct xs) auto
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   897
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   898
lemma bin_cat_foldl_lem:
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   899
  "foldl (%u. bin_cat u n) x xs = 
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   900
    bin_cat x (size xs * n) (foldl (%u. bin_cat u n) y xs)"
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   901
  apply (induct xs arbitrary: x)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   902
   apply simp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   903
  apply (simp (no_asm))
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   904
  apply (frule asm_rl)
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   905
  apply (drule meta_spec)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   906
  apply (erule trans)
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   907
  apply (drule_tac x = "bin_cat y n a" in meta_spec)
32642
026e7c6a6d08 be more cautious wrt. simp rules: inf_absorb1, inf_absorb2, sup_absorb1, sup_absorb2 are no simp rules by default any longer
haftmann
parents: 32439
diff changeset
   908
  apply (simp add : bin_cat_assoc_sym min_max.inf_absorb2)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   909
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   910
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   911
lemma bin_rcat_bl:
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   912
  "(bin_rcat n wl) = bl_to_bin (concat (map (bin_to_bl n) wl))"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   913
  apply (unfold bin_rcat_def)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   914
  apply (rule sym)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   915
  apply (induct wl)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   916
   apply (auto simp add : bl_to_bin_append)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   917
  apply (simp add : bl_to_bin_aux_alt sclem)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   918
  apply (simp add : bin_cat_foldl_lem [symmetric])
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   919
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   920
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   921
lemmas bin_rsplit_aux_simps = bin_rsplit_aux.simps bin_rsplitl_aux.simps
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   922
lemmas rsplit_aux_simps = bin_rsplit_aux_simps
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   923
45604
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45543
diff changeset
   924
lemmas th_if_simp1 = split_if [where P = "op = l", THEN iffD1, THEN conjunct1, THEN mp] for l
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45543
diff changeset
   925
lemmas th_if_simp2 = split_if [where P = "op = l", THEN iffD1, THEN conjunct2, THEN mp] for l
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   926
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   927
lemmas rsplit_aux_simp1s = rsplit_aux_simps [THEN th_if_simp1]
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   928
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   929
lemmas rsplit_aux_simp2ls = rsplit_aux_simps [THEN th_if_simp2]
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   930
(* these safe to [simp add] as require calculating m - n *)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   931
lemmas bin_rsplit_aux_simp2s [simp] = rsplit_aux_simp2ls [unfolded Let_def]
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   932
lemmas rbscl = bin_rsplit_aux_simp2s (2)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   933
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   934
lemmas rsplit_aux_0_simps [simp] = 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   935
  rsplit_aux_simp1s [OF disjI1] rsplit_aux_simp1s [OF disjI2]
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   936
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   937
lemma bin_rsplit_aux_append:
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   938
  "bin_rsplit_aux n m c (bs @ cs) = bin_rsplit_aux n m c bs @ cs"
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   939
  apply (induct n m c bs rule: bin_rsplit_aux.induct)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   940
  apply (subst bin_rsplit_aux.simps)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   941
  apply (subst bin_rsplit_aux.simps)
53062
3af1a6020014 some vague grouping of related theorems, with slight tuning of headings and sorting out of dubious lemmas into separate theory
haftmann
parents: 47219
diff changeset
   942
  apply (clarsimp split: prod.split)
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   943
  apply auto
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   944
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   945
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   946
lemma bin_rsplitl_aux_append:
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   947
  "bin_rsplitl_aux n m c (bs @ cs) = bin_rsplitl_aux n m c bs @ cs"
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   948
  apply (induct n m c bs rule: bin_rsplitl_aux.induct)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   949
  apply (subst bin_rsplitl_aux.simps)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   950
  apply (subst bin_rsplitl_aux.simps)
53062
3af1a6020014 some vague grouping of related theorems, with slight tuning of headings and sorting out of dubious lemmas into separate theory
haftmann
parents: 47219
diff changeset
   951
  apply (clarsimp split: prod.split)
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   952
  apply auto
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   953
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   954
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   955
lemmas rsplit_aux_apps [where bs = "[]"] =
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   956
  bin_rsplit_aux_append bin_rsplitl_aux_append
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   957
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   958
lemmas rsplit_def_auxs = bin_rsplit_def bin_rsplitl_def
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   959
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   960
lemmas rsplit_aux_alts = rsplit_aux_apps 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   961
  [unfolded append_Nil rsplit_def_auxs [symmetric]]
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   962
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   963
lemma bin_split_minus: "0 < n ==> bin_split (Suc (n - 1)) w = bin_split n w"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   964
  by auto
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   965
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   966
lemmas bin_split_minus_simp =
45604
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45543
diff changeset
   967
  bin_split.Suc [THEN [2] bin_split_minus [symmetric, THEN trans]]
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   968
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   969
lemma bin_split_pred_simp [simp]: 
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46655
diff changeset
   970
  "(0::nat) < numeral bin \<Longrightarrow>
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46655
diff changeset
   971
  bin_split (numeral bin) w =
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46655
diff changeset
   972
  (let (w1, w2) = bin_split (numeral bin - 1) (bin_rest w)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   973
   in (w1, w2 BIT bin_last w))" 
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46655
diff changeset
   974
  by (simp only: bin_split_minus_simp)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   975
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   976
lemma bin_rsplit_aux_simp_alt:
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   977
  "bin_rsplit_aux n m c bs =
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   978
   (if m = 0 \<or> n = 0 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   979
   then bs
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   980
   else let (a, b) = bin_split n c in bin_rsplit n (m - n, a) @ b # bs)"
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   981
  unfolding bin_rsplit_aux.simps [of n m c bs]
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   982
  apply simp
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   983
  apply (subst rsplit_aux_alts)
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
   984
  apply (simp add: bin_rsplit_def)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   985
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   986
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   987
lemmas bin_rsplit_simp_alt = 
45604
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45543
diff changeset
   988
  trans [OF bin_rsplit_def bin_rsplit_aux_simp_alt]
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   989
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   990
lemmas bthrs = bin_rsplit_simp_alt [THEN [2] trans]
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   991
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   992
lemma bin_rsplit_size_sign' [rule_format] : 
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   993
  "\<lbrakk>n > 0; rev sw = bin_rsplit n (nw, w)\<rbrakk> \<Longrightarrow> 
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   994
    (ALL v: set sw. bintrunc n v = v)"
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
   995
  apply (induct sw arbitrary: nw w v)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   996
   apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   997
  apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   998
  apply (drule bthrs)
53062
3af1a6020014 some vague grouping of related theorems, with slight tuning of headings and sorting out of dubious lemmas into separate theory
haftmann
parents: 47219
diff changeset
   999
  apply (simp (no_asm_use) add: Let_def split: prod.split_asm split_if_asm)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1000
  apply clarify
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1001
  apply (drule split_bintrunc)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1002
  apply simp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1003
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1004
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1005
lemmas bin_rsplit_size_sign = bin_rsplit_size_sign' [OF asm_rl 
45604
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45543
diff changeset
  1006
  rev_rev_ident [THEN trans] set_rev [THEN equalityD2 [THEN subsetD]]]
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1007
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1008
lemma bin_nth_rsplit [rule_format] :
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1009
  "n > 0 ==> m < n ==> (ALL w k nw. rev sw = bin_rsplit n (nw, w) --> 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1010
       k < size sw --> bin_nth (sw ! k) m = bin_nth w (k * n + m))"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1011
  apply (induct sw)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1012
   apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1013
  apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1014
  apply (drule bthrs)
53062
3af1a6020014 some vague grouping of related theorems, with slight tuning of headings and sorting out of dubious lemmas into separate theory
haftmann
parents: 47219
diff changeset
  1015
  apply (simp (no_asm_use) add: Let_def split: prod.split_asm split_if_asm)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1016
  apply clarify
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1017
  apply (erule allE, erule impE, erule exI)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1018
  apply (case_tac k)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1019
   apply clarsimp   
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1020
   prefer 2
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1021
   apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1022
   apply (erule allE)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1023
   apply (erule (1) impE)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1024
   apply (drule bin_nth_split, erule conjE, erule allE,
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1025
          erule trans, simp add : add_ac)+
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1026
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1027
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1028
lemma bin_rsplit_all:
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1029
  "0 < nw ==> nw <= n ==> bin_rsplit n (nw, w) = [bintrunc n w]"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1030
  unfolding bin_rsplit_def
53062
3af1a6020014 some vague grouping of related theorems, with slight tuning of headings and sorting out of dubious lemmas into separate theory
haftmann
parents: 47219
diff changeset
  1031
  by (clarsimp dest!: split_bintrunc simp: rsplit_aux_simp2ls split: prod.split)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1032
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1033
lemma bin_rsplit_l [rule_format] :
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1034
  "ALL bin. bin_rsplitl n (m, bin) = bin_rsplit n (m, bintrunc m bin)"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1035
  apply (rule_tac a = "m" in wf_less_than [THEN wf_induct])
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1036
  apply (simp (no_asm) add : bin_rsplitl_def bin_rsplit_def)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1037
  apply (rule allI)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1038
  apply (subst bin_rsplitl_aux.simps)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1039
  apply (subst bin_rsplit_aux.simps)
53062
3af1a6020014 some vague grouping of related theorems, with slight tuning of headings and sorting out of dubious lemmas into separate theory
haftmann
parents: 47219
diff changeset
  1040
  apply (clarsimp simp: Let_def split: prod.split)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1041
  apply (drule bin_split_trunc)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1042
  apply (drule sym [THEN trans], assumption)
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
  1043
  apply (subst rsplit_aux_alts(1))
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
  1044
  apply (subst rsplit_aux_alts(2))
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
  1045
  apply clarsimp
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
  1046
  unfolding bin_rsplit_def bin_rsplitl_def
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
  1047
  apply simp
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1048
  done
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
  1049
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1050
lemma bin_rsplit_rcat [rule_format] :
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1051
  "n > 0 --> bin_rsplit n (n * size ws, bin_rcat n ws) = map (bintrunc n) ws"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1052
  apply (unfold bin_rsplit_def bin_rcat_def)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1053
  apply (rule_tac xs = "ws" in rev_induct)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1054
   apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1055
  apply clarsimp
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
  1056
  apply (subst rsplit_aux_alts)
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
  1057
  unfolding bin_split_cat
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
  1058
  apply simp
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1059
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1060
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1061
lemma bin_rsplit_aux_len_le [rule_format] :
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
  1062
  "\<forall>ws m. n \<noteq> 0 \<longrightarrow> ws = bin_rsplit_aux n nw w bs \<longrightarrow>
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
  1063
    length ws \<le> m \<longleftrightarrow> nw + length bs * n \<le> m * n"
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
  1064
  apply (induct n nw w bs rule: bin_rsplit_aux.induct)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1065
  apply (subst bin_rsplit_aux.simps)
53062
3af1a6020014 some vague grouping of related theorems, with slight tuning of headings and sorting out of dubious lemmas into separate theory
haftmann
parents: 47219
diff changeset
  1066
  apply (simp add: lrlem Let_def split: prod.split)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1067
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1068
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1069
lemma bin_rsplit_len_le: 
25134
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
  1070
  "n \<noteq> 0 --> ws = bin_rsplit n (nw, w) --> (length ws <= m) = (nw <= m * n)"
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1071
  unfolding bin_rsplit_def by (clarsimp simp add : bin_rsplit_aux_len_le)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1072
 
45997
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
  1073
lemma bin_rsplit_aux_len:
13392893ea12 use 'induct arbitrary' instead of 'rule_format' attribute
huffman
parents: 45996
diff changeset
  1074
  "n \<noteq> 0 \<Longrightarrow> length (bin_rsplit_aux n nw w cs) =
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1075
    (nw + n - 1) div n + length cs"
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
  1076
  apply (induct n nw w cs rule: bin_rsplit_aux.induct)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1077
  apply (subst bin_rsplit_aux.simps)
53062
3af1a6020014 some vague grouping of related theorems, with slight tuning of headings and sorting out of dubious lemmas into separate theory
haftmann
parents: 47219
diff changeset
  1078
  apply (clarsimp simp: Let_def split: prod.split)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1079
  apply (erule thin_rl)
27651
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27105
diff changeset
  1080
  apply (case_tac m)
16a26996c30e moved op dvd to theory Ring_and_Field; generalized a couple of lemmas
haftmann
parents: 27105
diff changeset
  1081
  apply simp
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1082
  apply (case_tac "m <= n")
27677
646ea25ff59d (re-)added simp rules for (_ + _) div/mod _
haftmann
parents: 27651
diff changeset
  1083
  apply auto
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1084
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1085
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1086
lemma bin_rsplit_len: 
25134
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
  1087
  "n\<noteq>0 ==> length (bin_rsplit n (nw, w)) = (nw + n - 1) div n"
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1088
  unfolding bin_rsplit_def by (clarsimp simp add : bin_rsplit_aux_len)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1089
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
  1090
lemma bin_rsplit_aux_len_indep:
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
  1091
  "n \<noteq> 0 \<Longrightarrow> length bs = length cs \<Longrightarrow>
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
  1092
    length (bin_rsplit_aux n nw v bs) =
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
  1093
    length (bin_rsplit_aux n nw w cs)"
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
  1094
proof (induct n nw w cs arbitrary: v bs rule: bin_rsplit_aux.induct)
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
  1095
  case (1 n m w cs v bs) show ?case
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
  1096
  proof (cases "m = 0")
28298
3eb2855e5402 avoid using implicit assumptions
huffman
parents: 28059
diff changeset
  1097
    case True then show ?thesis using `length bs = length cs` by simp
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
  1098
  next
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
  1099
    case False
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
  1100
    from "1.hyps" `m \<noteq> 0` `n \<noteq> 0` have hyp: "\<And>v bs. length bs = Suc (length cs) \<Longrightarrow>
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
  1101
      length (bin_rsplit_aux n (m - n) v bs) =
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
  1102
      length (bin_rsplit_aux n (m - n) (fst (bin_split n w)) (snd (bin_split n w) # cs))"
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
  1103
    by auto
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
  1104
    show ?thesis using `length bs = length cs` `n \<noteq> 0`
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
  1105
      by (auto simp add: bin_rsplit_aux_simp_alt Let_def bin_rsplit_len
53062
3af1a6020014 some vague grouping of related theorems, with slight tuning of headings and sorting out of dubious lemmas into separate theory
haftmann
parents: 47219
diff changeset
  1106
        split: prod.split)
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
  1107
  qed
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
  1108
qed
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1109
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1110
lemma bin_rsplit_len_indep: 
25134
3d4953e88449 Eliminated most of the neq0_conv occurrences. As a result, many
nipkow
parents: 25112
diff changeset
  1111
  "n\<noteq>0 ==> length (bin_rsplit n (nw, v)) = length (bin_rsplit n (nw, w))"
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1112
  apply (unfold bin_rsplit_def)
26557
9e7f95903b24 more new primrec
haftmann
parents: 26086
diff changeset
  1113
  apply (simp (no_asm))
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1114
  apply (erule bin_rsplit_aux_len_indep)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1115
  apply (rule refl)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1116
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1117
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
  1118
end