| author | blanchet | 
| Mon, 05 Jan 2015 11:00:12 +0100 | |
| changeset 59282 | c5f6e2c4472c | 
| parent 59000 | 6eb0725503fc | 
| child 59536 | 03bde055a1a0 | 
| 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 | |
| 58889 | 6 | section {* The Integers as Equivalence Classes over Pairs of Natural Numbers *} 
 | 
| 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 | |
| 48045 | 12 | subsection {* Definition of integers as a quotient type *}
 | 
| 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 | ||
| 35 | subsection {* Integers form a commutative ring *}
 | |
| 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 | 
| 69 | by default (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 | ||
| 88 | subsection {* Integers are totally ordered *}
 | |
| 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 | |
| 102 | by default (transfer, force)+ | |
| 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 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 110 | "(inf \<Colon> int \<Rightarrow> int \<Rightarrow> int) = min" | 
| 
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 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 113 | "(sup \<Colon> int \<Rightarrow> int \<Rightarrow> int) = max" | 
| 
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 | |
| 48045 | 121 | subsection {* Ordering properties of arithmetic operations *}
 | 
| 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 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 130 | text{*Strict Monotonicity of Multiplication*}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 131 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 132 | text{*strict, in 1st argument; proof is by induction on k>0*}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 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 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 159 | text{*The integers form an ordered integral domain*}
 | 
| 48045 | 160 | instantiation int :: linordered_idom | 
| 161 | begin | |
| 162 | ||
| 163 | definition | |
| 164 | zabs_def: "\<bar>i\<Colon>int\<bar> = (if i < 0 then - i else i)" | |
| 165 | ||
| 166 | definition | |
| 167 | zsgn_def: "sgn (i\<Colon>int) = (if i=0 then 0 else if 0<i then 1 else - 1)" | |
| 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) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 175 | show "sgn (i\<Colon>int) = (if i=0 then 0 else if 0<i then 1 else - 1)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 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 | ||
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 181 | lemma zless_imp_add1_zle: "w < z \<Longrightarrow> w + (1\<Colon>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: | 
| 44709 | 185 | "(w \<Colon> 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 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 201 | subsection {* Embedding of the Integers into any @{text ring_1}: @{text of_int}*}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 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 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 228 | text{*Collapse nested embeddings*}
 | 
| 44709 | 229 | lemma of_int_of_nat_eq [simp]: "of_int (int n) = of_nat n" | 
| 29667 | 230 | by (induct n) auto | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 231 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 232 | 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 | 233 | 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 | 234 | |
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 235 | 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 | 236 | by simp | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 237 | |
| 31015 | 238 | lemma of_int_power: | 
| 239 | "of_int (z ^ n) = of_int z ^ n" | |
| 240 | by (induct n) simp_all | |
| 241 | ||
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 242 | end | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 243 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 244 | context ring_char_0 | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 245 | begin | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 246 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 247 | lemma of_int_eq_iff [simp]: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 248 | "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 | 249 | 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 | 250 | of_nat_add [symmetric] simp del: of_nat_add) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 251 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 252 | text{*Special cases where either operand is zero*}
 | 
| 36424 | 253 | lemma of_int_eq_0_iff [simp]: | 
| 254 | "of_int z = 0 \<longleftrightarrow> z = 0" | |
| 255 | using of_int_eq_iff [of z 0] by simp | |
| 256 | ||
| 257 | lemma of_int_0_eq_iff [simp]: | |
| 258 | "0 = of_int z \<longleftrightarrow> z = 0" | |
| 259 | using of_int_eq_iff [of 0 z] by simp | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 260 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 261 | end | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 262 | |
| 36424 | 263 | context linordered_idom | 
| 264 | begin | |
| 265 | ||
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34055diff
changeset | 266 | text{*Every @{text linordered_idom} has characteristic zero.*}
 | 
| 36424 | 267 | subclass ring_char_0 .. | 
| 268 | ||
| 269 | lemma of_int_le_iff [simp]: | |
| 270 | "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 | 271 | 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 | 272 | of_nat_add [symmetric] simp del: of_nat_add) | 
| 36424 | 273 | |
| 274 | lemma of_int_less_iff [simp]: | |
| 275 | "of_int w < of_int z \<longleftrightarrow> w < z" | |
| 276 | by (simp add: less_le order_less_le) | |
| 277 | ||
| 278 | lemma of_int_0_le_iff [simp]: | |
| 279 | "0 \<le> of_int z \<longleftrightarrow> 0 \<le> z" | |
| 280 | using of_int_le_iff [of 0 z] by simp | |
| 281 | ||
| 282 | lemma of_int_le_0_iff [simp]: | |
| 283 | "of_int z \<le> 0 \<longleftrightarrow> z \<le> 0" | |
| 284 | using of_int_le_iff [of z 0] by simp | |
| 285 | ||
| 286 | lemma of_int_0_less_iff [simp]: | |
| 287 | "0 < of_int z \<longleftrightarrow> 0 < z" | |
| 288 | using of_int_less_iff [of 0 z] by simp | |
| 289 | ||
| 290 | lemma of_int_less_0_iff [simp]: | |
| 291 | "of_int z < 0 \<longleftrightarrow> z < 0" | |
| 292 | using of_int_less_iff [of z 0] by simp | |
| 293 | ||
| 294 | end | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 295 | |
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56525diff
changeset | 296 | 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 | 297 | "(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 | 298 | 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 | 299 | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 300 | lemma of_int_eq_id [simp]: "of_int = id" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 301 | proof | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 302 | fix z show "of_int z = id z" | 
| 48045 | 303 | by (cases z rule: int_diff_cases, simp) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 304 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 305 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 306 | |
| 51329 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 hoelzl parents: 
51185diff
changeset | 307 | instance int :: no_top | 
| 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 hoelzl parents: 
51185diff
changeset | 308 | apply default | 
| 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 hoelzl parents: 
51185diff
changeset | 309 | apply (rule_tac x="x + 1" in exI) | 
| 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 hoelzl parents: 
51185diff
changeset | 310 | apply simp | 
| 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 hoelzl parents: 
51185diff
changeset | 311 | done | 
| 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 hoelzl parents: 
51185diff
changeset | 312 | |
| 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 hoelzl parents: 
51185diff
changeset | 313 | instance int :: no_bot | 
| 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 hoelzl parents: 
51185diff
changeset | 314 | apply default | 
| 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 hoelzl parents: 
51185diff
changeset | 315 | apply (rule_tac x="x - 1" in exI) | 
| 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 hoelzl parents: 
51185diff
changeset | 316 | apply simp | 
| 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 hoelzl parents: 
51185diff
changeset | 317 | done | 
| 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 hoelzl parents: 
51185diff
changeset | 318 | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 319 | subsection {* Magnitude of an Integer, as a Natural Number: @{text nat} *}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 320 | |
| 48045 | 321 | lift_definition nat :: "int \<Rightarrow> nat" is "\<lambda>(x, y). x - y" | 
| 322 | by auto | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 323 | |
| 44709 | 324 | lemma nat_int [simp]: "nat (int n) = n" | 
| 48045 | 325 | by transfer simp | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 326 | |
| 44709 | 327 | lemma int_nat_eq [simp]: "int (nat z) = (if 0 \<le> z then z else 0)" | 
| 48045 | 328 | by transfer clarsimp | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 329 | |
| 44709 | 330 | 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 | 331 | by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 332 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 333 | lemma nat_le_0 [simp]: "z \<le> 0 ==> nat z = 0" | 
| 48045 | 334 | by transfer clarsimp | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 335 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 336 | lemma nat_le_eq_zle: "0 < w | 0 \<le> z ==> (nat w \<le> nat z) = (w\<le>z)" | 
| 48045 | 337 | by transfer (clarsimp, arith) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 338 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 339 | text{*An alternative condition is @{term "0 \<le> w"} *}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 340 | corollary nat_mono_iff: "0 < z ==> (nat w < nat z) = (w < z)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 341 | by (simp add: nat_le_eq_zle linorder_not_le [symmetric]) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 342 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 343 | corollary nat_less_eq_zless: "0 \<le> w ==> (nat w < nat z) = (w<z)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 344 | by (simp add: nat_le_eq_zle linorder_not_le [symmetric]) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 345 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 346 | lemma zless_nat_conj [simp]: "(nat w < nat z) = (0 < z & w < z)" | 
| 48045 | 347 | by transfer (clarsimp, arith) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 348 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 349 | lemma nonneg_eq_int: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 350 | fixes z :: int | 
| 44709 | 351 | 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 | 352 | shows P | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 353 | using assms by (blast dest: nat_0_le sym) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 354 | |
| 54223 | 355 | lemma nat_eq_iff: | 
| 356 | "nat w = m \<longleftrightarrow> (if 0 \<le> w then w = int m else m = 0)" | |
| 48045 | 357 | by transfer (clarsimp simp add: le_imp_diff_is_add) | 
| 54223 | 358 | |
| 359 | corollary nat_eq_iff2: | |
| 360 | "m = nat w \<longleftrightarrow> (if 0 \<le> w then w = int m else m = 0)" | |
| 361 | using nat_eq_iff [of w m] by auto | |
| 362 | ||
| 363 | lemma nat_0 [simp]: | |
| 364 | "nat 0 = 0" | |
| 365 | by (simp add: nat_eq_iff) | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 366 | |
| 54223 | 367 | lemma nat_1 [simp]: | 
| 368 | "nat 1 = Suc 0" | |
| 369 | by (simp add: nat_eq_iff) | |
| 370 | ||
| 371 | lemma nat_numeral [simp]: | |
| 372 | "nat (numeral k) = numeral k" | |
| 373 | by (simp add: nat_eq_iff) | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 374 | |
| 54223 | 375 | lemma nat_neg_numeral [simp]: | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 376 | "nat (- numeral k) = 0" | 
| 54223 | 377 | by simp | 
| 378 | ||
| 379 | lemma nat_2: "nat 2 = Suc (Suc 0)" | |
| 380 | by simp | |
| 381 | ||
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 382 | lemma nat_less_iff: "0 \<le> w ==> (nat w < m) = (w < of_nat m)" | 
| 48045 | 383 | by transfer (clarsimp, arith) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 384 | |
| 44709 | 385 | lemma nat_le_iff: "nat x \<le> n \<longleftrightarrow> x \<le> int n" | 
| 48045 | 386 | by transfer (clarsimp simp add: le_diff_conv) | 
| 44707 | 387 | |
| 388 | lemma nat_mono: "x \<le> y \<Longrightarrow> nat x \<le> nat y" | |
| 48045 | 389 | by transfer auto | 
| 44707 | 390 | |
| 29700 | 391 | lemma nat_0_iff[simp]: "nat(i::int) = 0 \<longleftrightarrow> i\<le>0" | 
| 48045 | 392 | by transfer clarsimp | 
| 29700 | 393 | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 394 | 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 | 395 | by (auto simp add: nat_eq_iff2) | 
| 
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 zero_less_nat_eq [simp]: "(0 < nat z) = (0 < z)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 398 | by (insert zless_nat_conj [of 0], auto) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 399 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 400 | lemma nat_add_distrib: | 
| 54223 | 401 | "0 \<le> z \<Longrightarrow> 0 \<le> z' \<Longrightarrow> nat (z + z') = nat z + nat z'" | 
| 48045 | 402 | by transfer clarsimp | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 403 | |
| 54223 | 404 | lemma nat_diff_distrib': | 
| 405 | "0 \<le> x \<Longrightarrow> 0 \<le> y \<Longrightarrow> nat (x - y) = nat x - nat y" | |
| 406 | by transfer clarsimp | |
| 407 | ||
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 408 | lemma nat_diff_distrib: | 
| 54223 | 409 | "0 \<le> z' \<Longrightarrow> z' \<le> z \<Longrightarrow> nat (z - z') = nat z - nat z'" | 
| 410 | by (rule nat_diff_distrib') auto | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 411 | |
| 44709 | 412 | lemma nat_zminus_int [simp]: "nat (- int n) = 0" | 
| 48045 | 413 | by transfer simp | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 414 | |
| 53065 | 415 | lemma le_nat_iff: | 
| 416 | "k \<ge> 0 \<Longrightarrow> n \<le> nat k \<longleftrightarrow> int n \<le> k" | |
| 417 | by transfer auto | |
| 418 | ||
| 44709 | 419 | lemma zless_nat_eq_int_zless: "(m < nat z) = (int m < z)" | 
| 48045 | 420 | by transfer (clarsimp simp add: less_diff_conv) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 421 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 422 | context ring_1 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 423 | begin | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 424 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 425 | lemma of_nat_nat: "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 | 426 | by transfer (clarsimp simp add: of_nat_diff) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 427 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 428 | end | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 429 | |
| 54249 | 430 | lemma diff_nat_numeral [simp]: | 
| 431 | "(numeral v :: nat) - numeral v' = nat (numeral v - numeral v')" | |
| 432 | by (simp only: nat_diff_distrib' zero_le_numeral nat_numeral) | |
| 433 | ||
| 434 | ||
| 29779 | 435 | text {* For termination proofs: *}
 | 
| 436 | lemma measure_function_int[measure_function]: "is_measure (nat o abs)" .. | |
| 437 | ||
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 438 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 439 | subsection{*Lemmas about the Function @{term of_nat} and Orderings*}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 440 | |
| 44709 | 441 | lemma negative_zless_0: "- (int (Suc n)) < (0 \<Colon> int)" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 442 | by (simp add: order_less_le del: of_nat_Suc) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 443 | |
| 44709 | 444 | lemma negative_zless [iff]: "- (int (Suc n)) < int m" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 445 | by (rule negative_zless_0 [THEN order_less_le_trans], simp) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 446 | |
| 44709 | 447 | lemma negative_zle_0: "- int n \<le> 0" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 448 | by (simp add: minus_le_iff) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 449 | |
| 44709 | 450 | lemma negative_zle [iff]: "- int n \<le> int m" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 451 | 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 | 452 | |
| 44709 | 453 | 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 | 454 | by (subst le_minus_iff, simp del: of_nat_Suc) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 455 | |
| 44709 | 456 | lemma int_zle_neg: "(int n \<le> - int m) = (n = 0 & m = 0)" | 
| 48045 | 457 | by transfer simp | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 458 | |
| 44709 | 459 | lemma not_int_zless_negative [simp]: "~ (int n < - int m)" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 460 | by (simp add: linorder_not_less) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 461 | |
| 44709 | 462 | 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 | 463 | 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 | 464 | |
| 44709 | 465 | 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 | 466 | proof - | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 467 | have "(w \<le> z) = (0 \<le> z - w)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 468 | by (simp only: le_diff_eq add_0_left) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 469 | also have "\<dots> = (\<exists>n. z - w = of_nat n)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 470 | by (auto elim: zero_le_imp_eq_int) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 471 | also have "\<dots> = (\<exists>n. z = w + of_nat n)" | 
| 29667 | 472 | by (simp only: algebra_simps) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 473 | finally show ?thesis . | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 474 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 475 | |
| 44709 | 476 | 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 | 477 | by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 478 | |
| 44709 | 479 | lemma int_Suc0_eq_1: "int (Suc 0) = 1" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 480 | by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 481 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 482 | text{*This version is proved for all ordered rings, not just integers!
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 483 |       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 | 484 |       in theory @{text Rings}.
 | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 485 |       But is it really better than just rewriting with @{text abs_if}?*}
 | 
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53652diff
changeset | 486 | 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 | 487 | "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 | 488 | 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 | 489 | |
| 44709 | 490 | lemma negD: "x < 0 \<Longrightarrow> \<exists>n. x = - (int (Suc n))" | 
| 48045 | 491 | apply transfer | 
| 492 | apply clarsimp | |
| 493 | apply (rule_tac x="b - Suc a" in exI, arith) | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 494 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 495 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 496 | subsection {* Cases and induction *}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 497 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 498 | text{*Now we replace the case analysis rule by a more conventional one:
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 499 | whether an integer is negative or not.*} | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 500 | |
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 501 | theorem int_cases [case_names nonneg neg, cases type: int]: | 
| 44709 | 502 | "[|!! 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 | 503 | apply (cases "z < 0") | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 504 | apply (blast dest!: negD) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 505 | apply (simp add: linorder_not_less del: of_nat_Suc) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 506 | apply auto | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 507 | apply (blast dest: nat_0_le [THEN sym]) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 508 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 509 | |
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 510 | theorem int_of_nat_induct [case_names nonneg neg, induct type: int]: | 
| 44709 | 511 | "[|!! 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 | 512 | by (cases z) auto | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 513 | |
| 47207 
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
 huffman parents: 
47192diff
changeset | 514 | lemma nonneg_int_cases: | 
| 
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
 huffman parents: 
47192diff
changeset | 515 | assumes "0 \<le> k" obtains n where "k = int n" | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 516 | using assms by (rule nonneg_eq_int) | 
| 47207 
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
 huffman parents: 
47192diff
changeset | 517 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 518 | lemma Let_numeral [simp]: "Let (numeral v) f = f (numeral v)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 519 |   -- {* Unfold all @{text let}s involving constants *}
 | 
| 57514 
bdc2c6b40bf2
prefer ac_simps collections over separate name bindings for add and mult
 haftmann parents: 
57512diff
changeset | 520 |   by (fact Let_numeral) -- {* FIXME drop *}
 | 
| 37767 | 521 | |
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 522 | lemma Let_neg_numeral [simp]: "Let (- numeral v) f = f (- numeral v)" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 523 |   -- {* Unfold all @{text let}s involving constants *}
 | 
| 57514 
bdc2c6b40bf2
prefer ac_simps collections over separate name bindings for add and mult
 haftmann parents: 
57512diff
changeset | 524 |   by (fact Let_neg_numeral) -- {* FIXME drop *}
 | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 525 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 526 | text {* Unfold @{text min} and @{text max} on numerals. *}
 | 
| 28958 | 527 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 528 | lemmas max_number_of [simp] = | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 529 | max_def [of "numeral u" "numeral v"] | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 530 | max_def [of "numeral u" "- numeral v"] | 
| 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 531 | max_def [of "- numeral u" "numeral v"] | 
| 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 532 | max_def [of "- numeral u" "- numeral v"] for u v | 
| 28958 | 533 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 534 | lemmas min_number_of [simp] = | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 535 | min_def [of "numeral u" "numeral v"] | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 536 | min_def [of "numeral u" "- numeral v"] | 
| 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 537 | min_def [of "- numeral u" "numeral v"] | 
| 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 538 | 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 | 539 | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 540 | |
| 28958 | 541 | subsubsection {* Binary comparisons *}
 | 
| 542 | ||
| 543 | text {* Preliminaries *}
 | |
| 544 | ||
| 545 | lemma even_less_0_iff: | |
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34055diff
changeset | 546 | "a + a < 0 \<longleftrightarrow> a < (0::'a::linordered_idom)" | 
| 28958 | 547 | proof - | 
| 49962 
a8cc904a6820
Renamed {left,right}_distrib to distrib_{right,left}.
 webertj parents: 
48891diff
changeset | 548 | have "a + a < 0 \<longleftrightarrow> (1+1)*a < 0" by (simp add: distrib_right del: one_add_one) | 
| 28958 | 549 | also have "(1+1)*a < 0 \<longleftrightarrow> a < 0" | 
| 550 | by (simp add: mult_less_0_iff zero_less_two | |
| 551 | order_less_not_sym [OF zero_less_two]) | |
| 552 | finally show ?thesis . | |
| 553 | qed | |
| 554 | ||
| 555 | lemma le_imp_0_less: | |
| 556 | assumes le: "0 \<le> z" | |
| 557 | shows "(0::int) < 1 + z" | |
| 558 | proof - | |
| 559 | have "0 \<le> z" by fact | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 560 | 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 | 561 | also have "... = 1 + z" by (simp add: ac_simps) | 
| 28958 | 562 | finally show "0 < 1 + z" . | 
| 563 | qed | |
| 564 | ||
| 565 | lemma odd_less_0_iff: | |
| 566 | "(1 + z + z < 0) = (z < (0::int))" | |
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 567 | proof (cases z) | 
| 28958 | 568 | case (nonneg n) | 
| 57512 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 haftmann parents: 
56889diff
changeset | 569 | thus ?thesis by (simp add: linorder_not_less add.assoc add_increasing | 
| 28958 | 570 | le_imp_0_less [THEN order_less_imp_le]) | 
| 571 | next | |
| 572 | 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 | 573 | 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 | 574 | add: algebra_simps of_nat_1 [where 'a=int, symmetric] of_nat_add [symmetric]) | 
| 28958 | 575 | qed | 
| 576 | ||
| 577 | subsubsection {* Comparisons, for Ordered Rings *}
 | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 578 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 579 | lemmas double_eq_0_iff = double_zero | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 580 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 581 | lemma odd_nonzero: | 
| 33296 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 haftmann parents: 
33056diff
changeset | 582 | "1 + z + z \<noteq> (0::int)" | 
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 583 | proof (cases z) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 584 | case (nonneg n) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 585 | have le: "0 \<le> z+z" by (simp add: nonneg add_increasing) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 586 | thus ?thesis using le_imp_0_less [OF le] | 
| 57512 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 haftmann parents: 
56889diff
changeset | 587 | by (auto simp add: add.assoc) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 588 | next | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 589 | case (neg n) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 590 | show ?thesis | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 591 | proof | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 592 | assume eq: "1 + z + z = 0" | 
| 44709 | 593 | have "(0::int) < 1 + (int n + int n)" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 594 | by (simp add: le_imp_0_less add_increasing) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 595 | also have "... = - (1 + z + z)" | 
| 57512 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 haftmann parents: 
56889diff
changeset | 596 | by (simp add: neg add.assoc [symmetric]) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 597 | also have "... = 0" by (simp add: eq) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 598 | finally have "0<0" .. | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 599 | thus False by blast | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 600 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 601 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 602 | |
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 603 | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 604 | subsection {* The Set of Integers *}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 605 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 606 | context ring_1 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 607 | begin | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 608 | |
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 609 | definition Ints :: "'a set" where | 
| 37767 | 610 | "Ints = range of_int" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 611 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 612 | notation (xsymbols) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 613 |   Ints  ("\<int>")
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 614 | |
| 35634 | 615 | lemma Ints_of_int [simp]: "of_int z \<in> \<int>" | 
| 616 | by (simp add: Ints_def) | |
| 617 | ||
| 618 | lemma Ints_of_nat [simp]: "of_nat n \<in> \<int>" | |
| 45533 | 619 | using Ints_of_int [of "of_nat n"] by simp | 
| 35634 | 620 | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 621 | lemma Ints_0 [simp]: "0 \<in> \<int>" | 
| 45533 | 622 | using Ints_of_int [of "0"] by simp | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 623 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 624 | lemma Ints_1 [simp]: "1 \<in> \<int>" | 
| 45533 | 625 | using Ints_of_int [of "1"] by simp | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 626 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 627 | 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 | 628 | apply (auto simp add: Ints_def) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 629 | apply (rule range_eqI) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 630 | apply (rule of_int_add [symmetric]) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 631 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 632 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 633 | lemma Ints_minus [simp]: "a \<in> \<int> \<Longrightarrow> -a \<in> \<int>" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 634 | apply (auto simp add: Ints_def) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 635 | apply (rule range_eqI) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 636 | apply (rule of_int_minus [symmetric]) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 637 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 638 | |
| 35634 | 639 | lemma Ints_diff [simp]: "a \<in> \<int> \<Longrightarrow> b \<in> \<int> \<Longrightarrow> a - b \<in> \<int>" | 
| 640 | apply (auto simp add: Ints_def) | |
| 641 | apply (rule range_eqI) | |
| 642 | apply (rule of_int_diff [symmetric]) | |
| 643 | done | |
| 644 | ||
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 645 | 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 | 646 | apply (auto simp add: Ints_def) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 647 | apply (rule range_eqI) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 648 | apply (rule of_int_mult [symmetric]) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 649 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 650 | |
| 35634 | 651 | lemma Ints_power [simp]: "a \<in> \<int> \<Longrightarrow> a ^ n \<in> \<int>" | 
| 652 | by (induct n) simp_all | |
| 653 | ||
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 654 | lemma Ints_cases [cases set: Ints]: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 655 | assumes "q \<in> \<int>" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 656 | obtains (of_int) z where "q = of_int z" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 657 | unfolding Ints_def | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 658 | proof - | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 659 | from `q \<in> \<int>` have "q \<in> range of_int" unfolding Ints_def . | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 660 | then obtain z where "q = of_int z" .. | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 661 | then show thesis .. | 
| 
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 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 664 | lemma Ints_induct [case_names of_int, induct set: Ints]: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 665 | "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 | 666 | by (rule Ints_cases) auto | 
| 
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 | end | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 669 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 670 | text {* The premise involving @{term Ints} prevents @{term "a = 1/2"}. *}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 671 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 672 | lemma Ints_double_eq_0_iff: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 673 | assumes in_Ints: "a \<in> Ints" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 674 | shows "(a + a = 0) = (a = (0::'a::ring_char_0))" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 675 | proof - | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 676 | 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 | 677 | then obtain z where a: "a = of_int z" .. | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 678 | show ?thesis | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 679 | proof | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 680 | assume "a = 0" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 681 | thus "a + a = 0" by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 682 | next | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 683 | assume eq: "a + a = 0" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 684 | 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 | 685 | hence "z + z = 0" by (simp only: of_int_eq_iff) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 686 | hence "z = 0" by (simp only: double_eq_0_iff) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 687 | thus "a = 0" by (simp add: a) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 688 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 689 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 690 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 691 | lemma Ints_odd_nonzero: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 692 | assumes in_Ints: "a \<in> Ints" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 693 | shows "1 + a + a \<noteq> (0::'a::ring_char_0)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 694 | proof - | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 695 | 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 | 696 | then obtain z where a: "a = of_int z" .. | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 697 | show ?thesis | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 698 | proof | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 699 | assume eq: "1 + a + a = 0" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 700 | 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 | 701 | 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 | 702 | with odd_nonzero show False by blast | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 703 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 704 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 705 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 706 | lemma Nats_numeral [simp]: "numeral w \<in> Nats" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 707 | using of_nat_in_Nats [of "numeral w"] by simp | 
| 35634 | 708 | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 709 | lemma Ints_odd_less_0: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 710 | assumes in_Ints: "a \<in> Ints" | 
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34055diff
changeset | 711 | shows "(1 + a + a < 0) = (a < (0::'a::linordered_idom))" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 712 | proof - | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 713 | 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 | 714 | then obtain z where a: "a = of_int z" .. | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 715 | 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 | 716 | 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 | 717 | 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 | 718 | also have "... = (a < 0)" by (simp add: a) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 719 | finally show ?thesis . | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 720 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 721 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 722 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 723 | subsection {* @{term setsum} and @{term setprod} *}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 724 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 725 | lemma of_nat_setsum: "of_nat (setsum f A) = (\<Sum>x\<in>A. of_nat(f x))" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 726 | apply (cases "finite A") | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 727 | apply (erule finite_induct, auto) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 728 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 729 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 730 | lemma of_int_setsum: "of_int (setsum f A) = (\<Sum>x\<in>A. of_int(f x))" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 731 | apply (cases "finite A") | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 732 | apply (erule finite_induct, auto) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 733 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 734 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 735 | lemma of_nat_setprod: "of_nat (setprod f A) = (\<Prod>x\<in>A. of_nat(f x))" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 736 | apply (cases "finite A") | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 737 | apply (erule finite_induct, auto simp add: of_nat_mult) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 738 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 739 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 740 | lemma of_int_setprod: "of_int (setprod f A) = (\<Prod>x\<in>A. of_int(f x))" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 741 | apply (cases "finite A") | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 742 | apply (erule finite_induct, auto) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 743 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 744 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 745 | lemmas int_setsum = of_nat_setsum [where 'a=int] | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 746 | lemmas int_setprod = of_nat_setprod [where 'a=int] | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 747 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 748 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 749 | text {* Legacy theorems *}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 750 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 751 | lemmas zle_int = of_nat_le_iff [where 'a=int] | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 752 | lemmas int_int_eq = of_nat_eq_iff [where 'a=int] | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 753 | lemmas numeral_1_eq_1 = numeral_One | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 754 | |
| 30802 | 755 | subsection {* Setting up simplification procedures *}
 | 
| 756 | ||
| 54249 | 757 | lemmas of_int_simps = | 
| 758 | of_int_0 of_int_1 of_int_add of_int_mult | |
| 759 | ||
| 30802 | 760 | lemmas int_arith_rules = | 
| 54249 | 761 | numeral_One more_arith_simps of_nat_simps of_int_simps | 
| 30802 | 762 | |
| 48891 | 763 | ML_file "Tools/int_arith.ML" | 
| 30496 
7cdcc9dd95cb
vague cleanup in arith proof tools setup: deleted dead code, more proper structures, clearer arrangement
 haftmann parents: 
30273diff
changeset | 764 | declaration {* K Int_Arith.setup *}
 | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 765 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 766 | simproc_setup fast_arith ("(m::'a::linordered_idom) < n" |
 | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 767 | "(m::'a::linordered_idom) <= n" | | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 768 | "(m::'a::linordered_idom) = n") = | 
| 43595 | 769 |   {* fn _ => fn ss => fn ct => Lin_Arith.simproc ss (term_of ct) *}
 | 
| 770 | ||
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 771 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 772 | subsection{*More Inequality Reasoning*}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 773 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 774 | 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 | 775 | by arith | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 776 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 777 | lemma add1_zle_eq: "(w + (1::int) \<le> z) = (w<z)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 778 | by arith | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 779 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 780 | 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 | 781 | by arith | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 782 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 783 | 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 | 784 | by arith | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 785 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 786 | 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 | 787 | by arith | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 788 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 789 | |
| 28958 | 790 | subsection{*The functions @{term nat} and @{term int}*}
 | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 791 | |
| 48044 
fea6f3060b65
remove unnecessary simp rules involving Abs_Integ
 huffman parents: 
47255diff
changeset | 792 | text{*Simplify the term @{term "w + - z"}*}
 | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 793 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 794 | lemma one_less_nat_eq [simp]: "(Suc 0 < nat z) = (1 < z)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 795 | apply (insert zless_nat_conj [of 1 z]) | 
| 47207 
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
 huffman parents: 
47192diff
changeset | 796 | apply auto | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 797 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 798 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 799 | text{*This simplifies expressions of the form @{term "int n = z"} where
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 800 | z is an integer literal.*} | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 801 | 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 | 802 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 803 | lemma split_nat [arith_split]: | 
| 44709 | 804 | "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 | 805 | (is "?P = (?L & ?R)") | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 806 | proof (cases "i < 0") | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 807 | case True thus ?thesis by auto | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 808 | next | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 809 | case False | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 810 | have "?P = ?L" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 811 | proof | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 812 | assume ?P thus ?L using False by clarsimp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 813 | next | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 814 | assume ?L thus ?P using False by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 815 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 816 | with False show ?thesis by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 817 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 818 | |
| 59000 | 819 | lemma nat_abs_int_diff: "nat \<bar>int a - int b\<bar> = (if a \<le> b then b - a else a - b)" | 
| 820 | by auto | |
| 821 | ||
| 822 | lemma nat_int_add: "nat (int a + int b) = a + b" | |
| 823 | by auto | |
| 824 | ||
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 825 | context ring_1 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 826 | begin | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 827 | |
| 33056 
791a4655cae3
renamed "nitpick_const_xxx" attributes to "nitpick_xxx" and "nitpick_ind_intros" to "nitpick_intros"
 blanchet parents: 
32437diff
changeset | 828 | lemma of_int_of_nat [nitpick_simp]: | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 829 | "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 | 830 | proof (cases "k < 0") | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 831 | case True then have "0 \<le> - k" by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 832 | 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 | 833 | with True show ?thesis by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 834 | next | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 835 | 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 | 836 | qed | 
| 
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 | end | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 839 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 840 | lemma nat_mult_distrib: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 841 | fixes z z' :: int | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 842 | assumes "0 \<le> z" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 843 | shows "nat (z * z') = nat z * nat z'" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 844 | proof (cases "0 \<le> z'") | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 845 | case False with assms have "z * z' \<le> 0" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 846 | by (simp add: not_le mult_le_0_iff) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 847 | then have "nat (z * z') = 0" by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 848 | moreover from False have "nat z' = 0" by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 849 | ultimately show ?thesis by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 850 | next | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 851 | 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 | 852 | show ?thesis | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 853 | 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 | 854 | (simp only: of_nat_mult of_nat_nat [OF True] | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 855 | 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 | 856 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 857 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 858 | 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 | 859 | apply (rule trans) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 860 | apply (rule_tac [2] nat_mult_distrib, auto) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 861 | done | 
| 
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 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 | 864 | apply (cases "z=0 | w=0") | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 865 | apply (auto simp add: abs_if nat_mult_distrib [symmetric] | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 866 | nat_mult_distrib_neg [symmetric] mult_less_0_iff) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 867 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 868 | |
| 47207 
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
 huffman parents: 
47192diff
changeset | 869 | 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 | 870 | apply (rule sym) | 
| 
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
 huffman parents: 
47192diff
changeset | 871 | apply (simp add: nat_eq_iff) | 
| 
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
 huffman parents: 
47192diff
changeset | 872 | done | 
| 
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
 huffman parents: 
47192diff
changeset | 873 | |
| 
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
 huffman parents: 
47192diff
changeset | 874 | lemma diff_nat_eq_if: | 
| 
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
 huffman parents: 
47192diff
changeset | 875 | "nat z - nat z' = | 
| 
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
 huffman parents: 
47192diff
changeset | 876 | (if z' < 0 then nat z | 
| 
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
 huffman parents: 
47192diff
changeset | 877 | else let d = z-z' in | 
| 
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
 huffman parents: 
47192diff
changeset | 878 | if d < 0 then 0 else nat d)" | 
| 
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
 huffman parents: 
47192diff
changeset | 879 | 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 | 880 | |
| 
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
 huffman parents: 
47192diff
changeset | 881 | lemma nat_numeral_diff_1 [simp]: | 
| 
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
 huffman parents: 
47192diff
changeset | 882 | "numeral v - (1::nat) = nat (numeral v - 1)" | 
| 
9368aa814518
move lemmas from Nat_Numeral to Int.thy and Num.thy
 huffman parents: 
47192diff
changeset | 883 | 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 | 884 | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 885 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 886 | subsection "Induction principles for int" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 887 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 888 | text{*Well-founded segments of the integers*}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 889 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 890 | definition | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 891 | int_ge_less_than :: "int => (int * int) set" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 892 | where | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 893 |   "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 | 894 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 895 | 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 | 896 | proof - | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 897 | 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 | 898 | by (auto simp add: int_ge_less_than_def) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 899 | thus ?thesis | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 900 | by (rule wf_subset [OF wf_measure]) | 
| 
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 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 903 | text{*This variant looks odd, but is typical of the relations suggested
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 904 | by RankFinder.*} | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 905 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 906 | definition | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 907 | int_ge_less_than2 :: "int => (int * int) set" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 908 | where | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 909 |   "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 | 910 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 911 | 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 | 912 | proof - | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 913 | have "int_ge_less_than2 d \<subseteq> measure (%z. nat (1+z-d))" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 914 | by (auto simp add: int_ge_less_than2_def) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 915 | thus ?thesis | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 916 | by (rule wf_subset [OF wf_measure]) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 917 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 918 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 919 | (* `set:int': dummy construction *) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 920 | theorem int_ge_induct [case_names base step, induct set: int]: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 921 | fixes i :: int | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 922 | assumes ge: "k \<le> i" and | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 923 | base: "P k" and | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 924 | 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 | 925 | shows "P i" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 926 | proof - | 
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 927 |   { fix n
 | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 928 | 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 | 929 | proof (induct n) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 930 | case 0 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 931 | hence "i = k" by arith | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 932 | thus "P i" using base by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 933 | next | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 934 | case (Suc n) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 935 | then have "n = nat((i - 1) - k)" by arith | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 936 | moreover | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 937 | have ki1: "k \<le> i - 1" using Suc.prems by arith | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 938 | ultimately | 
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 939 | have "P (i - 1)" by (rule Suc.hyps) | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 940 | from step [OF ki1 this] show ?case by simp | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 941 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 942 | } | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 943 | with ge show ?thesis by fast | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 944 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 945 | |
| 25928 | 946 | (* `set:int': dummy construction *) | 
| 947 | 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 | 948 | assumes gr: "k < (i::int)" and | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 949 | base: "P(k+1)" and | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 950 | 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 | 951 | shows "P i" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 952 | apply(rule int_ge_induct[of "k + 1"]) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 953 | using gr apply arith | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 954 | apply(rule base) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 955 | apply (rule step, simp+) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 956 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 957 | |
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 958 | theorem int_le_induct [consumes 1, case_names base step]: | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 959 | assumes le: "i \<le> (k::int)" and | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 960 | base: "P(k)" and | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 961 | 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 | 962 | shows "P i" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 963 | proof - | 
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 964 |   { fix n
 | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 965 | 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 | 966 | proof (induct n) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 967 | case 0 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 968 | hence "i = k" by arith | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 969 | thus "P i" using base by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 970 | next | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 971 | case (Suc n) | 
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 972 | hence "n = nat (k - (i + 1))" by arith | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 973 | moreover | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 974 | have ki1: "i + 1 \<le> k" using Suc.prems by arith | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 975 | ultimately | 
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 976 | have "P (i + 1)" by(rule Suc.hyps) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 977 | from step[OF ki1 this] show ?case by simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 978 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 979 | } | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 980 | with le show ?thesis by fast | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 981 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 982 | |
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 983 | theorem int_less_induct [consumes 1, case_names base step]: | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 984 | assumes less: "(i::int) < k" and | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 985 | base: "P(k - 1)" and | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 986 | 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 | 987 | shows "P i" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 988 | apply(rule int_le_induct[of _ "k - 1"]) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 989 | using less apply arith | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 990 | apply(rule base) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 991 | apply (rule step, simp+) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 992 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 993 | |
| 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 | 994 | 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 | 995 | fixes k :: int | 
| 
3560de0fe851
moved int induction lemma to theory Int as int_bidirectional_induct
 haftmann parents: 
36749diff
changeset | 996 | assumes base: "P k" | 
| 
3560de0fe851
moved int induction lemma to theory Int as int_bidirectional_induct
 haftmann parents: 
36749diff
changeset | 997 | 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 | 998 | 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 | 999 | shows "P i" | 
| 
3560de0fe851
moved int induction lemma to theory Int as int_bidirectional_induct
 haftmann parents: 
36749diff
changeset | 1000 | proof - | 
| 
3560de0fe851
moved int induction lemma to theory Int as int_bidirectional_induct
 haftmann parents: 
36749diff
changeset | 1001 | 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 | 1002 | then show ?thesis | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1003 | proof | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1004 | assume "i \<ge> k" | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1005 | then show ?thesis using base | 
| 36801 
3560de0fe851
moved int induction lemma to theory Int as int_bidirectional_induct
 haftmann parents: 
36749diff
changeset | 1006 | by (rule int_ge_induct) (fact step1) | 
| 
3560de0fe851
moved int induction lemma to theory Int as int_bidirectional_induct
 haftmann parents: 
36749diff
changeset | 1007 | next | 
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1008 | assume "i \<le> k" | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1009 | then show ?thesis using base | 
| 36801 
3560de0fe851
moved int induction lemma to theory Int as int_bidirectional_induct
 haftmann parents: 
36749diff
changeset | 1010 | by (rule int_le_induct) (fact step2) | 
| 
3560de0fe851
moved int induction lemma to theory Int as int_bidirectional_induct
 haftmann parents: 
36749diff
changeset | 1011 | qed | 
| 
3560de0fe851
moved int induction lemma to theory Int as int_bidirectional_induct
 haftmann parents: 
36749diff
changeset | 1012 | qed | 
| 
3560de0fe851
moved int induction lemma to theory Int as int_bidirectional_induct
 haftmann parents: 
36749diff
changeset | 1013 | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1014 | subsection{*Intermediate value theorems*}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1015 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1016 | lemma int_val_lemma: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1017 | "(\<forall>i<n::nat. abs(f(i+1) - f i) \<le> 1) --> | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1018 | 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 | 1019 | unfolding One_nat_def | 
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1020 | apply (induct n) | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1021 | apply simp | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1022 | apply (intro strip) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1023 | apply (erule impE, simp) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1024 | 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 | 1025 | apply (case_tac "k = f (Suc n)") | 
| 27106 | 1026 | apply force | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1027 | apply (erule impE) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1028 | apply (simp add: abs_if split add: split_if_asm) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1029 | apply (blast intro: le_SucI) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1030 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1031 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1032 | 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 | 1033 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1034 | lemma nat_intermed_int_val: | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1035 | "[| \<forall>i. m \<le> i & i < n --> abs(f(i + 1::nat) - f i) \<le> 1; m < n; | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1036 | f m \<le> k; k \<le> f n |] ==> ? i. m \<le> i & i \<le> n & f i = (k::int)" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1037 | apply (cut_tac n = "n-m" and f = "%i. f (i+m) " and k = k | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1038 | 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 | 1039 | unfolding One_nat_def | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1040 | apply simp | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1041 | apply (erule exE) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1042 | apply (rule_tac x = "i+m" in exI, arith) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1043 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1044 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1045 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1046 | subsection{*Products and 1, by T. M. Rasmussen*}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1047 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1048 | 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 | 1049 | by arith | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1050 | |
| 34055 | 1051 | lemma abs_zmult_eq_1: | 
| 1052 | assumes mn: "\<bar>m * n\<bar> = 1" | |
| 1053 | shows "\<bar>m\<bar> = (1::int)" | |
| 1054 | proof - | |
| 1055 | have 0: "m \<noteq> 0 & n \<noteq> 0" using mn | |
| 1056 | by auto | |
| 1057 | have "~ (2 \<le> \<bar>m\<bar>)" | |
| 1058 | proof | |
| 1059 | assume "2 \<le> \<bar>m\<bar>" | |
| 1060 | hence "2*\<bar>n\<bar> \<le> \<bar>m\<bar>*\<bar>n\<bar>" | |
| 1061 | by (simp add: mult_mono 0) | |
| 1062 | also have "... = \<bar>m*n\<bar>" | |
| 1063 | by (simp add: abs_mult) | |
| 1064 | also have "... = 1" | |
| 1065 | by (simp add: mn) | |
| 1066 | finally have "2*\<bar>n\<bar> \<le> 1" . | |
| 1067 | thus "False" using 0 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1068 | by arith | 
| 34055 | 1069 | qed | 
| 1070 | thus ?thesis using 0 | |
| 1071 | by auto | |
| 1072 | qed | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1073 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1074 | 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 | 1075 | by (insert abs_zmult_eq_1 [of m n], arith) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1076 | |
| 35815 
10e723e54076
tuned proofs (to avoid linarith error message caused by bootstrapping of HOL)
 boehmes parents: 
35634diff
changeset | 1077 | lemma pos_zmult_eq_1_iff: | 
| 
10e723e54076
tuned proofs (to avoid linarith error message caused by bootstrapping of HOL)
 boehmes parents: 
35634diff
changeset | 1078 | 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 | 1079 | proof - | 
| 
10e723e54076
tuned proofs (to avoid linarith error message caused by bootstrapping of HOL)
 boehmes parents: 
35634diff
changeset | 1080 | 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 | 1081 | 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 | 1082 | qed | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1083 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1084 | lemma zmult_eq_1_iff: "(m*n = (1::int)) = ((m = 1 & n = 1) | (m = -1 & n = -1))" | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1085 | apply (rule iffI) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1086 | apply (frule pos_zmult_eq_1_iff_lemma) | 
| 57512 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 haftmann parents: 
56889diff
changeset | 1087 | apply (simp add: mult.commute [of m]) | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1088 | apply (frule pos_zmult_eq_1_iff_lemma, auto) | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1089 | done | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1090 | |
| 33296 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 haftmann parents: 
33056diff
changeset | 1091 | lemma infinite_UNIV_int: "\<not> finite (UNIV::int set)" | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1092 | proof | 
| 33296 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 haftmann parents: 
33056diff
changeset | 1093 | assume "finite (UNIV::int set)" | 
| 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 haftmann parents: 
33056diff
changeset | 1094 | moreover have "inj (\<lambda>i\<Colon>int. 2 * i)" | 
| 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 haftmann parents: 
33056diff
changeset | 1095 | by (rule injI) simp | 
| 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 haftmann parents: 
33056diff
changeset | 1096 | ultimately have "surj (\<lambda>i\<Colon>int. 2 * i)" | 
| 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 haftmann parents: 
33056diff
changeset | 1097 | by (rule finite_UNIV_inj_surj) | 
| 
a3924d1069e5
moved theory Divides after theory Nat_Numeral; tuned some proof texts
 haftmann parents: 
33056diff
changeset | 1098 | 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 | 1099 | 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 | 1100 | qed | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1101 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1102 | |
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1103 | subsection {* Further theorems on numerals *}
 | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1104 | |
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1105 | subsubsection{*Special Simplification for Constants*}
 | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1106 | |
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1107 | text{*These distributive laws move literals inside sums and differences.*}
 | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1108 | |
| 49962 
a8cc904a6820
Renamed {left,right}_distrib to distrib_{right,left}.
 webertj parents: 
48891diff
changeset | 1109 | 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 | 1110 | 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 | 1111 | 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 | 1112 | 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 | 1113 | |
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1114 | text{*These are actually for fields, like real: but where else to put them?*}
 | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1115 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1116 | 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 | 1117 | 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 | 1118 | 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 | 1119 | 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 | 1120 | |
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1121 | |
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1122 | text {*Replaces @{text "inverse #nn"} by @{text "1/#nn"}.  It looks
 | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1123 | strange, but then other simprocs simplify the quotient.*} | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1124 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1125 | lemmas inverse_eq_divide_numeral [simp] = | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1126 | inverse_eq_divide [of "numeral w"] for w | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1127 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1128 | lemmas inverse_eq_divide_neg_numeral [simp] = | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1129 | 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 | 1130 | |
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1131 | text {*These laws simplify inequalities, moving unary minus from a term
 | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1132 | into the literal.*} | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1133 | |
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1134 | lemmas equation_minus_iff_numeral [no_atp] = | 
| 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1135 | equation_minus_iff [of "numeral v"] for v | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1136 | |
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1137 | lemmas minus_equation_iff_numeral [no_atp] = | 
| 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1138 | minus_equation_iff [of _ "numeral v"] for v | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1139 | |
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1140 | lemmas le_minus_iff_numeral [no_atp] = | 
| 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1141 | 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 | 1142 | |
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1143 | lemmas minus_le_iff_numeral [no_atp] = | 
| 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1144 | 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 | 1145 | |
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1146 | lemmas less_minus_iff_numeral [no_atp] = | 
| 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1147 | 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 | 1148 | |
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1149 | lemmas minus_less_iff_numeral [no_atp] = | 
| 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1150 | 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 | 1151 | |
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1152 | -- {* FIXME maybe simproc *}
 | 
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1153 | |
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1154 | |
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1155 | text {*Cancellation of constant factors in comparisons (@{text "<"} and @{text "\<le>"}) *}
 | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1156 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1157 | 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 | 1158 | 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 | 1159 | 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 | 1160 | 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 | 1161 | |
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1162 | |
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1163 | text {*Multiplying out constant divisors in comparisons (@{text "<"}, @{text "\<le>"} and @{text "="}) *}
 | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1164 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1165 | lemmas le_divide_eq_numeral1 [simp] = | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1166 | pos_le_divide_eq [of "numeral w", OF zero_less_numeral] | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1167 | 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 | 1168 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1169 | lemmas divide_le_eq_numeral1 [simp] = | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1170 | pos_divide_le_eq [of "numeral w", OF zero_less_numeral] | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1171 | 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 | 1172 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1173 | lemmas less_divide_eq_numeral1 [simp] = | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1174 | pos_less_divide_eq [of "numeral w", OF zero_less_numeral] | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1175 | 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 | 1176 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1177 | lemmas divide_less_eq_numeral1 [simp] = | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1178 | pos_divide_less_eq [of "numeral w", OF zero_less_numeral] | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1179 | 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 | 1180 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1181 | lemmas eq_divide_eq_numeral1 [simp] = | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1182 | eq_divide_eq [of _ _ "numeral w"] | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1183 | eq_divide_eq [of _ _ "- numeral w"] for w | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1184 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1185 | lemmas divide_eq_eq_numeral1 [simp] = | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1186 | divide_eq_eq [of _ "numeral w"] | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1187 | divide_eq_eq [of _ "- numeral w"] for w | 
| 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1188 | |
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1189 | |
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1190 | subsubsection{*Optional Simplification Rules Involving Constants*}
 | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1191 | |
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1192 | text{*Simplify quotients that are compared with a literal constant.*}
 | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1193 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1194 | lemmas le_divide_eq_numeral = | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1195 | le_divide_eq [of "numeral w"] | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1196 | le_divide_eq [of "- numeral w"] for w | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1197 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1198 | lemmas divide_le_eq_numeral = | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1199 | divide_le_eq [of _ _ "numeral w"] | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1200 | divide_le_eq [of _ _ "- numeral w"] for w | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1201 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1202 | lemmas less_divide_eq_numeral = | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1203 | less_divide_eq [of "numeral w"] | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1204 | less_divide_eq [of "- numeral w"] for w | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1205 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1206 | lemmas divide_less_eq_numeral = | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1207 | divide_less_eq [of _ _ "numeral w"] | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1208 | divide_less_eq [of _ _ "- numeral w"] for w | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1209 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1210 | lemmas eq_divide_eq_numeral = | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1211 | eq_divide_eq [of "numeral w"] | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1212 | eq_divide_eq [of "- numeral w"] for w | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1213 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1214 | lemmas divide_eq_eq_numeral = | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1215 | divide_eq_eq [of _ _ "numeral w"] | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1216 | 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 | 1217 | |
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1218 | |
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1219 | text{*Not good as automatic simprules because they cause case splits.*}
 | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1220 | lemmas divide_const_simps = | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1221 | le_divide_eq_numeral divide_le_eq_numeral less_divide_eq_numeral | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1222 | divide_less_eq_numeral eq_divide_eq_numeral divide_eq_eq_numeral | 
| 30652 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1223 | le_divide_eq_1 divide_le_eq_1 less_divide_eq_1 divide_less_eq_1 | 
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1224 | |
| 
752329615264
distributed contents of theory Arith_Tools to theories Int, IntDiv and NatBin accordingly
 haftmann parents: 
30496diff
changeset | 1225 | |
| 33320 | 1226 | subsection {* The divides relation *}
 | 
| 1227 | ||
| 33657 | 1228 | lemma zdvd_antisym_nonneg: | 
| 1229 | "0 <= m ==> 0 <= n ==> m dvd n ==> n dvd m ==> m = (n::int)" | |
| 33320 | 1230 | apply (simp add: dvd_def, auto) | 
| 57512 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 haftmann parents: 
56889diff
changeset | 1231 | apply (auto simp add: mult.assoc zero_le_mult_iff zmult_eq_1_iff) | 
| 33320 | 1232 | done | 
| 1233 | ||
| 33657 | 1234 | lemma zdvd_antisym_abs: assumes "(a::int) dvd b" and "b dvd a" | 
| 33320 | 1235 | shows "\<bar>a\<bar> = \<bar>b\<bar>" | 
| 33657 | 1236 | proof cases | 
| 1237 | assume "a = 0" with assms show ?thesis by simp | |
| 1238 | next | |
| 1239 | assume "a \<noteq> 0" | |
| 33320 | 1240 | from `a dvd b` obtain k where k:"b = a*k" unfolding dvd_def by blast | 
| 1241 | from `b dvd a` obtain k' where k':"a = b*k'" unfolding dvd_def by blast | |
| 1242 | from k k' have "a = a*k*k'" by simp | |
| 1243 | with mult_cancel_left1[where c="a" and b="k*k'"] | |
| 57512 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 haftmann parents: 
56889diff
changeset | 1244 | have kk':"k*k' = 1" using `a\<noteq>0` by (simp add: mult.assoc) | 
| 33320 | 1245 | hence "k = 1 \<and> k' = 1 \<or> k = -1 \<and> k' = -1" by (simp add: zmult_eq_1_iff) | 
| 1246 | thus ?thesis using k k' by auto | |
| 1247 | qed | |
| 1248 | ||
| 1249 | lemma zdvd_zdiffD: "k dvd m - n ==> k dvd n ==> k dvd (m::int)" | |
| 58649 
a62065b5e1e2
generalized and consolidated some theorems concerning divisibility
 haftmann parents: 
58512diff
changeset | 1250 | using dvd_add_right_iff [of k "- n" m] by simp | 
| 33320 | 1251 | |
| 1252 | 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 | 1253 | using dvd_add_times_triv_right_iff [of k n m] by (simp add: ac_simps) | 
| 33320 | 1254 | |
| 1255 | lemma dvd_imp_le_int: | |
| 1256 | fixes d i :: int | |
| 1257 | assumes "i \<noteq> 0" and "d dvd i" | |
| 1258 | shows "\<bar>d\<bar> \<le> \<bar>i\<bar>" | |
| 1259 | proof - | |
| 1260 | from `d dvd i` obtain k where "i = d * k" .. | |
| 1261 | with `i \<noteq> 0` have "k \<noteq> 0" by auto | |
| 1262 | then have "1 \<le> \<bar>k\<bar>" and "0 \<le> \<bar>d\<bar>" by auto | |
| 1263 | then have "\<bar>d\<bar> * 1 \<le> \<bar>d\<bar> * \<bar>k\<bar>" by (rule mult_left_mono) | |
| 1264 | with `i = d * k` show ?thesis by (simp add: abs_mult) | |
| 1265 | qed | |
| 1266 | ||
| 1267 | lemma zdvd_not_zless: | |
| 1268 | fixes m n :: int | |
| 1269 | assumes "0 < m" and "m < n" | |
| 1270 | shows "\<not> n dvd m" | |
| 1271 | proof | |
| 1272 | from assms have "0 < n" by auto | |
| 1273 | assume "n dvd m" then obtain k where k: "m = n * k" .. | |
| 1274 | with `0 < m` have "0 < n * k" by auto | |
| 1275 | with `0 < n` have "0 < k" by (simp add: zero_less_mult_iff) | |
| 1276 | with k `0 < n` `m < n` have "n * k < n * 1" by simp | |
| 1277 | with `0 < n` `0 < k` show False unfolding mult_less_cancel_left by auto | |
| 1278 | qed | |
| 1279 | ||
| 1280 | lemma zdvd_mult_cancel: assumes d:"k * m dvd k * n" and kz:"k \<noteq> (0::int)" | |
| 1281 | shows "m dvd n" | |
| 1282 | proof- | |
| 1283 | from d obtain h where h: "k*n = k*m * h" unfolding dvd_def by blast | |
| 1284 |   {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 | 1285 | with h have False by (simp add: mult.assoc)} | 
| 33320 | 1286 | hence "n = m * h" by blast | 
| 1287 | thus ?thesis by simp | |
| 1288 | qed | |
| 1289 | ||
| 1290 | theorem zdvd_int: "(x dvd y) = (int x dvd int y)" | |
| 1291 | proof - | |
| 1292 | have "\<And>k. int y = int x * k \<Longrightarrow> x dvd y" | |
| 1293 | proof - | |
| 1294 | fix k | |
| 1295 | assume A: "int y = int x * k" | |
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1296 | then show "x dvd y" | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1297 | proof (cases k) | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1298 | case (nonneg n) | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1299 | with A have "y = x * n" by (simp add: of_nat_mult [symmetric]) | 
| 33320 | 1300 | then show ?thesis .. | 
| 1301 | next | |
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1302 | case (neg n) | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1303 | with A have "int y = int x * (- int (Suc n))" by simp | 
| 33320 | 1304 | also have "\<dots> = - (int x * int (Suc n))" by (simp only: mult_minus_right) | 
| 1305 | also have "\<dots> = - int (x * Suc n)" by (simp only: of_nat_mult [symmetric]) | |
| 1306 | finally have "- int (x * Suc n) = int y" .. | |
| 1307 | then show ?thesis by (simp only: negative_eq_positive) auto | |
| 1308 | qed | |
| 1309 | qed | |
| 1310 | then show ?thesis by (auto elim!: dvdE simp only: dvd_triv_left of_nat_mult) | |
| 1311 | qed | |
| 1312 | ||
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1313 | lemma zdvd1_eq[simp]: "(x::int) dvd 1 = (\<bar>x\<bar> = 1)" | 
| 33320 | 1314 | proof | 
| 1315 | assume d: "x dvd 1" hence "int (nat \<bar>x\<bar>) dvd int (nat 1)" by simp | |
| 1316 | hence "nat \<bar>x\<bar> dvd 1" by (simp add: zdvd_int) | |
| 1317 | hence "nat \<bar>x\<bar> = 1" by simp | |
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1318 | thus "\<bar>x\<bar> = 1" by (cases "x < 0") auto | 
| 33320 | 1319 | next | 
| 1320 | assume "\<bar>x\<bar>=1" | |
| 1321 | then have "x = 1 \<or> x = -1" by auto | |
| 1322 | then show "x dvd 1" by (auto intro: dvdI) | |
| 1323 | qed | |
| 1324 | ||
| 1325 | lemma zdvd_mult_cancel1: | |
| 1326 | assumes mp:"m \<noteq>(0::int)" shows "(m * n dvd m) = (\<bar>n\<bar> = 1)" | |
| 1327 | proof | |
| 1328 | 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 | 1329 | by (cases "n >0") (auto simp add: minus_equation_iff) | 
| 33320 | 1330 | next | 
| 1331 | assume H: "m * n dvd m" hence H2: "m * n dvd m * 1" by simp | |
| 1332 | from zdvd_mult_cancel[OF H2 mp] show "\<bar>n\<bar> = 1" by (simp only: zdvd1_eq) | |
| 1333 | qed | |
| 1334 | ||
| 1335 | lemma int_dvd_iff: "(int m dvd z) = (m dvd nat (abs z))" | |
| 1336 | unfolding zdvd_int by (cases "z \<ge> 0") simp_all | |
| 1337 | ||
| 1338 | lemma dvd_int_iff: "(z dvd int m) = (nat (abs z) dvd m)" | |
| 1339 | unfolding zdvd_int by (cases "z \<ge> 0") simp_all | |
| 1340 | ||
| 58650 | 1341 | lemma dvd_int_unfold_dvd_nat: | 
| 1342 | "k dvd l \<longleftrightarrow> nat \<bar>k\<bar> dvd nat \<bar>l\<bar>" | |
| 1343 | unfolding dvd_int_iff [symmetric] by simp | |
| 1344 | ||
| 33320 | 1345 | lemma nat_dvd_iff: "(nat z dvd m) = (if 0 \<le> z then (z dvd int m) else m = 0)" | 
| 1346 | by (auto simp add: dvd_int_iff) | |
| 1347 | ||
| 33341 | 1348 | lemma eq_nat_nat_iff: | 
| 1349 | "0 \<le> z \<Longrightarrow> 0 \<le> z' \<Longrightarrow> nat z = nat z' \<longleftrightarrow> z = z'" | |
| 1350 | by (auto elim!: nonneg_eq_int) | |
| 1351 | ||
| 1352 | lemma nat_power_eq: | |
| 1353 | "0 \<le> z \<Longrightarrow> nat (z ^ n) = nat z ^ n" | |
| 1354 | by (induct n) (simp_all add: nat_mult_distrib) | |
| 1355 | ||
| 33320 | 1356 | 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 | 1357 | apply (cases n) | 
| 33320 | 1358 | apply (auto simp add: dvd_int_iff) | 
| 42676 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1359 | apply (cases z) | 
| 33320 | 1360 | apply (auto simp add: dvd_imp_le) | 
| 1361 | done | |
| 1362 | ||
| 36749 | 1363 | lemma zdvd_period: | 
| 1364 | fixes a d :: int | |
| 1365 | assumes "a dvd d" | |
| 1366 | shows "a dvd (x + t) \<longleftrightarrow> a dvd ((x + c * d) + t)" | |
| 1367 | proof - | |
| 1368 | 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 | 1369 | show ?thesis | 
| 
8724f20bf69c
proper case_names for int_cases, int_of_nat_induct;
 wenzelm parents: 
42411diff
changeset | 1370 | proof | 
| 36749 | 1371 | assume "a dvd (x + t)" | 
| 1372 | then obtain l where "x + t = a * l" by (rule dvdE) | |
| 1373 | then have "x = a * l - t" by simp | |
| 1374 | with `d = a * k` show "a dvd x + c * d + t" by simp | |
| 1375 | next | |
| 1376 | assume "a dvd x + c * d + t" | |
| 1377 | then obtain l where "x + c * d + t = a * l" by (rule dvdE) | |
| 1378 | then have "x = a * l - c * d - t" by simp | |
| 1379 | with `d = a * k` show "a dvd (x + t)" by simp | |
| 1380 | qed | |
| 1381 | qed | |
| 1382 | ||
| 33320 | 1383 | |
| 46756 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 1384 | subsection {* Finiteness of intervals *}
 | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 1385 | |
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 1386 | 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 | 1387 | proof (cases "a <= b") | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 1388 | case True | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 1389 | from this show ?thesis | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 1390 | 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 | 1391 | case base | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 1392 |     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 | 1393 | from this show ?case by simp | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 1394 | next | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 1395 | case (step b) | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 1396 |     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 | 1397 | 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 | 1398 | qed | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 1399 | next | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 1400 | case False from this show ?thesis | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 1401 | 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 | 1402 | qed | 
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 1403 | |
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 1404 | 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 | 1405 | 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 | 1406 | |
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 1407 | 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 | 1408 | 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 | 1409 | |
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 1410 | 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 | 1411 | 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 | 1412 | |
| 
faf62905cd53
adding finiteness of intervals on integer sets; adding another finiteness theorem for multisets
 bulwahn parents: 
46027diff
changeset | 1413 | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1414 | subsection {* Configuration of the code generator *}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1415 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1416 | text {* Constructors *}
 | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1417 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1418 | definition Pos :: "num \<Rightarrow> int" where | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1419 | [simp, code_abbrev]: "Pos = numeral" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1420 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1421 | definition Neg :: "num \<Rightarrow> int" where | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1422 | [simp, code_abbrev]: "Neg n = - (Pos n)" | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1423 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1424 | code_datatype "0::int" Pos Neg | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1425 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1426 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1427 | text {* Auxiliary operations *}
 | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1428 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1429 | definition dup :: "int \<Rightarrow> int" where | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1430 | [simp]: "dup k = k + k" | 
| 26507 | 1431 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1432 | lemma dup_code [code]: | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1433 | "dup 0 = 0" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1434 | "dup (Pos n) = Pos (Num.Bit0 n)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1435 | "dup (Neg n) = Neg (Num.Bit0 n)" | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1436 | unfolding Pos_def Neg_def | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1437 | by (simp_all add: numeral_Bit0) | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1438 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1439 | definition sub :: "num \<Rightarrow> num \<Rightarrow> int" where | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1440 | [simp]: "sub m n = numeral m - numeral n" | 
| 26507 | 1441 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1442 | lemma sub_code [code]: | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1443 | "sub Num.One Num.One = 0" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1444 | "sub (Num.Bit0 m) Num.One = Pos (Num.BitM m)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1445 | "sub (Num.Bit1 m) Num.One = Pos (Num.Bit0 m)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1446 | "sub Num.One (Num.Bit0 n) = Neg (Num.BitM n)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1447 | "sub Num.One (Num.Bit1 n) = Neg (Num.Bit0 n)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1448 | "sub (Num.Bit0 m) (Num.Bit0 n) = dup (sub m n)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1449 | "sub (Num.Bit1 m) (Num.Bit1 n) = dup (sub m n)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1450 | "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 | 1451 | "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 | 1452 | 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 | 1453 | apply (simp_all only: algebra_simps minus_diff_eq) | 
| 
b1d955791529
more simplification rules on unary and binary minus
 haftmann parents: 
54223diff
changeset | 1454 | apply (simp_all only: add.commute [of _ "- (numeral n + numeral n)"]) | 
| 
b1d955791529
more simplification rules on unary and binary minus
 haftmann parents: 
54223diff
changeset | 1455 | apply (simp_all only: minus_add add.assoc left_minus) | 
| 
b1d955791529
more simplification rules on unary and binary minus
 haftmann parents: 
54223diff
changeset | 1456 | done | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1457 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1458 | text {* Implementations *}
 | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1459 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1460 | lemma one_int_code [code, code_unfold]: | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1461 | "1 = Pos Num.One" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1462 | by simp | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1463 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1464 | lemma plus_int_code [code]: | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1465 | "k + 0 = (k::int)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1466 | "0 + l = (l::int)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1467 | "Pos m + Pos n = Pos (m + n)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1468 | "Pos m + Neg n = sub m n" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1469 | "Neg m + Pos n = sub n m" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1470 | "Neg m + Neg n = Neg (m + n)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1471 | by simp_all | 
| 26507 | 1472 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1473 | lemma uminus_int_code [code]: | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1474 | "uminus 0 = (0::int)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1475 | "uminus (Pos m) = Neg m" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1476 | "uminus (Neg m) = Pos m" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1477 | by simp_all | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1478 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1479 | lemma minus_int_code [code]: | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1480 | "k - 0 = (k::int)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1481 | "0 - l = uminus (l::int)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1482 | "Pos m - Pos n = sub m n" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1483 | "Pos m - Neg n = Pos (m + n)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1484 | "Neg m - Pos n = Neg (m + n)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1485 | "Neg m - Neg n = sub n m" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1486 | by simp_all | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1487 | |
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1488 | lemma times_int_code [code]: | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1489 | "k * 0 = (0::int)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1490 | "0 * l = (0::int)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1491 | "Pos m * Pos n = Pos (m * n)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1492 | "Pos m * Neg n = Neg (m * n)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1493 | "Neg m * Pos n = Neg (m * n)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1494 | "Neg m * Neg n = Pos (m * n)" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1495 | by simp_all | 
| 26507 | 1496 | |
| 38857 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
37887diff
changeset | 1497 | instantiation int :: equal | 
| 26507 | 1498 | begin | 
| 1499 | ||
| 37767 | 1500 | definition | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1501 | "HOL.equal k l \<longleftrightarrow> k = (l::int)" | 
| 38857 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
37887diff
changeset | 1502 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1503 | instance by default (rule equal_int_def) | 
| 26507 | 1504 | |
| 1505 | end | |
| 1506 | ||
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1507 | lemma equal_int_code [code]: | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1508 | "HOL.equal 0 (0::int) \<longleftrightarrow> True" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1509 | "HOL.equal 0 (Pos l) \<longleftrightarrow> False" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1510 | "HOL.equal 0 (Neg l) \<longleftrightarrow> False" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1511 | "HOL.equal (Pos k) 0 \<longleftrightarrow> False" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1512 | "HOL.equal (Pos k) (Pos l) \<longleftrightarrow> HOL.equal k l" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1513 | "HOL.equal (Pos k) (Neg l) \<longleftrightarrow> False" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1514 | "HOL.equal (Neg k) 0 \<longleftrightarrow> False" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1515 | "HOL.equal (Neg k) (Pos l) \<longleftrightarrow> False" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1516 | "HOL.equal (Neg k) (Neg l) \<longleftrightarrow> HOL.equal k l" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1517 | by (auto simp add: equal) | 
| 26507 | 1518 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1519 | lemma equal_int_refl [code nbe]: | 
| 38857 
97775f3e8722
renamed class/constant eq to equal; tuned some instantiations
 haftmann parents: 
37887diff
changeset | 1520 | "HOL.equal (k::int) k \<longleftrightarrow> True" | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1521 | by (fact equal_refl) | 
| 26507 | 1522 | |
| 28562 | 1523 | lemma less_eq_int_code [code]: | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1524 | "0 \<le> (0::int) \<longleftrightarrow> True" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1525 | "0 \<le> Pos l \<longleftrightarrow> True" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1526 | "0 \<le> Neg l \<longleftrightarrow> False" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1527 | "Pos k \<le> 0 \<longleftrightarrow> False" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1528 | "Pos k \<le> Pos l \<longleftrightarrow> k \<le> l" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1529 | "Pos k \<le> Neg l \<longleftrightarrow> False" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1530 | "Neg k \<le> 0 \<longleftrightarrow> True" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1531 | "Neg k \<le> Pos l \<longleftrightarrow> True" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1532 | "Neg k \<le> Neg l \<longleftrightarrow> l \<le> k" | 
| 28958 | 1533 | by simp_all | 
| 26507 | 1534 | |
| 28562 | 1535 | lemma less_int_code [code]: | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1536 | "0 < (0::int) \<longleftrightarrow> False" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1537 | "0 < Pos l \<longleftrightarrow> True" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1538 | "0 < Neg l \<longleftrightarrow> False" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1539 | "Pos k < 0 \<longleftrightarrow> False" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1540 | "Pos k < Pos l \<longleftrightarrow> k < l" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1541 | "Pos k < Neg l \<longleftrightarrow> False" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1542 | "Neg k < 0 \<longleftrightarrow> True" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1543 | "Neg k < Pos l \<longleftrightarrow> True" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1544 | "Neg k < Neg l \<longleftrightarrow> l < k" | 
| 28958 | 1545 | by simp_all | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1546 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1547 | lemma nat_code [code]: | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1548 | "nat (Int.Neg k) = 0" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1549 | "nat 0 = 0" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1550 | "nat (Int.Pos k) = nat_of_num k" | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1551 | by (simp_all add: nat_of_num_numeral) | 
| 25928 | 1552 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1553 | lemma (in ring_1) of_int_code [code]: | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1554 | "of_int (Int.Neg k) = - numeral k" | 
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1555 | "of_int 0 = 0" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1556 | "of_int (Int.Pos k) = numeral k" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1557 | by simp_all | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1558 | |
| 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 | text {* Serializer setup *}
 | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1561 | |
| 52435 
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
 haftmann parents: 
51994diff
changeset | 1562 | code_identifier | 
| 
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
 haftmann parents: 
51994diff
changeset | 1563 | 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 | 1564 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1565 | quickcheck_params [default_type = int] | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1566 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46756diff
changeset | 1567 | hide_const (open) Pos Neg sub dup | 
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1568 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1569 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1570 | subsection {* Legacy theorems *}
 | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1571 | |
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1572 | lemmas inj_int = inj_of_nat [where 'a=int] | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1573 | lemmas zadd_int = of_nat_add [where 'a=int, symmetric] | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1574 | lemmas int_mult = of_nat_mult [where 'a=int] | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1575 | lemmas zmult_int = of_nat_mult [where 'a=int, symmetric] | 
| 45607 | 1576 | 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 | 1577 | lemmas zless_int = of_nat_less_iff [where 'a=int] | 
| 45607 | 1578 | 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 | 1579 | 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 | 1580 | lemmas zero_zle_int = of_nat_0_le_iff [where 'a=int] | 
| 45607 | 1581 | 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 | 1582 | lemmas int_0 = of_nat_0 [where 'a=int] | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1583 | lemmas int_1 = of_nat_1 [where 'a=int] | 
| 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1584 | 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 | 1585 | lemmas int_numeral = of_nat_numeral [where 'a=int] | 
| 45607 | 1586 | 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 | 1587 | 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 | 1588 | lemmas zdiff_int = of_nat_diff [where 'a=int, symmetric] | 
| 47255 
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
 huffman parents: 
47228diff
changeset | 1589 | lemmas zpower_numeral_even = power_numeral_even [where 'a=int] | 
| 
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
 huffman parents: 
47228diff
changeset | 1590 | lemmas zpower_numeral_odd = power_numeral_odd [where 'a=int] | 
| 30960 | 1591 | |
| 31015 | 1592 | lemma zpower_zpower: | 
| 1593 | "(x ^ y) ^ z = (x ^ (y * z)::int)" | |
| 1594 | by (rule power_mult [symmetric]) | |
| 1595 | ||
| 1596 | lemma int_power: | |
| 1597 | "int (m ^ n) = int m ^ n" | |
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54249diff
changeset | 1598 | by (fact of_nat_power) | 
| 31015 | 1599 | |
| 1600 | lemmas zpower_int = int_power [symmetric] | |
| 1601 | ||
| 48045 | 1602 | text {* De-register @{text "int"} as a quotient type: *}
 | 
| 1603 | ||
| 53652 
18fbca265e2e
use lifting_forget for deregistering numeric types as a quotient type
 kuncar parents: 
53065diff
changeset | 1604 | lifting_update int.lifting | 
| 
18fbca265e2e
use lifting_forget for deregistering numeric types as a quotient type
 kuncar parents: 
53065diff
changeset | 1605 | lifting_forget int.lifting | 
| 48045 | 1606 | |
| 25919 
8b1c0d434824
joined theories IntDef, Numeral, IntArith to theory Int
 haftmann parents: diff
changeset | 1607 | end |