src/HOL/Integ/Bin.ML
author paulson
Thu, 24 Sep 1998 17:07:24 +0200
changeset 5551 ed5e19bc7e32
parent 5540 0f16c3b66ab4
child 5562 02261e6880d1
permissions -rw-r--r--
renamed some axioms; some new theorems
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
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   107
    "integ_of(bin_succ w) = $#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
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   112
    "integ_of(bin_pred w) = - ($#1) + integ_of w"
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
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
   139
val bin_mult_simps = [zmult_zminus, integ_of_minus, integ_of_add];
1632
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
   140
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   141
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   142
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
   143
by (induct_tac "v" 1);
4686
74a12e86b20b Removed `addsplits [expand_if]'
nipkow
parents: 4641
diff changeset
   144
by (simp_tac (simpset() addsimps bin_mult_simps) 1);
74a12e86b20b Removed `addsplits [expand_if]'
nipkow
parents: 4641
diff changeset
   145
by (simp_tac (simpset() addsimps bin_mult_simps) 1);
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   146
by (asm_simp_tac
5540
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   147
    (simpset() addsimps bin_mult_simps @ [zadd_zmult_distrib] @ zadd_ac) 1);
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   148
qed "integ_of_mult";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   149
1632
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
   150
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   151
(** Simplification rules with integer constants **)
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   152
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   153
Goal "#0 + z = z";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   154
by (Simp_tac 1);
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   155
qed "zadd_0";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   156
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   157
Goal "z + #0 = z";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   158
by (Simp_tac 1);
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   159
qed "zadd_0_right";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   160
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   161
Goal "z + (- z) = #0";
5510
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   162
by (Simp_tac 1);
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   163
qed "zadd_zminus_inverse";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   164
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   165
Goal "(- z) + z = #0";
5510
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   166
by (Simp_tac 1);
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   167
qed "zadd_zminus_inverse2";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   168
5510
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   169
(*These rewrite to $# 0.  Henceforth we should rewrite to #0  *)
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   170
Delsimps [zadd_zminus_inverse_nat, zadd_zminus_inverse_nat2];
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   171
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   172
Addsimps [zadd_0, zadd_0_right, zadd_zminus_inverse, zadd_zminus_inverse2];
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   173
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   174
Goal "- (#0) = #0";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   175
by (Simp_tac 1);
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   176
qed "zminus_0";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   177
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   178
Addsimps [zminus_0];
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   179
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   180
Goal "#0 * z = #0";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   181
by (Simp_tac 1);
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   182
qed "zmult_0";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   183
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   184
Goal "#1 * z = z";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   185
by (Simp_tac 1);
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   186
qed "zmult_1";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   187
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   188
Goal "#2 * z = z+z";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   189
by (simp_tac (simpset() addsimps [zadd_zmult_distrib]) 1);
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   190
qed "zmult_2";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   191
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   192
Goal "z * #0 = #0";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   193
by (Simp_tac 1);
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   194
qed "zmult_0_right";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   195
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   196
Goal "z * #1 = z";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   197
by (Simp_tac 1);
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   198
qed "zmult_1_right";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   199
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   200
Goal "z * #2 = z+z";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   201
by (simp_tac (simpset() addsimps [zadd_zmult_distrib2]) 1);
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   202
qed "zmult_2_right";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   203
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   204
Addsimps [zmult_0, zmult_0_right, 
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   205
	  zmult_1, zmult_1_right, 
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   206
	  zmult_2, zmult_2_right];
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   207
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   208
Goal "(w < z + #1) = (w<z | w=z)";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   209
by (simp_tac (simpset() addsimps [zless_add_nat1_eq]) 1);
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   210
qed "zless_add1_eq";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   211
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   212
Goal "(w + #1 <= z) = (w<z)";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   213
by (simp_tac (simpset() addsimps [add_nat1_zle_eq]) 1);
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   214
qed "add1_zle_eq";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   215
Addsimps [add1_zle_eq];
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   216
5540
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   217
Goal "neg x = (x < #0)";
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   218
by (simp_tac (simpset() addsimps [neg_eq_less_nat0]) 1); 
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   219
qed "neg_eq_less_0"; 
5510
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   220
5540
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   221
Goal "(~neg x) = ($# 0 <= x)";
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   222
by (simp_tac (simpset() addsimps [not_neg_eq_ge_nat0]) 1); 
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   223
qed "not_neg_eq_ge_0"; 
5510
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   224
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   225
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   226
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   227
(** Simplification rules for comparison of binary numbers (Norbert Voelker) **)
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   228
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   229
(** Equals (=) **)
1632
39e146ac224c Binary integers and their numeric syntax
paulson
parents:
diff changeset
   230
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   231
Goalw [iszero_def]
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   232
      "(integ_of x = integ_of y) \ 
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   233
\      = iszero(integ_of (bin_add x (bin_minus y)))"; 
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   234
by (simp_tac (simpset() addsimps
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   235
              (zcompare_rls @ [integ_of_add, integ_of_minus])) 1); 
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   236
qed "eq_integ_of_eq"; 
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   237
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
   238
Goalw [iszero_def] "iszero (integ_of Pls)"; 
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   239
by (Simp_tac 1); 
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
   240
qed "iszero_integ_of_Pls"; 
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   241
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
   242
Goalw [iszero_def] "~ iszero(integ_of Min)"; 
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   243
by (Simp_tac 1);
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
   244
qed "nonzero_integ_of_Min"; 
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   245
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   246
Goalw [iszero_def]
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
   247
     "iszero (integ_of (w BIT x)) = (~x & iszero (integ_of w))"; 
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   248
by (Simp_tac 1);
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   249
by (int_case_tac "integ_of w" 1); 
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   250
by (ALLGOALS (asm_simp_tac 
5540
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   251
	      (simpset() addsimps zcompare_rls @ 
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   252
				  [zminus_zadd_distrib RS sym, 
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   253
				   add_nat]))); 
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
   254
qed "iszero_integ_of_BIT"; 
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   255
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   256
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   257
(** Less-than (<) **)
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   258
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   259
Goalw [zless_def,zdiff_def] 
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   260
    "integ_of x < integ_of y \
5540
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   261
\    = neg (integ_of (bin_add x (bin_minus y)))";
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   262
by (simp_tac (simpset() addsimps bin_mult_simps) 1);
5540
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   263
qed "less_integ_of_eq_neg"; 
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   264
5540
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   265
Goal "~ neg (integ_of Pls)"; 
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   266
by (Simp_tac 1); 
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
   267
qed "not_neg_integ_of_Pls"; 
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   268
5540
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   269
Goal "neg (integ_of Min)"; 
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   270
by (Simp_tac 1);
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
   271
qed "neg_integ_of_Min"; 
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   272
5540
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   273
Goal "neg (integ_of (w BIT x)) = neg (integ_of w)"; 
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   274
by (Asm_simp_tac 1); 
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   275
by (int_case_tac "integ_of w" 1); 
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   276
by (ALLGOALS (asm_simp_tac 
5540
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   277
	      (simpset() addsimps [add_nat, neg_eq_less_nat0, 
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   278
				   symmetric zdiff_def] @ zcompare_rls))); 
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
   279
qed "neg_integ_of_BIT"; 
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   280
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   281
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   282
(** Less-than-or-equals (<=) **)
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   283
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   284
Goal "(integ_of x <= integ_of y) = (~ integ_of y < integ_of x)";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   285
by (simp_tac (simpset() addsimps [zle_def]) 1);
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   286
qed "le_integ_of_eq_not_less"; 
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   287
5540
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   288
(*Delete the original rewrites, with their clumsy conditional expressions*)
5551
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   289
Delsimps [bin_succ_BIT, bin_pred_BIT, bin_minus_BIT, 
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   290
          NCons_Pls, NCons_Min, bin_add_BIT, bin_mult_BIT];
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   291
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   292
(*Hide the binary representation of integer constants*)
5540
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   293
Delsimps [integ_of_Pls, integ_of_Min, integ_of_BIT];
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   294
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   295
(*Add simplification of arithmetic operations on integer constants*)
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   296
Addsimps [integ_of_add RS sym,
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   297
          integ_of_minus RS sym,
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   298
          integ_of_mult RS sym,
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
   299
          bin_succ_1, bin_succ_0, 
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
   300
          bin_pred_1, bin_pred_0, 
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
   301
          bin_minus_1, bin_minus_0,  
5551
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   302
          bin_add_Pls_right, bin_add_BIT_Min,
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
   303
          bin_add_BIT_0, bin_add_BIT_10, bin_add_BIT_11,
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
   304
          bin_mult_1, bin_mult_0, 
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
   305
          NCons_Pls_0, NCons_Pls_1, 
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
   306
          NCons_Min_0, NCons_Min_1, 
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
   307
          NCons_BIT];
2224
4fc4b465be5b New material from Norbert Voelker for efficient binary comparisons
paulson
parents: 1894
diff changeset
   308
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   309
(*... and simplification of relational operations*)
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
   310
Addsimps [eq_integ_of_eq, iszero_integ_of_Pls, nonzero_integ_of_Min,
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
   311
	  iszero_integ_of_BIT,
5540
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   312
	  less_integ_of_eq_neg,
5512
4327eec06849 much renaming and tidying
paulson
parents: 5510
diff changeset
   313
	  not_neg_integ_of_Pls, neg_integ_of_Min, neg_integ_of_BIT,
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   314
	  le_integ_of_eq_not_less];
2224
4fc4b465be5b New material from Norbert Voelker for efficient binary comparisons
paulson
parents: 1894
diff changeset
   315
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   316
Goalw [zdiff_def]
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   317
     "integ_of v - integ_of w = integ_of(bin_add v (bin_minus w))";
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   318
by (Simp_tac 1);
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   319
qed "diff_integ_of_eq";
2224
4fc4b465be5b New material from Norbert Voelker for efficient binary comparisons
paulson
parents: 1894
diff changeset
   320
5491
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   321
(*... and finally subtraction*)
22f8331cdf47 revised treatment of integers
paulson
parents: 5224
diff changeset
   322
Addsimps [diff_integ_of_eq];
5510
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   323
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   324
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   325
(** Simplification of inequalities involving numerical constants **)
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   326
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   327
Goal "(w <= z + #1) = (w<=z | w = z + #1)";
5540
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   328
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
   329
qed "zle_add1_eq";
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   330
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   331
Goal "(w <= z - #1) = (w<z)";
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   332
by (simp_tac (simpset() addsimps zcompare_rls) 1);
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   333
qed "zle_diff1_eq";
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   334
Addsimps [zle_diff1_eq];
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   335
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   336
(*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
   337
Goal "[| w <= z; #0 <= v |] ==> w <= z + v";
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   338
by (dtac zadd_zle_mono 1);
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   339
by (assume_tac 1);
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   340
by (Full_simp_tac 1);
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   341
qed "zle_imp_zle_zadd";
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   342
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   343
Goal "w <= z ==> w <= z + #1";
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   344
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
   345
qed "zle_imp_zle_zadd1";
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   346
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   347
(*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
   348
Goal "[| w < z; #0 <= v |] ==> w < z + v";
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   349
by (dtac zadd_zless_mono 1);
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   350
by (assume_tac 1);
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   351
by (Full_simp_tac 1);
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   352
qed "zless_imp_zless_zadd";
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   353
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   354
Goal "w < z ==> w < z + #1";
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   355
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
   356
qed "zless_imp_zless_zadd1";
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   357
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   358
Goal "(w < z + #1) = (w<=z)";
5540
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   359
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
   360
qed "zle_add1_eq_le";
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   361
Addsimps [zle_add1_eq_le];
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   362
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   363
Goal "(z = z + w) = (w = #0)";
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   364
by (rtac trans 1);
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   365
by (rtac zadd_left_cancel 2);
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   366
by (simp_tac (simpset() addsimps [eq_sym_conv]) 1);
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   367
qed "zadd_left_cancel0";
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   368
Addsimps [zadd_left_cancel0];
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   369
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   370
(*LOOPS as a simprule!*)
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   371
Goal "[| w + v < z; #0 <= v |] ==> w < z";
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   372
by (dtac zadd_zless_mono 1);
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   373
by (assume_tac 1);
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   374
by (full_simp_tac (simpset() addsimps zadd_ac) 1);
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   375
qed "zless_zadd_imp_zless";
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   376
5540
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   377
(*LOOPS as a simprule!  Analogous to Suc_lessD*)
5510
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   378
Goal "w + #1 < z ==> w < z";
5540
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   379
by (dtac zless_zadd_imp_zless 1);
0f16c3b66ab4 much renaming and reorganization
paulson
parents: 5512
diff changeset
   380
by (assume_tac 2);
5510
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   381
by (Simp_tac 1);
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   382
qed "zless_zadd1_imp_zless";
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   383
5551
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   384
Goal "w + #-1 = w - #1";
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   385
by (simp_tac (simpset() addsimps zadd_ac@zcompare_0_rls) 1);
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   386
qed "zplus_minus1_conv";
5510
ad120f7c52ad improved (but still flawed) treatment of binary arithmetic
paulson
parents: 5491
diff changeset
   387
5551
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   388
(*Eliminates neg from the subgoal, introduced e.g. by zcompare_0_rls*)
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   389
val no_neg_ss = 
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   390
    simpset()
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   391
      delsimps [less_integ_of_eq_neg]  (*loops: it introduces neg*)
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   392
      addsimps [zadd_assoc RS sym, zplus_minus1_conv,
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   393
		neg_eq_less_0, iszero_def] @ zcompare_rls;
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   394
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   395
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   396
(*** nat_of ***)
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   397
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   398
Goal "#0 <= z ==> $# (nat_of z) = z"; 
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   399
by (asm_full_simp_tac
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   400
    (simpset() addsimps [neg_eq_less_0, zle_def, not_neg_nat_of]) 1); 
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   401
qed "nat_of_0_le"; 
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   402
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   403
Goal "z < #0 ==> nat_of z = 0"; 
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   404
by (asm_full_simp_tac
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   405
    (simpset() addsimps [neg_eq_less_0, zle_def, neg_nat_of]) 1); 
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   406
qed "nat_of_less_0"; 
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   407
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   408
Addsimps [nat_of_0_le, nat_of_less_0];
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   409
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   410
Goal "#0 <= w ==> (nat_of w = m) = (w = $# m)";
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   411
by Auto_tac;
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   412
qed "nat_of_eq_iff";
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   413
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   414
Goal "#0 <= w ==> (nat_of w < m) = (w < $# m)";
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   415
by (rtac iffI 1);
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   416
by (asm_full_simp_tac 
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   417
    (simpset() delsimps [zless_eq_less] addsimps [zless_eq_less RS sym]) 2);
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   418
by (etac (nat_of_0_le RS subst) 1);
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   419
by (Simp_tac 1);
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   420
qed "nat_of_less_iff";
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   421
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   422
Goal "#0 <= w ==> (nat_of w < nat_of z) = (w<z)";
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   423
by (case_tac "neg z" 1);
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   424
by (auto_tac (claset(), simpset() addsimps [nat_of_less_iff]));
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   425
by (auto_tac (claset() addIs [zless_trans], 
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   426
	      simpset() addsimps [neg_eq_less_0, integ_of_Pls, zle_def]));
ed5e19bc7e32 renamed some axioms; some new theorems
paulson
parents: 5540
diff changeset
   427
qed "nat_of_less_eq_zless";