| author | wenzelm | 
| Sun, 04 Mar 2012 19:24:05 +0100 | |
| changeset 46815 | 6bccb1dc9bc3 | 
| parent 46756 | faf62905cd53 | 
| child 47108 | 2a1953f0d20d | 
| permissions | -rw-r--r-- | 
| 41959 | 1 | (* Title: HOL/Int.thy | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2 | Author: Lawrence C Paulson, Cambridge University Computer Laboratory | 
| 41959 | 3 | Author: Tobias Nipkow, Florian Haftmann, TU Muenchen | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 4 | *) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 5 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 6 | header {* The Integers as Equivalence Classes over Pairs of Natural Numbers *} 
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 7 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 8 | theory Int | 
| 26748 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26732diff
changeset | 9 | imports Equiv_Relations Nat Wellfounded | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 10 | uses | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 11 |   ("Tools/numeral.ML")
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 12 |   ("Tools/numeral_syntax.ML")
 | 
| 31068 
f591144b0f17
modules numeral_simprocs, nat_numeral_simprocs; proper structures for numeral simprocs
 haftmann parents: 
31065diff
changeset | 13 |   ("Tools/int_arith.ML")
 | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 14 | begin | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 15 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 16 | subsection {* The equivalence relation underlying the integers *}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 17 | |
| 28661 | 18 | definition intrel :: "((nat \<times> nat) \<times> (nat \<times> nat)) set" where | 
| 37767 | 19 |   "intrel = {((x, y), (u, v)) | x y u v. x + v = u +y }"
 | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 20 | |
| 45694 
4a8743618257
prefer typedef without extra definition and alternative name;
 wenzelm parents: 
45607diff
changeset | 21 | definition "Integ = UNIV//intrel" | 
| 
4a8743618257
prefer typedef without extra definition and alternative name;
 wenzelm parents: 
45607diff
changeset | 22 | |
| 
4a8743618257
prefer typedef without extra definition and alternative name;
 wenzelm parents: 
45607diff
changeset | 23 | typedef (open) int = Integ | 
| 
4a8743618257
prefer typedef without extra definition and alternative name;
 wenzelm parents: 
45607diff
changeset | 24 | morphisms Rep_Integ Abs_Integ | 
| 
4a8743618257
prefer typedef without extra definition and alternative name;
 wenzelm parents: 
45607diff
changeset | 25 | unfolding Integ_def by (auto simp add: quotient_def) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 26 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 27 | instantiation int :: "{zero, one, plus, minus, uminus, times, ord, abs, sgn}"
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 28 | begin | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 29 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 30 | definition | 
| 37767 | 31 |   Zero_int_def: "0 = Abs_Integ (intrel `` {(0, 0)})"
 | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 32 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 33 | definition | 
| 37767 | 34 |   One_int_def: "1 = Abs_Integ (intrel `` {(1, 0)})"
 | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 35 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 36 | definition | 
| 37767 | 37 | add_int_def: "z + w = Abs_Integ | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 38 | (\<Union>(x, y) \<in> Rep_Integ z. \<Union>(u, v) \<in> Rep_Integ w. | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 39 |       intrel `` {(x + u, y + v)})"
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 40 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 41 | definition | 
| 37767 | 42 | minus_int_def: | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 43 |     "- z = Abs_Integ (\<Union>(x, y) \<in> Rep_Integ z. intrel `` {(y, x)})"
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 44 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 45 | definition | 
| 37767 | 46 | diff_int_def: "z - w = z + (-w \<Colon> int)" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 47 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 48 | definition | 
| 37767 | 49 | mult_int_def: "z * w = Abs_Integ | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 50 | (\<Union>(x, y) \<in> Rep_Integ z. \<Union>(u,v ) \<in> Rep_Integ w. | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 51 |       intrel `` {(x*u + y*v, x*v + y*u)})"
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 52 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 53 | definition | 
| 37767 | 54 | le_int_def: | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 55 | "z \<le> w \<longleftrightarrow> (\<exists>x y u v. x+v \<le> u+y \<and> (x, y) \<in> Rep_Integ z \<and> (u, v) \<in> Rep_Integ w)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 56 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 57 | definition | 
| 37767 | 58 | less_int_def: "(z\<Colon>int) < w \<longleftrightarrow> z \<le> w \<and> z \<noteq> w" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 59 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 60 | definition | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 61 | zabs_def: "\<bar>i\<Colon>int\<bar> = (if i < 0 then - i else i)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 62 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 63 | definition | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 64 | zsgn_def: "sgn (i\<Colon>int) = (if i=0 then 0 else if 0<i then 1 else - 1)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 65 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 66 | instance .. | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 67 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 68 | end | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 69 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 70 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 71 | subsection{*Construction of the Integers*}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 72 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 73 | lemma intrel_iff [simp]: "(((x,y),(u,v)) \<in> intrel) = (x+v = u+y)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 74 | by (simp add: intrel_def) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 75 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 76 | lemma equiv_intrel: "equiv UNIV intrel" | 
| 30198 | 77 | by (simp add: intrel_def equiv_def refl_on_def sym_def trans_def) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 78 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 79 | text{*Reduces equality of equivalence classes to the @{term intrel} relation:
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 80 |   @{term "(intrel `` {x} = intrel `` {y}) = ((x,y) \<in> intrel)"} *}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 81 | lemmas equiv_intrel_iff [simp] = eq_equiv_class_iff [OF equiv_intrel UNIV_I UNIV_I] | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 82 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 83 | text{*All equivalence classes belong to set of representatives*}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 84 | lemma [simp]: "intrel``{(x,y)} \<in> Integ"
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 85 | by (auto simp add: Integ_def intrel_def quotient_def) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 86 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 87 | text{*Reduces equality on abstractions to equality on representatives:
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 88 |   @{prop "\<lbrakk>x \<in> Integ; y \<in> Integ\<rbrakk> \<Longrightarrow> (Abs_Integ x = Abs_Integ y) = (x=y)"} *}
 | 
| 35828 
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
 blanchet parents: 
35634diff
changeset | 89 | declare Abs_Integ_inject [simp,no_atp] Abs_Integ_inverse [simp,no_atp] | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 90 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 91 | text{*Case analysis on the representation of an integer as an equivalence
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 92 | class of pairs of naturals.*} | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 93 | lemma eq_Abs_Integ [case_names Abs_Integ, cases type: int]: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 94 |      "(!!x y. z = Abs_Integ(intrel``{(x,y)}) ==> P) ==> P"
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 95 | apply (rule Abs_Integ_cases [of z]) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 96 | apply (auto simp add: Integ_def quotient_def) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 97 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 98 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 99 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 100 | subsection {* Arithmetic Operations *}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 101 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 102 | lemma minus: "- Abs_Integ(intrel``{(x,y)}) = Abs_Integ(intrel `` {(y,x)})"
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 103 | proof - | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 104 |   have "(\<lambda>(x,y). intrel``{(y,x)}) respects intrel"
 | 
| 40819 
2ac5af6eb8a8
adapted proofs to slightly changed definitions of congruent(2)
 haftmann parents: 
39910diff
changeset | 105 | by (auto simp add: congruent_def) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 106 | thus ?thesis | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 107 | by (simp add: minus_int_def UN_equiv_class [OF equiv_intrel]) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 108 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 109 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 110 | lemma add: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 111 |      "Abs_Integ (intrel``{(x,y)}) + Abs_Integ (intrel``{(u,v)}) =
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 112 |       Abs_Integ (intrel``{(x+u, y+v)})"
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 113 | proof - | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 114 |   have "(\<lambda>z w. (\<lambda>(x,y). (\<lambda>(u,v). intrel `` {(x+u, y+v)}) w) z) 
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 115 | respects2 intrel" | 
| 40819 
2ac5af6eb8a8
adapted proofs to slightly changed definitions of congruent(2)
 haftmann parents: 
39910diff
changeset | 116 | by (auto simp add: congruent2_def) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 117 | thus ?thesis | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 118 | by (simp add: add_int_def UN_UN_split_split_eq | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 119 | UN_equiv_class2 [OF equiv_intrel equiv_intrel]) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 120 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 121 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 122 | text{*Congruence property for multiplication*}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 123 | lemma mult_congruent2: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 124 |      "(%p1 p2. (%(x,y). (%(u,v). intrel``{(x*u + y*v, x*v + y*u)}) p2) p1)
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 125 | respects2 intrel" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 126 | apply (rule equiv_intrel [THEN congruent2_commuteI]) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 127 | apply (force simp add: mult_ac, clarify) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 128 | apply (simp add: congruent_def mult_ac) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 129 | apply (rename_tac u v w x y z) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 130 | apply (subgoal_tac "u*y + x*y = w*y + v*y & u*z + x*z = w*z + v*z") | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 131 | apply (simp add: mult_ac) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 132 | apply (simp add: add_mult_distrib [symmetric]) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 133 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 134 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 135 | lemma mult: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 136 |      "Abs_Integ((intrel``{(x,y)})) * Abs_Integ((intrel``{(u,v)})) =
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 137 |       Abs_Integ(intrel `` {(x*u + y*v, x*v + y*u)})"
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 138 | by (simp add: mult_int_def UN_UN_split_split_eq mult_congruent2 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 139 | UN_equiv_class2 [OF equiv_intrel equiv_intrel]) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 140 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 141 | text{*The integers form a @{text comm_ring_1}*}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 142 | instance int :: comm_ring_1 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 143 | proof | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 144 | fix i j k :: int | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 145 | show "(i + j) + k = i + (j + k)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 146 | by (cases i, cases j, cases k) (simp add: add add_assoc) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 147 | show "i + j = j + i" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 148 | by (cases i, cases j) (simp add: add_ac add) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 149 | show "0 + i = i" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 150 | by (cases i) (simp add: Zero_int_def add) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 151 | show "- i + i = 0" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 152 | by (cases i) (simp add: Zero_int_def minus add) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 153 | show "i - j = i + - j" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 154 | by (simp add: diff_int_def) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 155 | show "(i * j) * k = i * (j * k)" | 
| 29667 | 156 | by (cases i, cases j, cases k) (simp add: mult algebra_simps) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 157 | show "i * j = j * i" | 
| 29667 | 158 | by (cases i, cases j) (simp add: mult algebra_simps) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 159 | show "1 * i = i" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 160 | by (cases i) (simp add: One_int_def mult) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 161 | show "(i + j) * k = i * k + j * k" | 
| 29667 | 162 | by (cases i, cases j, cases k) (simp add: add mult algebra_simps) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 163 | show "0 \<noteq> (1::int)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 164 | by (simp add: Zero_int_def One_int_def) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 165 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 166 | |
| 44709 | 167 | abbreviation int :: "nat \<Rightarrow> int" where | 
| 168 | "int \<equiv> of_nat" | |
| 169 | ||
| 170 | lemma int_def: "int m = Abs_Integ (intrel `` {(m, 0)})"
 | |
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 171 | by (induct m) (simp_all add: Zero_int_def One_int_def add) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 172 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 173 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 174 | subsection {* The @{text "\<le>"} Ordering *}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 175 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 176 | lemma le: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 177 |   "(Abs_Integ(intrel``{(x,y)}) \<le> Abs_Integ(intrel``{(u,v)})) = (x+v \<le> u+y)"
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 178 | by (force simp add: le_int_def) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 179 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 180 | lemma less: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 181 |   "(Abs_Integ(intrel``{(x,y)}) < Abs_Integ(intrel``{(u,v)})) = (x+v < u+y)"
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 182 | by (simp add: less_int_def le order_less_le) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 183 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 184 | instance int :: linorder | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 185 | proof | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 186 | fix i j k :: int | 
| 27682 | 187 | show antisym: "i \<le> j \<Longrightarrow> j \<le> i \<Longrightarrow> i = j" | 
| 188 | by (cases i, cases j) (simp add: le) | |
| 189 | show "(i < j) = (i \<le> j \<and> \<not> j \<le> i)" | |
| 190 | by (auto simp add: less_int_def dest: antisym) | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 191 | show "i \<le> i" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 192 | by (cases i) (simp add: le) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 193 | show "i \<le> j \<Longrightarrow> j \<le> k \<Longrightarrow> i \<le> k" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 194 | by (cases i, cases j, cases k) (simp add: le) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 195 | show "i \<le> j \<or> j \<le> i" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 196 | by (cases i, cases j) (simp add: le linorder_linear) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 197 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 198 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 199 | instantiation int :: distrib_lattice | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 200 | begin | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 201 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 202 | definition | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 203 | "(inf \<Colon> int \<Rightarrow> int \<Rightarrow> int) = min" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 204 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 205 | definition | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 206 | "(sup \<Colon> int \<Rightarrow> int \<Rightarrow> int) = max" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 207 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 208 | instance | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 209 | by intro_classes | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 210 | (auto simp add: inf_int_def sup_int_def min_max.sup_inf_distrib1) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 211 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 212 | end | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 213 | |
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34055diff
changeset | 214 | instance int :: ordered_cancel_ab_semigroup_add | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 215 | proof | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 216 | fix i j k :: int | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 217 | show "i \<le> j \<Longrightarrow> k + i \<le> k + j" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 218 | by (cases i, cases j, cases k) (simp add: le add) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 219 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 220 | |
| 25961 | 221 | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 222 | text{*Strict Monotonicity of Multiplication*}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 223 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 224 | text{*strict, in 1st argument; proof is by induction on k>0*}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 225 | lemma zmult_zless_mono2_lemma: | 
| 44709 | 226 | "(i::int)<j ==> 0<k ==> int k * i < int k * j" | 
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 227 | apply (induct k) | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 228 | apply simp | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 229 | apply (simp add: left_distrib) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 230 | apply (case_tac "k=0") | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 231 | apply (simp_all add: add_strict_mono) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 232 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 233 | |
| 44709 | 234 | lemma zero_le_imp_eq_int: "(0::int) \<le> k ==> \<exists>n. k = int n" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 235 | apply (cases k) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 236 | apply (auto simp add: le add int_def Zero_int_def) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 237 | apply (rule_tac x="x-y" in exI, simp) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 238 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 239 | |
| 44709 | 240 | lemma zero_less_imp_eq_int: "(0::int) < k ==> \<exists>n>0. k = int n" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 241 | apply (cases k) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 242 | apply (simp add: less int_def Zero_int_def) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 243 | apply (rule_tac x="x-y" in exI, simp) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 244 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 245 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 246 | lemma zmult_zless_mono2: "[| i<j; (0::int) < k |] ==> k*i < k*j" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 247 | apply (drule zero_less_imp_eq_int) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 248 | apply (auto simp add: zmult_zless_mono2_lemma) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 249 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 250 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 251 | text{*The integers form an ordered integral domain*}
 | 
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34055diff
changeset | 252 | instance int :: linordered_idom | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 253 | proof | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 254 | fix i j k :: int | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 255 | show "i < j \<Longrightarrow> 0 < k \<Longrightarrow> k * i < k * j" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 256 | by (rule zmult_zless_mono2) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 257 | show "\<bar>i\<bar> = (if i < 0 then -i else i)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 258 | by (simp only: zabs_def) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 259 | show "sgn (i\<Colon>int) = (if i=0 then 0 else if 0<i then 1 else - 1)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 260 | by (simp only: zsgn_def) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 261 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 262 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 263 | lemma zless_imp_add1_zle: "w < z \<Longrightarrow> w + (1\<Colon>int) \<le> z" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 264 | apply (cases w, cases z) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 265 | apply (simp add: less le add One_int_def) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 266 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 267 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 268 | lemma zless_iff_Suc_zadd: | 
| 44709 | 269 | "(w \<Colon> int) < z \<longleftrightarrow> (\<exists>n. z = w + int (Suc n))" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 270 | apply (cases z, cases w) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 271 | apply (auto simp add: less add int_def) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 272 | apply (rename_tac a b c d) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 273 | apply (rule_tac x="a+d - Suc(c+b)" in exI) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 274 | apply arith | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 275 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 276 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 277 | lemmas int_distrib = | 
| 45607 | 278 | left_distrib [of z1 z2 w] | 
| 279 | right_distrib [of w z1 z2] | |
| 280 | left_diff_distrib [of z1 z2 w] | |
| 281 | right_diff_distrib [of w z1 z2] | |
| 282 | for z1 z2 w :: int | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 283 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 284 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 285 | subsection {* Embedding of the Integers into any @{text ring_1}: @{text of_int}*}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 286 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 287 | context ring_1 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 288 | begin | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 289 | |
| 31015 | 290 | definition of_int :: "int \<Rightarrow> 'a" where | 
| 39910 | 291 |   "of_int z = the_elem (\<Union>(i, j) \<in> Rep_Integ z. { of_nat i - of_nat j })"
 | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 292 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 293 | lemma of_int: "of_int (Abs_Integ (intrel `` {(i,j)})) = of_nat i - of_nat j"
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 294 | proof - | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 295 |   have "(\<lambda>(i,j). { of_nat i - (of_nat j :: 'a) }) respects intrel"
 | 
| 40819 
2ac5af6eb8a8
adapted proofs to slightly changed definitions of congruent(2)
 haftmann parents: 
39910diff
changeset | 296 | by (auto simp add: congruent_def) (simp add: algebra_simps of_nat_add [symmetric] | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 297 | del: of_nat_add) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 298 | thus ?thesis | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 299 | by (simp add: of_int_def UN_equiv_class [OF equiv_intrel]) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 300 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 301 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 302 | lemma of_int_0 [simp]: "of_int 0 = 0" | 
| 29667 | 303 | by (simp add: of_int Zero_int_def) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 304 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 305 | lemma of_int_1 [simp]: "of_int 1 = 1" | 
| 29667 | 306 | by (simp add: of_int One_int_def) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 307 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 308 | lemma of_int_add [simp]: "of_int (w+z) = of_int w + of_int z" | 
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 309 | by (cases w, cases z) (simp add: algebra_simps of_int add) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 310 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 311 | lemma of_int_minus [simp]: "of_int (-z) = - (of_int z)" | 
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 312 | by (cases z) (simp add: algebra_simps of_int minus) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 313 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 314 | lemma of_int_diff [simp]: "of_int (w - z) = of_int w - of_int z" | 
| 35050 
9f841f20dca6
renamed OrderedGroup to Groups; split theory Ring_and_Field into Rings Fields
 haftmann parents: 
35032diff
changeset | 315 | by (simp add: diff_minus Groups.diff_minus) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 316 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 317 | lemma of_int_mult [simp]: "of_int (w*z) = of_int w * of_int z" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 318 | apply (cases w, cases z) | 
| 29667 | 319 | apply (simp add: algebra_simps of_int mult of_nat_mult) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 320 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 321 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 322 | text{*Collapse nested embeddings*}
 | 
| 44709 | 323 | lemma of_int_of_nat_eq [simp]: "of_int (int n) = of_nat n" | 
| 29667 | 324 | by (induct n) auto | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 325 | |
| 31015 | 326 | lemma of_int_power: | 
| 327 | "of_int (z ^ n) = of_int z ^ n" | |
| 328 | by (induct n) simp_all | |
| 329 | ||
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 330 | end | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 331 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 332 | text{*Class for unital rings with characteristic zero.
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 333 | Includes non-ordered rings like the complex numbers.*} | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 334 | class ring_char_0 = ring_1 + semiring_char_0 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 335 | begin | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 336 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 337 | lemma of_int_eq_iff [simp]: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 338 | "of_int w = of_int z \<longleftrightarrow> w = z" | 
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 339 | apply (cases w, cases z) | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 340 | apply (simp add: of_int) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 341 | apply (simp only: diff_eq_eq diff_add_eq eq_diff_eq) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 342 | apply (simp only: of_nat_add [symmetric] of_nat_eq_iff) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 343 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 344 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 345 | text{*Special cases where either operand is zero*}
 | 
| 36424 | 346 | lemma of_int_eq_0_iff [simp]: | 
| 347 | "of_int z = 0 \<longleftrightarrow> z = 0" | |
| 348 | using of_int_eq_iff [of z 0] by simp | |
| 349 | ||
| 350 | lemma of_int_0_eq_iff [simp]: | |
| 351 | "0 = of_int z \<longleftrightarrow> z = 0" | |
| 352 | using of_int_eq_iff [of 0 z] by simp | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 353 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 354 | end | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 355 | |
| 36424 | 356 | context linordered_idom | 
| 357 | begin | |
| 358 | ||
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34055diff
changeset | 359 | text{*Every @{text linordered_idom} has characteristic zero.*}
 | 
| 36424 | 360 | subclass ring_char_0 .. | 
| 361 | ||
| 362 | lemma of_int_le_iff [simp]: | |
| 363 | "of_int w \<le> of_int z \<longleftrightarrow> w \<le> z" | |
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 364 | by (cases w, cases z) | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 365 | (simp add: of_int le minus algebra_simps of_nat_add [symmetric] del: of_nat_add) | 
| 36424 | 366 | |
| 367 | lemma of_int_less_iff [simp]: | |
| 368 | "of_int w < of_int z \<longleftrightarrow> w < z" | |
| 369 | by (simp add: less_le order_less_le) | |
| 370 | ||
| 371 | lemma of_int_0_le_iff [simp]: | |
| 372 | "0 \<le> of_int z \<longleftrightarrow> 0 \<le> z" | |
| 373 | using of_int_le_iff [of 0 z] by simp | |
| 374 | ||
| 375 | lemma of_int_le_0_iff [simp]: | |
| 376 | "of_int z \<le> 0 \<longleftrightarrow> z \<le> 0" | |
| 377 | using of_int_le_iff [of z 0] by simp | |
| 378 | ||
| 379 | lemma of_int_0_less_iff [simp]: | |
| 380 | "0 < of_int z \<longleftrightarrow> 0 < z" | |
| 381 | using of_int_less_iff [of 0 z] by simp | |
| 382 | ||
| 383 | lemma of_int_less_0_iff [simp]: | |
| 384 | "of_int z < 0 \<longleftrightarrow> z < 0" | |
| 385 | using of_int_less_iff [of z 0] by simp | |
| 386 | ||
| 387 | end | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 388 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 389 | lemma of_int_eq_id [simp]: "of_int = id" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 390 | proof | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 391 | fix z show "of_int z = id z" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 392 | by (cases z) (simp add: of_int add minus int_def diff_minus) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 393 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 394 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 395 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 396 | subsection {* Magnitude of an Integer, as a Natural Number: @{text nat} *}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 397 | |
| 37767 | 398 | definition nat :: "int \<Rightarrow> nat" where | 
| 39910 | 399 |   "nat z = the_elem (\<Union>(x, y) \<in> Rep_Integ z. {x-y})"
 | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 400 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 401 | lemma nat: "nat (Abs_Integ (intrel``{(x,y)})) = x-y"
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 402 | proof - | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 403 |   have "(\<lambda>(x,y). {x-y}) respects intrel"
 | 
| 40819 
2ac5af6eb8a8
adapted proofs to slightly changed definitions of congruent(2)
 haftmann parents: 
39910diff
changeset | 404 | by (auto simp add: congruent_def) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 405 | thus ?thesis | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 406 | by (simp add: nat_def UN_equiv_class [OF equiv_intrel]) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 407 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 408 | |
| 44709 | 409 | lemma nat_int [simp]: "nat (int n) = n" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 410 | by (simp add: nat int_def) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 411 | |
| 44709 | 412 | lemma int_nat_eq [simp]: "int (nat z) = (if 0 \<le> z then z else 0)" | 
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 413 | by (cases z) (simp add: nat le int_def Zero_int_def) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 414 | |
| 44709 | 415 | corollary nat_0_le: "0 \<le> z ==> int (nat z) = z" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 416 | by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 417 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 418 | lemma nat_le_0 [simp]: "z \<le> 0 ==> nat z = 0" | 
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 419 | by (cases z) (simp add: nat le Zero_int_def) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 420 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 421 | lemma nat_le_eq_zle: "0 < w | 0 \<le> z ==> (nat w \<le> nat z) = (w\<le>z)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 422 | apply (cases w, cases z) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 423 | apply (simp add: nat le linorder_not_le [symmetric] Zero_int_def, arith) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 424 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 425 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 426 | text{*An alternative condition is @{term "0 \<le> w"} *}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 427 | corollary nat_mono_iff: "0 < z ==> (nat w < nat z) = (w < z)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 428 | by (simp add: nat_le_eq_zle linorder_not_le [symmetric]) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 429 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 430 | corollary nat_less_eq_zless: "0 \<le> w ==> (nat w < nat z) = (w<z)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 431 | by (simp add: nat_le_eq_zle linorder_not_le [symmetric]) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 432 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 433 | lemma zless_nat_conj [simp]: "(nat w < nat z) = (0 < z & w < z)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 434 | apply (cases w, cases z) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 435 | apply (simp add: nat le Zero_int_def linorder_not_le [symmetric], arith) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 436 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 437 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 438 | lemma nonneg_eq_int: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 439 | fixes z :: int | 
| 44709 | 440 | assumes "0 \<le> z" and "\<And>m. z = int m \<Longrightarrow> P" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 441 | shows P | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 442 | using assms by (blast dest: nat_0_le sym) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 443 | |
| 44709 | 444 | lemma nat_eq_iff: "(nat w = m) = (if 0 \<le> w then w = int m else m=0)" | 
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 445 | by (cases w) (simp add: nat le int_def Zero_int_def, arith) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 446 | |
| 44709 | 447 | corollary nat_eq_iff2: "(m = nat w) = (if 0 \<le> w then w = int m else m=0)" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 448 | by (simp only: eq_commute [of m] nat_eq_iff) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 449 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 450 | lemma nat_less_iff: "0 \<le> w ==> (nat w < m) = (w < of_nat m)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 451 | apply (cases w) | 
| 29700 | 452 | apply (simp add: nat le int_def Zero_int_def linorder_not_le[symmetric], arith) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 453 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 454 | |
| 44709 | 455 | lemma nat_le_iff: "nat x \<le> n \<longleftrightarrow> x \<le> int n" | 
| 44707 | 456 | by (cases x, simp add: nat le int_def le_diff_conv) | 
| 457 | ||
| 458 | lemma nat_mono: "x \<le> y \<Longrightarrow> nat x \<le> nat y" | |
| 459 | by (cases x, cases y, simp add: nat le) | |
| 460 | ||
| 29700 | 461 | lemma nat_0_iff[simp]: "nat(i::int) = 0 \<longleftrightarrow> i\<le>0" | 
| 462 | by(simp add: nat_eq_iff) arith | |
| 463 | ||
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 464 | lemma int_eq_iff: "(of_nat m = z) = (m = nat z & 0 \<le> z)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 465 | by (auto simp add: nat_eq_iff2) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 466 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 467 | lemma zero_less_nat_eq [simp]: "(0 < nat z) = (0 < z)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 468 | by (insert zless_nat_conj [of 0], auto) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 469 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 470 | lemma nat_add_distrib: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 471 | "[| (0::int) \<le> z; 0 \<le> z' |] ==> nat (z+z') = nat z + nat z'" | 
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 472 | by (cases z, cases z') (simp add: nat add le Zero_int_def) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 473 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 474 | lemma nat_diff_distrib: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 475 | "[| (0::int) \<le> z'; z' \<le> z |] ==> nat (z-z') = nat z - nat z'" | 
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 476 | by (cases z, cases z') | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 477 | (simp add: nat add minus diff_minus le Zero_int_def) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 478 | |
| 44709 | 479 | lemma nat_zminus_int [simp]: "nat (- int n) = 0" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 480 | by (simp add: int_def minus nat Zero_int_def) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 481 | |
| 44709 | 482 | lemma zless_nat_eq_int_zless: "(m < nat z) = (int m < z)" | 
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 483 | by (cases z) (simp add: nat less int_def, arith) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 484 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 485 | context ring_1 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 486 | begin | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 487 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 488 | lemma of_nat_nat: "0 \<le> z \<Longrightarrow> of_nat (nat z) = of_int z" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 489 | by (cases z rule: eq_Abs_Integ) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 490 | (simp add: nat le of_int Zero_int_def of_nat_diff) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 491 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 492 | end | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 493 | |
| 29779 | 494 | text {* For termination proofs: *}
 | 
| 495 | lemma measure_function_int[measure_function]: "is_measure (nat o abs)" .. | |
| 496 | ||
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 497 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 498 | subsection{*Lemmas about the Function @{term of_nat} and Orderings*}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 499 | |
| 44709 | 500 | lemma negative_zless_0: "- (int (Suc n)) < (0 \<Colon> int)" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 501 | by (simp add: order_less_le del: of_nat_Suc) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 502 | |
| 44709 | 503 | lemma negative_zless [iff]: "- (int (Suc n)) < int m" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 504 | by (rule negative_zless_0 [THEN order_less_le_trans], simp) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 505 | |
| 44709 | 506 | lemma negative_zle_0: "- int n \<le> 0" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 507 | by (simp add: minus_le_iff) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 508 | |
| 44709 | 509 | lemma negative_zle [iff]: "- int n \<le> int m" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 510 | by (rule order_trans [OF negative_zle_0 of_nat_0_le_iff]) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 511 | |
| 44709 | 512 | lemma not_zle_0_negative [simp]: "~ (0 \<le> - (int (Suc n)))" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 513 | by (subst le_minus_iff, simp del: of_nat_Suc) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 514 | |
| 44709 | 515 | lemma int_zle_neg: "(int n \<le> - int m) = (n = 0 & m = 0)" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 516 | by (simp add: int_def le minus Zero_int_def) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 517 | |
| 44709 | 518 | lemma not_int_zless_negative [simp]: "~ (int n < - int m)" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 519 | by (simp add: linorder_not_less) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 520 | |
| 44709 | 521 | lemma negative_eq_positive [simp]: "(- int n = of_nat m) = (n = 0 & m = 0)" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 522 | by (force simp add: order_eq_iff [of "- of_nat n"] int_zle_neg) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 523 | |
| 44709 | 524 | lemma zle_iff_zadd: "w \<le> z \<longleftrightarrow> (\<exists>n. z = w + int n)" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 525 | proof - | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 526 | have "(w \<le> z) = (0 \<le> z - w)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 527 | by (simp only: le_diff_eq add_0_left) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 528 | also have "\<dots> = (\<exists>n. z - w = of_nat n)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 529 | by (auto elim: zero_le_imp_eq_int) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 530 | also have "\<dots> = (\<exists>n. z = w + of_nat n)" | 
| 29667 | 531 | by (simp only: algebra_simps) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 532 | finally show ?thesis . | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 533 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 534 | |
| 44709 | 535 | lemma zadd_int_left: "int m + (int n + z) = int (m + n) + z" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 536 | by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 537 | |
| 44709 | 538 | lemma int_Suc0_eq_1: "int (Suc 0) = 1" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 539 | by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 540 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 541 | text{*This version is proved for all ordered rings, not just integers!
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 542 |       It is proved here because attribute @{text arith_split} is not available
 | 
| 35050 
9f841f20dca6
renamed OrderedGroup to Groups; split theory Ring_and_Field into Rings Fields
 haftmann parents: 
35032diff
changeset | 543 |       in theory @{text Rings}.
 | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 544 |       But is it really better than just rewriting with @{text abs_if}?*}
 | 
| 35828 
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
 blanchet parents: 
35634diff
changeset | 545 | lemma abs_split [arith_split,no_atp]: | 
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34055diff
changeset | 546 | "P(abs(a::'a::linordered_idom)) = ((0 \<le> a --> P a) & (a < 0 --> P(-a)))" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 547 | by (force dest: order_less_le_trans simp add: abs_if linorder_not_less) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 548 | |
| 44709 | 549 | lemma negD: "x < 0 \<Longrightarrow> \<exists>n. x = - (int (Suc n))" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 550 | apply (cases x) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 551 | apply (auto simp add: le minus Zero_int_def int_def order_less_le) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 552 | apply (rule_tac x="y - Suc x" in exI, arith) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 553 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 554 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 555 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 556 | subsection {* Cases and induction *}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 557 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 558 | text{*Now we replace the case analysis rule by a more conventional one:
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 559 | whether an integer is negative or not.*} | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 560 | |
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 561 | theorem int_cases [case_names nonneg neg, cases type: int]: | 
| 44709 | 562 | "[|!! n. z = int n ==> P; !! n. z = - (int (Suc n)) ==> P |] ==> P" | 
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 563 | apply (cases "z < 0") | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 564 | apply (blast dest!: negD) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 565 | apply (simp add: linorder_not_less del: of_nat_Suc) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 566 | apply auto | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 567 | apply (blast dest: nat_0_le [THEN sym]) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 568 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 569 | |
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 570 | theorem int_of_nat_induct [case_names nonneg neg, induct type: int]: | 
| 44709 | 571 | "[|!! n. P (int n); !!n. P (- (int (Suc n))) |] ==> P z" | 
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 572 | by (cases z) auto | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 573 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 574 | text{*Contributed by Brian Huffman*}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 575 | theorem int_diff_cases: | 
| 44709 | 576 | obtains (diff) m n where "z = int m - int n" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 577 | apply (cases z rule: eq_Abs_Integ) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 578 | apply (rule_tac m=x and n=y in diff) | 
| 37887 | 579 | apply (simp add: int_def minus add diff_minus) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 580 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 581 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 582 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 583 | subsection {* Binary representation *}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 584 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 585 | text {*
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 586 | This formalization defines binary arithmetic in terms of the integers | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 587 | rather than using a datatype. This avoids multiple representations (leading | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 588 |   zeroes, etc.)  See @{text "ZF/Tools/twos-compl.ML"}, function @{text
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 589 | int_of_binary}, for the numerical interpretation. | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 590 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 591 |   The representation expects that @{text "(m mod 2)"} is 0 or 1,
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 592 | even if m is negative; | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 593 |   For instance, @{text "-5 div 2 = -3"} and @{text "-5 mod 2 = 1"}; thus
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 594 |   @{text "-5 = (-3)*2 + 1"}.
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 595 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 596 | This two's complement binary representation derives from the paper | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 597 | "An Efficient Representation of Arithmetic for Term Rewriting" by | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 598 | Dave Cohen and Phil Watson, Rewriting Techniques and Applications, | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 599 | Springer LNCS 488 (240-251), 1991. | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 600 | *} | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 601 | |
| 28958 | 602 | subsubsection {* The constructors @{term Bit0}, @{term Bit1}, @{term Pls} and @{term Min} *}
 | 
| 603 | ||
| 37767 | 604 | definition Pls :: int where | 
| 605 | "Pls = 0" | |
| 606 | ||
| 607 | definition Min :: int where | |
| 608 | "Min = - 1" | |
| 609 | ||
| 610 | definition Bit0 :: "int \<Rightarrow> int" where | |
| 611 | "Bit0 k = k + k" | |
| 612 | ||
| 613 | definition Bit1 :: "int \<Rightarrow> int" where | |
| 614 | "Bit1 k = 1 + k + k" | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 615 | |
| 29608 | 616 | class number = -- {* for numeric types: nat, int, real, \dots *}
 | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 617 | fixes number_of :: "int \<Rightarrow> 'a" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 618 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 619 | use "Tools/numeral.ML" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 620 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 621 | syntax | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 622 |   "_Numeral" :: "num_const \<Rightarrow> 'a"    ("_")
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 623 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 624 | use "Tools/numeral_syntax.ML" | 
| 35123 | 625 | setup Numeral_Syntax.setup | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 626 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 627 | abbreviation | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 628 | "Numeral0 \<equiv> number_of Pls" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 629 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 630 | abbreviation | 
| 26086 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 631 | "Numeral1 \<equiv> number_of (Bit1 Pls)" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 632 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 633 | lemma Let_number_of [simp]: "Let (number_of v) f = f (number_of v)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 634 |   -- {* Unfold all @{text let}s involving constants *}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 635 | unfolding Let_def .. | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 636 | |
| 37767 | 637 | definition succ :: "int \<Rightarrow> int" where | 
| 638 | "succ k = k + 1" | |
| 639 | ||
| 640 | definition pred :: "int \<Rightarrow> int" where | |
| 641 | "pred k = k - 1" | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 642 | |
| 45607 | 643 | lemmas max_number_of [simp] = max_def [of "number_of u" "number_of v"] | 
| 644 | and min_number_of [simp] = min_def [of "number_of u" "number_of v"] | |
| 645 | for u v | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 646 |   -- {* unfolding @{text minx} and @{text max} on numerals *}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 647 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 648 | lemmas numeral_simps = | 
| 26086 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 649 | succ_def pred_def Pls_def Min_def Bit0_def Bit1_def | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 650 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 651 | text {* Removal of leading zeroes *}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 652 | |
| 31998 
2c7a24f74db9
code attributes use common underscore convention
 haftmann parents: 
31100diff
changeset | 653 | lemma Bit0_Pls [simp, code_post]: | 
| 26086 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 654 | "Bit0 Pls = Pls" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 655 | unfolding numeral_simps by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 656 | |
| 31998 
2c7a24f74db9
code attributes use common underscore convention
 haftmann parents: 
31100diff
changeset | 657 | lemma Bit1_Min [simp, code_post]: | 
| 26086 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 658 | "Bit1 Min = Min" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 659 | unfolding numeral_simps by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 660 | |
| 26075 
815f3ccc0b45
added lemma lists {normalize,succ,pred,minus,add,mult}_bin_simps
 huffman parents: 
26072diff
changeset | 661 | lemmas normalize_bin_simps = | 
| 26086 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 662 | Bit0_Pls Bit1_Min | 
| 26075 
815f3ccc0b45
added lemma lists {normalize,succ,pred,minus,add,mult}_bin_simps
 huffman parents: 
26072diff
changeset | 663 | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 664 | |
| 28958 | 665 | subsubsection {* Successor and predecessor functions *}
 | 
| 666 | ||
| 667 | text {* Successor *}
 | |
| 668 | ||
| 669 | lemma succ_Pls: | |
| 26086 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 670 | "succ Pls = Bit1 Pls" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 671 | unfolding numeral_simps by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 672 | |
| 28958 | 673 | lemma succ_Min: | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 674 | "succ Min = Pls" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 675 | unfolding numeral_simps by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 676 | |
| 28958 | 677 | lemma succ_Bit0: | 
| 26086 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 678 | "succ (Bit0 k) = Bit1 k" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 679 | unfolding numeral_simps by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 680 | |
| 28958 | 681 | lemma succ_Bit1: | 
| 26086 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 682 | "succ (Bit1 k) = Bit0 (succ k)" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 683 | unfolding numeral_simps by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 684 | |
| 28958 | 685 | lemmas succ_bin_simps [simp] = | 
| 26086 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 686 | succ_Pls succ_Min succ_Bit0 succ_Bit1 | 
| 26075 
815f3ccc0b45
added lemma lists {normalize,succ,pred,minus,add,mult}_bin_simps
 huffman parents: 
26072diff
changeset | 687 | |
| 28958 | 688 | text {* Predecessor *}
 | 
| 689 | ||
| 690 | lemma pred_Pls: | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 691 | "pred Pls = Min" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 692 | unfolding numeral_simps by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 693 | |
| 28958 | 694 | lemma pred_Min: | 
| 26086 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 695 | "pred Min = Bit0 Min" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 696 | unfolding numeral_simps by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 697 | |
| 28958 | 698 | lemma pred_Bit0: | 
| 26086 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 699 | "pred (Bit0 k) = Bit1 (pred k)" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 700 | unfolding numeral_simps by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 701 | |
| 28958 | 702 | lemma pred_Bit1: | 
| 26086 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 703 | "pred (Bit1 k) = Bit0 k" | 
| 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 704 | unfolding numeral_simps by simp | 
| 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 705 | |
| 28958 | 706 | lemmas pred_bin_simps [simp] = | 
| 26086 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 707 | pred_Pls pred_Min pred_Bit0 pred_Bit1 | 
| 26075 
815f3ccc0b45
added lemma lists {normalize,succ,pred,minus,add,mult}_bin_simps
 huffman parents: 
26072diff
changeset | 708 | |
| 28958 | 709 | |
| 710 | subsubsection {* Binary arithmetic *}
 | |
| 711 | ||
| 712 | text {* Addition *}
 | |
| 713 | ||
| 714 | lemma add_Pls: | |
| 715 | "Pls + k = k" | |
| 716 | unfolding numeral_simps by simp | |
| 717 | ||
| 718 | lemma add_Min: | |
| 719 | "Min + k = pred k" | |
| 720 | unfolding numeral_simps by simp | |
| 721 | ||
| 722 | lemma add_Bit0_Bit0: | |
| 723 | "(Bit0 k) + (Bit0 l) = Bit0 (k + l)" | |
| 724 | unfolding numeral_simps by simp | |
| 725 | ||
| 726 | lemma add_Bit0_Bit1: | |
| 727 | "(Bit0 k) + (Bit1 l) = Bit1 (k + l)" | |
| 728 | unfolding numeral_simps by simp | |
| 729 | ||
| 730 | lemma add_Bit1_Bit0: | |
| 731 | "(Bit1 k) + (Bit0 l) = Bit1 (k + l)" | |
| 732 | unfolding numeral_simps by simp | |
| 733 | ||
| 734 | lemma add_Bit1_Bit1: | |
| 735 | "(Bit1 k) + (Bit1 l) = Bit0 (k + succ l)" | |
| 736 | unfolding numeral_simps by simp | |
| 737 | ||
| 738 | lemma add_Pls_right: | |
| 739 | "k + Pls = k" | |
| 740 | unfolding numeral_simps by simp | |
| 741 | ||
| 742 | lemma add_Min_right: | |
| 743 | "k + Min = pred k" | |
| 744 | unfolding numeral_simps by simp | |
| 745 | ||
| 746 | lemmas add_bin_simps [simp] = | |
| 747 | add_Pls add_Min add_Pls_right add_Min_right | |
| 748 | add_Bit0_Bit0 add_Bit0_Bit1 add_Bit1_Bit0 add_Bit1_Bit1 | |
| 749 | ||
| 750 | text {* Negation *}
 | |
| 751 | ||
| 752 | lemma minus_Pls: | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 753 | "- Pls = Pls" | 
| 28958 | 754 | unfolding numeral_simps by simp | 
| 755 | ||
| 756 | lemma minus_Min: | |
| 26086 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 757 | "- Min = Bit1 Pls" | 
| 28958 | 758 | unfolding numeral_simps by simp | 
| 759 | ||
| 760 | lemma minus_Bit0: | |
| 26086 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 761 | "- (Bit0 k) = Bit0 (- k)" | 
| 28958 | 762 | unfolding numeral_simps by simp | 
| 763 | ||
| 764 | lemma minus_Bit1: | |
| 26086 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 765 | "- (Bit1 k) = Bit1 (pred (- k))" | 
| 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 766 | unfolding numeral_simps by simp | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 767 | |
| 28958 | 768 | lemmas minus_bin_simps [simp] = | 
| 26086 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 769 | minus_Pls minus_Min minus_Bit0 minus_Bit1 | 
| 26075 
815f3ccc0b45
added lemma lists {normalize,succ,pred,minus,add,mult}_bin_simps
 huffman parents: 
26072diff
changeset | 770 | |
| 28958 | 771 | text {* Subtraction *}
 | 
| 772 | ||
| 29046 | 773 | lemma diff_bin_simps [simp]: | 
| 774 | "k - Pls = k" | |
| 775 | "k - Min = succ k" | |
| 776 | "Pls - (Bit0 l) = Bit0 (Pls - l)" | |
| 777 | "Pls - (Bit1 l) = Bit1 (Min - l)" | |
| 778 | "Min - (Bit0 l) = Bit1 (Min - l)" | |
| 779 | "Min - (Bit1 l) = Bit0 (Min - l)" | |
| 28958 | 780 | "(Bit0 k) - (Bit0 l) = Bit0 (k - l)" | 
| 781 | "(Bit0 k) - (Bit1 l) = Bit1 (pred k - l)" | |
| 782 | "(Bit1 k) - (Bit0 l) = Bit1 (k - l)" | |
| 783 | "(Bit1 k) - (Bit1 l) = Bit0 (k - l)" | |
| 29046 | 784 | unfolding numeral_simps by simp_all | 
| 28958 | 785 | |
| 786 | text {* Multiplication *}
 | |
| 787 | ||
| 788 | lemma mult_Pls: | |
| 789 | "Pls * w = Pls" | |
| 26086 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 790 | unfolding numeral_simps by simp | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 791 | |
| 28958 | 792 | lemma mult_Min: | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 793 | "Min * k = - k" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 794 | unfolding numeral_simps by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 795 | |
| 28958 | 796 | lemma mult_Bit0: | 
| 26086 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 797 | "(Bit0 k) * l = Bit0 (k * l)" | 
| 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 798 | unfolding numeral_simps int_distrib by simp | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 799 | |
| 28958 | 800 | lemma mult_Bit1: | 
| 26086 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 801 | "(Bit1 k) * l = (Bit0 (k * l)) + l" | 
| 28958 | 802 | unfolding numeral_simps int_distrib by simp | 
| 803 | ||
| 804 | lemmas mult_bin_simps [simp] = | |
| 26086 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 805 | mult_Pls mult_Min mult_Bit0 mult_Bit1 | 
| 26075 
815f3ccc0b45
added lemma lists {normalize,succ,pred,minus,add,mult}_bin_simps
 huffman parents: 
26072diff
changeset | 806 | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 807 | |
| 28958 | 808 | subsubsection {* Binary comparisons *}
 | 
| 809 | ||
| 810 | text {* Preliminaries *}
 | |
| 811 | ||
| 812 | lemma even_less_0_iff: | |
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34055diff
changeset | 813 | "a + a < 0 \<longleftrightarrow> a < (0::'a::linordered_idom)" | 
| 28958 | 814 | proof - | 
| 815 | have "a + a < 0 \<longleftrightarrow> (1+1)*a < 0" by (simp add: left_distrib) | |
| 816 | also have "(1+1)*a < 0 \<longleftrightarrow> a < 0" | |
| 817 | by (simp add: mult_less_0_iff zero_less_two | |
| 818 | order_less_not_sym [OF zero_less_two]) | |
| 819 | finally show ?thesis . | |
| 820 | qed | |
| 821 | ||
| 822 | lemma le_imp_0_less: | |
| 823 | assumes le: "0 \<le> z" | |
| 824 | shows "(0::int) < 1 + z" | |
| 825 | proof - | |
| 826 | have "0 \<le> z" by fact | |
| 827 | also have "... < z + 1" by (rule less_add_one) | |
| 828 | also have "... = 1 + z" by (simp add: add_ac) | |
| 829 | finally show "0 < 1 + z" . | |
| 830 | qed | |
| 831 | ||
| 832 | lemma odd_less_0_iff: | |
| 833 | "(1 + z + z < 0) = (z < (0::int))" | |
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 834 | proof (cases z) | 
| 28958 | 835 | case (nonneg n) | 
| 836 | thus ?thesis by (simp add: linorder_not_less add_assoc add_increasing | |
| 837 | le_imp_0_less [THEN order_less_imp_le]) | |
| 838 | next | |
| 839 | case (neg n) | |
| 30079 
293b896b9c25
make proofs work whether or not One_nat_def is a simp rule; replace 1 with Suc 0 in the rhs of some simp rules
 huffman parents: 
30000diff
changeset | 840 | thus ?thesis by (simp del: of_nat_Suc of_nat_add of_nat_1 | 
| 
293b896b9c25
make proofs work whether or not One_nat_def is a simp rule; replace 1 with Suc 0 in the rhs of some simp rules
 huffman parents: 
30000diff
changeset | 841 | add: algebra_simps of_nat_1 [where 'a=int, symmetric] of_nat_add [symmetric]) | 
| 28958 | 842 | qed | 
| 843 | ||
| 28985 
af325cd29b15
add named lemma lists: neg_simps and iszero_simps
 huffman parents: 
28984diff
changeset | 844 | lemma bin_less_0_simps: | 
| 28958 | 845 | "Pls < 0 \<longleftrightarrow> False" | 
| 846 | "Min < 0 \<longleftrightarrow> True" | |
| 847 | "Bit0 w < 0 \<longleftrightarrow> w < 0" | |
| 848 | "Bit1 w < 0 \<longleftrightarrow> w < 0" | |
| 849 | unfolding numeral_simps | |
| 850 | by (simp_all add: even_less_0_iff odd_less_0_iff) | |
| 851 | ||
| 852 | lemma less_bin_lemma: "k < l \<longleftrightarrow> k - l < (0::int)" | |
| 853 | by simp | |
| 854 | ||
| 855 | lemma le_iff_pred_less: "k \<le> l \<longleftrightarrow> pred k < l" | |
| 856 | unfolding numeral_simps | |
| 857 | proof | |
| 858 | have "k - 1 < k" by simp | |
| 859 | also assume "k \<le> l" | |
| 860 | finally show "k - 1 < l" . | |
| 861 | next | |
| 862 | assume "k - 1 < l" | |
| 863 | hence "(k - 1) + 1 \<le> l" by (rule zless_imp_add1_zle) | |
| 864 | thus "k \<le> l" by simp | |
| 865 | qed | |
| 866 | ||
| 867 | lemma succ_pred: "succ (pred x) = x" | |
| 868 | unfolding numeral_simps by simp | |
| 869 | ||
| 870 | text {* Less-than *}
 | |
| 871 | ||
| 872 | lemma less_bin_simps [simp]: | |
| 873 | "Pls < Pls \<longleftrightarrow> False" | |
| 874 | "Pls < Min \<longleftrightarrow> False" | |
| 875 | "Pls < Bit0 k \<longleftrightarrow> Pls < k" | |
| 876 | "Pls < Bit1 k \<longleftrightarrow> Pls \<le> k" | |
| 877 | "Min < Pls \<longleftrightarrow> True" | |
| 878 | "Min < Min \<longleftrightarrow> False" | |
| 879 | "Min < Bit0 k \<longleftrightarrow> Min < k" | |
| 880 | "Min < Bit1 k \<longleftrightarrow> Min < k" | |
| 881 | "Bit0 k < Pls \<longleftrightarrow> k < Pls" | |
| 882 | "Bit0 k < Min \<longleftrightarrow> k \<le> Min" | |
| 883 | "Bit1 k < Pls \<longleftrightarrow> k < Pls" | |
| 884 | "Bit1 k < Min \<longleftrightarrow> k < Min" | |
| 885 | "Bit0 k < Bit0 l \<longleftrightarrow> k < l" | |
| 886 | "Bit0 k < Bit1 l \<longleftrightarrow> k \<le> l" | |
| 887 | "Bit1 k < Bit0 l \<longleftrightarrow> k < l" | |
| 888 | "Bit1 k < Bit1 l \<longleftrightarrow> k < l" | |
| 889 | unfolding le_iff_pred_less | |
| 890 | less_bin_lemma [of Pls] | |
| 891 | less_bin_lemma [of Min] | |
| 892 | less_bin_lemma [of "k"] | |
| 893 | less_bin_lemma [of "Bit0 k"] | |
| 894 | less_bin_lemma [of "Bit1 k"] | |
| 895 | less_bin_lemma [of "pred Pls"] | |
| 896 | less_bin_lemma [of "pred k"] | |
| 28985 
af325cd29b15
add named lemma lists: neg_simps and iszero_simps
 huffman parents: 
28984diff
changeset | 897 | by (simp_all add: bin_less_0_simps succ_pred) | 
| 28958 | 898 | |
| 899 | text {* Less-than-or-equal *}
 | |
| 900 | ||
| 901 | lemma le_bin_simps [simp]: | |
| 902 | "Pls \<le> Pls \<longleftrightarrow> True" | |
| 903 | "Pls \<le> Min \<longleftrightarrow> False" | |
| 904 | "Pls \<le> Bit0 k \<longleftrightarrow> Pls \<le> k" | |
| 905 | "Pls \<le> Bit1 k \<longleftrightarrow> Pls \<le> k" | |
| 906 | "Min \<le> Pls \<longleftrightarrow> True" | |
| 907 | "Min \<le> Min \<longleftrightarrow> True" | |
| 908 | "Min \<le> Bit0 k \<longleftrightarrow> Min < k" | |
| 909 | "Min \<le> Bit1 k \<longleftrightarrow> Min \<le> k" | |
| 910 | "Bit0 k \<le> Pls \<longleftrightarrow> k \<le> Pls" | |
| 911 | "Bit0 k \<le> Min \<longleftrightarrow> k \<le> Min" | |
| 912 | "Bit1 k \<le> Pls \<longleftrightarrow> k < Pls" | |
| 913 | "Bit1 k \<le> Min \<longleftrightarrow> k \<le> Min" | |
| 914 | "Bit0 k \<le> Bit0 l \<longleftrightarrow> k \<le> l" | |
| 915 | "Bit0 k \<le> Bit1 l \<longleftrightarrow> k \<le> l" | |
| 916 | "Bit1 k \<le> Bit0 l \<longleftrightarrow> k < l" | |
| 917 | "Bit1 k \<le> Bit1 l \<longleftrightarrow> k \<le> l" | |
| 918 | unfolding not_less [symmetric] | |
| 919 | by (simp_all add: not_le) | |
| 920 | ||
| 921 | text {* Equality *}
 | |
| 922 | ||
| 923 | lemma eq_bin_simps [simp]: | |
| 924 | "Pls = Pls \<longleftrightarrow> True" | |
| 925 | "Pls = Min \<longleftrightarrow> False" | |
| 926 | "Pls = Bit0 l \<longleftrightarrow> Pls = l" | |
| 927 | "Pls = Bit1 l \<longleftrightarrow> False" | |
| 928 | "Min = Pls \<longleftrightarrow> False" | |
| 929 | "Min = Min \<longleftrightarrow> True" | |
| 930 | "Min = Bit0 l \<longleftrightarrow> False" | |
| 931 | "Min = Bit1 l \<longleftrightarrow> Min = l" | |
| 932 | "Bit0 k = Pls \<longleftrightarrow> k = Pls" | |
| 933 | "Bit0 k = Min \<longleftrightarrow> False" | |
| 934 | "Bit1 k = Pls \<longleftrightarrow> False" | |
| 935 | "Bit1 k = Min \<longleftrightarrow> k = Min" | |
| 936 | "Bit0 k = Bit0 l \<longleftrightarrow> k = l" | |
| 937 | "Bit0 k = Bit1 l \<longleftrightarrow> False" | |
| 938 | "Bit1 k = Bit0 l \<longleftrightarrow> False" | |
| 939 | "Bit1 k = Bit1 l \<longleftrightarrow> k = l" | |
| 940 | unfolding order_eq_iff [where 'a=int] | |
| 941 | by (simp_all add: not_less) | |
| 942 | ||
| 943 | ||
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 944 | subsection {* Converting Numerals to Rings: @{term number_of} *}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 945 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 946 | class number_ring = number + comm_ring_1 + | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 947 | assumes number_of_eq: "number_of k = of_int k" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 948 | |
| 43531 
cc46a678faaf
added number_semiring class, plus a few new lemmas;
 huffman parents: 
42676diff
changeset | 949 | class number_semiring = number + comm_semiring_1 + | 
| 44709 | 950 | assumes number_of_int: "number_of (int n) = of_nat n" | 
| 43531 
cc46a678faaf
added number_semiring class, plus a few new lemmas;
 huffman parents: 
42676diff
changeset | 951 | |
| 
cc46a678faaf
added number_semiring class, plus a few new lemmas;
 huffman parents: 
42676diff
changeset | 952 | instance number_ring \<subseteq> number_semiring | 
| 
cc46a678faaf
added number_semiring class, plus a few new lemmas;
 huffman parents: 
42676diff
changeset | 953 | proof | 
| 44709 | 954 | fix n show "number_of (int n) = (of_nat n :: 'a)" | 
| 43531 
cc46a678faaf
added number_semiring class, plus a few new lemmas;
 huffman parents: 
42676diff
changeset | 955 | unfolding number_of_eq by (rule of_int_of_nat_eq) | 
| 
cc46a678faaf
added number_semiring class, plus a few new lemmas;
 huffman parents: 
42676diff
changeset | 956 | qed | 
| 
cc46a678faaf
added number_semiring class, plus a few new lemmas;
 huffman parents: 
42676diff
changeset | 957 | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 958 | text {* self-embedding of the integers *}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 959 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 960 | instantiation int :: number_ring | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 961 | begin | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 962 | |
| 37767 | 963 | definition | 
| 964 | int_number_of_def: "number_of w = (of_int w \<Colon> int)" | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 965 | |
| 28724 | 966 | instance proof | 
| 967 | qed (simp only: int_number_of_def) | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 968 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 969 | end | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 970 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 971 | lemma number_of_is_id: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 972 | "number_of (k::int) = k" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 973 | unfolding int_number_of_def by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 974 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 975 | lemma number_of_succ: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 976 | "number_of (succ k) = (1 + number_of k ::'a::number_ring)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 977 | unfolding number_of_eq numeral_simps by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 978 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 979 | lemma number_of_pred: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 980 | "number_of (pred w) = (- 1 + number_of w ::'a::number_ring)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 981 | unfolding number_of_eq numeral_simps by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 982 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 983 | lemma number_of_minus: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 984 | "number_of (uminus w) = (- (number_of w)::'a::number_ring)" | 
| 28958 | 985 | unfolding number_of_eq by (rule of_int_minus) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 986 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 987 | lemma number_of_add: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 988 | "number_of (v + w) = (number_of v + number_of w::'a::number_ring)" | 
| 28958 | 989 | unfolding number_of_eq by (rule of_int_add) | 
| 990 | ||
| 991 | lemma number_of_diff: | |
| 992 | "number_of (v - w) = (number_of v - number_of w::'a::number_ring)" | |
| 993 | unfolding number_of_eq by (rule of_int_diff) | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 994 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 995 | lemma number_of_mult: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 996 | "number_of (v * w) = (number_of v * number_of w::'a::number_ring)" | 
| 28958 | 997 | unfolding number_of_eq by (rule of_int_mult) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 998 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 999 | text {*
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1000 | The correctness of shifting. | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1001 | But it doesn't seem to give a measurable speed-up. | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1002 | *} | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1003 | |
| 26086 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 1004 | lemma double_number_of_Bit0: | 
| 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 1005 | "(1 + 1) * number_of w = (number_of (Bit0 w) ::'a::number_ring)" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1006 | unfolding number_of_eq numeral_simps left_distrib by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1007 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1008 | text {*
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1009 | Converting numerals 0 and 1 to their abstract versions. | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1010 | *} | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1011 | |
| 46027 
ff3c4f2bee01
semiring_numeral_0_eq_0, semiring_numeral_1_eq_1 now [simp], superseeding corresponding simp rules on type nat; attribute code_abbrev superseedes code_unfold_post
 haftmann parents: 
45694diff
changeset | 1012 | lemma semiring_numeral_0_eq_0 [simp, code_post]: | 
| 43531 
cc46a678faaf
added number_semiring class, plus a few new lemmas;
 huffman parents: 
42676diff
changeset | 1013 | "Numeral0 = (0::'a::number_semiring)" | 
| 
cc46a678faaf
added number_semiring class, plus a few new lemmas;
 huffman parents: 
42676diff
changeset | 1014 | using number_of_int [where 'a='a and n=0] | 
| 
cc46a678faaf
added number_semiring class, plus a few new lemmas;
 huffman parents: 
42676diff
changeset | 1015 | unfolding numeral_simps by simp | 
| 
cc46a678faaf
added number_semiring class, plus a few new lemmas;
 huffman parents: 
42676diff
changeset | 1016 | |
| 46027 
ff3c4f2bee01
semiring_numeral_0_eq_0, semiring_numeral_1_eq_1 now [simp], superseeding corresponding simp rules on type nat; attribute code_abbrev superseedes code_unfold_post
 haftmann parents: 
45694diff
changeset | 1017 | lemma semiring_numeral_1_eq_1 [simp, code_post]: | 
| 43531 
cc46a678faaf
added number_semiring class, plus a few new lemmas;
 huffman parents: 
42676diff
changeset | 1018 | "Numeral1 = (1::'a::number_semiring)" | 
| 
cc46a678faaf
added number_semiring class, plus a few new lemmas;
 huffman parents: 
42676diff
changeset | 1019 | using number_of_int [where 'a='a and n=1] | 
| 
cc46a678faaf
added number_semiring class, plus a few new lemmas;
 huffman parents: 
42676diff
changeset | 1020 | unfolding numeral_simps by simp | 
| 
cc46a678faaf
added number_semiring class, plus a few new lemmas;
 huffman parents: 
42676diff
changeset | 1021 | |
| 46027 
ff3c4f2bee01
semiring_numeral_0_eq_0, semiring_numeral_1_eq_1 now [simp], superseeding corresponding simp rules on type nat; attribute code_abbrev superseedes code_unfold_post
 haftmann parents: 
45694diff
changeset | 1022 | lemma numeral_0_eq_0: (* FIXME delete candidate *) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1023 | "Numeral0 = (0::'a::number_ring)" | 
| 43531 
cc46a678faaf
added number_semiring class, plus a few new lemmas;
 huffman parents: 
42676diff
changeset | 1024 | by (rule semiring_numeral_0_eq_0) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1025 | |
| 46027 
ff3c4f2bee01
semiring_numeral_0_eq_0, semiring_numeral_1_eq_1 now [simp], superseeding corresponding simp rules on type nat; attribute code_abbrev superseedes code_unfold_post
 haftmann parents: 
45694diff
changeset | 1026 | lemma numeral_1_eq_1: (* FIXME delete candidate *) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1027 | "Numeral1 = (1::'a::number_ring)" | 
| 43531 
cc46a678faaf
added number_semiring class, plus a few new lemmas;
 huffman parents: 
42676diff
changeset | 1028 | by (rule semiring_numeral_1_eq_1) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1029 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1030 | text {*
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1031 | Special-case simplification for small constants. | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1032 | *} | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1033 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1034 | text{*
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1035 | Unary minus for the abstract constant 1. Cannot be inserted | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1036 |   as a simprule until later: it is @{text number_of_Min} re-oriented!
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1037 | *} | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1038 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1039 | lemma numeral_m1_eq_minus_1: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1040 | "(-1::'a::number_ring) = - 1" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1041 | unfolding number_of_eq numeral_simps by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1042 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1043 | lemma mult_minus1 [simp]: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1044 | "-1 * z = -(z::'a::number_ring)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1045 | unfolding number_of_eq numeral_simps by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1046 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1047 | lemma mult_minus1_right [simp]: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1048 | "z * -1 = -(z::'a::number_ring)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1049 | unfolding number_of_eq numeral_simps by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1050 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1051 | (*Negation of a coefficient*) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1052 | lemma minus_number_of_mult [simp]: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1053 | "- (number_of w) * z = number_of (uminus w) * (z::'a::number_ring)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1054 | unfolding number_of_eq by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1055 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1056 | text {* Subtraction *}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1057 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1058 | lemma diff_number_of_eq: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1059 | "number_of v - number_of w = | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1060 | (number_of (v + uminus w)::'a::number_ring)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1061 | unfolding number_of_eq by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1062 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1063 | lemma number_of_Pls: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1064 | "number_of Pls = (0::'a::number_ring)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1065 | unfolding number_of_eq numeral_simps by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1066 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1067 | lemma number_of_Min: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1068 | "number_of Min = (- 1::'a::number_ring)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1069 | unfolding number_of_eq numeral_simps by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1070 | |
| 26086 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 1071 | lemma number_of_Bit0: | 
| 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 1072 | "number_of (Bit0 w) = (0::'a::number_ring) + (number_of w) + (number_of w)" | 
| 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 1073 | unfolding number_of_eq numeral_simps by simp | 
| 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 1074 | |
| 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 1075 | lemma number_of_Bit1: | 
| 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 1076 | "number_of (Bit1 w) = (1::'a::number_ring) + (number_of w) + (number_of w)" | 
| 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 1077 | unfolding number_of_eq numeral_simps by simp | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1078 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1079 | |
| 28958 | 1080 | subsubsection {* Equality of Binary Numbers *}
 | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1081 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1082 | text {* First version by Norbert Voelker *}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1083 | |
| 36716 | 1084 | definition (*for simplifying equalities*) iszero :: "'a\<Colon>semiring_1 \<Rightarrow> bool" where | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1085 | "iszero z \<longleftrightarrow> z = 0" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1086 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1087 | lemma iszero_0: "iszero 0" | 
| 36716 | 1088 | by (simp add: iszero_def) | 
| 1089 | ||
| 1090 | lemma iszero_Numeral0: "iszero (Numeral0 :: 'a::number_ring)" | |
| 1091 | by (simp add: iszero_0) | |
| 1092 | ||
| 1093 | lemma not_iszero_1: "\<not> iszero 1" | |
| 1094 | by (simp add: iszero_def) | |
| 1095 | ||
| 1096 | lemma not_iszero_Numeral1: "\<not> iszero (Numeral1 :: 'a::number_ring)" | |
| 1097 | by (simp add: not_iszero_1) | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1098 | |
| 35216 | 1099 | lemma eq_number_of_eq [simp]: | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1100 | "((number_of x::'a::number_ring) = number_of y) = | 
| 36716 | 1101 | iszero (number_of (x + uminus y) :: 'a)" | 
| 29667 | 1102 | unfolding iszero_def number_of_add number_of_minus | 
| 1103 | by (simp add: algebra_simps) | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1104 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1105 | lemma iszero_number_of_Pls: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1106 | "iszero ((number_of Pls)::'a::number_ring)" | 
| 29667 | 1107 | unfolding iszero_def numeral_0_eq_0 .. | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1108 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1109 | lemma nonzero_number_of_Min: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1110 | "~ iszero ((number_of Min)::'a::number_ring)" | 
| 29667 | 1111 | unfolding iszero_def numeral_m1_eq_minus_1 by simp | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1112 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1113 | |
| 28958 | 1114 | subsubsection {* Comparisons, for Ordered Rings *}
 | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1115 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1116 | lemmas double_eq_0_iff = double_zero | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1117 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1118 | lemma odd_nonzero: | 
| 33296 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 haftmann parents: 
33056diff
changeset | 1119 | "1 + z + z \<noteq> (0::int)" | 
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1120 | proof (cases z) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1121 | case (nonneg n) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1122 | have le: "0 \<le> z+z" by (simp add: nonneg add_increasing) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1123 | thus ?thesis using le_imp_0_less [OF le] | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1124 | by (auto simp add: add_assoc) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1125 | next | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1126 | case (neg n) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1127 | show ?thesis | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1128 | proof | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1129 | assume eq: "1 + z + z = 0" | 
| 44709 | 1130 | have "(0::int) < 1 + (int n + int n)" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1131 | by (simp add: le_imp_0_less add_increasing) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1132 | also have "... = - (1 + z + z)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1133 | by (simp add: neg add_assoc [symmetric]) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1134 | also have "... = 0" by (simp add: eq) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1135 | finally have "0<0" .. | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1136 | thus False by blast | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1137 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1138 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1139 | |
| 26086 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 1140 | lemma iszero_number_of_Bit0: | 
| 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 1141 | "iszero (number_of (Bit0 w)::'a) = | 
| 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 1142 |    iszero (number_of w::'a::{ring_char_0,number_ring})"
 | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1143 | proof - | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1144 | have "(of_int w + of_int w = (0::'a)) \<Longrightarrow> (w = 0)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1145 | proof - | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1146 | assume eq: "of_int w + of_int w = (0::'a)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1147 | then have "of_int (w + w) = (of_int 0 :: 'a)" by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1148 | then have "w + w = 0" by (simp only: of_int_eq_iff) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1149 | then show "w = 0" by (simp only: double_eq_0_iff) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1150 | qed | 
| 26086 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 1151 | thus ?thesis | 
| 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 1152 | by (auto simp add: iszero_def number_of_eq numeral_simps) | 
| 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 1153 | qed | 
| 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 1154 | |
| 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 1155 | lemma iszero_number_of_Bit1: | 
| 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 1156 |   "~ iszero (number_of (Bit1 w)::'a::{ring_char_0,number_ring})"
 | 
| 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 1157 | proof - | 
| 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 1158 | have "1 + of_int w + of_int w \<noteq> (0::'a)" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1159 | proof | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1160 | assume eq: "1 + of_int w + of_int w = (0::'a)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1161 | hence "of_int (1 + w + w) = (of_int 0 :: 'a)" by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1162 | hence "1 + w + w = 0" by (simp only: of_int_eq_iff) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1163 | with odd_nonzero show False by blast | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1164 | qed | 
| 26086 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 1165 | thus ?thesis | 
| 
3c243098b64a
New simpler representation of numerals, using Bit0 and Bit1 instead of BIT, B0, and B1
 huffman parents: 
26075diff
changeset | 1166 | by (auto simp add: iszero_def number_of_eq numeral_simps) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1167 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1168 | |
| 35216 | 1169 | lemmas iszero_simps [simp] = | 
| 28985 
af325cd29b15
add named lemma lists: neg_simps and iszero_simps
 huffman parents: 
28984diff
changeset | 1170 | iszero_0 not_iszero_1 | 
| 
af325cd29b15
add named lemma lists: neg_simps and iszero_simps
 huffman parents: 
28984diff
changeset | 1171 | iszero_number_of_Pls nonzero_number_of_Min | 
| 
af325cd29b15
add named lemma lists: neg_simps and iszero_simps
 huffman parents: 
28984diff
changeset | 1172 | iszero_number_of_Bit0 iszero_number_of_Bit1 | 
| 
af325cd29b15
add named lemma lists: neg_simps and iszero_simps
 huffman parents: 
28984diff
changeset | 1173 | (* iszero_number_of_Pls would never normally be used | 
| 
af325cd29b15
add named lemma lists: neg_simps and iszero_simps
 huffman parents: 
28984diff
changeset | 1174 | because its lhs simplifies to "iszero 0" *) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1175 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1176 | text {* Less-Than or Equals *}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1177 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1178 | text {* Reduces @{term "a\<le>b"} to @{term "~ (b<a)"} for ALL numerals. *}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1179 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1180 | lemmas le_number_of_eq_not_less = | 
| 45607 | 1181 | linorder_not_less [of "number_of w" "number_of v", symmetric] for w v | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1182 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1183 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1184 | text {* Absolute value (@{term abs}) *}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1185 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1186 | lemma abs_number_of: | 
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34055diff
changeset | 1187 |   "abs(number_of x::'a::{linordered_idom,number_ring}) =
 | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1188 | (if number_of x < (0::'a) then -number_of x else number_of x)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1189 | by (simp add: abs_if) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1190 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1191 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1192 | text {* Re-orientation of the equation nnn=x *}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1193 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1194 | lemma number_of_reorient: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1195 | "(number_of w = x) = (x = number_of w)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1196 | by auto | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1197 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1198 | |
| 28958 | 1199 | subsubsection {* Simplification of arithmetic operations on integer constants. *}
 | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1200 | |
| 45607 | 1201 | lemmas arith_extra_simps [simp] = | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1202 | number_of_add [symmetric] | 
| 28958 | 1203 | number_of_minus [symmetric] | 
| 1204 | numeral_m1_eq_minus_1 [symmetric] | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1205 | number_of_mult [symmetric] | 
| 45607 | 1206 | diff_number_of_eq abs_number_of | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1207 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1208 | text {*
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1209 | For making a minimal simpset, one must include these default simprules. | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1210 |   Also include @{text simp_thms}.
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1211 | *} | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1212 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1213 | lemmas arith_simps = | 
| 26075 
815f3ccc0b45
added lemma lists {normalize,succ,pred,minus,add,mult}_bin_simps
 huffman parents: 
26072diff
changeset | 1214 | normalize_bin_simps pred_bin_simps succ_bin_simps | 
| 
815f3ccc0b45
added lemma lists {normalize,succ,pred,minus,add,mult}_bin_simps
 huffman parents: 
26072diff
changeset | 1215 | add_bin_simps minus_bin_simps mult_bin_simps | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1216 | abs_zero abs_one arith_extra_simps | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1217 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1218 | text {* Simplification of relational operations *}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1219 | |
| 28962 
f603183f7a5c
enable le_bin_simps and less_bin_simps for simplifying inequalities on numerals
 huffman parents: 
28958diff
changeset | 1220 | lemma less_number_of [simp]: | 
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34055diff
changeset | 1221 |   "(number_of x::'a::{linordered_idom,number_ring}) < number_of y \<longleftrightarrow> x < y"
 | 
| 28962 
f603183f7a5c
enable le_bin_simps and less_bin_simps for simplifying inequalities on numerals
 huffman parents: 
28958diff
changeset | 1222 | unfolding number_of_eq by (rule of_int_less_iff) | 
| 
f603183f7a5c
enable le_bin_simps and less_bin_simps for simplifying inequalities on numerals
 huffman parents: 
28958diff
changeset | 1223 | |
| 
f603183f7a5c
enable le_bin_simps and less_bin_simps for simplifying inequalities on numerals
 huffman parents: 
28958diff
changeset | 1224 | lemma le_number_of [simp]: | 
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34055diff
changeset | 1225 |   "(number_of x::'a::{linordered_idom,number_ring}) \<le> number_of y \<longleftrightarrow> x \<le> y"
 | 
| 28962 
f603183f7a5c
enable le_bin_simps and less_bin_simps for simplifying inequalities on numerals
 huffman parents: 
28958diff
changeset | 1226 | unfolding number_of_eq by (rule of_int_le_iff) | 
| 
f603183f7a5c
enable le_bin_simps and less_bin_simps for simplifying inequalities on numerals
 huffman parents: 
28958diff
changeset | 1227 | |
| 28967 
3bdb1eae352c
enable eq_bin_simps for simplifying equalities on numerals
 huffman parents: 
28962diff
changeset | 1228 | lemma eq_number_of [simp]: | 
| 
3bdb1eae352c
enable eq_bin_simps for simplifying equalities on numerals
 huffman parents: 
28962diff
changeset | 1229 |   "(number_of x::'a::{ring_char_0,number_ring}) = number_of y \<longleftrightarrow> x = y"
 | 
| 
3bdb1eae352c
enable eq_bin_simps for simplifying equalities on numerals
 huffman parents: 
28962diff
changeset | 1230 | unfolding number_of_eq by (rule of_int_eq_iff) | 
| 
3bdb1eae352c
enable eq_bin_simps for simplifying equalities on numerals
 huffman parents: 
28962diff
changeset | 1231 | |
| 35216 | 1232 | lemmas rel_simps = | 
| 28962 
f603183f7a5c
enable le_bin_simps and less_bin_simps for simplifying inequalities on numerals
 huffman parents: 
28958diff
changeset | 1233 | less_number_of less_bin_simps | 
| 
f603183f7a5c
enable le_bin_simps and less_bin_simps for simplifying inequalities on numerals
 huffman parents: 
28958diff
changeset | 1234 | le_number_of le_bin_simps | 
| 28988 
13d6f120992b
revert to using eq_number_of_eq for simplification (Groebner_Examples.thy was broken)
 huffman parents: 
28985diff
changeset | 1235 | eq_number_of_eq eq_bin_simps | 
| 29039 | 1236 | iszero_simps | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1237 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1238 | |
| 28958 | 1239 | subsubsection {* Simplification of arithmetic when nested to the right. *}
 | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1240 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1241 | lemma add_number_of_left [simp]: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1242 | "number_of v + (number_of w + z) = | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1243 | (number_of(v + w) + z::'a::number_ring)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1244 | by (simp add: add_assoc [symmetric]) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1245 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1246 | lemma mult_number_of_left [simp]: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1247 | "number_of v * (number_of w * z) = | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1248 | (number_of(v * w) * z::'a::number_ring)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1249 | by (simp add: mult_assoc [symmetric]) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1250 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1251 | lemma add_number_of_diff1: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1252 | "number_of v + (number_of w - c) = | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1253 | number_of(v + w) - (c::'a::number_ring)" | 
| 35216 | 1254 | by (simp add: diff_minus) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1255 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1256 | lemma add_number_of_diff2 [simp]: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1257 | "number_of v + (c - number_of w) = | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1258 | number_of (v + uminus w) + (c::'a::number_ring)" | 
| 29667 | 1259 | by (simp add: algebra_simps diff_number_of_eq [symmetric]) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1260 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1261 | |
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1262 | |
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1263 | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1264 | subsection {* The Set of Integers *}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1265 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1266 | context ring_1 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1267 | begin | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1268 | |
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1269 | definition Ints :: "'a set" where | 
| 37767 | 1270 | "Ints = range of_int" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1271 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1272 | notation (xsymbols) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1273 |   Ints  ("\<int>")
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1274 | |
| 35634 | 1275 | lemma Ints_of_int [simp]: "of_int z \<in> \<int>" | 
| 1276 | by (simp add: Ints_def) | |
| 1277 | ||
| 1278 | lemma Ints_of_nat [simp]: "of_nat n \<in> \<int>" | |
| 45533 | 1279 | using Ints_of_int [of "of_nat n"] by simp | 
| 35634 | 1280 | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1281 | lemma Ints_0 [simp]: "0 \<in> \<int>" | 
| 45533 | 1282 | using Ints_of_int [of "0"] by simp | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1283 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1284 | lemma Ints_1 [simp]: "1 \<in> \<int>" | 
| 45533 | 1285 | using Ints_of_int [of "1"] by simp | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1286 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1287 | lemma Ints_add [simp]: "a \<in> \<int> \<Longrightarrow> b \<in> \<int> \<Longrightarrow> a + b \<in> \<int>" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1288 | apply (auto simp add: Ints_def) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1289 | apply (rule range_eqI) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1290 | apply (rule of_int_add [symmetric]) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1291 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1292 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1293 | lemma Ints_minus [simp]: "a \<in> \<int> \<Longrightarrow> -a \<in> \<int>" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1294 | apply (auto simp add: Ints_def) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1295 | apply (rule range_eqI) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1296 | apply (rule of_int_minus [symmetric]) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1297 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1298 | |
| 35634 | 1299 | lemma Ints_diff [simp]: "a \<in> \<int> \<Longrightarrow> b \<in> \<int> \<Longrightarrow> a - b \<in> \<int>" | 
| 1300 | apply (auto simp add: Ints_def) | |
| 1301 | apply (rule range_eqI) | |
| 1302 | apply (rule of_int_diff [symmetric]) | |
| 1303 | done | |
| 1304 | ||
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1305 | lemma Ints_mult [simp]: "a \<in> \<int> \<Longrightarrow> b \<in> \<int> \<Longrightarrow> a * b \<in> \<int>" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1306 | apply (auto simp add: Ints_def) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1307 | apply (rule range_eqI) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1308 | apply (rule of_int_mult [symmetric]) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1309 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1310 | |
| 35634 | 1311 | lemma Ints_power [simp]: "a \<in> \<int> \<Longrightarrow> a ^ n \<in> \<int>" | 
| 1312 | by (induct n) simp_all | |
| 1313 | ||
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1314 | lemma Ints_cases [cases set: Ints]: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1315 | assumes "q \<in> \<int>" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1316 | obtains (of_int) z where "q = of_int z" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1317 | unfolding Ints_def | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1318 | proof - | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1319 | from `q \<in> \<int>` have "q \<in> range of_int" unfolding Ints_def . | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1320 | then obtain z where "q = of_int z" .. | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1321 | then show thesis .. | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1322 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1323 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1324 | lemma Ints_induct [case_names of_int, induct set: Ints]: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1325 | "q \<in> \<int> \<Longrightarrow> (\<And>z. P (of_int z)) \<Longrightarrow> P q" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1326 | by (rule Ints_cases) auto | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1327 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1328 | end | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1329 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1330 | text {* The premise involving @{term Ints} prevents @{term "a = 1/2"}. *}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1331 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1332 | lemma Ints_double_eq_0_iff: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1333 | assumes in_Ints: "a \<in> Ints" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1334 | shows "(a + a = 0) = (a = (0::'a::ring_char_0))" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1335 | proof - | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1336 | from in_Ints have "a \<in> range of_int" unfolding Ints_def [symmetric] . | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1337 | then obtain z where a: "a = of_int z" .. | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1338 | show ?thesis | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1339 | proof | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1340 | assume "a = 0" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1341 | thus "a + a = 0" by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1342 | next | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1343 | assume eq: "a + a = 0" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1344 | hence "of_int (z + z) = (of_int 0 :: 'a)" by (simp add: a) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1345 | hence "z + z = 0" by (simp only: of_int_eq_iff) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1346 | hence "z = 0" by (simp only: double_eq_0_iff) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1347 | thus "a = 0" by (simp add: a) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1348 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1349 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1350 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1351 | lemma Ints_odd_nonzero: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1352 | assumes in_Ints: "a \<in> Ints" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1353 | shows "1 + a + a \<noteq> (0::'a::ring_char_0)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1354 | proof - | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1355 | from in_Ints have "a \<in> range of_int" unfolding Ints_def [symmetric] . | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1356 | then obtain z where a: "a = of_int z" .. | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1357 | show ?thesis | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1358 | proof | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1359 | assume eq: "1 + a + a = 0" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1360 | hence "of_int (1 + z + z) = (of_int 0 :: 'a)" by (simp add: a) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1361 | hence "1 + z + z = 0" by (simp only: of_int_eq_iff) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1362 | with odd_nonzero show False by blast | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1363 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1364 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1365 | |
| 35634 | 1366 | lemma Ints_number_of [simp]: | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1367 | "(number_of w :: 'a::number_ring) \<in> Ints" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1368 | unfolding number_of_eq Ints_def by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1369 | |
| 35634 | 1370 | lemma Nats_number_of [simp]: | 
| 1371 | "Int.Pls \<le> w \<Longrightarrow> (number_of w :: 'a::number_ring) \<in> Nats" | |
| 1372 | unfolding Int.Pls_def number_of_eq | |
| 1373 | by (simp only: of_nat_nat [symmetric] of_nat_in_Nats) | |
| 1374 | ||
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1375 | lemma Ints_odd_less_0: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1376 | assumes in_Ints: "a \<in> Ints" | 
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34055diff
changeset | 1377 | shows "(1 + a + a < 0) = (a < (0::'a::linordered_idom))" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1378 | proof - | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1379 | from in_Ints have "a \<in> range of_int" unfolding Ints_def [symmetric] . | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1380 | then obtain z where a: "a = of_int z" .. | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1381 | hence "((1::'a) + a + a < 0) = (of_int (1 + z + z) < (of_int 0 :: 'a))" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1382 | by (simp add: a) | 
| 45532 
74b17a0881b3
Int.thy: remove duplicate lemmas double_less_0_iff and odd_less_0, use {even,odd}_less_0_iff instead
 huffman parents: 
45219diff
changeset | 1383 | also have "... = (z < 0)" by (simp only: of_int_less_iff odd_less_0_iff) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1384 | also have "... = (a < 0)" by (simp add: a) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1385 | finally show ?thesis . | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1386 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1387 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1388 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1389 | subsection {* @{term setsum} and @{term setprod} *}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1390 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1391 | lemma of_nat_setsum: "of_nat (setsum f A) = (\<Sum>x\<in>A. of_nat(f x))" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1392 | apply (cases "finite A") | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1393 | apply (erule finite_induct, auto) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1394 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1395 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1396 | lemma of_int_setsum: "of_int (setsum f A) = (\<Sum>x\<in>A. of_int(f x))" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1397 | apply (cases "finite A") | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1398 | apply (erule finite_induct, auto) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1399 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1400 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1401 | lemma of_nat_setprod: "of_nat (setprod f A) = (\<Prod>x\<in>A. of_nat(f x))" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1402 | apply (cases "finite A") | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1403 | apply (erule finite_induct, auto simp add: of_nat_mult) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1404 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1405 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1406 | lemma of_int_setprod: "of_int (setprod f A) = (\<Prod>x\<in>A. of_int(f x))" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1407 | apply (cases "finite A") | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1408 | apply (erule finite_induct, auto) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1409 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1410 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1411 | lemmas int_setsum = of_nat_setsum [where 'a=int] | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1412 | lemmas int_setprod = of_nat_setprod [where 'a=int] | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1413 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1414 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1415 | subsection{*Inequality Reasoning for the Arithmetic Simproc*}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1416 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1417 | lemma add_numeral_0: "Numeral0 + a = (a::'a::number_ring)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1418 | by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1419 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1420 | lemma add_numeral_0_right: "a + Numeral0 = (a::'a::number_ring)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1421 | by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1422 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1423 | lemma mult_numeral_1: "Numeral1 * a = (a::'a::number_ring)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1424 | by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1425 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1426 | lemma mult_numeral_1_right: "a * Numeral1 = (a::'a::number_ring)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1427 | by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1428 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1429 | lemma divide_numeral_1: "a / Numeral1 = (a::'a::{number_ring,field})"
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1430 | by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1431 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1432 | lemma inverse_numeral_1: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1433 |   "inverse Numeral1 = (Numeral1::'a::{number_ring,field})"
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1434 | by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1435 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1436 | text{*Theorem lists for the cancellation simprocs. The use of binary numerals
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1437 | for 0 and 1 reduces the number of special cases.*} | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1438 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1439 | lemmas add_0s = add_numeral_0 add_numeral_0_right | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1440 | lemmas mult_1s = mult_numeral_1 mult_numeral_1_right | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1441 | mult_minus1 mult_minus1_right | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1442 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1443 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1444 | subsection{*Special Arithmetic Rules for Abstract 0 and 1*}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1445 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1446 | text{*Arithmetic computations are defined for binary literals, which leaves 0
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1447 | and 1 as special cases. Addition already has rules for 0, but not 1. | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1448 | Multiplication and unary minus already have rules for both 0 and 1.*} | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1449 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1450 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1451 | lemma binop_eq: "[|f x y = g x y; x = x'; y = y'|] ==> f x' y' = g x' y'" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1452 | by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1453 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1454 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1455 | lemmas add_number_of_eq = number_of_add [symmetric] | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1456 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1457 | text{*Allow 1 on either or both sides*}
 | 
| 43531 
cc46a678faaf
added number_semiring class, plus a few new lemmas;
 huffman parents: 
42676diff
changeset | 1458 | lemma semiring_one_add_one_is_two: "1 + 1 = (2::'a::number_semiring)" | 
| 
cc46a678faaf
added number_semiring class, plus a few new lemmas;
 huffman parents: 
42676diff
changeset | 1459 | using number_of_int [where 'a='a and n="Suc (Suc 0)"] | 
| 
cc46a678faaf
added number_semiring class, plus a few new lemmas;
 huffman parents: 
42676diff
changeset | 1460 | by (simp add: numeral_simps) | 
| 
cc46a678faaf
added number_semiring class, plus a few new lemmas;
 huffman parents: 
42676diff
changeset | 1461 | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1462 | lemma one_add_one_is_two: "1 + 1 = (2::'a::number_ring)" | 
| 43531 
cc46a678faaf
added number_semiring class, plus a few new lemmas;
 huffman parents: 
42676diff
changeset | 1463 | by (rule semiring_one_add_one_is_two) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1464 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1465 | lemmas add_special = | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1466 | one_add_one_is_two | 
| 45607 | 1467 | binop_eq [of "op +", OF add_number_of_eq numeral_1_eq_1 refl] | 
| 1468 | binop_eq [of "op +", OF add_number_of_eq refl numeral_1_eq_1] | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1469 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1470 | text{*Allow 1 on either or both sides (1-1 already simplifies to 0)*}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1471 | lemmas diff_special = | 
| 45607 | 1472 | binop_eq [of "op -", OF diff_number_of_eq numeral_1_eq_1 refl] | 
| 1473 | binop_eq [of "op -", OF diff_number_of_eq refl numeral_1_eq_1] | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1474 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1475 | text{*Allow 0 or 1 on either side with a binary numeral on the other*}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1476 | lemmas eq_special = | 
| 45607 | 1477 | binop_eq [of "op =", OF eq_number_of_eq numeral_0_eq_0 refl] | 
| 1478 | binop_eq [of "op =", OF eq_number_of_eq numeral_1_eq_1 refl] | |
| 1479 | binop_eq [of "op =", OF eq_number_of_eq refl numeral_0_eq_0] | |
| 1480 | binop_eq [of "op =", OF eq_number_of_eq refl numeral_1_eq_1] | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1481 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1482 | text{*Allow 0 or 1 on either side with a binary numeral on the other*}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1483 | lemmas less_special = | 
| 45607 | 1484 | binop_eq [of "op <", OF less_number_of numeral_0_eq_0 refl] | 
| 1485 | binop_eq [of "op <", OF less_number_of numeral_1_eq_1 refl] | |
| 1486 | binop_eq [of "op <", OF less_number_of refl numeral_0_eq_0] | |
| 1487 | binop_eq [of "op <", OF less_number_of refl numeral_1_eq_1] | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1488 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1489 | text{*Allow 0 or 1 on either side with a binary numeral on the other*}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1490 | lemmas le_special = | 
| 45607 | 1491 | binop_eq [of "op \<le>", OF le_number_of numeral_0_eq_0 refl] | 
| 1492 | binop_eq [of "op \<le>", OF le_number_of numeral_1_eq_1 refl] | |
| 1493 | binop_eq [of "op \<le>", OF le_number_of refl numeral_0_eq_0] | |
| 1494 | binop_eq [of "op \<le>", OF le_number_of refl numeral_1_eq_1] | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1495 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1496 | lemmas arith_special[simp] = | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1497 | add_special diff_special eq_special less_special le_special | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1498 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1499 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1500 | text {* Legacy theorems *}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1501 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1502 | lemmas zle_int = of_nat_le_iff [where 'a=int] | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1503 | lemmas int_int_eq = of_nat_eq_iff [where 'a=int] | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1504 | |
| 30802 | 1505 | subsection {* Setting up simplification procedures *}
 | 
| 1506 | ||
| 1507 | lemmas int_arith_rules = | |
| 1508 | neg_le_iff_le numeral_0_eq_0 numeral_1_eq_1 | |
| 1509 | minus_zero diff_minus left_minus right_minus | |
| 45219 
29f6e990674d
removed mult_Bit1 from int_arith_rules (cf. 882403378a41 and 3078fd2eec7b, where mult_num1 erroneously replaced mult_1)
 huffman parents: 
45196diff
changeset | 1510 | mult_zero_left mult_zero_right mult_1_left mult_1_right | 
| 30802 | 1511 | mult_minus_left mult_minus_right | 
| 1512 | minus_add_distrib minus_minus mult_assoc | |
| 1513 | of_nat_0 of_nat_1 of_nat_Suc of_nat_add of_nat_mult | |
| 1514 | of_int_0 of_int_1 of_int_add of_int_mult | |
| 1515 | ||
| 28952 
15a4b2cf8c34
made repository layout more coherent with logical distribution structure; stripped some $Id$s
 haftmann parents: 
28724diff
changeset | 1516 | use "Tools/int_arith.ML" | 
| 30496 
7cdcc9dd95cb
vague cleanup in arith proof tools setup: deleted dead code, more proper structures, clearer arrangement
 haftmann parents: 
30273diff
changeset | 1517 | declaration {* K Int_Arith.setup *}
 | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1518 | |
| 43595 | 1519 | simproc_setup fast_arith ("(m::'a::{linordered_idom,number_ring}) < n" |
 | 
| 1520 |   "(m::'a::{linordered_idom,number_ring}) <= n" |
 | |
| 1521 |   "(m::'a::{linordered_idom,number_ring}) = n") =
 | |
| 1522 |   {* fn _ => fn ss => fn ct => Lin_Arith.simproc ss (term_of ct) *}
 | |
| 1523 | ||
| 31024 
0fdf666e08bf
reimplement reorientation simproc using theory data
 huffman parents: 
31021diff
changeset | 1524 | setup {*
 | 
| 33523 | 1525 | Reorient_Proc.add | 
| 31065 | 1526 |     (fn Const (@{const_name number_of}, _) $ _ => true | _ => false)
 | 
| 31024 
0fdf666e08bf
reimplement reorientation simproc using theory data
 huffman parents: 
31021diff
changeset | 1527 | *} | 
| 
0fdf666e08bf
reimplement reorientation simproc using theory data
 huffman parents: 
31021diff
changeset | 1528 | |
| 33523 | 1529 | simproc_setup reorient_numeral ("number_of w = x") = Reorient_Proc.proc
 | 
| 31024 
0fdf666e08bf
reimplement reorientation simproc using theory data
 huffman parents: 
31021diff
changeset | 1530 | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1531 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1532 | subsection{*Lemmas About Small Numerals*}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1533 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1534 | lemma of_int_m1 [simp]: "of_int -1 = (-1 :: 'a :: number_ring)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1535 | proof - | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1536 | have "(of_int -1 :: 'a) = of_int (- 1)" by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1537 | also have "... = - of_int 1" by (simp only: of_int_minus) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1538 | also have "... = -1" by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1539 | finally show ?thesis . | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1540 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1541 | |
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34055diff
changeset | 1542 | lemma abs_minus_one [simp]: "abs (-1) = (1::'a::{linordered_idom,number_ring})"
 | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1543 | by (simp add: abs_if) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1544 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1545 | lemma abs_power_minus_one [simp]: | 
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34055diff
changeset | 1546 |   "abs(-1 ^ n) = (1::'a::{linordered_idom,number_ring})"
 | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1547 | by (simp add: power_abs) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1548 | |
| 30000 | 1549 | lemma of_int_number_of_eq [simp]: | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1550 | "of_int (number_of v) = (number_of v :: 'a :: number_ring)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1551 | by (simp add: number_of_eq) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1552 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1553 | text{*Lemmas for specialist use, NOT as default simprules*}
 | 
| 43531 
cc46a678faaf
added number_semiring class, plus a few new lemmas;
 huffman parents: 
42676diff
changeset | 1554 | (* TODO: see if semiring duplication can be removed without breaking proofs *) | 
| 
cc46a678faaf
added number_semiring class, plus a few new lemmas;
 huffman parents: 
42676diff
changeset | 1555 | lemma semiring_mult_2: "2 * z = (z+z::'a::number_semiring)" | 
| 
cc46a678faaf
added number_semiring class, plus a few new lemmas;
 huffman parents: 
42676diff
changeset | 1556 | unfolding semiring_one_add_one_is_two [symmetric] left_distrib by simp | 
| 
cc46a678faaf
added number_semiring class, plus a few new lemmas;
 huffman parents: 
42676diff
changeset | 1557 | |
| 
cc46a678faaf
added number_semiring class, plus a few new lemmas;
 huffman parents: 
42676diff
changeset | 1558 | lemma semiring_mult_2_right: "z * 2 = (z+z::'a::number_semiring)" | 
| 
cc46a678faaf
added number_semiring class, plus a few new lemmas;
 huffman parents: 
42676diff
changeset | 1559 | by (subst mult_commute, rule semiring_mult_2) | 
| 
cc46a678faaf
added number_semiring class, plus a few new lemmas;
 huffman parents: 
42676diff
changeset | 1560 | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1561 | lemma mult_2: "2 * z = (z+z::'a::number_ring)" | 
| 43531 
cc46a678faaf
added number_semiring class, plus a few new lemmas;
 huffman parents: 
42676diff
changeset | 1562 | by (rule semiring_mult_2) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1563 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1564 | lemma mult_2_right: "z * 2 = (z+z::'a::number_ring)" | 
| 43531 
cc46a678faaf
added number_semiring class, plus a few new lemmas;
 huffman parents: 
42676diff
changeset | 1565 | by (rule semiring_mult_2_right) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1566 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1567 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1568 | subsection{*More Inequality Reasoning*}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1569 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1570 | lemma zless_add1_eq: "(w < z + (1::int)) = (w<z | w=z)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1571 | by arith | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1572 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1573 | lemma add1_zle_eq: "(w + (1::int) \<le> z) = (w<z)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1574 | by arith | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1575 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1576 | lemma zle_diff1_eq [simp]: "(w \<le> z - (1::int)) = (w<z)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1577 | by arith | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1578 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1579 | lemma zle_add1_eq_le [simp]: "(w < z + (1::int)) = (w\<le>z)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1580 | by arith | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1581 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1582 | lemma int_one_le_iff_zero_less: "((1::int) \<le> z) = (0 < z)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1583 | by arith | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1584 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1585 | |
| 28958 | 1586 | subsection{*The functions @{term nat} and @{term int}*}
 | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1587 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1588 | text{*Simplify the terms @{term "int 0"}, @{term "int(Suc 0)"} and
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1589 |   @{term "w + - z"}*}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1590 | declare Zero_int_def [symmetric, simp] | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1591 | declare One_int_def [symmetric, simp] | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1592 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1593 | lemmas diff_int_def_symmetric = diff_int_def [symmetric, simp] | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1594 | |
| 44695 
075327b8e841
remove duplicate lemma nat_zero in favor of nat_0
 huffman parents: 
43595diff
changeset | 1595 | lemma nat_0 [simp]: "nat 0 = 0" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1596 | by (simp add: nat_eq_iff) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1597 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1598 | lemma nat_1: "nat 1 = Suc 0" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1599 | by (subst nat_eq_iff, simp) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1600 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1601 | lemma nat_2: "nat 2 = Suc (Suc 0)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1602 | by (subst nat_eq_iff, simp) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1603 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1604 | lemma one_less_nat_eq [simp]: "(Suc 0 < nat z) = (1 < z)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1605 | apply (insert zless_nat_conj [of 1 z]) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1606 | apply (auto simp add: nat_1) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1607 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1608 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1609 | text{*This simplifies expressions of the form @{term "int n = z"} where
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1610 | z is an integer literal.*} | 
| 45607 | 1611 | lemmas int_eq_iff_number_of [simp] = int_eq_iff [of _ "number_of v"] for v | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1612 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1613 | lemma split_nat [arith_split]: | 
| 44709 | 1614 | "P(nat(i::int)) = ((\<forall>n. i = int n \<longrightarrow> P n) & (i < 0 \<longrightarrow> P 0))" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1615 | (is "?P = (?L & ?R)") | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1616 | proof (cases "i < 0") | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1617 | case True thus ?thesis by auto | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1618 | next | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1619 | case False | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1620 | have "?P = ?L" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1621 | proof | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1622 | assume ?P thus ?L using False by clarsimp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1623 | next | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1624 | assume ?L thus ?P using False by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1625 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1626 | with False show ?thesis by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1627 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1628 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1629 | context ring_1 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1630 | begin | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1631 | |
| 33056 
791a4655cae3
renamed "nitpick_const_xxx" attributes to "nitpick_xxx" and "nitpick_ind_intros" to "nitpick_intros"
 blanchet parents: 
32437diff
changeset | 1632 | lemma of_int_of_nat [nitpick_simp]: | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1633 | "of_int k = (if k < 0 then - of_nat (nat (- k)) else of_nat (nat k))" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1634 | proof (cases "k < 0") | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1635 | case True then have "0 \<le> - k" by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1636 | then have "of_nat (nat (- k)) = of_int (- k)" by (rule of_nat_nat) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1637 | with True show ?thesis by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1638 | next | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1639 | case False then show ?thesis by (simp add: not_less of_nat_nat) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1640 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1641 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1642 | end | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1643 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1644 | lemma nat_mult_distrib: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1645 | fixes z z' :: int | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1646 | assumes "0 \<le> z" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1647 | shows "nat (z * z') = nat z * nat z'" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1648 | proof (cases "0 \<le> z'") | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1649 | case False with assms have "z * z' \<le> 0" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1650 | by (simp add: not_le mult_le_0_iff) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1651 | then have "nat (z * z') = 0" by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1652 | moreover from False have "nat z' = 0" by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1653 | ultimately show ?thesis by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1654 | next | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1655 | case True with assms have ge_0: "z * z' \<ge> 0" by (simp add: zero_le_mult_iff) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1656 | show ?thesis | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1657 | by (rule injD [of "of_nat :: nat \<Rightarrow> int", OF inj_of_nat]) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1658 | (simp only: of_nat_mult of_nat_nat [OF True] | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1659 | of_nat_nat [OF assms] of_nat_nat [OF ge_0], simp) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1660 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1661 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1662 | lemma nat_mult_distrib_neg: "z \<le> (0::int) ==> nat(z*z') = nat(-z) * nat(-z')" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1663 | apply (rule trans) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1664 | apply (rule_tac [2] nat_mult_distrib, auto) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1665 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1666 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1667 | lemma nat_abs_mult_distrib: "nat (abs (w * z)) = nat (abs w) * nat (abs z)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1668 | apply (cases "z=0 | w=0") | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1669 | apply (auto simp add: abs_if nat_mult_distrib [symmetric] | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1670 | nat_mult_distrib_neg [symmetric] mult_less_0_iff) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1671 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1672 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1673 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1674 | subsection "Induction principles for int" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1675 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1676 | text{*Well-founded segments of the integers*}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1677 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1678 | definition | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1679 | int_ge_less_than :: "int => (int * int) set" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1680 | where | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1681 |   "int_ge_less_than d = {(z',z). d \<le> z' & z' < z}"
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1682 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1683 | theorem wf_int_ge_less_than: "wf (int_ge_less_than d)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1684 | proof - | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1685 | have "int_ge_less_than d \<subseteq> measure (%z. nat (z-d))" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1686 | by (auto simp add: int_ge_less_than_def) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1687 | thus ?thesis | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1688 | by (rule wf_subset [OF wf_measure]) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1689 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1690 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1691 | text{*This variant looks odd, but is typical of the relations suggested
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1692 | by RankFinder.*} | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1693 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1694 | definition | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1695 | int_ge_less_than2 :: "int => (int * int) set" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1696 | where | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1697 |   "int_ge_less_than2 d = {(z',z). d \<le> z & z' < z}"
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1698 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1699 | theorem wf_int_ge_less_than2: "wf (int_ge_less_than2 d)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1700 | proof - | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1701 | have "int_ge_less_than2 d \<subseteq> measure (%z. nat (1+z-d))" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1702 | by (auto simp add: int_ge_less_than2_def) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1703 | thus ?thesis | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1704 | by (rule wf_subset [OF wf_measure]) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1705 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1706 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1707 | (* `set:int': dummy construction *) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1708 | theorem int_ge_induct [case_names base step, induct set: int]: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1709 | fixes i :: int | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1710 | assumes ge: "k \<le> i" and | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1711 | base: "P k" and | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1712 | step: "\<And>i. k \<le> i \<Longrightarrow> P i \<Longrightarrow> P (i + 1)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1713 | shows "P i" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1714 | proof - | 
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1715 |   { fix n
 | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1716 | have "\<And>i::int. n = nat (i - k) \<Longrightarrow> k \<le> i \<Longrightarrow> P i" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1717 | proof (induct n) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1718 | case 0 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1719 | hence "i = k" by arith | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1720 | thus "P i" using base by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1721 | next | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1722 | case (Suc n) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1723 | then have "n = nat((i - 1) - k)" by arith | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1724 | moreover | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1725 | have ki1: "k \<le> i - 1" using Suc.prems by arith | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1726 | ultimately | 
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1727 | have "P (i - 1)" by (rule Suc.hyps) | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1728 | from step [OF ki1 this] show ?case by simp | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1729 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1730 | } | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1731 | with ge show ?thesis by fast | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1732 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1733 | |
| 25928 | 1734 | (* `set:int': dummy construction *) | 
| 1735 | theorem int_gr_induct [case_names base step, induct set: int]: | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1736 | assumes gr: "k < (i::int)" and | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1737 | base: "P(k+1)" and | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1738 | step: "\<And>i. \<lbrakk>k < i; P i\<rbrakk> \<Longrightarrow> P(i+1)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1739 | shows "P i" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1740 | apply(rule int_ge_induct[of "k + 1"]) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1741 | using gr apply arith | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1742 | apply(rule base) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1743 | apply (rule step, simp+) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1744 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1745 | |
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1746 | theorem int_le_induct [consumes 1, case_names base step]: | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1747 | assumes le: "i \<le> (k::int)" and | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1748 | base: "P(k)" and | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1749 | step: "\<And>i. \<lbrakk>i \<le> k; P i\<rbrakk> \<Longrightarrow> P(i - 1)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1750 | shows "P i" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1751 | proof - | 
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1752 |   { fix n
 | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1753 | have "\<And>i::int. n = nat(k-i) \<Longrightarrow> i \<le> k \<Longrightarrow> P i" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1754 | proof (induct n) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1755 | case 0 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1756 | hence "i = k" by arith | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1757 | thus "P i" using base by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1758 | next | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1759 | case (Suc n) | 
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1760 | hence "n = nat (k - (i + 1))" by arith | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1761 | moreover | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1762 | have ki1: "i + 1 \<le> k" using Suc.prems by arith | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1763 | ultimately | 
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1764 | have "P (i + 1)" by(rule Suc.hyps) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1765 | from step[OF ki1 this] show ?case by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1766 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1767 | } | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1768 | with le show ?thesis by fast | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1769 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1770 | |
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1771 | theorem int_less_induct [consumes 1, case_names base step]: | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1772 | assumes less: "(i::int) < k" and | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1773 | base: "P(k - 1)" and | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1774 | step: "\<And>i. \<lbrakk>i < k; P i\<rbrakk> \<Longrightarrow> P(i - 1)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1775 | shows "P i" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1776 | apply(rule int_le_induct[of _ "k - 1"]) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1777 | using less apply arith | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1778 | apply(rule base) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1779 | apply (rule step, simp+) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1780 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1781 | |
| 36811 
4ab4aa5bee1c
renamed former Int.int_induct to Int.int_of_nat_induct, former Presburger.int_induct to Int.int_induct: is more conservative and more natural than the intermediate solution
 haftmann parents: 
36801diff
changeset | 1782 | theorem int_induct [case_names base step1 step2]: | 
| 36801 
3560de0fe851
moved int induction lemma to theory Int as int_bidirectional_induct
 haftmann parents: 
36749diff
changeset | 1783 | fixes k :: int | 
| 
3560de0fe851
moved int induction lemma to theory Int as int_bidirectional_induct
 haftmann parents: 
36749diff
changeset | 1784 | assumes base: "P k" | 
| 
3560de0fe851
moved int induction lemma to theory Int as int_bidirectional_induct
 haftmann parents: 
36749diff
changeset | 1785 | and step1: "\<And>i. k \<le> i \<Longrightarrow> P i \<Longrightarrow> P (i + 1)" | 
| 
3560de0fe851
moved int induction lemma to theory Int as int_bidirectional_induct
 haftmann parents: 
36749diff
changeset | 1786 | and step2: "\<And>i. k \<ge> i \<Longrightarrow> P i \<Longrightarrow> P (i - 1)" | 
| 
3560de0fe851
moved int induction lemma to theory Int as int_bidirectional_induct
 haftmann parents: 
36749diff
changeset | 1787 | shows "P i" | 
| 
3560de0fe851
moved int induction lemma to theory Int as int_bidirectional_induct
 haftmann parents: 
36749diff
changeset | 1788 | proof - | 
| 
3560de0fe851
moved int induction lemma to theory Int as int_bidirectional_induct
 haftmann parents: 
36749diff
changeset | 1789 | have "i \<le> k \<or> i \<ge> k" by arith | 
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1790 | then show ?thesis | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1791 | proof | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1792 | assume "i \<ge> k" | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1793 | then show ?thesis using base | 
| 36801 
3560de0fe851
moved int induction lemma to theory Int as int_bidirectional_induct
 haftmann parents: 
36749diff
changeset | 1794 | by (rule int_ge_induct) (fact step1) | 
| 
3560de0fe851
moved int induction lemma to theory Int as int_bidirectional_induct
 haftmann parents: 
36749diff
changeset | 1795 | next | 
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1796 | assume "i \<le> k" | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1797 | then show ?thesis using base | 
| 36801 
3560de0fe851
moved int induction lemma to theory Int as int_bidirectional_induct
 haftmann parents: 
36749diff
changeset | 1798 | by (rule int_le_induct) (fact step2) | 
| 
3560de0fe851
moved int induction lemma to theory Int as int_bidirectional_induct
 haftmann parents: 
36749diff
changeset | 1799 | qed | 
| 
3560de0fe851
moved int induction lemma to theory Int as int_bidirectional_induct
 haftmann parents: 
36749diff
changeset | 1800 | qed | 
| 
3560de0fe851
moved int induction lemma to theory Int as int_bidirectional_induct
 haftmann parents: 
36749diff
changeset | 1801 | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1802 | subsection{*Intermediate value theorems*}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1803 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1804 | lemma int_val_lemma: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1805 | "(\<forall>i<n::nat. abs(f(i+1) - f i) \<le> 1) --> | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1806 | f 0 \<le> k --> k \<le> f n --> (\<exists>i \<le> n. f i = (k::int))" | 
| 30079 
293b896b9c25
make proofs work whether or not One_nat_def is a simp rule; replace 1 with Suc 0 in the rhs of some simp rules
 huffman parents: 
30000diff
changeset | 1807 | unfolding One_nat_def | 
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1808 | apply (induct n) | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1809 | apply simp | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1810 | apply (intro strip) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1811 | apply (erule impE, simp) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1812 | apply (erule_tac x = n in allE, simp) | 
| 30079 
293b896b9c25
make proofs work whether or not One_nat_def is a simp rule; replace 1 with Suc 0 in the rhs of some simp rules
 huffman parents: 
30000diff
changeset | 1813 | apply (case_tac "k = f (Suc n)") | 
| 27106 | 1814 | apply force | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1815 | apply (erule impE) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1816 | apply (simp add: abs_if split add: split_if_asm) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1817 | apply (blast intro: le_SucI) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1818 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1819 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1820 | lemmas nat0_intermed_int_val = int_val_lemma [rule_format (no_asm)] | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1821 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1822 | lemma nat_intermed_int_val: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1823 | "[| \<forall>i. m \<le> i & i < n --> abs(f(i + 1::nat) - f i) \<le> 1; m < n; | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1824 | f m \<le> k; k \<le> f n |] ==> ? i. m \<le> i & i \<le> n & f i = (k::int)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1825 | apply (cut_tac n = "n-m" and f = "%i. f (i+m) " and k = k | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1826 | in int_val_lemma) | 
| 30079 
293b896b9c25
make proofs work whether or not One_nat_def is a simp rule; replace 1 with Suc 0 in the rhs of some simp rules
 huffman parents: 
30000diff
changeset | 1827 | unfolding One_nat_def | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1828 | apply simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1829 | apply (erule exE) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1830 | apply (rule_tac x = "i+m" in exI, arith) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1831 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1832 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1833 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1834 | subsection{*Products and 1, by T. M. Rasmussen*}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1835 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1836 | lemma zabs_less_one_iff [simp]: "(\<bar>z\<bar> < 1) = (z = (0::int))" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1837 | by arith | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1838 | |
| 34055 | 1839 | lemma abs_zmult_eq_1: | 
| 1840 | assumes mn: "\<bar>m * n\<bar> = 1" | |
| 1841 | shows "\<bar>m\<bar> = (1::int)" | |
| 1842 | proof - | |
| 1843 | have 0: "m \<noteq> 0 & n \<noteq> 0" using mn | |
| 1844 | by auto | |
| 1845 | have "~ (2 \<le> \<bar>m\<bar>)" | |
| 1846 | proof | |
| 1847 | assume "2 \<le> \<bar>m\<bar>" | |
| 1848 | hence "2*\<bar>n\<bar> \<le> \<bar>m\<bar>*\<bar>n\<bar>" | |
| 1849 | by (simp add: mult_mono 0) | |
| 1850 | also have "... = \<bar>m*n\<bar>" | |
| 1851 | by (simp add: abs_mult) | |
| 1852 | also have "... = 1" | |
| 1853 | by (simp add: mn) | |
| 1854 | finally have "2*\<bar>n\<bar> \<le> 1" . | |
| 1855 | thus "False" using 0 | |
| 1856 | by auto | |
| 1857 | qed | |
| 1858 | thus ?thesis using 0 | |
| 1859 | by auto | |
| 1860 | qed | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1861 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1862 | lemma pos_zmult_eq_1_iff_lemma: "(m * n = 1) ==> m = (1::int) | m = -1" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1863 | by (insert abs_zmult_eq_1 [of m n], arith) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1864 | |
| 35815 
10e723e54076
tuned proofs (to avoid linarith error message caused by bootstrapping of HOL)
 boehmes parents: 
35634diff
changeset | 1865 | lemma pos_zmult_eq_1_iff: | 
| 
10e723e54076
tuned proofs (to avoid linarith error message caused by bootstrapping of HOL)
 boehmes parents: 
35634diff
changeset | 1866 | assumes "0 < (m::int)" shows "(m * n = 1) = (m = 1 & n = 1)" | 
| 
10e723e54076
tuned proofs (to avoid linarith error message caused by bootstrapping of HOL)
 boehmes parents: 
35634diff
changeset | 1867 | proof - | 
| 
10e723e54076
tuned proofs (to avoid linarith error message caused by bootstrapping of HOL)
 boehmes parents: 
35634diff
changeset | 1868 | from assms have "m * n = 1 ==> m = 1" by (auto dest: pos_zmult_eq_1_iff_lemma) | 
| 
10e723e54076
tuned proofs (to avoid linarith error message caused by bootstrapping of HOL)
 boehmes parents: 
35634diff
changeset | 1869 | thus ?thesis by (auto dest: pos_zmult_eq_1_iff_lemma) | 
| 
10e723e54076
tuned proofs (to avoid linarith error message caused by bootstrapping of HOL)
 boehmes parents: 
35634diff
changeset | 1870 | qed | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1871 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1872 | lemma zmult_eq_1_iff: "(m*n = (1::int)) = ((m = 1 & n = 1) | (m = -1 & n = -1))" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1873 | apply (rule iffI) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1874 | apply (frule pos_zmult_eq_1_iff_lemma) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1875 | apply (simp add: mult_commute [of m]) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1876 | apply (frule pos_zmult_eq_1_iff_lemma, auto) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1877 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1878 | |
| 33296 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 haftmann parents: 
33056diff
changeset | 1879 | lemma infinite_UNIV_int: "\<not> finite (UNIV::int set)" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1880 | proof | 
| 33296 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 haftmann parents: 
33056diff
changeset | 1881 | assume "finite (UNIV::int set)" | 
| 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 haftmann parents: 
33056diff
changeset | 1882 | moreover have "inj (\<lambda>i\<Colon>int. 2 * i)" | 
| 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 haftmann parents: 
33056diff
changeset | 1883 | by (rule injI) simp | 
| 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 haftmann parents: 
33056diff
changeset | 1884 | ultimately have "surj (\<lambda>i\<Colon>int. 2 * i)" | 
| 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 haftmann parents: 
33056diff
changeset | 1885 | by (rule finite_UNIV_inj_surj) | 
| 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 haftmann parents: 
33056diff
changeset | 1886 | then obtain i :: int where "1 = 2 * i" by (rule surjE) | 
| 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 haftmann parents: 
33056diff
changeset | 1887 | then show False by (simp add: pos_zmult_eq_1_iff) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1888 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1889 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1890 | |
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1891 | subsection {* Further theorems on numerals *}
 | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1892 | |
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1893 | subsubsection{*Special Simplification for Constants*}
 | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1894 | |
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1895 | text{*These distributive laws move literals inside sums and differences.*}
 | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1896 | |
| 45607 | 1897 | lemmas left_distrib_number_of [simp] = left_distrib [of _ _ "number_of v"] for v | 
| 1898 | lemmas right_distrib_number_of [simp] = right_distrib [of "number_of v"] for v | |
| 1899 | lemmas left_diff_distrib_number_of [simp] = left_diff_distrib [of _ _ "number_of v"] for v | |
| 1900 | lemmas right_diff_distrib_number_of [simp] = right_diff_distrib [of "number_of v"] for v | |
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1901 | |
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1902 | text{*These are actually for fields, like real: but where else to put them?*}
 | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1903 | |
| 45607 | 1904 | lemmas zero_less_divide_iff_number_of [simp, no_atp] = zero_less_divide_iff [of "number_of w"] for w | 
| 1905 | lemmas divide_less_0_iff_number_of [simp, no_atp] = divide_less_0_iff [of "number_of w"] for w | |
| 1906 | lemmas zero_le_divide_iff_number_of [simp, no_atp] = zero_le_divide_iff [of "number_of w"] for w | |
| 1907 | lemmas divide_le_0_iff_number_of [simp, no_atp] = divide_le_0_iff [of "number_of w"] for w | |
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1908 | |
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1909 | |
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1910 | text {*Replaces @{text "inverse #nn"} by @{text "1/#nn"}.  It looks
 | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1911 | strange, but then other simprocs simplify the quotient.*} | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1912 | |
| 45607 | 1913 | lemmas inverse_eq_divide_number_of [simp] = inverse_eq_divide [of "number_of w"] for w | 
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1914 | |
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1915 | text {*These laws simplify inequalities, moving unary minus from a term
 | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1916 | into the literal.*} | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1917 | |
| 45607 | 1918 | lemmas less_minus_iff_number_of [simp, no_atp] = less_minus_iff [of "number_of v"] for v | 
| 1919 | lemmas le_minus_iff_number_of [simp, no_atp] = le_minus_iff [of "number_of v"] for v | |
| 1920 | lemmas equation_minus_iff_number_of [simp, no_atp] = equation_minus_iff [of "number_of v"] for v | |
| 1921 | lemmas minus_less_iff_number_of [simp, no_atp] = minus_less_iff [of _ "number_of v"] for v | |
| 1922 | lemmas minus_le_iff_number_of [simp, no_atp] = minus_le_iff [of _ "number_of v"] for v | |
| 1923 | lemmas minus_equation_iff_number_of [simp, no_atp] = minus_equation_iff [of _ "number_of v"] for v | |
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1924 | |
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1925 | text{*To Simplify Inequalities Where One Side is the Constant 1*}
 | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1926 | |
| 35828 
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
 blanchet parents: 
35634diff
changeset | 1927 | lemma less_minus_iff_1 [simp,no_atp]: | 
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34055diff
changeset | 1928 |   fixes b::"'b::{linordered_idom,number_ring}"
 | 
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1929 | shows "(1 < - b) = (b < -1)" | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1930 | by auto | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1931 | |
| 35828 
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
 blanchet parents: 
35634diff
changeset | 1932 | lemma le_minus_iff_1 [simp,no_atp]: | 
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34055diff
changeset | 1933 |   fixes b::"'b::{linordered_idom,number_ring}"
 | 
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1934 | shows "(1 \<le> - b) = (b \<le> -1)" | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1935 | by auto | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1936 | |
| 35828 
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
 blanchet parents: 
35634diff
changeset | 1937 | lemma equation_minus_iff_1 [simp,no_atp]: | 
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1938 | fixes b::"'b::number_ring" | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1939 | shows "(1 = - b) = (b = -1)" | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1940 | by (subst equation_minus_iff, auto) | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1941 | |
| 35828 
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
 blanchet parents: 
35634diff
changeset | 1942 | lemma minus_less_iff_1 [simp,no_atp]: | 
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34055diff
changeset | 1943 |   fixes a::"'b::{linordered_idom,number_ring}"
 | 
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1944 | shows "(- a < 1) = (-1 < a)" | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1945 | by auto | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1946 | |
| 35828 
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
 blanchet parents: 
35634diff
changeset | 1947 | lemma minus_le_iff_1 [simp,no_atp]: | 
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34055diff
changeset | 1948 |   fixes a::"'b::{linordered_idom,number_ring}"
 | 
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1949 | shows "(- a \<le> 1) = (-1 \<le> a)" | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1950 | by auto | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1951 | |
| 35828 
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
 blanchet parents: 
35634diff
changeset | 1952 | lemma minus_equation_iff_1 [simp,no_atp]: | 
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1953 | fixes a::"'b::number_ring" | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1954 | shows "(- a = 1) = (a = -1)" | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1955 | by (subst minus_equation_iff, auto) | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1956 | |
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1957 | |
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1958 | text {*Cancellation of constant factors in comparisons (@{text "<"} and @{text "\<le>"}) *}
 | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1959 | |
| 45607 | 1960 | lemmas mult_less_cancel_left_number_of [simp, no_atp] = mult_less_cancel_left [of "number_of v"] for v | 
| 1961 | lemmas mult_less_cancel_right_number_of [simp, no_atp] = mult_less_cancel_right [of _ "number_of v"] for v | |
| 1962 | lemmas mult_le_cancel_left_number_of [simp, no_atp] = mult_le_cancel_left [of "number_of v"] for v | |
| 1963 | lemmas mult_le_cancel_right_number_of [simp, no_atp] = mult_le_cancel_right [of _ "number_of v"] for v | |
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1964 | |
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1965 | |
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1966 | text {*Multiplying out constant divisors in comparisons (@{text "<"}, @{text "\<le>"} and @{text "="}) *}
 | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1967 | |
| 45607 | 1968 | lemmas le_divide_eq_number_of1 [simp] = le_divide_eq [of _ _ "number_of w"] for w | 
| 1969 | lemmas divide_le_eq_number_of1 [simp] = divide_le_eq [of _ "number_of w"] for w | |
| 1970 | lemmas less_divide_eq_number_of1 [simp] = less_divide_eq [of _ _ "number_of w"] for w | |
| 1971 | lemmas divide_less_eq_number_of1 [simp] = divide_less_eq [of _ "number_of w"] for w | |
| 1972 | lemmas eq_divide_eq_number_of1 [simp] = eq_divide_eq [of _ _ "number_of w"] for w | |
| 1973 | lemmas divide_eq_eq_number_of1 [simp] = divide_eq_eq [of _ "number_of w"] for w | |
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1974 | |
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1975 | |
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1976 | subsubsection{*Optional Simplification Rules Involving Constants*}
 | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1977 | |
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1978 | text{*Simplify quotients that are compared with a literal constant.*}
 | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1979 | |
| 45607 | 1980 | lemmas le_divide_eq_number_of = le_divide_eq [of "number_of w"] for w | 
| 1981 | lemmas divide_le_eq_number_of = divide_le_eq [of _ _ "number_of w"] for w | |
| 1982 | lemmas less_divide_eq_number_of = less_divide_eq [of "number_of w"] for w | |
| 1983 | lemmas divide_less_eq_number_of = divide_less_eq [of _ _ "number_of w"] for w | |
| 1984 | lemmas eq_divide_eq_number_of = eq_divide_eq [of "number_of w"] for w | |
| 1985 | lemmas divide_eq_eq_number_of = divide_eq_eq [of _ _ "number_of w"] for w | |
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1986 | |
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1987 | |
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1988 | text{*Not good as automatic simprules because they cause case splits.*}
 | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1989 | lemmas divide_const_simps = | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1990 | le_divide_eq_number_of divide_le_eq_number_of less_divide_eq_number_of | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1991 | divide_less_eq_number_of eq_divide_eq_number_of divide_eq_eq_number_of | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1992 | le_divide_eq_1 divide_le_eq_1 less_divide_eq_1 divide_less_eq_1 | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1993 | |
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1994 | text{*Division By @{text "-1"}*}
 | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1995 | |
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1996 | lemma divide_minus1 [simp]: | 
| 36409 | 1997 |      "x/-1 = -(x::'a::{field_inverse_zero, number_ring})"
 | 
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1998 | by simp | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1999 | |
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 2000 | lemma minus1_divide [simp]: | 
| 36409 | 2001 |      "-1 / (x::'a::{field_inverse_zero, number_ring}) = - (1/x)"
 | 
| 35216 | 2002 | by (simp add: divide_inverse) | 
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 2003 | |
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 2004 | lemma half_gt_zero_iff: | 
| 36409 | 2005 |      "(0 < r/2) = (0 < (r::'a::{linordered_field_inverse_zero,number_ring}))"
 | 
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 2006 | by auto | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 2007 | |
| 45607 | 2008 | lemmas half_gt_zero [simp] = half_gt_zero_iff [THEN iffD2] | 
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 2009 | |
| 36719 | 2010 | lemma divide_Numeral1: | 
| 2011 |   "(x::'a::{field, number_ring}) / Numeral1 = x"
 | |
| 2012 | by simp | |
| 2013 | ||
| 2014 | lemma divide_Numeral0: | |
| 2015 |   "(x::'a::{field_inverse_zero, number_ring}) / Numeral0 = 0"
 | |
| 2016 | by simp | |
| 2017 | ||
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 2018 | |
| 33320 | 2019 | subsection {* The divides relation *}
 | 
| 2020 | ||
| 33657 | 2021 | lemma zdvd_antisym_nonneg: | 
| 2022 | "0 <= m ==> 0 <= n ==> m dvd n ==> n dvd m ==> m = (n::int)" | |
| 33320 | 2023 | apply (simp add: dvd_def, auto) | 
| 33657 | 2024 | apply (auto simp add: mult_assoc zero_le_mult_iff zmult_eq_1_iff) | 
| 33320 | 2025 | done | 
| 2026 | ||
| 33657 | 2027 | lemma zdvd_antisym_abs: assumes "(a::int) dvd b" and "b dvd a" | 
| 33320 | 2028 | shows "\<bar>a\<bar> = \<bar>b\<bar>" | 
| 33657 | 2029 | proof cases | 
| 2030 | assume "a = 0" with assms show ?thesis by simp | |
| 2031 | next | |
| 2032 | assume "a \<noteq> 0" | |
| 33320 | 2033 | from `a dvd b` obtain k where k:"b = a*k" unfolding dvd_def by blast | 
| 2034 | from `b dvd a` obtain k' where k':"a = b*k'" unfolding dvd_def by blast | |
| 2035 | from k k' have "a = a*k*k'" by simp | |
| 2036 | with mult_cancel_left1[where c="a" and b="k*k'"] | |
| 2037 | have kk':"k*k' = 1" using `a\<noteq>0` by (simp add: mult_assoc) | |
| 2038 | hence "k = 1 \<and> k' = 1 \<or> k = -1 \<and> k' = -1" by (simp add: zmult_eq_1_iff) | |
| 2039 | thus ?thesis using k k' by auto | |
| 2040 | qed | |
| 2041 | ||
| 2042 | lemma zdvd_zdiffD: "k dvd m - n ==> k dvd n ==> k dvd (m::int)" | |
| 2043 | apply (subgoal_tac "m = n + (m - n)") | |
| 2044 | apply (erule ssubst) | |
| 2045 | apply (blast intro: dvd_add, simp) | |
| 2046 | done | |
| 2047 | ||
| 2048 | lemma zdvd_reduce: "(k dvd n + k * m) = (k dvd (n::int))" | |
| 2049 | apply (rule iffI) | |
| 2050 | apply (erule_tac [2] dvd_add) | |
| 2051 | apply (subgoal_tac "n = (n + k * m) - k * m") | |
| 2052 | apply (erule ssubst) | |
| 2053 | apply (erule dvd_diff) | |
| 2054 | apply(simp_all) | |
| 2055 | done | |
| 2056 | ||
| 2057 | lemma dvd_imp_le_int: | |
| 2058 | fixes d i :: int | |
| 2059 | assumes "i \<noteq> 0" and "d dvd i" | |
| 2060 | shows "\<bar>d\<bar> \<le> \<bar>i\<bar>" | |
| 2061 | proof - | |
| 2062 | from `d dvd i` obtain k where "i = d * k" .. | |
| 2063 | with `i \<noteq> 0` have "k \<noteq> 0" by auto | |
| 2064 | then have "1 \<le> \<bar>k\<bar>" and "0 \<le> \<bar>d\<bar>" by auto | |
| 2065 | then have "\<bar>d\<bar> * 1 \<le> \<bar>d\<bar> * \<bar>k\<bar>" by (rule mult_left_mono) | |
| 2066 | with `i = d * k` show ?thesis by (simp add: abs_mult) | |
| 2067 | qed | |
| 2068 | ||
| 2069 | lemma zdvd_not_zless: | |
| 2070 | fixes m n :: int | |
| 2071 | assumes "0 < m" and "m < n" | |
| 2072 | shows "\<not> n dvd m" | |
| 2073 | proof | |
| 2074 | from assms have "0 < n" by auto | |
| 2075 | assume "n dvd m" then obtain k where k: "m = n * k" .. | |
| 2076 | with `0 < m` have "0 < n * k" by auto | |
| 2077 | with `0 < n` have "0 < k" by (simp add: zero_less_mult_iff) | |
| 2078 | with k `0 < n` `m < n` have "n * k < n * 1" by simp | |
| 2079 | with `0 < n` `0 < k` show False unfolding mult_less_cancel_left by auto | |
| 2080 | qed | |
| 2081 | ||
| 2082 | lemma zdvd_mult_cancel: assumes d:"k * m dvd k * n" and kz:"k \<noteq> (0::int)" | |
| 2083 | shows "m dvd n" | |
| 2084 | proof- | |
| 2085 | from d obtain h where h: "k*n = k*m * h" unfolding dvd_def by blast | |
| 2086 |   {assume "n \<noteq> m*h" hence "k* n \<noteq> k* (m*h)" using kz by simp
 | |
| 2087 | with h have False by (simp add: mult_assoc)} | |
| 2088 | hence "n = m * h" by blast | |
| 2089 | thus ?thesis by simp | |
| 2090 | qed | |
| 2091 | ||
| 2092 | theorem zdvd_int: "(x dvd y) = (int x dvd int y)" | |
| 2093 | proof - | |
| 2094 | have "\<And>k. int y = int x * k \<Longrightarrow> x dvd y" | |
| 2095 | proof - | |
| 2096 | fix k | |
| 2097 | assume A: "int y = int x * k" | |
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 2098 | then show "x dvd y" | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 2099 | proof (cases k) | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 2100 | case (nonneg n) | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 2101 | with A have "y = x * n" by (simp add: of_nat_mult [symmetric]) | 
| 33320 | 2102 | then show ?thesis .. | 
| 2103 | next | |
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 2104 | case (neg n) | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 2105 | with A have "int y = int x * (- int (Suc n))" by simp | 
| 33320 | 2106 | also have "\<dots> = - (int x * int (Suc n))" by (simp only: mult_minus_right) | 
| 2107 | also have "\<dots> = - int (x * Suc n)" by (simp only: of_nat_mult [symmetric]) | |
| 2108 | finally have "- int (x * Suc n) = int y" .. | |
| 2109 | then show ?thesis by (simp only: negative_eq_positive) auto | |
| 2110 | qed | |
| 2111 | qed | |
| 2112 | then show ?thesis by (auto elim!: dvdE simp only: dvd_triv_left of_nat_mult) | |
| 2113 | qed | |
| 2114 | ||
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 2115 | lemma zdvd1_eq[simp]: "(x::int) dvd 1 = (\<bar>x\<bar> = 1)" | 
| 33320 | 2116 | proof | 
| 2117 | assume d: "x dvd 1" hence "int (nat \<bar>x\<bar>) dvd int (nat 1)" by simp | |
| 2118 | hence "nat \<bar>x\<bar> dvd 1" by (simp add: zdvd_int) | |
| 2119 | hence "nat \<bar>x\<bar> = 1" by simp | |
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 2120 | thus "\<bar>x\<bar> = 1" by (cases "x < 0") auto | 
| 33320 | 2121 | next | 
| 2122 | assume "\<bar>x\<bar>=1" | |
| 2123 | then have "x = 1 \<or> x = -1" by auto | |
| 2124 | then show "x dvd 1" by (auto intro: dvdI) | |
| 2125 | qed | |
| 2126 | ||
| 2127 | lemma zdvd_mult_cancel1: | |
| 2128 | assumes mp:"m \<noteq>(0::int)" shows "(m * n dvd m) = (\<bar>n\<bar> = 1)" | |
| 2129 | proof | |
| 2130 | assume n1: "\<bar>n\<bar> = 1" thus "m * n dvd m" | |
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 2131 | by (cases "n >0") (auto simp add: minus_equation_iff) | 
| 33320 | 2132 | next | 
| 2133 | assume H: "m * n dvd m" hence H2: "m * n dvd m * 1" by simp | |
| 2134 | from zdvd_mult_cancel[OF H2 mp] show "\<bar>n\<bar> = 1" by (simp only: zdvd1_eq) | |
| 2135 | qed | |
| 2136 | ||
| 2137 | lemma int_dvd_iff: "(int m dvd z) = (m dvd nat (abs z))" | |
| 2138 | unfolding zdvd_int by (cases "z \<ge> 0") simp_all | |
| 2139 | ||
| 2140 | lemma dvd_int_iff: "(z dvd int m) = (nat (abs z) dvd m)" | |
| 2141 | unfolding zdvd_int by (cases "z \<ge> 0") simp_all | |
| 2142 | ||
| 2143 | lemma nat_dvd_iff: "(nat z dvd m) = (if 0 \<le> z then (z dvd int m) else m = 0)" | |
| 2144 | by (auto simp add: dvd_int_iff) | |
| 2145 | ||
| 33341 | 2146 | lemma eq_nat_nat_iff: | 
| 2147 | "0 \<le> z \<Longrightarrow> 0 \<le> z' \<Longrightarrow> nat z = nat z' \<longleftrightarrow> z = z'" | |
| 2148 | by (auto elim!: nonneg_eq_int) | |
| 2149 | ||
| 2150 | lemma nat_power_eq: | |
| 2151 | "0 \<le> z \<Longrightarrow> nat (z ^ n) = nat z ^ n" | |
| 2152 | by (induct n) (simp_all add: nat_mult_distrib) | |
| 2153 | ||
| 33320 | 2154 | lemma zdvd_imp_le: "[| z dvd n; 0 < n |] ==> z \<le> (n::int)" | 
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 2155 | apply (cases n) | 
| 33320 | 2156 | apply (auto simp add: dvd_int_iff) | 
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 2157 | apply (cases z) | 
| 33320 | 2158 | apply (auto simp add: dvd_imp_le) | 
| 2159 | done | |
| 2160 | ||
| 36749 | 2161 | lemma zdvd_period: | 
| 2162 | fixes a d :: int | |
| 2163 | assumes "a dvd d" | |
| 2164 | shows "a dvd (x + t) \<longleftrightarrow> a dvd ((x + c * d) + t)" | |
| 2165 | proof - | |
| 2166 | from assms obtain k where "d = a * k" by (rule dvdE) | |
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 2167 | show ?thesis | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 2168 | proof | 
| 36749 | 2169 | assume "a dvd (x + t)" | 
| 2170 | then obtain l where "x + t = a * l" by (rule dvdE) | |
| 2171 | then have "x = a * l - t" by simp | |
| 2172 | with `d = a * k` show "a dvd x + c * d + t" by simp | |
| 2173 | next | |
| 2174 | assume "a dvd x + c * d + t" | |
| 2175 | then obtain l where "x + c * d + t = a * l" by (rule dvdE) | |
| 2176 | then have "x = a * l - c * d - t" by simp | |
| 2177 | with `d = a * k` show "a dvd (x + t)" by simp | |
| 2178 | qed | |
| 2179 | qed | |
| 2180 | ||
| 33320 | 2181 | |
| 46756 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 2182 | subsection {* Finiteness of intervals *}
 | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 2183 | |
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 2184 | lemma finite_interval_int1 [iff]: "finite {i :: int. a <= i & i <= b}"
 | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 2185 | proof (cases "a <= b") | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 2186 | case True | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 2187 | from this show ?thesis | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 2188 | proof (induct b rule: int_ge_induct) | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 2189 | case base | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 2190 |     have "{i. a <= i & i <= a} = {a}" by auto
 | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 2191 | from this show ?case by simp | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 2192 | next | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 2193 | case (step b) | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 2194 |     from this have "{i. a <= i & i <= b + 1} = {i. a <= i & i <= b} \<union> {b + 1}" by auto
 | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 2195 | from this step show ?case by simp | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 2196 | qed | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 2197 | next | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 2198 | case False from this show ?thesis | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 2199 | by (metis (lifting, no_types) Collect_empty_eq finite.emptyI order_trans) | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 2200 | qed | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 2201 | |
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 2202 | lemma finite_interval_int2 [iff]: "finite {i :: int. a <= i & i < b}"
 | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 2203 | by (rule rev_finite_subset[OF finite_interval_int1[of "a" "b"]]) auto | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 2204 | |
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 2205 | lemma finite_interval_int3 [iff]: "finite {i :: int. a < i & i <= b}"
 | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 2206 | by (rule rev_finite_subset[OF finite_interval_int1[of "a" "b"]]) auto | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 2207 | |
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 2208 | lemma finite_interval_int4 [iff]: "finite {i :: int. a < i & i < b}"
 | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 2209 | by (rule rev_finite_subset[OF finite_interval_int1[of "a" "b"]]) auto | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 2210 | |
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 2211 | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2212 | subsection {* Configuration of the code generator *}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2213 | |
| 26507 | 2214 | code_datatype Pls Min Bit0 Bit1 "number_of \<Colon> int \<Rightarrow> int" | 
| 2215 | ||
| 28562 | 2216 | lemmas pred_succ_numeral_code [code] = | 
| 26507 | 2217 | pred_bin_simps succ_bin_simps | 
| 2218 | ||
| 28562 | 2219 | lemmas plus_numeral_code [code] = | 
| 26507 | 2220 | add_bin_simps | 
| 2221 | arith_extra_simps(1) [where 'a = int] | |
| 2222 | ||
| 28562 | 2223 | lemmas minus_numeral_code [code] = | 
| 26507 | 2224 | minus_bin_simps | 
| 2225 | arith_extra_simps(2) [where 'a = int] | |
| 2226 | arith_extra_simps(5) [where 'a = int] | |
| 2227 | ||
| 28562 | 2228 | lemmas times_numeral_code [code] = | 
| 26507 | 2229 | mult_bin_simps | 
| 2230 | arith_extra_simps(4) [where 'a = int] | |
| 2231 | ||
| 38857 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
37887diff
changeset | 2232 | instantiation int :: equal | 
| 26507 | 2233 | begin | 
| 2234 | ||
| 37767 | 2235 | definition | 
| 38857 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
37887diff
changeset | 2236 | "HOL.equal k l \<longleftrightarrow> k - l = (0\<Colon>int)" | 
| 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
37887diff
changeset | 2237 | |
| 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
37887diff
changeset | 2238 | instance by default (simp add: equal_int_def) | 
| 26507 | 2239 | |
| 2240 | end | |
| 2241 | ||
| 28562 | 2242 | lemma eq_number_of_int_code [code]: | 
| 38857 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
37887diff
changeset | 2243 | "HOL.equal (number_of k \<Colon> int) (number_of l) \<longleftrightarrow> HOL.equal k l" | 
| 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
37887diff
changeset | 2244 | unfolding equal_int_def number_of_is_id .. | 
| 26507 | 2245 | |
| 28562 | 2246 | lemma eq_int_code [code]: | 
| 38857 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
37887diff
changeset | 2247 | "HOL.equal Int.Pls Int.Pls \<longleftrightarrow> True" | 
| 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
37887diff
changeset | 2248 | "HOL.equal Int.Pls Int.Min \<longleftrightarrow> False" | 
| 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
37887diff
changeset | 2249 | "HOL.equal Int.Pls (Int.Bit0 k2) \<longleftrightarrow> HOL.equal Int.Pls k2" | 
| 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
37887diff
changeset | 2250 | "HOL.equal Int.Pls (Int.Bit1 k2) \<longleftrightarrow> False" | 
| 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
37887diff
changeset | 2251 | "HOL.equal Int.Min Int.Pls \<longleftrightarrow> False" | 
| 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
37887diff
changeset | 2252 | "HOL.equal Int.Min Int.Min \<longleftrightarrow> True" | 
| 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
37887diff
changeset | 2253 | "HOL.equal Int.Min (Int.Bit0 k2) \<longleftrightarrow> False" | 
| 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
37887diff
changeset | 2254 | "HOL.equal Int.Min (Int.Bit1 k2) \<longleftrightarrow> HOL.equal Int.Min k2" | 
| 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
37887diff
changeset | 2255 | "HOL.equal (Int.Bit0 k1) Int.Pls \<longleftrightarrow> HOL.equal k1 Int.Pls" | 
| 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
37887diff
changeset | 2256 | "HOL.equal (Int.Bit1 k1) Int.Pls \<longleftrightarrow> False" | 
| 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
37887diff
changeset | 2257 | "HOL.equal (Int.Bit0 k1) Int.Min \<longleftrightarrow> False" | 
| 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
37887diff
changeset | 2258 | "HOL.equal (Int.Bit1 k1) Int.Min \<longleftrightarrow> HOL.equal k1 Int.Min" | 
| 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
37887diff
changeset | 2259 | "HOL.equal (Int.Bit0 k1) (Int.Bit0 k2) \<longleftrightarrow> HOL.equal k1 k2" | 
| 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
37887diff
changeset | 2260 | "HOL.equal (Int.Bit0 k1) (Int.Bit1 k2) \<longleftrightarrow> False" | 
| 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
37887diff
changeset | 2261 | "HOL.equal (Int.Bit1 k1) (Int.Bit0 k2) \<longleftrightarrow> False" | 
| 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
37887diff
changeset | 2262 | "HOL.equal (Int.Bit1 k1) (Int.Bit1 k2) \<longleftrightarrow> HOL.equal k1 k2" | 
| 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
37887diff
changeset | 2263 | unfolding equal_eq by simp_all | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2264 | |
| 28351 | 2265 | lemma eq_int_refl [code nbe]: | 
| 38857 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
37887diff
changeset | 2266 | "HOL.equal (k::int) k \<longleftrightarrow> True" | 
| 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
37887diff
changeset | 2267 | by (rule equal_refl) | 
| 28351 | 2268 | |
| 28562 | 2269 | lemma less_eq_number_of_int_code [code]: | 
| 26507 | 2270 | "(number_of k \<Colon> int) \<le> number_of l \<longleftrightarrow> k \<le> l" | 
| 2271 | unfolding number_of_is_id .. | |
| 2272 | ||
| 28562 | 2273 | lemma less_eq_int_code [code]: | 
| 26507 | 2274 | "Int.Pls \<le> Int.Pls \<longleftrightarrow> True" | 
| 2275 | "Int.Pls \<le> Int.Min \<longleftrightarrow> False" | |
| 2276 | "Int.Pls \<le> Int.Bit0 k \<longleftrightarrow> Int.Pls \<le> k" | |
| 2277 | "Int.Pls \<le> Int.Bit1 k \<longleftrightarrow> Int.Pls \<le> k" | |
| 2278 | "Int.Min \<le> Int.Pls \<longleftrightarrow> True" | |
| 2279 | "Int.Min \<le> Int.Min \<longleftrightarrow> True" | |
| 2280 | "Int.Min \<le> Int.Bit0 k \<longleftrightarrow> Int.Min < k" | |
| 2281 | "Int.Min \<le> Int.Bit1 k \<longleftrightarrow> Int.Min \<le> k" | |
| 2282 | "Int.Bit0 k \<le> Int.Pls \<longleftrightarrow> k \<le> Int.Pls" | |
| 2283 | "Int.Bit1 k \<le> Int.Pls \<longleftrightarrow> k < Int.Pls" | |
| 2284 | "Int.Bit0 k \<le> Int.Min \<longleftrightarrow> k \<le> Int.Min" | |
| 2285 | "Int.Bit1 k \<le> Int.Min \<longleftrightarrow> k \<le> Int.Min" | |
| 2286 | "Int.Bit0 k1 \<le> Int.Bit0 k2 \<longleftrightarrow> k1 \<le> k2" | |
| 2287 | "Int.Bit0 k1 \<le> Int.Bit1 k2 \<longleftrightarrow> k1 \<le> k2" | |
| 2288 | "Int.Bit1 k1 \<le> Int.Bit0 k2 \<longleftrightarrow> k1 < k2" | |
| 2289 | "Int.Bit1 k1 \<le> Int.Bit1 k2 \<longleftrightarrow> k1 \<le> k2" | |
| 28958 | 2290 | by simp_all | 
| 26507 | 2291 | |
| 28562 | 2292 | lemma less_number_of_int_code [code]: | 
| 26507 | 2293 | "(number_of k \<Colon> int) < number_of l \<longleftrightarrow> k < l" | 
| 2294 | unfolding number_of_is_id .. | |
| 2295 | ||
| 28562 | 2296 | lemma less_int_code [code]: | 
| 26507 | 2297 | "Int.Pls < Int.Pls \<longleftrightarrow> False" | 
| 2298 | "Int.Pls < Int.Min \<longleftrightarrow> False" | |
| 2299 | "Int.Pls < Int.Bit0 k \<longleftrightarrow> Int.Pls < k" | |
| 2300 | "Int.Pls < Int.Bit1 k \<longleftrightarrow> Int.Pls \<le> k" | |
| 2301 | "Int.Min < Int.Pls \<longleftrightarrow> True" | |
| 2302 | "Int.Min < Int.Min \<longleftrightarrow> False" | |
| 2303 | "Int.Min < Int.Bit0 k \<longleftrightarrow> Int.Min < k" | |
| 2304 | "Int.Min < Int.Bit1 k \<longleftrightarrow> Int.Min < k" | |
| 2305 | "Int.Bit0 k < Int.Pls \<longleftrightarrow> k < Int.Pls" | |
| 2306 | "Int.Bit1 k < Int.Pls \<longleftrightarrow> k < Int.Pls" | |
| 2307 | "Int.Bit0 k < Int.Min \<longleftrightarrow> k \<le> Int.Min" | |
| 2308 | "Int.Bit1 k < Int.Min \<longleftrightarrow> k < Int.Min" | |
| 2309 | "Int.Bit0 k1 < Int.Bit0 k2 \<longleftrightarrow> k1 < k2" | |
| 2310 | "Int.Bit0 k1 < Int.Bit1 k2 \<longleftrightarrow> k1 \<le> k2" | |
| 2311 | "Int.Bit1 k1 < Int.Bit0 k2 \<longleftrightarrow> k1 < k2" | |
| 2312 | "Int.Bit1 k1 < Int.Bit1 k2 \<longleftrightarrow> k1 < k2" | |
| 28958 | 2313 | by simp_all | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2314 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2315 | definition | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2316 | nat_aux :: "int \<Rightarrow> nat \<Rightarrow> nat" where | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2317 | "nat_aux i n = nat i + n" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2318 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2319 | lemma [code]: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2320 |   "nat_aux i n = (if i \<le> 0 then n else nat_aux (i - 1) (Suc n))"  -- {* tail recursive *}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2321 | by (auto simp add: nat_aux_def nat_eq_iff linorder_not_le order_less_imp_le | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2322 | dest: zless_imp_add1_zle) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2323 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2324 | lemma [code]: "nat i = nat_aux i 0" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2325 | by (simp add: nat_aux_def) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2326 | |
| 36176 
3fe7e97ccca8
replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
 wenzelm parents: 
36076diff
changeset | 2327 | hide_const (open) nat_aux | 
| 25928 | 2328 | |
| 46027 
ff3c4f2bee01
semiring_numeral_0_eq_0, semiring_numeral_1_eq_1 now [simp], superseeding corresponding simp rules on type nat; attribute code_abbrev superseedes code_unfold_post
 haftmann parents: 
45694diff
changeset | 2329 | lemma zero_is_num_zero [code, code_unfold]: | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2330 | "(0\<Colon>int) = Numeral0" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2331 | by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2332 | |
| 46027 
ff3c4f2bee01
semiring_numeral_0_eq_0, semiring_numeral_1_eq_1 now [simp], superseeding corresponding simp rules on type nat; attribute code_abbrev superseedes code_unfold_post
 haftmann parents: 
45694diff
changeset | 2333 | lemma one_is_num_one [code, code_unfold]: | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2334 | "(1\<Colon>int) = Numeral1" | 
| 25961 | 2335 | by simp | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2336 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2337 | code_modulename SML | 
| 33364 | 2338 | Int Arith | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2339 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2340 | code_modulename OCaml | 
| 33364 | 2341 | Int Arith | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2342 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2343 | code_modulename Haskell | 
| 33364 | 2344 | Int Arith | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2345 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2346 | quickcheck_params [default_type = int] | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2347 | |
| 36176 
3fe7e97ccca8
replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
 wenzelm parents: 
36076diff
changeset | 2348 | hide_const (open) Pls Min Bit0 Bit1 succ pred | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2349 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2350 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2351 | subsection {* Legacy theorems *}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2352 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2353 | lemmas inj_int = inj_of_nat [where 'a=int] | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2354 | lemmas zadd_int = of_nat_add [where 'a=int, symmetric] | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2355 | lemmas int_mult = of_nat_mult [where 'a=int] | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2356 | lemmas zmult_int = of_nat_mult [where 'a=int, symmetric] | 
| 45607 | 2357 | lemmas int_eq_0_conv = of_nat_eq_0_iff [where 'a=int and m="n"] for n | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2358 | lemmas zless_int = of_nat_less_iff [where 'a=int] | 
| 45607 | 2359 | lemmas int_less_0_conv = of_nat_less_0_iff [where 'a=int and m="k"] for k | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2360 | lemmas zero_less_int_conv = of_nat_0_less_iff [where 'a=int] | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2361 | lemmas zero_zle_int = of_nat_0_le_iff [where 'a=int] | 
| 45607 | 2362 | lemmas int_le_0_conv = of_nat_le_0_iff [where 'a=int and m="n"] for n | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2363 | lemmas int_0 = of_nat_0 [where 'a=int] | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2364 | lemmas int_1 = of_nat_1 [where 'a=int] | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2365 | lemmas int_Suc = of_nat_Suc [where 'a=int] | 
| 45607 | 2366 | lemmas abs_int_eq = abs_of_nat [where 'a=int and n="m"] for m | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2367 | lemmas of_int_int_eq = of_int_of_nat_eq [where 'a=int] | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2368 | lemmas zdiff_int = of_nat_diff [where 'a=int, symmetric] | 
| 30960 | 2369 | |
| 31015 | 2370 | lemma zpower_zpower: | 
| 2371 | "(x ^ y) ^ z = (x ^ (y * z)::int)" | |
| 2372 | by (rule power_mult [symmetric]) | |
| 2373 | ||
| 2374 | lemma int_power: | |
| 2375 | "int (m ^ n) = int m ^ n" | |
| 2376 | by (rule of_nat_power) | |
| 2377 | ||
| 2378 | lemmas zpower_int = int_power [symmetric] | |
| 2379 | ||
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 2380 | end |