src/HOL/Integ/Bin.ML
author paulson
Wed, 25 Nov 1998 15:54:41 +0100
changeset 5971 c5a7a7685826
parent 5779 5c74f003a68e
child 6036 1512f4b7d2e8
permissions -rw-r--r--
simplified ensures_UNIV
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2224
4fc4b465be5b New material from Norbert Voelker for efficient binary comparisons
paulson
parents: 1894
diff changeset
     1
(*  Title:      HOL/Integ/Bin.ML
4fc4b465be5b New material from Norbert Voelker for efficient binary comparisons
paulson
parents: 1894
diff changeset
     2
    Authors:    Lawrence C Paulson, Cambridge University Computer Laboratory
4fc4b465be5b New material from Norbert Voelker for efficient binary comparisons
paulson
parents: 1894
diff changeset
     3
                David Spelt, University of Twente 
1632
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
     4
    Copyright   1994  University of Cambridge
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
     5
    Copyright   1996 University of Twente
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
     6
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
     7
Arithmetic on binary integers.
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
     8
*)
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
     9
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
    10
(** extra rules for bin_succ, bin_pred, bin_add, bin_mult **)
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
    11
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
    12
qed_goal "NCons_Pls_0" Bin.thy
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
    13
    "NCons Pls False = Pls"
2224
4fc4b465be5b New material from Norbert Voelker for efficient binary comparisons
paulson
parents: 1894
diff changeset
    14
 (fn _ => [(Simp_tac 1)]);
1632
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
    15
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
    16
qed_goal "NCons_Pls_1" Bin.thy
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
    17
    "NCons Pls True = Pls BIT True"
2224
4fc4b465be5b New material from Norbert Voelker for efficient binary comparisons
paulson
parents: 1894
diff changeset
    18
 (fn _ => [(Simp_tac 1)]);
1632
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
    19
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
    20
qed_goal "NCons_Min_0" Bin.thy
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
    21
    "NCons Min False = Min BIT False"
2224
4fc4b465be5b New material from Norbert Voelker for efficient binary comparisons
paulson
parents: 1894
diff changeset
    22
 (fn _ => [(Simp_tac 1)]);
1632
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
    23
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
    24
qed_goal "NCons_Min_1" Bin.thy
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
    25
    "NCons Min True = Min"
2224
4fc4b465be5b New material from Norbert Voelker for efficient binary comparisons
paulson
parents: 1894
diff changeset
    26
 (fn _ => [(Simp_tac 1)]);
1632
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
    27
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
    28
qed_goal "bin_succ_1" Bin.thy
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
    29
    "bin_succ(w BIT True) = (bin_succ w) BIT False"
2224
4fc4b465be5b New material from Norbert Voelker for efficient binary comparisons
paulson
parents: 1894
diff changeset
    30
 (fn _ => [(Simp_tac 1)]);
1632
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
    31
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
    32
qed_goal "bin_succ_0" Bin.thy
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
    33
    "bin_succ(w BIT False) =  NCons w True"
2224
4fc4b465be5b New material from Norbert Voelker for efficient binary comparisons
paulson
parents: 1894
diff changeset
    34
 (fn _ => [(Simp_tac 1)]);
1632
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
    35
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
    36
qed_goal "bin_pred_1" Bin.thy
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
    37
    "bin_pred(w BIT True) = NCons w False"
2224
4fc4b465be5b New material from Norbert Voelker for efficient binary comparisons
paulson
parents: 1894
diff changeset
    38
 (fn _ => [(Simp_tac 1)]);
1632
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
    39
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
    40
qed_goal "bin_pred_0" Bin.thy
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
    41
    "bin_pred(w BIT False) = (bin_pred w) BIT True"
2224
4fc4b465be5b New material from Norbert Voelker for efficient binary comparisons
paulson
parents: 1894
diff changeset
    42
 (fn _ => [(Simp_tac 1)]);
1632
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
    43
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
    44
qed_goal "bin_minus_1" Bin.thy
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
    45
    "bin_minus(w BIT True) = bin_pred (NCons (bin_minus w) False)"
2224
4fc4b465be5b New material from Norbert Voelker for efficient binary comparisons
paulson
parents: 1894
diff changeset
    46
 (fn _ => [(Simp_tac 1)]);
1632
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
    47
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
    48
qed_goal "bin_minus_0" Bin.thy
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
    49
    "bin_minus(w BIT False) = (bin_minus w) BIT False"
2224
4fc4b465be5b New material from Norbert Voelker for efficient binary comparisons
paulson
parents: 1894
diff changeset
    50
 (fn _ => [(Simp_tac 1)]);
1632
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
    51
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
    52
1632
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
    53
(*** bin_add: binary addition ***)
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
    54
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
    55
qed_goal "bin_add_BIT_11" Bin.thy
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
    56
    "bin_add (v BIT True) (w BIT True) = \
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
    57
\    NCons (bin_add v (bin_succ w)) False"
2224
4fc4b465be5b New material from Norbert Voelker for efficient binary comparisons
paulson
parents: 1894
diff changeset
    58
 (fn _ => [(Simp_tac 1)]);
1632
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
    59
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
    60
qed_goal "bin_add_BIT_10" Bin.thy
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
    61
    "bin_add (v BIT True) (w BIT False) = NCons (bin_add v w) True"
2224
4fc4b465be5b New material from Norbert Voelker for efficient binary comparisons
paulson
parents: 1894
diff changeset
    62
 (fn _ => [(Simp_tac 1)]);
1632
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
    63
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
    64
qed_goal "bin_add_BIT_0" Bin.thy
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
    65
    "bin_add (v BIT False) (w BIT y) = NCons (bin_add v w) y"
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
    66
 (fn _ => [Auto_tac]);
1632
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
    67
5551
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
    68
Goal "bin_add w Pls = w";
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
    69
by (induct_tac "w" 1);
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
    70
by Auto_tac;
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
    71
qed "bin_add_Pls_right";
1632
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
    72
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
    73
qed_goal "bin_add_BIT_Min" Bin.thy
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
    74
    "bin_add (v BIT x) Min = bin_pred (v BIT x)"
2224
4fc4b465be5b New material from Norbert Voelker for efficient binary comparisons
paulson
parents: 1894
diff changeset
    75
 (fn _ => [(Simp_tac 1)]);
1632
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
    76
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
    77
qed_goal "bin_add_BIT_BIT" Bin.thy
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
    78
    "bin_add (v BIT x) (w BIT y) = \
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
    79
\    NCons(bin_add v (if x & y then (bin_succ w) else w)) (x~= y)"
2224
4fc4b465be5b New material from Norbert Voelker for efficient binary comparisons
paulson
parents: 1894
diff changeset
    80
 (fn _ => [(Simp_tac 1)]);
1632
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
    81
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
    82
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
    83
(*** bin_add: binary multiplication ***)
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
    84
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
    85
qed_goal "bin_mult_1" Bin.thy
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
    86
    "bin_mult (v BIT True) w = bin_add (NCons (bin_mult v w) False) w"
2224
4fc4b465be5b New material from Norbert Voelker for efficient binary comparisons
paulson
parents: 1894
diff changeset
    87
 (fn _ => [(Simp_tac 1)]);
1632
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
    88
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
    89
qed_goal "bin_mult_0" Bin.thy
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
    90
    "bin_mult (v BIT False) w = NCons (bin_mult v w) False"
2224
4fc4b465be5b New material from Norbert Voelker for efficient binary comparisons
paulson
parents: 1894
diff changeset
    91
 (fn _ => [(Simp_tac 1)]);
1632
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
    92
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
    93
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
    94
(**** The carry/borrow functions, bin_succ and bin_pred ****)
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
    95
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
    96
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
    97
(**** integ_of ****)
1632
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
    98
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
    99
qed_goal "integ_of_NCons" Bin.thy
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
   100
    "integ_of(NCons w b) = integ_of(w BIT b)"
5184
9b8547a9496a Adapted to new datatype package.
berghofe
parents: 5069
diff changeset
   101
 (fn _ =>[(induct_tac "w" 1),
5510
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   102
          (ALLGOALS Asm_simp_tac) ]);
1632
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
   103
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
   104
Addsimps [integ_of_NCons];
1632
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
   105
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   106
qed_goal "integ_of_succ" Bin.thy
5582
a356fb49e69e many renamings and changes. Simproc for cancelling common terms in relations
paulson
parents: 5562
diff changeset
   107
    "integ_of(bin_succ w) = int 1 + integ_of w"
2224
4fc4b465be5b New material from Norbert Voelker for efficient binary comparisons
paulson
parents: 1894
diff changeset
   108
 (fn _ =>[(rtac bin.induct 1),
5510
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   109
          (ALLGOALS(asm_simp_tac (simpset() addsimps zadd_ac))) ]);
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   110
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   111
qed_goal "integ_of_pred" Bin.thy
5582
a356fb49e69e many renamings and changes. Simproc for cancelling common terms in relations
paulson
parents: 5562
diff changeset
   112
    "integ_of(bin_pred w) = - (int 1) + integ_of w"
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   113
 (fn _ =>[(rtac bin.induct 1),
5510
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   114
          (ALLGOALS(asm_simp_tac (simpset() addsimps zadd_ac))) ]);
1632
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
   115
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   116
Goal "integ_of(bin_minus w) = - (integ_of w)";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   117
by (rtac bin.induct 1);
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   118
by (Simp_tac 1);
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   119
by (Simp_tac 1);
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   120
by (asm_simp_tac (simpset()
5551
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   121
		  delsimps [bin_pred_Pls, bin_pred_Min, bin_pred_BIT]
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   122
		  addsimps [integ_of_succ,integ_of_pred,
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   123
			    zadd_assoc]) 1);
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   124
qed "integ_of_minus";
1632
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
   125
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
   126
 
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
   127
val bin_add_simps = [bin_add_BIT_BIT,
5510
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   128
                     integ_of_succ, integ_of_pred];
1632
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
   129
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   130
Goal "! w. integ_of(bin_add v w) = integ_of v + integ_of w";
5184
9b8547a9496a Adapted to new datatype package.
berghofe
parents: 5069
diff changeset
   131
by (induct_tac "v" 1);
4686
74a12e86b20b Removed `addsplits [expand_if]'
nipkow
parents: 4641
diff changeset
   132
by (simp_tac (simpset() addsimps bin_add_simps) 1);
74a12e86b20b Removed `addsplits [expand_if]'
nipkow
parents: 4641
diff changeset
   133
by (simp_tac (simpset() addsimps bin_add_simps) 1);
1632
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
   134
by (rtac allI 1);
5184
9b8547a9496a Adapted to new datatype package.
berghofe
parents: 5069
diff changeset
   135
by (induct_tac "w" 1);
5540
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   136
by (ALLGOALS (asm_simp_tac (simpset() addsimps bin_add_simps @ zadd_ac)));
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   137
qed_spec_mp "integ_of_add";
1632
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
   138
5779
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   139
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   140
(*Subtraction*)
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   141
Goalw [zdiff_def]
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   142
     "integ_of v - integ_of w = integ_of(bin_add v (bin_minus w))";
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   143
by (simp_tac (simpset() addsimps [integ_of_add, integ_of_minus]) 1);
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   144
qed "diff_integ_of_eq";
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   145
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
   146
val bin_mult_simps = [zmult_zminus, integ_of_minus, integ_of_add];
1632
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
   147
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   148
Goal "integ_of(bin_mult v w) = integ_of v * integ_of w";
5184
9b8547a9496a Adapted to new datatype package.
berghofe
parents: 5069
diff changeset
   149
by (induct_tac "v" 1);
4686
74a12e86b20b Removed `addsplits [expand_if]'
nipkow
parents: 4641
diff changeset
   150
by (simp_tac (simpset() addsimps bin_mult_simps) 1);
74a12e86b20b Removed `addsplits [expand_if]'
nipkow
parents: 4641
diff changeset
   151
by (simp_tac (simpset() addsimps bin_mult_simps) 1);
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   152
by (asm_simp_tac
5540
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   153
    (simpset() addsimps bin_mult_simps @ [zadd_zmult_distrib] @ zadd_ac) 1);
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   154
qed "integ_of_mult";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   155
1632
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
   156
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   157
(** Simplification rules with integer constants **)
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   158
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   159
Goal "#0 + z = z";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   160
by (Simp_tac 1);
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   161
qed "zadd_0";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   162
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   163
Goal "z + #0 = z";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   164
by (Simp_tac 1);
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   165
qed "zadd_0_right";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   166
5592
64697e426048 better handling of literals
paulson
parents: 5582
diff changeset
   167
Addsimps [zadd_0, zadd_0_right];
64697e426048 better handling of literals
paulson
parents: 5582
diff changeset
   168
64697e426048 better handling of literals
paulson
parents: 5582
diff changeset
   169
64697e426048 better handling of literals
paulson
parents: 5582
diff changeset
   170
(** Converting simple cases of (int n) to numerals **)
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   171
5592
64697e426048 better handling of literals
paulson
parents: 5582
diff changeset
   172
(*int 0 = #0 *)
64697e426048 better handling of literals
paulson
parents: 5582
diff changeset
   173
bind_thm ("int_0", integ_of_Pls RS sym);
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   174
5592
64697e426048 better handling of literals
paulson
parents: 5582
diff changeset
   175
Goal "int (Suc n) = #1 + int n";
64697e426048 better handling of literals
paulson
parents: 5582
diff changeset
   176
by (simp_tac (simpset() addsimps [zadd_int]) 1);
64697e426048 better handling of literals
paulson
parents: 5582
diff changeset
   177
qed "int_Suc";
5510
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   178
5592
64697e426048 better handling of literals
paulson
parents: 5582
diff changeset
   179
val int_simps = [int_0, int_Suc];
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   180
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   181
Goal "- (#0) = #0";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   182
by (Simp_tac 1);
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   183
qed "zminus_0";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   184
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   185
Addsimps [zminus_0];
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   186
5582
a356fb49e69e many renamings and changes. Simproc for cancelling common terms in relations
paulson
parents: 5562
diff changeset
   187
a356fb49e69e many renamings and changes. Simproc for cancelling common terms in relations
paulson
parents: 5562
diff changeset
   188
Goal "#0 - x = -x";
a356fb49e69e many renamings and changes. Simproc for cancelling common terms in relations
paulson
parents: 5562
diff changeset
   189
by (simp_tac (simpset() addsimps [zdiff_def]) 1);
a356fb49e69e many renamings and changes. Simproc for cancelling common terms in relations
paulson
parents: 5562
diff changeset
   190
qed "zdiff0";
a356fb49e69e many renamings and changes. Simproc for cancelling common terms in relations
paulson
parents: 5562
diff changeset
   191
a356fb49e69e many renamings and changes. Simproc for cancelling common terms in relations
paulson
parents: 5562
diff changeset
   192
Goal "x - #0 = x";
a356fb49e69e many renamings and changes. Simproc for cancelling common terms in relations
paulson
parents: 5562
diff changeset
   193
by (simp_tac (simpset() addsimps [zdiff_def]) 1);
a356fb49e69e many renamings and changes. Simproc for cancelling common terms in relations
paulson
parents: 5562
diff changeset
   194
qed "zdiff0_right";
a356fb49e69e many renamings and changes. Simproc for cancelling common terms in relations
paulson
parents: 5562
diff changeset
   195
a356fb49e69e many renamings and changes. Simproc for cancelling common terms in relations
paulson
parents: 5562
diff changeset
   196
Goal "x - x = #0";
a356fb49e69e many renamings and changes. Simproc for cancelling common terms in relations
paulson
parents: 5562
diff changeset
   197
by (simp_tac (simpset() addsimps [zdiff_def]) 1);
a356fb49e69e many renamings and changes. Simproc for cancelling common terms in relations
paulson
parents: 5562
diff changeset
   198
qed "zdiff_self";
a356fb49e69e many renamings and changes. Simproc for cancelling common terms in relations
paulson
parents: 5562
diff changeset
   199
a356fb49e69e many renamings and changes. Simproc for cancelling common terms in relations
paulson
parents: 5562
diff changeset
   200
Addsimps [zdiff0, zdiff0_right, zdiff_self];
a356fb49e69e many renamings and changes. Simproc for cancelling common terms in relations
paulson
parents: 5562
diff changeset
   201
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   202
Goal "#0 * z = #0";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   203
by (Simp_tac 1);
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   204
qed "zmult_0";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   205
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   206
Goal "#1 * z = z";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   207
by (Simp_tac 1);
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   208
qed "zmult_1";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   209
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   210
Goal "#2 * z = z+z";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   211
by (simp_tac (simpset() addsimps [zadd_zmult_distrib]) 1);
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   212
qed "zmult_2";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   213
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   214
Goal "z * #0 = #0";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   215
by (Simp_tac 1);
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   216
qed "zmult_0_right";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   217
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   218
Goal "z * #1 = z";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   219
by (Simp_tac 1);
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   220
qed "zmult_1_right";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   221
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   222
Goal "z * #2 = z+z";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   223
by (simp_tac (simpset() addsimps [zadd_zmult_distrib2]) 1);
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   224
qed "zmult_2_right";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   225
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   226
Addsimps [zmult_0, zmult_0_right, 
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   227
	  zmult_1, zmult_1_right, 
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   228
	  zmult_2, zmult_2_right];
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   229
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   230
Goal "(w < z + #1) = (w<z | w=z)";
5592
64697e426048 better handling of literals
paulson
parents: 5582
diff changeset
   231
by (simp_tac (simpset() addsimps [zless_add_int_Suc_eq]) 1);
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   232
qed "zless_add1_eq";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   233
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   234
Goal "(w + #1 <= z) = (w<z)";
5592
64697e426048 better handling of literals
paulson
parents: 5582
diff changeset
   235
by (simp_tac (simpset() addsimps [add_int_Suc_zle_eq]) 1);
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   236
qed "add1_zle_eq";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   237
Addsimps [add1_zle_eq];
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   238
5540
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   239
Goal "neg x = (x < #0)";
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   240
by (simp_tac (simpset() addsimps [neg_eq_less_nat0]) 1); 
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   241
qed "neg_eq_less_0"; 
5510
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   242
5582
a356fb49e69e many renamings and changes. Simproc for cancelling common terms in relations
paulson
parents: 5562
diff changeset
   243
Goal "(~neg x) = (int 0 <= x)";
5540
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   244
by (simp_tac (simpset() addsimps [not_neg_eq_ge_nat0]) 1); 
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   245
qed "not_neg_eq_ge_0"; 
5510
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   246
5582
a356fb49e69e many renamings and changes. Simproc for cancelling common terms in relations
paulson
parents: 5562
diff changeset
   247
Goal "#0 <= int m";
a356fb49e69e many renamings and changes. Simproc for cancelling common terms in relations
paulson
parents: 5562
diff changeset
   248
by (Simp_tac 1);
a356fb49e69e many renamings and changes. Simproc for cancelling common terms in relations
paulson
parents: 5562
diff changeset
   249
qed "zero_zle_int";
a356fb49e69e many renamings and changes. Simproc for cancelling common terms in relations
paulson
parents: 5562
diff changeset
   250
AddIffs [zero_zle_int];
a356fb49e69e many renamings and changes. Simproc for cancelling common terms in relations
paulson
parents: 5562
diff changeset
   251
5510
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   252
5747
387b5bf9326a Now users will never see (int 0)
paulson
parents: 5592
diff changeset
   253
(** Needed because (int 0) rewrites to #0.
387b5bf9326a Now users will never see (int 0)
paulson
parents: 5592
diff changeset
   254
    Can these be generalized without evaluating large numbers?**)
387b5bf9326a Now users will never see (int 0)
paulson
parents: 5592
diff changeset
   255
387b5bf9326a Now users will never see (int 0)
paulson
parents: 5592
diff changeset
   256
Goal "~ (int k < #0)";
387b5bf9326a Now users will never see (int 0)
paulson
parents: 5592
diff changeset
   257
by (Simp_tac 1);
387b5bf9326a Now users will never see (int 0)
paulson
parents: 5592
diff changeset
   258
qed "int_less_0_conv";
387b5bf9326a Now users will never see (int 0)
paulson
parents: 5592
diff changeset
   259
387b5bf9326a Now users will never see (int 0)
paulson
parents: 5592
diff changeset
   260
Goal "(int k <= #0) = (k=0)";
387b5bf9326a Now users will never see (int 0)
paulson
parents: 5592
diff changeset
   261
by (Simp_tac 1);
387b5bf9326a Now users will never see (int 0)
paulson
parents: 5592
diff changeset
   262
qed "int_le_0_conv";
387b5bf9326a Now users will never see (int 0)
paulson
parents: 5592
diff changeset
   263
387b5bf9326a Now users will never see (int 0)
paulson
parents: 5592
diff changeset
   264
Goal "(int k = #0) = (k=0)";
387b5bf9326a Now users will never see (int 0)
paulson
parents: 5592
diff changeset
   265
by (Simp_tac 1);
387b5bf9326a Now users will never see (int 0)
paulson
parents: 5592
diff changeset
   266
qed "int_eq_0_conv";
387b5bf9326a Now users will never see (int 0)
paulson
parents: 5592
diff changeset
   267
387b5bf9326a Now users will never see (int 0)
paulson
parents: 5592
diff changeset
   268
Goal "(#0 = int k) = (k=0)";
387b5bf9326a Now users will never see (int 0)
paulson
parents: 5592
diff changeset
   269
by Auto_tac;
387b5bf9326a Now users will never see (int 0)
paulson
parents: 5592
diff changeset
   270
qed "int_eq_0_conv'";
387b5bf9326a Now users will never see (int 0)
paulson
parents: 5592
diff changeset
   271
387b5bf9326a Now users will never see (int 0)
paulson
parents: 5592
diff changeset
   272
Addsimps [int_less_0_conv, int_le_0_conv, int_eq_0_conv, int_eq_0_conv'];
387b5bf9326a Now users will never see (int 0)
paulson
parents: 5592
diff changeset
   273
387b5bf9326a Now users will never see (int 0)
paulson
parents: 5592
diff changeset
   274
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   275
(** Simplification rules for comparison of binary numbers (Norbert Voelker) **)
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   276
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   277
(** Equals (=) **)
1632
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
   278
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   279
Goalw [iszero_def]
5779
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   280
  "(integ_of x = integ_of y) = iszero(integ_of (bin_add x (bin_minus y)))"; 
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   281
by (simp_tac (simpset() addsimps
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   282
              (zcompare_rls @ [integ_of_add, integ_of_minus])) 1); 
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   283
qed "eq_integ_of_eq"; 
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   284
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
   285
Goalw [iszero_def] "iszero (integ_of Pls)"; 
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   286
by (Simp_tac 1); 
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
   287
qed "iszero_integ_of_Pls"; 
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   288
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
   289
Goalw [iszero_def] "~ iszero(integ_of Min)"; 
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   290
by (Simp_tac 1);
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
   291
qed "nonzero_integ_of_Min"; 
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   292
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   293
Goalw [iszero_def]
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
   294
     "iszero (integ_of (w BIT x)) = (~x & iszero (integ_of w))"; 
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   295
by (Simp_tac 1);
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   296
by (int_case_tac "integ_of w" 1); 
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   297
by (ALLGOALS (asm_simp_tac 
5540
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   298
	      (simpset() addsimps zcompare_rls @ 
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   299
				  [zminus_zadd_distrib RS sym, 
5582
a356fb49e69e many renamings and changes. Simproc for cancelling common terms in relations
paulson
parents: 5562
diff changeset
   300
				   zadd_int]))); 
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
   301
qed "iszero_integ_of_BIT"; 
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   302
5779
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   303
Goal "iszero (integ_of (w BIT False)) = iszero (integ_of w)"; 
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   304
by (simp_tac (HOL_ss addsimps [iszero_integ_of_BIT]) 1); 
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   305
qed "iszero_integ_of_0"; 
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   306
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   307
Goal "~ iszero (integ_of (w BIT True))"; 
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   308
by (simp_tac (HOL_ss addsimps [iszero_integ_of_BIT]) 1); 
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   309
qed "iszero_integ_of_1"; 
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   310
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   311
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   312
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   313
(** Less-than (<) **)
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   314
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   315
Goalw [zless_def,zdiff_def] 
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   316
    "integ_of x < integ_of y \
5540
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   317
\    = neg (integ_of (bin_add x (bin_minus y)))";
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   318
by (simp_tac (simpset() addsimps bin_mult_simps) 1);
5540
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   319
qed "less_integ_of_eq_neg"; 
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   320
5540
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   321
Goal "~ neg (integ_of Pls)"; 
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   322
by (Simp_tac 1); 
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
   323
qed "not_neg_integ_of_Pls"; 
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   324
5540
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   325
Goal "neg (integ_of Min)"; 
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   326
by (Simp_tac 1);
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
   327
qed "neg_integ_of_Min"; 
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   328
5540
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   329
Goal "neg (integ_of (w BIT x)) = neg (integ_of w)"; 
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   330
by (Asm_simp_tac 1); 
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   331
by (int_case_tac "integ_of w" 1); 
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   332
by (ALLGOALS (asm_simp_tac 
5582
a356fb49e69e many renamings and changes. Simproc for cancelling common terms in relations
paulson
parents: 5562
diff changeset
   333
	      (simpset() addsimps [zadd_int, neg_eq_less_nat0, 
5540
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   334
				   symmetric zdiff_def] @ zcompare_rls))); 
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
   335
qed "neg_integ_of_BIT"; 
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   336
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   337
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   338
(** Less-than-or-equals (<=) **)
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   339
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   340
Goal "(integ_of x <= integ_of y) = (~ integ_of y < integ_of x)";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   341
by (simp_tac (simpset() addsimps [zle_def]) 1);
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   342
qed "le_integ_of_eq_not_less"; 
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   343
5540
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   344
(*Delete the original rewrites, with their clumsy conditional expressions*)
5551
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   345
Delsimps [bin_succ_BIT, bin_pred_BIT, bin_minus_BIT, 
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   346
          NCons_Pls, NCons_Min, bin_add_BIT, bin_mult_BIT];
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   347
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   348
(*Hide the binary representation of integer constants*)
5540
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   349
Delsimps [integ_of_Pls, integ_of_Min, integ_of_BIT];
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   350
5779
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   351
(*simplification of arithmetic operations on integer constants*)
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   352
val bin_arith_extra_simps =
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   353
    [integ_of_add RS sym,
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   354
     integ_of_minus RS sym,
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   355
     integ_of_mult RS sym,
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   356
     bin_succ_1, bin_succ_0, 
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   357
     bin_pred_1, bin_pred_0, 
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   358
     bin_minus_1, bin_minus_0,  
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   359
     bin_add_Pls_right, bin_add_BIT_Min,
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   360
     bin_add_BIT_0, bin_add_BIT_10, bin_add_BIT_11,
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   361
     diff_integ_of_eq, 
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   362
     bin_mult_1, bin_mult_0, 
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   363
     NCons_Pls_0, NCons_Pls_1, 
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   364
     NCons_Min_0, NCons_Min_1, NCons_BIT];
2224
4fc4b465be5b New material from Norbert Voelker for efficient binary comparisons
paulson
parents: 1894
diff changeset
   365
5779
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   366
(*For making a minimal simpset, one must include these default simprules
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   367
  of Bin.thy.  Also include simp_thms, or at least (~False)=True*)
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   368
val bin_arith_simps =
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   369
    [bin_pred_Pls, bin_pred_Min,
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   370
     bin_succ_Pls, bin_succ_Min,
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   371
     bin_add_Pls, bin_add_Min,
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   372
     bin_minus_Pls, bin_minus_Min,
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   373
     bin_mult_Pls, bin_mult_Min] @ bin_arith_extra_simps;
2224
4fc4b465be5b New material from Norbert Voelker for efficient binary comparisons
paulson
parents: 1894
diff changeset
   374
5779
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   375
(*Simplification of relational operations*)
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   376
val bin_rel_simps =
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   377
    [eq_integ_of_eq, iszero_integ_of_Pls, nonzero_integ_of_Min,
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   378
     iszero_integ_of_0, iszero_integ_of_1,
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   379
     less_integ_of_eq_neg,
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   380
     not_neg_integ_of_Pls, neg_integ_of_Min, neg_integ_of_BIT,
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   381
     le_integ_of_eq_not_less];
2224
4fc4b465be5b New material from Norbert Voelker for efficient binary comparisons
paulson
parents: 1894
diff changeset
   382
5779
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   383
Addsimps bin_arith_extra_simps;
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   384
Addsimps bin_rel_simps;
5510
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   385
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   386
5592
64697e426048 better handling of literals
paulson
parents: 5582
diff changeset
   387
(** Simplification of arithmetic when nested to the right **)
64697e426048 better handling of literals
paulson
parents: 5582
diff changeset
   388
64697e426048 better handling of literals
paulson
parents: 5582
diff changeset
   389
Goal "integ_of v + (integ_of w + z) = integ_of(bin_add v w) + z";
64697e426048 better handling of literals
paulson
parents: 5582
diff changeset
   390
by (simp_tac (simpset() addsimps [zadd_assoc RS sym]) 1);
64697e426048 better handling of literals
paulson
parents: 5582
diff changeset
   391
qed "add_integ_of_left";
64697e426048 better handling of literals
paulson
parents: 5582
diff changeset
   392
64697e426048 better handling of literals
paulson
parents: 5582
diff changeset
   393
Goal "integ_of v * (integ_of w * z) = integ_of(bin_mult v w) * z";
64697e426048 better handling of literals
paulson
parents: 5582
diff changeset
   394
by (simp_tac (simpset() addsimps [zmult_assoc RS sym]) 1);
64697e426048 better handling of literals
paulson
parents: 5582
diff changeset
   395
qed "mult_integ_of_left";
64697e426048 better handling of literals
paulson
parents: 5582
diff changeset
   396
64697e426048 better handling of literals
paulson
parents: 5582
diff changeset
   397
Addsimps [add_integ_of_left, mult_integ_of_left];
64697e426048 better handling of literals
paulson
parents: 5582
diff changeset
   398
64697e426048 better handling of literals
paulson
parents: 5582
diff changeset
   399
5510
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   400
(** Simplification of inequalities involving numerical constants **)
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   401
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   402
Goal "(w <= z + #1) = (w<=z | w = z + #1)";
5540
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   403
by (simp_tac (simpset() addsimps [integ_le_less, zless_add1_eq]) 1);
5510
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   404
qed "zle_add1_eq";
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   405
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   406
Goal "(w <= z - #1) = (w<z)";
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   407
by (simp_tac (simpset() addsimps zcompare_rls) 1);
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   408
qed "zle_diff1_eq";
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   409
Addsimps [zle_diff1_eq];
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   410
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   411
(*2nd premise can be proved automatically if v is a literal*)
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   412
Goal "[| w <= z; #0 <= v |] ==> w <= z + v";
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   413
by (dtac zadd_zle_mono 1);
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   414
by (assume_tac 1);
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   415
by (Full_simp_tac 1);
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   416
qed "zle_imp_zle_zadd";
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   417
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   418
Goal "w <= z ==> w <= z + #1";
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   419
by (asm_simp_tac (simpset() addsimps [zle_imp_zle_zadd]) 1);
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   420
qed "zle_imp_zle_zadd1";
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   421
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   422
(*2nd premise can be proved automatically if v is a literal*)
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   423
Goal "[| w < z; #0 <= v |] ==> w < z + v";
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   424
by (dtac zadd_zless_mono 1);
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   425
by (assume_tac 1);
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   426
by (Full_simp_tac 1);
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   427
qed "zless_imp_zless_zadd";
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   428
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   429
Goal "w < z ==> w < z + #1";
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   430
by (asm_simp_tac (simpset() addsimps [zless_imp_zless_zadd]) 1);
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   431
qed "zless_imp_zless_zadd1";
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   432
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   433
Goal "(w < z + #1) = (w<=z)";
5540
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   434
by (simp_tac (simpset() addsimps [zless_add1_eq, integ_le_less]) 1);
5510
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   435
qed "zle_add1_eq_le";
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   436
Addsimps [zle_add1_eq_le];
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   437
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   438
Goal "(z = z + w) = (w = #0)";
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   439
by (rtac trans 1);
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   440
by (rtac zadd_left_cancel 2);
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   441
by (simp_tac (simpset() addsimps [eq_sym_conv]) 1);
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   442
qed "zadd_left_cancel0";
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   443
Addsimps [zadd_left_cancel0];
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   444
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   445
(*LOOPS as a simprule!*)
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   446
Goal "[| w + v < z; #0 <= v |] ==> w < z";
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   447
by (dtac zadd_zless_mono 1);
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   448
by (assume_tac 1);
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   449
by (full_simp_tac (simpset() addsimps zadd_ac) 1);
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   450
qed "zless_zadd_imp_zless";
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   451
5540
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   452
(*LOOPS as a simprule!  Analogous to Suc_lessD*)
5510
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   453
Goal "w + #1 < z ==> w < z";
5540
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   454
by (dtac zless_zadd_imp_zless 1);
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   455
by (assume_tac 2);
5510
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   456
by (Simp_tac 1);
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   457
qed "zless_zadd1_imp_zless";
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   458
5551
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   459
Goal "w + #-1 = w - #1";
5582
a356fb49e69e many renamings and changes. Simproc for cancelling common terms in relations
paulson
parents: 5562
diff changeset
   460
by (Simp_tac 1);
5551
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   461
qed "zplus_minus1_conv";
5510
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   462
5551
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   463
5562
02261e6880d1 Renaming of Integ/Integ.* to Integ/Int.*, and renaming of related constants
paulson
parents: 5551
diff changeset
   464
(*** nat ***)
5551
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   465
5582
a356fb49e69e many renamings and changes. Simproc for cancelling common terms in relations
paulson
parents: 5562
diff changeset
   466
Goal "#0 <= z ==> int (nat z) = z"; 
5551
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   467
by (asm_full_simp_tac
5562
02261e6880d1 Renaming of Integ/Integ.* to Integ/Int.*, and renaming of related constants
paulson
parents: 5551
diff changeset
   468
    (simpset() addsimps [neg_eq_less_0, zle_def, not_neg_nat]) 1); 
02261e6880d1 Renaming of Integ/Integ.* to Integ/Int.*, and renaming of related constants
paulson
parents: 5551
diff changeset
   469
qed "nat_0_le"; 
5551
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   470
5562
02261e6880d1 Renaming of Integ/Integ.* to Integ/Int.*, and renaming of related constants
paulson
parents: 5551
diff changeset
   471
Goal "z < #0 ==> nat z = 0"; 
5551
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   472
by (asm_full_simp_tac
5562
02261e6880d1 Renaming of Integ/Integ.* to Integ/Int.*, and renaming of related constants
paulson
parents: 5551
diff changeset
   473
    (simpset() addsimps [neg_eq_less_0, zle_def, neg_nat]) 1); 
02261e6880d1 Renaming of Integ/Integ.* to Integ/Int.*, and renaming of related constants
paulson
parents: 5551
diff changeset
   474
qed "nat_less_0"; 
5551
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   475
5562
02261e6880d1 Renaming of Integ/Integ.* to Integ/Int.*, and renaming of related constants
paulson
parents: 5551
diff changeset
   476
Addsimps [nat_0_le, nat_less_0];
5551
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   477
5582
a356fb49e69e many renamings and changes. Simproc for cancelling common terms in relations
paulson
parents: 5562
diff changeset
   478
Goal "#0 <= w ==> (nat w = m) = (w = int m)";
5551
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   479
by Auto_tac;
5562
02261e6880d1 Renaming of Integ/Integ.* to Integ/Int.*, and renaming of related constants
paulson
parents: 5551
diff changeset
   480
qed "nat_eq_iff";
5551
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   481
5582
a356fb49e69e many renamings and changes. Simproc for cancelling common terms in relations
paulson
parents: 5562
diff changeset
   482
Goal "#0 <= w ==> (nat w < m) = (w < int m)";
5551
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   483
by (rtac iffI 1);
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   484
by (asm_full_simp_tac 
5582
a356fb49e69e many renamings and changes. Simproc for cancelling common terms in relations
paulson
parents: 5562
diff changeset
   485
    (simpset() delsimps [zless_int] addsimps [zless_int RS sym]) 2);
5562
02261e6880d1 Renaming of Integ/Integ.* to Integ/Int.*, and renaming of related constants
paulson
parents: 5551
diff changeset
   486
by (etac (nat_0_le RS subst) 1);
5551
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   487
by (Simp_tac 1);
5562
02261e6880d1 Renaming of Integ/Integ.* to Integ/Int.*, and renaming of related constants
paulson
parents: 5551
diff changeset
   488
qed "nat_less_iff";
5551
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   489
5747
387b5bf9326a Now users will never see (int 0)
paulson
parents: 5592
diff changeset
   490
5779
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   491
(*Users don't want to see (int 0) or w + - z*)
5c74f003a68e Explicit (and improved) simprules for binary arithmetic.
paulson
parents: 5747
diff changeset
   492
Addsimps [int_0, symmetric zdiff_def];
5747
387b5bf9326a Now users will never see (int 0)
paulson
parents: 5592
diff changeset
   493
5562
02261e6880d1 Renaming of Integ/Integ.* to Integ/Int.*, and renaming of related constants
paulson
parents: 5551
diff changeset
   494
Goal "#0 <= w ==> (nat w < nat z) = (w<z)";
5551
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   495
by (case_tac "neg z" 1);
5562
02261e6880d1 Renaming of Integ/Integ.* to Integ/Int.*, and renaming of related constants
paulson
parents: 5551
diff changeset
   496
by (auto_tac (claset(), simpset() addsimps [nat_less_iff]));
5551
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   497
by (auto_tac (claset() addIs [zless_trans], 
5747
387b5bf9326a Now users will never see (int 0)
paulson
parents: 5592
diff changeset
   498
	      simpset() addsimps [neg_eq_less_0, zle_def]));
5562
02261e6880d1 Renaming of Integ/Integ.* to Integ/Int.*, and renaming of related constants
paulson
parents: 5551
diff changeset
   499
qed "nat_less_eq_zless";
5747
387b5bf9326a Now users will never see (int 0)
paulson
parents: 5592
diff changeset
   500