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