author | nipkow |
Mon, 16 Nov 2015 12:37:46 +0100 | |
changeset 61685 | 2b3772ecfdec |
parent 61630 | 608520e0e8e2 |
child 61799 | 4cf66f21b764 |
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 |
||
60758 | 12 |
subsection \<open>The @{text num} 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}: |
86 |
as positive naturals (rule @{text "num_induct"}) |
|
87 |
and as digit representation (rules @{text "num.induct"}, @{text "num.cases"}). |
|
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 |
||
60758 | 180 |
text \<open>Rules using @{text One} and @{text inc} 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 |
47108 | 240 |
structure using @{text numeral}. |
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 |
|
60758 | 330 |
subsubsection \<open>Structures with addition: class @{text numeral}\<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> |
47108 | 357 |
Structures with negation: class @{text neg_numeral} |
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> |
47108 | 495 |
Structures with multiplication: class @{text semiring_numeral} |
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> |
47108 | 521 |
Structures with a zero: class @{text semiring_1} |
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> |
47108 | 551 |
Equality: class @{text semiring_char_0} |
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> |
47108 | 584 |
Comparisons: class @{text linordered_semidom} |
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> |
47108 | 675 |
Multiplication and negation: class @{text ring_1} |
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> |
47108 | 699 |
Equality using @{text iszero} 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 |
||
60758 | 731 |
text \<open>The @{text "eq_numeral_iff_iszero"} lemmas are not declared |
47108 | 732 |
@{text "[simp]"} by default, because for rings of characteristic zero, |
733 |
better simp rules are possible. For a type like integers mod @{text |
|
734 |
"n"}, type-instantiated versions of these rules should be added to the |
|
735 |
simplifier, along with a type-specific rule for deciding propositions |
|
736 |
of the form @{text "iszero (numeral w)"}. |
|
737 |
||
738 |
bh: Maybe it would not be so bad to just declare these as simp |
|
739 |
rules anyway? I should test whether these rules take precedence over |
|
740 |
the @{text "ring_char_0"} rules in the simplifier. |
|
60758 | 741 |
\<close> |
47108 | 742 |
|
743 |
lemma eq_numeral_iff_iszero: |
|
744 |
"numeral x = numeral y \<longleftrightarrow> iszero (sub x y)" |
|
54489
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 (numeral (x + y))" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
747 |
"- numeral x = - numeral y \<longleftrightarrow> iszero (sub y x)" |
47108 | 748 |
"numeral x = 1 \<longleftrightarrow> iszero (sub x One)" |
749 |
"1 = numeral y \<longleftrightarrow> iszero (sub One y)" |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
750 |
"- numeral x = 1 \<longleftrightarrow> iszero (numeral (x + One))" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
751 |
"1 = - numeral y \<longleftrightarrow> iszero (numeral (One + y))" |
47108 | 752 |
"numeral x = 0 \<longleftrightarrow> iszero (numeral x)" |
753 |
"0 = numeral y \<longleftrightarrow> iszero (numeral y)" |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
754 |
"- numeral x = 0 \<longleftrightarrow> iszero (numeral x)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
755 |
"0 = - numeral y \<longleftrightarrow> iszero (numeral y)" |
47108 | 756 |
unfolding eq_iff_iszero_diff diff_numeral_simps diff_numeral_special |
757 |
by simp_all |
|
758 |
||
759 |
end |
|
760 |
||
60758 | 761 |
subsubsection \<open> |
47108 | 762 |
Equality and negation: class @{text ring_char_0} |
60758 | 763 |
\<close> |
47108 | 764 |
|
765 |
class ring_char_0 = ring_1 + semiring_char_0 |
|
766 |
begin |
|
767 |
||
768 |
lemma not_iszero_numeral [simp]: "\<not> iszero (numeral w)" |
|
769 |
by (simp add: iszero_def) |
|
770 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
771 |
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
|
772 |
by simp |
47108 | 773 |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
774 |
lemma numeral_neq_neg_numeral: "numeral m \<noteq> - numeral n" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
775 |
unfolding eq_neg_iff_add_eq_0 |
47108 | 776 |
by (simp add: numeral_plus_numeral) |
777 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
778 |
lemma neg_numeral_neq_numeral: "- numeral m \<noteq> numeral n" |
47108 | 779 |
by (rule numeral_neq_neg_numeral [symmetric]) |
780 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
781 |
lemma zero_neq_neg_numeral: "0 \<noteq> - numeral n" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
782 |
unfolding neg_0_equal_iff_equal by simp |
47108 | 783 |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
784 |
lemma neg_numeral_neq_zero: "- numeral n \<noteq> 0" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
785 |
unfolding neg_equal_0_iff_equal by simp |
47108 | 786 |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
787 |
lemma one_neq_neg_numeral: "1 \<noteq> - numeral n" |
47108 | 788 |
using numeral_neq_neg_numeral [of One n] by (simp add: numeral_One) |
789 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
790 |
lemma neg_numeral_neq_one: "- numeral n \<noteq> 1" |
47108 | 791 |
using neg_numeral_neq_numeral [of n One] by (simp add: numeral_One) |
792 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
793 |
lemma neg_one_neq_numeral: |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
794 |
"- 1 \<noteq> numeral n" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
795 |
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
|
796 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
797 |
lemma numeral_neq_neg_one: |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
798 |
"numeral n \<noteq> - 1" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
799 |
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
|
800 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
801 |
lemma neg_one_eq_numeral_iff: |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
802 |
"- 1 = - numeral n \<longleftrightarrow> n = One" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
803 |
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
|
804 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
805 |
lemma numeral_eq_neg_one_iff: |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
806 |
"- numeral n = - 1 \<longleftrightarrow> n = One" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
807 |
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
|
808 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
809 |
lemma neg_one_neq_zero: |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
810 |
"- 1 \<noteq> 0" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
811 |
by simp |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
812 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
813 |
lemma zero_neq_neg_one: |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
814 |
"0 \<noteq> - 1" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
815 |
by simp |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
816 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
817 |
lemma neg_one_neq_one: |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
818 |
"- 1 \<noteq> 1" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
819 |
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
|
820 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
821 |
lemma one_neq_neg_one: |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
822 |
"1 \<noteq> - 1" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
823 |
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
|
824 |
|
47108 | 825 |
lemmas eq_neg_numeral_simps [simp] = |
826 |
neg_numeral_eq_iff |
|
827 |
numeral_neq_neg_numeral neg_numeral_neq_numeral |
|
828 |
one_neq_neg_numeral neg_numeral_neq_one |
|
829 |
zero_neq_neg_numeral neg_numeral_neq_zero |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
830 |
neg_one_neq_numeral numeral_neq_neg_one |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
831 |
neg_one_eq_numeral_iff numeral_eq_neg_one_iff |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
832 |
neg_one_neq_zero zero_neq_neg_one |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
833 |
neg_one_neq_one one_neq_neg_one |
47108 | 834 |
|
835 |
end |
|
836 |
||
60758 | 837 |
subsubsection \<open> |
47108 | 838 |
Structures with negation and order: class @{text linordered_idom} |
60758 | 839 |
\<close> |
47108 | 840 |
|
841 |
context linordered_idom |
|
842 |
begin |
|
843 |
||
844 |
subclass ring_char_0 .. |
|
845 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
846 |
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
|
847 |
by (simp only: neg_le_iff_le numeral_le_iff) |
47108 | 848 |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
849 |
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
|
850 |
by (simp only: neg_less_iff_less numeral_less_iff) |
47108 | 851 |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
852 |
lemma neg_numeral_less_zero: "- numeral n < 0" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
853 |
by (simp only: neg_less_0_iff_less zero_less_numeral) |
47108 | 854 |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
855 |
lemma neg_numeral_le_zero: "- numeral n \<le> 0" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
856 |
by (simp only: neg_le_0_iff_le zero_le_numeral) |
47108 | 857 |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
858 |
lemma not_zero_less_neg_numeral: "\<not> 0 < - numeral n" |
47108 | 859 |
by (simp only: not_less neg_numeral_le_zero) |
860 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
861 |
lemma not_zero_le_neg_numeral: "\<not> 0 \<le> - numeral n" |
47108 | 862 |
by (simp only: not_le neg_numeral_less_zero) |
863 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
864 |
lemma neg_numeral_less_numeral: "- numeral m < numeral n" |
47108 | 865 |
using neg_numeral_less_zero zero_less_numeral by (rule less_trans) |
866 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
867 |
lemma neg_numeral_le_numeral: "- numeral m \<le> numeral n" |
47108 | 868 |
by (simp only: less_imp_le neg_numeral_less_numeral) |
869 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
870 |
lemma not_numeral_less_neg_numeral: "\<not> numeral m < - numeral n" |
47108 | 871 |
by (simp only: not_less neg_numeral_le_numeral) |
872 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
873 |
lemma not_numeral_le_neg_numeral: "\<not> numeral m \<le> - numeral n" |
47108 | 874 |
by (simp only: not_le neg_numeral_less_numeral) |
875 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
876 |
lemma neg_numeral_less_one: "- numeral m < 1" |
47108 | 877 |
by (rule neg_numeral_less_numeral [of m One, unfolded numeral_One]) |
878 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
879 |
lemma neg_numeral_le_one: "- numeral m \<le> 1" |
47108 | 880 |
by (rule neg_numeral_le_numeral [of m One, unfolded numeral_One]) |
881 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
882 |
lemma not_one_less_neg_numeral: "\<not> 1 < - numeral m" |
47108 | 883 |
by (simp only: not_less neg_numeral_le_one) |
884 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
885 |
lemma not_one_le_neg_numeral: "\<not> 1 \<le> - numeral m" |
47108 | 886 |
by (simp only: not_le neg_numeral_less_one) |
887 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
888 |
lemma not_numeral_less_neg_one: "\<not> numeral m < - 1" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
889 |
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
|
890 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
891 |
lemma not_numeral_le_neg_one: "\<not> numeral m \<le> - 1" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
892 |
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
|
893 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
894 |
lemma neg_one_less_numeral: "- 1 < numeral m" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
895 |
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
|
896 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
897 |
lemma neg_one_le_numeral: "- 1 \<le> numeral m" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
898 |
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
|
899 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
900 |
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
|
901 |
by (cases m) simp_all |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
902 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
903 |
lemma neg_numeral_le_neg_one: "- numeral m \<le> - 1" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
904 |
by simp |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
905 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
906 |
lemma not_neg_one_less_neg_numeral: "\<not> - 1 < - numeral m" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
907 |
by simp |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
908 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
909 |
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
|
910 |
by (cases m) simp_all |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
911 |
|
47108 | 912 |
lemma sub_non_negative: |
913 |
"sub n m \<ge> 0 \<longleftrightarrow> n \<ge> m" |
|
914 |
by (simp only: sub_def le_diff_eq) simp |
|
915 |
||
916 |
lemma sub_positive: |
|
917 |
"sub n m > 0 \<longleftrightarrow> n > m" |
|
918 |
by (simp only: sub_def less_diff_eq) simp |
|
919 |
||
920 |
lemma sub_non_positive: |
|
921 |
"sub n m \<le> 0 \<longleftrightarrow> n \<le> m" |
|
922 |
by (simp only: sub_def diff_le_eq) simp |
|
923 |
||
924 |
lemma sub_negative: |
|
925 |
"sub n m < 0 \<longleftrightarrow> n < m" |
|
926 |
by (simp only: sub_def diff_less_eq) simp |
|
927 |
||
928 |
lemmas le_neg_numeral_simps [simp] = |
|
929 |
neg_numeral_le_iff |
|
930 |
neg_numeral_le_numeral not_numeral_le_neg_numeral |
|
931 |
neg_numeral_le_zero not_zero_le_neg_numeral |
|
932 |
neg_numeral_le_one not_one_le_neg_numeral |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
933 |
neg_one_le_numeral not_numeral_le_neg_one |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
934 |
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
|
935 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
936 |
lemma le_minus_one_simps [simp]: |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
937 |
"- 1 \<le> 0" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
938 |
"- 1 \<le> 1" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
939 |
"\<not> 0 \<le> - 1" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
940 |
"\<not> 1 \<le> - 1" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
941 |
by simp_all |
47108 | 942 |
|
943 |
lemmas less_neg_numeral_simps [simp] = |
|
944 |
neg_numeral_less_iff |
|
945 |
neg_numeral_less_numeral not_numeral_less_neg_numeral |
|
946 |
neg_numeral_less_zero not_zero_less_neg_numeral |
|
947 |
neg_numeral_less_one not_one_less_neg_numeral |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
948 |
neg_one_less_numeral not_numeral_less_neg_one |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
949 |
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
|
950 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
951 |
lemma less_minus_one_simps [simp]: |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
952 |
"- 1 < 0" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
953 |
"- 1 < 1" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
954 |
"\<not> 0 < - 1" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
955 |
"\<not> 1 < - 1" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
956 |
by (simp_all add: less_le) |
47108 | 957 |
|
958 |
lemma abs_numeral [simp]: "abs (numeral n) = numeral n" |
|
959 |
by simp |
|
960 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
961 |
lemma abs_neg_numeral [simp]: "abs (- numeral n) = numeral n" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
962 |
by (simp only: abs_minus_cancel abs_numeral) |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
963 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
964 |
lemma abs_neg_one [simp]: |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
965 |
"abs (- 1) = 1" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
966 |
by simp |
47108 | 967 |
|
968 |
end |
|
969 |
||
60758 | 970 |
subsubsection \<open> |
47108 | 971 |
Natural numbers |
60758 | 972 |
\<close> |
47108 | 973 |
|
47299 | 974 |
lemma Suc_1 [simp]: "Suc 1 = 2" |
975 |
unfolding Suc_eq_plus1 by (rule one_add_one) |
|
976 |
||
47108 | 977 |
lemma Suc_numeral [simp]: "Suc (numeral n) = numeral (n + One)" |
47299 | 978 |
unfolding Suc_eq_plus1 by (rule numeral_plus_one) |
47108 | 979 |
|
47209
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
980 |
definition pred_numeral :: "num \<Rightarrow> nat" |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
981 |
where [code del]: "pred_numeral k = numeral k - 1" |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
982 |
|
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
983 |
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
|
984 |
unfolding pred_numeral_def by simp |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
985 |
|
47220
52426c62b5d0
replace lemmas eval_nat_numeral with a simpler reformulation
huffman
parents:
47218
diff
changeset
|
986 |
lemma eval_nat_numeral: |
47108 | 987 |
"numeral One = Suc 0" |
988 |
"numeral (Bit0 n) = Suc (numeral (BitM n))" |
|
989 |
"numeral (Bit1 n) = Suc (numeral (Bit0 n))" |
|
990 |
by (simp_all add: numeral.simps BitM_plus_one) |
|
991 |
||
47209
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
992 |
lemma pred_numeral_simps [simp]: |
47300 | 993 |
"pred_numeral One = 0" |
994 |
"pred_numeral (Bit0 k) = numeral (BitM k)" |
|
995 |
"pred_numeral (Bit1 k) = numeral (Bit0 k)" |
|
47220
52426c62b5d0
replace lemmas eval_nat_numeral with a simpler reformulation
huffman
parents:
47218
diff
changeset
|
996 |
unfolding pred_numeral_def eval_nat_numeral |
47209
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
997 |
by (simp_all only: diff_Suc_Suc diff_0) |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
998 |
|
47192
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
999 |
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
|
1000 |
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
|
1001 |
|
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
1002 |
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
|
1003 |
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
|
1004 |
|
47207
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents:
47192
diff
changeset
|
1005 |
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
|
1006 |
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
|
1007 |
|
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents:
47192
diff
changeset
|
1008 |
lemma Suc_nat_number_of_add: |
47300 | 1009 |
"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
|
1010 |
by simp |
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents:
47192
diff
changeset
|
1011 |
|
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents:
47192
diff
changeset
|
1012 |
(*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
|
1013 |
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
|
1014 |
|
60758 | 1015 |
text \<open>Comparisons involving @{term Suc}.\<close> |
47209
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1016 |
|
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1017 |
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
|
1018 |
by (simp add: numeral_eq_Suc) |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1019 |
|
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1020 |
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
|
1021 |
by (simp add: numeral_eq_Suc) |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1022 |
|
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1023 |
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
|
1024 |
by (simp add: numeral_eq_Suc) |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1025 |
|
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1026 |
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
|
1027 |
by (simp add: numeral_eq_Suc) |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1028 |
|
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1029 |
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
|
1030 |
by (simp add: numeral_eq_Suc) |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1031 |
|
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1032 |
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
|
1033 |
by (simp add: numeral_eq_Suc) |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1034 |
|
47218
2b652cbadde1
new lemmas for simplifying subtraction on nat numerals
huffman
parents:
47216
diff
changeset
|
1035 |
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
|
1036 |
by (simp add: numeral_eq_Suc) |
2b652cbadde1
new lemmas for simplifying subtraction on nat numerals
huffman
parents:
47216
diff
changeset
|
1037 |
|
2b652cbadde1
new lemmas for simplifying subtraction on nat numerals
huffman
parents:
47216
diff
changeset
|
1038 |
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
|
1039 |
by (simp add: numeral_eq_Suc) |
2b652cbadde1
new lemmas for simplifying subtraction on nat numerals
huffman
parents:
47216
diff
changeset
|
1040 |
|
47209
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1041 |
lemma max_Suc_numeral [simp]: |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1042 |
"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
|
1043 |
by (simp add: numeral_eq_Suc) |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1044 |
|
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1045 |
lemma max_numeral_Suc [simp]: |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1046 |
"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
|
1047 |
by (simp add: numeral_eq_Suc) |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1048 |
|
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1049 |
lemma min_Suc_numeral [simp]: |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1050 |
"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
|
1051 |
by (simp add: numeral_eq_Suc) |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1052 |
|
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1053 |
lemma min_numeral_Suc [simp]: |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1054 |
"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
|
1055 |
by (simp add: numeral_eq_Suc) |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1056 |
|
60758 | 1057 |
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
|
1058 |
|
55415 | 1059 |
lemma case_nat_numeral [simp]: |
1060 |
"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
|
1061 |
by (simp add: numeral_eq_Suc) |
4d0878d54ca5
move more theorems from Nat_Numeral.thy to Num.thy
huffman
parents:
47211
diff
changeset
|
1062 |
|
55415 | 1063 |
lemma case_nat_add_eq_if [simp]: |
1064 |
"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
|
1065 |
by (simp add: numeral_eq_Suc) |
4d0878d54ca5
move more theorems from Nat_Numeral.thy to Num.thy
huffman
parents:
47211
diff
changeset
|
1066 |
|
55415 | 1067 |
lemma rec_nat_numeral [simp]: |
1068 |
"rec_nat a f (numeral v) = |
|
1069 |
(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
|
1070 |
by (simp add: numeral_eq_Suc Let_def) |
4d0878d54ca5
move more theorems from Nat_Numeral.thy to Num.thy
huffman
parents:
47211
diff
changeset
|
1071 |
|
55415 | 1072 |
lemma rec_nat_add_eq_if [simp]: |
1073 |
"rec_nat a f (numeral v + n) = |
|
1074 |
(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
|
1075 |
by (simp add: numeral_eq_Suc Let_def) |
4d0878d54ca5
move more theorems from Nat_Numeral.thy to Num.thy
huffman
parents:
47211
diff
changeset
|
1076 |
|
60758 | 1077 |
text \<open>Case analysis on @{term "n < 2"}\<close> |
47255
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents:
47228
diff
changeset
|
1078 |
|
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents:
47228
diff
changeset
|
1079 |
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
|
1080 |
by (auto simp add: numeral_2_eq_2) |
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents:
47228
diff
changeset
|
1081 |
|
60758 | 1082 |
text \<open>Removal of Small Numerals: 0, 1 and (in additive positions) 2\<close> |
1083 |
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
|
1084 |
|
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents:
47228
diff
changeset
|
1085 |
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
|
1086 |
by simp |
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents:
47228
diff
changeset
|
1087 |
|
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents:
47228
diff
changeset
|
1088 |
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
|
1089 |
by simp |
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents:
47228
diff
changeset
|
1090 |
|
60758 | 1091 |
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
|
1092 |
|
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents:
47228
diff
changeset
|
1093 |
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
|
1094 |
by simp |
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents:
47228
diff
changeset
|
1095 |
|
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents:
47228
diff
changeset
|
1096 |
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
|
1097 |
|
47108 | 1098 |
|
60758 | 1099 |
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
|
1100 |
|
59867
58043346ca64
given up separate type classes demanding `inverse 0 = 0`
haftmann
parents:
59621
diff
changeset
|
1101 |
context linordered_field |
58512
dc4d76dfa8f0
moved lemmas out of Int.thy which have nothing to do with int
haftmann
parents:
58421
diff
changeset
|
1102 |
begin |
dc4d76dfa8f0
moved lemmas out of Int.thy which have nothing to do with int
haftmann
parents:
58421
diff
changeset
|
1103 |
|
dc4d76dfa8f0
moved lemmas out of Int.thy which have nothing to do with int
haftmann
parents:
58421
diff
changeset
|
1104 |
lemma half_gt_zero_iff: |
dc4d76dfa8f0
moved lemmas out of Int.thy which have nothing to do with int
haftmann
parents:
58421
diff
changeset
|
1105 |
"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
|
1106 |
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
|
1107 |
|
dc4d76dfa8f0
moved lemmas out of Int.thy which have nothing to do with int
haftmann
parents:
58421
diff
changeset
|
1108 |
lemma half_gt_zero [simp]: |
dc4d76dfa8f0
moved lemmas out of Int.thy which have nothing to do with int
haftmann
parents:
58421
diff
changeset
|
1109 |
"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
|
1110 |
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
|
1111 |
|
dc4d76dfa8f0
moved lemmas out of Int.thy which have nothing to do with int
haftmann
parents:
58421
diff
changeset
|
1112 |
end |
dc4d76dfa8f0
moved lemmas out of Int.thy which have nothing to do with int
haftmann
parents:
58421
diff
changeset
|
1113 |
|
dc4d76dfa8f0
moved lemmas out of Int.thy which have nothing to do with int
haftmann
parents:
58421
diff
changeset
|
1114 |
|
60758 | 1115 |
subsection \<open>Numeral equations as default simplification rules\<close> |
47108 | 1116 |
|
1117 |
declare (in numeral) numeral_One [simp] |
|
1118 |
declare (in numeral) numeral_plus_numeral [simp] |
|
1119 |
declare (in numeral) add_numeral_special [simp] |
|
1120 |
declare (in neg_numeral) add_neg_numeral_simps [simp] |
|
1121 |
declare (in neg_numeral) add_neg_numeral_special [simp] |
|
1122 |
declare (in neg_numeral) diff_numeral_simps [simp] |
|
1123 |
declare (in neg_numeral) diff_numeral_special [simp] |
|
1124 |
declare (in semiring_numeral) numeral_times_numeral [simp] |
|
1125 |
declare (in ring_1) mult_neg_numeral_simps [simp] |
|
1126 |
||
60758 | 1127 |
subsection \<open>Setting up simprocs\<close> |
47108 | 1128 |
|
1129 |
lemma mult_numeral_1: "Numeral1 * a = (a::'a::semiring_numeral)" |
|
1130 |
by simp |
|
1131 |
||
1132 |
lemma mult_numeral_1_right: "a * Numeral1 = (a::'a::semiring_numeral)" |
|
1133 |
by simp |
|
1134 |
||
1135 |
lemma divide_numeral_1: "a / Numeral1 = (a::'a::field)" |
|
1136 |
by simp |
|
1137 |
||
1138 |
lemma inverse_numeral_1: |
|
1139 |
"inverse Numeral1 = (Numeral1::'a::division_ring)" |
|
1140 |
by simp |
|
1141 |
||
60758 | 1142 |
text\<open>Theorem lists for the cancellation simprocs. The use of a binary |
1143 |
numeral for 1 reduces the number of special cases.\<close> |
|
47108 | 1144 |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1145 |
lemma mult_1s: |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1146 |
fixes a :: "'a::semiring_numeral" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1147 |
and b :: "'b::ring_1" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1148 |
shows "Numeral1 * a = a" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1149 |
"a * Numeral1 = a" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1150 |
"- Numeral1 * b = - b" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1151 |
"b * - Numeral1 = - b" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1152 |
by simp_all |
47108 | 1153 |
|
60758 | 1154 |
setup \<open> |
47226 | 1155 |
Reorient_Proc.add |
1156 |
(fn Const (@{const_name numeral}, _) $ _ => true |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1157 |
| Const (@{const_name uminus}, _) $ (Const (@{const_name numeral}, _) $ _) => true |
47226 | 1158 |
| _ => false) |
60758 | 1159 |
\<close> |
47226 | 1160 |
|
1161 |
simproc_setup reorient_numeral |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1162 |
("numeral w = x" | "- numeral w = y") = Reorient_Proc.proc |
47226 | 1163 |
|
47108 | 1164 |
|
60758 | 1165 |
subsubsection \<open>Simplification of arithmetic operations on integer constants.\<close> |
47108 | 1166 |
|
1167 |
lemmas arith_special = (* already declared simp above *) |
|
1168 |
add_numeral_special add_neg_numeral_special |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1169 |
diff_numeral_special |
47108 | 1170 |
|
1171 |
(* rules already in simpset *) |
|
1172 |
lemmas arith_extra_simps = |
|
1173 |
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
|
1174 |
minus_zero |
47108 | 1175 |
diff_numeral_simps diff_0 diff_0_right |
1176 |
numeral_times_numeral mult_neg_numeral_simps |
|
1177 |
mult_zero_left mult_zero_right |
|
1178 |
abs_numeral abs_neg_numeral |
|
1179 |
||
60758 | 1180 |
text \<open> |
47108 | 1181 |
For making a minimal simpset, one must include these default simprules. |
1182 |
Also include @{text simp_thms}. |
|
60758 | 1183 |
\<close> |
47108 | 1184 |
|
1185 |
lemmas arith_simps = |
|
1186 |
add_num_simps mult_num_simps sub_num_simps |
|
1187 |
BitM.simps dbl_simps dbl_inc_simps dbl_dec_simps |
|
1188 |
abs_zero abs_one arith_extra_simps |
|
1189 |
||
54249 | 1190 |
lemmas more_arith_simps = |
1191 |
neg_le_iff_le |
|
1192 |
minus_zero left_minus right_minus |
|
1193 |
mult_1_left mult_1_right |
|
1194 |
mult_minus_left mult_minus_right |
|
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
55974
diff
changeset
|
1195 |
minus_add_distrib minus_minus mult.assoc |
54249 | 1196 |
|
1197 |
lemmas of_nat_simps = |
|
1198 |
of_nat_0 of_nat_1 of_nat_Suc of_nat_add of_nat_mult |
|
1199 |
||
60758 | 1200 |
text \<open>Simplification of relational operations\<close> |
47108 | 1201 |
|
1202 |
lemmas eq_numeral_extra = |
|
1203 |
zero_neq_one one_neq_zero |
|
1204 |
||
1205 |
lemmas rel_simps = |
|
1206 |
le_num_simps less_num_simps eq_num_simps |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1207 |
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
|
1208 |
less_numeral_simps less_neg_numeral_simps less_minus_one_simps less_numeral_extra |
47108 | 1209 |
eq_numeral_simps eq_neg_numeral_simps eq_numeral_extra |
1210 |
||
54249 | 1211 |
lemma Let_numeral [simp]: "Let (numeral v) f = f (numeral v)" |
60758 | 1212 |
-- \<open>Unfold all @{text let}s involving constants\<close> |
54249 | 1213 |
unfolding Let_def .. |
1214 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1215 |
lemma Let_neg_numeral [simp]: "Let (- numeral v) f = f (- numeral v)" |
60758 | 1216 |
-- \<open>Unfold all @{text let}s involving constants\<close> |
54249 | 1217 |
unfolding Let_def .. |
1218 |
||
60758 | 1219 |
declaration \<open> |
54249 | 1220 |
let |
59996 | 1221 |
fun number_of ctxt T n = |
1222 |
if not (Sign.of_sort (Proof_Context.theory_of ctxt) (T, @{sort numeral})) |
|
54249 | 1223 |
then raise CTERM ("number_of", []) |
59996 | 1224 |
else Numeral.mk_cnumber (Thm.ctyp_of ctxt T) n; |
54249 | 1225 |
in |
1226 |
K ( |
|
1227 |
Lin_Arith.add_simps (@{thms arith_simps} @ @{thms more_arith_simps} |
|
1228 |
@ @{thms rel_simps} |
|
1229 |
@ @{thms pred_numeral_simps} |
|
1230 |
@ @{thms arith_special numeral_One} |
|
1231 |
@ @{thms of_nat_simps}) |
|
1232 |
#> Lin_Arith.add_simps [@{thm Suc_numeral}, |
|
1233 |
@{thm Let_numeral}, @{thm Let_neg_numeral}, @{thm Let_0}, @{thm Let_1}, |
|
1234 |
@{thm le_Suc_numeral}, @{thm le_numeral_Suc}, |
|
1235 |
@{thm less_Suc_numeral}, @{thm less_numeral_Suc}, |
|
1236 |
@{thm Suc_eq_numeral}, @{thm eq_numeral_Suc}, |
|
1237 |
@{thm mult_Suc}, @{thm mult_Suc_right}, |
|
1238 |
@{thm of_nat_numeral}] |
|
1239 |
#> Lin_Arith.set_number_of number_of) |
|
1240 |
end |
|
60758 | 1241 |
\<close> |
54249 | 1242 |
|
47108 | 1243 |
|
60758 | 1244 |
subsubsection \<open>Simplification of arithmetic when nested to the right.\<close> |
47108 | 1245 |
|
1246 |
lemma add_numeral_left [simp]: |
|
1247 |
"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
|
1248 |
by (simp_all add: add.assoc [symmetric]) |
47108 | 1249 |
|
1250 |
lemma add_neg_numeral_left [simp]: |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1251 |
"numeral v + (- numeral w + y) = (sub v w + y)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1252 |
"- numeral v + (numeral w + y) = (sub w v + y)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1253 |
"- 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
|
1254 |
by (simp_all add: add.assoc [symmetric]) |
47108 | 1255 |
|
1256 |
lemma mult_numeral_left [simp]: |
|
1257 |
"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
|
1258 |
"- 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
|
1259 |
"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
|
1260 |
"- 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
|
1261 |
by (simp_all add: mult.assoc [symmetric]) |
47108 | 1262 |
|
1263 |
hide_const (open) One Bit0 Bit1 BitM inc pow sqr sub dbl dbl_inc dbl_dec |
|
1264 |
||
51143
0a2371e7ced3
two target language numeral types: integer and natural, as replacement for code_numeral;
haftmann
parents:
50817
diff
changeset
|
1265 |
|
60758 | 1266 |
subsection \<open>code module namespace\<close> |
47108 | 1267 |
|
52435
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52210
diff
changeset
|
1268 |
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
|
1269 |
code_module Num \<rightharpoonup> (SML) Arith and (OCaml) Arith and (Haskell) Arith |
47108 | 1270 |
|
1271 |
end |