src/HOL/Word/BinOperations.thy
author haftmann
Wed, 02 Apr 2008 15:58:36 +0200
changeset 26514 eff55c0a6d34
parent 26086 3c243098b64a
child 26558 7fcc10088e72
permissions -rw-r--r--
tuned towards code generation
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
  ID:     $Id$
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
     3
  Author: Jeremy Dawson and Gerwin Klein, NICTA
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
     4
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
     5
  definition and basic theorems for bit-wise logical operations 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
     6
  for integers expressed using Pls, Min, BIT,
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
     7
  and converting them to and from lists of bools
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
     8
*) 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
     9
24350
4d74f37c6367 headers for document generation
huffman
parents: 24333
diff changeset
    10
header {* Bitwise Operations on Binary Integers *}
4d74f37c6367 headers for document generation
huffman
parents: 24333
diff changeset
    11
24353
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
    12
theory BinOperations imports BinGeneral BitSyntax
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
    13
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
    14
begin
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
    15
24364
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
    16
subsection {* Logical operations *}
24353
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
    17
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
    18
text "bit-wise logical operations on the int type"
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
    19
25762
c03e9d04b3e4 splitted class uminus from class minus
haftmann
parents: 25112
diff changeset
    20
instantiation int :: bit
c03e9d04b3e4 splitted class uminus from class minus
haftmann
parents: 25112
diff changeset
    21
begin
c03e9d04b3e4 splitted class uminus from class minus
haftmann
parents: 25112
diff changeset
    22
c03e9d04b3e4 splitted class uminus from class minus
haftmann
parents: 25112
diff changeset
    23
definition
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents: 25762
diff changeset
    24
  int_not_def: "bitNOT = bin_rec Int.Min Int.Pls 
24353
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
    25
    (\<lambda>w b s. s BIT (NOT b))"
25762
c03e9d04b3e4 splitted class uminus from class minus
haftmann
parents: 25112
diff changeset
    26
c03e9d04b3e4 splitted class uminus from class minus
haftmann
parents: 25112
diff changeset
    27
definition
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents: 25762
diff changeset
    28
  int_and_def: "bitAND = bin_rec (\<lambda>x. Int.Pls) (\<lambda>y. y) 
24353
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
    29
    (\<lambda>w b s y. s (bin_rest y) BIT (b AND bin_last y))"
25762
c03e9d04b3e4 splitted class uminus from class minus
haftmann
parents: 25112
diff changeset
    30
c03e9d04b3e4 splitted class uminus from class minus
haftmann
parents: 25112
diff changeset
    31
definition
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents: 25762
diff changeset
    32
  int_or_def: "bitOR = bin_rec (\<lambda>x. x) (\<lambda>y. Int.Min) 
24353
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
    33
    (\<lambda>w b s y. s (bin_rest y) BIT (b OR bin_last y))"
25762
c03e9d04b3e4 splitted class uminus from class minus
haftmann
parents: 25112
diff changeset
    34
c03e9d04b3e4 splitted class uminus from class minus
haftmann
parents: 25112
diff changeset
    35
definition
c03e9d04b3e4 splitted class uminus from class minus
haftmann
parents: 25112
diff changeset
    36
  int_xor_def: "bitXOR = bin_rec (\<lambda>x. x) bitNOT 
24353
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
    37
    (\<lambda>w b s y. s (bin_rest y) BIT (b XOR bin_last y))"
25762
c03e9d04b3e4 splitted class uminus from class minus
haftmann
parents: 25112
diff changeset
    38
c03e9d04b3e4 splitted class uminus from class minus
haftmann
parents: 25112
diff changeset
    39
instance ..
c03e9d04b3e4 splitted class uminus from class minus
haftmann
parents: 25112
diff changeset
    40
c03e9d04b3e4 splitted class uminus from class minus
haftmann
parents: 25112
diff changeset
    41
end
24353
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
    42
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
    43
lemma int_not_simps [simp]:
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents: 25762
diff changeset
    44
  "NOT Int.Pls = Int.Min"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents: 25762
diff changeset
    45
  "NOT Int.Min = Int.Pls"
24353
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
    46
  "NOT (w BIT b) = (NOT w) BIT (NOT b)"
26086
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
    47
  "NOT (Int.Bit0 w) = Int.Bit1 (NOT w)"
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
    48
  "NOT (Int.Bit1 w) = Int.Bit0 (NOT w)"
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
    49
  unfolding int_not_def by (simp_all add: bin_rec_simps)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
    50
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
    51
lemma int_xor_Pls [simp]: 
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents: 25762
diff changeset
    52
  "Int.Pls XOR x = x"
24465
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
    53
  unfolding int_xor_def by (simp add: bin_rec_PM)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
    54
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
    55
lemma int_xor_Min [simp]: 
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents: 25762
diff changeset
    56
  "Int.Min XOR x = NOT x"
24465
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
    57
  unfolding int_xor_def by (simp add: bin_rec_PM)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
    58
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
    59
lemma int_xor_Bits [simp]: 
24353
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
    60
  "(x BIT b) XOR (y BIT c) = (x XOR y) BIT (b XOR c)"
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
    61
  apply (unfold int_xor_def)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
    62
  apply (rule bin_rec_simps (1) [THEN fun_cong, THEN trans])
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
    63
    apply (rule ext, simp)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
    64
   prefer 2
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
    65
   apply simp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
    66
  apply (rule ext)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
    67
  apply (simp add: int_not_simps [symmetric])
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
    68
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
    69
26086
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
    70
lemma int_xor_Bits2 [simp]: 
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
    71
  "(Int.Bit0 x) XOR (Int.Bit0 y) = Int.Bit0 (x XOR y)"
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
    72
  "(Int.Bit0 x) XOR (Int.Bit1 y) = Int.Bit1 (x XOR y)"
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
    73
  "(Int.Bit1 x) XOR (Int.Bit0 y) = Int.Bit1 (x XOR y)"
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
    74
  "(Int.Bit1 x) XOR (Int.Bit1 y) = Int.Bit0 (x XOR y)"
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
    75
  unfolding BIT_simps [symmetric] int_xor_Bits by simp_all
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
    76
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
    77
lemma int_xor_x_simps':
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents: 25762
diff changeset
    78
  "w XOR (Int.Pls BIT bit.B0) = w"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents: 25762
diff changeset
    79
  "w XOR (Int.Min BIT bit.B1) = NOT w"
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
    80
  apply (induct w rule: bin_induct)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
    81
       apply simp_all[4]
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
    82
   apply (unfold int_xor_Bits)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
    83
   apply clarsimp+
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
    84
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
    85
26086
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
    86
lemma int_xor_extra_simps [simp]:
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
    87
  "w XOR Int.Pls = w"
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
    88
  "w XOR Int.Min = NOT w"
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
    89
  using int_xor_x_simps' by simp_all
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
    90
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
    91
lemma int_or_Pls [simp]: 
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents: 25762
diff changeset
    92
  "Int.Pls OR x = x"
24465
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
    93
  by (unfold int_or_def) (simp add: bin_rec_PM)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
    94
  
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
    95
lemma int_or_Min [simp]:
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents: 25762
diff changeset
    96
  "Int.Min OR x = Int.Min"
24465
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
    97
  by (unfold int_or_def) (simp add: bin_rec_PM)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
    98
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
    99
lemma int_or_Bits [simp]: 
24353
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
   100
  "(x BIT b) OR (y BIT c) = (x OR y) BIT (b OR c)"
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   101
  unfolding int_or_def by (simp add: bin_rec_simps)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   102
26086
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
   103
lemma int_or_Bits2 [simp]: 
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
   104
  "(Int.Bit0 x) OR (Int.Bit0 y) = Int.Bit0 (x OR y)"
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
   105
  "(Int.Bit0 x) OR (Int.Bit1 y) = Int.Bit1 (x OR y)"
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
   106
  "(Int.Bit1 x) OR (Int.Bit0 y) = Int.Bit1 (x OR y)"
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
   107
  "(Int.Bit1 x) OR (Int.Bit1 y) = Int.Bit1 (x OR y)"
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
   108
  unfolding BIT_simps [symmetric] int_or_Bits by simp_all
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
   109
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   110
lemma int_or_x_simps': 
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents: 25762
diff changeset
   111
  "w OR (Int.Pls BIT bit.B0) = w"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents: 25762
diff changeset
   112
  "w OR (Int.Min BIT bit.B1) = Int.Min"
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   113
  apply (induct w rule: bin_induct)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   114
       apply simp_all[4]
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   115
   apply (unfold int_or_Bits)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   116
   apply clarsimp+
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   117
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   118
26086
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
   119
lemma int_or_extra_simps [simp]:
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
   120
  "w OR Int.Pls = w"
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
   121
  "w OR Int.Min = Int.Min"
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
   122
  using int_or_x_simps' by simp_all
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   123
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   124
lemma int_and_Pls [simp]:
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents: 25762
diff changeset
   125
  "Int.Pls AND x = Int.Pls"
24465
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   126
  unfolding int_and_def by (simp add: bin_rec_PM)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   127
24353
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
   128
lemma int_and_Min [simp]:
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents: 25762
diff changeset
   129
  "Int.Min AND x = x"
24465
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   130
  unfolding int_and_def by (simp add: bin_rec_PM)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   131
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   132
lemma int_and_Bits [simp]: 
24353
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
   133
  "(x BIT b) AND (y BIT c) = (x AND y) BIT (b AND c)" 
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   134
  unfolding int_and_def by (simp add: bin_rec_simps)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   135
26086
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
   136
lemma int_and_Bits2 [simp]: 
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
   137
  "(Int.Bit0 x) AND (Int.Bit0 y) = Int.Bit0 (x AND y)"
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
   138
  "(Int.Bit0 x) AND (Int.Bit1 y) = Int.Bit0 (x AND y)"
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
   139
  "(Int.Bit1 x) AND (Int.Bit0 y) = Int.Bit0 (x AND y)"
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
   140
  "(Int.Bit1 x) AND (Int.Bit1 y) = Int.Bit1 (x AND y)"
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
   141
  unfolding BIT_simps [symmetric] int_and_Bits by simp_all
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
   142
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   143
lemma int_and_x_simps': 
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents: 25762
diff changeset
   144
  "w AND (Int.Pls BIT bit.B0) = Int.Pls"
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents: 25762
diff changeset
   145
  "w AND (Int.Min BIT bit.B1) = w"
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   146
  apply (induct w rule: bin_induct)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   147
       apply simp_all[4]
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   148
   apply (unfold int_and_Bits)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   149
   apply clarsimp+
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   150
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   151
26086
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
   152
lemma int_and_extra_simps [simp]:
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
   153
  "w AND Int.Pls = Int.Pls"
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
   154
  "w AND Int.Min = w"
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
   155
  using int_and_x_simps' by simp_all
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   156
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   157
(* commutativity of the above *)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   158
lemma bin_ops_comm:
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   159
  shows
24353
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
   160
  int_and_comm: "!!y::int. x AND y = y AND x" and
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
   161
  int_or_comm:  "!!y::int. x OR y = y OR x" and
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
   162
  int_xor_comm: "!!y::int. x XOR y = y XOR x"
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   163
  apply (induct x rule: bin_induct)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   164
          apply simp_all[6]
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   165
    apply (case_tac y rule: bin_exhaust, simp add: bit_ops_comm)+
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   166
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   167
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   168
lemma bin_ops_same [simp]:
24353
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
   169
  "(x::int) AND x = x" 
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
   170
  "(x::int) OR x = x" 
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents: 25762
diff changeset
   171
  "(x::int) XOR x = Int.Pls"
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   172
  by (induct x rule: bin_induct) auto
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   173
24353
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
   174
lemma int_not_not [simp]: "NOT (NOT (x::int)) = x"
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   175
  by (induct x rule: bin_induct) auto
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   176
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   177
lemmas bin_log_esimps = 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   178
  int_and_extra_simps  int_or_extra_simps  int_xor_extra_simps
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   179
  int_and_Pls int_and_Min  int_or_Pls int_or_Min  int_xor_Pls int_xor_Min
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   180
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   181
(* basic properties of logical (bit-wise) operations *)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   182
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   183
lemma bbw_ao_absorb: 
24353
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
   184
  "!!y::int. x AND (y OR x) = x & x OR (y AND x) = x"
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   185
  apply (induct x rule: bin_induct)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   186
    apply auto 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   187
   apply (case_tac [!] y rule: bin_exhaust)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   188
   apply auto
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   189
   apply (case_tac [!] bit)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   190
     apply auto
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   191
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   192
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   193
lemma bbw_ao_absorbs_other:
24353
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
   194
  "x AND (x OR y) = x \<and> (y AND x) OR x = (x::int)"
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
   195
  "(y OR x) AND x = x \<and> x OR (x AND y) = (x::int)"
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
   196
  "(x OR y) AND x = x \<and> (x AND y) OR x = (x::int)"
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   197
  apply (auto simp: bbw_ao_absorb int_or_comm)  
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   198
      apply (subst int_or_comm)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   199
    apply (simp add: bbw_ao_absorb)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   200
   apply (subst int_and_comm)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   201
   apply (subst int_or_comm)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   202
   apply (simp add: bbw_ao_absorb)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   203
  apply (subst int_and_comm)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   204
  apply (simp add: bbw_ao_absorb)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   205
  done
24353
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
   206
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   207
lemmas bbw_ao_absorbs [simp] = bbw_ao_absorb bbw_ao_absorbs_other
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   208
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   209
lemma int_xor_not:
24353
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
   210
  "!!y::int. (NOT x) XOR y = NOT (x XOR y) & 
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
   211
        x XOR (NOT y) = NOT (x XOR y)"
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   212
  apply (induct x rule: bin_induct)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   213
    apply auto
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   214
   apply (case_tac y rule: bin_exhaust, auto, 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   215
          case_tac b, auto)+
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   216
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   217
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   218
lemma bbw_assocs': 
24353
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
   219
  "!!y z::int. (x AND y) AND z = x AND (y AND z) & 
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
   220
          (x OR y) OR z = x OR (y OR z) & 
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
   221
          (x XOR y) XOR z = x XOR (y XOR z)"
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   222
  apply (induct x rule: bin_induct)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   223
    apply (auto simp: int_xor_not)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   224
    apply (case_tac [!] y rule: bin_exhaust)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   225
    apply (case_tac [!] z rule: bin_exhaust)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   226
    apply (case_tac [!] bit)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   227
       apply (case_tac [!] b)
26086
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
   228
             apply (auto simp del: BIT_simps)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   229
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   230
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   231
lemma int_and_assoc:
24353
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
   232
  "(x AND y) AND (z::int) = x AND (y AND z)"
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   233
  by (simp add: bbw_assocs')
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   234
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   235
lemma int_or_assoc:
24353
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
   236
  "(x OR y) OR (z::int) = x OR (y OR z)"
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   237
  by (simp add: bbw_assocs')
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   238
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   239
lemma int_xor_assoc:
24353
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
   240
  "(x XOR y) XOR (z::int) = x XOR (y XOR z)"
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   241
  by (simp add: bbw_assocs')
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   242
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   243
lemmas bbw_assocs = int_and_assoc int_or_assoc int_xor_assoc
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   244
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   245
lemma bbw_lcs [simp]: 
24353
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
   246
  "(y::int) AND (x AND z) = x AND (y AND z)"
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
   247
  "(y::int) OR (x OR z) = x OR (y OR z)"
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
   248
  "(y::int) XOR (x XOR z) = x XOR (y XOR z)" 
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   249
  apply (auto simp: bbw_assocs [symmetric])
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   250
  apply (auto simp: bin_ops_comm)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   251
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   252
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   253
lemma bbw_not_dist: 
24353
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
   254
  "!!y::int. NOT (x OR y) = (NOT x) AND (NOT y)" 
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
   255
  "!!y::int. NOT (x AND y) = (NOT x) OR (NOT y)"
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   256
  apply (induct x rule: bin_induct)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   257
       apply auto
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   258
   apply (case_tac [!] y rule: bin_exhaust)
26086
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
   259
   apply (case_tac [!] bit, auto simp del: BIT_simps)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   260
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   261
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   262
lemma bbw_oa_dist: 
24353
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
   263
  "!!y z::int. (x AND y) OR z = 
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
   264
          (x OR z) AND (y OR z)"
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   265
  apply (induct x rule: bin_induct)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   266
    apply auto
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   267
  apply (case_tac y rule: bin_exhaust)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   268
  apply (case_tac z rule: bin_exhaust)
26086
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
   269
  apply (case_tac ba, auto simp del: BIT_simps)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   270
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   271
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   272
lemma bbw_ao_dist: 
24353
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
   273
  "!!y z::int. (x OR y) AND z = 
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
   274
          (x AND z) OR (y AND z)"
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   275
   apply (induct x rule: bin_induct)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   276
    apply auto
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   277
  apply (case_tac y rule: bin_exhaust)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   278
  apply (case_tac z rule: bin_exhaust)
26086
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
   279
  apply (case_tac ba, auto simp del: BIT_simps)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   280
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   281
24367
3e29eafabe16 AC rules for bitwise logical operators no longer declared simp
huffman
parents: 24366
diff changeset
   282
(*
3e29eafabe16 AC rules for bitwise logical operators no longer declared simp
huffman
parents: 24366
diff changeset
   283
Why were these declared simp???
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   284
declare bin_ops_comm [simp] bbw_assocs [simp] 
24367
3e29eafabe16 AC rules for bitwise logical operators no longer declared simp
huffman
parents: 24366
diff changeset
   285
*)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   286
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   287
lemma plus_and_or [rule_format]:
24353
9a7a9b19e925 use overloaded bitwise operators at type int
huffman
parents: 24350
diff changeset
   288
  "ALL y::int. (x AND y) + (x OR y) = x + y"
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   289
  apply (induct x rule: bin_induct)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   290
    apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   291
   apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   292
  apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   293
  apply (case_tac y rule: bin_exhaust)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   294
  apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   295
  apply (unfold Bit_def)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   296
  apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   297
  apply (erule_tac x = "x" in allE)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   298
  apply (simp split: bit.split)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   299
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   300
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   301
lemma le_int_or:
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents: 25762
diff changeset
   302
  "!!x.  bin_sign y = Int.Pls ==> x <= x OR y"
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   303
  apply (induct y rule: bin_induct)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   304
    apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   305
   apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   306
  apply (case_tac x rule: bin_exhaust)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   307
  apply (case_tac b)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   308
   apply (case_tac [!] bit)
26514
eff55c0a6d34 tuned towards code generation
haftmann
parents: 26086
diff changeset
   309
     apply (auto simp: less_eq_int_code)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   310
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   311
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   312
lemmas int_and_le =
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   313
  xtr3 [OF bbw_ao_absorbs (2) [THEN conjunct2, symmetric] le_int_or] ;
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   314
24364
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   315
lemma bin_nth_ops:
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   316
  "!!x y. bin_nth (x AND y) n = (bin_nth x n & bin_nth y n)" 
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   317
  "!!x y. bin_nth (x OR y) n = (bin_nth x n | bin_nth y n)"
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   318
  "!!x y. bin_nth (x XOR y) n = (bin_nth x n ~= bin_nth y n)" 
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   319
  "!!x. bin_nth (NOT x) n = (~ bin_nth x n)"
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   320
  apply (induct n)
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   321
         apply safe
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   322
                         apply (case_tac [!] x rule: bin_exhaust)
26086
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
   323
                         apply (simp_all del: BIT_simps)
24364
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   324
                      apply (case_tac [!] y rule: bin_exhaust)
26086
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
   325
                      apply (simp_all del: BIT_simps)
24364
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   326
        apply (auto dest: not_B1_is_B0 intro: B1_ass_B0)
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   327
  done
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   328
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   329
(* interaction between bit-wise and arithmetic *)
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   330
(* good example of bin_induction *)
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents: 25762
diff changeset
   331
lemma bin_add_not: "x + NOT x = Int.Min"
24364
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   332
  apply (induct x rule: bin_induct)
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   333
    apply clarsimp
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   334
   apply clarsimp
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   335
  apply (case_tac bit, auto)
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   336
  done
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   337
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   338
(* truncating results of bit-wise operations *)
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   339
lemma bin_trunc_ao: 
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   340
  "!!x y. (bintrunc n x) AND (bintrunc n y) = bintrunc n (x AND y)" 
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   341
  "!!x y. (bintrunc n x) OR (bintrunc n y) = bintrunc n (x OR y)"
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   342
  apply (induct n)
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   343
      apply auto
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   344
      apply (case_tac [!] x rule: bin_exhaust)
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   345
      apply (case_tac [!] y rule: bin_exhaust)
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   346
      apply auto
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   347
  done
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   348
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   349
lemma bin_trunc_xor: 
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   350
  "!!x y. bintrunc n (bintrunc n x XOR bintrunc n y) = 
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   351
          bintrunc n (x XOR y)"
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   352
  apply (induct n)
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   353
   apply auto
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   354
   apply (case_tac [!] x rule: bin_exhaust)
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   355
   apply (case_tac [!] y rule: bin_exhaust)
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   356
   apply auto
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   357
  done
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   358
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   359
lemma bin_trunc_not: 
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   360
  "!!x. bintrunc n (NOT (bintrunc n x)) = bintrunc n (NOT x)"
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   361
  apply (induct n)
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   362
   apply auto
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   363
   apply (case_tac [!] x rule: bin_exhaust)
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   364
   apply auto
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   365
  done
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   366
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   367
(* want theorems of the form of bin_trunc_xor *)
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   368
lemma bintr_bintr_i:
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   369
  "x = bintrunc n y ==> bintrunc n x = bintrunc n y"
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   370
  by auto
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   371
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   372
lemmas bin_trunc_and = bin_trunc_ao(1) [THEN bintr_bintr_i]
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   373
lemmas bin_trunc_or = bin_trunc_ao(2) [THEN bintr_bintr_i]
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   374
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   375
subsection {* Setting and clearing bits *}
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   376
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   377
consts
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   378
  bin_sc :: "nat => bit => int => int"
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   379
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   380
primrec
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   381
  Z : "bin_sc 0 b w = bin_rest w BIT b"
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   382
  Suc :
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   383
    "bin_sc (Suc n) b w = bin_sc n b (bin_rest w) BIT bin_last w"
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   384
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   385
(** nth bit, set/clear **)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   386
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   387
lemma bin_nth_sc [simp]: 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   388
  "!!w. bin_nth (bin_sc n b w) n = (b = bit.B1)"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   389
  by (induct n)  auto
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   390
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   391
lemma bin_sc_sc_same [simp]: 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   392
  "!!w. bin_sc n c (bin_sc n b w) = bin_sc n c w"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   393
  by (induct n) auto
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   394
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   395
lemma bin_sc_sc_diff:
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   396
  "!!w m. m ~= n ==> 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   397
    bin_sc m c (bin_sc n b w) = bin_sc n b (bin_sc m c w)"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   398
  apply (induct n)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   399
   apply (case_tac [!] m)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   400
     apply auto
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   401
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   402
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   403
lemma bin_nth_sc_gen: 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   404
  "!!w m. bin_nth (bin_sc n b w) m = (if m = n then b = bit.B1 else bin_nth w m)"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   405
  by (induct n) (case_tac [!] m, auto)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   406
  
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   407
lemma bin_sc_nth [simp]:
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   408
  "!!w. (bin_sc n (If (bin_nth w n) bit.B1 bit.B0) w) = w"
24465
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   409
  by (induct n) auto
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   410
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   411
lemma bin_sign_sc [simp]:
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   412
  "!!w. bin_sign (bin_sc n b w) = bin_sign w"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   413
  by (induct n) auto
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   414
  
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   415
lemma bin_sc_bintr [simp]: 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   416
  "!!w m. bintrunc m (bin_sc n x (bintrunc m (w))) = bintrunc m (bin_sc n x w)"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   417
  apply (induct n)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   418
   apply (case_tac [!] w rule: bin_exhaust)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   419
   apply (case_tac [!] m, auto)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   420
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   421
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   422
lemma bin_clr_le:
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   423
  "!!w. bin_sc n bit.B0 w <= w"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   424
  apply (induct n) 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   425
   apply (case_tac [!] w rule: bin_exhaust)
26086
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
   426
   apply (auto simp del: BIT_simps)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   427
   apply (unfold Bit_def)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   428
   apply (simp_all split: bit.split)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   429
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   430
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   431
lemma bin_set_ge:
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   432
  "!!w. bin_sc n bit.B1 w >= w"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   433
  apply (induct n) 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   434
   apply (case_tac [!] w rule: bin_exhaust)
26086
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
   435
   apply (auto simp del: BIT_simps)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   436
   apply (unfold Bit_def)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   437
   apply (simp_all split: bit.split)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   438
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   439
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   440
lemma bintr_bin_clr_le:
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   441
  "!!w m. bintrunc n (bin_sc m bit.B0 w) <= bintrunc n w"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   442
  apply (induct n)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   443
   apply simp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   444
  apply (case_tac w rule: bin_exhaust)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   445
  apply (case_tac m)
26086
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
   446
   apply (auto simp del: BIT_simps)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   447
   apply (unfold Bit_def)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   448
   apply (simp_all split: bit.split)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   449
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   450
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   451
lemma bintr_bin_set_ge:
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   452
  "!!w m. bintrunc n (bin_sc m bit.B1 w) >= bintrunc n w"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   453
  apply (induct n)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   454
   apply simp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   455
  apply (case_tac w rule: bin_exhaust)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   456
  apply (case_tac m)
26086
3c243098b64a New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
huffman
parents: 25919
diff changeset
   457
   apply (auto simp del: BIT_simps)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   458
   apply (unfold Bit_def)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   459
   apply (simp_all split: bit.split)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   460
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   461
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents: 25762
diff changeset
   462
lemma bin_sc_FP [simp]: "bin_sc n bit.B0 Int.Pls = Int.Pls"
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   463
  by (induct n) auto
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   464
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents: 25762
diff changeset
   465
lemma bin_sc_TM [simp]: "bin_sc n bit.B1 Int.Min = Int.Min"
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   466
  by (induct n) auto
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   467
  
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   468
lemmas bin_sc_simps = bin_sc.Z bin_sc.Suc bin_sc_TM bin_sc_FP
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   469
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   470
lemma bin_sc_minus:
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   471
  "0 < n ==> bin_sc (Suc (n - 1)) b w = bin_sc n b w"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   472
  by auto
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   473
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   474
lemmas bin_sc_Suc_minus = 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   475
  trans [OF bin_sc_minus [symmetric] bin_sc.Suc, standard]
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   476
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   477
lemmas bin_sc_Suc_pred [simp] = 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   478
  bin_sc_Suc_minus [of "number_of bin", simplified nobm1, standard]
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   479
24465
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   480
subsection {* Operations on lists of booleans *}
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   481
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   482
consts
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   483
  bin_to_bl :: "nat => int => bool list"
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   484
  bin_to_bl_aux :: "nat => int => bool list => bool list"
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   485
  bl_to_bin :: "bool list => int"
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   486
  bl_to_bin_aux :: "int => bool list => int"
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   487
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   488
  bl_of_nth :: "nat => (nat => bool) => bool list"
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   489
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   490
primrec
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   491
  Nil : "bl_to_bin_aux w [] = w"
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   492
  Cons : "bl_to_bin_aux w (b # bs) = 
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   493
      bl_to_bin_aux (w BIT (if b then bit.B1 else bit.B0)) bs"
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   494
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   495
primrec
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   496
  Z : "bin_to_bl_aux 0 w bl = bl"
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   497
  Suc : "bin_to_bl_aux (Suc n) w bl =
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   498
    bin_to_bl_aux n (bin_rest w) ((bin_last w = bit.B1) # bl)"
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   499
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   500
defs
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   501
  bin_to_bl_def : "bin_to_bl n w == bin_to_bl_aux n w []"
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents: 25762
diff changeset
   502
  bl_to_bin_def : "bl_to_bin bs == bl_to_bin_aux Int.Pls bs"
24465
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   503
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   504
primrec
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   505
  Suc : "bl_of_nth (Suc n) f = f n # bl_of_nth n f"
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   506
  Z : "bl_of_nth 0 f = []"
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   507
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   508
consts
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   509
  takefill :: "'a => nat => 'a list => 'a list"
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   510
  app2 :: "('a => 'b => 'c) => 'a list => 'b list => 'c list"
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   511
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   512
-- "takefill - like take but if argument list too short,"
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   513
-- "extends result to get requested length"
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   514
primrec
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   515
  Z : "takefill fill 0 xs = []"
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   516
  Suc : "takefill fill (Suc n) xs = (
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   517
    case xs of [] => fill # takefill fill n xs
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   518
      | y # ys => y # takefill fill n ys)"
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   519
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   520
defs
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   521
  app2_def : "app2 f as bs == map (split f) (zip as bs)"
70f0214b3ecc revert to Word library version from 2007/08/20
huffman
parents: 24418
diff changeset
   522
24364
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   523
subsection {* Splitting and concatenation *}
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   524
24364
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   525
-- "rcat and rsplit"
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   526
consts
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   527
  bin_rcat :: "nat => int list => int"
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   528
  bin_rsplit_aux :: "nat * int list * nat * int => int list"
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   529
  bin_rsplit :: "nat => (nat * int) => int list"
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   530
  bin_rsplitl_aux :: "nat * int list * nat * int => int list"
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   531
  bin_rsplitl :: "nat => (nat * int) => int list"
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   532
  
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   533
recdef bin_rsplit_aux "measure (fst o snd o snd)"
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   534
  "bin_rsplit_aux (n, bs, (m, c)) =
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   535
    (if m = 0 | n = 0 then bs else
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   536
      let (a, b) = bin_split n c 
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   537
      in bin_rsplit_aux (n, b # bs, (m - n, a)))"
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   538
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   539
recdef bin_rsplitl_aux "measure (fst o snd o snd)"
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   540
  "bin_rsplitl_aux (n, bs, (m, c)) =
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   541
    (if m = 0 | n = 0 then bs else
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   542
      let (a, b) = bin_split (min m n) c 
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   543
      in bin_rsplitl_aux (n, b # bs, (m - n, a)))"
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   544
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   545
defs
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents: 25762
diff changeset
   546
  bin_rcat_def : "bin_rcat n bs == foldl (%u v. bin_cat u n v) Int.Pls bs"
24364
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   547
  bin_rsplit_def : "bin_rsplit n w == bin_rsplit_aux (n, [], w)"
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   548
  bin_rsplitl_def : "bin_rsplitl n w == bin_rsplitl_aux (n, [], w)"
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   549
     
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   550
 
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   551
(* potential for looping *)
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   552
declare bin_rsplit_aux.simps [simp del]
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   553
declare bin_rsplitl_aux.simps [simp del]
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   554
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   555
lemma bin_sign_cat: 
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   556
  "!!y. bin_sign (bin_cat x n y) = bin_sign x"
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   557
  by (induct n) auto
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   558
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   559
lemma bin_cat_Suc_Bit:
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   560
  "bin_cat w (Suc n) (v BIT b) = bin_cat w n v BIT b"
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   561
  by auto
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   562
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   563
lemma bin_nth_cat: 
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   564
  "!!n y. bin_nth (bin_cat x k y) n = 
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   565
    (if n < k then bin_nth y n else bin_nth x (n - k))"
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   566
  apply (induct k)
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   567
   apply clarsimp
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   568
  apply (case_tac n, auto)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   569
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   570
24364
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   571
lemma bin_nth_split:
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   572
  "!!b c. bin_split n c = (a, b) ==> 
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   573
    (ALL k. bin_nth a k = bin_nth c (n + k)) & 
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   574
    (ALL k. bin_nth b k = (k < n & bin_nth c k))"
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   575
  apply (induct n)
24364
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   576
   apply clarsimp
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   577
  apply (clarsimp simp: Let_def split: ls_splits)
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   578
  apply (case_tac k)
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   579
  apply auto
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   580
  done
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   581
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   582
lemma bin_cat_assoc: 
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   583
  "!!z. bin_cat (bin_cat x m y) n z = bin_cat x (m + n) (bin_cat y n z)" 
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   584
  by (induct n) auto
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   585
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   586
lemma bin_cat_assoc_sym: "!!z m. 
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   587
  bin_cat x m (bin_cat y n z) = bin_cat (bin_cat x (m - n) y) (min m n) z"
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   588
  apply (induct n, clarsimp)
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   589
  apply (case_tac m, auto)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   590
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   591
24364
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   592
lemma bin_cat_Pls [simp]: 
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents: 25762
diff changeset
   593
  "!!w. bin_cat Int.Pls n w = bintrunc n w"
24364
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   594
  by (induct n) auto
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   595
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   596
lemma bintr_cat1: 
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   597
  "!!b. bintrunc (k + n) (bin_cat a n b) = bin_cat (bintrunc k a) n b"
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   598
  by (induct n) auto
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   599
    
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   600
lemma bintr_cat: "bintrunc m (bin_cat a n b) = 
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   601
    bin_cat (bintrunc (m - n) a) n (bintrunc (min m n) b)"
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   602
  by (rule bin_eqI) (auto simp: bin_nth_cat nth_bintr)
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   603
    
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   604
lemma bintr_cat_same [simp]: 
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   605
  "bintrunc n (bin_cat a n b) = bintrunc n b"
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   606
  by (auto simp add : bintr_cat)
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   607
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   608
lemma cat_bintr [simp]: 
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   609
  "!!b. bin_cat a n (bintrunc n b) = bin_cat a n b"
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   610
  by (induct n) auto
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   611
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   612
lemma split_bintrunc: 
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   613
  "!!b c. bin_split n c = (a, b) ==> b = bintrunc n c"
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   614
  by (induct n) (auto simp: Let_def split: ls_splits)
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   615
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   616
lemma bin_cat_split:
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   617
  "!!v w. bin_split n w = (u, v) ==> w = bin_cat u n v"
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   618
  by (induct n) (auto simp: Let_def split: ls_splits)
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   619
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   620
lemma bin_split_cat:
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   621
  "!!w. bin_split n (bin_cat v n w) = (v, bintrunc n w)"
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   622
  by (induct n) auto
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   623
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   624
lemma bin_split_Pls [simp]:
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents: 25762
diff changeset
   625
  "bin_split n Int.Pls = (Int.Pls, Int.Pls)"
24364
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   626
  by (induct n) (auto simp: Let_def split: ls_splits)
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   627
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   628
lemma bin_split_Min [simp]:
25919
8b1c0d434824 joined theories IntDef, Numeral, IntArith to theory Int
haftmann
parents: 25762
diff changeset
   629
  "bin_split n Int.Min = (Int.Min, bintrunc n Int.Min)"
24364
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   630
  by (induct n) (auto simp: Let_def split: ls_splits)
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   631
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   632
lemma bin_split_trunc:
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   633
  "!!m b c. bin_split (min m n) c = (a, b) ==> 
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   634
    bin_split n (bintrunc m c) = (bintrunc (m - n) a, b)"
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   635
  apply (induct n, clarsimp)
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   636
  apply (simp add: bin_rest_trunc Let_def split: ls_splits)
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   637
  apply (case_tac m)
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   638
   apply (auto simp: Let_def split: ls_splits)
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   639
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   640
24364
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   641
lemma bin_split_trunc1:
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   642
  "!!m b c. bin_split n c = (a, b) ==> 
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   643
    bin_split n (bintrunc m c) = (bintrunc (m - n) a, bintrunc m b)"
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   644
  apply (induct n, clarsimp)
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   645
  apply (simp add: bin_rest_trunc Let_def split: ls_splits)
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   646
  apply (case_tac m)
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   647
   apply (auto simp: Let_def split: ls_splits)
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   648
  done
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   649
24364
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   650
lemma bin_cat_num:
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   651
  "!!b. bin_cat a n b = a * 2 ^ n + bintrunc n b"
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   652
  apply (induct n, clarsimp)
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   653
  apply (simp add: Bit_def cong: number_of_False_cong)
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   654
  done
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   655
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   656
lemma bin_split_num:
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   657
  "!!b. bin_split n b = (b div 2 ^ n, b mod 2 ^ n)"
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   658
  apply (induct n, clarsimp)
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   659
  apply (simp add: bin_rest_div zdiv_zmult2_eq)
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   660
  apply (case_tac b rule: bin_exhaust)
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   661
  apply simp
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   662
  apply (simp add: Bit_def zmod_zmult_zmult1 p1mod22k
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   663
              split: bit.split 
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   664
              cong: number_of_False_cong)
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   665
  done 
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   666
31e359126ab6 reorganize into subsections
huffman
parents: 24353
diff changeset
   667
subsection {* Miscellaneous lemmas *}
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   668
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   669
lemma nth_2p_bin: 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   670
  "!!m. bin_nth (2 ^ n) m = (m = n)"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   671
  apply (induct n)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   672
   apply clarsimp
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   673
   apply safe
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   674
     apply (case_tac m) 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   675
      apply (auto simp: trans [OF numeral_1_eq_1 [symmetric] number_of_eq])
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   676
   apply (case_tac m) 
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   677
    apply (auto simp: Bit_B0_2t [symmetric])
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   678
  done
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   679
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   680
(* for use when simplifying with bin_nth_Bit *)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   681
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   682
lemma ex_eq_or:
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   683
  "(EX m. n = Suc m & (m = k | P m)) = (n = Suc k | (EX m. n = Suc m & P m))"
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   684
  by auto
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   685
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   686
end
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
   687