author | wenzelm |
Sun, 06 Oct 2024 22:56:07 +0200 | |
changeset 81124 | 6ce0c8d59f5a |
parent 80932 | 261cd8722677 |
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 |
|
64178 | 9 |
imports BNF_Least_Fixpoint Transfer |
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 |
|
69593 | 16 |
text \<open>Increment function for type \<^typ>\<open>num\<close>\<close> |
47108 | 17 |
|
63654 | 18 |
primrec inc :: "num \<Rightarrow> num" |
19 |
where |
|
20 |
"inc One = Bit0 One" |
|
21 |
| "inc (Bit0 x) = Bit1 x" |
|
22 |
| "inc (Bit1 x) = Bit0 (inc x)" |
|
47108 | 23 |
|
69593 | 24 |
text \<open>Converting between type \<^typ>\<open>num\<close> and type \<^typ>\<open>nat\<close>\<close> |
47108 | 25 |
|
63654 | 26 |
primrec nat_of_num :: "num \<Rightarrow> nat" |
27 |
where |
|
28 |
"nat_of_num One = Suc 0" |
|
29 |
| "nat_of_num (Bit0 x) = nat_of_num x + nat_of_num x" |
|
30 |
| "nat_of_num (Bit1 x) = Suc (nat_of_num x + nat_of_num x)" |
|
47108 | 31 |
|
63654 | 32 |
primrec num_of_nat :: "nat \<Rightarrow> num" |
33 |
where |
|
34 |
"num_of_nat 0 = One" |
|
35 |
| "num_of_nat (Suc n) = (if 0 < n then inc (num_of_nat n) else One)" |
|
47108 | 36 |
|
37 |
lemma nat_of_num_pos: "0 < nat_of_num x" |
|
38 |
by (induct x) simp_all |
|
39 |
||
40 |
lemma nat_of_num_neq_0: " nat_of_num x \<noteq> 0" |
|
41 |
by (induct x) simp_all |
|
42 |
||
43 |
lemma nat_of_num_inc: "nat_of_num (inc x) = Suc (nat_of_num x)" |
|
44 |
by (induct x) simp_all |
|
45 |
||
63654 | 46 |
lemma num_of_nat_double: "0 < n \<Longrightarrow> num_of_nat (n + n) = Bit0 (num_of_nat n)" |
47108 | 47 |
by (induct n) simp_all |
48 |
||
69593 | 49 |
text \<open>Type \<^typ>\<open>num\<close> is isomorphic to the strictly positive natural numbers.\<close> |
47108 | 50 |
|
51 |
lemma nat_of_num_inverse: "num_of_nat (nat_of_num x) = x" |
|
52 |
by (induct x) (simp_all add: num_of_nat_double nat_of_num_pos) |
|
53 |
||
54 |
lemma num_of_nat_inverse: "0 < n \<Longrightarrow> nat_of_num (num_of_nat n) = n" |
|
55 |
by (induct n) (simp_all add: nat_of_num_inc) |
|
56 |
||
57 |
lemma num_eq_iff: "x = y \<longleftrightarrow> nat_of_num x = nat_of_num y" |
|
58 |
apply safe |
|
59 |
apply (drule arg_cong [where f=num_of_nat]) |
|
60 |
apply (simp add: nat_of_num_inverse) |
|
61 |
done |
|
62 |
||
63 |
lemma num_induct [case_names One inc]: |
|
64 |
fixes P :: "num \<Rightarrow> bool" |
|
65 |
assumes One: "P One" |
|
66 |
and inc: "\<And>x. P x \<Longrightarrow> P (inc x)" |
|
67 |
shows "P x" |
|
68 |
proof - |
|
69 |
obtain n where n: "Suc n = nat_of_num x" |
|
63654 | 70 |
by (cases "nat_of_num x") (simp_all add: nat_of_num_neq_0) |
47108 | 71 |
have "P (num_of_nat (Suc n))" |
72 |
proof (induct n) |
|
63654 | 73 |
case 0 |
74 |
from One show ?case by simp |
|
47108 | 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> |
69593 | 85 |
From now on, there are two possible models for \<^typ>\<open>num\<close>: as positive |
63654 | 86 |
naturals (rule \<open>num_induct\<close>) and as digit representation (rules |
87 |
\<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 |
||
63654 | 96 |
definition [code del]: "m + n = num_of_nat (nat_of_num m + nat_of_num n)" |
47108 | 97 |
|
63654 | 98 |
definition [code del]: "m * n = num_of_nat (nat_of_num m * nat_of_num n)" |
47108 | 99 |
|
63654 | 100 |
definition [code del]: "m \<le> n \<longleftrightarrow> nat_of_num m \<le> nat_of_num n" |
47108 | 101 |
|
63654 | 102 |
definition [code del]: "m < n \<longleftrightarrow> nat_of_num m < nat_of_num n" |
47108 | 103 |
|
104 |
instance |
|
61169 | 105 |
by standard (auto simp add: less_num_def less_eq_num_def num_eq_iff) |
47108 | 106 |
|
107 |
end |
|
108 |
||
109 |
lemma nat_of_num_add: "nat_of_num (x + y) = nat_of_num x + nat_of_num y" |
|
110 |
unfolding plus_num_def |
|
111 |
by (intro num_of_nat_inverse add_pos_pos nat_of_num_pos) |
|
112 |
||
113 |
lemma nat_of_num_mult: "nat_of_num (x * y) = nat_of_num x * nat_of_num y" |
|
114 |
unfolding times_num_def |
|
115 |
by (intro num_of_nat_inverse mult_pos_pos nat_of_num_pos) |
|
116 |
||
117 |
lemma add_num_simps [simp, code]: |
|
118 |
"One + One = Bit0 One" |
|
119 |
"One + Bit0 n = Bit1 n" |
|
120 |
"One + Bit1 n = Bit0 (n + One)" |
|
121 |
"Bit0 m + One = Bit1 m" |
|
122 |
"Bit0 m + Bit0 n = Bit0 (m + n)" |
|
123 |
"Bit0 m + Bit1 n = Bit1 (m + n)" |
|
124 |
"Bit1 m + One = Bit0 (m + One)" |
|
125 |
"Bit1 m + Bit0 n = Bit1 (m + n)" |
|
126 |
"Bit1 m + Bit1 n = Bit0 (m + n + One)" |
|
127 |
by (simp_all add: num_eq_iff nat_of_num_add) |
|
128 |
||
129 |
lemma mult_num_simps [simp, code]: |
|
130 |
"m * One = m" |
|
131 |
"One * n = n" |
|
132 |
"Bit0 m * Bit0 n = Bit0 (Bit0 (m * n))" |
|
133 |
"Bit0 m * Bit1 n = Bit0 (m * Bit1 n)" |
|
134 |
"Bit1 m * Bit0 n = Bit0 (Bit1 m * n)" |
|
135 |
"Bit1 m * Bit1 n = Bit1 (m + n + Bit0 (m * n))" |
|
63654 | 136 |
by (simp_all add: num_eq_iff nat_of_num_add nat_of_num_mult distrib_right distrib_left) |
47108 | 137 |
|
138 |
lemma eq_num_simps: |
|
139 |
"One = One \<longleftrightarrow> True" |
|
140 |
"One = Bit0 n \<longleftrightarrow> False" |
|
141 |
"One = Bit1 n \<longleftrightarrow> False" |
|
142 |
"Bit0 m = One \<longleftrightarrow> False" |
|
143 |
"Bit1 m = One \<longleftrightarrow> False" |
|
144 |
"Bit0 m = Bit0 n \<longleftrightarrow> m = n" |
|
145 |
"Bit0 m = Bit1 n \<longleftrightarrow> False" |
|
146 |
"Bit1 m = Bit0 n \<longleftrightarrow> False" |
|
147 |
"Bit1 m = Bit1 n \<longleftrightarrow> m = n" |
|
148 |
by simp_all |
|
149 |
||
150 |
lemma le_num_simps [simp, code]: |
|
151 |
"One \<le> n \<longleftrightarrow> True" |
|
152 |
"Bit0 m \<le> One \<longleftrightarrow> False" |
|
153 |
"Bit1 m \<le> One \<longleftrightarrow> False" |
|
154 |
"Bit0 m \<le> Bit0 n \<longleftrightarrow> m \<le> n" |
|
155 |
"Bit0 m \<le> Bit1 n \<longleftrightarrow> m \<le> n" |
|
156 |
"Bit1 m \<le> Bit1 n \<longleftrightarrow> m \<le> n" |
|
157 |
"Bit1 m \<le> Bit0 n \<longleftrightarrow> m < n" |
|
158 |
using nat_of_num_pos [of n] nat_of_num_pos [of m] |
|
159 |
by (auto simp add: less_eq_num_def less_num_def) |
|
160 |
||
161 |
lemma less_num_simps [simp, code]: |
|
162 |
"m < One \<longleftrightarrow> False" |
|
163 |
"One < Bit0 n \<longleftrightarrow> True" |
|
164 |
"One < Bit1 n \<longleftrightarrow> True" |
|
165 |
"Bit0 m < Bit0 n \<longleftrightarrow> m < n" |
|
166 |
"Bit0 m < Bit1 n \<longleftrightarrow> m \<le> n" |
|
167 |
"Bit1 m < Bit1 n \<longleftrightarrow> m < n" |
|
168 |
"Bit1 m < Bit0 n \<longleftrightarrow> m < n" |
|
169 |
using nat_of_num_pos [of n] nat_of_num_pos [of m] |
|
170 |
by (auto simp add: less_eq_num_def less_num_def) |
|
171 |
||
61630 | 172 |
lemma le_num_One_iff: "x \<le> num.One \<longleftrightarrow> x = num.One" |
63654 | 173 |
by (simp add: antisym_conv) |
61630 | 174 |
|
63654 | 175 |
text \<open>Rules using \<open>One\<close> and \<open>inc\<close> as constructors.\<close> |
47108 | 176 |
|
177 |
lemma add_One: "x + One = inc x" |
|
178 |
by (simp add: num_eq_iff nat_of_num_add nat_of_num_inc) |
|
179 |
||
180 |
lemma add_One_commute: "One + n = n + One" |
|
181 |
by (induct n) simp_all |
|
182 |
||
183 |
lemma add_inc: "x + inc y = inc (x + y)" |
|
184 |
by (simp add: num_eq_iff nat_of_num_add nat_of_num_inc) |
|
185 |
||
186 |
lemma mult_inc: "x * inc y = x * y + x" |
|
187 |
by (simp add: num_eq_iff nat_of_num_mult nat_of_num_add nat_of_num_inc) |
|
188 |
||
69593 | 189 |
text \<open>The \<^const>\<open>num_of_nat\<close> conversion.\<close> |
47108 | 190 |
|
63654 | 191 |
lemma num_of_nat_One: "n \<le> 1 \<Longrightarrow> num_of_nat n = One" |
47108 | 192 |
by (cases n) simp_all |
193 |
||
194 |
lemma num_of_nat_plus_distrib: |
|
195 |
"0 < m \<Longrightarrow> 0 < n \<Longrightarrow> num_of_nat (m + n) = num_of_nat m + num_of_nat n" |
|
196 |
by (induct n) (auto simp add: add_One add_One_commute add_inc) |
|
197 |
||
63654 | 198 |
text \<open>A double-and-decrement function.\<close> |
47108 | 199 |
|
63654 | 200 |
primrec BitM :: "num \<Rightarrow> num" |
201 |
where |
|
202 |
"BitM One = One" |
|
203 |
| "BitM (Bit0 n) = Bit1 (BitM n)" |
|
204 |
| "BitM (Bit1 n) = Bit1 (Bit0 n)" |
|
47108 | 205 |
|
206 |
lemma BitM_plus_one: "BitM n + One = Bit0 n" |
|
207 |
by (induct n) simp_all |
|
208 |
||
209 |
lemma one_plus_BitM: "One + BitM n = Bit0 n" |
|
210 |
unfolding add_One_commute BitM_plus_one .. |
|
211 |
||
71991 | 212 |
lemma BitM_inc_eq: |
213 |
\<open>Num.BitM (Num.inc n) = Num.Bit1 n\<close> |
|
214 |
by (induction n) simp_all |
|
215 |
||
216 |
lemma inc_BitM_eq: |
|
217 |
\<open>Num.inc (Num.BitM n) = num.Bit0 n\<close> |
|
218 |
by (simp add: BitM_plus_one[symmetric] add_One) |
|
219 |
||
63654 | 220 |
text \<open>Squaring and exponentiation.\<close> |
47108 | 221 |
|
63654 | 222 |
primrec sqr :: "num \<Rightarrow> num" |
223 |
where |
|
224 |
"sqr One = One" |
|
225 |
| "sqr (Bit0 n) = Bit0 (Bit0 (sqr n))" |
|
226 |
| "sqr (Bit1 n) = Bit1 (Bit0 (sqr n + n))" |
|
47108 | 227 |
|
63654 | 228 |
primrec pow :: "num \<Rightarrow> num \<Rightarrow> num" |
229 |
where |
|
230 |
"pow x One = x" |
|
231 |
| "pow x (Bit0 y) = sqr (pow x y)" |
|
232 |
| "pow x (Bit1 y) = sqr (pow x y) * x" |
|
47108 | 233 |
|
234 |
lemma nat_of_num_sqr: "nat_of_num (sqr x) = nat_of_num x * nat_of_num x" |
|
63654 | 235 |
by (induct x) (simp_all add: algebra_simps nat_of_num_add) |
47108 | 236 |
|
237 |
lemma sqr_conv_mult: "sqr x = x * x" |
|
238 |
by (simp add: num_eq_iff nat_of_num_sqr nat_of_num_mult) |
|
239 |
||
70226 | 240 |
lemma num_double [simp]: |
241 |
"num.Bit0 num.One * n = num.Bit0 n" |
|
242 |
by (simp add: num_eq_iff nat_of_num_mult) |
|
243 |
||
47108 | 244 |
|
60758 | 245 |
subsection \<open>Binary numerals\<close> |
47108 | 246 |
|
60758 | 247 |
text \<open> |
47211 | 248 |
We embed binary representations into a generic algebraic |
61799 | 249 |
structure using \<open>numeral\<close>. |
60758 | 250 |
\<close> |
47108 | 251 |
|
252 |
class numeral = one + semigroup_add |
|
253 |
begin |
|
254 |
||
63654 | 255 |
primrec numeral :: "num \<Rightarrow> 'a" |
256 |
where |
|
257 |
numeral_One: "numeral One = 1" |
|
258 |
| numeral_Bit0: "numeral (Bit0 n) = numeral n + numeral n" |
|
259 |
| numeral_Bit1: "numeral (Bit1 n) = numeral n + numeral n + 1" |
|
47108 | 260 |
|
50817 | 261 |
lemma numeral_code [code]: |
262 |
"numeral One = 1" |
|
263 |
"numeral (Bit0 n) = (let m = numeral n in m + m)" |
|
264 |
"numeral (Bit1 n) = (let m = numeral n in m + m + 1)" |
|
265 |
by (simp_all add: Let_def) |
|
63654 | 266 |
|
47108 | 267 |
lemma one_plus_numeral_commute: "1 + numeral x = numeral x + 1" |
63654 | 268 |
proof (induct x) |
269 |
case One |
|
270 |
then show ?case by simp |
|
271 |
next |
|
272 |
case Bit0 |
|
273 |
then show ?case by (simp add: add.assoc [symmetric]) (simp add: add.assoc) |
|
274 |
next |
|
275 |
case Bit1 |
|
276 |
then show ?case by (simp add: add.assoc [symmetric]) (simp add: add.assoc) |
|
277 |
qed |
|
47108 | 278 |
|
279 |
lemma numeral_inc: "numeral (inc x) = numeral x + 1" |
|
280 |
proof (induct x) |
|
63654 | 281 |
case One |
282 |
then show ?case by simp |
|
283 |
next |
|
284 |
case Bit0 |
|
285 |
then show ?case by simp |
|
286 |
next |
|
47108 | 287 |
case (Bit1 x) |
288 |
have "numeral x + (1 + numeral x) + 1 = numeral x + (numeral x + 1) + 1" |
|
289 |
by (simp only: one_plus_numeral_commute) |
|
290 |
with Bit1 show ?case |
|
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
55974
diff
changeset
|
291 |
by (simp add: add.assoc) |
63654 | 292 |
qed |
47108 | 293 |
|
294 |
declare numeral.simps [simp del] |
|
295 |
||
296 |
abbreviation "Numeral1 \<equiv> numeral One" |
|
297 |
||
298 |
declare numeral_One [code_post] |
|
299 |
||
300 |
end |
|
301 |
||
60758 | 302 |
text \<open>Numeral syntax.\<close> |
47108 | 303 |
|
304 |
syntax |
|
81124 | 305 |
"_Numeral" :: "num_const \<Rightarrow> 'a" (\<open>(\<open>open_block notation=\<open>literal number\<close>\<close>_)\<close>) |
47108 | 306 |
|
69605 | 307 |
ML_file \<open>Tools/numeral.ML\<close> |
58410
6d46ad54a2ab
explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents:
58310
diff
changeset
|
308 |
|
60758 | 309 |
parse_translation \<open> |
52143 | 310 |
let |
69593 | 311 |
fun numeral_tr [(c as Const (\<^syntax_const>\<open>_constrain\<close>, _)) $ t $ u] = |
52143 | 312 |
c $ numeral_tr [t] $ u |
313 |
| numeral_tr [Const (num, _)] = |
|
58421 | 314 |
(Numeral.mk_number_syntax o #value o Lexicon.read_num) num |
52143 | 315 |
| numeral_tr ts = raise TERM ("numeral_tr", ts); |
69593 | 316 |
in [(\<^syntax_const>\<open>_Numeral\<close>, K numeral_tr)] end |
60758 | 317 |
\<close> |
47108 | 318 |
|
60758 | 319 |
typed_print_translation \<open> |
52143 | 320 |
let |
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
321 |
fun num_tr' ctxt T [n] = |
52143 | 322 |
let |
62597 | 323 |
val k = Numeral.dest_num_syntax n; |
52187 | 324 |
val t' = |
69593 | 325 |
Syntax.const \<^syntax_const>\<open>_Numeral\<close> $ |
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
326 |
Syntax.free (string_of_int k); |
52143 | 327 |
in |
328 |
(case T of |
|
69593 | 329 |
Type (\<^type_name>\<open>fun\<close>, [_, T']) => |
52210
0226035df99d
more explicit Printer.type_emphasis, depending on show_type_emphasis;
wenzelm
parents:
52187
diff
changeset
|
330 |
if Printer.type_emphasis ctxt T' then |
69593 | 331 |
Syntax.const \<^syntax_const>\<open>_constrain\<close> $ t' $ |
52210
0226035df99d
more explicit Printer.type_emphasis, depending on show_type_emphasis;
wenzelm
parents:
52187
diff
changeset
|
332 |
Syntax_Phases.term_of_typ ctxt T' |
0226035df99d
more explicit Printer.type_emphasis, depending on show_type_emphasis;
wenzelm
parents:
52187
diff
changeset
|
333 |
else t' |
52187 | 334 |
| _ => if T = dummyT then t' else raise Match) |
52143 | 335 |
end; |
336 |
in |
|
69593 | 337 |
[(\<^const_syntax>\<open>numeral\<close>, num_tr')] |
52143 | 338 |
end |
60758 | 339 |
\<close> |
47108 | 340 |
|
47228 | 341 |
|
60758 | 342 |
subsection \<open>Class-specific numeral rules\<close> |
47108 | 343 |
|
69593 | 344 |
text \<open>\<^const>\<open>numeral\<close> is a morphism.\<close> |
63654 | 345 |
|
47108 | 346 |
|
61799 | 347 |
subsubsection \<open>Structures with addition: class \<open>numeral\<close>\<close> |
47108 | 348 |
|
349 |
context numeral |
|
350 |
begin |
|
351 |
||
352 |
lemma numeral_add: "numeral (m + n) = numeral m + numeral n" |
|
353 |
by (induct n rule: num_induct) |
|
63654 | 354 |
(simp_all only: numeral_One add_One add_inc numeral_inc add.assoc) |
47108 | 355 |
|
356 |
lemma numeral_plus_numeral: "numeral m + numeral n = numeral (m + n)" |
|
357 |
by (rule numeral_add [symmetric]) |
|
358 |
||
359 |
lemma numeral_plus_one: "numeral n + 1 = numeral (n + One)" |
|
360 |
using numeral_add [of n One] by (simp add: numeral_One) |
|
361 |
||
362 |
lemma one_plus_numeral: "1 + numeral n = numeral (One + n)" |
|
363 |
using numeral_add [of One n] by (simp add: numeral_One) |
|
364 |
||
365 |
lemma one_add_one: "1 + 1 = 2" |
|
366 |
using numeral_add [of One One] by (simp add: numeral_One) |
|
367 |
||
368 |
lemmas add_numeral_special = |
|
369 |
numeral_plus_one one_plus_numeral one_add_one |
|
370 |
||
371 |
end |
|
372 |
||
63654 | 373 |
|
374 |
subsubsection \<open>Structures with negation: class \<open>neg_numeral\<close>\<close> |
|
47108 | 375 |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
376 |
class neg_numeral = numeral + group_add |
47108 | 377 |
begin |
378 |
||
63654 | 379 |
lemma uminus_numeral_One: "- Numeral1 = - 1" |
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
380 |
by (simp add: numeral_One) |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
381 |
|
60758 | 382 |
text \<open>Numerals form an abelian subgroup.\<close> |
47108 | 383 |
|
63654 | 384 |
inductive is_num :: "'a \<Rightarrow> bool" |
385 |
where |
|
386 |
"is_num 1" |
|
387 |
| "is_num x \<Longrightarrow> is_num (- x)" |
|
388 |
| "is_num x \<Longrightarrow> is_num y \<Longrightarrow> is_num (x + y)" |
|
47108 | 389 |
|
390 |
lemma is_num_numeral: "is_num (numeral k)" |
|
63654 | 391 |
by (induct k) (simp_all add: numeral.simps is_num.intros) |
47108 | 392 |
|
63654 | 393 |
lemma is_num_add_commute: "is_num x \<Longrightarrow> is_num y \<Longrightarrow> x + y = y + x" |
75669
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
394 |
proof(induction x rule: is_num.induct) |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
395 |
case 1 |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
396 |
then show ?case |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
397 |
proof (induction y rule: is_num.induct) |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
398 |
case 1 |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
399 |
then show ?case by simp |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
400 |
next |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
401 |
case (2 y) |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
402 |
then have "y + (1 + - y) + y = y + (- y + 1) + y" |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
403 |
by (simp add: add.assoc) |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
404 |
then have "y + (1 + - y) = y + (- y + 1)" |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
405 |
by simp |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
406 |
then show ?case |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
407 |
by (rule add_left_imp_eq[of y]) |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
408 |
next |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
409 |
case (3 x y) |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
410 |
then have "1 + (x + y) = x + 1 + y" |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
411 |
by (simp add: add.assoc [symmetric]) |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
412 |
then show ?case using 3 |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
413 |
by (simp add: add.assoc) |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
414 |
qed |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
415 |
next |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
416 |
case (2 x) |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
417 |
then have "x + (- x + y) + x = x + (y + - x) + x" |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
418 |
by (simp add: add.assoc) |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
419 |
then have "x + (- x + y) = x + (y + - x)" |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
420 |
by simp |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
421 |
then show ?case |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
422 |
by (rule add_left_imp_eq[of x]) |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
423 |
next |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
424 |
case (3 x z) |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
425 |
moreover have "x + (y + z) = (x + y) + z" |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
426 |
by (simp add: add.assoc[symmetric]) |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
427 |
ultimately show ?case |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
428 |
by (simp add: add.assoc) |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
429 |
qed |
47108 | 430 |
|
63654 | 431 |
lemma is_num_add_left_commute: "is_num x \<Longrightarrow> is_num y \<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
|
432 |
by (simp only: add.assoc [symmetric] is_num_add_commute) |
47108 | 433 |
|
434 |
lemmas is_num_normalize = |
|
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
55974
diff
changeset
|
435 |
add.assoc is_num_add_commute is_num_add_left_commute |
47108 | 436 |
is_num.intros is_num_numeral |
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
53064
diff
changeset
|
437 |
minus_add |
47108 | 438 |
|
63654 | 439 |
definition dbl :: "'a \<Rightarrow> 'a" |
440 |
where "dbl x = x + x" |
|
441 |
||
442 |
definition dbl_inc :: "'a \<Rightarrow> 'a" |
|
443 |
where "dbl_inc x = x + x + 1" |
|
47108 | 444 |
|
63654 | 445 |
definition dbl_dec :: "'a \<Rightarrow> 'a" |
446 |
where "dbl_dec x = x + x - 1" |
|
447 |
||
448 |
definition sub :: "num \<Rightarrow> num \<Rightarrow> 'a" |
|
449 |
where "sub k l = numeral k - numeral l" |
|
47108 | 450 |
|
451 |
lemma numeral_BitM: "numeral (BitM n) = numeral (Bit0 n) - 1" |
|
452 |
by (simp only: BitM_plus_one [symmetric] numeral_add numeral_One eq_diff_eq) |
|
453 |
||
71991 | 454 |
lemma sub_inc_One_eq: |
455 |
\<open>Num.sub (Num.inc n) num.One = numeral n\<close> |
|
456 |
by (simp_all add: sub_def diff_eq_eq numeral_inc numeral.numeral_One) |
|
457 |
||
47108 | 458 |
lemma dbl_simps [simp]: |
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
459 |
"dbl (- numeral k) = - dbl (numeral k)" |
47108 | 460 |
"dbl 0 = 0" |
461 |
"dbl 1 = 2" |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
462 |
"dbl (- 1) = - 2" |
47108 | 463 |
"dbl (numeral k) = numeral (Bit0 k)" |
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
464 |
by (simp_all add: dbl_def numeral.simps minus_add) |
47108 | 465 |
|
466 |
lemma dbl_inc_simps [simp]: |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
467 |
"dbl_inc (- numeral k) = - dbl_dec (numeral k)" |
47108 | 468 |
"dbl_inc 0 = 1" |
469 |
"dbl_inc 1 = 3" |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
470 |
"dbl_inc (- 1) = - 1" |
47108 | 471 |
"dbl_inc (numeral k) = numeral (Bit1 k)" |
63654 | 472 |
by (simp_all add: dbl_inc_def dbl_dec_def numeral.simps numeral_BitM is_num_normalize algebra_simps |
473 |
del: add_uminus_conv_diff) |
|
47108 | 474 |
|
475 |
lemma dbl_dec_simps [simp]: |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
476 |
"dbl_dec (- numeral k) = - dbl_inc (numeral k)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
477 |
"dbl_dec 0 = - 1" |
47108 | 478 |
"dbl_dec 1 = 1" |
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
479 |
"dbl_dec (- 1) = - 3" |
47108 | 480 |
"dbl_dec (numeral k) = numeral (BitM k)" |
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
481 |
by (simp_all add: dbl_dec_def dbl_inc_def numeral.simps numeral_BitM is_num_normalize) |
47108 | 482 |
|
483 |
lemma sub_num_simps [simp]: |
|
484 |
"sub One One = 0" |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
485 |
"sub One (Bit0 l) = - numeral (BitM l)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
486 |
"sub One (Bit1 l) = - numeral (Bit0 l)" |
47108 | 487 |
"sub (Bit0 k) One = numeral (BitM k)" |
488 |
"sub (Bit1 k) One = numeral (Bit0 k)" |
|
489 |
"sub (Bit0 k) (Bit0 l) = dbl (sub k l)" |
|
490 |
"sub (Bit0 k) (Bit1 l) = dbl_dec (sub k l)" |
|
491 |
"sub (Bit1 k) (Bit0 l) = dbl_inc (sub k l)" |
|
492 |
"sub (Bit1 k) (Bit1 l) = dbl (sub k l)" |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
493 |
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
|
494 |
numeral_BitM is_num_normalize del: add_uminus_conv_diff add: diff_conv_add_uminus) |
47108 | 495 |
|
496 |
lemma add_neg_numeral_simps: |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
497 |
"numeral m + - numeral n = sub m n" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
498 |
"- numeral m + numeral n = sub n m" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
499 |
"- numeral m + - numeral n = - (numeral m + numeral n)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
500 |
by (simp_all add: sub_def numeral_add numeral.simps is_num_normalize |
63654 | 501 |
del: add_uminus_conv_diff add: diff_conv_add_uminus) |
47108 | 502 |
|
503 |
lemma add_neg_numeral_special: |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
504 |
"1 + - numeral m = sub One m" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
505 |
"- numeral m + 1 = sub One m" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
506 |
"numeral m + - 1 = sub m One" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
507 |
"- 1 + numeral n = sub n One" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
508 |
"- 1 + - numeral n = - numeral (inc n)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
509 |
"- numeral m + - 1 = - numeral (inc m)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
510 |
"1 + - 1 = 0" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
511 |
"- 1 + 1 = 0" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
512 |
"- 1 + - 1 = - 2" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
513 |
by (simp_all add: sub_def numeral_add numeral.simps is_num_normalize right_minus numeral_inc |
63654 | 514 |
del: add_uminus_conv_diff add: diff_conv_add_uminus) |
47108 | 515 |
|
516 |
lemma diff_numeral_simps: |
|
517 |
"numeral m - numeral n = sub m n" |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
518 |
"numeral m - - numeral n = numeral (m + n)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
519 |
"- numeral m - numeral n = - numeral (m + n)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
520 |
"- numeral m - - numeral n = sub n m" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
521 |
by (simp_all add: sub_def numeral_add numeral.simps is_num_normalize |
63654 | 522 |
del: add_uminus_conv_diff add: diff_conv_add_uminus) |
47108 | 523 |
|
524 |
lemma diff_numeral_special: |
|
525 |
"1 - numeral n = sub One n" |
|
526 |
"numeral m - 1 = sub m One" |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
527 |
"1 - - numeral n = numeral (One + n)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
528 |
"- numeral m - 1 = - numeral (m + One)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
529 |
"- 1 - numeral n = - numeral (inc n)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
530 |
"numeral m - - 1 = numeral (inc m)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
531 |
"- 1 - - numeral n = sub n One" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
532 |
"- numeral m - - 1 = sub One m" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
533 |
"1 - 1 = 0" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
534 |
"- 1 - 1 = - 2" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
535 |
"1 - - 1 = 2" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
536 |
"- 1 - - 1 = 0" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
537 |
by (simp_all add: sub_def numeral_add numeral.simps is_num_normalize numeral_inc |
63654 | 538 |
del: add_uminus_conv_diff add: diff_conv_add_uminus) |
47108 | 539 |
|
540 |
end |
|
541 |
||
63654 | 542 |
|
543 |
subsubsection \<open>Structures with multiplication: class \<open>semiring_numeral\<close>\<close> |
|
47108 | 544 |
|
545 |
class semiring_numeral = semiring + monoid_mult |
|
546 |
begin |
|
547 |
||
548 |
subclass numeral .. |
|
549 |
||
550 |
lemma numeral_mult: "numeral (m * n) = numeral m * numeral n" |
|
63654 | 551 |
by (induct n rule: num_induct) |
552 |
(simp_all add: numeral_One mult_inc numeral_inc numeral_add distrib_left) |
|
47108 | 553 |
|
554 |
lemma numeral_times_numeral: "numeral m * numeral n = numeral (m * n)" |
|
555 |
by (rule numeral_mult [symmetric]) |
|
556 |
||
53064 | 557 |
lemma mult_2: "2 * z = z + z" |
63654 | 558 |
by (simp add: one_add_one [symmetric] distrib_right) |
53064 | 559 |
|
560 |
lemma mult_2_right: "z * 2 = z + z" |
|
63654 | 561 |
by (simp add: one_add_one [symmetric] distrib_left) |
53064 | 562 |
|
66936 | 563 |
lemma left_add_twice: |
564 |
"a + (a + b) = 2 * a + b" |
|
565 |
by (simp add: mult_2 ac_simps) |
|
566 |
||
79590 | 567 |
lemma numeral_Bit0_eq_double: |
568 |
\<open>numeral (num.Bit0 n) = 2 * numeral n\<close> |
|
569 |
by (simp add: mult_2) (simp add: numeral_Bit0) |
|
570 |
||
571 |
lemma numeral_Bit1_eq_inc_double: |
|
572 |
\<open>numeral (num.Bit1 n) = 2 * numeral n + 1\<close> |
|
573 |
by (simp add: mult_2) (simp add: numeral_Bit1) |
|
574 |
||
47108 | 575 |
end |
576 |
||
63654 | 577 |
|
578 |
subsubsection \<open>Structures with a zero: class \<open>semiring_1\<close>\<close> |
|
47108 | 579 |
|
580 |
context semiring_1 |
|
581 |
begin |
|
582 |
||
583 |
subclass semiring_numeral .. |
|
584 |
||
585 |
lemma of_nat_numeral [simp]: "of_nat (numeral n) = numeral n" |
|
63654 | 586 |
by (induct n) (simp_all only: numeral.simps numeral_class.numeral.simps of_nat_add of_nat_1) |
47108 | 587 |
|
70927 | 588 |
end |
64178 | 589 |
|
63654 | 590 |
lemma nat_of_num_numeral [code_abbrev]: "nat_of_num = numeral" |
47108 | 591 |
proof |
592 |
fix n |
|
593 |
have "numeral n = nat_of_num n" |
|
594 |
by (induct n) (simp_all add: numeral.simps) |
|
63654 | 595 |
then show "nat_of_num n = numeral n" |
596 |
by simp |
|
47108 | 597 |
qed |
598 |
||
51143
0a2371e7ced3
two target language numeral types: integer and natural, as replacement for code_numeral;
haftmann
parents:
50817
diff
changeset
|
599 |
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
|
600 |
"nat_of_num One = 1" |
0a2371e7ced3
two target language numeral types: integer and natural, as replacement for code_numeral;
haftmann
parents:
50817
diff
changeset
|
601 |
"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
|
602 |
"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
|
603 |
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
|
604 |
|
63654 | 605 |
|
606 |
subsubsection \<open>Equality: class \<open>semiring_char_0\<close>\<close> |
|
47108 | 607 |
|
608 |
context semiring_char_0 |
|
609 |
begin |
|
610 |
||
611 |
lemma numeral_eq_iff: "numeral m = numeral n \<longleftrightarrow> m = n" |
|
63654 | 612 |
by (simp only: of_nat_numeral [symmetric] nat_of_num_numeral [symmetric] |
613 |
of_nat_eq_iff num_eq_iff) |
|
47108 | 614 |
|
615 |
lemma numeral_eq_one_iff: "numeral n = 1 \<longleftrightarrow> n = One" |
|
616 |
by (rule numeral_eq_iff [of n One, unfolded numeral_One]) |
|
617 |
||
618 |
lemma one_eq_numeral_iff: "1 = numeral n \<longleftrightarrow> One = n" |
|
619 |
by (rule numeral_eq_iff [of One n, unfolded numeral_One]) |
|
620 |
||
621 |
lemma numeral_neq_zero: "numeral n \<noteq> 0" |
|
63654 | 622 |
by (simp add: of_nat_numeral [symmetric] nat_of_num_numeral [symmetric] nat_of_num_pos) |
47108 | 623 |
|
624 |
lemma zero_neq_numeral: "0 \<noteq> numeral n" |
|
625 |
unfolding eq_commute [of 0] by (rule numeral_neq_zero) |
|
626 |
||
627 |
lemmas eq_numeral_simps [simp] = |
|
628 |
numeral_eq_iff |
|
629 |
numeral_eq_one_iff |
|
630 |
one_eq_numeral_iff |
|
631 |
numeral_neq_zero |
|
632 |
zero_neq_numeral |
|
633 |
||
634 |
end |
|
635 |
||
63654 | 636 |
|
70270
4065e3b0e5bf
Generalisations involving numerals; comparisons should now work for ennreal
paulson <lp15@cam.ac.uk>
parents:
70226
diff
changeset
|
637 |
subsubsection \<open>Comparisons: class \<open>linordered_nonzero_semiring\<close>\<close> |
47108 | 638 |
|
70270
4065e3b0e5bf
Generalisations involving numerals; comparisons should now work for ennreal
paulson <lp15@cam.ac.uk>
parents:
70226
diff
changeset
|
639 |
context linordered_nonzero_semiring |
47108 | 640 |
begin |
641 |
||
642 |
lemma numeral_le_iff: "numeral m \<le> numeral n \<longleftrightarrow> m \<le> n" |
|
643 |
proof - |
|
644 |
have "of_nat (numeral m) \<le> of_nat (numeral n) \<longleftrightarrow> m \<le> n" |
|
63654 | 645 |
by (simp only: less_eq_num_def nat_of_num_numeral of_nat_le_iff) |
47108 | 646 |
then show ?thesis by simp |
647 |
qed |
|
648 |
||
649 |
lemma one_le_numeral: "1 \<le> numeral n" |
|
70270
4065e3b0e5bf
Generalisations involving numerals; comparisons should now work for ennreal
paulson <lp15@cam.ac.uk>
parents:
70226
diff
changeset
|
650 |
using numeral_le_iff [of num.One n] by (simp add: numeral_One) |
47108 | 651 |
|
70270
4065e3b0e5bf
Generalisations involving numerals; comparisons should now work for ennreal
paulson <lp15@cam.ac.uk>
parents:
70226
diff
changeset
|
652 |
lemma numeral_le_one_iff: "numeral n \<le> 1 \<longleftrightarrow> n \<le> num.One" |
4065e3b0e5bf
Generalisations involving numerals; comparisons should now work for ennreal
paulson <lp15@cam.ac.uk>
parents:
70226
diff
changeset
|
653 |
using numeral_le_iff [of n num.One] by (simp add: numeral_One) |
47108 | 654 |
|
655 |
lemma numeral_less_iff: "numeral m < numeral n \<longleftrightarrow> m < n" |
|
656 |
proof - |
|
657 |
have "of_nat (numeral m) < of_nat (numeral n) \<longleftrightarrow> m < n" |
|
658 |
unfolding less_num_def nat_of_num_numeral of_nat_less_iff .. |
|
659 |
then show ?thesis by simp |
|
660 |
qed |
|
661 |
||
662 |
lemma not_numeral_less_one: "\<not> numeral n < 1" |
|
70270
4065e3b0e5bf
Generalisations involving numerals; comparisons should now work for ennreal
paulson <lp15@cam.ac.uk>
parents:
70226
diff
changeset
|
663 |
using numeral_less_iff [of n num.One] by (simp add: numeral_One) |
47108 | 664 |
|
70270
4065e3b0e5bf
Generalisations involving numerals; comparisons should now work for ennreal
paulson <lp15@cam.ac.uk>
parents:
70226
diff
changeset
|
665 |
lemma one_less_numeral_iff: "1 < numeral n \<longleftrightarrow> num.One < n" |
4065e3b0e5bf
Generalisations involving numerals; comparisons should now work for ennreal
paulson <lp15@cam.ac.uk>
parents:
70226
diff
changeset
|
666 |
using numeral_less_iff [of num.One n] by (simp add: numeral_One) |
47108 | 667 |
|
668 |
lemma zero_le_numeral: "0 \<le> numeral n" |
|
70270
4065e3b0e5bf
Generalisations involving numerals; comparisons should now work for ennreal
paulson <lp15@cam.ac.uk>
parents:
70226
diff
changeset
|
669 |
using dual_order.trans one_le_numeral zero_le_one by blast |
47108 | 670 |
|
671 |
lemma zero_less_numeral: "0 < numeral n" |
|
70270
4065e3b0e5bf
Generalisations involving numerals; comparisons should now work for ennreal
paulson <lp15@cam.ac.uk>
parents:
70226
diff
changeset
|
672 |
using less_linear not_numeral_less_one order.strict_trans zero_less_one by blast |
47108 | 673 |
|
674 |
lemma not_numeral_le_zero: "\<not> numeral n \<le> 0" |
|
675 |
by (simp add: not_le zero_less_numeral) |
|
676 |
||
677 |
lemma not_numeral_less_zero: "\<not> numeral n < 0" |
|
678 |
by (simp add: not_less zero_le_numeral) |
|
679 |
||
80612
e65eed943bee
A lot of new material from the Ramsey development, including a couple of new simprules.
paulson <lp15@cam.ac.uk>
parents:
79590
diff
changeset
|
680 |
lemma one_of_nat_le_iff [simp]: "1 \<le> of_nat k \<longleftrightarrow> 1 \<le> k" |
e65eed943bee
A lot of new material from the Ramsey development, including a couple of new simprules.
paulson <lp15@cam.ac.uk>
parents:
79590
diff
changeset
|
681 |
using of_nat_le_iff [of 1] by simp |
e65eed943bee
A lot of new material from the Ramsey development, including a couple of new simprules.
paulson <lp15@cam.ac.uk>
parents:
79590
diff
changeset
|
682 |
|
e65eed943bee
A lot of new material from the Ramsey development, including a couple of new simprules.
paulson <lp15@cam.ac.uk>
parents:
79590
diff
changeset
|
683 |
lemma numeral_nat_le_iff [simp]: "numeral n \<le> of_nat k \<longleftrightarrow> numeral n \<le> k" |
e65eed943bee
A lot of new material from the Ramsey development, including a couple of new simprules.
paulson <lp15@cam.ac.uk>
parents:
79590
diff
changeset
|
684 |
using of_nat_le_iff [of "numeral n"] by simp |
e65eed943bee
A lot of new material from the Ramsey development, including a couple of new simprules.
paulson <lp15@cam.ac.uk>
parents:
79590
diff
changeset
|
685 |
|
e65eed943bee
A lot of new material from the Ramsey development, including a couple of new simprules.
paulson <lp15@cam.ac.uk>
parents:
79590
diff
changeset
|
686 |
lemma of_nat_le_1_iff [simp]: "of_nat k \<le> 1 \<longleftrightarrow> k \<le> 1" |
e65eed943bee
A lot of new material from the Ramsey development, including a couple of new simprules.
paulson <lp15@cam.ac.uk>
parents:
79590
diff
changeset
|
687 |
using of_nat_le_iff [of _ 1] by simp |
e65eed943bee
A lot of new material from the Ramsey development, including a couple of new simprules.
paulson <lp15@cam.ac.uk>
parents:
79590
diff
changeset
|
688 |
|
e65eed943bee
A lot of new material from the Ramsey development, including a couple of new simprules.
paulson <lp15@cam.ac.uk>
parents:
79590
diff
changeset
|
689 |
lemma of_nat_le_numeral_iff [simp]: "of_nat k \<le> numeral n \<longleftrightarrow> k \<le> numeral n" |
e65eed943bee
A lot of new material from the Ramsey development, including a couple of new simprules.
paulson <lp15@cam.ac.uk>
parents:
79590
diff
changeset
|
690 |
using of_nat_le_iff [of _ "numeral n"] by simp |
e65eed943bee
A lot of new material from the Ramsey development, including a couple of new simprules.
paulson <lp15@cam.ac.uk>
parents:
79590
diff
changeset
|
691 |
|
e65eed943bee
A lot of new material from the Ramsey development, including a couple of new simprules.
paulson <lp15@cam.ac.uk>
parents:
79590
diff
changeset
|
692 |
lemma one_of_nat_less_iff [simp]: "1 < of_nat k \<longleftrightarrow> 1 < k" |
e65eed943bee
A lot of new material from the Ramsey development, including a couple of new simprules.
paulson <lp15@cam.ac.uk>
parents:
79590
diff
changeset
|
693 |
using of_nat_less_iff [of 1] by simp |
e65eed943bee
A lot of new material from the Ramsey development, including a couple of new simprules.
paulson <lp15@cam.ac.uk>
parents:
79590
diff
changeset
|
694 |
|
e65eed943bee
A lot of new material from the Ramsey development, including a couple of new simprules.
paulson <lp15@cam.ac.uk>
parents:
79590
diff
changeset
|
695 |
lemma numeral_nat_less_iff [simp]: "numeral n < of_nat k \<longleftrightarrow> numeral n < k" |
e65eed943bee
A lot of new material from the Ramsey development, including a couple of new simprules.
paulson <lp15@cam.ac.uk>
parents:
79590
diff
changeset
|
696 |
using of_nat_less_iff [of "numeral n"] by simp |
e65eed943bee
A lot of new material from the Ramsey development, including a couple of new simprules.
paulson <lp15@cam.ac.uk>
parents:
79590
diff
changeset
|
697 |
|
e65eed943bee
A lot of new material from the Ramsey development, including a couple of new simprules.
paulson <lp15@cam.ac.uk>
parents:
79590
diff
changeset
|
698 |
lemma of_nat_less_1_iff [simp]: "of_nat k < 1 \<longleftrightarrow> k < 1" |
e65eed943bee
A lot of new material from the Ramsey development, including a couple of new simprules.
paulson <lp15@cam.ac.uk>
parents:
79590
diff
changeset
|
699 |
using of_nat_less_iff [of _ 1] by simp |
e65eed943bee
A lot of new material from the Ramsey development, including a couple of new simprules.
paulson <lp15@cam.ac.uk>
parents:
79590
diff
changeset
|
700 |
|
e65eed943bee
A lot of new material from the Ramsey development, including a couple of new simprules.
paulson <lp15@cam.ac.uk>
parents:
79590
diff
changeset
|
701 |
lemma of_nat_less_numeral_iff [simp]: "of_nat k < numeral n \<longleftrightarrow> k < numeral n" |
e65eed943bee
A lot of new material from the Ramsey development, including a couple of new simprules.
paulson <lp15@cam.ac.uk>
parents:
79590
diff
changeset
|
702 |
using of_nat_less_iff [of _ "numeral n"] by simp |
e65eed943bee
A lot of new material from the Ramsey development, including a couple of new simprules.
paulson <lp15@cam.ac.uk>
parents:
79590
diff
changeset
|
703 |
|
e65eed943bee
A lot of new material from the Ramsey development, including a couple of new simprules.
paulson <lp15@cam.ac.uk>
parents:
79590
diff
changeset
|
704 |
lemma of_nat_eq_numeral_iff [simp]: "of_nat k = numeral n \<longleftrightarrow> k = numeral n" |
e65eed943bee
A lot of new material from the Ramsey development, including a couple of new simprules.
paulson <lp15@cam.ac.uk>
parents:
79590
diff
changeset
|
705 |
using of_nat_eq_iff [of _ "numeral n"] by simp |
e65eed943bee
A lot of new material from the Ramsey development, including a couple of new simprules.
paulson <lp15@cam.ac.uk>
parents:
79590
diff
changeset
|
706 |
|
47108 | 707 |
lemmas le_numeral_extra = |
708 |
zero_le_one not_one_le_zero |
|
709 |
order_refl [of 0] order_refl [of 1] |
|
710 |
||
711 |
lemmas less_numeral_extra = |
|
712 |
zero_less_one not_one_less_zero |
|
713 |
less_irrefl [of 0] less_irrefl [of 1] |
|
714 |
||
715 |
lemmas le_numeral_simps [simp] = |
|
716 |
numeral_le_iff |
|
717 |
one_le_numeral |
|
718 |
numeral_le_one_iff |
|
719 |
zero_le_numeral |
|
720 |
not_numeral_le_zero |
|
721 |
||
722 |
lemmas less_numeral_simps [simp] = |
|
723 |
numeral_less_iff |
|
724 |
one_less_numeral_iff |
|
725 |
not_numeral_less_one |
|
726 |
zero_less_numeral |
|
727 |
not_numeral_less_zero |
|
728 |
||
61630 | 729 |
lemma min_0_1 [simp]: |
63654 | 730 |
fixes min' :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" |
731 |
defines "min' \<equiv> min" |
|
732 |
shows |
|
733 |
"min' 0 1 = 0" |
|
734 |
"min' 1 0 = 0" |
|
735 |
"min' 0 (numeral x) = 0" |
|
736 |
"min' (numeral x) 0 = 0" |
|
737 |
"min' 1 (numeral x) = 1" |
|
738 |
"min' (numeral x) 1 = 1" |
|
739 |
by (simp_all add: min'_def min_def le_num_One_iff) |
|
61630 | 740 |
|
63654 | 741 |
lemma max_0_1 [simp]: |
742 |
fixes max' :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" |
|
743 |
defines "max' \<equiv> max" |
|
744 |
shows |
|
745 |
"max' 0 1 = 1" |
|
746 |
"max' 1 0 = 1" |
|
747 |
"max' 0 (numeral x) = numeral x" |
|
748 |
"max' (numeral x) 0 = numeral x" |
|
749 |
"max' 1 (numeral x) = numeral x" |
|
750 |
"max' (numeral x) 1 = numeral x" |
|
751 |
by (simp_all add: max'_def max_def le_num_One_iff) |
|
61630 | 752 |
|
47108 | 753 |
end |
754 |
||
67116 | 755 |
text \<open>Unfold \<open>min\<close> and \<open>max\<close> on numerals.\<close> |
756 |
||
757 |
lemmas max_number_of [simp] = |
|
758 |
max_def [of "numeral u" "numeral v"] |
|
759 |
max_def [of "numeral u" "- numeral v"] |
|
760 |
max_def [of "- numeral u" "numeral v"] |
|
761 |
max_def [of "- numeral u" "- numeral v"] for u v |
|
762 |
||
763 |
lemmas min_number_of [simp] = |
|
764 |
min_def [of "numeral u" "numeral v"] |
|
765 |
min_def [of "numeral u" "- numeral v"] |
|
766 |
min_def [of "- numeral u" "numeral v"] |
|
767 |
min_def [of "- numeral u" "- numeral v"] for u v |
|
768 |
||
63654 | 769 |
|
770 |
subsubsection \<open>Multiplication and negation: class \<open>ring_1\<close>\<close> |
|
47108 | 771 |
|
772 |
context ring_1 |
|
773 |
begin |
|
774 |
||
775 |
subclass neg_numeral .. |
|
776 |
||
777 |
lemma mult_neg_numeral_simps: |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
778 |
"- numeral m * - numeral n = numeral (m * n)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
779 |
"- numeral m * numeral n = - numeral (m * n)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
780 |
"numeral m * - numeral n = - numeral (m * n)" |
63654 | 781 |
by (simp_all only: mult_minus_left mult_minus_right minus_minus numeral_mult) |
47108 | 782 |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
783 |
lemma mult_minus1 [simp]: "- 1 * z = - z" |
63654 | 784 |
by (simp add: numeral.simps) |
47108 | 785 |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
786 |
lemma mult_minus1_right [simp]: "z * - 1 = - z" |
63654 | 787 |
by (simp add: numeral.simps) |
47108 | 788 |
|
71758 | 789 |
lemma minus_sub_one_diff_one [simp]: |
790 |
\<open>- sub m One - 1 = - numeral m\<close> |
|
791 |
proof - |
|
792 |
have \<open>sub m One + 1 = numeral m\<close> |
|
793 |
by (simp flip: eq_diff_eq add: diff_numeral_special) |
|
794 |
then have \<open>- (sub m One + 1) = - numeral m\<close> |
|
795 |
by simp |
|
796 |
then show ?thesis |
|
797 |
by simp |
|
798 |
qed |
|
799 |
||
47108 | 800 |
end |
801 |
||
63654 | 802 |
|
803 |
subsubsection \<open>Equality using \<open>iszero\<close> for rings with non-zero characteristic\<close> |
|
47108 | 804 |
|
805 |
context ring_1 |
|
806 |
begin |
|
807 |
||
808 |
definition iszero :: "'a \<Rightarrow> bool" |
|
809 |
where "iszero z \<longleftrightarrow> z = 0" |
|
810 |
||
811 |
lemma iszero_0 [simp]: "iszero 0" |
|
812 |
by (simp add: iszero_def) |
|
813 |
||
814 |
lemma not_iszero_1 [simp]: "\<not> iszero 1" |
|
815 |
by (simp add: iszero_def) |
|
816 |
||
817 |
lemma not_iszero_Numeral1: "\<not> iszero Numeral1" |
|
818 |
by (simp add: numeral_One) |
|
819 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
820 |
lemma not_iszero_neg_1 [simp]: "\<not> iszero (- 1)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
821 |
by (simp add: iszero_def) |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
822 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
823 |
lemma not_iszero_neg_Numeral1: "\<not> iszero (- Numeral1)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
824 |
by (simp add: numeral_One) |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
825 |
|
63654 | 826 |
lemma iszero_neg_numeral [simp]: "iszero (- numeral w) \<longleftrightarrow> iszero (numeral w)" |
827 |
unfolding iszero_def by (rule neg_equal_0_iff_equal) |
|
47108 | 828 |
|
829 |
lemma eq_iff_iszero_diff: "x = y \<longleftrightarrow> iszero (x - y)" |
|
830 |
unfolding iszero_def by (rule eq_iff_diff_eq_0) |
|
831 |
||
63654 | 832 |
text \<open> |
833 |
The \<open>eq_numeral_iff_iszero\<close> lemmas are not declared \<open>[simp]\<close> by default, |
|
834 |
because for rings of characteristic zero, better simp rules are possible. |
|
835 |
For a type like integers mod \<open>n\<close>, type-instantiated versions of these rules |
|
836 |
should be added to the simplifier, along with a type-specific rule for |
|
837 |
deciding propositions of the form \<open>iszero (numeral w)\<close>. |
|
47108 | 838 |
|
63654 | 839 |
bh: Maybe it would not be so bad to just declare these as simp rules anyway? |
840 |
I should test whether these rules take precedence over the \<open>ring_char_0\<close> |
|
841 |
rules in the simplifier. |
|
60758 | 842 |
\<close> |
47108 | 843 |
|
844 |
lemma eq_numeral_iff_iszero: |
|
845 |
"numeral x = numeral y \<longleftrightarrow> iszero (sub x y)" |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
846 |
"numeral x = - numeral y \<longleftrightarrow> iszero (numeral (x + y))" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
847 |
"- numeral x = numeral y \<longleftrightarrow> iszero (numeral (x + y))" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
848 |
"- numeral x = - numeral y \<longleftrightarrow> iszero (sub y x)" |
47108 | 849 |
"numeral x = 1 \<longleftrightarrow> iszero (sub x One)" |
850 |
"1 = numeral y \<longleftrightarrow> iszero (sub One y)" |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
851 |
"- numeral x = 1 \<longleftrightarrow> iszero (numeral (x + One))" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
852 |
"1 = - numeral y \<longleftrightarrow> iszero (numeral (One + y))" |
47108 | 853 |
"numeral x = 0 \<longleftrightarrow> iszero (numeral x)" |
854 |
"0 = numeral y \<longleftrightarrow> iszero (numeral y)" |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
855 |
"- numeral x = 0 \<longleftrightarrow> iszero (numeral x)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
856 |
"0 = - numeral y \<longleftrightarrow> iszero (numeral y)" |
47108 | 857 |
unfolding eq_iff_iszero_diff diff_numeral_simps diff_numeral_special |
858 |
by simp_all |
|
859 |
||
860 |
end |
|
861 |
||
63654 | 862 |
|
863 |
subsubsection \<open>Equality and negation: class \<open>ring_char_0\<close>\<close> |
|
47108 | 864 |
|
62481
b5d8e57826df
tuned bootstrap order to provide type classes in a more sensible order
haftmann
parents:
62348
diff
changeset
|
865 |
context ring_char_0 |
47108 | 866 |
begin |
867 |
||
868 |
lemma not_iszero_numeral [simp]: "\<not> iszero (numeral w)" |
|
869 |
by (simp add: iszero_def) |
|
870 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
871 |
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
|
872 |
by simp |
47108 | 873 |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
874 |
lemma numeral_neq_neg_numeral: "numeral m \<noteq> - numeral n" |
63654 | 875 |
by (simp add: eq_neg_iff_add_eq_0 numeral_plus_numeral) |
47108 | 876 |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
877 |
lemma neg_numeral_neq_numeral: "- numeral m \<noteq> numeral n" |
47108 | 878 |
by (rule numeral_neq_neg_numeral [symmetric]) |
879 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
880 |
lemma zero_neq_neg_numeral: "0 \<noteq> - numeral n" |
63654 | 881 |
by simp |
47108 | 882 |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
883 |
lemma neg_numeral_neq_zero: "- numeral n \<noteq> 0" |
63654 | 884 |
by simp |
47108 | 885 |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
886 |
lemma one_neq_neg_numeral: "1 \<noteq> - numeral n" |
47108 | 887 |
using numeral_neq_neg_numeral [of One n] by (simp add: numeral_One) |
888 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
889 |
lemma neg_numeral_neq_one: "- numeral n \<noteq> 1" |
47108 | 890 |
using neg_numeral_neq_numeral [of n One] by (simp add: numeral_One) |
891 |
||
63654 | 892 |
lemma neg_one_neq_numeral: "- 1 \<noteq> numeral n" |
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
893 |
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
|
894 |
|
63654 | 895 |
lemma numeral_neq_neg_one: "numeral n \<noteq> - 1" |
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
896 |
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
|
897 |
|
63654 | 898 |
lemma neg_one_eq_numeral_iff: "- 1 = - numeral n \<longleftrightarrow> n = One" |
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
899 |
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
|
900 |
|
63654 | 901 |
lemma numeral_eq_neg_one_iff: "- numeral n = - 1 \<longleftrightarrow> n = One" |
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
902 |
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
|
903 |
|
63654 | 904 |
lemma neg_one_neq_zero: "- 1 \<noteq> 0" |
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
905 |
by simp |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
906 |
|
63654 | 907 |
lemma zero_neq_neg_one: "0 \<noteq> - 1" |
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
908 |
by simp |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
909 |
|
63654 | 910 |
lemma neg_one_neq_one: "- 1 \<noteq> 1" |
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
911 |
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
|
912 |
|
63654 | 913 |
lemma one_neq_neg_one: "1 \<noteq> - 1" |
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
914 |
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
|
915 |
|
47108 | 916 |
lemmas eq_neg_numeral_simps [simp] = |
917 |
neg_numeral_eq_iff |
|
918 |
numeral_neq_neg_numeral neg_numeral_neq_numeral |
|
919 |
one_neq_neg_numeral neg_numeral_neq_one |
|
920 |
zero_neq_neg_numeral neg_numeral_neq_zero |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
921 |
neg_one_neq_numeral numeral_neq_neg_one |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
922 |
neg_one_eq_numeral_iff numeral_eq_neg_one_iff |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
923 |
neg_one_neq_zero zero_neq_neg_one |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
924 |
neg_one_neq_one one_neq_neg_one |
47108 | 925 |
|
926 |
end |
|
927 |
||
62348 | 928 |
|
63654 | 929 |
subsubsection \<open>Structures with negation and order: class \<open>linordered_idom\<close>\<close> |
47108 | 930 |
|
931 |
context linordered_idom |
|
932 |
begin |
|
933 |
||
934 |
subclass ring_char_0 .. |
|
935 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
936 |
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
|
937 |
by (simp only: neg_le_iff_le numeral_le_iff) |
47108 | 938 |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
939 |
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
|
940 |
by (simp only: neg_less_iff_less numeral_less_iff) |
47108 | 941 |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
942 |
lemma neg_numeral_less_zero: "- numeral n < 0" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
943 |
by (simp only: neg_less_0_iff_less zero_less_numeral) |
47108 | 944 |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
945 |
lemma neg_numeral_le_zero: "- numeral n \<le> 0" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
946 |
by (simp only: neg_le_0_iff_le zero_le_numeral) |
47108 | 947 |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
948 |
lemma not_zero_less_neg_numeral: "\<not> 0 < - numeral n" |
47108 | 949 |
by (simp only: not_less neg_numeral_le_zero) |
950 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
951 |
lemma not_zero_le_neg_numeral: "\<not> 0 \<le> - numeral n" |
47108 | 952 |
by (simp only: not_le neg_numeral_less_zero) |
953 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
954 |
lemma neg_numeral_less_numeral: "- numeral m < numeral n" |
47108 | 955 |
using neg_numeral_less_zero zero_less_numeral by (rule less_trans) |
956 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
957 |
lemma neg_numeral_le_numeral: "- numeral m \<le> numeral n" |
47108 | 958 |
by (simp only: less_imp_le neg_numeral_less_numeral) |
959 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
960 |
lemma not_numeral_less_neg_numeral: "\<not> numeral m < - numeral n" |
47108 | 961 |
by (simp only: not_less neg_numeral_le_numeral) |
962 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
963 |
lemma not_numeral_le_neg_numeral: "\<not> numeral m \<le> - numeral n" |
47108 | 964 |
by (simp only: not_le neg_numeral_less_numeral) |
63654 | 965 |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
966 |
lemma neg_numeral_less_one: "- numeral m < 1" |
47108 | 967 |
by (rule neg_numeral_less_numeral [of m One, unfolded numeral_One]) |
968 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
969 |
lemma neg_numeral_le_one: "- numeral m \<le> 1" |
47108 | 970 |
by (rule neg_numeral_le_numeral [of m One, unfolded numeral_One]) |
971 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
972 |
lemma not_one_less_neg_numeral: "\<not> 1 < - numeral m" |
47108 | 973 |
by (simp only: not_less neg_numeral_le_one) |
974 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
975 |
lemma not_one_le_neg_numeral: "\<not> 1 \<le> - numeral m" |
47108 | 976 |
by (simp only: not_le neg_numeral_less_one) |
977 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
978 |
lemma not_numeral_less_neg_one: "\<not> numeral m < - 1" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
979 |
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
|
980 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
981 |
lemma not_numeral_le_neg_one: "\<not> numeral m \<le> - 1" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
982 |
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
|
983 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
984 |
lemma neg_one_less_numeral: "- 1 < numeral m" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
985 |
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
|
986 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
987 |
lemma neg_one_le_numeral: "- 1 \<le> numeral m" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
988 |
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
|
989 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
990 |
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
|
991 |
by (cases m) simp_all |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
992 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
993 |
lemma neg_numeral_le_neg_one: "- numeral m \<le> - 1" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
994 |
by simp |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
995 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
996 |
lemma not_neg_one_less_neg_numeral: "\<not> - 1 < - numeral m" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
997 |
by simp |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
998 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
999 |
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
|
1000 |
by (cases m) simp_all |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1001 |
|
63654 | 1002 |
lemma sub_non_negative: "sub n m \<ge> 0 \<longleftrightarrow> n \<ge> m" |
47108 | 1003 |
by (simp only: sub_def le_diff_eq) simp |
1004 |
||
63654 | 1005 |
lemma sub_positive: "sub n m > 0 \<longleftrightarrow> n > m" |
47108 | 1006 |
by (simp only: sub_def less_diff_eq) simp |
1007 |
||
63654 | 1008 |
lemma sub_non_positive: "sub n m \<le> 0 \<longleftrightarrow> n \<le> m" |
47108 | 1009 |
by (simp only: sub_def diff_le_eq) simp |
1010 |
||
63654 | 1011 |
lemma sub_negative: "sub n m < 0 \<longleftrightarrow> n < m" |
47108 | 1012 |
by (simp only: sub_def diff_less_eq) simp |
1013 |
||
1014 |
lemmas le_neg_numeral_simps [simp] = |
|
1015 |
neg_numeral_le_iff |
|
1016 |
neg_numeral_le_numeral not_numeral_le_neg_numeral |
|
1017 |
neg_numeral_le_zero not_zero_le_neg_numeral |
|
1018 |
neg_numeral_le_one not_one_le_neg_numeral |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1019 |
neg_one_le_numeral not_numeral_le_neg_one |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1020 |
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
|
1021 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1022 |
lemma le_minus_one_simps [simp]: |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1023 |
"- 1 \<le> 0" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1024 |
"- 1 \<le> 1" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1025 |
"\<not> 0 \<le> - 1" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1026 |
"\<not> 1 \<le> - 1" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1027 |
by simp_all |
47108 | 1028 |
|
1029 |
lemmas less_neg_numeral_simps [simp] = |
|
1030 |
neg_numeral_less_iff |
|
1031 |
neg_numeral_less_numeral not_numeral_less_neg_numeral |
|
1032 |
neg_numeral_less_zero not_zero_less_neg_numeral |
|
1033 |
neg_numeral_less_one not_one_less_neg_numeral |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1034 |
neg_one_less_numeral not_numeral_less_neg_one |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1035 |
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
|
1036 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1037 |
lemma less_minus_one_simps [simp]: |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1038 |
"- 1 < 0" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1039 |
"- 1 < 1" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1040 |
"\<not> 0 < - 1" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1041 |
"\<not> 1 < - 1" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1042 |
by (simp_all add: less_le) |
47108 | 1043 |
|
61944 | 1044 |
lemma abs_numeral [simp]: "\<bar>numeral n\<bar> = numeral n" |
47108 | 1045 |
by simp |
1046 |
||
61944 | 1047 |
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
|
1048 |
by (simp only: abs_minus_cancel abs_numeral) |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1049 |
|
61944 | 1050 |
lemma abs_neg_one [simp]: "\<bar>- 1\<bar> = 1" |
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1051 |
by simp |
47108 | 1052 |
|
1053 |
end |
|
1054 |
||
63654 | 1055 |
|
1056 |
subsubsection \<open>Natural numbers\<close> |
|
47108 | 1057 |
|
67959 | 1058 |
lemma numeral_num_of_nat: |
1059 |
"numeral (num_of_nat n) = n" if "n > 0" |
|
1060 |
using that nat_of_num_numeral num_of_nat_inverse by simp |
|
1061 |
||
47299 | 1062 |
lemma Suc_1 [simp]: "Suc 1 = 2" |
1063 |
unfolding Suc_eq_plus1 by (rule one_add_one) |
|
1064 |
||
47108 | 1065 |
lemma Suc_numeral [simp]: "Suc (numeral n) = numeral (n + One)" |
47299 | 1066 |
unfolding Suc_eq_plus1 by (rule numeral_plus_one) |
47108 | 1067 |
|
47209
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1068 |
definition pred_numeral :: "num \<Rightarrow> nat" |
67959 | 1069 |
where "pred_numeral k = numeral k - 1" |
1070 |
||
1071 |
declare [[code drop: pred_numeral]] |
|
47209
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1072 |
|
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1073 |
lemma numeral_eq_Suc: "numeral k = Suc (pred_numeral k)" |
63654 | 1074 |
by (simp add: pred_numeral_def) |
47209
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1075 |
|
47220
52426c62b5d0
replace lemmas eval_nat_numeral with a simpler reformulation
huffman
parents:
47218
diff
changeset
|
1076 |
lemma eval_nat_numeral: |
47108 | 1077 |
"numeral One = Suc 0" |
1078 |
"numeral (Bit0 n) = Suc (numeral (BitM n))" |
|
1079 |
"numeral (Bit1 n) = Suc (numeral (Bit0 n))" |
|
1080 |
by (simp_all add: numeral.simps BitM_plus_one) |
|
1081 |
||
47209
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1082 |
lemma pred_numeral_simps [simp]: |
47300 | 1083 |
"pred_numeral One = 0" |
1084 |
"pred_numeral (Bit0 k) = numeral (BitM k)" |
|
1085 |
"pred_numeral (Bit1 k) = numeral (Bit0 k)" |
|
63654 | 1086 |
by (simp_all only: pred_numeral_def eval_nat_numeral diff_Suc_Suc diff_0) |
47209
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1087 |
|
67959 | 1088 |
lemma pred_numeral_inc [simp]: |
1089 |
"pred_numeral (Num.inc k) = numeral k" |
|
1090 |
by (simp only: pred_numeral_def numeral_inc diff_add_inverse2) |
|
1091 |
||
47192
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
1092 |
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
|
1093 |
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
|
1094 |
|
0c0501cb6da6
move many lemmas from Nat_Numeral.thy to Power.thy or Num.thy
huffman
parents:
47191
diff
changeset
|
1095 |
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
|
1096 |
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
|
1097 |
|
47207
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents:
47192
diff
changeset
|
1098 |
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
|
1099 |
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
|
1100 |
|
63654 | 1101 |
lemma Suc_nat_number_of_add: "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
|
1102 |
by simp |
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents:
47192
diff
changeset
|
1103 |
|
63654 | 1104 |
lemma numerals: "Numeral1 = (1::nat)" "2 = Suc (Suc 0)" |
1105 |
by (rule numeral_One) (rule numeral_2_eq_2) |
|
47207
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
huffman
parents:
47192
diff
changeset
|
1106 |
|
63913 | 1107 |
lemmas numeral_nat = eval_nat_numeral BitM.simps One_nat_def |
1108 |
||
69593 | 1109 |
text \<open>Comparisons involving \<^term>\<open>Suc\<close>.\<close> |
47209
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1110 |
|
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1111 |
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
|
1112 |
by (simp add: numeral_eq_Suc) |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1113 |
|
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1114 |
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
|
1115 |
by (simp add: numeral_eq_Suc) |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1116 |
|
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1117 |
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
|
1118 |
by (simp add: numeral_eq_Suc) |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1119 |
|
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1120 |
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
|
1121 |
by (simp add: numeral_eq_Suc) |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1122 |
|
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1123 |
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
|
1124 |
by (simp add: numeral_eq_Suc) |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1125 |
|
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1126 |
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
|
1127 |
by (simp add: numeral_eq_Suc) |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1128 |
|
47218
2b652cbadde1
new lemmas for simplifying subtraction on nat numerals
huffman
parents:
47216
diff
changeset
|
1129 |
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
|
1130 |
by (simp add: numeral_eq_Suc) |
2b652cbadde1
new lemmas for simplifying subtraction on nat numerals
huffman
parents:
47216
diff
changeset
|
1131 |
|
2b652cbadde1
new lemmas for simplifying subtraction on nat numerals
huffman
parents:
47216
diff
changeset
|
1132 |
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
|
1133 |
by (simp add: numeral_eq_Suc) |
2b652cbadde1
new lemmas for simplifying subtraction on nat numerals
huffman
parents:
47216
diff
changeset
|
1134 |
|
63654 | 1135 |
lemma max_Suc_numeral [simp]: "max (Suc n) (numeral k) = Suc (max n (pred_numeral k))" |
47209
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1136 |
by (simp add: numeral_eq_Suc) |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1137 |
|
63654 | 1138 |
lemma max_numeral_Suc [simp]: "max (numeral k) (Suc n) = Suc (max (pred_numeral k) n)" |
47209
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1139 |
by (simp add: numeral_eq_Suc) |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1140 |
|
63654 | 1141 |
lemma min_Suc_numeral [simp]: "min (Suc n) (numeral k) = Suc (min n (pred_numeral k))" |
47209
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1142 |
by (simp add: numeral_eq_Suc) |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1143 |
|
63654 | 1144 |
lemma min_numeral_Suc [simp]: "min (numeral k) (Suc n) = Suc (min (pred_numeral k) n)" |
47209
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1145 |
by (simp add: numeral_eq_Suc) |
4893907fe872
add constant pred_numeral k = numeral k - (1::nat);
huffman
parents:
47207
diff
changeset
|
1146 |
|
69593 | 1147 |
text \<open>For \<^term>\<open>case_nat\<close> and \<^term>\<open>rec_nat\<close>.\<close> |
47216
4d0878d54ca5
move more theorems from Nat_Numeral.thy to Num.thy
huffman
parents:
47211
diff
changeset
|
1148 |
|
63654 | 1149 |
lemma case_nat_numeral [simp]: "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
|
1150 |
by (simp add: numeral_eq_Suc) |
4d0878d54ca5
move more theorems from Nat_Numeral.thy to Num.thy
huffman
parents:
47211
diff
changeset
|
1151 |
|
55415 | 1152 |
lemma case_nat_add_eq_if [simp]: |
1153 |
"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
|
1154 |
by (simp add: numeral_eq_Suc) |
4d0878d54ca5
move more theorems from Nat_Numeral.thy to Num.thy
huffman
parents:
47211
diff
changeset
|
1155 |
|
55415 | 1156 |
lemma rec_nat_numeral [simp]: |
63654 | 1157 |
"rec_nat a f (numeral v) = (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
|
1158 |
by (simp add: numeral_eq_Suc Let_def) |
4d0878d54ca5
move more theorems from Nat_Numeral.thy to Num.thy
huffman
parents:
47211
diff
changeset
|
1159 |
|
55415 | 1160 |
lemma rec_nat_add_eq_if [simp]: |
63654 | 1161 |
"rec_nat a f (numeral v + n) = (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
|
1162 |
by (simp add: numeral_eq_Suc Let_def) |
4d0878d54ca5
move more theorems from Nat_Numeral.thy to Num.thy
huffman
parents:
47211
diff
changeset
|
1163 |
|
69593 | 1164 |
text \<open>Case analysis on \<^term>\<open>n < 2\<close>.\<close> |
47255
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents:
47228
diff
changeset
|
1165 |
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
|
1166 |
by (auto simp add: numeral_2_eq_2) |
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents:
47228
diff
changeset
|
1167 |
|
71452 | 1168 |
lemma less_2_cases_iff: "n < 2 \<longleftrightarrow> n = 0 \<or> n = Suc 0" |
1169 |
by (auto simp add: numeral_2_eq_2) |
|
1170 |
||
63654 | 1171 |
text \<open>Removal of Small Numerals: 0, 1 and (in additive positions) 2.\<close> |
71452 | 1172 |
text \<open>bh: Are these rules really a good idea? LCP: well, it already happens for 0 and 1!\<close> |
47255
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents:
47228
diff
changeset
|
1173 |
|
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents:
47228
diff
changeset
|
1174 |
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
|
1175 |
by simp |
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents:
47228
diff
changeset
|
1176 |
|
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents:
47228
diff
changeset
|
1177 |
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
|
1178 |
by simp |
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents:
47228
diff
changeset
|
1179 |
|
60758 | 1180 |
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
|
1181 |
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
|
1182 |
by simp |
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents:
47228
diff
changeset
|
1183 |
|
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
huffman
parents:
47228
diff
changeset
|
1184 |
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
|
1185 |
|
71760 | 1186 |
context semiring_numeral |
1187 |
begin |
|
1188 |
||
1189 |
lemma numeral_add_unfold_funpow: |
|
1190 |
\<open>numeral k + a = ((+) 1 ^^ numeral k) a\<close> |
|
1191 |
proof (rule sym, induction k arbitrary: a) |
|
1192 |
case One |
|
1193 |
then show ?case |
|
1194 |
by (simp add: numeral_One Num.numeral_One) |
|
1195 |
next |
|
1196 |
case (Bit0 k) |
|
1197 |
then show ?case |
|
1198 |
by (simp add: numeral_Bit0 Num.numeral_Bit0 ac_simps funpow_add) |
|
1199 |
next |
|
1200 |
case (Bit1 k) |
|
1201 |
then show ?case |
|
1202 |
by (simp add: numeral_Bit1 Num.numeral_Bit1 ac_simps funpow_add) |
|
1203 |
qed |
|
1204 |
||
1205 |
end |
|
1206 |
||
1207 |
context semiring_1 |
|
1208 |
begin |
|
1209 |
||
1210 |
lemma numeral_unfold_funpow: |
|
1211 |
\<open>numeral k = ((+) 1 ^^ numeral k) 0\<close> |
|
1212 |
using numeral_add_unfold_funpow [of k 0] by simp |
|
1213 |
||
1214 |
end |
|
1215 |
||
1216 |
context |
|
1217 |
includes lifting_syntax |
|
1218 |
begin |
|
1219 |
||
1220 |
lemma transfer_rule_numeral: |
|
1221 |
\<open>((=) ===> R) numeral numeral\<close> |
|
1222 |
if [transfer_rule]: \<open>R 0 0\<close> \<open>R 1 1\<close> |
|
1223 |
\<open>(R ===> R ===> R) (+) (+)\<close> |
|
1224 |
for R :: \<open>'a::{semiring_numeral,monoid_add} \<Rightarrow> 'b::{semiring_numeral,monoid_add} \<Rightarrow> bool\<close> |
|
1225 |
proof - |
|
1226 |
have "((=) ===> R) (\<lambda>k. ((+) 1 ^^ numeral k) 0) (\<lambda>k. ((+) 1 ^^ numeral k) 0)" |
|
1227 |
by transfer_prover |
|
1228 |
moreover have \<open>numeral = (\<lambda>k. ((+) (1::'a) ^^ numeral k) 0)\<close> |
|
1229 |
using numeral_add_unfold_funpow [where ?'a = 'a, of _ 0] |
|
1230 |
by (simp add: fun_eq_iff) |
|
1231 |
moreover have \<open>numeral = (\<lambda>k. ((+) (1::'b) ^^ numeral k) 0)\<close> |
|
1232 |
using numeral_add_unfold_funpow [where ?'a = 'b, of _ 0] |
|
1233 |
by (simp add: fun_eq_iff) |
|
1234 |
ultimately show ?thesis |
|
1235 |
by simp |
|
1236 |
qed |
|
1237 |
||
1238 |
end |
|
1239 |
||
47108 | 1240 |
|
69593 | 1241 |
subsection \<open>Particular lemmas concerning \<^term>\<open>2\<close>\<close> |
58512
dc4d76dfa8f0
moved lemmas out of Int.thy which have nothing to do with int
haftmann
parents:
58421
diff
changeset
|
1242 |
|
59867
58043346ca64
given up separate type classes demanding `inverse 0 = 0`
haftmann
parents:
59621
diff
changeset
|
1243 |
context linordered_field |
58512
dc4d76dfa8f0
moved lemmas out of Int.thy which have nothing to do with int
haftmann
parents:
58421
diff
changeset
|
1244 |
begin |
dc4d76dfa8f0
moved lemmas out of Int.thy which have nothing to do with int
haftmann
parents:
58421
diff
changeset
|
1245 |
|
62348 | 1246 |
subclass field_char_0 .. |
1247 |
||
63654 | 1248 |
lemma half_gt_zero_iff: "0 < a / 2 \<longleftrightarrow> 0 < a" |
58512
dc4d76dfa8f0
moved lemmas out of Int.thy which have nothing to do with int
haftmann
parents:
58421
diff
changeset
|
1249 |
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
|
1250 |
|
63654 | 1251 |
lemma half_gt_zero [simp]: "0 < a \<Longrightarrow> 0 < a / 2" |
58512
dc4d76dfa8f0
moved lemmas out of Int.thy which have nothing to do with int
haftmann
parents:
58421
diff
changeset
|
1252 |
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
|
1253 |
|
dc4d76dfa8f0
moved lemmas out of Int.thy which have nothing to do with int
haftmann
parents:
58421
diff
changeset
|
1254 |
end |
dc4d76dfa8f0
moved lemmas out of Int.thy which have nothing to do with int
haftmann
parents:
58421
diff
changeset
|
1255 |
|
dc4d76dfa8f0
moved lemmas out of Int.thy which have nothing to do with int
haftmann
parents:
58421
diff
changeset
|
1256 |
|
60758 | 1257 |
subsection \<open>Numeral equations as default simplification rules\<close> |
47108 | 1258 |
|
1259 |
declare (in numeral) numeral_One [simp] |
|
1260 |
declare (in numeral) numeral_plus_numeral [simp] |
|
1261 |
declare (in numeral) add_numeral_special [simp] |
|
1262 |
declare (in neg_numeral) add_neg_numeral_simps [simp] |
|
1263 |
declare (in neg_numeral) add_neg_numeral_special [simp] |
|
1264 |
declare (in neg_numeral) diff_numeral_simps [simp] |
|
1265 |
declare (in neg_numeral) diff_numeral_special [simp] |
|
1266 |
declare (in semiring_numeral) numeral_times_numeral [simp] |
|
1267 |
declare (in ring_1) mult_neg_numeral_simps [simp] |
|
1268 |
||
67116 | 1269 |
|
1270 |
subsubsection \<open>Special Simplification for Constants\<close> |
|
1271 |
||
1272 |
text \<open>These distributive laws move literals inside sums and differences.\<close> |
|
1273 |
||
1274 |
lemmas distrib_right_numeral [simp] = distrib_right [of _ _ "numeral v"] for v |
|
1275 |
lemmas distrib_left_numeral [simp] = distrib_left [of "numeral v"] for v |
|
1276 |
lemmas left_diff_distrib_numeral [simp] = left_diff_distrib [of _ _ "numeral v"] for v |
|
1277 |
lemmas right_diff_distrib_numeral [simp] = right_diff_distrib [of "numeral v"] for v |
|
1278 |
||
1279 |
text \<open>These are actually for fields, like real\<close> |
|
1280 |
||
1281 |
lemmas zero_less_divide_iff_numeral [simp, no_atp] = zero_less_divide_iff [of "numeral w"] for w |
|
1282 |
lemmas divide_less_0_iff_numeral [simp, no_atp] = divide_less_0_iff [of "numeral w"] for w |
|
1283 |
lemmas zero_le_divide_iff_numeral [simp, no_atp] = zero_le_divide_iff [of "numeral w"] for w |
|
1284 |
lemmas divide_le_0_iff_numeral [simp, no_atp] = divide_le_0_iff [of "numeral w"] for w |
|
1285 |
||
1286 |
text \<open>Replaces \<open>inverse #nn\<close> by \<open>1/#nn\<close>. It looks |
|
1287 |
strange, but then other simprocs simplify the quotient.\<close> |
|
1288 |
||
1289 |
lemmas inverse_eq_divide_numeral [simp] = |
|
1290 |
inverse_eq_divide [of "numeral w"] for w |
|
1291 |
||
1292 |
lemmas inverse_eq_divide_neg_numeral [simp] = |
|
1293 |
inverse_eq_divide [of "- numeral w"] for w |
|
1294 |
||
1295 |
text \<open>These laws simplify inequalities, moving unary minus from a term |
|
1296 |
into the literal.\<close> |
|
1297 |
||
1298 |
lemmas equation_minus_iff_numeral [no_atp] = |
|
1299 |
equation_minus_iff [of "numeral v"] for v |
|
1300 |
||
1301 |
lemmas minus_equation_iff_numeral [no_atp] = |
|
1302 |
minus_equation_iff [of _ "numeral v"] for v |
|
1303 |
||
1304 |
lemmas le_minus_iff_numeral [no_atp] = |
|
1305 |
le_minus_iff [of "numeral v"] for v |
|
1306 |
||
1307 |
lemmas minus_le_iff_numeral [no_atp] = |
|
1308 |
minus_le_iff [of _ "numeral v"] for v |
|
1309 |
||
1310 |
lemmas less_minus_iff_numeral [no_atp] = |
|
1311 |
less_minus_iff [of "numeral v"] for v |
|
1312 |
||
1313 |
lemmas minus_less_iff_numeral [no_atp] = |
|
1314 |
minus_less_iff [of _ "numeral v"] for v |
|
1315 |
||
1316 |
(* FIXME maybe simproc *) |
|
1317 |
||
1318 |
text \<open>Cancellation of constant factors in comparisons (\<open><\<close> and \<open>\<le>\<close>)\<close> |
|
1319 |
||
1320 |
lemmas mult_less_cancel_left_numeral [simp, no_atp] = mult_less_cancel_left [of "numeral v"] for v |
|
1321 |
lemmas mult_less_cancel_right_numeral [simp, no_atp] = mult_less_cancel_right [of _ "numeral v"] for v |
|
1322 |
lemmas mult_le_cancel_left_numeral [simp, no_atp] = mult_le_cancel_left [of "numeral v"] for v |
|
1323 |
lemmas mult_le_cancel_right_numeral [simp, no_atp] = mult_le_cancel_right [of _ "numeral v"] for v |
|
1324 |
||
1325 |
text \<open>Multiplying out constant divisors in comparisons (\<open><\<close>, \<open>\<le>\<close> and \<open>=\<close>)\<close> |
|
1326 |
||
1327 |
named_theorems divide_const_simps "simplification rules to simplify comparisons involving constant divisors" |
|
1328 |
||
1329 |
lemmas le_divide_eq_numeral1 [simp,divide_const_simps] = |
|
1330 |
pos_le_divide_eq [of "numeral w", OF zero_less_numeral] |
|
1331 |
neg_le_divide_eq [of "- numeral w", OF neg_numeral_less_zero] for w |
|
1332 |
||
1333 |
lemmas divide_le_eq_numeral1 [simp,divide_const_simps] = |
|
1334 |
pos_divide_le_eq [of "numeral w", OF zero_less_numeral] |
|
1335 |
neg_divide_le_eq [of "- numeral w", OF neg_numeral_less_zero] for w |
|
1336 |
||
1337 |
lemmas less_divide_eq_numeral1 [simp,divide_const_simps] = |
|
1338 |
pos_less_divide_eq [of "numeral w", OF zero_less_numeral] |
|
1339 |
neg_less_divide_eq [of "- numeral w", OF neg_numeral_less_zero] for w |
|
1340 |
||
1341 |
lemmas divide_less_eq_numeral1 [simp,divide_const_simps] = |
|
1342 |
pos_divide_less_eq [of "numeral w", OF zero_less_numeral] |
|
1343 |
neg_divide_less_eq [of "- numeral w", OF neg_numeral_less_zero] for w |
|
1344 |
||
1345 |
lemmas eq_divide_eq_numeral1 [simp,divide_const_simps] = |
|
1346 |
eq_divide_eq [of _ _ "numeral w"] |
|
1347 |
eq_divide_eq [of _ _ "- numeral w"] for w |
|
1348 |
||
1349 |
lemmas divide_eq_eq_numeral1 [simp,divide_const_simps] = |
|
1350 |
divide_eq_eq [of _ "numeral w"] |
|
1351 |
divide_eq_eq [of _ "- numeral w"] for w |
|
1352 |
||
1353 |
||
1354 |
subsubsection \<open>Optional Simplification Rules Involving Constants\<close> |
|
1355 |
||
1356 |
text \<open>Simplify quotients that are compared with a literal constant.\<close> |
|
1357 |
||
1358 |
lemmas le_divide_eq_numeral [divide_const_simps] = |
|
1359 |
le_divide_eq [of "numeral w"] |
|
1360 |
le_divide_eq [of "- numeral w"] for w |
|
1361 |
||
1362 |
lemmas divide_le_eq_numeral [divide_const_simps] = |
|
1363 |
divide_le_eq [of _ _ "numeral w"] |
|
1364 |
divide_le_eq [of _ _ "- numeral w"] for w |
|
1365 |
||
1366 |
lemmas less_divide_eq_numeral [divide_const_simps] = |
|
1367 |
less_divide_eq [of "numeral w"] |
|
1368 |
less_divide_eq [of "- numeral w"] for w |
|
1369 |
||
1370 |
lemmas divide_less_eq_numeral [divide_const_simps] = |
|
1371 |
divide_less_eq [of _ _ "numeral w"] |
|
1372 |
divide_less_eq [of _ _ "- numeral w"] for w |
|
1373 |
||
1374 |
lemmas eq_divide_eq_numeral [divide_const_simps] = |
|
1375 |
eq_divide_eq [of "numeral w"] |
|
1376 |
eq_divide_eq [of "- numeral w"] for w |
|
1377 |
||
1378 |
lemmas divide_eq_eq_numeral [divide_const_simps] = |
|
1379 |
divide_eq_eq [of _ _ "numeral w"] |
|
1380 |
divide_eq_eq [of _ _ "- numeral w"] for w |
|
1381 |
||
1382 |
text \<open>Not good as automatic simprules because they cause case splits.\<close> |
|
1383 |
||
1384 |
lemmas [divide_const_simps] = |
|
1385 |
le_divide_eq_1 divide_le_eq_1 less_divide_eq_1 divide_less_eq_1 |
|
1386 |
||
1387 |
||
60758 | 1388 |
subsection \<open>Setting up simprocs\<close> |
47108 | 1389 |
|
63654 | 1390 |
lemma mult_numeral_1: "Numeral1 * a = a" |
1391 |
for a :: "'a::semiring_numeral" |
|
47108 | 1392 |
by simp |
1393 |
||
63654 | 1394 |
lemma mult_numeral_1_right: "a * Numeral1 = a" |
1395 |
for a :: "'a::semiring_numeral" |
|
47108 | 1396 |
by simp |
1397 |
||
63654 | 1398 |
lemma divide_numeral_1: "a / Numeral1 = a" |
1399 |
for a :: "'a::field" |
|
47108 | 1400 |
by simp |
1401 |
||
63654 | 1402 |
lemma inverse_numeral_1: "inverse Numeral1 = (Numeral1::'a::division_ring)" |
47108 | 1403 |
by simp |
1404 |
||
63654 | 1405 |
text \<open> |
1406 |
Theorem lists for the cancellation simprocs. The use of a binary |
|
1407 |
numeral for 1 reduces the number of special cases. |
|
1408 |
\<close> |
|
47108 | 1409 |
|
68536 | 1410 |
lemma mult_1s_semiring_numeral: |
63654 | 1411 |
"Numeral1 * a = a" |
1412 |
"a * Numeral1 = a" |
|
68536 | 1413 |
for a :: "'a::semiring_numeral" |
1414 |
by simp_all |
|
1415 |
||
1416 |
lemma mult_1s_ring_1: |
|
63654 | 1417 |
"- Numeral1 * b = - b" |
1418 |
"b * - Numeral1 = - b" |
|
68536 | 1419 |
for b :: "'a::ring_1" |
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1420 |
by simp_all |
47108 | 1421 |
|
68536 | 1422 |
lemmas mult_1s = mult_1s_semiring_numeral mult_1s_ring_1 |
1423 |
||
60758 | 1424 |
setup \<open> |
47226 | 1425 |
Reorient_Proc.add |
69593 | 1426 |
(fn Const (\<^const_name>\<open>numeral\<close>, _) $ _ => true |
1427 |
| Const (\<^const_name>\<open>uminus\<close>, _) $ (Const (\<^const_name>\<open>numeral\<close>, _) $ _) => true |
|
63654 | 1428 |
| _ => false) |
60758 | 1429 |
\<close> |
47226 | 1430 |
|
63654 | 1431 |
simproc_setup reorient_numeral ("numeral w = x" | "- numeral w = y") = |
78099
4d9349989d94
more uniform simproc_setup: avoid vacuous abstraction over morphism, which sometimes captures context values in its functional closure;
wenzelm
parents:
75669
diff
changeset
|
1432 |
\<open>K Reorient_Proc.proc\<close> |
47226 | 1433 |
|
47108 | 1434 |
|
63654 | 1435 |
subsubsection \<open>Simplification of arithmetic operations on integer constants\<close> |
47108 | 1436 |
|
1437 |
lemmas arith_special = (* already declared simp above *) |
|
1438 |
add_numeral_special add_neg_numeral_special |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1439 |
diff_numeral_special |
47108 | 1440 |
|
63654 | 1441 |
lemmas arith_extra_simps = (* rules already in simpset *) |
47108 | 1442 |
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
|
1443 |
minus_zero |
47108 | 1444 |
diff_numeral_simps diff_0 diff_0_right |
1445 |
numeral_times_numeral mult_neg_numeral_simps |
|
1446 |
mult_zero_left mult_zero_right |
|
1447 |
abs_numeral abs_neg_numeral |
|
1448 |
||
60758 | 1449 |
text \<open> |
47108 | 1450 |
For making a minimal simpset, one must include these default simprules. |
61799 | 1451 |
Also include \<open>simp_thms\<close>. |
60758 | 1452 |
\<close> |
47108 | 1453 |
|
1454 |
lemmas arith_simps = |
|
1455 |
add_num_simps mult_num_simps sub_num_simps |
|
1456 |
BitM.simps dbl_simps dbl_inc_simps dbl_dec_simps |
|
1457 |
abs_zero abs_one arith_extra_simps |
|
1458 |
||
54249 | 1459 |
lemmas more_arith_simps = |
1460 |
neg_le_iff_le |
|
1461 |
minus_zero left_minus right_minus |
|
1462 |
mult_1_left mult_1_right |
|
1463 |
mult_minus_left mult_minus_right |
|
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
55974
diff
changeset
|
1464 |
minus_add_distrib minus_minus mult.assoc |
54249 | 1465 |
|
1466 |
lemmas of_nat_simps = |
|
1467 |
of_nat_0 of_nat_1 of_nat_Suc of_nat_add of_nat_mult |
|
1468 |
||
63654 | 1469 |
text \<open>Simplification of relational operations.\<close> |
47108 | 1470 |
|
1471 |
lemmas eq_numeral_extra = |
|
1472 |
zero_neq_one one_neq_zero |
|
1473 |
||
1474 |
lemmas rel_simps = |
|
1475 |
le_num_simps less_num_simps eq_num_simps |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1476 |
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
|
1477 |
less_numeral_simps less_neg_numeral_simps less_minus_one_simps less_numeral_extra |
47108 | 1478 |
eq_numeral_simps eq_neg_numeral_simps eq_numeral_extra |
1479 |
||
54249 | 1480 |
lemma Let_numeral [simp]: "Let (numeral v) f = f (numeral v)" |
61799 | 1481 |
\<comment> \<open>Unfold all \<open>let\<close>s involving constants\<close> |
54249 | 1482 |
unfolding Let_def .. |
1483 |
||
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1484 |
lemma Let_neg_numeral [simp]: "Let (- numeral v) f = f (- numeral v)" |
61799 | 1485 |
\<comment> \<open>Unfold all \<open>let\<close>s involving constants\<close> |
54249 | 1486 |
unfolding Let_def .. |
1487 |
||
60758 | 1488 |
declaration \<open> |
63654 | 1489 |
let |
59996 | 1490 |
fun number_of ctxt T n = |
69593 | 1491 |
if not (Sign.of_sort (Proof_Context.theory_of ctxt) (T, \<^sort>\<open>numeral\<close>)) |
54249 | 1492 |
then raise CTERM ("number_of", []) |
59996 | 1493 |
else Numeral.mk_cnumber (Thm.ctyp_of ctxt T) n; |
54249 | 1494 |
in |
1495 |
K ( |
|
70356
4a327c061870
streamlined setup for linear algebra, particularly removed redundant rule declarations
haftmann
parents:
70270
diff
changeset
|
1496 |
Lin_Arith.set_number_of number_of |
63654 | 1497 |
#> Lin_Arith.add_simps |
70356
4a327c061870
streamlined setup for linear algebra, particularly removed redundant rule declarations
haftmann
parents:
70270
diff
changeset
|
1498 |
@{thms arith_simps more_arith_simps rel_simps pred_numeral_simps |
4a327c061870
streamlined setup for linear algebra, particularly removed redundant rule declarations
haftmann
parents:
70270
diff
changeset
|
1499 |
arith_special numeral_One of_nat_simps uminus_numeral_One |
4a327c061870
streamlined setup for linear algebra, particularly removed redundant rule declarations
haftmann
parents:
70270
diff
changeset
|
1500 |
Suc_numeral Let_numeral Let_neg_numeral Let_0 Let_1 |
63654 | 1501 |
le_Suc_numeral le_numeral_Suc less_Suc_numeral less_numeral_Suc |
70356
4a327c061870
streamlined setup for linear algebra, particularly removed redundant rule declarations
haftmann
parents:
70270
diff
changeset
|
1502 |
Suc_eq_numeral eq_numeral_Suc mult_Suc mult_Suc_right of_nat_numeral}) |
54249 | 1503 |
end |
60758 | 1504 |
\<close> |
54249 | 1505 |
|
47108 | 1506 |
|
63654 | 1507 |
subsubsection \<open>Simplification of arithmetic when nested to the right\<close> |
47108 | 1508 |
|
63654 | 1509 |
lemma add_numeral_left [simp]: "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
|
1510 |
by (simp_all add: add.assoc [symmetric]) |
47108 | 1511 |
|
1512 |
lemma add_neg_numeral_left [simp]: |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1513 |
"numeral v + (- numeral w + y) = (sub v w + y)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1514 |
"- numeral v + (numeral w + y) = (sub w v + y)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54249
diff
changeset
|
1515 |
"- 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
|
1516 |
by (simp_all add: add.assoc [symmetric]) |
47108 | 1517 |
|
68536 | 1518 |
lemma mult_numeral_left_semiring_numeral: |
47108 | 1519 |
"numeral v * (numeral w * z) = (numeral(v * w) * z :: 'a::semiring_numeral)" |
68536 | 1520 |
by (simp add: mult.assoc [symmetric]) |
1521 |
||
1522 |
lemma mult_numeral_left_ring_1: |
|
1523 |
"- numeral v * (numeral w * y) = (- numeral(v * w) * y :: 'a::ring_1)" |
|
1524 |
"numeral v * (- numeral w * y) = (- numeral(v * w) * y :: 'a::ring_1)" |
|
1525 |
"- numeral v * (- numeral w * y) = (numeral(v * w) * y :: 'a::ring_1)" |
|
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
55974
diff
changeset
|
1526 |
by (simp_all add: mult.assoc [symmetric]) |
47108 | 1527 |
|
68536 | 1528 |
lemmas mult_numeral_left [simp] = |
1529 |
mult_numeral_left_semiring_numeral |
|
1530 |
mult_numeral_left_ring_1 |
|
1531 |
||
47108 | 1532 |
hide_const (open) One Bit0 Bit1 BitM inc pow sqr sub dbl dbl_inc dbl_dec |
1533 |
||
51143
0a2371e7ced3
two target language numeral types: integer and natural, as replacement for code_numeral;
haftmann
parents:
50817
diff
changeset
|
1534 |
|
63654 | 1535 |
subsection \<open>Code module namespace\<close> |
47108 | 1536 |
|
52435
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
haftmann
parents:
52210
diff
changeset
|
1537 |
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
|
1538 |
code_module Num \<rightharpoonup> (SML) Arith and (OCaml) Arith and (Haskell) Arith |
47108 | 1539 |
|
66283
adf3155c57e2
Printing natural numbers as numerals in evaluation
eberlm <eberlm@in.tum.de>
parents:
64238
diff
changeset
|
1540 |
subsection \<open>Printing of evaluated natural numbers as numerals\<close> |
adf3155c57e2
Printing natural numbers as numerals in evaluation
eberlm <eberlm@in.tum.de>
parents:
64238
diff
changeset
|
1541 |
|
adf3155c57e2
Printing natural numbers as numerals in evaluation
eberlm <eberlm@in.tum.de>
parents:
64238
diff
changeset
|
1542 |
lemma [code_post]: |
adf3155c57e2
Printing natural numbers as numerals in evaluation
eberlm <eberlm@in.tum.de>
parents:
64238
diff
changeset
|
1543 |
"Suc 0 = 1" |
adf3155c57e2
Printing natural numbers as numerals in evaluation
eberlm <eberlm@in.tum.de>
parents:
64238
diff
changeset
|
1544 |
"Suc 1 = 2" |
adf3155c57e2
Printing natural numbers as numerals in evaluation
eberlm <eberlm@in.tum.de>
parents:
64238
diff
changeset
|
1545 |
"Suc (numeral n) = numeral (Num.inc n)" |
adf3155c57e2
Printing natural numbers as numerals in evaluation
eberlm <eberlm@in.tum.de>
parents:
64238
diff
changeset
|
1546 |
by (simp_all add: numeral_inc) |
adf3155c57e2
Printing natural numbers as numerals in evaluation
eberlm <eberlm@in.tum.de>
parents:
64238
diff
changeset
|
1547 |
|
adf3155c57e2
Printing natural numbers as numerals in evaluation
eberlm <eberlm@in.tum.de>
parents:
64238
diff
changeset
|
1548 |
lemmas [code_post] = Num.inc.simps |
adf3155c57e2
Printing natural numbers as numerals in evaluation
eberlm <eberlm@in.tum.de>
parents:
64238
diff
changeset
|
1549 |
|
74592 | 1550 |
|
1551 |
subsection \<open>More on auxiliary conversion\<close> |
|
1552 |
||
1553 |
context semiring_1 |
|
1554 |
begin |
|
1555 |
||
1556 |
lemma numeral_num_of_nat_unfold: |
|
1557 |
\<open>numeral (num_of_nat n) = (if n = 0 then 1 else of_nat n)\<close> |
|
1558 |
by (induction n) (simp_all add: numeral_inc ac_simps) |
|
1559 |
||
1560 |
lemma num_of_nat_numeral_eq [simp]: |
|
1561 |
\<open>num_of_nat (numeral q) = q\<close> |
|
1562 |
proof (induction q) |
|
1563 |
case One |
|
1564 |
then show ?case |
|
1565 |
by simp |
|
1566 |
next |
|
1567 |
case (Bit0 q) |
|
75669
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
1568 |
then have "num_of_nat (numeral (num.Bit0 q)) = num_of_nat (numeral q + numeral q)" |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
1569 |
by (simp only: Num.numeral_Bit0 Num.numeral_add) |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
1570 |
also have "\<dots> = num.Bit0 (num_of_nat (numeral q))" |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
1571 |
by (rule num_of_nat_double) simp |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
1572 |
finally show ?case |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
1573 |
using Bit0.IH by simp |
74592 | 1574 |
next |
1575 |
case (Bit1 q) |
|
75669
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
1576 |
then have "num_of_nat (numeral (num.Bit1 q)) = num_of_nat (numeral q + numeral q + 1)" |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
1577 |
by (simp only: Num.numeral_Bit1 Num.numeral_add) |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
1578 |
also have "\<dots> = num_of_nat (numeral q + numeral q) + num_of_nat 1" |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
1579 |
by (rule num_of_nat_plus_distrib) auto |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
1580 |
also have "\<dots> = num.Bit0 (num_of_nat (numeral q)) + num_of_nat 1" |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
1581 |
by (subst num_of_nat_double) auto |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
1582 |
finally show ?case |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
74592
diff
changeset
|
1583 |
using Bit1.IH by simp |
74592 | 1584 |
qed |
1585 |
||
47108 | 1586 |
end |
74592 | 1587 |
|
1588 |
end |