author | wenzelm |
Mon, 28 Dec 2015 01:26:34 +0100 | |
changeset 61944 | 5d06ecfdb472 |
parent 61799 | 4cf66f21b764 |
child 62348 | 9a5f43dac883 |
permissions | -rw-r--r-- |
47108 | 1 |
(* Title: HOL/Num.thy |
2 |
Author: Florian Haftmann |
|
3 |
Author: Brian Huffman |
|
4 |
*) |
|
5 |
||
60758 | 6 |
section \<open>Binary Numerals\<close> |
47108 | 7 |
|
8 |
theory Num |
|
58154 | 9 |
imports BNF_Least_Fixpoint |
47108 | 10 |
begin |
11 |
||
61799 | 12 |
subsection \<open>The \<open>num\<close> type\<close> |
47108 | 13 |
|
58310 | 14 |
datatype num = One | Bit0 num | Bit1 num |
47108 | 15 |
|
60758 | 16 |
text \<open>Increment function for type @{typ num}\<close> |
47108 | 17 |
|
18 |
primrec inc :: "num \<Rightarrow> num" where |
|
19 |
"inc One = Bit0 One" | |
|
20 |
"inc (Bit0 x) = Bit1 x" | |
|
21 |
"inc (Bit1 x) = Bit0 (inc x)" |
|
22 |
||
60758 | 23 |
text \<open>Converting between type @{typ num} and type @{typ nat}\<close> |
47108 | 24 |
|
25 |
primrec nat_of_num :: "num \<Rightarrow> nat" where |
|
26 |
"nat_of_num One = Suc 0" | |
|
27 |
"nat_of_num (Bit0 x) = nat_of_num x + nat_of_num x" | |
|
28 |
"nat_of_num (Bit1 x) = Suc (nat_of_num x + nat_of_num x)" |
|
29 |
||
30 |
primrec num_of_nat :: "nat \<Rightarrow> num" where |
|
31 |
"num_of_nat 0 = One" | |
|
32 |
"num_of_nat (Suc n) = (if 0 < n then inc (num_of_nat n) else One)" |
|
33 |
||
34 |
lemma nat_of_num_pos: "0 < nat_of_num x" |
|
35 |
by (induct x) simp_all |
|
36 |
||
37 |
lemma nat_of_num_neq_0: " nat_of_num x \<noteq> 0" |
|
38 |
by (induct x) simp_all |
|
39 |
||
40 |
lemma nat_of_num_inc: "nat_of_num (inc x) = Suc (nat_of_num x)" |
|
41 |
by (induct x) simp_all |
|
42 |
||
43 |
lemma num_of_nat_double: |
|
44 |
"0 < n \<Longrightarrow> num_of_nat (n + n) = Bit0 (num_of_nat n)" |
|
45 |
by (induct n) simp_all |
|
46 |
||
60758 | 47 |
text \<open> |
47108 | 48 |
Type @{typ num} is isomorphic to the strictly positive |
49 |
natural numbers. |
|
60758 | 50 |
\<close> |
47108 | 51 |
|
52 |
lemma nat_of_num_inverse: "num_of_nat (nat_of_num x) = x" |
|
53 |
by (induct x) (simp_all add: num_of_nat_double nat_of_num_pos) |
|
54 |
||
55 |
lemma num_of_nat_inverse: "0 < n \<Longrightarrow> nat_of_num (num_of_nat n) = n" |
|
56 |
by (induct n) (simp_all add: nat_of_num_inc) |
|
57 |
||
58 |
lemma num_eq_iff: "x = y \<longleftrightarrow> nat_of_num x = nat_of_num y" |
|
59 |
apply safe |
|
60 |
apply (drule arg_cong [where f=num_of_nat]) |
|
61 |
apply (simp add: nat_of_num_inverse) |
|
62 |
done |
|
63 |
||
64 |
lemma num_induct [case_names One inc]: |
|
65 |
fixes P :: "num \<Rightarrow> bool" |
|
66 |
assumes One: "P One" |
|
67 |
and inc: "\<And>x. P x \<Longrightarrow> P (inc x)" |
|
68 |
shows "P x" |
|
69 |
proof - |
|
70 |
obtain n where n: "Suc n = nat_of_num x" |
|
71 |
by (cases "nat_of_num x", simp_all add: nat_of_num_neq_0) |
|
72 |
have "P (num_of_nat (Suc n))" |
|
73 |
proof (induct n) |
|
74 |
case 0 show ?case using One by simp |
|
75 |
next |
|
76 |
case (Suc n) |
|
77 |
then have "P (inc (num_of_nat (Suc n)))" by (rule inc) |
|
78 |
then show "P (num_of_nat (Suc (Suc n)))" by simp |
|
79 |
qed |
|
80 |
with n show "P x" |
|
81 |
by (simp add: nat_of_num_inverse) |
|
82 |
qed |
|
83 |
||
60758 | 84 |
text \<open> |
47108 | 85 |
From now on, there are two possible models for @{typ num}: |
61799 | 86 |
as positive naturals (rule \<open>num_induct\<close>) |
87 |
and as digit representation (rules \<open>num.induct\<close>, \<open>num.cases\<close>). |
|
60758 | 88 |
\<close> |
47108 | 89 |
|
90 |
||
60758 | 91 |
subsection \<open>Numeral operations\<close> |
47108 | 92 |
|
93 |
instantiation num :: "{plus,times,linorder}" |
|
94 |
begin |
|
95 |
||
96 |
definition [code del]: |
|
97 |
"m + n = num_of_nat (nat_of_num m + nat_of_num n)" |
|
98 |
||
99 |
definition [code del]: |
|
100 |
"m * n = num_of_nat (nat_of_num m * nat_of_num n)" |
|
101 |
||
102 |
definition [code del]: |
|
103 |
"m \<le> n \<longleftrightarrow> nat_of_num m \<le> nat_of_num n" |
|
104 |
||
105 |
definition [code del]: |
|
106 |
"m < n \<longleftrightarrow> nat_of_num m < nat_of_num n" |
|
107 |
||
108 |
instance |
|
61169 | 109 |
by standard (auto simp add: less_num_def less_eq_num_def num_eq_iff) |
47108 | 110 |
|
111 |
end |
|
112 |
||
113 |
lemma nat_of_num_add: "nat_of_num (x + y) = nat_of_num x + nat_of_num y" |
|
114 |
unfolding plus_num_def |
|
115 |
by (intro num_of_nat_inverse add_pos_pos nat_of_num_pos) |
|
116 |
||
117 |
lemma nat_of_num_mult: "nat_of_num (x * y) = nat_of_num x * nat_of_num y" |
|
118 |
unfolding times_num_def |
|
119 |
by (intro num_of_nat_inverse mult_pos_pos nat_of_num_pos) |
|
120 |
||
121 |
lemma add_num_simps [simp, code]: |
|
122 |
"One + One = Bit0 One" |
|
123 |
"One + Bit0 n = Bit1 n" |
|
124 |
"One + Bit1 n = Bit0 (n + One)" |
|
125 |
"Bit0 m + One = Bit1 m" |
|
126 |
"Bit0 m + Bit0 n = Bit0 (m + n)" |
|
127 |
"Bit0 m + Bit1 n = Bit1 (m + n)" |
|
128 |
"Bit1 m + One = Bit0 (m + One)" |
|
129 |
"Bit1 m + Bit0 n = Bit1 (m + n)" |
|
130 |
"Bit1 m + Bit1 n = Bit0 (m + n + One)" |
|
131 |
by (simp_all add: num_eq_iff nat_of_num_add) |
|
132 |
||
133 |
lemma mult_num_simps [simp, code]: |
|
134 |
"m * One = m" |
|
135 |
"One * n = n" |
|
136 |
"Bit0 m * Bit0 n = Bit0 (Bit0 (m * n))" |
|
137 |
"Bit0 m * Bit1 n = Bit0 (m * Bit1 n)" |
|
138 |
"Bit1 m * Bit0 n = Bit0 (Bit1 m * n)" |
|
139 |
"Bit1 m * Bit1 n = Bit1 (m + n + Bit0 (m * n))" |
|
140 |
by (simp_all add: num_eq_iff nat_of_num_add |
|
49962
a8cc904a6820
Renamed {left,right}_distrib to distrib_{right,left}.
webertj
parents:
49690
diff
changeset
|
141 |
nat_of_num_mult distrib_right distrib_left) |
47108 | 142 |
|
143 |
lemma eq_num_simps: |
|
144 |
"One = One \<longleftrightarrow> True" |
|
145 |
"One = Bit0 n \<longleftrightarrow> False" |
|
146 |
"One = Bit1 n \<longleftrightarrow> False" |
|
147 |
"Bit0 m = One \<longleftrightarrow> False" |
|
148 |
"Bit1 m = One \<longleftrightarrow> False" |
|
149 |
"Bit0 m = Bit0 n \<longleftrightarrow> m = n" |
|
150 |
"Bit0 m = Bit1 n \<longleftrightarrow> False" |
|
151 |
"Bit1 m = Bit0 n \<longleftrightarrow> False" |
|
152 |
"Bit1 m = Bit1 n \<longleftrightarrow> m = n" |
|
153 |
by simp_all |
|
154 |
||
155 |
lemma le_num_simps [simp, code]: |
|
156 |
"One \<le> n \<longleftrightarrow> True" |
|
157 |
"Bit0 m \<le> One \<longleftrightarrow> False" |
|
158 |
"Bit1 m \<le> One \<longleftrightarrow> False" |
|
159 |
"Bit0 m \<le> Bit0 n \<longleftrightarrow> m \<le> n" |
|
160 |
"Bit0 m \<le> Bit1 n \<longleftrightarrow> m \<le> n" |
|
161 |
"Bit1 m \<le> Bit1 n \<longleftrightarrow> m \<le> n" |
|
162 |
"Bit1 m \<le> Bit0 n \<longleftrightarrow> m < n" |
|
163 |
using nat_of_num_pos [of n] nat_of_num_pos [of m] |
|
164 |
by (auto simp add: less_eq_num_def less_num_def) |
|
165 |
||
166 |
lemma less_num_simps [simp, code]: |
|
167 |
"m < One \<longleftrightarrow> False" |
|
168 |
"One < Bit0 n \<longleftrightarrow> True" |
|
169 |
"One < Bit1 n \<longleftrightarrow> True" |
|
170 |
"Bit0 m < Bit0 n \<longleftrightarrow> m < n" |
|
171 |
"Bit0 m < Bit1 n \<longleftrightarrow> m \<le> n" |
|
172 |
"Bit1 m < Bit1 n \<longleftrightarrow> m < n" |
|
173 |
"Bit1 m < Bit0 n \<longleftrightarrow> m < n" |
|
174 |
using nat_of_num_pos [of n] nat_of_num_pos [of m] |
|
175 |
by (auto simp add: less_eq_num_def less_num_def) |
|
176 |
||
61630 | 177 |
lemma le_num_One_iff: "x \<le> num.One \<longleftrightarrow> x = num.One" |
178 |
by (simp add: antisym_conv) |
|
179 |
||
61799 | 180 |
text \<open>Rules using \<open>One\<close> and \<open>inc\<close> as constructors\<close> |
47108 | 181 |
|
182 |
lemma add_One: "x + One = inc x" |
|
183 |
by (simp add: num_eq_iff nat_of_num_add nat_of_num_inc) |
|
184 |
||
185 |
lemma add_One_commute: "One + n = n + One" |
|
186 |
by (induct n) simp_all |
|
187 |
||
188 |
lemma add_inc: "x + inc y = inc (x + y)" |
|
189 |
by (simp add: num_eq_iff nat_of_num_add nat_of_num_inc) |
|
190 |
||
191 |
lemma mult_inc: "x * inc y = x * y + x" |
|
192 |
by (simp add: num_eq_iff nat_of_num_mult nat_of_num_add nat_of_num_inc) |
|
193 |
||
60758 | 194 |
text \<open>The @{const num_of_nat} conversion\<close> |
47108 | 195 |
|
196 |
lemma num_of_nat_One: |
|
47300 | 197 |
"n \<le> 1 \<Longrightarrow> num_of_nat n = One" |
47108 | 198 |
by (cases n) simp_all |
199 |
||
200 |
lemma num_of_nat_plus_distrib: |
|
201 |
"0 < m \<Longrightarrow> 0 < n \<Longrightarrow> num_of_nat (m + n) = num_of_nat m + num_of_nat n" |
|
202 |
by (induct n) (auto simp add: add_One add_One_commute add_inc) |
|
203 |
||
60758 | 204 |
text \<open>A double-and-decrement function\<close> |
47108 | 205 |
|
206 |
primrec BitM :: "num \<Rightarrow> num" where |
|
207 |
"BitM One = One" | |
|
208 |
"BitM (Bit0 n) = Bit1 (BitM n)" | |
|
209 |
"BitM (Bit1 n) = Bit1 (Bit0 n)" |
|
210 |
||
211 |
lemma BitM_plus_one: "BitM n + One = Bit0 n" |
|
212 |
by (induct n) simp_all |
|
213 |
||
214 |
lemma one_plus_BitM: "One + BitM n = Bit0 n" |
|
215 |
unfolding add_One_commute BitM_plus_one .. |
|
216 |
||
60758 | 217 |
text \<open>Squaring and exponentiation\<close> |
47108 | 218 |
|
219 |
primrec sqr :: "num \<Rightarrow> num" where |
|
220 |
"sqr One = One" | |
|
221 |
"sqr (Bit0 n) = Bit0 (Bit0 (sqr n))" | |
|
222 |
"sqr (Bit1 n) = Bit1 (Bit0 (sqr n + n))" |
|
223 |
||
224 |
primrec pow :: "num \<Rightarrow> num \<Rightarrow> num" where |
|
225 |
"pow x One = x" | |
|
226 |
"pow x (Bit0 y) = sqr (pow x y)" | |
|
47191 | 227 |
"pow x (Bit1 y) = sqr (pow x y) * x" |
47108 | 228 |
|
229 |
lemma nat_of_num_sqr: "nat_of_num (sqr x) = nat_of_num x * nat_of_num x" |
|
230 |
by (induct x, simp_all add: algebra_simps nat_of_num_add) |
|
231 |
||
232 |
lemma sqr_conv_mult: "sqr x = x * x" |
|
233 |
by (simp add: num_eq_iff nat_of_num_sqr nat_of_num_mult) |
|
234 |
||
235 |
||
60758 | 236 |
subsection \<open>Binary numerals\<close> |
47108 | 237 |
|
60758 | 238 |
text \<open> |
47211 | 239 |
We embed binary representations into a generic algebraic |
61799 | 240 |
structure using \<open>numeral\<close>. |
60758 | 241 |
\<close> |
47108 | 242 |
|
243 |
class numeral = one + semigroup_add |
|
244 |
begin |
|
245 |
||
246 |
primrec numeral :: "num \<Rightarrow> 'a" where |
|
247 |
numeral_One: "numeral One = 1" | |
|
248 |
numeral_Bit0: "numeral (Bit0 n) = numeral n + numeral n" | |
|
249 |
numeral_Bit1: "numeral (Bit1 n) = numeral n + numeral n + 1" |
|
250 |
||
50817 | 251 |
lemma numeral_code [code]: |
252 |
"numeral One = 1" |
|
253 |
"numeral (Bit0 n) = (let m = numeral n in m + m)" |
|
254 |
"numeral (Bit1 n) = (let m = numeral n in m + m + 1)" |
|
255 |
by (simp_all add: Let_def) |
|
256 |
||
47108 | 257 |
lemma one_plus_numeral_commute: "1 + numeral x = numeral x + 1" |
258 |
apply (induct x) |
|
259 |
apply simp |
|
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
55974
diff
changeset
|
260 |
apply (simp add: add.assoc [symmetric], simp add: add.assoc) |
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
55974
diff
changeset
|
261 |
apply (simp add: add.assoc [symmetric], simp add: add.assoc) |
47108 | 262 |
done |
263 |
||
264 |
lemma numeral_inc: "numeral (inc x) = numeral x + 1" |
|
265 |
proof (induct x) |
|
266 |
case (Bit1 x) |
|
267 |
have "numeral x + (1 + numeral x) + 1 = numeral x + (numeral x + 1) + 1" |
|
268 |
by (simp only: one_plus_numeral_commute) |
|
269 |
with Bit1 show ?case |
|
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
55974
diff
changeset
|
270 |
by (simp add: add.assoc) |
47108 | 271 |
qed simp_all |
272 |
||
273 |
declare numeral.simps [simp del] |
|
274 |
||
275 |
abbreviation "Numeral1 \<equiv> numeral One" |
|
276 |
||
277 |
declare numeral_One [code_post] |
|
278 |
||
279 |
end |
|
280 |
||
60758 | 281 |
text \<open>Numeral syntax.\<close> |
47108 | 282 |
|
283 |
syntax |
|
284 |
"_Numeral" :: "num_const \<Rightarrow> 'a" ("_") |
|
285 |
||
58410
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
286 |
ML_file "Tools/numeral.ML" |
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
287 |
|
60758 | 288 |
parse_translation \<open> |
52143 | 289 |
let |
290 |
fun numeral_tr [(c as Const (@{syntax_const "_constrain"}, _)) $ t $ u] = |
|
291 |
c $ numeral_tr [t] $ u |
|
292 |
| numeral_tr [Const (num, _)] = |
|
58421 | 293 |
(Numeral.mk_number_syntax o #value o Lexicon.read_num) num |
52143 | 294 |
| numeral_tr ts = raise TERM ("numeral_tr", ts); |
55974
c835a9379026
more official const syntax: avoid educated guessing by Syntax_Phases.decode_term;
wenzelm
parents:
55534
diff
changeset
|
295 |
in [(@{syntax_const "_Numeral"}, K numeral_tr)] end |
60758 | 296 |
\<close> |
47108 | 297 |
|
60758 | 298 |
typed_print_translation \<open> |
52143 | 299 |
let |
300 |
fun dest_num (Const (@{const_syntax Bit0}, _) $ n) = 2 * dest_num n |
|
301 |
| dest_num (Const (@{const_syntax Bit1}, _) $ n) = 2 * dest_num n + 1 |
|
302 |
| dest_num (Const (@{const_syntax One}, _)) = 1; |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
303 |
fun num_tr' ctxt T [n] = |
52143 | 304 |
let |
305 |
val k = dest_num n; |
|
52187 | 306 |
val t' = |
307 |
Syntax.const @{syntax_const "_Numeral"} $ |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
308 |
Syntax.free (string_of_int k); |
52143 | 309 |
in |
310 |
(case T of |
|
311 |
Type (@{type_name fun}, [_, T']) => |
|
52210
0226035df99d
more explicit Printer.type_emphasis, depending on show_type_emphasis;
wenzelm
parents:
52187
diff
changeset
|
312 |
if Printer.type_emphasis ctxt T' then |
0226035df99d
more explicit Printer.type_emphasis, depending on show_type_emphasis;
wenzelm
parents:
52187
diff
changeset
|
313 |
Syntax.const @{syntax_const "_constrain"} $ t' $ |
0226035df99d
more explicit Printer.type_emphasis, depending on show_type_emphasis;
wenzelm
parents:
52187
diff
changeset
|
314 |
Syntax_Phases.term_of_typ ctxt T' |
0226035df99d
more explicit Printer.type_emphasis, depending on show_type_emphasis;
wenzelm
parents:
52187
diff
changeset
|
315 |
else t' |
52187 | 316 |
| _ => if T = dummyT then t' else raise Match) |
52143 | 317 |
end; |
318 |
in |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
319 |
[(@{const_syntax numeral}, num_tr')] |
52143 | 320 |
end |
60758 | 321 |
\<close> |
47108 | 322 |
|
47228 | 323 |
|
60758 | 324 |
subsection \<open>Class-specific numeral rules\<close> |
47108 | 325 |
|
60758 | 326 |
text \<open> |
47108 | 327 |
@{const numeral} is a morphism. |
60758 | 328 |
\<close> |
47108 | 329 |
|
61799 | 330 |
subsubsection \<open>Structures with addition: class \<open>numeral\<close>\<close> |
47108 | 331 |
|
332 |
context numeral |
|
333 |
begin |
|
334 |
||
335 |
lemma numeral_add: "numeral (m + n) = numeral m + numeral n" |
|
336 |
by (induct n rule: num_induct) |
|
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
55974
diff
changeset
|
337 |
(simp_all only: numeral_One add_One add_inc numeral_inc add.assoc) |
47108 | 338 |
|
339 |
lemma numeral_plus_numeral: "numeral m + numeral n = numeral (m + n)" |
|
340 |
by (rule numeral_add [symmetric]) |
|
341 |
||
342 |
lemma numeral_plus_one: "numeral n + 1 = numeral (n + One)" |
|
343 |
using numeral_add [of n One] by (simp add: numeral_One) |
|
344 |
||
345 |
lemma one_plus_numeral: "1 + numeral n = numeral (One + n)" |
|
346 |
using numeral_add [of One n] by (simp add: numeral_One) |
|
347 |
||
348 |
lemma one_add_one: "1 + 1 = 2" |
|
349 |
using numeral_add [of One One] by (simp add: numeral_One) |
|
350 |
||
351 |
lemmas add_numeral_special = |
|
352 |
numeral_plus_one one_plus_numeral one_add_one |
|
353 |
||
354 |
end |
|
355 |
||
60758 | 356 |
subsubsection \<open> |
61799 | 357 |
Structures with negation: class \<open>neg_numeral\<close> |
60758 | 358 |
\<close> |
47108 | 359 |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
360 |
class neg_numeral = numeral + group_add |
47108 | 361 |
begin |
362 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
363 |
lemma uminus_numeral_One: |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
364 |
"- Numeral1 = - 1" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
365 |
by (simp add: numeral_One) |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
366 |
|
60758 | 367 |
text \<open>Numerals form an abelian subgroup.\<close> |
47108 | 368 |
|
369 |
inductive is_num :: "'a \<Rightarrow> bool" where |
|
370 |
"is_num 1" | |
|
371 |
"is_num x \<Longrightarrow> is_num (- x)" | |
|
372 |
"\<lbrakk>is_num x; is_num y\<rbrakk> \<Longrightarrow> is_num (x + y)" |
|
373 |
||
374 |
lemma is_num_numeral: "is_num (numeral k)" |
|
375 |
by (induct k, simp_all add: numeral.simps is_num.intros) |
|
376 |
||
377 |
lemma is_num_add_commute: |
|
378 |
"\<lbrakk>is_num x; is_num y\<rbrakk> \<Longrightarrow> x + y = y + x" |
|
379 |
apply (induct x rule: is_num.induct) |
|
380 |
apply (induct y rule: is_num.induct) |
|
381 |
apply simp |
|
382 |
apply (rule_tac a=x in add_left_imp_eq) |
|
383 |
apply (rule_tac a=x in add_right_imp_eq) |
|
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
55974
diff
changeset
|
384 |
apply (simp add: add.assoc) |
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
55974
diff
changeset
|
385 |
apply (simp add: add.assoc [symmetric], simp add: add.assoc) |
47108 | 386 |
apply (rule_tac a=x in add_left_imp_eq) |
387 |
apply (rule_tac a=x in add_right_imp_eq) |
|
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
55974
diff
changeset
|
388 |
apply (simp add: add.assoc) |
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
55974
diff
changeset
|
389 |
apply (simp add: add.assoc, simp add: add.assoc [symmetric]) |
47108 | 390 |
done |
391 |
||
392 |
lemma is_num_add_left_commute: |
|
393 |
"\<lbrakk>is_num x; is_num y\<rbrakk> \<Longrightarrow> x + (y + z) = y + (x + z)" |
|
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
55974
diff
changeset
|
394 |
by (simp only: add.assoc [symmetric] is_num_add_commute) |
47108 | 395 |
|
396 |
lemmas is_num_normalize = |
|
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
55974
diff
changeset
|
397 |
add.assoc is_num_add_commute is_num_add_left_commute |
47108 | 398 |
is_num.intros is_num_numeral |
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
53064
diff
changeset
|
399 |
minus_add |
47108 | 400 |
|
401 |
definition dbl :: "'a \<Rightarrow> 'a" where "dbl x = x + x" |
|
402 |
definition dbl_inc :: "'a \<Rightarrow> 'a" where "dbl_inc x = x + x + 1" |
|
403 |
definition dbl_dec :: "'a \<Rightarrow> 'a" where "dbl_dec x = x + x - 1" |
|
404 |
||
405 |
definition sub :: "num \<Rightarrow> num \<Rightarrow> 'a" where |
|
406 |
"sub k l = numeral k - numeral l" |
|
407 |
||
408 |
lemma numeral_BitM: "numeral (BitM n) = numeral (Bit0 n) - 1" |
|
409 |
by (simp only: BitM_plus_one [symmetric] numeral_add numeral_One eq_diff_eq) |
|
410 |
||
411 |
lemma dbl_simps [simp]: |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
412 |
"dbl (- numeral k) = - dbl (numeral k)" |
47108 | 413 |
"dbl 0 = 0" |
414 |
"dbl 1 = 2" |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
415 |
"dbl (- 1) = - 2" |
47108 | 416 |
"dbl (numeral k) = numeral (Bit0 k)" |
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
417 |
by (simp_all add: dbl_def numeral.simps minus_add) |
47108 | 418 |
|
419 |
lemma dbl_inc_simps [simp]: |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
420 |
"dbl_inc (- numeral k) = - dbl_dec (numeral k)" |
47108 | 421 |
"dbl_inc 0 = 1" |
422 |
"dbl_inc 1 = 3" |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
423 |
"dbl_inc (- 1) = - 1" |
47108 | 424 |
"dbl_inc (numeral k) = numeral (Bit1 k)" |
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
425 |
by (simp_all add: dbl_inc_def dbl_dec_def numeral.simps numeral_BitM is_num_normalize algebra_simps del: add_uminus_conv_diff) |
47108 | 426 |
|
427 |
lemma dbl_dec_simps [simp]: |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
428 |
"dbl_dec (- numeral k) = - dbl_inc (numeral k)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
429 |
"dbl_dec 0 = - 1" |
47108 | 430 |
"dbl_dec 1 = 1" |
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
431 |
"dbl_dec (- 1) = - 3" |
47108 | 432 |
"dbl_dec (numeral k) = numeral (BitM k)" |
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
433 |
by (simp_all add: dbl_dec_def dbl_inc_def numeral.simps numeral_BitM is_num_normalize) |
47108 | 434 |
|
435 |
lemma sub_num_simps [simp]: |
|
436 |
"sub One One = 0" |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
437 |
"sub One (Bit0 l) = - numeral (BitM l)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
438 |
"sub One (Bit1 l) = - numeral (Bit0 l)" |
47108 | 439 |
"sub (Bit0 k) One = numeral (BitM k)" |
440 |
"sub (Bit1 k) One = numeral (Bit0 k)" |
|
441 |
"sub (Bit0 k) (Bit0 l) = dbl (sub k l)" |
|
442 |
"sub (Bit0 k) (Bit1 l) = dbl_dec (sub k l)" |
|
443 |
"sub (Bit1 k) (Bit0 l) = dbl_inc (sub k l)" |
|
444 |
"sub (Bit1 k) (Bit1 l) = dbl (sub k l)" |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
445 |
by (simp_all add: dbl_def dbl_dec_def dbl_inc_def sub_def numeral.simps |
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
53064
diff
changeset
|
446 |
numeral_BitM is_num_normalize del: add_uminus_conv_diff add: diff_conv_add_uminus) |
47108 | 447 |
|
448 |
lemma add_neg_numeral_simps: |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
449 |
"numeral m + - numeral n = sub m n" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
450 |
"- numeral m + numeral n = sub n m" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
451 |
"- numeral m + - numeral n = - (numeral m + numeral n)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
452 |
by (simp_all add: sub_def numeral_add numeral.simps is_num_normalize |
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
53064
diff
changeset
|
453 |
del: add_uminus_conv_diff add: diff_conv_add_uminus) |
47108 | 454 |
|
455 |
lemma add_neg_numeral_special: |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
456 |
"1 + - numeral m = sub One m" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
457 |
"- numeral m + 1 = sub One m" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
458 |
"numeral m + - 1 = sub m One" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
459 |
"- 1 + numeral n = sub n One" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
460 |
"- 1 + - numeral n = - numeral (inc n)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
461 |
"- numeral m + - 1 = - numeral (inc m)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
462 |
"1 + - 1 = 0" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
463 |
"- 1 + 1 = 0" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
464 |
"- 1 + - 1 = - 2" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
465 |
by (simp_all add: sub_def numeral_add numeral.simps is_num_normalize right_minus numeral_inc |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
466 |
del: add_uminus_conv_diff add: diff_conv_add_uminus) |
47108 | 467 |
|
468 |
lemma diff_numeral_simps: |
|
469 |
"numeral m - numeral n = sub m n" |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
470 |
"numeral m - - numeral n = numeral (m + n)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
471 |
"- numeral m - numeral n = - numeral (m + n)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
472 |
"- numeral m - - numeral n = sub n m" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
473 |
by (simp_all add: sub_def numeral_add numeral.simps is_num_normalize |
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
53064
diff
changeset
|
474 |
del: add_uminus_conv_diff add: diff_conv_add_uminus) |
47108 | 475 |
|
476 |
lemma diff_numeral_special: |
|
477 |
"1 - numeral n = sub One n" |
|
478 |
"numeral m - 1 = sub m One" |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
479 |
"1 - - numeral n = numeral (One + n)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
480 |
"- numeral m - 1 = - numeral (m + One)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
481 |
"- 1 - numeral n = - numeral (inc n)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
482 |
"numeral m - - 1 = numeral (inc m)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
483 |
"- 1 - - numeral n = sub n One" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
484 |
"- numeral m - - 1 = sub One m" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
485 |
"1 - 1 = 0" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
486 |
"- 1 - 1 = - 2" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
487 |
"1 - - 1 = 2" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
488 |
"- 1 - - 1 = 0" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
489 |
by (simp_all add: sub_def numeral_add numeral.simps is_num_normalize numeral_inc |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
490 |
del: add_uminus_conv_diff add: diff_conv_add_uminus) |
47108 | 491 |
|
492 |
end |
|
493 |
||
60758 | 494 |
subsubsection \<open> |
61799 | 495 |
Structures with multiplication: class \<open>semiring_numeral\<close> |
60758 | 496 |
\<close> |
47108 | 497 |
|
498 |
class semiring_numeral = semiring + monoid_mult |
|
499 |
begin |
|
500 |
||
501 |
subclass numeral .. |
|
502 |
||
503 |
lemma numeral_mult: "numeral (m * n) = numeral m * numeral n" |
|
504 |
apply (induct n rule: num_induct) |
|
505 |
apply (simp add: numeral_One) |
|
49962
a8cc904a6820
Renamed {left,right}_distrib to distrib_{right,left}.
webertj
parents:
49690
diff
changeset
|
506 |
apply (simp add: mult_inc numeral_inc numeral_add distrib_left) |
47108 | 507 |
done |
508 |
||
509 |
lemma numeral_times_numeral: "numeral m * numeral n = numeral (m * n)" |
|
510 |
by (rule numeral_mult [symmetric]) |
|
511 |
||
53064 | 512 |
lemma mult_2: "2 * z = z + z" |
513 |
unfolding one_add_one [symmetric] distrib_right by simp |
|
514 |
||
515 |
lemma mult_2_right: "z * 2 = z + z" |
|
516 |
unfolding one_add_one [symmetric] distrib_left by simp |
|
517 |
||
47108 | 518 |
end |
519 |
||
60758 | 520 |
subsubsection \<open> |
61799 | 521 |
Structures with a zero: class \<open>semiring_1\<close> |
60758 | 522 |
\<close> |
47108 | 523 |
|
524 |
context semiring_1 |
|
525 |
begin |
|
526 |
||
527 |
subclass semiring_numeral .. |
|
528 |
||
529 |
lemma of_nat_numeral [simp]: "of_nat (numeral n) = numeral n" |
|
530 |
by (induct n, |
|
531 |
simp_all only: numeral.simps numeral_class.numeral.simps of_nat_add of_nat_1) |
|
532 |
||
533 |
end |
|
534 |
||
51143
0a2371e7ced3
two target language numeral types: integer and natural, as replacement for code_numeral;
haftmann
parents:
50817
diff
changeset
|
535 |
lemma nat_of_num_numeral [code_abbrev]: |
0a2371e7ced3
two target language numeral types: integer and natural, as replacement for code_numeral;
haftmann
parents:
50817
diff
changeset
|
536 |
"nat_of_num = numeral" |
47108 | 537 |
proof |
538 |
fix n |
|
539 |
have "numeral n = nat_of_num n" |
|
540 |
by (induct n) (simp_all add: numeral.simps) |
|
541 |
then show "nat_of_num n = numeral n" by simp |
|
542 |
qed |
|
543 |
||
51143
0a2371e7ced3
two target language numeral types: integer and natural, as replacement for code_numeral;
haftmann
parents:
50817
diff
changeset
|
544 |
lemma nat_of_num_code [code]: |
0a2371e7ced3
two target language numeral types: integer and natural, as replacement for code_numeral;
haftmann
parents:
50817
diff
changeset
|
545 |
"nat_of_num One = 1" |
0a2371e7ced3
two target language numeral types: integer and natural, as replacement for code_numeral;
haftmann
parents:
50817
diff
changeset
|
546 |
"nat_of_num (Bit0 n) = (let m = nat_of_num n in m + m)" |
0a2371e7ced3
two target language numeral types: integer and natural, as replacement for code_numeral;
haftmann
parents:
50817
diff
changeset
|
547 |
"nat_of_num (Bit1 n) = (let m = nat_of_num n in Suc (m + m))" |
0a2371e7ced3
two target language numeral types: integer and natural, as replacement for code_numeral;
haftmann
parents:
50817
diff
changeset
|
548 |
by (simp_all add: Let_def) |
0a2371e7ced3
two target language numeral types: integer and natural, as replacement for code_numeral;
haftmann
parents:
50817
diff
changeset
|
549 |
|
60758 | 550 |
subsubsection \<open> |
61799 | 551 |
Equality: class \<open>semiring_char_0\<close> |
60758 | 552 |
\<close> |
47108 | 553 |
|
554 |
context semiring_char_0 |
|
555 |
begin |
|
556 |
||
557 |
lemma numeral_eq_iff: "numeral m = numeral n \<longleftrightarrow> m = n" |
|
558 |
unfolding of_nat_numeral [symmetric] nat_of_num_numeral [symmetric] |
|
559 |
of_nat_eq_iff num_eq_iff .. |
|
560 |
||
561 |
lemma numeral_eq_one_iff: "numeral n = 1 \<longleftrightarrow> n = One" |
|
562 |
by (rule numeral_eq_iff [of n One, unfolded numeral_One]) |
|
563 |
||
564 |
lemma one_eq_numeral_iff: "1 = numeral n \<longleftrightarrow> One = n" |
|
565 |
by (rule numeral_eq_iff [of One n, unfolded numeral_One]) |
|
566 |
||
567 |
lemma numeral_neq_zero: "numeral n \<noteq> 0" |
|
568 |
unfolding of_nat_numeral [symmetric] nat_of_num_numeral [symmetric] |
|
569 |
by (simp add: nat_of_num_pos) |
|
570 |
||
571 |
lemma zero_neq_numeral: "0 \<noteq> numeral n" |
|
572 |
unfolding eq_commute [of 0] by (rule numeral_neq_zero) |
|
573 |
||
574 |
lemmas eq_numeral_simps [simp] = |
|
575 |
numeral_eq_iff |
|
576 |
numeral_eq_one_iff |
|
577 |
one_eq_numeral_iff |
|
578 |
numeral_neq_zero |
|
579 |
zero_neq_numeral |
|
580 |
||
581 |
end |
|
582 |
||
60758 | 583 |
subsubsection \<open> |
61799 | 584 |
Comparisons: class \<open>linordered_semidom\<close> |
60758 | 585 |
\<close> |
47108 | 586 |
|
60758 | 587 |
text \<open>Could be perhaps more general than here.\<close> |
47108 | 588 |
|
589 |
context linordered_semidom |
|
590 |
begin |
|
591 |
||
592 |
lemma numeral_le_iff: "numeral m \<le> numeral n \<longleftrightarrow> m \<le> n" |
|
593 |
proof - |
|
594 |
have "of_nat (numeral m) \<le> of_nat (numeral n) \<longleftrightarrow> m \<le> n" |
|
595 |
unfolding less_eq_num_def nat_of_num_numeral of_nat_le_iff .. |
|
596 |
then show ?thesis by simp |
|
597 |
qed |
|
598 |
||
599 |
lemma one_le_numeral: "1 \<le> numeral n" |
|
600 |
using numeral_le_iff [of One n] by (simp add: numeral_One) |
|
601 |
||
602 |
lemma numeral_le_one_iff: "numeral n \<le> 1 \<longleftrightarrow> n \<le> One" |
|
603 |
using numeral_le_iff [of n One] by (simp add: numeral_One) |
|
604 |
||
605 |
lemma numeral_less_iff: "numeral m < numeral n \<longleftrightarrow> m < n" |
|
606 |
proof - |
|
607 |
have "of_nat (numeral m) < of_nat (numeral n) \<longleftrightarrow> m < n" |
|
608 |
unfolding less_num_def nat_of_num_numeral of_nat_less_iff .. |
|
609 |
then show ?thesis by simp |
|
610 |
qed |
|
611 |
||
612 |
lemma not_numeral_less_one: "\<not> numeral n < 1" |
|
613 |
using numeral_less_iff [of n One] by (simp add: numeral_One) |
|
614 |
||
615 |
lemma one_less_numeral_iff: "1 < numeral n \<longleftrightarrow> One < n" |
|
616 |
using numeral_less_iff [of One n] by (simp add: numeral_One) |
|
617 |
||
618 |
lemma zero_le_numeral: "0 \<le> numeral n" |
|
619 |
by (induct n) (simp_all add: numeral.simps) |
|
620 |
||
621 |
lemma zero_less_numeral: "0 < numeral n" |
|
622 |
by (induct n) (simp_all add: numeral.simps add_pos_pos) |
|
623 |
||
624 |
lemma not_numeral_le_zero: "\<not> numeral n \<le> 0" |
|
625 |
by (simp add: not_le zero_less_numeral) |
|
626 |
||
627 |
lemma not_numeral_less_zero: "\<not> numeral n < 0" |
|
628 |
by (simp add: not_less zero_le_numeral) |
|
629 |
||
630 |
lemmas le_numeral_extra = |
|
631 |
zero_le_one not_one_le_zero |
|
632 |
order_refl [of 0] order_refl [of 1] |
|
633 |
||
634 |
lemmas less_numeral_extra = |
|
635 |
zero_less_one not_one_less_zero |
|
636 |
less_irrefl [of 0] less_irrefl [of 1] |
|
637 |
||
638 |
lemmas le_numeral_simps [simp] = |
|
639 |
numeral_le_iff |
|
640 |
one_le_numeral |
|
641 |
numeral_le_one_iff |
|
642 |
zero_le_numeral |
|
643 |
not_numeral_le_zero |
|
644 |
||
645 |
lemmas less_numeral_simps [simp] = |
|
646 |
numeral_less_iff |
|
647 |
one_less_numeral_iff |
|
648 |
not_numeral_less_one |
|
649 |
zero_less_numeral |
|
650 |
not_numeral_less_zero |
|
651 |
||
61630 | 652 |
lemma min_0_1 [simp]: |
653 |
fixes min' :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" defines "min' \<equiv> min" shows |
|
654 |
"min' 0 1 = 0" |
|
655 |
"min' 1 0 = 0" |
|
656 |
"min' 0 (numeral x) = 0" |
|
657 |
"min' (numeral x) 0 = 0" |
|
658 |
"min' 1 (numeral x) = 1" |
|
659 |
"min' (numeral x) 1 = 1" |
|
660 |
by(simp_all add: min'_def min_def le_num_One_iff) |
|
661 |
||
662 |
lemma max_0_1 [simp]: |
|
663 |
fixes max' :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" defines "max' \<equiv> max" shows |
|
664 |
"max' 0 1 = 1" |
|
665 |
"max' 1 0 = 1" |
|
666 |
"max' 0 (numeral x) = numeral x" |
|
667 |
"max' (numeral x) 0 = numeral x" |
|
668 |
"max' 1 (numeral x) = numeral x" |
|
669 |
"max' (numeral x) 1 = numeral x" |
|
670 |
by(simp_all add: max'_def max_def le_num_One_iff) |
|
671 |
||
47108 | 672 |
end |
673 |
||
60758 | 674 |
subsubsection \<open> |
61799 | 675 |
Multiplication and negation: class \<open>ring_1\<close> |
60758 | 676 |
\<close> |
47108 | 677 |
|
678 |
context ring_1 |
|
679 |
begin |
|
680 |
||
681 |
subclass neg_numeral .. |
|
682 |
||
683 |
lemma mult_neg_numeral_simps: |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
684 |
"- numeral m * - numeral n = numeral (m * n)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
685 |
"- numeral m * numeral n = - numeral (m * n)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
686 |
"numeral m * - numeral n = - numeral (m * n)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
687 |
unfolding mult_minus_left mult_minus_right |
47108 | 688 |
by (simp_all only: minus_minus numeral_mult) |
689 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
690 |
lemma mult_minus1 [simp]: "- 1 * z = - z" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
691 |
unfolding numeral.simps mult_minus_left by simp |
47108 | 692 |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
693 |
lemma mult_minus1_right [simp]: "z * - 1 = - z" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
694 |
unfolding numeral.simps mult_minus_right by simp |
47108 | 695 |
|
696 |
end |
|
697 |
||
60758 | 698 |
subsubsection \<open> |
61799 | 699 |
Equality using \<open>iszero\<close> for rings with non-zero characteristic |
60758 | 700 |
\<close> |
47108 | 701 |
|
702 |
context ring_1 |
|
703 |
begin |
|
704 |
||
705 |
definition iszero :: "'a \<Rightarrow> bool" |
|
706 |
where "iszero z \<longleftrightarrow> z = 0" |
|
707 |
||
708 |
lemma iszero_0 [simp]: "iszero 0" |
|
709 |
by (simp add: iszero_def) |
|
710 |
||
711 |
lemma not_iszero_1 [simp]: "\<not> iszero 1" |
|
712 |
by (simp add: iszero_def) |
|
713 |
||
714 |
lemma not_iszero_Numeral1: "\<not> iszero Numeral1" |
|
715 |
by (simp add: numeral_One) |
|
716 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
717 |
lemma not_iszero_neg_1 [simp]: "\<not> iszero (- 1)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
718 |
by (simp add: iszero_def) |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
719 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
720 |
lemma not_iszero_neg_Numeral1: "\<not> iszero (- Numeral1)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
721 |
by (simp add: numeral_One) |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
722 |
|
47108 | 723 |
lemma iszero_neg_numeral [simp]: |
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
724 |
"iszero (- numeral w) \<longleftrightarrow> iszero (numeral w)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
725 |
unfolding iszero_def |
47108 | 726 |
by (rule neg_equal_0_iff_equal) |
727 |
||
728 |
lemma eq_iff_iszero_diff: "x = y \<longleftrightarrow> iszero (x - y)" |
|
729 |
unfolding iszero_def by (rule eq_iff_diff_eq_0) |
|
730 |
||
61799 | 731 |
text \<open>The \<open>eq_numeral_iff_iszero\<close> lemmas are not declared |
732 |
\<open>[simp]\<close> by default, because for rings of characteristic zero, |
|
733 |
better simp rules are possible. For a type like integers mod \<open>n\<close>, type-instantiated versions of these rules should be added to the |
|
47108 | 734 |
simplifier, along with a type-specific rule for deciding propositions |
61799 | 735 |
of the form \<open>iszero (numeral w)\<close>. |
47108 | 736 |
|
737 |
bh: Maybe it would not be so bad to just declare these as simp |
|
738 |
rules anyway? I should test whether these rules take precedence over |
|
61799 | 739 |
the \<open>ring_char_0\<close> rules in the simplifier. |
60758 | 740 |
\<close> |
47108 | 741 |
|
742 |
lemma eq_numeral_iff_iszero: |
|
743 |
"numeral x = numeral y \<longleftrightarrow> iszero (sub x y)" |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
744 |
"numeral x = - numeral y \<longleftrightarrow> iszero (numeral (x + y))" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
745 |
"- numeral x = numeral y \<longleftrightarrow> iszero (numeral (x + y))" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
746 |
"- numeral x = - numeral y \<longleftrightarrow> iszero (sub y x)" |
47108 | 747 |
"numeral x = 1 \<longleftrightarrow> iszero (sub x One)" |
748 |
"1 = numeral y \<longleftrightarrow> iszero (sub One y)" |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
749 |
"- numeral x = 1 \<longleftrightarrow> iszero (numeral (x + One))" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
750 |
"1 = - numeral y \<longleftrightarrow> iszero (numeral (One + y))" |
47108 | 751 |
"numeral x = 0 \<longleftrightarrow> iszero (numeral x)" |
752 |
"0 = numeral y \<longleftrightarrow> iszero (numeral y)" |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
753 |
"- numeral x = 0 \<longleftrightarrow> iszero (numeral x)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
754 |
"0 = - numeral y \<longleftrightarrow> iszero (numeral y)" |
47108 | 755 |
unfolding eq_iff_iszero_diff diff_numeral_simps diff_numeral_special |
756 |
by simp_all |
|
757 |
||
758 |
end |
|
759 |
||
60758 | 760 |
subsubsection \<open> |
61799 | 761 |
Equality and negation: class \<open>ring_char_0\<close> |
60758 | 762 |
\<close> |
47108 | 763 |
|
764 |
class ring_char_0 = ring_1 + semiring_char_0 |
|
765 |
begin |
|
766 |
||
767 |
lemma not_iszero_numeral [simp]: "\<not> iszero (numeral w)" |
|
768 |
by (simp add: iszero_def) |
|
769 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
770 |
lemma neg_numeral_eq_iff: "- numeral m = - numeral n \<longleftrightarrow> m = n" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
771 |
by simp |
47108 | 772 |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
773 |
lemma numeral_neq_neg_numeral: "numeral m \<noteq> - numeral n" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
774 |
unfolding eq_neg_iff_add_eq_0 |
47108 | 775 |
by (simp add: numeral_plus_numeral) |
776 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
777 |
lemma neg_numeral_neq_numeral: "- numeral m \<noteq> numeral n" |
47108 | 778 |
by (rule numeral_neq_neg_numeral [symmetric]) |
779 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
780 |
lemma zero_neq_neg_numeral: "0 \<noteq> - numeral n" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
781 |
unfolding neg_0_equal_iff_equal by simp |
47108 | 782 |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
783 |
lemma neg_numeral_neq_zero: "- numeral n \<noteq> 0" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
784 |
unfolding neg_equal_0_iff_equal by simp |
47108 | 785 |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
786 |
lemma one_neq_neg_numeral: "1 \<noteq> - numeral n" |
47108 | 787 |
using numeral_neq_neg_numeral [of One n] by (simp add: numeral_One) |
788 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
789 |
lemma neg_numeral_neq_one: "- numeral n \<noteq> 1" |
47108 | 790 |
using neg_numeral_neq_numeral [of n One] by (simp add: numeral_One) |
791 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
792 |
lemma neg_one_neq_numeral: |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
793 |
"- 1 \<noteq> numeral n" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
794 |
using neg_numeral_neq_numeral [of One n] by (simp add: numeral_One) |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
795 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
796 |
lemma numeral_neq_neg_one: |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
797 |
"numeral n \<noteq> - 1" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
798 |
using numeral_neq_neg_numeral [of n One] by (simp add: numeral_One) |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
799 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
800 |
lemma neg_one_eq_numeral_iff: |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
801 |
"- 1 = - numeral n \<longleftrightarrow> n = One" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
802 |
using neg_numeral_eq_iff [of One n] by (auto simp add: numeral_One) |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
803 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
804 |
lemma numeral_eq_neg_one_iff: |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
805 |
"- numeral n = - 1 \<longleftrightarrow> n = One" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
806 |
using neg_numeral_eq_iff [of n One] by (auto simp add: numeral_One) |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
807 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
808 |
lemma neg_one_neq_zero: |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
809 |
"- 1 \<noteq> 0" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
810 |
by simp |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
811 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
812 |
lemma zero_neq_neg_one: |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
813 |
"0 \<noteq> - 1" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
814 |
by simp |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
815 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
816 |
lemma neg_one_neq_one: |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
817 |
"- 1 \<noteq> 1" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
818 |
using neg_numeral_neq_numeral [of One One] by (simp only: numeral_One not_False_eq_True) |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
819 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
820 |
lemma one_neq_neg_one: |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
821 |
"1 \<noteq> - 1" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
822 |
using numeral_neq_neg_numeral [of One One] by (simp only: numeral_One not_False_eq_True) |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
823 |
|
47108 | 824 |
lemmas eq_neg_numeral_simps [simp] = |
825 |
neg_numeral_eq_iff |
|
826 |
numeral_neq_neg_numeral neg_numeral_neq_numeral |
|
827 |
one_neq_neg_numeral neg_numeral_neq_one |
|
828 |
zero_neq_neg_numeral neg_numeral_neq_zero |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
829 |
neg_one_neq_numeral numeral_neq_neg_one |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
830 |
neg_one_eq_numeral_iff numeral_eq_neg_one_iff |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
831 |
neg_one_neq_zero zero_neq_neg_one |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
832 |
neg_one_neq_one one_neq_neg_one |
47108 | 833 |
|
834 |
end |
|
835 |
||
60758 | 836 |
subsubsection \<open> |
61799 | 837 |
Structures with negation and order: class \<open>linordered_idom\<close> |
60758 | 838 |
\<close> |
47108 | 839 |
|
840 |
context linordered_idom |
|
841 |
begin |
|
842 |
||
843 |
subclass ring_char_0 .. |
|
844 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
845 |
lemma neg_numeral_le_iff: "- numeral m \<le> - numeral n \<longleftrightarrow> n \<le> m" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
846 |
by (simp only: neg_le_iff_le numeral_le_iff) |
47108 | 847 |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
848 |
lemma neg_numeral_less_iff: "- numeral m < - numeral n \<longleftrightarrow> n < m" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
849 |
by (simp only: neg_less_iff_less numeral_less_iff) |
47108 | 850 |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
851 |
lemma neg_numeral_less_zero: "- numeral n < 0" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
852 |
by (simp only: neg_less_0_iff_less zero_less_numeral) |
47108 | 853 |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
854 |
lemma neg_numeral_le_zero: "- numeral n \<le> 0" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
855 |
by (simp only: neg_le_0_iff_le zero_le_numeral) |
47108 | 856 |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
857 |
lemma not_zero_less_neg_numeral: "\<not> 0 < - numeral n" |
47108 | 858 |
by (simp only: not_less neg_numeral_le_zero) |
859 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
860 |
lemma not_zero_le_neg_numeral: "\<not> 0 \<le> - numeral n" |
47108 | 861 |
by (simp only: not_le neg_numeral_less_zero) |
862 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
863 |
lemma neg_numeral_less_numeral: "- numeral m < numeral n" |
47108 | 864 |
using neg_numeral_less_zero zero_less_numeral by (rule less_trans) |
865 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
866 |
lemma neg_numeral_le_numeral: "- numeral m \<le> numeral n" |
47108 | 867 |
by (simp only: less_imp_le neg_numeral_less_numeral) |
868 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
869 |
lemma not_numeral_less_neg_numeral: "\<not> numeral m < - numeral n" |
47108 | 870 |
by (simp only: not_less neg_numeral_le_numeral) |
871 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
872 |
lemma not_numeral_le_neg_numeral: "\<not> numeral m \<le> - numeral n" |
47108 | 873 |
by (simp only: not_le neg_numeral_less_numeral) |
874 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
875 |
lemma neg_numeral_less_one: "- numeral m < 1" |
47108 | 876 |
by (rule neg_numeral_less_numeral [of m One, unfolded numeral_One]) |
877 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
878 |
lemma neg_numeral_le_one: "- numeral m \<le> 1" |
47108 | 879 |
by (rule neg_numeral_le_numeral [of m One, unfolded numeral_One]) |
880 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
881 |
lemma not_one_less_neg_numeral: "\<not> 1 < - numeral m" |
47108 | 882 |
by (simp only: not_less neg_numeral_le_one) |
883 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
884 |
lemma not_one_le_neg_numeral: "\<not> 1 \<le> - numeral m" |
47108 | 885 |
by (simp only: not_le neg_numeral_less_one) |
886 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
887 |
lemma not_numeral_less_neg_one: "\<not> numeral m < - 1" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
888 |
using not_numeral_less_neg_numeral [of m One] by (simp add: numeral_One) |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
889 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
890 |
lemma not_numeral_le_neg_one: "\<not> numeral m \<le> - 1" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
891 |
using not_numeral_le_neg_numeral [of m One] by (simp add: numeral_One) |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
892 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
893 |
lemma neg_one_less_numeral: "- 1 < numeral m" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
894 |
using neg_numeral_less_numeral [of One m] by (simp add: numeral_One) |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
895 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
896 |
lemma neg_one_le_numeral: "- 1 \<le> numeral m" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
897 |
using neg_numeral_le_numeral [of One m] by (simp add: numeral_One) |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
898 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
899 |
lemma neg_numeral_less_neg_one_iff: "- numeral m < - 1 \<longleftrightarrow> m \<noteq> One" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
900 |
by (cases m) simp_all |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
901 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
902 |
lemma neg_numeral_le_neg_one: "- numeral m \<le> - 1" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
903 |
by simp |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
904 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
905 |
lemma not_neg_one_less_neg_numeral: "\<not> - 1 < - numeral m" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
906 |
by simp |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
907 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
908 |
lemma not_neg_one_le_neg_numeral_iff: "\<not> - 1 \<le> - numeral m \<longleftrightarrow> m \<noteq> One" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
909 |
by (cases m) simp_all |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
910 |
|
47108 | 911 |
lemma sub_non_negative: |
912 |
"sub n m \<ge> 0 \<longleftrightarrow> n \<ge> m" |
|
913 |
by (simp only: sub_def le_diff_eq) simp |
|
914 |
||
915 |
lemma sub_positive: |
|
916 |
"sub n m > 0 \<longleftrightarrow> n > m" |
|
917 |
by (simp only: sub_def less_diff_eq) simp |
|
918 |
||
919 |
lemma sub_non_positive: |
|
920 |
"sub n m \<le> 0 \<longleftrightarrow> n \<le> m" |
|
921 |
by (simp only: sub_def diff_le_eq) simp |
|
922 |
||
923 |
lemma sub_negative: |
|
924 |
"sub n m < 0 \<longleftrightarrow> n < m" |
|
925 |
by (simp only: sub_def diff_less_eq) simp |
|
926 |
||
927 |
lemmas le_neg_numeral_simps [simp] = |
|
928 |
neg_numeral_le_iff |
|
929 |
neg_numeral_le_numeral not_numeral_le_neg_numeral |
|
930 |
neg_numeral_le_zero not_zero_le_neg_numeral |
|
931 |
neg_numeral_le_one not_one_le_neg_numeral |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
932 |
neg_one_le_numeral not_numeral_le_neg_one |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
933 |
neg_numeral_le_neg_one not_neg_one_le_neg_numeral_iff |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
934 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
935 |
lemma le_minus_one_simps [simp]: |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
936 |
"- 1 \<le> 0" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
937 |
"- 1 \<le> 1" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
938 |
"\<not> 0 \<le> - 1" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
939 |
"\<not> 1 \<le> - 1" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
940 |
by simp_all |
47108 | 941 |
|
942 |
lemmas less_neg_numeral_simps [simp] = |
|
943 |
neg_numeral_less_iff |
|
944 |
neg_numeral_less_numeral not_numeral_less_neg_numeral |
|
945 |
neg_numeral_less_zero not_zero_less_neg_numeral |
|
946 |
neg_numeral_less_one not_one_less_neg_numeral |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
947 |
neg_one_less_numeral not_numeral_less_neg_one |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
948 |
neg_numeral_less_neg_one_iff not_neg_one_less_neg_numeral |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
949 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
950 |
lemma less_minus_one_simps [simp]: |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
951 |
"- 1 < 0" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
952 |
"- 1 < 1" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
953 |
"\<not> 0 < - 1" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
954 |
"\<not> 1 < - 1" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
955 |
by (simp_all add: less_le) |
47108 | 956 |
|
61944 | 957 |
lemma abs_numeral [simp]: "\<bar>numeral n\<bar> = numeral n" |
47108 | 958 |
by simp |
959 |
||
61944 | 960 |
lemma abs_neg_numeral [simp]: "\<bar>- numeral n\<bar> = numeral n" |
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
961 |
by (simp only: abs_minus_cancel abs_numeral) |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
962 |
|
61944 | 963 |
lemma abs_neg_one [simp]: "\<bar>- 1\<bar> = 1" |
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
964 |
by simp |
47108 | 965 |
|
966 |
end |
|
967 |
||
60758 | 968 |
subsubsection \<open> |
47108 | 969 |
Natural numbers |
60758 | 970 |
\<close> |
47108 | 971 |
|
47299 | 972 |
lemma Suc_1 [simp]: "Suc 1 = 2" |
973 |
unfolding Suc_eq_plus1 by (rule one_add_one) |
|
974 |
||
47108 | 975 |
lemma Suc_numeral [simp]: "Suc (numeral n) = numeral (n + One)" |
47299 | 976 |
unfolding Suc_eq_plus1 by (rule numeral_plus_one) |
47108 | 977 |
|
47209
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
978 |
definition pred_numeral :: "num \<Rightarrow> nat" |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
979 |
where [code del]: "pred_numeral k = numeral k - 1" |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
980 |
|
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
981 |
lemma numeral_eq_Suc: "numeral k = Suc (pred_numeral k)" |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
982 |
unfolding pred_numeral_def by simp |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
983 |
|
47220
52426c62b5d0
replace lemmas eval_nat_numeral with a simpler reformulation
huffman
parents:
47218
diff
changeset
|
984 |
lemma eval_nat_numeral: |
47108 | 985 |
"numeral One = Suc 0" |
986 |
"numeral (Bit0 n) = Suc (numeral (BitM n))" |
|
987 |
"numeral (Bit1 n) = Suc (numeral (Bit0 n))" |
|
988 |
by (simp_all add: numeral.simps BitM_plus_one) |
|
989 |
||
47209
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
990 |
lemma pred_numeral_simps [simp]: |
47300 | 991 |
"pred_numeral One = 0" |
992 |
"pred_numeral (Bit0 k) = numeral (BitM k)" |
|
993 |
"pred_numeral (Bit1 k) = numeral (Bit0 k)" |
|
47220
52426c62b5d0
replace lemmas eval_nat_numeral with a simpler reformulation
huffman
parents:
47218
diff
changeset
|
994 |
unfolding pred_numeral_def eval_nat_numeral |
47209
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
995 |
by (simp_all only: diff_Suc_Suc diff_0) |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
996 |
|
47192
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
997 |
lemma numeral_2_eq_2: "2 = Suc (Suc 0)" |
47220
52426c62b5d0
replace lemmas eval_nat_numeral with a simpler reformulation
huffman
parents:
47218
diff
changeset
|
998 |
by (simp add: eval_nat_numeral) |
47192
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
999 |
|
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
1000 |
lemma numeral_3_eq_3: "3 = Suc (Suc (Suc 0))" |
47220
52426c62b5d0
replace lemmas eval_nat_numeral with a simpler reformulation
huffman
parents:
47218
diff
changeset
|
1001 |
by (simp add: eval_nat_numeral) |
47192
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
1002 |
|
47207
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents:
47192
diff
changeset
|
1003 |
lemma numeral_1_eq_Suc_0: "Numeral1 = Suc 0" |
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents:
47192
diff
changeset
|
1004 |
by (simp only: numeral_One One_nat_def) |
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents:
47192
diff
changeset
|
1005 |
|
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents:
47192
diff
changeset
|
1006 |
lemma Suc_nat_number_of_add: |
47300 | 1007 |
"Suc (numeral v + n) = numeral (v + One) + n" |
47207
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents:
47192
diff
changeset
|
1008 |
by simp |
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents:
47192
diff
changeset
|
1009 |
|
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents:
47192
diff
changeset
|
1010 |
(*Maps #n to n for n = 1, 2*) |
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents:
47192
diff
changeset
|
1011 |
lemmas numerals = numeral_One [where 'a=nat] numeral_2_eq_2 |
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents:
47192
diff
changeset
|
1012 |
|
60758 | 1013 |
text \<open>Comparisons involving @{term Suc}.\<close> |
47209
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1014 |
|
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1015 |
lemma eq_numeral_Suc [simp]: "numeral k = Suc n \<longleftrightarrow> pred_numeral k = n" |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1016 |
by (simp add: numeral_eq_Suc) |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1017 |
|
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1018 |
lemma Suc_eq_numeral [simp]: "Suc n = numeral k \<longleftrightarrow> n = pred_numeral k" |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1019 |
by (simp add: numeral_eq_Suc) |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1020 |
|
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1021 |
lemma less_numeral_Suc [simp]: "numeral k < Suc n \<longleftrightarrow> pred_numeral k < n" |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1022 |
by (simp add: numeral_eq_Suc) |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1023 |
|
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1024 |
lemma less_Suc_numeral [simp]: "Suc n < numeral k \<longleftrightarrow> n < pred_numeral k" |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1025 |
by (simp add: numeral_eq_Suc) |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1026 |
|
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1027 |
lemma le_numeral_Suc [simp]: "numeral k \<le> Suc n \<longleftrightarrow> pred_numeral k \<le> n" |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1028 |
by (simp add: numeral_eq_Suc) |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1029 |
|
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1030 |
lemma le_Suc_numeral [simp]: "Suc n \<le> numeral k \<longleftrightarrow> n \<le> pred_numeral k" |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1031 |
by (simp add: numeral_eq_Suc) |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1032 |
|
47218
2b652cbadde1
new lemmas for simplifying subtraction on nat numerals
huffman
parents:
47216
diff
changeset
|
1033 |
lemma diff_Suc_numeral [simp]: "Suc n - numeral k = n - pred_numeral k" |
2b652cbadde1
new lemmas for simplifying subtraction on nat numerals
huffman
parents:
47216
diff
changeset
|
1034 |
by (simp add: numeral_eq_Suc) |
2b652cbadde1
new lemmas for simplifying subtraction on nat numerals
huffman
parents:
47216
diff
changeset
|
1035 |
|
2b652cbadde1
new lemmas for simplifying subtraction on nat numerals
huffman
parents:
47216
diff
changeset
|
1036 |
lemma diff_numeral_Suc [simp]: "numeral k - Suc n = pred_numeral k - n" |
2b652cbadde1
new lemmas for simplifying subtraction on nat numerals
huffman
parents:
47216
diff
changeset
|
1037 |
by (simp add: numeral_eq_Suc) |
2b652cbadde1
new lemmas for simplifying subtraction on nat numerals
huffman
parents:
47216
diff
changeset
|
1038 |
|
47209
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1039 |
lemma max_Suc_numeral [simp]: |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1040 |
"max (Suc n) (numeral k) = Suc (max n (pred_numeral k))" |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1041 |
by (simp add: numeral_eq_Suc) |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1042 |
|
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1043 |
lemma max_numeral_Suc [simp]: |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1044 |
"max (numeral k) (Suc n) = Suc (max (pred_numeral k) n)" |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1045 |
by (simp add: numeral_eq_Suc) |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1046 |
|
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1047 |
lemma min_Suc_numeral [simp]: |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1048 |
"min (Suc n) (numeral k) = Suc (min n (pred_numeral k))" |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1049 |
by (simp add: numeral_eq_Suc) |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1050 |
|
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1051 |
lemma min_numeral_Suc [simp]: |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1052 |
"min (numeral k) (Suc n) = Suc (min (pred_numeral k) n)" |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1053 |
by (simp add: numeral_eq_Suc) |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1054 |
|
60758 | 1055 |
text \<open>For @{term case_nat} and @{term rec_nat}.\<close> |
47216
4d0878d54ca5
move more theorems from Nat_Numeral.thy to Num.thy
huffman
parents:
47211
diff
changeset
|
1056 |
|
55415 | 1057 |
lemma case_nat_numeral [simp]: |
1058 |
"case_nat a f (numeral v) = (let pv = pred_numeral v in f pv)" |
|
47216
4d0878d54ca5
move more theorems from Nat_Numeral.thy to Num.thy
huffman
parents:
47211
diff
changeset
|
1059 |
by (simp add: numeral_eq_Suc) |
4d0878d54ca5
move more theorems from Nat_Numeral.thy to Num.thy
huffman
parents:
47211
diff
changeset
|
1060 |
|
55415 | 1061 |
lemma case_nat_add_eq_if [simp]: |
1062 |
"case_nat a f ((numeral v) + n) = (let pv = pred_numeral v in f (pv + n))" |
|
47216
4d0878d54ca5
move more theorems from Nat_Numeral.thy to Num.thy
huffman
parents:
47211
diff
changeset
|
1063 |
by (simp add: numeral_eq_Suc) |
4d0878d54ca5
move more theorems from Nat_Numeral.thy to Num.thy
huffman
parents:
47211
diff
changeset
|
1064 |
|
55415 | 1065 |
lemma rec_nat_numeral [simp]: |
1066 |
"rec_nat a f (numeral v) = |
|
1067 |
(let pv = pred_numeral v in f pv (rec_nat a f pv))" |
|
47216
4d0878d54ca5
move more theorems from Nat_Numeral.thy to Num.thy
huffman
parents:
47211
diff
changeset
|
1068 |
by (simp add: numeral_eq_Suc Let_def) |
4d0878d54ca5
move more theorems from Nat_Numeral.thy to Num.thy
huffman
parents:
47211
diff
changeset
|
1069 |
|
55415 | 1070 |
lemma rec_nat_add_eq_if [simp]: |
1071 |
"rec_nat a f (numeral v + n) = |
|
1072 |
(let pv = pred_numeral v in f (pv + n) (rec_nat a f (pv + n)))" |
|
47216
4d0878d54ca5
move more theorems from Nat_Numeral.thy to Num.thy
huffman
parents:
47211
diff
changeset
|
1073 |
by (simp add: numeral_eq_Suc Let_def) |
4d0878d54ca5
move more theorems from Nat_Numeral.thy to Num.thy
huffman
parents:
47211
diff
changeset
|
1074 |
|
60758 | 1075 |
text \<open>Case analysis on @{term "n < 2"}\<close> |
47255
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents:
47228
diff
changeset
|
1076 |
|
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents:
47228
diff
changeset
|
1077 |
lemma less_2_cases: "n < 2 \<Longrightarrow> n = 0 \<or> n = Suc 0" |
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents:
47228
diff
changeset
|
1078 |
by (auto simp add: numeral_2_eq_2) |
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents:
47228
diff
changeset
|
1079 |
|
60758 | 1080 |
text \<open>Removal of Small Numerals: 0, 1 and (in additive positions) 2\<close> |
1081 |
text \<open>bh: Are these rules really a good idea?\<close> |
|
47255
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents:
47228
diff
changeset
|
1082 |
|
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents:
47228
diff
changeset
|
1083 |
lemma add_2_eq_Suc [simp]: "2 + n = Suc (Suc n)" |
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents:
47228
diff
changeset
|
1084 |
by simp |
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents:
47228
diff
changeset
|
1085 |
|
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents:
47228
diff
changeset
|
1086 |
lemma add_2_eq_Suc' [simp]: "n + 2 = Suc (Suc n)" |
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents:
47228
diff
changeset
|
1087 |
by simp |
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents:
47228
diff
changeset
|
1088 |
|
60758 | 1089 |
text \<open>Can be used to eliminate long strings of Sucs, but not by default.\<close> |
47255
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents:
47228
diff
changeset
|
1090 |
|
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents:
47228
diff
changeset
|
1091 |
lemma Suc3_eq_add_3: "Suc (Suc (Suc n)) = 3 + n" |
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents:
47228
diff
changeset
|
1092 |
by simp |
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents:
47228
diff
changeset
|
1093 |
|
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents:
47228
diff
changeset
|
1094 |
lemmas nat_1_add_1 = one_add_one [where 'a=nat] (* legacy *) |
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents:
47228
diff
changeset
|
1095 |
|
47108 | 1096 |
|
60758 | 1097 |
subsection \<open>Particular lemmas concerning @{term 2}\<close> |
58512
dc4d76dfa8f0
moved lemmas out of Int.thy which have nothing to do with int
haftmann
parents:
58421
diff
changeset
|
1098 |
|
59867
58043346ca64
given up separate type classes demanding `inverse 0 = 0`
haftmann
parents:
59621
diff
changeset
|
1099 |
context linordered_field |
58512
dc4d76dfa8f0
moved lemmas out of Int.thy which have nothing to do with int
haftmann
parents:
58421
diff
changeset
|
1100 |
begin |
dc4d76dfa8f0
moved lemmas out of Int.thy which have nothing to do with int
haftmann
parents:
58421
diff
changeset
|
1101 |
|
dc4d76dfa8f0
moved lemmas out of Int.thy which have nothing to do with int
haftmann
parents:
58421
diff
changeset
|
1102 |
lemma half_gt_zero_iff: |
dc4d76dfa8f0
moved lemmas out of Int.thy which have nothing to do with int
haftmann
parents:
58421
diff
changeset
|
1103 |
"0 < a / 2 \<longleftrightarrow> 0 < a" (is "?P \<longleftrightarrow> ?Q") |
dc4d76dfa8f0
moved lemmas out of Int.thy which have nothing to do with int
haftmann
parents:
58421
diff
changeset
|
1104 |
by (auto simp add: field_simps) |
dc4d76dfa8f0
moved lemmas out of Int.thy which have nothing to do with int
haftmann
parents:
58421
diff
changeset
|
1105 |
|
dc4d76dfa8f0
moved lemmas out of Int.thy which have nothing to do with int
haftmann
parents:
58421
diff
changeset
|
1106 |
lemma half_gt_zero [simp]: |
dc4d76dfa8f0
moved lemmas out of Int.thy which have nothing to do with int
haftmann
parents:
58421
diff
changeset
|
1107 |
"0 < a \<Longrightarrow> 0 < a / 2" |
dc4d76dfa8f0
moved lemmas out of Int.thy which have nothing to do with int
haftmann
parents:
58421
diff
changeset
|
1108 |
by (simp add: half_gt_zero_iff) |
dc4d76dfa8f0
moved lemmas out of Int.thy which have nothing to do with int
haftmann
parents:
58421
diff
changeset
|
1109 |
|
dc4d76dfa8f0
moved lemmas out of Int.thy which have nothing to do with int
haftmann
parents:
58421
diff
changeset
|
1110 |
end |
dc4d76dfa8f0
moved lemmas out of Int.thy which have nothing to do with int
haftmann
parents:
58421
diff
changeset
|
1111 |
|
dc4d76dfa8f0
moved lemmas out of Int.thy which have nothing to do with int
haftmann
parents:
58421
diff
changeset
|
1112 |
|
60758 | 1113 |
subsection \<open>Numeral equations as default simplification rules\<close> |
47108 | 1114 |
|
1115 |
declare (in numeral) numeral_One [simp] |
|
1116 |
declare (in numeral) numeral_plus_numeral [simp] |
|
1117 |
declare (in numeral) add_numeral_special [simp] |
|
1118 |
declare (in neg_numeral) add_neg_numeral_simps [simp] |
|
1119 |
declare (in neg_numeral) add_neg_numeral_special [simp] |
|
1120 |
declare (in neg_numeral) diff_numeral_simps [simp] |
|
1121 |
declare (in neg_numeral) diff_numeral_special [simp] |
|
1122 |
declare (in semiring_numeral) numeral_times_numeral [simp] |
|
1123 |
declare (in ring_1) mult_neg_numeral_simps [simp] |
|
1124 |
||
60758 | 1125 |
subsection \<open>Setting up simprocs\<close> |
47108 | 1126 |
|
1127 |
lemma mult_numeral_1: "Numeral1 * a = (a::'a::semiring_numeral)" |
|
1128 |
by simp |
|
1129 |
||
1130 |
lemma mult_numeral_1_right: "a * Numeral1 = (a::'a::semiring_numeral)" |
|
1131 |
by simp |
|
1132 |
||
1133 |
lemma divide_numeral_1: "a / Numeral1 = (a::'a::field)" |
|
1134 |
by simp |
|
1135 |
||
1136 |
lemma inverse_numeral_1: |
|
1137 |
"inverse Numeral1 = (Numeral1::'a::division_ring)" |
|
1138 |
by simp |
|
1139 |
||
60758 | 1140 |
text\<open>Theorem lists for the cancellation simprocs. The use of a binary |
1141 |
numeral for 1 reduces the number of special cases.\<close> |
|
47108 | 1142 |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1143 |
lemma mult_1s: |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1144 |
fixes a :: "'a::semiring_numeral" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1145 |
and b :: "'b::ring_1" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1146 |
shows "Numeral1 * a = a" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1147 |
"a * Numeral1 = a" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1148 |
"- Numeral1 * b = - b" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1149 |
"b * - Numeral1 = - b" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1150 |
by simp_all |
47108 | 1151 |
|
60758 | 1152 |
setup \<open> |
47226 | 1153 |
Reorient_Proc.add |
1154 |
(fn Const (@{const_name numeral}, _) $ _ => true |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1155 |
| Const (@{const_name uminus}, _) $ (Const (@{const_name numeral}, _) $ _) => true |
47226 | 1156 |
| _ => false) |
60758 | 1157 |
\<close> |
47226 | 1158 |
|
1159 |
simproc_setup reorient_numeral |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1160 |
("numeral w = x" | "- numeral w = y") = Reorient_Proc.proc |
47226 | 1161 |
|
47108 | 1162 |
|
60758 | 1163 |
subsubsection \<open>Simplification of arithmetic operations on integer constants.\<close> |
47108 | 1164 |
|
1165 |
lemmas arith_special = (* already declared simp above *) |
|
1166 |
add_numeral_special add_neg_numeral_special |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1167 |
diff_numeral_special |
47108 | 1168 |
|
1169 |
(* rules already in simpset *) |
|
1170 |
lemmas arith_extra_simps = |
|
1171 |
numeral_plus_numeral add_neg_numeral_simps add_0_left add_0_right |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1172 |
minus_zero |
47108 | 1173 |
diff_numeral_simps diff_0 diff_0_right |
1174 |
numeral_times_numeral mult_neg_numeral_simps |
|
1175 |
mult_zero_left mult_zero_right |
|
1176 |
abs_numeral abs_neg_numeral |
|
1177 |
||
60758 | 1178 |
text \<open> |
47108 | 1179 |
For making a minimal simpset, one must include these default simprules. |
61799 | 1180 |
Also include \<open>simp_thms\<close>. |
60758 | 1181 |
\<close> |
47108 | 1182 |
|
1183 |
lemmas arith_simps = |
|
1184 |
add_num_simps mult_num_simps sub_num_simps |
|
1185 |
BitM.simps dbl_simps dbl_inc_simps dbl_dec_simps |
|
1186 |
abs_zero abs_one arith_extra_simps |
|
1187 |
||
54249 | 1188 |
lemmas more_arith_simps = |
1189 |
neg_le_iff_le |
|
1190 |
minus_zero left_minus right_minus |
|
1191 |
mult_1_left mult_1_right |
|
1192 |
mult_minus_left mult_minus_right |
|
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
55974
diff
changeset
|
1193 |
minus_add_distrib minus_minus mult.assoc |
54249 | 1194 |
|
1195 |
lemmas of_nat_simps = |
|
1196 |
of_nat_0 of_nat_1 of_nat_Suc of_nat_add of_nat_mult |
|
1197 |
||
60758 | 1198 |
text \<open>Simplification of relational operations\<close> |
47108 | 1199 |
|
1200 |
lemmas eq_numeral_extra = |
|
1201 |
zero_neq_one one_neq_zero |
|
1202 |
||
1203 |
lemmas rel_simps = |
|
1204 |
le_num_simps less_num_simps eq_num_simps |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1205 |
le_numeral_simps le_neg_numeral_simps le_minus_one_simps le_numeral_extra |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1206 |
less_numeral_simps less_neg_numeral_simps less_minus_one_simps less_numeral_extra |
47108 | 1207 |
eq_numeral_simps eq_neg_numeral_simps eq_numeral_extra |
1208 |
||
54249 | 1209 |
lemma Let_numeral [simp]: "Let (numeral v) f = f (numeral v)" |
61799 | 1210 |
\<comment> \<open>Unfold all \<open>let\<close>s involving constants\<close> |
54249 | 1211 |
unfolding Let_def .. |
1212 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1213 |
lemma Let_neg_numeral [simp]: "Let (- numeral v) f = f (- numeral v)" |
61799 | 1214 |
\<comment> \<open>Unfold all \<open>let\<close>s involving constants\<close> |
54249 | 1215 |
unfolding Let_def .. |
1216 |
||
60758 | 1217 |
declaration \<open> |
54249 | 1218 |
let |
59996 | 1219 |
fun number_of ctxt T n = |
1220 |
if not (Sign.of_sort (Proof_Context.theory_of ctxt) (T, @{sort numeral})) |
|
54249 | 1221 |
then raise CTERM ("number_of", []) |
59996 | 1222 |
else Numeral.mk_cnumber (Thm.ctyp_of ctxt T) n; |
54249 | 1223 |
in |
1224 |
K ( |
|
1225 |
Lin_Arith.add_simps (@{thms arith_simps} @ @{thms more_arith_simps} |
|
1226 |
@ @{thms rel_simps} |
|
1227 |
@ @{thms pred_numeral_simps} |
|
1228 |
@ @{thms arith_special numeral_One} |
|
1229 |
@ @{thms of_nat_simps}) |
|
1230 |
#> Lin_Arith.add_simps [@{thm Suc_numeral}, |
|
1231 |
@{thm Let_numeral}, @{thm Let_neg_numeral}, @{thm Let_0}, @{thm Let_1}, |
|
1232 |
@{thm le_Suc_numeral}, @{thm le_numeral_Suc}, |
|
1233 |
@{thm less_Suc_numeral}, @{thm less_numeral_Suc}, |
|
1234 |
@{thm Suc_eq_numeral}, @{thm eq_numeral_Suc}, |
|
1235 |
@{thm mult_Suc}, @{thm mult_Suc_right}, |
|
1236 |
@{thm of_nat_numeral}] |
|
1237 |
#> Lin_Arith.set_number_of number_of) |
|
1238 |
end |
|
60758 | 1239 |
\<close> |
54249 | 1240 |
|
47108 | 1241 |
|
60758 | 1242 |
subsubsection \<open>Simplification of arithmetic when nested to the right.\<close> |
47108 | 1243 |
|
1244 |
lemma add_numeral_left [simp]: |
|
1245 |
"numeral v + (numeral w + z) = (numeral(v + w) + z)" |
|
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
55974
diff
changeset
|
1246 |
by (simp_all add: add.assoc [symmetric]) |
47108 | 1247 |
|
1248 |
lemma add_neg_numeral_left [simp]: |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1249 |
"numeral v + (- numeral w + y) = (sub v w + y)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1250 |
"- numeral v + (numeral w + y) = (sub w v + y)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1251 |
"- numeral v + (- numeral w + y) = (- numeral(v + w) + y)" |
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
55974
diff
changeset
|
1252 |
by (simp_all add: add.assoc [symmetric]) |
47108 | 1253 |
|
1254 |
lemma mult_numeral_left [simp]: |
|
1255 |
"numeral v * (numeral w * z) = (numeral(v * w) * z :: 'a::semiring_numeral)" |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1256 |
"- numeral v * (numeral w * y) = (- numeral(v * w) * y :: 'b::ring_1)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1257 |
"numeral v * (- numeral w * y) = (- numeral(v * w) * y :: 'b::ring_1)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1258 |
"- numeral v * (- numeral w * y) = (numeral(v * w) * y :: 'b::ring_1)" |
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
55974
diff
changeset
|
1259 |
by (simp_all add: mult.assoc [symmetric]) |
47108 | 1260 |
|
1261 |
hide_const (open) One Bit0 Bit1 BitM inc pow sqr sub dbl dbl_inc dbl_dec |
|
1262 |
||
51143
0a2371e7ced3
two target language numeral types: integer and natural, as replacement for code_numeral;
haftmann
parents:
50817
diff
changeset
|
1263 |
|
60758 | 1264 |
subsection \<open>code module namespace\<close> |
47108 | 1265 |
|
52435
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52210
diff
changeset
|
1266 |
code_identifier |
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52210
diff
changeset
|
1267 |
code_module Num \<rightharpoonup> (SML) Arith and (OCaml) Arith and (Haskell) Arith |
47108 | 1268 |
|
1269 |
end |