| author | wenzelm | 
| Sat, 29 Mar 2008 13:03:05 +0100 | |
| changeset 26475 | 3cc1e48d0ce1 | 
| parent 26335 | 961bbcc9d85b | 
| child 26748 | 4d51ddd6aa5c | 
| permissions | -rw-r--r-- | 
| 923 | 1 | (* Title: HOL/Nat.thy | 
| 2 | ID: $Id$ | |
| 21243 | 3 | Author: Tobias Nipkow and Lawrence C Paulson and Markus Wenzel | 
| 923 | 4 | |
| 9436 
62bb04ab4b01
rearranged setup of arithmetic procedures, avoiding global reference values;
 wenzelm parents: 
7702diff
changeset | 5 | Type "nat" is a linear order, and a datatype; arithmetic operators + - | 
| 
62bb04ab4b01
rearranged setup of arithmetic procedures, avoiding global reference values;
 wenzelm parents: 
7702diff
changeset | 6 | and * (for div, mod and dvd, see theory Divides). | 
| 923 | 7 | *) | 
| 8 | ||
| 13449 | 9 | header {* Natural numbers *}
 | 
| 10 | ||
| 15131 | 11 | theory Nat | 
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 12 | imports Inductive Ring_and_Field | 
| 23263 | 13 | uses | 
| 14 | "~~/src/Tools/rat.ML" | |
| 15 | "~~/src/Provers/Arith/cancel_sums.ML" | |
| 16 |   ("arith_data.ML")
 | |
| 24091 | 17 | "~~/src/Provers/Arith/fast_lin_arith.ML" | 
| 18 |   ("Tools/lin_arith.ML")
 | |
| 15131 | 19 | begin | 
| 13449 | 20 | |
| 21 | subsection {* Type @{text ind} *}
 | |
| 22 | ||
| 23 | typedecl ind | |
| 24 | ||
| 19573 | 25 | axiomatization | 
| 26 | Zero_Rep :: ind and | |
| 27 | Suc_Rep :: "ind => ind" | |
| 28 | where | |
| 13449 | 29 |   -- {* the axiom of infinity in 2 parts *}
 | 
| 19573 | 30 | inj_Suc_Rep: "inj Suc_Rep" and | 
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 31 | Suc_Rep_not_Zero_Rep: "Suc_Rep x \<noteq> Zero_Rep" | 
| 19573 | 32 | |
| 13449 | 33 | |
| 34 | subsection {* Type nat *}
 | |
| 35 | ||
| 36 | text {* Type definition *}
 | |
| 37 | ||
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 38 | inductive Nat :: "ind \<Rightarrow> bool" | 
| 22262 | 39 | where | 
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 40 | Zero_RepI: "Nat Zero_Rep" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 41 | | Suc_RepI: "Nat i \<Longrightarrow> Nat (Suc_Rep i)" | 
| 13449 | 42 | |
| 43 | global | |
| 44 | ||
| 45 | typedef (open Nat) | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 46 | nat = "Collect Nat" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 47 | by (rule exI, rule CollectI, rule Nat.Zero_RepI) | 
| 13449 | 48 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 49 | constdefs | 
| 13449 | 50 | Suc :: "nat => nat" | 
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 51 | Suc_def: "Suc == (%n. Abs_Nat (Suc_Rep (Rep_Nat n)))" | 
| 13449 | 52 | |
| 53 | local | |
| 54 | ||
| 25510 | 55 | instantiation nat :: zero | 
| 56 | begin | |
| 57 | ||
| 58 | definition Zero_nat_def [code func del]: | |
| 59 | "0 = Abs_Nat Zero_Rep" | |
| 60 | ||
| 61 | instance .. | |
| 62 | ||
| 63 | end | |
| 24995 | 64 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 65 | lemma nat_induct: "P 0 ==> (!!n. P n ==> P (Suc n)) ==> P n" | 
| 13449 | 66 | apply (unfold Zero_nat_def Suc_def) | 
| 67 |   apply (rule Rep_Nat_inverse [THEN subst]) -- {* types force good instantiation *}
 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 68 | apply (erule Rep_Nat [THEN CollectD, THEN Nat.induct]) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 69 | apply (iprover elim: Abs_Nat_inverse [OF CollectI, THEN subst]) | 
| 13449 | 70 | done | 
| 71 | ||
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 72 | lemma Suc_not_Zero [iff]: "Suc m \<noteq> 0" | 
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 73 | by (simp add: Zero_nat_def Suc_def | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 74 | Abs_Nat_inject Rep_Nat [THEN CollectD] Suc_RepI Zero_RepI | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 75 | Suc_Rep_not_Zero_Rep) | 
| 13449 | 76 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 77 | lemma Zero_not_Suc [iff]: "0 \<noteq> Suc m" | 
| 13449 | 78 | by (rule not_sym, rule Suc_not_Zero not_sym) | 
| 79 | ||
| 16733 
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
 nipkow parents: 
16635diff
changeset | 80 | lemma inj_Suc[simp]: "inj_on Suc N" | 
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 81 | by (simp add: Suc_def inj_on_def Abs_Nat_inject Rep_Nat [THEN CollectD] Suc_RepI | 
| 22718 | 82 | inj_Suc_Rep [THEN inj_eq] Rep_Nat_inject) | 
| 13449 | 83 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 84 | lemma Suc_Suc_eq [iff]: "Suc m = Suc n \<longleftrightarrow> m = n" | 
| 15413 | 85 | by (rule inj_Suc [THEN inj_eq]) | 
| 13449 | 86 | |
| 5188 
633ec5f6c155
Declaration of type 'nat' as a datatype (this allows usage of
 berghofe parents: 
4640diff
changeset | 87 | rep_datatype nat | 
| 13449 | 88 | distinct Suc_not_Zero Zero_not_Suc | 
| 89 | inject Suc_Suc_eq | |
| 21411 | 90 | induction nat_induct | 
| 91 | ||
| 92 | declare nat.induct [case_names 0 Suc, induct type: nat] | |
| 93 | declare nat.exhaust [case_names 0 Suc, cases type: nat] | |
| 13449 | 94 | |
| 21672 | 95 | lemmas nat_rec_0 = nat.recs(1) | 
| 96 | and nat_rec_Suc = nat.recs(2) | |
| 97 | ||
| 98 | lemmas nat_case_0 = nat.cases(1) | |
| 99 | and nat_case_Suc = nat.cases(2) | |
| 100 | ||
| 24995 | 101 | |
| 102 | text {* Injectiveness and distinctness lemmas *}
 | |
| 103 | ||
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 104 | lemma Suc_neq_Zero: "Suc m = 0 \<Longrightarrow> R" | 
| 25162 | 105 | by (rule notE, rule Suc_not_Zero) | 
| 24995 | 106 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 107 | lemma Zero_neq_Suc: "0 = Suc m \<Longrightarrow> R" | 
| 25162 | 108 | by (rule Suc_neq_Zero, erule sym) | 
| 24995 | 109 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 110 | lemma Suc_inject: "Suc x = Suc y \<Longrightarrow> x = y" | 
| 25162 | 111 | by (rule inj_Suc [THEN injD]) | 
| 24995 | 112 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 113 | lemma n_not_Suc_n: "n \<noteq> Suc n" | 
| 25162 | 114 | by (induct n) simp_all | 
| 13449 | 115 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 116 | lemma Suc_n_not_n: "Suc n \<noteq> n" | 
| 25162 | 117 | by (rule not_sym, rule n_not_Suc_n) | 
| 13449 | 118 | |
| 119 | text {* A special form of induction for reasoning
 | |
| 120 |   about @{term "m < n"} and @{term "m - n"} *}
 | |
| 121 | ||
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 122 | lemma diff_induct: "(!!x. P x 0) ==> (!!y. P 0 (Suc y)) ==> | 
| 13449 | 123 | (!!x y. P x y ==> P (Suc x) (Suc y)) ==> P m n" | 
| 14208 | 124 | apply (rule_tac x = m in spec) | 
| 15251 | 125 | apply (induct n) | 
| 13449 | 126 | prefer 2 | 
| 127 | apply (rule allI) | |
| 17589 | 128 | apply (induct_tac x, iprover+) | 
| 13449 | 129 | done | 
| 130 | ||
| 24995 | 131 | |
| 132 | subsection {* Arithmetic operators *}
 | |
| 133 | ||
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 134 | instantiation nat :: "{minus, comm_monoid_add}"
 | 
| 25571 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25563diff
changeset | 135 | begin | 
| 24995 | 136 | |
| 25571 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25563diff
changeset | 137 | primrec plus_nat | 
| 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25563diff
changeset | 138 | where | 
| 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25563diff
changeset | 139 | add_0: "0 + n = (n\<Colon>nat)" | 
| 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25563diff
changeset | 140 | | add_Suc: "Suc m + n = Suc (m + n)" | 
| 24995 | 141 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 142 | lemma add_0_right [simp]: "m + 0 = (m::nat)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 143 | by (induct m) simp_all | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 144 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 145 | lemma add_Suc_right [simp]: "m + Suc n = Suc (m + n)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 146 | by (induct m) simp_all | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 147 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 148 | lemma add_Suc_shift [code]: "Suc m + n = m + Suc n" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 149 | by simp | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 150 | |
| 25571 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25563diff
changeset | 151 | primrec minus_nat | 
| 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25563diff
changeset | 152 | where | 
| 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25563diff
changeset | 153 | diff_0: "m - 0 = (m\<Colon>nat)" | 
| 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25563diff
changeset | 154 | | diff_Suc: "m - Suc n = (case m - n of 0 => 0 | Suc k => k)" | 
| 24995 | 155 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 156 | declare diff_Suc [simp del, code del] | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 157 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 158 | lemma diff_0_eq_0 [simp, code]: "0 - n = (0::nat)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 159 | by (induct n) (simp_all add: diff_Suc) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 160 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 161 | lemma diff_Suc_Suc [simp, code]: "Suc m - Suc n = m - n" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 162 | by (induct n) (simp_all add: diff_Suc) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 163 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 164 | instance proof | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 165 | fix n m q :: nat | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 166 | show "(n + m) + q = n + (m + q)" by (induct n) simp_all | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 167 | show "n + m = m + n" by (induct n) simp_all | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 168 | show "0 + n = n" by simp | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 169 | qed | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 170 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 171 | end | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 172 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 173 | instantiation nat :: comm_semiring_1_cancel | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 174 | begin | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 175 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 176 | definition | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 177 | One_nat_def [simp]: "1 = Suc 0" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 178 | |
| 25571 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25563diff
changeset | 179 | primrec times_nat | 
| 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25563diff
changeset | 180 | where | 
| 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25563diff
changeset | 181 | mult_0: "0 * n = (0\<Colon>nat)" | 
| 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25563diff
changeset | 182 | | mult_Suc: "Suc m * n = n + (m * n)" | 
| 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25563diff
changeset | 183 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 184 | lemma mult_0_right [simp]: "(m::nat) * 0 = 0" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 185 | by (induct m) simp_all | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 186 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 187 | lemma mult_Suc_right [simp]: "m * Suc n = m + (m * n)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 188 | by (induct m) (simp_all add: add_left_commute) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 189 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 190 | lemma add_mult_distrib: "(m + n) * k = (m * k) + ((n * k)::nat)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 191 | by (induct m) (simp_all add: add_assoc) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 192 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 193 | instance proof | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 194 | fix n m q :: nat | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 195 | show "0 \<noteq> (1::nat)" by simp | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 196 | show "1 * n = n" by simp | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 197 | show "n * m = m * n" by (induct n) simp_all | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 198 | show "(n * m) * q = n * (m * q)" by (induct n) (simp_all add: add_mult_distrib) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 199 | show "(n + m) * q = n * q + m * q" by (rule add_mult_distrib) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 200 | assume "n + m = n + q" thus "m = q" by (induct n) simp_all | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 201 | qed | 
| 25571 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25563diff
changeset | 202 | |
| 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25563diff
changeset | 203 | end | 
| 24995 | 204 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 205 | subsubsection {* Addition *}
 | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 206 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 207 | lemma nat_add_assoc: "(m + n) + k = m + ((n + k)::nat)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 208 | by (rule add_assoc) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 209 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 210 | lemma nat_add_commute: "m + n = n + (m::nat)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 211 | by (rule add_commute) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 212 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 213 | lemma nat_add_left_commute: "x + (y + z) = y + ((x + z)::nat)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 214 | by (rule add_left_commute) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 215 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 216 | lemma nat_add_left_cancel [simp]: "(k + m = k + n) = (m = (n::nat))" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 217 | by (rule add_left_cancel) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 218 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 219 | lemma nat_add_right_cancel [simp]: "(m + k = n + k) = (m=(n::nat))" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 220 | by (rule add_right_cancel) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 221 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 222 | text {* Reasoning about @{text "m + 0 = 0"}, etc. *}
 | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 223 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 224 | lemma add_is_0 [iff]: | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 225 | fixes m n :: nat | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 226 | shows "(m + n = 0) = (m = 0 & n = 0)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 227 | by (cases m) simp_all | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 228 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 229 | lemma add_is_1: | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 230 | "(m+n= Suc 0) = (m= Suc 0 & n=0 | m=0 & n= Suc 0)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 231 | by (cases m) simp_all | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 232 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 233 | lemma one_is_add: | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 234 | "(Suc 0 = m + n) = (m = Suc 0 & n = 0 | m = 0 & n = Suc 0)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 235 | by (rule trans, rule eq_commute, rule add_is_1) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 236 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 237 | lemma add_eq_self_zero: | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 238 | fixes m n :: nat | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 239 | shows "m + n = m \<Longrightarrow> n = 0" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 240 | by (induct m) simp_all | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 241 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 242 | lemma inj_on_add_nat[simp]: "inj_on (%n::nat. n+k) N" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 243 | apply (induct k) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 244 | apply simp | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 245 | apply(drule comp_inj_on[OF _ inj_Suc]) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 246 | apply (simp add:o_def) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 247 | done | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 248 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 249 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 250 | subsubsection {* Difference *}
 | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 251 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 252 | lemma diff_self_eq_0 [simp]: "(m\<Colon>nat) - m = 0" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 253 | by (induct m) simp_all | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 254 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 255 | lemma diff_diff_left: "(i::nat) - j - k = i - (j + k)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 256 | by (induct i j rule: diff_induct) simp_all | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 257 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 258 | lemma Suc_diff_diff [simp]: "(Suc m - n) - Suc k = m - n - k" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 259 | by (simp add: diff_diff_left) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 260 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 261 | lemma diff_commute: "(i::nat) - j - k = i - k - j" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 262 | by (simp add: diff_diff_left add_commute) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 263 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 264 | lemma diff_add_inverse: "(n + m) - n = (m::nat)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 265 | by (induct n) simp_all | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 266 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 267 | lemma diff_add_inverse2: "(m + n) - n = (m::nat)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 268 | by (simp add: diff_add_inverse add_commute [of m n]) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 269 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 270 | lemma diff_cancel: "(k + m) - (k + n) = m - (n::nat)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 271 | by (induct k) simp_all | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 272 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 273 | lemma diff_cancel2: "(m + k) - (n + k) = m - (n::nat)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 274 | by (simp add: diff_cancel add_commute) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 275 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 276 | lemma diff_add_0: "n - (n + m) = (0::nat)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 277 | by (induct n) simp_all | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 278 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 279 | text {* Difference distributes over multiplication *}
 | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 280 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 281 | lemma diff_mult_distrib: "((m::nat) - n) * k = (m * k) - (n * k)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 282 | by (induct m n rule: diff_induct) (simp_all add: diff_cancel) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 283 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 284 | lemma diff_mult_distrib2: "k * ((m::nat) - n) = (k * m) - (k * n)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 285 | by (simp add: diff_mult_distrib mult_commute [of k]) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 286 |   -- {* NOT added as rewrites, since sometimes they are used from right-to-left *}
 | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 287 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 288 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 289 | subsubsection {* Multiplication *}
 | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 290 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 291 | lemma nat_mult_assoc: "(m * n) * k = m * ((n * k)::nat)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 292 | by (rule mult_assoc) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 293 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 294 | lemma nat_mult_commute: "m * n = n * (m::nat)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 295 | by (rule mult_commute) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 296 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 297 | lemma add_mult_distrib2: "k * (m + n) = (k * m) + ((k * n)::nat)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 298 | by (rule right_distrib) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 299 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 300 | lemma mult_is_0 [simp]: "((m::nat) * n = 0) = (m=0 | n=0)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 301 | by (induct m) auto | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 302 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 303 | lemmas nat_distrib = | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 304 | add_mult_distrib add_mult_distrib2 diff_mult_distrib diff_mult_distrib2 | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 305 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 306 | lemma mult_eq_1_iff [simp]: "(m * n = Suc 0) = (m = 1 & n = 1)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 307 | apply (induct m) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 308 | apply simp | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 309 | apply (induct n) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 310 | apply auto | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 311 | done | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 312 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 313 | lemma one_eq_mult_iff [simp,noatp]: "(Suc 0 = m * n) = (m = 1 & n = 1)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 314 | apply (rule trans) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 315 | apply (rule_tac [2] mult_eq_1_iff, fastsimp) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 316 | done | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 317 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 318 | lemma mult_cancel1 [simp]: "(k * m = k * n) = (m = n | (k = (0::nat)))" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 319 | proof - | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 320 | have "k \<noteq> 0 \<Longrightarrow> k * m = k * n \<Longrightarrow> m = n" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 321 | proof (induct n arbitrary: m) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 322 | case 0 then show "m = 0" by simp | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 323 | next | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 324 | case (Suc n) then show "m = Suc n" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 325 | by (cases m) (simp_all add: eq_commute [of "0"]) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 326 | qed | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 327 | then show ?thesis by auto | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 328 | qed | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 329 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 330 | lemma mult_cancel2 [simp]: "(m * k = n * k) = (m = n | (k = (0::nat)))" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 331 | by (simp add: mult_commute) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 332 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 333 | lemma Suc_mult_cancel1: "(Suc k * m = Suc k * n) = (m = n)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 334 | by (subst mult_cancel1) simp | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 335 | |
| 24995 | 336 | |
| 337 | subsection {* Orders on @{typ nat} *}
 | |
| 338 | ||
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 339 | subsubsection {* Operation definition *}
 | 
| 24995 | 340 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 341 | instantiation nat :: linorder | 
| 25510 | 342 | begin | 
| 343 | ||
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 344 | primrec less_eq_nat where | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 345 | "(0\<Colon>nat) \<le> n \<longleftrightarrow> True" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 346 | | "Suc m \<le> n \<longleftrightarrow> (case n of 0 \<Rightarrow> False | Suc n \<Rightarrow> m \<le> n)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 347 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 348 | declare less_eq_nat.simps [simp del, code del] | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 349 | lemma [code]: "(0\<Colon>nat) \<le> n \<longleftrightarrow> True" by (simp add: less_eq_nat.simps) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 350 | lemma le0 [iff]: "0 \<le> (n\<Colon>nat)" by (simp add: less_eq_nat.simps) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 351 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 352 | definition less_nat where | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 353 | less_eq_Suc_le [code func del]: "n < m \<longleftrightarrow> Suc n \<le> m" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 354 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 355 | lemma Suc_le_mono [iff]: "Suc n \<le> Suc m \<longleftrightarrow> n \<le> m" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 356 | by (simp add: less_eq_nat.simps(2)) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 357 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 358 | lemma Suc_le_eq [code]: "Suc m \<le> n \<longleftrightarrow> m < n" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 359 | unfolding less_eq_Suc_le .. | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 360 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 361 | lemma le_0_eq [iff]: "(n\<Colon>nat) \<le> 0 \<longleftrightarrow> n = 0" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 362 | by (induct n) (simp_all add: less_eq_nat.simps(2)) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 363 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 364 | lemma not_less0 [iff]: "\<not> n < (0\<Colon>nat)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 365 | by (simp add: less_eq_Suc_le) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 366 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 367 | lemma less_nat_zero_code [code]: "n < (0\<Colon>nat) \<longleftrightarrow> False" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 368 | by simp | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 369 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 370 | lemma Suc_less_eq [iff]: "Suc m < Suc n \<longleftrightarrow> m < n" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 371 | by (simp add: less_eq_Suc_le) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 372 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 373 | lemma less_Suc_eq_le [code]: "m < Suc n \<longleftrightarrow> m \<le> n" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 374 | by (simp add: less_eq_Suc_le) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 375 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 376 | lemma le_SucI: "m \<le> n \<Longrightarrow> m \<le> Suc n" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 377 | by (induct m arbitrary: n) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 378 | (simp_all add: less_eq_nat.simps(2) split: nat.splits) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 379 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 380 | lemma Suc_leD: "Suc m \<le> n \<Longrightarrow> m \<le> n" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 381 | by (cases n) (auto intro: le_SucI) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 382 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 383 | lemma less_SucI: "m < n \<Longrightarrow> m < Suc n" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 384 | by (simp add: less_eq_Suc_le) (erule Suc_leD) | 
| 24995 | 385 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 386 | lemma Suc_lessD: "Suc m < n \<Longrightarrow> m < n" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 387 | by (simp add: less_eq_Suc_le) (erule Suc_leD) | 
| 25510 | 388 | |
| 26315 
cb3badaa192e
removed redundant less_trans, less_linear, le_imp_less_or_eq, le_less_trans, less_le_trans (cf. Orderings.thy);
 wenzelm parents: 
26300diff
changeset | 389 | instance | 
| 
cb3badaa192e
removed redundant less_trans, less_linear, le_imp_less_or_eq, le_less_trans, less_le_trans (cf. Orderings.thy);
 wenzelm parents: 
26300diff
changeset | 390 | proof | 
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 391 | fix n m :: nat | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 392 | have less_imp_le: "n < m \<Longrightarrow> n \<le> m" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 393 | unfolding less_eq_Suc_le by (erule Suc_leD) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 394 | have irrefl: "\<not> m < m" by (induct m) auto | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 395 | have strict: "n \<le> m \<Longrightarrow> n \<noteq> m \<Longrightarrow> n < m" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 396 | proof (induct n arbitrary: m) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 397 | case 0 then show ?case | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 398 | by (cases m) (simp_all add: less_eq_Suc_le) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 399 | next | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 400 | case (Suc n) then show ?case | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 401 | by (cases m) (simp_all add: less_eq_Suc_le) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 402 | qed | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 403 | show "n < m \<longleftrightarrow> n \<le> m \<and> n \<noteq> m" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 404 | by (auto simp add: irrefl intro: less_imp_le strict) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 405 | next | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 406 | fix n :: nat show "n \<le> n" by (induct n) simp_all | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 407 | next | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 408 | fix n m :: nat assume "n \<le> m" and "m \<le> n" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 409 | then show "n = m" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 410 | by (induct n arbitrary: m) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 411 | (simp_all add: less_eq_nat.simps(2) split: nat.splits) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 412 | next | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 413 | fix n m q :: nat assume "n \<le> m" and "m \<le> q" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 414 | then show "n \<le> q" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 415 | proof (induct n arbitrary: m q) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 416 | case 0 show ?case by simp | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 417 | next | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 418 | case (Suc n) then show ?case | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 419 | by (simp_all (no_asm_use) add: less_eq_nat.simps(2) split: nat.splits, clarify, | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 420 | simp_all (no_asm_use) add: less_eq_nat.simps(2) split: nat.splits, clarify, | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 421 | simp_all (no_asm_use) add: less_eq_nat.simps(2) split: nat.splits) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 422 | qed | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 423 | next | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 424 | fix n m :: nat show "n \<le> m \<or> m \<le> n" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 425 | by (induct n arbitrary: m) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 426 | (simp_all add: less_eq_nat.simps(2) split: nat.splits) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 427 | qed | 
| 25510 | 428 | |
| 429 | end | |
| 13449 | 430 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 431 | subsubsection {* Introduction properties *}
 | 
| 13449 | 432 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 433 | lemma lessI [iff]: "n < Suc n" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 434 | by (simp add: less_Suc_eq_le) | 
| 13449 | 435 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 436 | lemma zero_less_Suc [iff]: "0 < Suc n" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 437 | by (simp add: less_Suc_eq_le) | 
| 13449 | 438 | |
| 439 | ||
| 440 | subsubsection {* Elimination properties *}
 | |
| 441 | ||
| 442 | lemma less_not_refl: "~ n < (n::nat)" | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 443 | by (rule order_less_irrefl) | 
| 13449 | 444 | |
| 26335 
961bbcc9d85b
removed redundant Nat.less_not_sym, Nat.less_asym;
 wenzelm parents: 
26315diff
changeset | 445 | lemma less_not_refl2: "n < m ==> m \<noteq> (n::nat)" | 
| 
961bbcc9d85b
removed redundant Nat.less_not_sym, Nat.less_asym;
 wenzelm parents: 
26315diff
changeset | 446 | by (rule not_sym) (rule less_imp_neq) | 
| 13449 | 447 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 448 | lemma less_not_refl3: "(s::nat) < t ==> s \<noteq> t" | 
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 449 | by (rule less_imp_neq) | 
| 13449 | 450 | |
| 26335 
961bbcc9d85b
removed redundant Nat.less_not_sym, Nat.less_asym;
 wenzelm parents: 
26315diff
changeset | 451 | lemma less_irrefl_nat: "(n::nat) < n ==> R" | 
| 
961bbcc9d85b
removed redundant Nat.less_not_sym, Nat.less_asym;
 wenzelm parents: 
26315diff
changeset | 452 | by (rule notE, rule less_not_refl) | 
| 13449 | 453 | |
| 454 | lemma less_zeroE: "(n::nat) < 0 ==> R" | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 455 | by (rule notE) (rule not_less0) | 
| 13449 | 456 | |
| 457 | lemma less_Suc_eq: "(m < Suc n) = (m < n | m = n)" | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 458 | unfolding less_Suc_eq_le le_less .. | 
| 13449 | 459 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 460 | lemma less_one [iff, noatp]: "(n < (1::nat)) = (n = 0)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 461 | by (simp add: less_Suc_eq) | 
| 13449 | 462 | |
| 463 | lemma less_Suc0 [iff]: "(n < Suc 0) = (n = 0)" | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 464 | by (simp add: less_Suc_eq) | 
| 13449 | 465 | |
| 466 | lemma Suc_mono: "m < n ==> Suc m < Suc n" | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 467 | by simp | 
| 13449 | 468 | |
| 14302 | 469 | text {* "Less than" is antisymmetric, sort of *}
 | 
| 470 | lemma less_antisym: "\<lbrakk> \<not> n < m; n < Suc m \<rbrakk> \<Longrightarrow> m = n" | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 471 | unfolding not_less less_Suc_eq_le by (rule antisym) | 
| 14302 | 472 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 473 | lemma nat_neq_iff: "((m::nat) \<noteq> n) = (m < n | n < m)" | 
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 474 | by (rule linorder_neq_iff) | 
| 13449 | 475 | |
| 476 | lemma nat_less_cases: assumes major: "(m::nat) < n ==> P n m" | |
| 477 | and eqCase: "m = n ==> P n m" and lessCase: "n<m ==> P n m" | |
| 478 | shows "P n m" | |
| 479 | apply (rule less_linear [THEN disjE]) | |
| 480 | apply (erule_tac [2] disjE) | |
| 481 | apply (erule lessCase) | |
| 482 | apply (erule sym [THEN eqCase]) | |
| 483 | apply (erule major) | |
| 484 | done | |
| 485 | ||
| 486 | ||
| 487 | subsubsection {* Inductive (?) properties *}
 | |
| 488 | ||
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 489 | lemma Suc_lessI: "m < n ==> Suc m \<noteq> n ==> Suc m < n" | 
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 490 | unfolding less_eq_Suc_le [of m] le_less by simp | 
| 13449 | 491 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 492 | lemma lessE: | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 493 | assumes major: "i < k" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 494 | and p1: "k = Suc i ==> P" and p2: "!!j. i < j ==> k = Suc j ==> P" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 495 | shows P | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 496 | proof - | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 497 | from major have "\<exists>j. i \<le> j \<and> k = Suc j" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 498 | unfolding less_eq_Suc_le by (induct k) simp_all | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 499 | then have "(\<exists>j. i < j \<and> k = Suc j) \<or> k = Suc i" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 500 | by (clarsimp simp add: less_le) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 501 | with p1 p2 show P by auto | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 502 | qed | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 503 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 504 | lemma less_SucE: assumes major: "m < Suc n" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 505 | and less: "m < n ==> P" and eq: "m = n ==> P" shows P | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 506 | apply (rule major [THEN lessE]) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 507 | apply (rule eq, blast) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 508 | apply (rule less, blast) | 
| 13449 | 509 | done | 
| 510 | ||
| 511 | lemma Suc_lessE: assumes major: "Suc i < k" | |
| 512 | and minor: "!!j. i < j ==> k = Suc j ==> P" shows P | |
| 513 | apply (rule major [THEN lessE]) | |
| 514 | apply (erule lessI [THEN minor]) | |
| 14208 | 515 | apply (erule Suc_lessD [THEN minor], assumption) | 
| 13449 | 516 | done | 
| 517 | ||
| 518 | lemma Suc_less_SucD: "Suc m < Suc n ==> m < n" | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 519 | by simp | 
| 13449 | 520 | |
| 521 | lemma less_trans_Suc: | |
| 522 | assumes le: "i < j" shows "j < k ==> Suc i < k" | |
| 14208 | 523 | apply (induct k, simp_all) | 
| 13449 | 524 | apply (insert le) | 
| 525 | apply (simp add: less_Suc_eq) | |
| 526 | apply (blast dest: Suc_lessD) | |
| 527 | done | |
| 528 | ||
| 529 | text {* Can be used with @{text less_Suc_eq} to get @{term "n = m | n < m"} *}
 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 530 | lemma not_less_eq: "\<not> m < n \<longleftrightarrow> n < Suc m" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 531 | unfolding not_less less_Suc_eq_le .. | 
| 13449 | 532 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 533 | lemma not_less_eq_eq: "\<not> m \<le> n \<longleftrightarrow> Suc n \<le> m" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 534 | unfolding not_le Suc_le_eq .. | 
| 21243 | 535 | |
| 24995 | 536 | text {* Properties of "less than or equal" *}
 | 
| 13449 | 537 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 538 | lemma le_imp_less_Suc: "m \<le> n ==> m < Suc n" | 
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 539 | unfolding less_Suc_eq_le . | 
| 13449 | 540 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 541 | lemma Suc_n_not_le_n: "~ Suc n \<le> n" | 
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 542 | unfolding not_le less_Suc_eq_le .. | 
| 13449 | 543 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 544 | lemma le_Suc_eq: "(m \<le> Suc n) = (m \<le> n | m = Suc n)" | 
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 545 | by (simp add: less_Suc_eq_le [symmetric] less_Suc_eq) | 
| 13449 | 546 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 547 | lemma le_SucE: "m \<le> Suc n ==> (m \<le> n ==> R) ==> (m = Suc n ==> R) ==> R" | 
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 548 | by (drule le_Suc_eq [THEN iffD1], iprover+) | 
| 13449 | 549 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 550 | lemma Suc_leI: "m < n ==> Suc(m) \<le> n" | 
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 551 | unfolding Suc_le_eq . | 
| 13449 | 552 | |
| 553 | text {* Stronger version of @{text Suc_leD} *}
 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 554 | lemma Suc_le_lessD: "Suc m \<le> n ==> m < n" | 
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 555 | unfolding Suc_le_eq . | 
| 13449 | 556 | |
| 26315 
cb3badaa192e
removed redundant less_trans, less_linear, le_imp_less_or_eq, le_less_trans, less_le_trans (cf. Orderings.thy);
 wenzelm parents: 
26300diff
changeset | 557 | lemma less_imp_le_nat: "m < n ==> m \<le> (n::nat)" | 
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 558 | unfolding less_eq_Suc_le by (rule Suc_leD) | 
| 13449 | 559 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 560 | text {* For instance, @{text "(Suc m < Suc n) = (Suc m \<le> n) = (m < n)"} *}
 | 
| 26315 
cb3badaa192e
removed redundant less_trans, less_linear, le_imp_less_or_eq, le_less_trans, less_le_trans (cf. Orderings.thy);
 wenzelm parents: 
26300diff
changeset | 561 | lemmas le_simps = less_imp_le_nat less_Suc_eq_le Suc_le_eq | 
| 13449 | 562 | |
| 563 | ||
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 564 | text {* Equivalence of @{term "m \<le> n"} and @{term "m < n | m = n"} *}
 | 
| 13449 | 565 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 566 | lemma less_or_eq_imp_le: "m < n | m = n ==> m \<le> (n::nat)" | 
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 567 | unfolding le_less . | 
| 13449 | 568 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 569 | lemma le_eq_less_or_eq: "(m \<le> (n::nat)) = (m < n | m=n)" | 
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 570 | by (rule le_less) | 
| 13449 | 571 | |
| 22718 | 572 | text {* Useful with @{text blast}. *}
 | 
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 573 | lemma eq_imp_le: "(m::nat) = n ==> m \<le> n" | 
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 574 | by auto | 
| 13449 | 575 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 576 | lemma le_refl: "n \<le> (n::nat)" | 
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 577 | by simp | 
| 13449 | 578 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 579 | lemma le_trans: "[| i \<le> j; j \<le> k |] ==> i \<le> (k::nat)" | 
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 580 | by (rule order_trans) | 
| 13449 | 581 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 582 | lemma le_anti_sym: "[| m \<le> n; n \<le> m |] ==> m = (n::nat)" | 
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 583 | by (rule antisym) | 
| 13449 | 584 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 585 | lemma nat_less_le: "((m::nat) < n) = (m \<le> n & m \<noteq> n)" | 
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 586 | by (rule less_le) | 
| 13449 | 587 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 588 | lemma le_neq_implies_less: "(m::nat) \<le> n ==> m \<noteq> n ==> m < n" | 
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 589 | unfolding less_le .. | 
| 13449 | 590 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 591 | lemma nat_le_linear: "(m::nat) \<le> n | n \<le> m" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 592 | by (rule linear) | 
| 14341 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 paulson parents: 
14331diff
changeset | 593 | |
| 22718 | 594 | lemmas linorder_neqE_nat = linorder_neqE [where 'a = nat] | 
| 15921 | 595 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 596 | lemma le_less_Suc_eq: "m \<le> n ==> (n < Suc m) = (n = m)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 597 | unfolding less_Suc_eq_le by auto | 
| 13449 | 598 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 599 | lemma not_less_less_Suc_eq: "~ n < m ==> (n < Suc m) = (n = m)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 600 | unfolding not_less by (rule le_less_Suc_eq) | 
| 13449 | 601 | |
| 602 | lemmas not_less_simps = not_less_less_Suc_eq le_less_Suc_eq | |
| 603 | ||
| 22718 | 604 | text {* These two rules ease the use of primitive recursion.
 | 
| 14341 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 paulson parents: 
14331diff
changeset | 605 | NOTE USE OF @{text "=="} *}
 | 
| 13449 | 606 | lemma def_nat_rec_0: "(!!n. f n == nat_rec c h n) ==> f 0 = c" | 
| 25162 | 607 | by simp | 
| 13449 | 608 | |
| 609 | lemma def_nat_rec_Suc: "(!!n. f n == nat_rec c h n) ==> f (Suc n) = h n (f n)" | |
| 25162 | 610 | by simp | 
| 13449 | 611 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 612 | lemma not0_implies_Suc: "n \<noteq> 0 ==> \<exists>m. n = Suc m" | 
| 25162 | 613 | by (cases n) simp_all | 
| 614 | ||
| 615 | lemma gr0_implies_Suc: "n > 0 ==> \<exists>m. n = Suc m" | |
| 616 | by (cases n) simp_all | |
| 13449 | 617 | |
| 22718 | 618 | lemma gr_implies_not0: fixes n :: nat shows "m<n ==> n \<noteq> 0" | 
| 25162 | 619 | by (cases n) simp_all | 
| 13449 | 620 | |
| 25162 | 621 | lemma neq0_conv[iff]: fixes n :: nat shows "(n \<noteq> 0) = (0 < n)" | 
| 622 | by (cases n) simp_all | |
| 25140 | 623 | |
| 13449 | 624 | text {* This theorem is useful with @{text blast} *}
 | 
| 625 | lemma gr0I: "((n::nat) = 0 ==> False) ==> 0 < n" | |
| 25162 | 626 | by (rule neq0_conv[THEN iffD1], iprover) | 
| 13449 | 627 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 628 | lemma gr0_conv_Suc: "(0 < n) = (\<exists>m. n = Suc m)" | 
| 25162 | 629 | by (fast intro: not0_implies_Suc) | 
| 13449 | 630 | |
| 24286 
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
 paulson parents: 
24196diff
changeset | 631 | lemma not_gr0 [iff,noatp]: "!!n::nat. (~ (0 < n)) = (n = 0)" | 
| 25134 
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
 nipkow parents: 
25111diff
changeset | 632 | using neq0_conv by blast | 
| 13449 | 633 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 634 | lemma Suc_le_D: "(Suc n \<le> m') ==> (? m. m' = Suc m)" | 
| 25162 | 635 | by (induct m') simp_all | 
| 13449 | 636 | |
| 637 | text {* Useful in certain inductive arguments *}
 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 638 | lemma less_Suc_eq_0_disj: "(m < Suc n) = (m = 0 | (\<exists>j. m = Suc j & j < n))" | 
| 25162 | 639 | by (cases m) simp_all | 
| 13449 | 640 | |
| 641 | ||
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 642 | subsubsection {* @{term min} and @{term max} *}
 | 
| 13449 | 643 | |
| 25076 | 644 | lemma mono_Suc: "mono Suc" | 
| 25162 | 645 | by (rule monoI) simp | 
| 25076 | 646 | |
| 13449 | 647 | lemma min_0L [simp]: "min 0 n = (0::nat)" | 
| 25162 | 648 | by (rule min_leastL) simp | 
| 13449 | 649 | |
| 650 | lemma min_0R [simp]: "min n 0 = (0::nat)" | |
| 25162 | 651 | by (rule min_leastR) simp | 
| 13449 | 652 | |
| 653 | lemma min_Suc_Suc [simp]: "min (Suc m) (Suc n) = Suc (min m n)" | |
| 25162 | 654 | by (simp add: mono_Suc min_of_mono) | 
| 13449 | 655 | |
| 22191 | 656 | lemma min_Suc1: | 
| 657 | "min (Suc n) m = (case m of 0 => 0 | Suc m' => Suc(min n m'))" | |
| 25162 | 658 | by (simp split: nat.split) | 
| 22191 | 659 | |
| 660 | lemma min_Suc2: | |
| 661 | "min m (Suc n) = (case m of 0 => 0 | Suc m' => Suc(min m' n))" | |
| 25162 | 662 | by (simp split: nat.split) | 
| 22191 | 663 | |
| 13449 | 664 | lemma max_0L [simp]: "max 0 n = (n::nat)" | 
| 25162 | 665 | by (rule max_leastL) simp | 
| 13449 | 666 | |
| 667 | lemma max_0R [simp]: "max n 0 = (n::nat)" | |
| 25162 | 668 | by (rule max_leastR) simp | 
| 13449 | 669 | |
| 670 | lemma max_Suc_Suc [simp]: "max (Suc m) (Suc n) = Suc(max m n)" | |
| 25162 | 671 | by (simp add: mono_Suc max_of_mono) | 
| 13449 | 672 | |
| 22191 | 673 | lemma max_Suc1: | 
| 674 | "max (Suc n) m = (case m of 0 => Suc n | Suc m' => Suc(max n m'))" | |
| 25162 | 675 | by (simp split: nat.split) | 
| 22191 | 676 | |
| 677 | lemma max_Suc2: | |
| 678 | "max m (Suc n) = (case m of 0 => Suc n | Suc m' => Suc(max m' n))" | |
| 25162 | 679 | by (simp split: nat.split) | 
| 22191 | 680 | |
| 13449 | 681 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 682 | subsubsection {* Monotonicity of Addition *}
 | 
| 13449 | 683 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 684 | lemma Suc_pred [simp]: "n>0 ==> Suc (n - Suc 0) = n" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 685 | by (simp add: diff_Suc split: nat.split) | 
| 13449 | 686 | |
| 14331 | 687 | lemma nat_add_left_cancel_le [simp]: "(k + m \<le> k + n) = (m\<le>(n::nat))" | 
| 25162 | 688 | by (induct k) simp_all | 
| 13449 | 689 | |
| 14331 | 690 | lemma nat_add_left_cancel_less [simp]: "(k + m < k + n) = (m<(n::nat))" | 
| 25162 | 691 | by (induct k) simp_all | 
| 13449 | 692 | |
| 25162 | 693 | lemma add_gr_0 [iff]: "!!m::nat. (m + n > 0) = (m>0 | n>0)" | 
| 694 | by(auto dest:gr0_implies_Suc) | |
| 13449 | 695 | |
| 14341 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 paulson parents: 
14331diff
changeset | 696 | text {* strict, in 1st argument *}
 | 
| 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 paulson parents: 
14331diff
changeset | 697 | lemma add_less_mono1: "i < j ==> i + k < j + (k::nat)" | 
| 25162 | 698 | by (induct k) simp_all | 
| 14341 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 paulson parents: 
14331diff
changeset | 699 | |
| 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 paulson parents: 
14331diff
changeset | 700 | text {* strict, in both arguments *}
 | 
| 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 paulson parents: 
14331diff
changeset | 701 | lemma add_less_mono: "[|i < j; k < l|] ==> i + k < j + (l::nat)" | 
| 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 paulson parents: 
14331diff
changeset | 702 | apply (rule add_less_mono1 [THEN less_trans], assumption+) | 
| 15251 | 703 | apply (induct j, simp_all) | 
| 14341 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 paulson parents: 
14331diff
changeset | 704 | done | 
| 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 paulson parents: 
14331diff
changeset | 705 | |
| 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 paulson parents: 
14331diff
changeset | 706 | text {* Deleted @{text less_natE}; use @{text "less_imp_Suc_add RS exE"} *}
 | 
| 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 paulson parents: 
14331diff
changeset | 707 | lemma less_imp_Suc_add: "m < n ==> (\<exists>k. n = Suc (m + k))" | 
| 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 paulson parents: 
14331diff
changeset | 708 | apply (induct n) | 
| 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 paulson parents: 
14331diff
changeset | 709 | apply (simp_all add: order_le_less) | 
| 22718 | 710 | apply (blast elim!: less_SucE | 
| 14341 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 paulson parents: 
14331diff
changeset | 711 | intro!: add_0_right [symmetric] add_Suc_right [symmetric]) | 
| 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 paulson parents: 
14331diff
changeset | 712 | done | 
| 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 paulson parents: 
14331diff
changeset | 713 | |
| 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 paulson parents: 
14331diff
changeset | 714 | text {* strict, in 1st argument; proof is by induction on @{text "k > 0"} *}
 | 
| 25134 
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
 nipkow parents: 
25111diff
changeset | 715 | lemma mult_less_mono2: "(i::nat) < j ==> 0<k ==> k * i < k * j" | 
| 
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
 nipkow parents: 
25111diff
changeset | 716 | apply(auto simp: gr0_conv_Suc) | 
| 
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
 nipkow parents: 
25111diff
changeset | 717 | apply (induct_tac m) | 
| 
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
 nipkow parents: 
25111diff
changeset | 718 | apply (simp_all add: add_less_mono) | 
| 
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
 nipkow parents: 
25111diff
changeset | 719 | done | 
| 14341 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 paulson parents: 
14331diff
changeset | 720 | |
| 14740 | 721 | text{*The naturals form an ordered @{text comm_semiring_1_cancel}*}
 | 
| 14738 | 722 | instance nat :: ordered_semidom | 
| 14341 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 paulson parents: 
14331diff
changeset | 723 | proof | 
| 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 paulson parents: 
14331diff
changeset | 724 | fix i j k :: nat | 
| 14348 
744c868ee0b7
Defining the type class "ringpower" and deleting superseded theorems for
 paulson parents: 
14341diff
changeset | 725 | show "0 < (1::nat)" by simp | 
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 726 | show "i \<le> j ==> k + i \<le> k + j" by simp | 
| 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 727 | show "i < j ==> 0 < k ==> k * i < k * j" by (simp add: mult_less_mono2) | 
| 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 728 | qed | 
| 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 729 | |
| 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 730 | lemma nat_mult_1: "(1::nat) * n = n" | 
| 25162 | 731 | by simp | 
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 732 | |
| 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 733 | lemma nat_mult_1_right: "n * (1::nat) = n" | 
| 25162 | 734 | by simp | 
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 735 | |
| 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 736 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 737 | subsubsection {* Additional theorems about "less than" *}
 | 
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 738 | |
| 19870 | 739 | text{*An induction rule for estabilishing binary relations*}
 | 
| 22718 | 740 | lemma less_Suc_induct: | 
| 19870 | 741 | assumes less: "i < j" | 
| 742 | and step: "!!i. P i (Suc i)" | |
| 743 | and trans: "!!i j k. P i j ==> P j k ==> P i k" | |
| 744 | shows "P i j" | |
| 745 | proof - | |
| 22718 | 746 | from less obtain k where j: "j = Suc(i+k)" by (auto dest: less_imp_Suc_add) | 
| 747 | have "P i (Suc (i + k))" | |
| 19870 | 748 | proof (induct k) | 
| 22718 | 749 | case 0 | 
| 750 | show ?case by (simp add: step) | |
| 19870 | 751 | next | 
| 752 | case (Suc k) | |
| 22718 | 753 | thus ?case by (auto intro: assms) | 
| 19870 | 754 | qed | 
| 22718 | 755 | thus "P i j" by (simp add: j) | 
| 19870 | 756 | qed | 
| 757 | ||
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 758 | text {* A [clumsy] way of lifting @{text "<"}
 | 
| 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 759 |   monotonicity to @{text "\<le>"} monotonicity *}
 | 
| 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 760 | lemma less_mono_imp_le_mono: | 
| 24438 | 761 | "\<lbrakk> !!i j::nat. i < j \<Longrightarrow> f i < f j; i \<le> j \<rbrakk> \<Longrightarrow> f i \<le> ((f j)::nat)" | 
| 762 | by (simp add: order_le_less) (blast) | |
| 763 | ||
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 764 | |
| 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 765 | text {* non-strict, in 1st argument *}
 | 
| 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 766 | lemma add_le_mono1: "i \<le> j ==> i + k \<le> j + (k::nat)" | 
| 24438 | 767 | by (rule add_right_mono) | 
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 768 | |
| 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 769 | text {* non-strict, in both arguments *}
 | 
| 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 770 | lemma add_le_mono: "[| i \<le> j; k \<le> l |] ==> i + k \<le> j + (l::nat)" | 
| 24438 | 771 | by (rule add_mono) | 
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 772 | |
| 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 773 | lemma le_add2: "n \<le> ((m + n)::nat)" | 
| 24438 | 774 | by (insert add_right_mono [of 0 m n], simp) | 
| 13449 | 775 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 776 | lemma le_add1: "n \<le> ((n + m)::nat)" | 
| 24438 | 777 | by (simp add: add_commute, rule le_add2) | 
| 13449 | 778 | |
| 779 | lemma less_add_Suc1: "i < Suc (i + m)" | |
| 24438 | 780 | by (rule le_less_trans, rule le_add1, rule lessI) | 
| 13449 | 781 | |
| 782 | lemma less_add_Suc2: "i < Suc (m + i)" | |
| 24438 | 783 | by (rule le_less_trans, rule le_add2, rule lessI) | 
| 13449 | 784 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 785 | lemma less_iff_Suc_add: "(m < n) = (\<exists>k. n = Suc (m + k))" | 
| 24438 | 786 | by (iprover intro!: less_add_Suc1 less_imp_Suc_add) | 
| 13449 | 787 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 788 | lemma trans_le_add1: "(i::nat) \<le> j ==> i \<le> j + m" | 
| 24438 | 789 | by (rule le_trans, assumption, rule le_add1) | 
| 13449 | 790 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 791 | lemma trans_le_add2: "(i::nat) \<le> j ==> i \<le> m + j" | 
| 24438 | 792 | by (rule le_trans, assumption, rule le_add2) | 
| 13449 | 793 | |
| 794 | lemma trans_less_add1: "(i::nat) < j ==> i < j + m" | |
| 24438 | 795 | by (rule less_le_trans, assumption, rule le_add1) | 
| 13449 | 796 | |
| 797 | lemma trans_less_add2: "(i::nat) < j ==> i < m + j" | |
| 24438 | 798 | by (rule less_le_trans, assumption, rule le_add2) | 
| 13449 | 799 | |
| 800 | lemma add_lessD1: "i + j < (k::nat) ==> i < k" | |
| 24438 | 801 | apply (rule le_less_trans [of _ "i+j"]) | 
| 802 | apply (simp_all add: le_add1) | |
| 803 | done | |
| 13449 | 804 | |
| 805 | lemma not_add_less1 [iff]: "~ (i + j < (i::nat))" | |
| 24438 | 806 | apply (rule notI) | 
| 26335 
961bbcc9d85b
removed redundant Nat.less_not_sym, Nat.less_asym;
 wenzelm parents: 
26315diff
changeset | 807 | apply (drule add_lessD1) | 
| 
961bbcc9d85b
removed redundant Nat.less_not_sym, Nat.less_asym;
 wenzelm parents: 
26315diff
changeset | 808 | apply (erule less_irrefl [THEN notE]) | 
| 24438 | 809 | done | 
| 13449 | 810 | |
| 811 | lemma not_add_less2 [iff]: "~ (j + i < (i::nat))" | |
| 24438 | 812 | by (simp add: add_commute not_add_less1) | 
| 13449 | 813 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 814 | lemma add_leD1: "m + k \<le> n ==> m \<le> (n::nat)" | 
| 24438 | 815 | apply (rule order_trans [of _ "m+k"]) | 
| 816 | apply (simp_all add: le_add1) | |
| 817 | done | |
| 13449 | 818 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 819 | lemma add_leD2: "m + k \<le> n ==> k \<le> (n::nat)" | 
| 24438 | 820 | apply (simp add: add_commute) | 
| 821 | apply (erule add_leD1) | |
| 822 | done | |
| 13449 | 823 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 824 | lemma add_leE: "(m::nat) + k \<le> n ==> (m \<le> n ==> k \<le> n ==> R) ==> R" | 
| 24438 | 825 | by (blast dest: add_leD1 add_leD2) | 
| 13449 | 826 | |
| 827 | text {* needs @{text "!!k"} for @{text add_ac} to work *}
 | |
| 828 | lemma less_add_eq_less: "!!k::nat. k < l ==> m + l = k + n ==> m < n" | |
| 24438 | 829 | by (force simp del: add_Suc_right | 
| 13449 | 830 | simp add: less_iff_Suc_add add_Suc_right [symmetric] add_ac) | 
| 831 | ||
| 832 | ||
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 833 | subsubsection {* More results about difference *}
 | 
| 13449 | 834 | |
| 835 | text {* Addition is the inverse of subtraction:
 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 836 |   if @{term "n \<le> m"} then @{term "n + (m - n) = m"}. *}
 | 
| 13449 | 837 | lemma add_diff_inverse: "~ m < n ==> n + (m - n) = (m::nat)" | 
| 24438 | 838 | by (induct m n rule: diff_induct) simp_all | 
| 13449 | 839 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 840 | lemma le_add_diff_inverse [simp]: "n \<le> m ==> n + (m - n) = (m::nat)" | 
| 24438 | 841 | by (simp add: add_diff_inverse linorder_not_less) | 
| 13449 | 842 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 843 | lemma le_add_diff_inverse2 [simp]: "n \<le> m ==> (m - n) + n = (m::nat)" | 
| 24438 | 844 | by (simp add: le_add_diff_inverse add_commute) | 
| 13449 | 845 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 846 | lemma Suc_diff_le: "n \<le> m ==> Suc m - n = Suc (m - n)" | 
| 24438 | 847 | by (induct m n rule: diff_induct) simp_all | 
| 13449 | 848 | |
| 849 | lemma diff_less_Suc: "m - n < Suc m" | |
| 24438 | 850 | apply (induct m n rule: diff_induct) | 
| 851 | apply (erule_tac [3] less_SucE) | |
| 852 | apply (simp_all add: less_Suc_eq) | |
| 853 | done | |
| 13449 | 854 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 855 | lemma diff_le_self [simp]: "m - n \<le> (m::nat)" | 
| 24438 | 856 | by (induct m n rule: diff_induct) (simp_all add: le_SucI) | 
| 13449 | 857 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 858 | lemma le_iff_add: "(m::nat) \<le> n = (\<exists>k. n = m + k)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 859 | by (auto simp: le_add1 dest!: le_add_diff_inverse sym [of _ n]) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 860 | |
| 13449 | 861 | lemma less_imp_diff_less: "(j::nat) < k ==> j - n < k" | 
| 24438 | 862 | by (rule le_less_trans, rule diff_le_self) | 
| 13449 | 863 | |
| 864 | lemma diff_Suc_less [simp]: "0<n ==> n - Suc i < n" | |
| 24438 | 865 | by (cases n) (auto simp add: le_simps) | 
| 13449 | 866 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 867 | lemma diff_add_assoc: "k \<le> (j::nat) ==> (i + j) - k = i + (j - k)" | 
| 24438 | 868 | by (induct j k rule: diff_induct) simp_all | 
| 13449 | 869 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 870 | lemma diff_add_assoc2: "k \<le> (j::nat) ==> (j + i) - k = (j - k) + i" | 
| 24438 | 871 | by (simp add: add_commute diff_add_assoc) | 
| 13449 | 872 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 873 | lemma le_imp_diff_is_add: "i \<le> (j::nat) ==> (j - i = k) = (j = k + i)" | 
| 24438 | 874 | by (auto simp add: diff_add_inverse2) | 
| 13449 | 875 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 876 | lemma diff_is_0_eq [simp]: "((m::nat) - n = 0) = (m \<le> n)" | 
| 24438 | 877 | by (induct m n rule: diff_induct) simp_all | 
| 13449 | 878 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 879 | lemma diff_is_0_eq' [simp]: "m \<le> n ==> (m::nat) - n = 0" | 
| 24438 | 880 | by (rule iffD2, rule diff_is_0_eq) | 
| 13449 | 881 | |
| 882 | lemma zero_less_diff [simp]: "(0 < n - (m::nat)) = (m < n)" | |
| 24438 | 883 | by (induct m n rule: diff_induct) simp_all | 
| 13449 | 884 | |
| 22718 | 885 | lemma less_imp_add_positive: | 
| 886 | assumes "i < j" | |
| 887 | shows "\<exists>k::nat. 0 < k & i + k = j" | |
| 888 | proof | |
| 889 | from assms show "0 < j - i & i + (j - i) = j" | |
| 23476 | 890 | by (simp add: order_less_imp_le) | 
| 22718 | 891 | qed | 
| 9436 
62bb04ab4b01
rearranged setup of arithmetic procedures, avoiding global reference values;
 wenzelm parents: 
7702diff
changeset | 892 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 893 | text {* a nice rewrite for bounded subtraction *}
 | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 894 | lemma nat_minus_add_max: | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 895 | fixes n m :: nat | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 896 | shows "n - m + m = max n m" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 897 | by (simp add: max_def not_le order_less_imp_le) | 
| 13449 | 898 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 899 | lemma nat_diff_split: | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 900 | "P(a - b::nat) = ((a<b --> P 0) & (ALL d. a = b + d --> P d))" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 901 |     -- {* elimination of @{text -} on @{text nat} *}
 | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 902 | by (cases "a < b") | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 903 | (auto simp add: diff_is_0_eq [THEN iffD2] diff_add_inverse | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 904 | not_less le_less dest!: sym [of a] sym [of b] add_eq_self_zero) | 
| 13449 | 905 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 906 | lemma nat_diff_split_asm: | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 907 | "P(a - b::nat) = (~ (a < b & ~ P 0 | (EX d. a = b + d & ~ P d)))" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 908 |     -- {* elimination of @{text -} on @{text nat} in assumptions *}
 | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 909 | by (auto split: nat_diff_split) | 
| 13449 | 910 | |
| 911 | ||
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 912 | subsubsection {* Monotonicity of Multiplication *}
 | 
| 13449 | 913 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 914 | lemma mult_le_mono1: "i \<le> (j::nat) ==> i * k \<le> j * k" | 
| 24438 | 915 | by (simp add: mult_right_mono) | 
| 13449 | 916 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 917 | lemma mult_le_mono2: "i \<le> (j::nat) ==> k * i \<le> k * j" | 
| 24438 | 918 | by (simp add: mult_left_mono) | 
| 13449 | 919 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 920 | text {* @{text "\<le>"} monotonicity, BOTH arguments *}
 | 
| 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 921 | lemma mult_le_mono: "i \<le> (j::nat) ==> k \<le> l ==> i * k \<le> j * l" | 
| 24438 | 922 | by (simp add: mult_mono) | 
| 13449 | 923 | |
| 924 | lemma mult_less_mono1: "(i::nat) < j ==> 0 < k ==> i * k < j * k" | |
| 24438 | 925 | by (simp add: mult_strict_right_mono) | 
| 13449 | 926 | |
| 14266 | 927 | text{*Differs from the standard @{text zero_less_mult_iff} in that
 | 
| 928 | there are no negative numbers.*} | |
| 929 | lemma nat_0_less_mult_iff [simp]: "(0 < (m::nat) * n) = (0 < m & 0 < n)" | |
| 13449 | 930 | apply (induct m) | 
| 22718 | 931 | apply simp | 
| 932 | apply (case_tac n) | |
| 933 | apply simp_all | |
| 13449 | 934 | done | 
| 935 | ||
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 936 | lemma one_le_mult_iff [simp]: "(Suc 0 \<le> m * n) = (1 \<le> m & 1 \<le> n)" | 
| 13449 | 937 | apply (induct m) | 
| 22718 | 938 | apply simp | 
| 939 | apply (case_tac n) | |
| 940 | apply simp_all | |
| 13449 | 941 | done | 
| 942 | ||
| 14341 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 paulson parents: 
14331diff
changeset | 943 | lemma mult_less_cancel2 [simp]: "((m::nat) * k < n * k) = (0 < k & m < n)" | 
| 13449 | 944 | apply (safe intro!: mult_less_mono1) | 
| 14208 | 945 | apply (case_tac k, auto) | 
| 13449 | 946 | apply (simp del: le_0_eq add: linorder_not_le [symmetric]) | 
| 947 | apply (blast intro: mult_le_mono1) | |
| 948 | done | |
| 949 | ||
| 950 | lemma mult_less_cancel1 [simp]: "(k * (m::nat) < k * n) = (0 < k & m < n)" | |
| 24438 | 951 | by (simp add: mult_commute [of k]) | 
| 13449 | 952 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 953 | lemma mult_le_cancel1 [simp]: "(k * (m::nat) \<le> k * n) = (0 < k --> m \<le> n)" | 
| 24438 | 954 | by (simp add: linorder_not_less [symmetric], auto) | 
| 13449 | 955 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 956 | lemma mult_le_cancel2 [simp]: "((m::nat) * k \<le> n * k) = (0 < k --> m \<le> n)" | 
| 24438 | 957 | by (simp add: linorder_not_less [symmetric], auto) | 
| 13449 | 958 | |
| 959 | lemma Suc_mult_less_cancel1: "(Suc k * m < Suc k * n) = (m < n)" | |
| 24438 | 960 | by (subst mult_less_cancel1) simp | 
| 13449 | 961 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 962 | lemma Suc_mult_le_cancel1: "(Suc k * m \<le> Suc k * n) = (m \<le> n)" | 
| 24438 | 963 | by (subst mult_le_cancel1) simp | 
| 13449 | 964 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 965 | lemma le_square: "m \<le> m * (m::nat)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 966 | by (cases m) (auto intro: le_add1) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 967 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 968 | lemma le_cube: "(m::nat) \<le> m * (m * m)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 969 | by (cases m) (auto intro: le_add1) | 
| 13449 | 970 | |
| 971 | text {* Lemma for @{text gcd} *}
 | |
| 972 | lemma mult_eq_self_implies_10: "(m::nat) = m * n ==> n = 1 | m = 0" | |
| 973 | apply (drule sym) | |
| 974 | apply (rule disjCI) | |
| 975 | apply (rule nat_less_cases, erule_tac [2] _) | |
| 25157 | 976 | apply (drule_tac [2] mult_less_mono2) | 
| 25162 | 977 | apply (auto) | 
| 13449 | 978 | done | 
| 9436 
62bb04ab4b01
rearranged setup of arithmetic procedures, avoiding global reference values;
 wenzelm parents: 
7702diff
changeset | 979 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 980 | text {* the lattice order on @{typ nat} *}
 | 
| 24995 | 981 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 982 | instantiation nat :: distrib_lattice | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 983 | begin | 
| 24995 | 984 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 985 | definition | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 986 | "(inf \<Colon> nat \<Rightarrow> nat \<Rightarrow> nat) = min" | 
| 24995 | 987 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 988 | definition | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 989 | "(sup \<Colon> nat \<Rightarrow> nat \<Rightarrow> nat) = max" | 
| 24995 | 990 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 991 | instance by intro_classes | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 992 | (auto simp add: inf_nat_def sup_nat_def max_def not_le min_def | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 993 | intro: order_less_imp_le antisym elim!: order_trans order_less_trans) | 
| 24995 | 994 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 995 | end | 
| 24995 | 996 | |
| 997 | ||
| 25193 | 998 | subsection {* Embedding of the Naturals into any
 | 
| 999 |   @{text semiring_1}: @{term of_nat} *}
 | |
| 24196 | 1000 | |
| 1001 | context semiring_1 | |
| 1002 | begin | |
| 1003 | ||
| 25559 | 1004 | primrec | 
| 1005 | of_nat :: "nat \<Rightarrow> 'a" | |
| 1006 | where | |
| 1007 | of_nat_0: "of_nat 0 = 0" | |
| 1008 | | of_nat_Suc: "of_nat (Suc m) = 1 + of_nat m" | |
| 25193 | 1009 | |
| 1010 | lemma of_nat_1 [simp]: "of_nat 1 = 1" | |
| 1011 | by simp | |
| 1012 | ||
| 1013 | lemma of_nat_add [simp]: "of_nat (m + n) = of_nat m + of_nat n" | |
| 1014 | by (induct m) (simp_all add: add_ac) | |
| 1015 | ||
| 1016 | lemma of_nat_mult: "of_nat (m * n) = of_nat m * of_nat n" | |
| 1017 | by (induct m) (simp_all add: add_ac left_distrib) | |
| 1018 | ||
| 25928 | 1019 | definition | 
| 1020 | of_nat_aux :: "nat \<Rightarrow> 'a \<Rightarrow> 'a" | |
| 1021 | where | |
| 1022 | [code func del]: "of_nat_aux n i = of_nat n + i" | |
| 1023 | ||
| 1024 | lemma of_nat_aux_code [code]: | |
| 1025 | "of_nat_aux 0 i = i" | |
| 1026 |   "of_nat_aux (Suc n) i = of_nat_aux n (i + 1)" -- {* tail recursive *}
 | |
| 1027 | by (simp_all add: of_nat_aux_def add_ac) | |
| 1028 | ||
| 1029 | lemma of_nat_code [code]: | |
| 1030 | "of_nat n = of_nat_aux n 0" | |
| 1031 | by (simp add: of_nat_aux_def) | |
| 1032 | ||
| 24196 | 1033 | end | 
| 1034 | ||
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1035 | text{*Class for unital semirings with characteristic zero.
 | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1036 | Includes non-ordered rings like the complex numbers.*} | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1037 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1038 | class semiring_char_0 = semiring_1 + | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1039 | assumes of_nat_eq_iff [simp]: "of_nat m = of_nat n \<longleftrightarrow> m = n" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1040 | begin | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1041 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1042 | text{*Special cases where either operand is zero*}
 | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1043 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1044 | lemma of_nat_0_eq_iff [simp, noatp]: "0 = of_nat n \<longleftrightarrow> 0 = n" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1045 | by (rule of_nat_eq_iff [of 0, simplified]) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1046 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1047 | lemma of_nat_eq_0_iff [simp, noatp]: "of_nat m = 0 \<longleftrightarrow> m = 0" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1048 | by (rule of_nat_eq_iff [of _ 0, simplified]) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1049 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1050 | lemma inj_of_nat: "inj of_nat" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1051 | by (simp add: inj_on_def) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1052 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1053 | end | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1054 | |
| 25193 | 1055 | context ordered_semidom | 
| 1056 | begin | |
| 1057 | ||
| 1058 | lemma zero_le_imp_of_nat: "0 \<le> of_nat m" | |
| 1059 | apply (induct m, simp_all) | |
| 1060 | apply (erule order_trans) | |
| 1061 | apply (rule ord_le_eq_trans [OF _ add_commute]) | |
| 1062 | apply (rule less_add_one [THEN less_imp_le]) | |
| 1063 | done | |
| 1064 | ||
| 1065 | lemma less_imp_of_nat_less: "m < n \<Longrightarrow> of_nat m < of_nat n" | |
| 1066 | apply (induct m n rule: diff_induct, simp_all) | |
| 1067 | apply (insert add_less_le_mono [OF zero_less_one zero_le_imp_of_nat], force) | |
| 1068 | done | |
| 1069 | ||
| 1070 | lemma of_nat_less_imp_less: "of_nat m < of_nat n \<Longrightarrow> m < n" | |
| 1071 | apply (induct m n rule: diff_induct, simp_all) | |
| 1072 | apply (insert zero_le_imp_of_nat) | |
| 1073 | apply (force simp add: not_less [symmetric]) | |
| 1074 | done | |
| 1075 | ||
| 1076 | lemma of_nat_less_iff [simp]: "of_nat m < of_nat n \<longleftrightarrow> m < n" | |
| 1077 | by (blast intro: of_nat_less_imp_less less_imp_of_nat_less) | |
| 1078 | ||
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1079 | lemma of_nat_le_iff [simp]: "of_nat m \<le> of_nat n \<longleftrightarrow> m \<le> n" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1080 | by (simp add: not_less [symmetric] linorder_not_less [symmetric]) | 
| 25193 | 1081 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1082 | text{*Every @{text ordered_semidom} has characteristic zero.*}
 | 
| 25193 | 1083 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1084 | subclass semiring_char_0 | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1085 | by unfold_locales (simp add: eq_iff order_eq_iff) | 
| 25193 | 1086 | |
| 1087 | text{*Special cases where either operand is zero*}
 | |
| 1088 | ||
| 1089 | lemma of_nat_0_le_iff [simp]: "0 \<le> of_nat n" | |
| 1090 | by (rule of_nat_le_iff [of 0, simplified]) | |
| 1091 | ||
| 1092 | lemma of_nat_le_0_iff [simp, noatp]: "of_nat m \<le> 0 \<longleftrightarrow> m = 0" | |
| 1093 | by (rule of_nat_le_iff [of _ 0, simplified]) | |
| 1094 | ||
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1095 | lemma of_nat_0_less_iff [simp]: "0 < of_nat n \<longleftrightarrow> 0 < n" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1096 | by (rule of_nat_less_iff [of 0, simplified]) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1097 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1098 | lemma of_nat_less_0_iff [simp]: "\<not> of_nat m < 0" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1099 | by (rule of_nat_less_iff [of _ 0, simplified]) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1100 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1101 | end | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1102 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1103 | context ring_1 | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1104 | begin | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1105 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1106 | lemma of_nat_diff: "n \<le> m \<Longrightarrow> of_nat (m - n) = of_nat m - of_nat n" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1107 | by (simp add: compare_rls of_nat_add [symmetric]) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1108 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1109 | end | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1110 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1111 | context ordered_idom | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1112 | begin | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1113 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1114 | lemma abs_of_nat [simp]: "\<bar>of_nat n\<bar> = of_nat n" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1115 | unfolding abs_if by auto | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1116 | |
| 25193 | 1117 | end | 
| 1118 | ||
| 1119 | lemma of_nat_id [simp]: "of_nat n = n" | |
| 1120 | by (induct n) auto | |
| 1121 | ||
| 1122 | lemma of_nat_eq_id [simp]: "of_nat = id" | |
| 1123 | by (auto simp add: expand_fun_eq) | |
| 1124 | ||
| 1125 | ||
| 26149 | 1126 | subsection {* The Set of Natural Numbers *}
 | 
| 25193 | 1127 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1128 | context semiring_1 | 
| 25193 | 1129 | begin | 
| 1130 | ||
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1131 | definition | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1132 | Nats :: "'a set" where | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1133 | "Nats = range of_nat" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1134 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1135 | notation (xsymbols) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1136 |   Nats  ("\<nat>")
 | 
| 25193 | 1137 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1138 | lemma of_nat_in_Nats [simp]: "of_nat n \<in> \<nat>" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1139 | by (simp add: Nats_def) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1140 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1141 | lemma Nats_0 [simp]: "0 \<in> \<nat>" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1142 | apply (simp add: Nats_def) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1143 | apply (rule range_eqI) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1144 | apply (rule of_nat_0 [symmetric]) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1145 | done | 
| 25193 | 1146 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1147 | lemma Nats_1 [simp]: "1 \<in> \<nat>" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1148 | apply (simp add: Nats_def) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1149 | apply (rule range_eqI) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1150 | apply (rule of_nat_1 [symmetric]) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1151 | done | 
| 25193 | 1152 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1153 | lemma Nats_add [simp]: "a \<in> \<nat> \<Longrightarrow> b \<in> \<nat> \<Longrightarrow> a + b \<in> \<nat>" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1154 | apply (auto simp add: Nats_def) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1155 | apply (rule range_eqI) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1156 | apply (rule of_nat_add [symmetric]) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1157 | done | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1158 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1159 | lemma Nats_mult [simp]: "a \<in> \<nat> \<Longrightarrow> b \<in> \<nat> \<Longrightarrow> a * b \<in> \<nat>" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1160 | apply (auto simp add: Nats_def) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1161 | apply (rule range_eqI) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1162 | apply (rule of_nat_mult [symmetric]) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1163 | done | 
| 25193 | 1164 | |
| 1165 | end | |
| 1166 | ||
| 1167 | ||
| 21243 | 1168 | subsection {* Further Arithmetic Facts Concerning the Natural Numbers *}
 | 
| 1169 | ||
| 22845 | 1170 | lemma subst_equals: | 
| 1171 | assumes 1: "t = s" and 2: "u = t" | |
| 1172 | shows "u = s" | |
| 1173 | using 2 1 by (rule trans) | |
| 1174 | ||
| 21243 | 1175 | use "arith_data.ML" | 
| 26101 | 1176 | declaration {* K ArithData.setup *}
 | 
| 24091 | 1177 | |
| 1178 | use "Tools/lin_arith.ML" | |
| 1179 | declaration {* K LinArith.setup *}
 | |
| 1180 | ||
| 21243 | 1181 | lemmas [arith_split] = nat_diff_split split_min split_max | 
| 1182 | ||
| 1183 | text{*Subtraction laws, mostly by Clemens Ballarin*}
 | |
| 1184 | ||
| 1185 | lemma diff_less_mono: "[| a < (b::nat); c \<le> a |] ==> a-c < b-c" | |
| 24438 | 1186 | by arith | 
| 21243 | 1187 | |
| 1188 | lemma less_diff_conv: "(i < j-k) = (i+k < (j::nat))" | |
| 24438 | 1189 | by arith | 
| 21243 | 1190 | |
| 1191 | lemma le_diff_conv: "(j-k \<le> (i::nat)) = (j \<le> i+k)" | |
| 24438 | 1192 | by arith | 
| 21243 | 1193 | |
| 1194 | lemma le_diff_conv2: "k \<le> j ==> (i \<le> j-k) = (i+k \<le> (j::nat))" | |
| 24438 | 1195 | by arith | 
| 21243 | 1196 | |
| 1197 | lemma diff_diff_cancel [simp]: "i \<le> (n::nat) ==> n - (n - i) = i" | |
| 24438 | 1198 | by arith | 
| 21243 | 1199 | |
| 1200 | lemma le_add_diff: "k \<le> (n::nat) ==> m \<le> n + m - k" | |
| 24438 | 1201 | by arith | 
| 21243 | 1202 | |
| 1203 | (*Replaces the previous diff_less and le_diff_less, which had the stronger | |
| 1204 | second premise n\<le>m*) | |
| 1205 | lemma diff_less[simp]: "!!m::nat. [| 0<n; 0<m |] ==> m - n < m" | |
| 24438 | 1206 | by arith | 
| 21243 | 1207 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1208 | text {* Simplification of relational expressions involving subtraction *}
 | 
| 21243 | 1209 | |
| 1210 | lemma diff_diff_eq: "[| k \<le> m; k \<le> (n::nat) |] ==> ((m-k) - (n-k)) = (m-n)" | |
| 24438 | 1211 | by (simp split add: nat_diff_split) | 
| 21243 | 1212 | |
| 1213 | lemma eq_diff_iff: "[| k \<le> m; k \<le> (n::nat) |] ==> (m-k = n-k) = (m=n)" | |
| 24438 | 1214 | by (auto split add: nat_diff_split) | 
| 21243 | 1215 | |
| 1216 | lemma less_diff_iff: "[| k \<le> m; k \<le> (n::nat) |] ==> (m-k < n-k) = (m<n)" | |
| 24438 | 1217 | by (auto split add: nat_diff_split) | 
| 21243 | 1218 | |
| 1219 | lemma le_diff_iff: "[| k \<le> m; k \<le> (n::nat) |] ==> (m-k \<le> n-k) = (m\<le>n)" | |
| 24438 | 1220 | by (auto split add: nat_diff_split) | 
| 21243 | 1221 | |
| 1222 | text{*(Anti)Monotonicity of subtraction -- by Stephan Merz*}
 | |
| 1223 | ||
| 1224 | (* Monotonicity of subtraction in first argument *) | |
| 1225 | lemma diff_le_mono: "m \<le> (n::nat) ==> (m-l) \<le> (n-l)" | |
| 24438 | 1226 | by (simp split add: nat_diff_split) | 
| 21243 | 1227 | |
| 1228 | lemma diff_le_mono2: "m \<le> (n::nat) ==> (l-n) \<le> (l-m)" | |
| 24438 | 1229 | by (simp split add: nat_diff_split) | 
| 21243 | 1230 | |
| 1231 | lemma diff_less_mono2: "[| m < (n::nat); m<l |] ==> (l-n) < (l-m)" | |
| 24438 | 1232 | by (simp split add: nat_diff_split) | 
| 21243 | 1233 | |
| 1234 | lemma diffs0_imp_equal: "!!m::nat. [| m-n = 0; n-m = 0 |] ==> m=n" | |
| 24438 | 1235 | by (simp split add: nat_diff_split) | 
| 21243 | 1236 | |
| 26143 
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
 bulwahn parents: 
26101diff
changeset | 1237 | lemma min_diff: "min (m - (i::nat)) (n - i) = min m n - i" | 
| 
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
 bulwahn parents: 
26101diff
changeset | 1238 | unfolding min_def by auto | 
| 
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
 bulwahn parents: 
26101diff
changeset | 1239 | |
| 
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
 bulwahn parents: 
26101diff
changeset | 1240 | lemma inj_on_diff_nat: | 
| 
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
 bulwahn parents: 
26101diff
changeset | 1241 | assumes k_le_n: "\<forall>n \<in> N. k \<le> (n::nat)" | 
| 
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
 bulwahn parents: 
26101diff
changeset | 1242 | shows "inj_on (\<lambda>n. n - k) N" | 
| 
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
 bulwahn parents: 
26101diff
changeset | 1243 | proof (rule inj_onI) | 
| 
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
 bulwahn parents: 
26101diff
changeset | 1244 | fix x y | 
| 
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
 bulwahn parents: 
26101diff
changeset | 1245 | assume a: "x \<in> N" "y \<in> N" "x - k = y - k" | 
| 
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
 bulwahn parents: 
26101diff
changeset | 1246 | with k_le_n have "x - k + k = y - k + k" by auto | 
| 
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
 bulwahn parents: 
26101diff
changeset | 1247 | with a k_le_n show "x = y" by auto | 
| 
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
 bulwahn parents: 
26101diff
changeset | 1248 | qed | 
| 
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
 bulwahn parents: 
26101diff
changeset | 1249 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1250 | text{*Rewriting to pull differences out*}
 | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1251 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1252 | lemma diff_diff_right [simp]: "k\<le>j --> i - (j - k) = i + (k::nat) - j" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1253 | by arith | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1254 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1255 | lemma diff_Suc_diff_eq1 [simp]: "k \<le> j ==> m - Suc (j - k) = m + k - Suc j" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1256 | by arith | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1257 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1258 | lemma diff_Suc_diff_eq2 [simp]: "k \<le> j ==> Suc (j - k) - m = Suc j - (k + m)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1259 | by arith | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1260 | |
| 21243 | 1261 | text{*Lemmas for ex/Factorization*}
 | 
| 1262 | ||
| 1263 | lemma one_less_mult: "[| Suc 0 < n; Suc 0 < m |] ==> Suc 0 < m*n" | |
| 24438 | 1264 | by (cases m) auto | 
| 21243 | 1265 | |
| 1266 | lemma n_less_m_mult_n: "[| Suc 0 < n; Suc 0 < m |] ==> n<m*n" | |
| 24438 | 1267 | by (cases m) auto | 
| 21243 | 1268 | |
| 1269 | lemma n_less_n_mult_m: "[| Suc 0 < n; Suc 0 < m |] ==> n<n*m" | |
| 24438 | 1270 | by (cases m) auto | 
| 21243 | 1271 | |
| 23001 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1272 | text {* Specialized induction principles that work "backwards": *}
 | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1273 | |
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1274 | lemma inc_induct[consumes 1, case_names base step]: | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1275 | assumes less: "i <= j" | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1276 | assumes base: "P j" | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1277 | assumes step: "!!i. [| i < j; P (Suc i) |] ==> P i" | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1278 | shows "P i" | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1279 | using less | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1280 | proof (induct d=="j - i" arbitrary: i) | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1281 | case (0 i) | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1282 | hence "i = j" by simp | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1283 | with base show ?case by simp | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1284 | next | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1285 | case (Suc d i) | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1286 | hence "i < j" "P (Suc i)" | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1287 | by simp_all | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1288 | thus "P i" by (rule step) | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1289 | qed | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1290 | |
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1291 | lemma strict_inc_induct[consumes 1, case_names base step]: | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1292 | assumes less: "i < j" | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1293 | assumes base: "!!i. j = Suc i ==> P i" | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1294 | assumes step: "!!i. [| i < j; P (Suc i) |] ==> P i" | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1295 | shows "P i" | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1296 | using less | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1297 | proof (induct d=="j - i - 1" arbitrary: i) | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1298 | case (0 i) | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1299 | with `i < j` have "j = Suc i" by simp | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1300 | with base show ?case by simp | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1301 | next | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1302 | case (Suc d i) | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1303 | hence "i < j" "P (Suc i)" | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1304 | by simp_all | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1305 | thus "P i" by (rule step) | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1306 | qed | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1307 | |
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1308 | lemma zero_induct_lemma: "P k ==> (!!n. P (Suc n) ==> P n) ==> P (k - i)" | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1309 | using inc_induct[of "k - i" k P, simplified] by blast | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1310 | |
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1311 | lemma zero_induct: "P k ==> (!!n. P (Suc n) ==> P n) ==> P 0" | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1312 | using inc_induct[of 0 k P] by blast | 
| 21243 | 1313 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1314 | lemma nat_not_singleton: "(\<forall>x. x = (0::nat)) = False" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1315 | by auto | 
| 21243 | 1316 | |
| 1317 | (*The others are | |
| 1318 | i - j - k = i - (j + k), | |
| 1319 | k \<le> j ==> j - k + i = j + i - k, | |
| 1320 | k \<le> j ==> i + (j - k) = i + j - k *) | |
| 1321 | lemmas add_diff_assoc = diff_add_assoc [symmetric] | |
| 1322 | lemmas add_diff_assoc2 = diff_add_assoc2[symmetric] | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1323 | declare diff_diff_left [simp] add_diff_assoc [simp] add_diff_assoc2[simp] | 
| 21243 | 1324 | |
| 1325 | text{*At present we prove no analogue of @{text not_less_Least} or @{text
 | |
| 1326 | Least_Suc}, since there appears to be no need.*} | |
| 1327 | ||
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1328 | subsection {* size of a datatype value *}
 | 
| 25193 | 1329 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1330 | class size = type + | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1331 |   fixes size :: "'a \<Rightarrow> nat" -- {* see further theory @{text Wellfounded_Recursion} *}
 | 
| 23852 | 1332 | |
| 25193 | 1333 | end |