| author | Andreas Lochbihler | 
| Tue, 01 Dec 2015 12:35:11 +0100 | |
| changeset 61766 | 507b39df1a57 | 
| parent 61738 | c4f6031f1310 | 
| child 61799 | 4cf66f21b764 | 
| 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 | |
| 60758 | 6 | section \<open>The Integers as Equivalence Classes over Pairs of Natural Numbers\<close> | 
| 25919 
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 | 
| 55404 
5cb95b79a51f
transformed 'option' and 'list' into new-style datatypes (but register them as old-style as well)
 blanchet parents: 
55096diff
changeset | 9 | imports Equiv_Relations Power Quotient Fun_Def | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 10 | begin | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 11 | |
| 60758 | 12 | subsection \<open>Definition of integers as a quotient type\<close> | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 13 | |
| 48045 | 14 | definition intrel :: "(nat \<times> nat) \<Rightarrow> (nat \<times> nat) \<Rightarrow> bool" where | 
| 15 | "intrel = (\<lambda>(x, y) (u, v). x + v = u + y)" | |
| 16 | ||
| 17 | lemma intrel_iff [simp]: "intrel (x, y) (u, v) \<longleftrightarrow> x + v = u + y" | |
| 18 | by (simp add: intrel_def) | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 19 | |
| 48045 | 20 | quotient_type int = "nat \<times> nat" / "intrel" | 
| 45694 
4a8743618257
prefer typedef without extra definition and alternative name;
 wenzelm parents: 
45607diff
changeset | 21 | morphisms Rep_Integ Abs_Integ | 
| 48045 | 22 | proof (rule equivpI) | 
| 23 | show "reflp intrel" | |
| 24 | unfolding reflp_def by auto | |
| 25 | show "symp intrel" | |
| 26 | unfolding symp_def by auto | |
| 27 | show "transp intrel" | |
| 28 | unfolding transp_def by auto | |
| 29 | qed | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 30 | |
| 48045 | 31 | lemma eq_Abs_Integ [case_names Abs_Integ, cases type: int]: | 
| 32 | "(!!x y. z = Abs_Integ (x, y) ==> P) ==> P" | |
| 33 | by (induct z) auto | |
| 34 | ||
| 60758 | 35 | subsection \<open>Integers form a commutative ring\<close> | 
| 48045 | 36 | |
| 37 | instantiation int :: comm_ring_1 | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 38 | begin | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 39 | |
| 51994 | 40 | lift_definition zero_int :: "int" is "(0, 0)" . | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 41 | |
| 51994 | 42 | lift_definition one_int :: "int" is "(1, 0)" . | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 43 | |
| 48045 | 44 | lift_definition plus_int :: "int \<Rightarrow> int \<Rightarrow> int" | 
| 45 | is "\<lambda>(x, y) (u, v). (x + u, y + v)" | |
| 46 | by clarsimp | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 47 | |
| 48045 | 48 | lift_definition uminus_int :: "int \<Rightarrow> int" | 
| 49 | is "\<lambda>(x, y). (y, x)" | |
| 50 | by clarsimp | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 51 | |
| 48045 | 52 | lift_definition minus_int :: "int \<Rightarrow> int \<Rightarrow> int" | 
| 53 | is "\<lambda>(x, y) (u, v). (x + v, y + u)" | |
| 54 | by clarsimp | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 55 | |
| 48045 | 56 | lift_definition times_int :: "int \<Rightarrow> int \<Rightarrow> int" | 
| 57 | is "\<lambda>(x, y) (u, v). (x*u + y*v, x*v + y*u)" | |
| 58 | proof (clarsimp) | |
| 59 | fix s t u v w x y z :: nat | |
| 60 | assume "s + v = u + t" and "w + z = y + x" | |
| 61 | hence "(s + v) * w + (u + t) * x + u * (w + z) + v * (y + x) | |
| 62 | = (u + t) * w + (s + v) * x + u * (y + x) + v * (w + z)" | |
| 63 | by simp | |
| 64 | thus "(s * w + t * x) + (u * z + v * y) = (u * y + v * z) + (s * x + t * w)" | |
| 65 | by (simp add: algebra_simps) | |
| 66 | qed | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 67 | |
| 48045 | 68 | instance | 
| 61169 | 69 | by standard (transfer, clarsimp simp: algebra_simps)+ | 
| 25919 
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 | end | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 72 | |
| 44709 | 73 | abbreviation int :: "nat \<Rightarrow> int" where | 
| 74 | "int \<equiv> of_nat" | |
| 75 | ||
| 48045 | 76 | lemma int_def: "int n = Abs_Integ (n, 0)" | 
| 77 | by (induct n, simp add: zero_int.abs_eq, | |
| 78 | simp add: one_int.abs_eq plus_int.abs_eq) | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 79 | |
| 48045 | 80 | lemma int_transfer [transfer_rule]: | 
| 56525 | 81 | "(rel_fun (op =) pcr_int) (\<lambda>n. (n, 0)) int" | 
| 82 | unfolding rel_fun_def int.pcr_cr_eq cr_int_def int_def by simp | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 83 | |
| 48045 | 84 | lemma int_diff_cases: | 
| 85 | obtains (diff) m n where "z = int m - int n" | |
| 86 | by transfer clarsimp | |
| 87 | ||
| 60758 | 88 | subsection \<open>Integers are totally ordered\<close> | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 89 | |
| 48045 | 90 | instantiation int :: linorder | 
| 91 | begin | |
| 92 | ||
| 93 | lift_definition less_eq_int :: "int \<Rightarrow> int \<Rightarrow> bool" | |
| 94 | is "\<lambda>(x, y) (u, v). x + v \<le> u + y" | |
| 95 | by auto | |
| 96 | ||
| 97 | lift_definition less_int :: "int \<Rightarrow> int \<Rightarrow> bool" | |
| 98 | is "\<lambda>(x, y) (u, v). x + v < u + y" | |
| 99 | by auto | |
| 100 | ||
| 101 | instance | |
| 61169 | 102 | by standard (transfer, force)+ | 
| 48045 | 103 | |
| 104 | end | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 105 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 106 | instantiation int :: distrib_lattice | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 107 | begin | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 108 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 109 | definition | 
| 61076 | 110 | "(inf :: int \<Rightarrow> int \<Rightarrow> int) = min" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 111 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 112 | definition | 
| 61076 | 113 | "(sup :: int \<Rightarrow> int \<Rightarrow> int) = max" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 114 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 115 | instance | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 116 | by intro_classes | 
| 54863 
82acc20ded73
prefer more canonical names for lemmas on min/max
 haftmann parents: 
54489diff
changeset | 117 | (auto simp add: inf_int_def sup_int_def max_min_distrib2) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 118 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 119 | end | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 120 | |
| 60758 | 121 | subsection \<open>Ordering properties of arithmetic operations\<close> | 
| 48045 | 122 | |
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34055diff
changeset | 123 | instance int :: ordered_cancel_ab_semigroup_add | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 124 | proof | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 125 | fix i j k :: int | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 126 | show "i \<le> j \<Longrightarrow> k + i \<le> k + j" | 
| 48045 | 127 | by transfer clarsimp | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 128 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 129 | |
| 60758 | 130 | text\<open>Strict Monotonicity of Multiplication\<close> | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 131 | |
| 60758 | 132 | text\<open>strict, in 1st argument; proof is by induction on k>0\<close> | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 133 | lemma zmult_zless_mono2_lemma: | 
| 44709 | 134 | "(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 | 135 | apply (induct k) | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 136 | apply simp | 
| 49962 
a8cc904a6820
Renamed {left,right}_distrib to distrib_{right,left}.
 webertj parents: 
48891diff
changeset | 137 | apply (simp add: distrib_right) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 138 | apply (case_tac "k=0") | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 139 | apply (simp_all add: add_strict_mono) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 140 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 141 | |
| 44709 | 142 | lemma zero_le_imp_eq_int: "(0::int) \<le> k ==> \<exists>n. k = int n" | 
| 48045 | 143 | apply transfer | 
| 144 | apply clarsimp | |
| 145 | apply (rule_tac x="a - b" in exI, simp) | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 146 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 147 | |
| 44709 | 148 | lemma zero_less_imp_eq_int: "(0::int) < k ==> \<exists>n>0. k = int n" | 
| 48045 | 149 | apply transfer | 
| 150 | apply clarsimp | |
| 151 | apply (rule_tac x="a - b" in exI, simp) | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 152 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 153 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 154 | 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 | 155 | apply (drule zero_less_imp_eq_int) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 156 | apply (auto simp add: zmult_zless_mono2_lemma) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 157 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 158 | |
| 60758 | 159 | text\<open>The integers form an ordered integral domain\<close> | 
| 48045 | 160 | instantiation int :: linordered_idom | 
| 161 | begin | |
| 162 | ||
| 163 | definition | |
| 61076 | 164 | zabs_def: "\<bar>i::int\<bar> = (if i < 0 then - i else i)" | 
| 48045 | 165 | |
| 166 | definition | |
| 61076 | 167 | zsgn_def: "sgn (i::int) = (if i=0 then 0 else if 0<i then 1 else - 1)" | 
| 48045 | 168 | |
| 169 | instance proof | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 170 | fix i j k :: int | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 171 | show "i < j \<Longrightarrow> 0 < k \<Longrightarrow> k * i < k * j" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 172 | by (rule zmult_zless_mono2) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 173 | show "\<bar>i\<bar> = (if i < 0 then -i else i)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 174 | by (simp only: zabs_def) | 
| 61076 | 175 | show "sgn (i::int) = (if i=0 then 0 else if 0<i then 1 else - 1)" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 176 | by (simp only: zsgn_def) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 177 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 178 | |
| 48045 | 179 | end | 
| 180 | ||
| 61076 | 181 | lemma zless_imp_add1_zle: "w < z \<Longrightarrow> w + (1::int) \<le> z" | 
| 48045 | 182 | by transfer clarsimp | 
| 25919 
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 | lemma zless_iff_Suc_zadd: | 
| 61076 | 185 | "(w :: int) < z \<longleftrightarrow> (\<exists>n. z = w + int (Suc n))" | 
| 48045 | 186 | apply transfer | 
| 187 | apply auto | |
| 188 | apply (rename_tac a b c d) | |
| 189 | apply (rule_tac x="c+b - Suc(a+d)" in exI) | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 190 | apply arith | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 191 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 192 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 193 | lemmas int_distrib = | 
| 49962 
a8cc904a6820
Renamed {left,right}_distrib to distrib_{right,left}.
 webertj parents: 
48891diff
changeset | 194 | distrib_right [of z1 z2 w] | 
| 
a8cc904a6820
Renamed {left,right}_distrib to distrib_{right,left}.
 webertj parents: 
48891diff
changeset | 195 | distrib_left [of w z1 z2] | 
| 45607 | 196 | left_diff_distrib [of z1 z2 w] | 
| 197 | right_diff_distrib [of w z1 z2] | |
| 198 | for z1 z2 w :: int | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 199 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 200 | |
| 60758 | 201 | subsection \<open>Embedding of the Integers into any @{text ring_1}: @{text of_int}\<close>
 | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 202 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 203 | context ring_1 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 204 | begin | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 205 | |
| 48045 | 206 | lift_definition of_int :: "int \<Rightarrow> 'a" is "\<lambda>(i, j). of_nat i - of_nat j" | 
| 207 | by (clarsimp simp add: diff_eq_eq eq_diff_eq diff_add_eq | |
| 208 | of_nat_add [symmetric] simp del: of_nat_add) | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 209 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 210 | lemma of_int_0 [simp]: "of_int 0 = 0" | 
| 48066 
c6783c9b87bf
transfer method now handles transfer rules for compound terms, e.g. locale-defined constants with hidden parameters
 huffman parents: 
48045diff
changeset | 211 | by transfer simp | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 212 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 213 | lemma of_int_1 [simp]: "of_int 1 = 1" | 
| 48066 
c6783c9b87bf
transfer method now handles transfer rules for compound terms, e.g. locale-defined constants with hidden parameters
 huffman parents: 
48045diff
changeset | 214 | by transfer simp | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 215 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 216 | lemma of_int_add [simp]: "of_int (w+z) = of_int w + of_int z" | 
| 48066 
c6783c9b87bf
transfer method now handles transfer rules for compound terms, e.g. locale-defined constants with hidden parameters
 huffman parents: 
48045diff
changeset | 217 | by transfer (clarsimp simp add: algebra_simps) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 218 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 219 | lemma of_int_minus [simp]: "of_int (-z) = - (of_int z)" | 
| 48066 
c6783c9b87bf
transfer method now handles transfer rules for compound terms, e.g. locale-defined constants with hidden parameters
 huffman parents: 
48045diff
changeset | 220 | by (transfer fixing: uminus) clarsimp | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 221 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 222 | lemma of_int_diff [simp]: "of_int (w - z) = of_int w - of_int z" | 
| 54230 
b1d955791529
more simplification rules on unary and binary minus
 haftmann parents: 
54223diff
changeset | 223 | using of_int_add [of w "- z"] by simp | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 224 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 225 | lemma of_int_mult [simp]: "of_int (w*z) = of_int w * of_int z" | 
| 48066 
c6783c9b87bf
transfer method now handles transfer rules for compound terms, e.g. locale-defined constants with hidden parameters
 huffman parents: 
48045diff
changeset | 226 | by (transfer fixing: times) (clarsimp simp add: algebra_simps of_nat_mult) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 227 | |
| 61531 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 eberlm parents: 
61524diff
changeset | 228 | lemma mult_of_int_commute: "of_int x * y = y * of_int x" | 
| 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 eberlm parents: 
61524diff
changeset | 229 | by (transfer fixing: times) (auto simp: algebra_simps mult_of_nat_commute) | 
| 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 eberlm parents: 
61524diff
changeset | 230 | |
| 60758 | 231 | text\<open>Collapse nested embeddings\<close> | 
| 44709 | 232 | lemma of_int_of_nat_eq [simp]: "of_int (int n) = of_nat n" | 
| 29667 | 233 | by (induct n) auto | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 234 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 235 | lemma of_int_numeral [simp, code_post]: "of_int (numeral k) = numeral k" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 236 | by (simp add: of_nat_numeral [symmetric] of_int_of_nat_eq [symmetric]) | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 237 | |
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 238 | lemma of_int_neg_numeral [code_post]: "of_int (- numeral k) = - numeral k" | 
| 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 239 | by simp | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 240 | |
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61552diff
changeset | 241 | lemma of_int_power [simp]: | 
| 31015 | 242 | "of_int (z ^ n) = of_int z ^ n" | 
| 243 | by (induct n) simp_all | |
| 244 | ||
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 245 | end | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 246 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 247 | context ring_char_0 | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 248 | begin | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 249 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 250 | lemma of_int_eq_iff [simp]: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 251 | "of_int w = of_int z \<longleftrightarrow> w = z" | 
| 48066 
c6783c9b87bf
transfer method now handles transfer rules for compound terms, e.g. locale-defined constants with hidden parameters
 huffman parents: 
48045diff
changeset | 252 | by transfer (clarsimp simp add: algebra_simps | 
| 
c6783c9b87bf
transfer method now handles transfer rules for compound terms, e.g. locale-defined constants with hidden parameters
 huffman parents: 
48045diff
changeset | 253 | of_nat_add [symmetric] simp del: of_nat_add) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 254 | |
| 60758 | 255 | text\<open>Special cases where either operand is zero\<close> | 
| 36424 | 256 | lemma of_int_eq_0_iff [simp]: | 
| 257 | "of_int z = 0 \<longleftrightarrow> z = 0" | |
| 258 | using of_int_eq_iff [of z 0] by simp | |
| 259 | ||
| 260 | lemma of_int_0_eq_iff [simp]: | |
| 261 | "0 = of_int z \<longleftrightarrow> z = 0" | |
| 262 | using of_int_eq_iff [of 0 z] by simp | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 263 | |
| 61234 | 264 | lemma of_int_eq_1_iff [iff]: | 
| 265 | "of_int z = 1 \<longleftrightarrow> z = 1" | |
| 266 | using of_int_eq_iff [of z 1] by simp | |
| 267 | ||
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 268 | end | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 269 | |
| 36424 | 270 | context linordered_idom | 
| 271 | begin | |
| 272 | ||
| 60758 | 273 | text\<open>Every @{text linordered_idom} has characteristic zero.\<close>
 | 
| 36424 | 274 | subclass ring_char_0 .. | 
| 275 | ||
| 276 | lemma of_int_le_iff [simp]: | |
| 277 | "of_int w \<le> of_int z \<longleftrightarrow> w \<le> z" | |
| 48066 
c6783c9b87bf
transfer method now handles transfer rules for compound terms, e.g. locale-defined constants with hidden parameters
 huffman parents: 
48045diff
changeset | 278 | by (transfer fixing: less_eq) (clarsimp simp add: algebra_simps | 
| 
c6783c9b87bf
transfer method now handles transfer rules for compound terms, e.g. locale-defined constants with hidden parameters
 huffman parents: 
48045diff
changeset | 279 | of_nat_add [symmetric] simp del: of_nat_add) | 
| 36424 | 280 | |
| 281 | lemma of_int_less_iff [simp]: | |
| 282 | "of_int w < of_int z \<longleftrightarrow> w < z" | |
| 283 | by (simp add: less_le order_less_le) | |
| 284 | ||
| 285 | lemma of_int_0_le_iff [simp]: | |
| 286 | "0 \<le> of_int z \<longleftrightarrow> 0 \<le> z" | |
| 287 | using of_int_le_iff [of 0 z] by simp | |
| 288 | ||
| 289 | lemma of_int_le_0_iff [simp]: | |
| 290 | "of_int z \<le> 0 \<longleftrightarrow> z \<le> 0" | |
| 291 | using of_int_le_iff [of z 0] by simp | |
| 292 | ||
| 293 | lemma of_int_0_less_iff [simp]: | |
| 294 | "0 < of_int z \<longleftrightarrow> 0 < z" | |
| 295 | using of_int_less_iff [of 0 z] by simp | |
| 296 | ||
| 297 | lemma of_int_less_0_iff [simp]: | |
| 298 | "of_int z < 0 \<longleftrightarrow> z < 0" | |
| 299 | using of_int_less_iff [of z 0] by simp | |
| 300 | ||
| 61234 | 301 | lemma of_int_1_le_iff [simp]: | 
| 302 | "1 \<le> of_int z \<longleftrightarrow> 1 \<le> z" | |
| 303 | using of_int_le_iff [of 1 z] by simp | |
| 304 | ||
| 305 | lemma of_int_le_1_iff [simp]: | |
| 306 | "of_int z \<le> 1 \<longleftrightarrow> z \<le> 1" | |
| 307 | using of_int_le_iff [of z 1] by simp | |
| 308 | ||
| 309 | lemma of_int_1_less_iff [simp]: | |
| 310 | "1 < of_int z \<longleftrightarrow> 1 < z" | |
| 311 | using of_int_less_iff [of 1 z] by simp | |
| 312 | ||
| 313 | lemma of_int_less_1_iff [simp]: | |
| 314 | "of_int z < 1 \<longleftrightarrow> z < 1" | |
| 315 | using of_int_less_iff [of z 1] by simp | |
| 316 | ||
| 36424 | 317 | end | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 318 | |
| 61234 | 319 | text \<open>Comparisons involving @{term of_int}.\<close>
 | 
| 320 | ||
| 321 | lemma of_int_eq_numeral_iff [iff]: | |
| 61649 
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
 paulson <lp15@cam.ac.uk> parents: 
61609diff
changeset | 322 | "of_int z = (numeral n :: 'a::ring_char_0) | 
| 61234 | 323 | \<longleftrightarrow> z = numeral n" | 
| 324 | using of_int_eq_iff by fastforce | |
| 325 | ||
| 61649 
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
 paulson <lp15@cam.ac.uk> parents: 
61609diff
changeset | 326 | lemma of_int_le_numeral_iff [simp]: | 
| 
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
 paulson <lp15@cam.ac.uk> parents: 
61609diff
changeset | 327 | "of_int z \<le> (numeral n :: 'a::linordered_idom) | 
| 61234 | 328 | \<longleftrightarrow> z \<le> numeral n" | 
| 329 | using of_int_le_iff [of z "numeral n"] by simp | |
| 330 | ||
| 61649 
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
 paulson <lp15@cam.ac.uk> parents: 
61609diff
changeset | 331 | lemma of_int_numeral_le_iff [simp]: | 
| 61234 | 332 | "(numeral n :: 'a::linordered_idom) \<le> of_int z \<longleftrightarrow> numeral n \<le> z" | 
| 333 | using of_int_le_iff [of "numeral n"] by simp | |
| 334 | ||
| 61649 
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
 paulson <lp15@cam.ac.uk> parents: 
61609diff
changeset | 335 | lemma of_int_less_numeral_iff [simp]: | 
| 
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
 paulson <lp15@cam.ac.uk> parents: 
61609diff
changeset | 336 | "of_int z < (numeral n :: 'a::linordered_idom) | 
| 61234 | 337 | \<longleftrightarrow> z < numeral n" | 
| 338 | using of_int_less_iff [of z "numeral n"] by simp | |
| 339 | ||
| 61649 
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
 paulson <lp15@cam.ac.uk> parents: 
61609diff
changeset | 340 | lemma of_int_numeral_less_iff [simp]: | 
| 61234 | 341 | "(numeral n :: 'a::linordered_idom) < of_int z \<longleftrightarrow> numeral n < z" | 
| 342 | using of_int_less_iff [of "numeral n" z] by simp | |
| 343 | ||
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56525diff
changeset | 344 | lemma of_nat_less_of_int_iff: | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56525diff
changeset | 345 | "(of_nat n::'a::linordered_idom) < of_int x \<longleftrightarrow> int n < x" | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56525diff
changeset | 346 | by (metis of_int_of_nat_eq of_int_less_iff) | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56525diff
changeset | 347 | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 348 | lemma of_int_eq_id [simp]: "of_int = id" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 349 | proof | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 350 | fix z show "of_int z = id z" | 
| 48045 | 351 | by (cases z rule: int_diff_cases, simp) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 352 | qed | 
| 
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 | |
| 51329 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 hoelzl parents: 
51185diff
changeset | 355 | instance int :: no_top | 
| 61169 | 356 | apply standard | 
| 51329 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 hoelzl parents: 
51185diff
changeset | 357 | apply (rule_tac x="x + 1" in exI) | 
| 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 hoelzl parents: 
51185diff
changeset | 358 | apply simp | 
| 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 hoelzl parents: 
51185diff
changeset | 359 | done | 
| 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 hoelzl parents: 
51185diff
changeset | 360 | |
| 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 hoelzl parents: 
51185diff
changeset | 361 | instance int :: no_bot | 
| 61169 | 362 | apply standard | 
| 51329 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 hoelzl parents: 
51185diff
changeset | 363 | apply (rule_tac x="x - 1" in exI) | 
| 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 hoelzl parents: 
51185diff
changeset | 364 | apply simp | 
| 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 hoelzl parents: 
51185diff
changeset | 365 | done | 
| 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 hoelzl parents: 
51185diff
changeset | 366 | |
| 60758 | 367 | subsection \<open>Magnitude of an Integer, as a Natural Number: @{text nat}\<close>
 | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 368 | |
| 48045 | 369 | lift_definition nat :: "int \<Rightarrow> nat" is "\<lambda>(x, y). x - y" | 
| 370 | by auto | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 371 | |
| 44709 | 372 | lemma nat_int [simp]: "nat (int n) = n" | 
| 48045 | 373 | by transfer simp | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 374 | |
| 44709 | 375 | lemma int_nat_eq [simp]: "int (nat z) = (if 0 \<le> z then z else 0)" | 
| 48045 | 376 | by transfer clarsimp | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 377 | |
| 44709 | 378 | 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 | 379 | by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 380 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 381 | lemma nat_le_0 [simp]: "z \<le> 0 ==> nat z = 0" | 
| 48045 | 382 | by transfer clarsimp | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 383 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 384 | lemma nat_le_eq_zle: "0 < w | 0 \<le> z ==> (nat w \<le> nat z) = (w\<le>z)" | 
| 48045 | 385 | by transfer (clarsimp, arith) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 386 | |
| 60758 | 387 | text\<open>An alternative condition is @{term "0 \<le> w"}\<close>
 | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 388 | corollary nat_mono_iff: "0 < z ==> (nat w < nat z) = (w < z)" | 
| 60162 | 389 | by (simp add: nat_le_eq_zle linorder_not_le [symmetric]) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 390 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 391 | corollary nat_less_eq_zless: "0 \<le> w ==> (nat w < nat z) = (w<z)" | 
| 60162 | 392 | by (simp add: nat_le_eq_zle linorder_not_le [symmetric]) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 393 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 394 | lemma zless_nat_conj [simp]: "(nat w < nat z) = (0 < z & w < z)" | 
| 48045 | 395 | by transfer (clarsimp, arith) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 396 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 397 | lemma nonneg_eq_int: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 398 | fixes z :: int | 
| 44709 | 399 | 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 | 400 | shows P | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 401 | using assms by (blast dest: nat_0_le sym) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 402 | |
| 54223 | 403 | lemma nat_eq_iff: | 
| 404 | "nat w = m \<longleftrightarrow> (if 0 \<le> w then w = int m else m = 0)" | |
| 48045 | 405 | by transfer (clarsimp simp add: le_imp_diff_is_add) | 
| 60162 | 406 | |
| 54223 | 407 | corollary nat_eq_iff2: | 
| 408 | "m = nat w \<longleftrightarrow> (if 0 \<le> w then w = int m else m = 0)" | |
| 409 | using nat_eq_iff [of w m] by auto | |
| 410 | ||
| 411 | lemma nat_0 [simp]: | |
| 412 | "nat 0 = 0" | |
| 413 | by (simp add: nat_eq_iff) | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 414 | |
| 54223 | 415 | lemma nat_1 [simp]: | 
| 416 | "nat 1 = Suc 0" | |
| 417 | by (simp add: nat_eq_iff) | |
| 418 | ||
| 419 | lemma nat_numeral [simp]: | |
| 420 | "nat (numeral k) = numeral k" | |
| 421 | by (simp add: nat_eq_iff) | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 422 | |
| 54223 | 423 | lemma nat_neg_numeral [simp]: | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 424 | "nat (- numeral k) = 0" | 
| 54223 | 425 | by simp | 
| 426 | ||
| 427 | lemma nat_2: "nat 2 = Suc (Suc 0)" | |
| 428 | by simp | |
| 60162 | 429 | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 430 | lemma nat_less_iff: "0 \<le> w ==> (nat w < m) = (w < of_nat m)" | 
| 48045 | 431 | by transfer (clarsimp, arith) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 432 | |
| 44709 | 433 | lemma nat_le_iff: "nat x \<le> n \<longleftrightarrow> x \<le> int n" | 
| 48045 | 434 | by transfer (clarsimp simp add: le_diff_conv) | 
| 44707 | 435 | |
| 436 | lemma nat_mono: "x \<le> y \<Longrightarrow> nat x \<le> nat y" | |
| 48045 | 437 | by transfer auto | 
| 44707 | 438 | |
| 29700 | 439 | lemma nat_0_iff[simp]: "nat(i::int) = 0 \<longleftrightarrow> i\<le>0" | 
| 48045 | 440 | by transfer clarsimp | 
| 29700 | 441 | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 442 | 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 | 443 | by (auto simp add: nat_eq_iff2) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 444 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 445 | lemma zero_less_nat_eq [simp]: "(0 < nat z) = (0 < z)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 446 | by (insert zless_nat_conj [of 0], auto) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 447 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 448 | lemma nat_add_distrib: | 
| 54223 | 449 | "0 \<le> z \<Longrightarrow> 0 \<le> z' \<Longrightarrow> nat (z + z') = nat z + nat z'" | 
| 48045 | 450 | by transfer clarsimp | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 451 | |
| 54223 | 452 | lemma nat_diff_distrib': | 
| 453 | "0 \<le> x \<Longrightarrow> 0 \<le> y \<Longrightarrow> nat (x - y) = nat x - nat y" | |
| 454 | by transfer clarsimp | |
| 60162 | 455 | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 456 | lemma nat_diff_distrib: | 
| 54223 | 457 | "0 \<le> z' \<Longrightarrow> z' \<le> z \<Longrightarrow> nat (z - z') = nat z - nat z'" | 
| 458 | by (rule nat_diff_distrib') auto | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 459 | |
| 44709 | 460 | lemma nat_zminus_int [simp]: "nat (- int n) = 0" | 
| 48045 | 461 | by transfer simp | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 462 | |
| 53065 | 463 | lemma le_nat_iff: | 
| 464 | "k \<ge> 0 \<Longrightarrow> n \<le> nat k \<longleftrightarrow> int n \<le> k" | |
| 465 | by transfer auto | |
| 60162 | 466 | |
| 44709 | 467 | lemma zless_nat_eq_int_zless: "(m < nat z) = (int m < z)" | 
| 48045 | 468 | by transfer (clarsimp simp add: less_diff_conv) | 
| 25919 
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 | context ring_1 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 471 | begin | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 472 | |
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61552diff
changeset | 473 | lemma of_nat_nat [simp]: "0 \<le> z \<Longrightarrow> of_nat (nat z) = of_int z" | 
| 48066 
c6783c9b87bf
transfer method now handles transfer rules for compound terms, e.g. locale-defined constants with hidden parameters
 huffman parents: 
48045diff
changeset | 474 | by transfer (clarsimp simp add: of_nat_diff) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 475 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 476 | end | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 477 | |
| 60162 | 478 | lemma diff_nat_numeral [simp]: | 
| 54249 | 479 | "(numeral v :: nat) - numeral v' = nat (numeral v - numeral v')" | 
| 480 | by (simp only: nat_diff_distrib' zero_le_numeral nat_numeral) | |
| 481 | ||
| 482 | ||
| 60758 | 483 | text \<open>For termination proofs:\<close> | 
| 29779 | 484 | lemma measure_function_int[measure_function]: "is_measure (nat o abs)" .. | 
| 485 | ||
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 486 | |
| 60758 | 487 | subsection\<open>Lemmas about the Function @{term of_nat} and Orderings\<close>
 | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 488 | |
| 61076 | 489 | lemma negative_zless_0: "- (int (Suc n)) < (0 :: int)" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 490 | by (simp add: order_less_le del: of_nat_Suc) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 491 | |
| 44709 | 492 | lemma negative_zless [iff]: "- (int (Suc n)) < int m" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 493 | by (rule negative_zless_0 [THEN order_less_le_trans], simp) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 494 | |
| 44709 | 495 | lemma negative_zle_0: "- int n \<le> 0" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 496 | by (simp add: minus_le_iff) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 497 | |
| 44709 | 498 | lemma negative_zle [iff]: "- int n \<le> int m" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 499 | 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 | 500 | |
| 44709 | 501 | 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 | 502 | by (subst le_minus_iff, simp del: of_nat_Suc) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 503 | |
| 44709 | 504 | lemma int_zle_neg: "(int n \<le> - int m) = (n = 0 & m = 0)" | 
| 48045 | 505 | by transfer simp | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 506 | |
| 44709 | 507 | lemma not_int_zless_negative [simp]: "~ (int n < - int m)" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 508 | by (simp add: linorder_not_less) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 509 | |
| 44709 | 510 | 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 | 511 | 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 | 512 | |
| 44709 | 513 | 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 | 514 | proof - | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 515 | have "(w \<le> z) = (0 \<le> z - w)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 516 | by (simp only: le_diff_eq add_0_left) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 517 | also have "\<dots> = (\<exists>n. z - w = of_nat n)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 518 | by (auto elim: zero_le_imp_eq_int) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 519 | also have "\<dots> = (\<exists>n. z = w + of_nat n)" | 
| 29667 | 520 | by (simp only: algebra_simps) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 521 | finally show ?thesis . | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 522 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 523 | |
| 44709 | 524 | 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 | 525 | by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 526 | |
| 60758 | 527 | text\<open>This version is proved for all ordered rings, not just integers! | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 528 |       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 | 529 |       in theory @{text Rings}.
 | 
| 60758 | 530 |       But is it really better than just rewriting with @{text abs_if}?\<close>
 | 
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53652diff
changeset | 531 | 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 | 532 | "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 | 533 | 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 | 534 | |
| 44709 | 535 | lemma negD: "x < 0 \<Longrightarrow> \<exists>n. x = - (int (Suc n))" | 
| 48045 | 536 | apply transfer | 
| 537 | apply clarsimp | |
| 538 | apply (rule_tac x="b - Suc a" in exI, arith) | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 539 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 540 | |
| 60758 | 541 | subsection \<open>Cases and induction\<close> | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 542 | |
| 60758 | 543 | text\<open>Now we replace the case analysis rule by a more conventional one: | 
| 544 | whether an integer is negative or not.\<close> | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 545 | |
| 60758 | 546 | text\<open>This version is symmetric in the two subgoals.\<close> | 
| 59613 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 paulson <lp15@cam.ac.uk> parents: 
59582diff
changeset | 547 | theorem int_cases2 [case_names nonneg nonpos, cases type: int]: | 
| 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 paulson <lp15@cam.ac.uk> parents: 
59582diff
changeset | 548 | "\<lbrakk>!! n. z = int n \<Longrightarrow> P; !! n. z = - (int n) \<Longrightarrow> P\<rbrakk> \<Longrightarrow> P" | 
| 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 paulson <lp15@cam.ac.uk> parents: 
59582diff
changeset | 549 | apply (cases "z < 0") | 
| 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 paulson <lp15@cam.ac.uk> parents: 
59582diff
changeset | 550 | apply (auto simp add: linorder_not_less dest!: negD nat_0_le [THEN sym]) | 
| 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 paulson <lp15@cam.ac.uk> parents: 
59582diff
changeset | 551 | done | 
| 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 paulson <lp15@cam.ac.uk> parents: 
59582diff
changeset | 552 | |
| 60758 | 553 | text\<open>This is the default, with a negative case.\<close> | 
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 554 | theorem int_cases [case_names nonneg neg, cases type: int]: | 
| 59613 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 paulson <lp15@cam.ac.uk> parents: 
59582diff
changeset | 555 | "[|!! 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 | 556 | apply (cases "z < 0") | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 557 | apply (blast dest!: negD) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 558 | apply (simp add: linorder_not_less del: of_nat_Suc) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 559 | apply auto | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 560 | apply (blast dest: nat_0_le [THEN sym]) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 561 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 562 | |
| 60868 
dd18c33c001e
direct bootstrap of integer division from natural division
 haftmann parents: 
60758diff
changeset | 563 | lemma int_cases3 [case_names zero pos neg]: | 
| 
dd18c33c001e
direct bootstrap of integer division from natural division
 haftmann parents: 
60758diff
changeset | 564 | fixes k :: int | 
| 
dd18c33c001e
direct bootstrap of integer division from natural division
 haftmann parents: 
60758diff
changeset | 565 | assumes "k = 0 \<Longrightarrow> P" and "\<And>n. k = int n \<Longrightarrow> n > 0 \<Longrightarrow> P" | 
| 61204 | 566 | and "\<And>n. k = - int n \<Longrightarrow> n > 0 \<Longrightarrow> P" | 
| 60868 
dd18c33c001e
direct bootstrap of integer division from natural division
 haftmann parents: 
60758diff
changeset | 567 | shows "P" | 
| 
dd18c33c001e
direct bootstrap of integer division from natural division
 haftmann parents: 
60758diff
changeset | 568 | proof (cases k "0::int" rule: linorder_cases) | 
| 
dd18c33c001e
direct bootstrap of integer division from natural division
 haftmann parents: 
60758diff
changeset | 569 | case equal with assms(1) show P by simp | 
| 
dd18c33c001e
direct bootstrap of integer division from natural division
 haftmann parents: 
60758diff
changeset | 570 | next | 
| 
dd18c33c001e
direct bootstrap of integer division from natural division
 haftmann parents: 
60758diff
changeset | 571 | case greater | 
| 
dd18c33c001e
direct bootstrap of integer division from natural division
 haftmann parents: 
60758diff
changeset | 572 | then have "nat k > 0" by simp | 
| 
dd18c33c001e
direct bootstrap of integer division from natural division
 haftmann parents: 
60758diff
changeset | 573 | moreover from this have "k = int (nat k)" by auto | 
| 
dd18c33c001e
direct bootstrap of integer division from natural division
 haftmann parents: 
60758diff
changeset | 574 | ultimately show P using assms(2) by blast | 
| 
dd18c33c001e
direct bootstrap of integer division from natural division
 haftmann parents: 
60758diff
changeset | 575 | next | 
| 
dd18c33c001e
direct bootstrap of integer division from natural division
 haftmann parents: 
60758diff
changeset | 576 | case less | 
| 
dd18c33c001e
direct bootstrap of integer division from natural division
 haftmann parents: 
60758diff
changeset | 577 | then have "nat (- k) > 0" by simp | 
| 
dd18c33c001e
direct bootstrap of integer division from natural division
 haftmann parents: 
60758diff
changeset | 578 | moreover from this have "k = - int (nat (- k))" by auto | 
| 
dd18c33c001e
direct bootstrap of integer division from natural division
 haftmann parents: 
60758diff
changeset | 579 | ultimately show P using assms(3) by blast | 
| 
dd18c33c001e
direct bootstrap of integer division from natural division
 haftmann parents: 
60758diff
changeset | 580 | qed | 
| 
dd18c33c001e
direct bootstrap of integer division from natural division
 haftmann parents: 
60758diff
changeset | 581 | |
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 582 | theorem int_of_nat_induct [case_names nonneg neg, induct type: int]: | 
| 44709 | 583 | "[|!! 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 | 584 | by (cases z) auto | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 585 | |
| 47207 
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
 huffman parents: 
47192diff
changeset | 586 | lemma nonneg_int_cases: | 
| 
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
 huffman parents: 
47192diff
changeset | 587 | assumes "0 \<le> k" obtains n where "k = int n" | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 588 | using assms by (rule nonneg_eq_int) | 
| 47207 
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
 huffman parents: 
47192diff
changeset | 589 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 590 | lemma Let_numeral [simp]: "Let (numeral v) f = f (numeral v)" | 
| 60758 | 591 |   -- \<open>Unfold all @{text let}s involving constants\<close>
 | 
| 592 | by (fact Let_numeral) -- \<open>FIXME drop\<close> | |
| 37767 | 593 | |
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 594 | lemma Let_neg_numeral [simp]: "Let (- numeral v) f = f (- numeral v)" | 
| 60758 | 595 |   -- \<open>Unfold all @{text let}s involving constants\<close>
 | 
| 596 | by (fact Let_neg_numeral) -- \<open>FIXME drop\<close> | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 597 | |
| 60758 | 598 | text \<open>Unfold @{text min} and @{text max} on numerals.\<close>
 | 
| 28958 | 599 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 600 | lemmas max_number_of [simp] = | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 601 | max_def [of "numeral u" "numeral v"] | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 602 | max_def [of "numeral u" "- numeral v"] | 
| 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 603 | max_def [of "- numeral u" "numeral v"] | 
| 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 604 | max_def [of "- numeral u" "- numeral v"] for u v | 
| 28958 | 605 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 606 | lemmas min_number_of [simp] = | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 607 | min_def [of "numeral u" "numeral v"] | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 608 | min_def [of "numeral u" "- numeral v"] | 
| 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 609 | min_def [of "- numeral u" "numeral v"] | 
| 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 610 | min_def [of "- numeral u" "- numeral v"] for u v | 
| 26075 
815f3ccc0b45
added lemma lists {normalize,succ,pred,minus,add,mult}_bin_simps
 huffman parents: 
26072diff
changeset | 611 | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 612 | |
| 60758 | 613 | subsubsection \<open>Binary comparisons\<close> | 
| 28958 | 614 | |
| 60758 | 615 | text \<open>Preliminaries\<close> | 
| 28958 | 616 | |
| 60162 | 617 | lemma le_imp_0_less: | 
| 28958 | 618 | assumes le: "0 \<le> z" | 
| 619 | shows "(0::int) < 1 + z" | |
| 620 | proof - | |
| 621 | have "0 \<le> z" by fact | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 622 | also have "... < z + 1" by (rule less_add_one) | 
| 57514 
bdc2c6b40bf2
prefer ac_simps collections over separate name bindings for add and mult
 haftmann parents: 
57512diff
changeset | 623 | also have "... = 1 + z" by (simp add: ac_simps) | 
| 28958 | 624 | finally show "0 < 1 + z" . | 
| 625 | qed | |
| 626 | ||
| 627 | lemma odd_less_0_iff: | |
| 628 | "(1 + z + z < 0) = (z < (0::int))" | |
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 629 | proof (cases z) | 
| 28958 | 630 | case (nonneg n) | 
| 57512 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 haftmann parents: 
56889diff
changeset | 631 | thus ?thesis by (simp add: linorder_not_less add.assoc add_increasing | 
| 60162 | 632 | le_imp_0_less [THEN order_less_imp_le]) | 
| 28958 | 633 | next | 
| 634 | 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 | 635 | 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 | 636 | add: algebra_simps of_nat_1 [where 'a=int, symmetric] of_nat_add [symmetric]) | 
| 28958 | 637 | qed | 
| 638 | ||
| 60758 | 639 | subsubsection \<open>Comparisons, for Ordered Rings\<close> | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 640 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 641 | lemmas double_eq_0_iff = double_zero | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 642 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 643 | lemma odd_nonzero: | 
| 33296 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 haftmann parents: 
33056diff
changeset | 644 | "1 + z + z \<noteq> (0::int)" | 
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 645 | proof (cases z) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 646 | case (nonneg n) | 
| 60162 | 647 | have le: "0 \<le> z+z" by (simp add: nonneg add_increasing) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 648 | thus ?thesis using le_imp_0_less [OF le] | 
| 60162 | 649 | by (auto simp add: add.assoc) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 650 | next | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 651 | case (neg n) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 652 | show ?thesis | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 653 | proof | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 654 | assume eq: "1 + z + z = 0" | 
| 44709 | 655 | have "(0::int) < 1 + (int n + int n)" | 
| 60162 | 656 | by (simp add: le_imp_0_less add_increasing) | 
| 657 | also have "... = - (1 + z + z)" | |
| 658 | by (simp add: neg add.assoc [symmetric]) | |
| 659 | also have "... = 0" by (simp add: eq) | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 660 | finally have "0<0" .. | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 661 | thus False by blast | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 662 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 663 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 664 | |
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 665 | |
| 60758 | 666 | subsection \<open>The Set of Integers\<close> | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 667 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 668 | context ring_1 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 669 | begin | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 670 | |
| 61070 | 671 | definition Ints :: "'a set"  ("\<int>")
 | 
| 672 | where "\<int> = range of_int" | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 673 | |
| 35634 | 674 | lemma Ints_of_int [simp]: "of_int z \<in> \<int>" | 
| 675 | by (simp add: Ints_def) | |
| 676 | ||
| 677 | lemma Ints_of_nat [simp]: "of_nat n \<in> \<int>" | |
| 45533 | 678 | using Ints_of_int [of "of_nat n"] by simp | 
| 35634 | 679 | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 680 | lemma Ints_0 [simp]: "0 \<in> \<int>" | 
| 45533 | 681 | using Ints_of_int [of "0"] by simp | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 682 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 683 | lemma Ints_1 [simp]: "1 \<in> \<int>" | 
| 45533 | 684 | using Ints_of_int [of "1"] by simp | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 685 | |
| 61552 
980dd46a03fb
Added binomial identities to CONTRIBUTORS; small lemmas on of_int/pochhammer
 eberlm parents: 
61531diff
changeset | 686 | lemma Ints_numeral [simp]: "numeral n \<in> \<int>" | 
| 
980dd46a03fb
Added binomial identities to CONTRIBUTORS; small lemmas on of_int/pochhammer
 eberlm parents: 
61531diff
changeset | 687 | by (subst of_nat_numeral [symmetric], rule Ints_of_nat) | 
| 
980dd46a03fb
Added binomial identities to CONTRIBUTORS; small lemmas on of_int/pochhammer
 eberlm parents: 
61531diff
changeset | 688 | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 689 | 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 | 690 | apply (auto simp add: Ints_def) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 691 | apply (rule range_eqI) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 692 | apply (rule of_int_add [symmetric]) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 693 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 694 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 695 | lemma Ints_minus [simp]: "a \<in> \<int> \<Longrightarrow> -a \<in> \<int>" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 696 | apply (auto simp add: Ints_def) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 697 | apply (rule range_eqI) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 698 | apply (rule of_int_minus [symmetric]) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 699 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 700 | |
| 35634 | 701 | lemma Ints_diff [simp]: "a \<in> \<int> \<Longrightarrow> b \<in> \<int> \<Longrightarrow> a - b \<in> \<int>" | 
| 702 | apply (auto simp add: Ints_def) | |
| 703 | apply (rule range_eqI) | |
| 704 | apply (rule of_int_diff [symmetric]) | |
| 705 | done | |
| 706 | ||
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 707 | 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 | 708 | apply (auto simp add: Ints_def) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 709 | apply (rule range_eqI) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 710 | apply (rule of_int_mult [symmetric]) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 711 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 712 | |
| 35634 | 713 | lemma Ints_power [simp]: "a \<in> \<int> \<Longrightarrow> a ^ n \<in> \<int>" | 
| 714 | by (induct n) simp_all | |
| 715 | ||
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 716 | lemma Ints_cases [cases set: Ints]: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 717 | assumes "q \<in> \<int>" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 718 | obtains (of_int) z where "q = of_int z" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 719 | unfolding Ints_def | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 720 | proof - | 
| 60758 | 721 | from \<open>q \<in> \<int>\<close> have "q \<in> range of_int" unfolding Ints_def . | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 722 | then obtain z where "q = of_int z" .. | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 723 | then show thesis .. | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 724 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 725 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 726 | lemma Ints_induct [case_names of_int, induct set: Ints]: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 727 | "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 | 728 | by (rule Ints_cases) auto | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 729 | |
| 61524 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61234diff
changeset | 730 | lemma Nats_subset_Ints: "\<nat> \<subseteq> \<int>" | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61234diff
changeset | 731 | unfolding Nats_def Ints_def | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61234diff
changeset | 732 | by (rule subsetI, elim imageE, hypsubst, subst of_int_of_nat_eq[symmetric], rule imageI) simp_all | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61234diff
changeset | 733 | |
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61234diff
changeset | 734 | lemma Nats_altdef1: "\<nat> = {of_int n |n. n \<ge> 0}"
 | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61234diff
changeset | 735 | proof (intro subsetI equalityI) | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61234diff
changeset | 736 |   fix x :: 'a assume "x \<in> {of_int n |n. n \<ge> 0}"
 | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61234diff
changeset | 737 | then obtain n where "x = of_int n" "n \<ge> 0" by (auto elim!: Ints_cases) | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61234diff
changeset | 738 | hence "x = of_nat (nat n)" by (subst of_nat_nat) simp_all | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61234diff
changeset | 739 | thus "x \<in> \<nat>" by simp | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61234diff
changeset | 740 | next | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61234diff
changeset | 741 | fix x :: 'a assume "x \<in> \<nat>" | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61234diff
changeset | 742 | then obtain n where "x = of_nat n" by (auto elim!: Nats_cases) | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61234diff
changeset | 743 | hence "x = of_int (int n)" by simp | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61234diff
changeset | 744 | also have "int n \<ge> 0" by simp | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61234diff
changeset | 745 |   hence "of_int (int n) \<in> {of_int n |n. n \<ge> 0}" by blast
 | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61234diff
changeset | 746 |   finally show "x \<in> {of_int n |n. n \<ge> 0}" .
 | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61234diff
changeset | 747 | qed | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61234diff
changeset | 748 | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 749 | end | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 750 | |
| 61524 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61234diff
changeset | 751 | lemma (in linordered_idom) Nats_altdef2: "\<nat> = {n \<in> \<int>. n \<ge> 0}"
 | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61234diff
changeset | 752 | proof (intro subsetI equalityI) | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61234diff
changeset | 753 |   fix x :: 'a assume "x \<in> {n \<in> \<int>. n \<ge> 0}"
 | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61234diff
changeset | 754 | then obtain n where "x = of_int n" "n \<ge> 0" by (auto elim!: Ints_cases) | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61234diff
changeset | 755 | hence "x = of_nat (nat n)" by (subst of_nat_nat) simp_all | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61234diff
changeset | 756 | thus "x \<in> \<nat>" by simp | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61234diff
changeset | 757 | qed (auto elim!: Nats_cases) | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61234diff
changeset | 758 | |
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61234diff
changeset | 759 | |
| 60758 | 760 | text \<open>The premise involving @{term Ints} prevents @{term "a = 1/2"}.\<close>
 | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 761 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 762 | lemma Ints_double_eq_0_iff: | 
| 61070 | 763 | assumes in_Ints: "a \<in> \<int>" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 764 | shows "(a + a = 0) = (a = (0::'a::ring_char_0))" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 765 | proof - | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 766 | 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 | 767 | then obtain z where a: "a = of_int z" .. | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 768 | show ?thesis | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 769 | proof | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 770 | assume "a = 0" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 771 | thus "a + a = 0" by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 772 | next | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 773 | assume eq: "a + a = 0" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 774 | 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 | 775 | hence "z + z = 0" by (simp only: of_int_eq_iff) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 776 | hence "z = 0" by (simp only: double_eq_0_iff) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 777 | thus "a = 0" by (simp add: a) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 778 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 779 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 780 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 781 | lemma Ints_odd_nonzero: | 
| 61070 | 782 | assumes in_Ints: "a \<in> \<int>" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 783 | shows "1 + a + a \<noteq> (0::'a::ring_char_0)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 784 | proof - | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 785 | 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 | 786 | then obtain z where a: "a = of_int z" .. | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 787 | show ?thesis | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 788 | proof | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 789 | assume eq: "1 + a + a = 0" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 790 | 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 | 791 | 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 | 792 | with odd_nonzero show False by blast | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 793 | qed | 
| 60162 | 794 | qed | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 795 | |
| 61070 | 796 | lemma Nats_numeral [simp]: "numeral w \<in> \<nat>" | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 797 | using of_nat_in_Nats [of "numeral w"] by simp | 
| 35634 | 798 | |
| 60162 | 799 | lemma Ints_odd_less_0: | 
| 61070 | 800 | assumes in_Ints: "a \<in> \<int>" | 
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34055diff
changeset | 801 | shows "(1 + a + a < 0) = (a < (0::'a::linordered_idom))" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 802 | proof - | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 803 | 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 | 804 | then obtain z where a: "a = of_int z" .. | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 805 | 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 | 806 | 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 | 807 | 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 | 808 | also have "... = (a < 0)" by (simp add: a) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 809 | finally show ?thesis . | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 810 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 811 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 812 | |
| 60758 | 813 | subsection \<open>@{term setsum} and @{term setprod}\<close>
 | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 814 | |
| 61649 
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
 paulson <lp15@cam.ac.uk> parents: 
61609diff
changeset | 815 | lemma of_nat_setsum [simp]: "of_nat (setsum f A) = (\<Sum>x\<in>A. of_nat(f x))" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 816 | apply (cases "finite A") | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 817 | apply (erule finite_induct, auto) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 818 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 819 | |
| 61649 
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
 paulson <lp15@cam.ac.uk> parents: 
61609diff
changeset | 820 | lemma of_int_setsum [simp]: "of_int (setsum f A) = (\<Sum>x\<in>A. of_int(f x))" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 821 | apply (cases "finite A") | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 822 | apply (erule finite_induct, auto) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 823 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 824 | |
| 61649 
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
 paulson <lp15@cam.ac.uk> parents: 
61609diff
changeset | 825 | lemma of_nat_setprod [simp]: "of_nat (setprod f A) = (\<Prod>x\<in>A. of_nat(f x))" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 826 | apply (cases "finite A") | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 827 | apply (erule finite_induct, auto simp add: of_nat_mult) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 828 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 829 | |
| 61649 
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
 paulson <lp15@cam.ac.uk> parents: 
61609diff
changeset | 830 | lemma of_int_setprod [simp]: "of_int (setprod f A) = (\<Prod>x\<in>A. of_int(f x))" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 831 | apply (cases "finite A") | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 832 | apply (erule finite_induct, auto) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 833 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 834 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 835 | lemmas int_setsum = of_nat_setsum [where 'a=int] | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 836 | lemmas int_setprod = of_nat_setprod [where 'a=int] | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 837 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 838 | |
| 60758 | 839 | text \<open>Legacy theorems\<close> | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 840 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 841 | lemmas zle_int = of_nat_le_iff [where 'a=int] | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 842 | lemmas int_int_eq = of_nat_eq_iff [where 'a=int] | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 843 | |
| 60758 | 844 | subsection \<open>Setting up simplification procedures\<close> | 
| 30802 | 845 | |
| 54249 | 846 | lemmas of_int_simps = | 
| 847 | of_int_0 of_int_1 of_int_add of_int_mult | |
| 848 | ||
| 48891 | 849 | ML_file "Tools/int_arith.ML" | 
| 60758 | 850 | declaration \<open>K Int_Arith.setup\<close> | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 851 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 852 | simproc_setup fast_arith ("(m::'a::linordered_idom) < n" |
 | 
| 61144 | 853 | "(m::'a::linordered_idom) \<le> n" | | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 854 | "(m::'a::linordered_idom) = n") = | 
| 61144 | 855 | \<open>K Lin_Arith.simproc\<close> | 
| 43595 | 856 | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 857 | |
| 60758 | 858 | subsection\<open>More Inequality Reasoning\<close> | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 859 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 860 | 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 | 861 | by arith | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 862 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 863 | lemma add1_zle_eq: "(w + (1::int) \<le> z) = (w<z)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 864 | by arith | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 865 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 866 | 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 | 867 | by arith | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 868 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 869 | 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 | 870 | by arith | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 871 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 872 | 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 | 873 | by arith | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 874 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 875 | |
| 60758 | 876 | subsection\<open>The functions @{term nat} and @{term int}\<close>
 | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 877 | |
| 60758 | 878 | text\<open>Simplify the term @{term "w + - z"}\<close>
 | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 879 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 880 | lemma one_less_nat_eq [simp]: "(Suc 0 < nat z) = (1 < z)" | 
| 60162 | 881 | using zless_nat_conj [of 1 z] by auto | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 882 | |
| 60758 | 883 | text\<open>This simplifies expressions of the form @{term "int n = z"} where
 | 
| 884 | z is an integer literal.\<close> | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 885 | lemmas int_eq_iff_numeral [simp] = int_eq_iff [of _ "numeral v"] for v | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 886 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 887 | lemma split_nat [arith_split]: | 
| 44709 | 888 | "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 | 889 | (is "?P = (?L & ?R)") | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 890 | proof (cases "i < 0") | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 891 | case True thus ?thesis by auto | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 892 | next | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 893 | case False | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 894 | have "?P = ?L" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 895 | proof | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 896 | assume ?P thus ?L using False by clarsimp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 897 | next | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 898 | assume ?L thus ?P using False by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 899 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 900 | with False show ?thesis by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 901 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 902 | |
| 59000 | 903 | lemma nat_abs_int_diff: "nat \<bar>int a - int b\<bar> = (if a \<le> b then b - a else a - b)" | 
| 904 | by auto | |
| 905 | ||
| 906 | lemma nat_int_add: "nat (int a + int b) = a + b" | |
| 907 | by auto | |
| 908 | ||
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 909 | context ring_1 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 910 | begin | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 911 | |
| 33056 
791a4655cae3
renamed "nitpick_const_xxx" attributes to "nitpick_xxx" and "nitpick_ind_intros" to "nitpick_intros"
 blanchet parents: 
32437diff
changeset | 912 | lemma of_int_of_nat [nitpick_simp]: | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 913 | "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 | 914 | proof (cases "k < 0") | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 915 | case True then have "0 \<le> - k" by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 916 | 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 | 917 | with True show ?thesis by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 918 | next | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 919 | 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 | 920 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 921 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 922 | end | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 923 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 924 | lemma nat_mult_distrib: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 925 | fixes z z' :: int | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 926 | assumes "0 \<le> z" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 927 | shows "nat (z * z') = nat z * nat z'" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 928 | proof (cases "0 \<le> z'") | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 929 | case False with assms have "z * z' \<le> 0" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 930 | by (simp add: not_le mult_le_0_iff) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 931 | then have "nat (z * z') = 0" by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 932 | moreover from False have "nat z' = 0" by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 933 | ultimately show ?thesis by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 934 | next | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 935 | 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 | 936 | show ?thesis | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 937 | 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 | 938 | (simp only: of_nat_mult of_nat_nat [OF True] | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 939 | 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 | 940 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 941 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 942 | 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 | 943 | apply (rule trans) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 944 | apply (rule_tac [2] nat_mult_distrib, auto) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 945 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 946 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 947 | 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 | 948 | apply (cases "z=0 | w=0") | 
| 60162 | 949 | apply (auto simp add: abs_if nat_mult_distrib [symmetric] | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 950 | nat_mult_distrib_neg [symmetric] mult_less_0_iff) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 951 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 952 | |
| 60570 | 953 | lemma int_in_range_abs [simp]: | 
| 954 | "int n \<in> range abs" | |
| 955 | proof (rule range_eqI) | |
| 956 | show "int n = \<bar>int n\<bar>" | |
| 957 | by simp | |
| 958 | qed | |
| 959 | ||
| 960 | lemma range_abs_Nats [simp]: | |
| 961 | "range abs = (\<nat> :: int set)" | |
| 962 | proof - | |
| 963 | have "\<bar>k\<bar> \<in> \<nat>" for k :: int | |
| 964 | by (cases k) simp_all | |
| 965 | moreover have "k \<in> range abs" if "k \<in> \<nat>" for k :: int | |
| 966 | using that by induct simp | |
| 967 | ultimately show ?thesis by blast | |
| 61204 | 968 | qed | 
| 60570 | 969 | |
| 47207 
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
 huffman parents: 
47192diff
changeset | 970 | lemma Suc_nat_eq_nat_zadd1: "(0::int) <= z ==> Suc (nat z) = nat (1 + z)" | 
| 
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
 huffman parents: 
47192diff
changeset | 971 | apply (rule sym) | 
| 
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
 huffman parents: 
47192diff
changeset | 972 | apply (simp add: nat_eq_iff) | 
| 
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
 huffman parents: 
47192diff
changeset | 973 | done | 
| 
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
 huffman parents: 
47192diff
changeset | 974 | |
| 
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
 huffman parents: 
47192diff
changeset | 975 | lemma diff_nat_eq_if: | 
| 60162 | 976 | "nat z - nat z' = | 
| 977 | (if z' < 0 then nat z | |
| 978 | else let d = z-z' in | |
| 47207 
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
 huffman parents: 
47192diff
changeset | 979 | if d < 0 then 0 else nat d)" | 
| 
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
 huffman parents: 
47192diff
changeset | 980 | by (simp add: Let_def nat_diff_distrib [symmetric]) | 
| 
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
 huffman parents: 
47192diff
changeset | 981 | |
| 
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
 huffman parents: 
47192diff
changeset | 982 | lemma nat_numeral_diff_1 [simp]: | 
| 
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
 huffman parents: 
47192diff
changeset | 983 | "numeral v - (1::nat) = nat (numeral v - 1)" | 
| 
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
 huffman parents: 
47192diff
changeset | 984 | using diff_nat_numeral [of v Num.One] by simp | 
| 
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
 huffman parents: 
47192diff
changeset | 985 | |
| 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 | subsection "Induction principles for int" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 988 | |
| 60758 | 989 | text\<open>Well-founded segments of the integers\<close> | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 990 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 991 | definition | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 992 | int_ge_less_than :: "int => (int * int) set" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 993 | where | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 994 |   "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 | 995 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 996 | 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 | 997 | proof - | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 998 | 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 | 999 | by (auto simp add: int_ge_less_than_def) | 
| 60162 | 1000 | thus ?thesis | 
| 1001 | by (rule wf_subset [OF wf_measure]) | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1002 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1003 | |
| 60758 | 1004 | text\<open>This variant looks odd, but is typical of the relations suggested | 
| 1005 | by RankFinder.\<close> | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1006 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1007 | definition | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1008 | int_ge_less_than2 :: "int => (int * int) set" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1009 | where | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1010 |   "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 | 1011 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1012 | 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 | 1013 | proof - | 
| 60162 | 1014 | have "int_ge_less_than2 d \<subseteq> measure (%z. nat (1+z-d))" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1015 | by (auto simp add: int_ge_less_than2_def) | 
| 60162 | 1016 | thus ?thesis | 
| 1017 | by (rule wf_subset [OF wf_measure]) | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1018 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1019 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1020 | (* `set:int': dummy construction *) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1021 | theorem int_ge_induct [case_names base step, induct set: int]: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1022 | fixes i :: int | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1023 | assumes ge: "k \<le> i" and | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1024 | base: "P k" and | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1025 | 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 | 1026 | shows "P i" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1027 | proof - | 
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1028 |   { fix n
 | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1029 | 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 | 1030 | proof (induct n) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1031 | case 0 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1032 | hence "i = k" by arith | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1033 | thus "P i" using base by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1034 | next | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1035 | case (Suc n) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1036 | then have "n = nat((i - 1) - k)" by arith | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1037 | moreover | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1038 | have ki1: "k \<le> i - 1" using Suc.prems by arith | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1039 | ultimately | 
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1040 | have "P (i - 1)" by (rule Suc.hyps) | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1041 | from step [OF ki1 this] show ?case by simp | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1042 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1043 | } | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1044 | with ge show ?thesis by fast | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1045 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1046 | |
| 25928 | 1047 | (* `set:int': dummy construction *) | 
| 1048 | 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 | 1049 | assumes gr: "k < (i::int)" and | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1050 | base: "P(k+1)" and | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1051 | 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 | 1052 | shows "P i" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1053 | apply(rule int_ge_induct[of "k + 1"]) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1054 | using gr apply arith | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1055 | apply(rule base) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1056 | apply (rule step, simp+) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1057 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1058 | |
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1059 | theorem int_le_induct [consumes 1, case_names base step]: | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1060 | assumes le: "i \<le> (k::int)" and | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1061 | base: "P(k)" and | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1062 | 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 | 1063 | shows "P i" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1064 | proof - | 
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1065 |   { fix n
 | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1066 | 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 | 1067 | proof (induct n) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1068 | case 0 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1069 | hence "i = k" by arith | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1070 | thus "P i" using base by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1071 | next | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1072 | case (Suc n) | 
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1073 | hence "n = nat (k - (i + 1))" by arith | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1074 | moreover | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1075 | have ki1: "i + 1 \<le> k" using Suc.prems by arith | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1076 | ultimately | 
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1077 | have "P (i + 1)" by(rule Suc.hyps) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1078 | from step[OF ki1 this] show ?case by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1079 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1080 | } | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1081 | with le show ?thesis by fast | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1082 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1083 | |
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1084 | theorem int_less_induct [consumes 1, case_names base step]: | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1085 | assumes less: "(i::int) < k" and | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1086 | base: "P(k - 1)" and | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1087 | 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 | 1088 | shows "P i" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1089 | apply(rule int_le_induct[of _ "k - 1"]) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1090 | using less apply arith | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1091 | apply(rule base) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1092 | apply (rule step, simp+) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1093 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1094 | |
| 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 | 1095 | 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 | 1096 | fixes k :: int | 
| 
3560de0fe851
moved int induction lemma to theory Int as int_bidirectional_induct
 haftmann parents: 
36749diff
changeset | 1097 | assumes base: "P k" | 
| 
3560de0fe851
moved int induction lemma to theory Int as int_bidirectional_induct
 haftmann parents: 
36749diff
changeset | 1098 | 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 | 1099 | 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 | 1100 | shows "P i" | 
| 
3560de0fe851
moved int induction lemma to theory Int as int_bidirectional_induct
 haftmann parents: 
36749diff
changeset | 1101 | proof - | 
| 
3560de0fe851
moved int induction lemma to theory Int as int_bidirectional_induct
 haftmann parents: 
36749diff
changeset | 1102 | 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 | 1103 | then show ?thesis | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1104 | proof | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1105 | assume "i \<ge> k" | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1106 | then show ?thesis using base | 
| 36801 
3560de0fe851
moved int induction lemma to theory Int as int_bidirectional_induct
 haftmann parents: 
36749diff
changeset | 1107 | by (rule int_ge_induct) (fact step1) | 
| 
3560de0fe851
moved int induction lemma to theory Int as int_bidirectional_induct
 haftmann parents: 
36749diff
changeset | 1108 | next | 
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1109 | assume "i \<le> k" | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1110 | then show ?thesis using base | 
| 36801 
3560de0fe851
moved int induction lemma to theory Int as int_bidirectional_induct
 haftmann parents: 
36749diff
changeset | 1111 | by (rule int_le_induct) (fact step2) | 
| 
3560de0fe851
moved int induction lemma to theory Int as int_bidirectional_induct
 haftmann parents: 
36749diff
changeset | 1112 | qed | 
| 
3560de0fe851
moved int induction lemma to theory Int as int_bidirectional_induct
 haftmann parents: 
36749diff
changeset | 1113 | qed | 
| 
3560de0fe851
moved int induction lemma to theory Int as int_bidirectional_induct
 haftmann parents: 
36749diff
changeset | 1114 | |
| 60758 | 1115 | subsection\<open>Intermediate value theorems\<close> | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1116 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1117 | lemma int_val_lemma: | 
| 60162 | 1118 | "(\<forall>i<n::nat. abs(f(i+1) - f i) \<le> 1) --> | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1119 | 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 | 1120 | unfolding One_nat_def | 
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1121 | apply (induct n) | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1122 | apply simp | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1123 | apply (intro strip) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1124 | apply (erule impE, simp) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1125 | 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 | 1126 | apply (case_tac "k = f (Suc n)") | 
| 27106 | 1127 | apply force | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1128 | apply (erule impE) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1129 | apply (simp add: abs_if split add: split_if_asm) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1130 | apply (blast intro: le_SucI) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1131 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1132 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1133 | 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 | 1134 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1135 | lemma nat_intermed_int_val: | 
| 60162 | 1136 | "[| \<forall>i. m \<le> i & i < n --> abs(f(i + 1::nat) - f i) \<le> 1; m < n; | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1137 | f m \<le> k; k \<le> f n |] ==> ? i. m \<le> i & i \<le> n & f i = (k::int)" | 
| 60162 | 1138 | apply (cut_tac n = "n-m" and f = "%i. f (i+m) " and k = k | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1139 | 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 | 1140 | unfolding One_nat_def | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1141 | apply simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1142 | apply (erule exE) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1143 | apply (rule_tac x = "i+m" in exI, arith) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1144 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1145 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1146 | |
| 60758 | 1147 | subsection\<open>Products and 1, by T. M. Rasmussen\<close> | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1148 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1149 | 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 | 1150 | by arith | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1151 | |
| 34055 | 1152 | lemma abs_zmult_eq_1: | 
| 1153 | assumes mn: "\<bar>m * n\<bar> = 1" | |
| 1154 | shows "\<bar>m\<bar> = (1::int)" | |
| 1155 | proof - | |
| 1156 | have 0: "m \<noteq> 0 & n \<noteq> 0" using mn | |
| 1157 | by auto | |
| 1158 | have "~ (2 \<le> \<bar>m\<bar>)" | |
| 1159 | proof | |
| 1160 | assume "2 \<le> \<bar>m\<bar>" | |
| 1161 | hence "2*\<bar>n\<bar> \<le> \<bar>m\<bar>*\<bar>n\<bar>" | |
| 60162 | 1162 | by (simp add: mult_mono 0) | 
| 1163 | also have "... = \<bar>m*n\<bar>" | |
| 34055 | 1164 | by (simp add: abs_mult) | 
| 1165 | also have "... = 1" | |
| 1166 | by (simp add: mn) | |
| 1167 | finally have "2*\<bar>n\<bar> \<le> 1" . | |
| 1168 | thus "False" using 0 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1169 | by arith | 
| 34055 | 1170 | qed | 
| 1171 | thus ?thesis using 0 | |
| 1172 | by auto | |
| 1173 | qed | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1174 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1175 | 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 | 1176 | by (insert abs_zmult_eq_1 [of m n], arith) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1177 | |
| 35815 
10e723e54076
tuned proofs (to avoid linarith error message caused by bootstrapping of HOL)
 boehmes parents: 
35634diff
changeset | 1178 | lemma pos_zmult_eq_1_iff: | 
| 
10e723e54076
tuned proofs (to avoid linarith error message caused by bootstrapping of HOL)
 boehmes parents: 
35634diff
changeset | 1179 | 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 | 1180 | proof - | 
| 
10e723e54076
tuned proofs (to avoid linarith error message caused by bootstrapping of HOL)
 boehmes parents: 
35634diff
changeset | 1181 | 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 | 1182 | 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 | 1183 | qed | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1184 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1185 | lemma zmult_eq_1_iff: "(m*n = (1::int)) = ((m = 1 & n = 1) | (m = -1 & n = -1))" | 
| 60162 | 1186 | apply (rule iffI) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1187 | apply (frule pos_zmult_eq_1_iff_lemma) | 
| 60162 | 1188 | apply (simp add: mult.commute [of m]) | 
| 1189 | apply (frule pos_zmult_eq_1_iff_lemma, auto) | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1190 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1191 | |
| 33296 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 haftmann parents: 
33056diff
changeset | 1192 | lemma infinite_UNIV_int: "\<not> finite (UNIV::int set)" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1193 | proof | 
| 33296 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 haftmann parents: 
33056diff
changeset | 1194 | assume "finite (UNIV::int set)" | 
| 61076 | 1195 | moreover have "inj (\<lambda>i::int. 2 * i)" | 
| 33296 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 haftmann parents: 
33056diff
changeset | 1196 | by (rule injI) simp | 
| 61076 | 1197 | ultimately have "surj (\<lambda>i::int. 2 * i)" | 
| 33296 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 haftmann parents: 
33056diff
changeset | 1198 | by (rule finite_UNIV_inj_surj) | 
| 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 haftmann parents: 
33056diff
changeset | 1199 | 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 | 1200 | 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 | 1201 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1202 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1203 | |
| 60758 | 1204 | subsection \<open>Further theorems on numerals\<close> | 
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1205 | |
| 60758 | 1206 | subsubsection\<open>Special Simplification for Constants\<close> | 
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1207 | |
| 60758 | 1208 | text\<open>These distributive laws move literals inside sums and differences.\<close> | 
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1209 | |
| 49962 
a8cc904a6820
Renamed {left,right}_distrib to distrib_{right,left}.
 webertj parents: 
48891diff
changeset | 1210 | lemmas distrib_right_numeral [simp] = distrib_right [of _ _ "numeral v"] for v | 
| 
a8cc904a6820
Renamed {left,right}_distrib to distrib_{right,left}.
 webertj parents: 
48891diff
changeset | 1211 | lemmas distrib_left_numeral [simp] = distrib_left [of "numeral v"] for v | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1212 | lemmas left_diff_distrib_numeral [simp] = left_diff_distrib [of _ _ "numeral v"] for v | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1213 | lemmas right_diff_distrib_numeral [simp] = right_diff_distrib [of "numeral v"] for v | 
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1214 | |
| 60758 | 1215 | text\<open>These are actually for fields, like real: but where else to put them?\<close> | 
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1216 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1217 | lemmas zero_less_divide_iff_numeral [simp, no_atp] = zero_less_divide_iff [of "numeral w"] for w | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1218 | lemmas divide_less_0_iff_numeral [simp, no_atp] = divide_less_0_iff [of "numeral w"] for w | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1219 | lemmas zero_le_divide_iff_numeral [simp, no_atp] = zero_le_divide_iff [of "numeral w"] for w | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1220 | lemmas divide_le_0_iff_numeral [simp, no_atp] = divide_le_0_iff [of "numeral w"] for w | 
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1221 | |
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1222 | |
| 60758 | 1223 | text \<open>Replaces @{text "inverse #nn"} by @{text "1/#nn"}.  It looks
 | 
| 1224 | strange, but then other simprocs simplify the quotient.\<close> | |
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1225 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1226 | lemmas inverse_eq_divide_numeral [simp] = | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1227 | inverse_eq_divide [of "numeral w"] for w | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1228 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1229 | lemmas inverse_eq_divide_neg_numeral [simp] = | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1230 | inverse_eq_divide [of "- numeral w"] for w | 
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1231 | |
| 60758 | 1232 | text \<open>These laws simplify inequalities, moving unary minus from a term | 
| 1233 | into the literal.\<close> | |
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1234 | |
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1235 | lemmas equation_minus_iff_numeral [no_atp] = | 
| 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1236 | equation_minus_iff [of "numeral v"] for v | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1237 | |
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1238 | lemmas minus_equation_iff_numeral [no_atp] = | 
| 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1239 | minus_equation_iff [of _ "numeral v"] for v | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1240 | |
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1241 | lemmas le_minus_iff_numeral [no_atp] = | 
| 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1242 | le_minus_iff [of "numeral v"] for v | 
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1243 | |
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1244 | lemmas minus_le_iff_numeral [no_atp] = | 
| 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1245 | minus_le_iff [of _ "numeral v"] for v | 
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1246 | |
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1247 | lemmas less_minus_iff_numeral [no_atp] = | 
| 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1248 | less_minus_iff [of "numeral v"] for v | 
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1249 | |
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1250 | lemmas minus_less_iff_numeral [no_atp] = | 
| 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1251 | minus_less_iff [of _ "numeral v"] for v | 
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1252 | |
| 60758 | 1253 | -- \<open>FIXME maybe simproc\<close> | 
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1254 | |
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1255 | |
| 60758 | 1256 | text \<open>Cancellation of constant factors in comparisons (@{text "<"} and @{text "\<le>"})\<close>
 | 
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1257 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1258 | lemmas mult_less_cancel_left_numeral [simp, no_atp] = mult_less_cancel_left [of "numeral v"] for v | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1259 | lemmas mult_less_cancel_right_numeral [simp, no_atp] = mult_less_cancel_right [of _ "numeral v"] for v | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1260 | lemmas mult_le_cancel_left_numeral [simp, no_atp] = mult_le_cancel_left [of "numeral v"] for v | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1261 | lemmas mult_le_cancel_right_numeral [simp, no_atp] = mult_le_cancel_right [of _ "numeral v"] for v | 
| 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 | |
| 60758 | 1264 | text \<open>Multiplying out constant divisors in comparisons (@{text "<"}, @{text "\<le>"} and @{text "="})\<close>
 | 
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1265 | |
| 61738 
c4f6031f1310
New material about paths, winding numbers, etc. Added lemmas to divide_const_simps. Misc tuning.
 paulson <lp15@cam.ac.uk> parents: 
61694diff
changeset | 1266 | named_theorems divide_const_simps "simplification rules to simplify comparisons involving constant divisors" | 
| 
c4f6031f1310
New material about paths, winding numbers, etc. Added lemmas to divide_const_simps. Misc tuning.
 paulson <lp15@cam.ac.uk> parents: 
61694diff
changeset | 1267 | |
| 
c4f6031f1310
New material about paths, winding numbers, etc. Added lemmas to divide_const_simps. Misc tuning.
 paulson <lp15@cam.ac.uk> parents: 
61694diff
changeset | 1268 | lemmas le_divide_eq_numeral1 [simp,divide_const_simps] = | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1269 | pos_le_divide_eq [of "numeral w", OF zero_less_numeral] | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1270 | neg_le_divide_eq [of "- numeral w", OF neg_numeral_less_zero] for w | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1271 | |
| 61738 
c4f6031f1310
New material about paths, winding numbers, etc. Added lemmas to divide_const_simps. Misc tuning.
 paulson <lp15@cam.ac.uk> parents: 
61694diff
changeset | 1272 | lemmas divide_le_eq_numeral1 [simp,divide_const_simps] = | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1273 | pos_divide_le_eq [of "numeral w", OF zero_less_numeral] | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1274 | neg_divide_le_eq [of "- numeral w", OF neg_numeral_less_zero] for w | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1275 | |
| 61738 
c4f6031f1310
New material about paths, winding numbers, etc. Added lemmas to divide_const_simps. Misc tuning.
 paulson <lp15@cam.ac.uk> parents: 
61694diff
changeset | 1276 | lemmas less_divide_eq_numeral1 [simp,divide_const_simps] = | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1277 | pos_less_divide_eq [of "numeral w", OF zero_less_numeral] | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1278 | neg_less_divide_eq [of "- numeral w", OF neg_numeral_less_zero] for w | 
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1279 | |
| 61738 
c4f6031f1310
New material about paths, winding numbers, etc. Added lemmas to divide_const_simps. Misc tuning.
 paulson <lp15@cam.ac.uk> parents: 
61694diff
changeset | 1280 | lemmas divide_less_eq_numeral1 [simp,divide_const_simps] = | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1281 | pos_divide_less_eq [of "numeral w", OF zero_less_numeral] | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1282 | neg_divide_less_eq [of "- numeral w", OF neg_numeral_less_zero] for w | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1283 | |
| 61738 
c4f6031f1310
New material about paths, winding numbers, etc. Added lemmas to divide_const_simps. Misc tuning.
 paulson <lp15@cam.ac.uk> parents: 
61694diff
changeset | 1284 | lemmas eq_divide_eq_numeral1 [simp,divide_const_simps] = | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1285 | eq_divide_eq [of _ _ "numeral w"] | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1286 | eq_divide_eq [of _ _ "- numeral w"] for w | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1287 | |
| 61738 
c4f6031f1310
New material about paths, winding numbers, etc. Added lemmas to divide_const_simps. Misc tuning.
 paulson <lp15@cam.ac.uk> parents: 
61694diff
changeset | 1288 | lemmas divide_eq_eq_numeral1 [simp,divide_const_simps] = | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1289 | divide_eq_eq [of _ "numeral w"] | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1290 | divide_eq_eq [of _ "- numeral w"] for w | 
| 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1291 | |
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1292 | |
| 60758 | 1293 | subsubsection\<open>Optional Simplification Rules Involving Constants\<close> | 
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1294 | |
| 60758 | 1295 | text\<open>Simplify quotients that are compared with a literal constant.\<close> | 
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1296 | |
| 61738 
c4f6031f1310
New material about paths, winding numbers, etc. Added lemmas to divide_const_simps. Misc tuning.
 paulson <lp15@cam.ac.uk> parents: 
61694diff
changeset | 1297 | lemmas le_divide_eq_numeral [divide_const_simps] = | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1298 | le_divide_eq [of "numeral w"] | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1299 | le_divide_eq [of "- numeral w"] for w | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1300 | |
| 61738 
c4f6031f1310
New material about paths, winding numbers, etc. Added lemmas to divide_const_simps. Misc tuning.
 paulson <lp15@cam.ac.uk> parents: 
61694diff
changeset | 1301 | lemmas divide_le_eq_numeral [divide_const_simps] = | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1302 | divide_le_eq [of _ _ "numeral w"] | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1303 | divide_le_eq [of _ _ "- numeral w"] for w | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1304 | |
| 61738 
c4f6031f1310
New material about paths, winding numbers, etc. Added lemmas to divide_const_simps. Misc tuning.
 paulson <lp15@cam.ac.uk> parents: 
61694diff
changeset | 1305 | lemmas less_divide_eq_numeral [divide_const_simps] = | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1306 | less_divide_eq [of "numeral w"] | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1307 | less_divide_eq [of "- numeral w"] for w | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1308 | |
| 61738 
c4f6031f1310
New material about paths, winding numbers, etc. Added lemmas to divide_const_simps. Misc tuning.
 paulson <lp15@cam.ac.uk> parents: 
61694diff
changeset | 1309 | lemmas divide_less_eq_numeral [divide_const_simps] = | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1310 | divide_less_eq [of _ _ "numeral w"] | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1311 | divide_less_eq [of _ _ "- numeral w"] for w | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1312 | |
| 61738 
c4f6031f1310
New material about paths, winding numbers, etc. Added lemmas to divide_const_simps. Misc tuning.
 paulson <lp15@cam.ac.uk> parents: 
61694diff
changeset | 1313 | lemmas eq_divide_eq_numeral [divide_const_simps] = | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1314 | eq_divide_eq [of "numeral w"] | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1315 | eq_divide_eq [of "- numeral w"] for w | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1316 | |
| 61738 
c4f6031f1310
New material about paths, winding numbers, etc. Added lemmas to divide_const_simps. Misc tuning.
 paulson <lp15@cam.ac.uk> parents: 
61694diff
changeset | 1317 | lemmas divide_eq_eq_numeral [divide_const_simps] = | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1318 | divide_eq_eq [of _ _ "numeral w"] | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1319 | divide_eq_eq [of _ _ "- numeral w"] for w | 
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1320 | |
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1321 | |
| 60758 | 1322 | text\<open>Not good as automatic simprules because they cause case splits.\<close> | 
| 61738 
c4f6031f1310
New material about paths, winding numbers, etc. Added lemmas to divide_const_simps. Misc tuning.
 paulson <lp15@cam.ac.uk> parents: 
61694diff
changeset | 1323 | lemmas [divide_const_simps] = le_divide_eq_1 divide_le_eq_1 less_divide_eq_1 divide_less_eq_1 | 
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1324 | |
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1325 | |
| 60758 | 1326 | subsection \<open>The divides relation\<close> | 
| 33320 | 1327 | |
| 33657 | 1328 | lemma zdvd_antisym_nonneg: | 
| 1329 | "0 <= m ==> 0 <= n ==> m dvd n ==> n dvd m ==> m = (n::int)" | |
| 33320 | 1330 | apply (simp add: dvd_def, auto) | 
| 57512 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 haftmann parents: 
56889diff
changeset | 1331 | apply (auto simp add: mult.assoc zero_le_mult_iff zmult_eq_1_iff) | 
| 33320 | 1332 | done | 
| 1333 | ||
| 60162 | 1334 | lemma zdvd_antisym_abs: assumes "(a::int) dvd b" and "b dvd a" | 
| 33320 | 1335 | shows "\<bar>a\<bar> = \<bar>b\<bar>" | 
| 33657 | 1336 | proof cases | 
| 1337 | assume "a = 0" with assms show ?thesis by simp | |
| 1338 | next | |
| 1339 | assume "a \<noteq> 0" | |
| 60758 | 1340 | from \<open>a dvd b\<close> obtain k where k:"b = a*k" unfolding dvd_def by blast | 
| 1341 | from \<open>b dvd a\<close> obtain k' where k':"a = b*k'" unfolding dvd_def by blast | |
| 33320 | 1342 | from k k' have "a = a*k*k'" by simp | 
| 1343 | with mult_cancel_left1[where c="a" and b="k*k'"] | |
| 60758 | 1344 | have kk':"k*k' = 1" using \<open>a\<noteq>0\<close> by (simp add: mult.assoc) | 
| 33320 | 1345 | hence "k = 1 \<and> k' = 1 \<or> k = -1 \<and> k' = -1" by (simp add: zmult_eq_1_iff) | 
| 1346 | thus ?thesis using k k' by auto | |
| 1347 | qed | |
| 1348 | ||
| 1349 | lemma zdvd_zdiffD: "k dvd m - n ==> k dvd n ==> k dvd (m::int)" | |
| 60162 | 1350 | using dvd_add_right_iff [of k "- n" m] by simp | 
| 33320 | 1351 | |
| 1352 | lemma zdvd_reduce: "(k dvd n + k * m) = (k dvd (n::int))" | |
| 58649 
a62065b5e1e2
generalized and consolidated some theorems concerning divisibility
 haftmann parents: 
58512diff
changeset | 1353 | using dvd_add_times_triv_right_iff [of k n m] by (simp add: ac_simps) | 
| 33320 | 1354 | |
| 1355 | lemma dvd_imp_le_int: | |
| 1356 | fixes d i :: int | |
| 1357 | assumes "i \<noteq> 0" and "d dvd i" | |
| 1358 | shows "\<bar>d\<bar> \<le> \<bar>i\<bar>" | |
| 1359 | proof - | |
| 60758 | 1360 | from \<open>d dvd i\<close> obtain k where "i = d * k" .. | 
| 1361 | with \<open>i \<noteq> 0\<close> have "k \<noteq> 0" by auto | |
| 33320 | 1362 | then have "1 \<le> \<bar>k\<bar>" and "0 \<le> \<bar>d\<bar>" by auto | 
| 1363 | then have "\<bar>d\<bar> * 1 \<le> \<bar>d\<bar> * \<bar>k\<bar>" by (rule mult_left_mono) | |
| 60758 | 1364 | with \<open>i = d * k\<close> show ?thesis by (simp add: abs_mult) | 
| 33320 | 1365 | qed | 
| 1366 | ||
| 1367 | lemma zdvd_not_zless: | |
| 1368 | fixes m n :: int | |
| 1369 | assumes "0 < m" and "m < n" | |
| 1370 | shows "\<not> n dvd m" | |
| 1371 | proof | |
| 1372 | from assms have "0 < n" by auto | |
| 1373 | assume "n dvd m" then obtain k where k: "m = n * k" .. | |
| 60758 | 1374 | with \<open>0 < m\<close> have "0 < n * k" by auto | 
| 1375 | with \<open>0 < n\<close> have "0 < k" by (simp add: zero_less_mult_iff) | |
| 1376 | with k \<open>0 < n\<close> \<open>m < n\<close> have "n * k < n * 1" by simp | |
| 1377 | with \<open>0 < n\<close> \<open>0 < k\<close> show False unfolding mult_less_cancel_left by auto | |
| 33320 | 1378 | qed | 
| 1379 | ||
| 1380 | lemma zdvd_mult_cancel: assumes d:"k * m dvd k * n" and kz:"k \<noteq> (0::int)" | |
| 1381 | shows "m dvd n" | |
| 1382 | proof- | |
| 1383 | from d obtain h where h: "k*n = k*m * h" unfolding dvd_def by blast | |
| 1384 |   {assume "n \<noteq> m*h" hence "k* n \<noteq> k* (m*h)" using kz by simp
 | |
| 57512 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 haftmann parents: 
56889diff
changeset | 1385 | with h have False by (simp add: mult.assoc)} | 
| 33320 | 1386 | hence "n = m * h" by blast | 
| 1387 | thus ?thesis by simp | |
| 1388 | qed | |
| 1389 | ||
| 1390 | theorem zdvd_int: "(x dvd y) = (int x dvd int y)" | |
| 1391 | proof - | |
| 1392 | have "\<And>k. int y = int x * k \<Longrightarrow> x dvd y" | |
| 1393 | proof - | |
| 1394 | fix k | |
| 1395 | assume A: "int y = int x * k" | |
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1396 | then show "x dvd y" | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1397 | proof (cases k) | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1398 | case (nonneg n) | 
| 61649 
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
 paulson <lp15@cam.ac.uk> parents: 
61609diff
changeset | 1399 | with A have "y = x * n" by (simp del: of_nat_mult add: of_nat_mult [symmetric]) | 
| 33320 | 1400 | then show ?thesis .. | 
| 1401 | next | |
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1402 | case (neg n) | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1403 | with A have "int y = int x * (- int (Suc n))" by simp | 
| 33320 | 1404 | also have "\<dots> = - (int x * int (Suc n))" by (simp only: mult_minus_right) | 
| 1405 | also have "\<dots> = - int (x * Suc n)" by (simp only: of_nat_mult [symmetric]) | |
| 1406 | finally have "- int (x * Suc n) = int y" .. | |
| 1407 | then show ?thesis by (simp only: negative_eq_positive) auto | |
| 1408 | qed | |
| 1409 | qed | |
| 1410 | then show ?thesis by (auto elim!: dvdE simp only: dvd_triv_left of_nat_mult) | |
| 1411 | qed | |
| 1412 | ||
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1413 | lemma zdvd1_eq[simp]: "(x::int) dvd 1 = (\<bar>x\<bar> = 1)" | 
| 33320 | 1414 | proof | 
| 1415 | assume d: "x dvd 1" hence "int (nat \<bar>x\<bar>) dvd int (nat 1)" by simp | |
| 1416 | hence "nat \<bar>x\<bar> dvd 1" by (simp add: zdvd_int) | |
| 1417 | hence "nat \<bar>x\<bar> = 1" by simp | |
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1418 | thus "\<bar>x\<bar> = 1" by (cases "x < 0") auto | 
| 33320 | 1419 | next | 
| 1420 | assume "\<bar>x\<bar>=1" | |
| 1421 | then have "x = 1 \<or> x = -1" by auto | |
| 1422 | then show "x dvd 1" by (auto intro: dvdI) | |
| 1423 | qed | |
| 1424 | ||
| 60162 | 1425 | lemma zdvd_mult_cancel1: | 
| 33320 | 1426 | assumes mp:"m \<noteq>(0::int)" shows "(m * n dvd m) = (\<bar>n\<bar> = 1)" | 
| 1427 | proof | |
| 60162 | 1428 | 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 | 1429 | by (cases "n >0") (auto simp add: minus_equation_iff) | 
| 33320 | 1430 | next | 
| 1431 | assume H: "m * n dvd m" hence H2: "m * n dvd m * 1" by simp | |
| 1432 | from zdvd_mult_cancel[OF H2 mp] show "\<bar>n\<bar> = 1" by (simp only: zdvd1_eq) | |
| 1433 | qed | |
| 1434 | ||
| 1435 | lemma int_dvd_iff: "(int m dvd z) = (m dvd nat (abs z))" | |
| 1436 | unfolding zdvd_int by (cases "z \<ge> 0") simp_all | |
| 1437 | ||
| 1438 | lemma dvd_int_iff: "(z dvd int m) = (nat (abs z) dvd m)" | |
| 1439 | unfolding zdvd_int by (cases "z \<ge> 0") simp_all | |
| 1440 | ||
| 58650 | 1441 | lemma dvd_int_unfold_dvd_nat: | 
| 1442 | "k dvd l \<longleftrightarrow> nat \<bar>k\<bar> dvd nat \<bar>l\<bar>" | |
| 1443 | unfolding dvd_int_iff [symmetric] by simp | |
| 1444 | ||
| 33320 | 1445 | lemma nat_dvd_iff: "(nat z dvd m) = (if 0 \<le> z then (z dvd int m) else m = 0)" | 
| 1446 | by (auto simp add: dvd_int_iff) | |
| 1447 | ||
| 33341 | 1448 | lemma eq_nat_nat_iff: | 
| 1449 | "0 \<le> z \<Longrightarrow> 0 \<le> z' \<Longrightarrow> nat z = nat z' \<longleftrightarrow> z = z'" | |
| 1450 | by (auto elim!: nonneg_eq_int) | |
| 1451 | ||
| 1452 | lemma nat_power_eq: | |
| 1453 | "0 \<le> z \<Longrightarrow> nat (z ^ n) = nat z ^ n" | |
| 1454 | by (induct n) (simp_all add: nat_mult_distrib) | |
| 1455 | ||
| 33320 | 1456 | 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 | 1457 | apply (cases n) | 
| 33320 | 1458 | apply (auto simp add: dvd_int_iff) | 
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1459 | apply (cases z) | 
| 33320 | 1460 | apply (auto simp add: dvd_imp_le) | 
| 1461 | done | |
| 1462 | ||
| 36749 | 1463 | lemma zdvd_period: | 
| 1464 | fixes a d :: int | |
| 1465 | assumes "a dvd d" | |
| 1466 | shows "a dvd (x + t) \<longleftrightarrow> a dvd ((x + c * d) + t)" | |
| 1467 | proof - | |
| 1468 | 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 | 1469 | show ?thesis | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1470 | proof | 
| 36749 | 1471 | assume "a dvd (x + t)" | 
| 1472 | then obtain l where "x + t = a * l" by (rule dvdE) | |
| 1473 | then have "x = a * l - t" by simp | |
| 60758 | 1474 | with \<open>d = a * k\<close> show "a dvd x + c * d + t" by simp | 
| 36749 | 1475 | next | 
| 1476 | assume "a dvd x + c * d + t" | |
| 1477 | then obtain l where "x + c * d + t = a * l" by (rule dvdE) | |
| 1478 | then have "x = a * l - c * d - t" by simp | |
| 60758 | 1479 | with \<open>d = a * k\<close> show "a dvd (x + t)" by simp | 
| 36749 | 1480 | qed | 
| 1481 | qed | |
| 1482 | ||
| 33320 | 1483 | |
| 60758 | 1484 | subsection \<open>Finiteness of intervals\<close> | 
| 46756 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 1485 | |
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 1486 | 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 | 1487 | proof (cases "a <= b") | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 1488 | case True | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 1489 | from this show ?thesis | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 1490 | 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 | 1491 | case base | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 1492 |     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 | 1493 | from this show ?case by simp | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 1494 | next | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 1495 | case (step b) | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 1496 |     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 | 1497 | 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 | 1498 | qed | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 1499 | next | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 1500 | case False from this show ?thesis | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 1501 | 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 | 1502 | qed | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 1503 | |
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 1504 | 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 | 1505 | 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 | 1506 | |
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 1507 | 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 | 1508 | 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 | 1509 | |
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 1510 | 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 | 1511 | 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 | 1512 | |
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 1513 | |
| 60758 | 1514 | subsection \<open>Configuration of the code generator\<close> | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1515 | |
| 60758 | 1516 | text \<open>Constructors\<close> | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1517 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1518 | definition Pos :: "num \<Rightarrow> int" where | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1519 | [simp, code_abbrev]: "Pos = numeral" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1520 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1521 | definition Neg :: "num \<Rightarrow> int" where | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1522 | [simp, code_abbrev]: "Neg n = - (Pos n)" | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1523 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1524 | code_datatype "0::int" Pos Neg | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1525 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1526 | |
| 60758 | 1527 | text \<open>Auxiliary operations\<close> | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1528 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1529 | definition dup :: "int \<Rightarrow> int" where | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1530 | [simp]: "dup k = k + k" | 
| 26507 | 1531 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1532 | lemma dup_code [code]: | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1533 | "dup 0 = 0" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1534 | "dup (Pos n) = Pos (Num.Bit0 n)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1535 | "dup (Neg n) = Neg (Num.Bit0 n)" | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1536 | unfolding Pos_def Neg_def | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1537 | by (simp_all add: numeral_Bit0) | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1538 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1539 | definition sub :: "num \<Rightarrow> num \<Rightarrow> int" where | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1540 | [simp]: "sub m n = numeral m - numeral n" | 
| 26507 | 1541 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1542 | lemma sub_code [code]: | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1543 | "sub Num.One Num.One = 0" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1544 | "sub (Num.Bit0 m) Num.One = Pos (Num.BitM m)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1545 | "sub (Num.Bit1 m) Num.One = Pos (Num.Bit0 m)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1546 | "sub Num.One (Num.Bit0 n) = Neg (Num.BitM n)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1547 | "sub Num.One (Num.Bit1 n) = Neg (Num.Bit0 n)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1548 | "sub (Num.Bit0 m) (Num.Bit0 n) = dup (sub m n)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1549 | "sub (Num.Bit1 m) (Num.Bit1 n) = dup (sub m n)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1550 | "sub (Num.Bit1 m) (Num.Bit0 n) = dup (sub m n) + 1" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1551 | "sub (Num.Bit0 m) (Num.Bit1 n) = dup (sub m n) - 1" | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1552 | apply (simp_all only: sub_def dup_def numeral.simps Pos_def Neg_def numeral_BitM) | 
| 54230 
b1d955791529
more simplification rules on unary and binary minus
 haftmann parents: 
54223diff
changeset | 1553 | apply (simp_all only: algebra_simps minus_diff_eq) | 
| 
b1d955791529
more simplification rules on unary and binary minus
 haftmann parents: 
54223diff
changeset | 1554 | apply (simp_all only: add.commute [of _ "- (numeral n + numeral n)"]) | 
| 
b1d955791529
more simplification rules on unary and binary minus
 haftmann parents: 
54223diff
changeset | 1555 | apply (simp_all only: minus_add add.assoc left_minus) | 
| 
b1d955791529
more simplification rules on unary and binary minus
 haftmann parents: 
54223diff
changeset | 1556 | done | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1557 | |
| 60758 | 1558 | text \<open>Implementations\<close> | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1559 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1560 | lemma one_int_code [code, code_unfold]: | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1561 | "1 = Pos Num.One" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1562 | by simp | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1563 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1564 | lemma plus_int_code [code]: | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1565 | "k + 0 = (k::int)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1566 | "0 + l = (l::int)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1567 | "Pos m + Pos n = Pos (m + n)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1568 | "Pos m + Neg n = sub m n" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1569 | "Neg m + Pos n = sub n m" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1570 | "Neg m + Neg n = Neg (m + n)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1571 | by simp_all | 
| 26507 | 1572 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1573 | lemma uminus_int_code [code]: | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1574 | "uminus 0 = (0::int)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1575 | "uminus (Pos m) = Neg m" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1576 | "uminus (Neg m) = Pos m" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1577 | by simp_all | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1578 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1579 | lemma minus_int_code [code]: | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1580 | "k - 0 = (k::int)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1581 | "0 - l = uminus (l::int)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1582 | "Pos m - Pos n = sub m n" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1583 | "Pos m - Neg n = Pos (m + n)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1584 | "Neg m - Pos n = Neg (m + n)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1585 | "Neg m - Neg n = sub n m" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1586 | by simp_all | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1587 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1588 | lemma times_int_code [code]: | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1589 | "k * 0 = (0::int)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1590 | "0 * l = (0::int)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1591 | "Pos m * Pos n = Pos (m * n)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1592 | "Pos m * Neg n = Neg (m * n)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1593 | "Neg m * Pos n = Neg (m * n)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1594 | "Neg m * Neg n = Pos (m * n)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1595 | by simp_all | 
| 26507 | 1596 | |
| 38857 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
37887diff
changeset | 1597 | instantiation int :: equal | 
| 26507 | 1598 | begin | 
| 1599 | ||
| 37767 | 1600 | definition | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1601 | "HOL.equal k l \<longleftrightarrow> k = (l::int)" | 
| 38857 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
37887diff
changeset | 1602 | |
| 61169 | 1603 | instance | 
| 1604 | by standard (rule equal_int_def) | |
| 26507 | 1605 | |
| 1606 | end | |
| 1607 | ||
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1608 | lemma equal_int_code [code]: | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1609 | "HOL.equal 0 (0::int) \<longleftrightarrow> True" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1610 | "HOL.equal 0 (Pos l) \<longleftrightarrow> False" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1611 | "HOL.equal 0 (Neg l) \<longleftrightarrow> False" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1612 | "HOL.equal (Pos k) 0 \<longleftrightarrow> False" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1613 | "HOL.equal (Pos k) (Pos l) \<longleftrightarrow> HOL.equal k l" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1614 | "HOL.equal (Pos k) (Neg l) \<longleftrightarrow> False" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1615 | "HOL.equal (Neg k) 0 \<longleftrightarrow> False" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1616 | "HOL.equal (Neg k) (Pos l) \<longleftrightarrow> False" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1617 | "HOL.equal (Neg k) (Neg l) \<longleftrightarrow> HOL.equal k l" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1618 | by (auto simp add: equal) | 
| 26507 | 1619 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1620 | lemma equal_int_refl [code nbe]: | 
| 38857 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
37887diff
changeset | 1621 | "HOL.equal (k::int) k \<longleftrightarrow> True" | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1622 | by (fact equal_refl) | 
| 26507 | 1623 | |
| 28562 | 1624 | lemma less_eq_int_code [code]: | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1625 | "0 \<le> (0::int) \<longleftrightarrow> True" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1626 | "0 \<le> Pos l \<longleftrightarrow> True" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1627 | "0 \<le> Neg l \<longleftrightarrow> False" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1628 | "Pos k \<le> 0 \<longleftrightarrow> False" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1629 | "Pos k \<le> Pos l \<longleftrightarrow> k \<le> l" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1630 | "Pos k \<le> Neg l \<longleftrightarrow> False" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1631 | "Neg k \<le> 0 \<longleftrightarrow> True" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1632 | "Neg k \<le> Pos l \<longleftrightarrow> True" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1633 | "Neg k \<le> Neg l \<longleftrightarrow> l \<le> k" | 
| 28958 | 1634 | by simp_all | 
| 26507 | 1635 | |
| 28562 | 1636 | lemma less_int_code [code]: | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1637 | "0 < (0::int) \<longleftrightarrow> False" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1638 | "0 < Pos l \<longleftrightarrow> True" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1639 | "0 < Neg l \<longleftrightarrow> False" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1640 | "Pos k < 0 \<longleftrightarrow> False" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1641 | "Pos k < Pos l \<longleftrightarrow> k < l" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1642 | "Pos k < Neg l \<longleftrightarrow> False" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1643 | "Neg k < 0 \<longleftrightarrow> True" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1644 | "Neg k < Pos l \<longleftrightarrow> True" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1645 | "Neg k < Neg l \<longleftrightarrow> l < k" | 
| 28958 | 1646 | by simp_all | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1647 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1648 | lemma nat_code [code]: | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1649 | "nat (Int.Neg k) = 0" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1650 | "nat 0 = 0" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1651 | "nat (Int.Pos k) = nat_of_num k" | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1652 | by (simp_all add: nat_of_num_numeral) | 
| 25928 | 1653 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1654 | lemma (in ring_1) of_int_code [code]: | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1655 | "of_int (Int.Neg k) = - numeral k" | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1656 | "of_int 0 = 0" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1657 | "of_int (Int.Pos k) = numeral k" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1658 | by simp_all | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1659 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1660 | |
| 60758 | 1661 | text \<open>Serializer setup\<close> | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1662 | |
| 52435 
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
 haftmann parents: 
51994diff
changeset | 1663 | code_identifier | 
| 
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
 haftmann parents: 
51994diff
changeset | 1664 | code_module Int \<rightharpoonup> (SML) Arith and (OCaml) Arith and (Haskell) Arith | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1665 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1666 | quickcheck_params [default_type = int] | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1667 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1668 | hide_const (open) Pos Neg sub dup | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1669 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1670 | |
| 60758 | 1671 | subsection \<open>Legacy theorems\<close> | 
| 25919 
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 | lemmas inj_int = inj_of_nat [where 'a=int] | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1674 | lemmas zadd_int = of_nat_add [where 'a=int, symmetric] | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1675 | lemmas int_mult = of_nat_mult [where 'a=int] | 
| 45607 | 1676 | 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 | 1677 | lemmas zless_int = of_nat_less_iff [where 'a=int] | 
| 45607 | 1678 | 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 | 1679 | 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 | 1680 | lemmas zero_zle_int = of_nat_0_le_iff [where 'a=int] | 
| 45607 | 1681 | 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 | 1682 | lemmas int_0 = of_nat_0 [where 'a=int] | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1683 | lemmas int_1 = of_nat_1 [where 'a=int] | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1684 | lemmas int_Suc = of_nat_Suc [where 'a=int] | 
| 47207 
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
 huffman parents: 
47192diff
changeset | 1685 | lemmas int_numeral = of_nat_numeral [where 'a=int] | 
| 45607 | 1686 | 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 | 1687 | 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 | 1688 | lemmas zdiff_int = of_nat_diff [where 'a=int, symmetric] | 
| 47255 
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
 huffman parents: 
47228diff
changeset | 1689 | lemmas zpower_numeral_even = power_numeral_even [where 'a=int] | 
| 
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
 huffman parents: 
47228diff
changeset | 1690 | lemmas zpower_numeral_odd = power_numeral_odd [where 'a=int] | 
| 30960 | 1691 | |
| 60758 | 1692 | text \<open>De-register @{text "int"} as a quotient type:\<close>
 | 
| 48045 | 1693 | |
| 53652 
18fbca265e2e
use lifting_forget for deregistering numeric types as a quotient type
 kuncar parents: 
53065diff
changeset | 1694 | lifting_update int.lifting | 
| 
18fbca265e2e
use lifting_forget for deregistering numeric types as a quotient type
 kuncar parents: 
53065diff
changeset | 1695 | lifting_forget int.lifting | 
| 48045 | 1696 | |
| 60758 | 1697 | text\<open>Also the class for fields with characteristic zero.\<close> | 
| 59667 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59613diff
changeset | 1698 | class field_char_0 = field + ring_char_0 | 
| 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59613diff
changeset | 1699 | subclass (in linordered_field) field_char_0 .. | 
| 
651ea265d568
Removal of the file HOL/Number_Theory/Binomial!! And class field_char_0 now declared in Int.thy
 paulson <lp15@cam.ac.uk> parents: 
59613diff
changeset | 1700 | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1701 | end |