| author | wenzelm | 
| Wed, 03 Sep 2008 11:44:52 +0200 | |
| changeset 28108 | 1b08ed83b79e | 
| parent 27823 | 52971512d1a2 | 
| child 28514 | da83a614c454 | 
| 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) | |
| 27104 
791607529f6d
rep_datatype command now takes list of constructors as input arguments
 haftmann parents: 
26748diff
changeset | 46 | nat = Nat | 
| 
791607529f6d
rep_datatype command now takes list of constructors as input arguments
 haftmann parents: 
26748diff
changeset | 47 | by (rule exI, unfold mem_def, rule Nat.Zero_RepI) | 
| 13449 | 48 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 49 | constdefs | 
| 27104 
791607529f6d
rep_datatype command now takes list of constructors as input arguments
 haftmann parents: 
26748diff
changeset | 50 | Suc :: "nat => nat" | 
| 
791607529f6d
rep_datatype command now takes list of constructors as input arguments
 haftmann parents: 
26748diff
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 | |
| 27104 
791607529f6d
rep_datatype command now takes list of constructors as input arguments
 haftmann parents: 
26748diff
changeset | 65 | lemma Suc_not_Zero: "Suc m \<noteq> 0" | 
| 27129 | 66 | apply (simp add: Zero_nat_def Suc_def Abs_Nat_inject [unfolded mem_def] | 
| 67 | Rep_Nat [unfolded mem_def] Suc_RepI Zero_RepI Suc_Rep_not_Zero_Rep [unfolded mem_def]) | |
| 68 | done | |
| 13449 | 69 | |
| 27104 
791607529f6d
rep_datatype command now takes list of constructors as input arguments
 haftmann parents: 
26748diff
changeset | 70 | lemma Zero_not_Suc: "0 \<noteq> Suc m" | 
| 13449 | 71 | by (rule not_sym, rule Suc_not_Zero not_sym) | 
| 72 | ||
| 27104 
791607529f6d
rep_datatype command now takes list of constructors as input arguments
 haftmann parents: 
26748diff
changeset | 73 | rep_datatype "0 \<Colon> nat" Suc | 
| 27129 | 74 | apply (unfold Zero_nat_def Suc_def) | 
| 75 |      apply (rule Rep_Nat_inverse [THEN subst]) -- {* types force good instantiation *}
 | |
| 76 | apply (erule Rep_Nat [unfolded mem_def, THEN Nat.induct]) | |
| 77 | apply (iprover elim: Abs_Nat_inverse [unfolded mem_def, THEN subst]) | |
| 78 | apply (simp_all add: Abs_Nat_inject [unfolded mem_def] Rep_Nat [unfolded mem_def] | |
| 79 | Suc_RepI Zero_RepI Suc_Rep_not_Zero_Rep [unfolded mem_def] | |
| 80 | Suc_Rep_not_Zero_Rep [unfolded mem_def, symmetric] | |
| 81 | inj_Suc_Rep [THEN inj_eq] Rep_Nat_inject) | |
| 82 | done | |
| 13449 | 83 | |
| 27104 
791607529f6d
rep_datatype command now takes list of constructors as input arguments
 haftmann parents: 
26748diff
changeset | 84 | lemma nat_induct [case_names 0 Suc, induct type: nat]: | 
| 
791607529f6d
rep_datatype command now takes list of constructors as input arguments
 haftmann parents: 
26748diff
changeset | 85 |   -- {* for backward compatibility -- naming of variables differs *}
 | 
| 
791607529f6d
rep_datatype command now takes list of constructors as input arguments
 haftmann parents: 
26748diff
changeset | 86 | fixes n | 
| 
791607529f6d
rep_datatype command now takes list of constructors as input arguments
 haftmann parents: 
26748diff
changeset | 87 | assumes "P 0" | 
| 
791607529f6d
rep_datatype command now takes list of constructors as input arguments
 haftmann parents: 
26748diff
changeset | 88 | and "\<And>n. P n \<Longrightarrow> P (Suc n)" | 
| 
791607529f6d
rep_datatype command now takes list of constructors as input arguments
 haftmann parents: 
26748diff
changeset | 89 | shows "P n" | 
| 
791607529f6d
rep_datatype command now takes list of constructors as input arguments
 haftmann parents: 
26748diff
changeset | 90 | using assms by (rule nat.induct) | 
| 21411 | 91 | |
| 92 | declare nat.exhaust [case_names 0 Suc, cases type: nat] | |
| 13449 | 93 | |
| 21672 | 94 | lemmas nat_rec_0 = nat.recs(1) | 
| 95 | and nat_rec_Suc = nat.recs(2) | |
| 96 | ||
| 97 | lemmas nat_case_0 = nat.cases(1) | |
| 98 | and nat_case_Suc = nat.cases(2) | |
| 27104 
791607529f6d
rep_datatype command now takes list of constructors as input arguments
 haftmann parents: 
26748diff
changeset | 99 | |
| 24995 | 100 | |
| 101 | text {* Injectiveness and distinctness lemmas *}
 | |
| 102 | ||
| 27104 
791607529f6d
rep_datatype command now takes list of constructors as input arguments
 haftmann parents: 
26748diff
changeset | 103 | lemma inj_Suc[simp]: "inj_on Suc N" | 
| 
791607529f6d
rep_datatype command now takes list of constructors as input arguments
 haftmann parents: 
26748diff
changeset | 104 | by (simp add: inj_on_def) | 
| 
791607529f6d
rep_datatype command now takes list of constructors as input arguments
 haftmann parents: 
26748diff
changeset | 105 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 106 | lemma Suc_neq_Zero: "Suc m = 0 \<Longrightarrow> R" | 
| 25162 | 107 | by (rule notE, rule Suc_not_Zero) | 
| 24995 | 108 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 109 | lemma Zero_neq_Suc: "0 = Suc m \<Longrightarrow> R" | 
| 25162 | 110 | by (rule Suc_neq_Zero, erule sym) | 
| 24995 | 111 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 112 | lemma Suc_inject: "Suc x = Suc y \<Longrightarrow> x = y" | 
| 25162 | 113 | by (rule inj_Suc [THEN injD]) | 
| 24995 | 114 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 115 | lemma n_not_Suc_n: "n \<noteq> Suc n" | 
| 25162 | 116 | by (induct n) simp_all | 
| 13449 | 117 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 118 | lemma Suc_n_not_n: "Suc n \<noteq> n" | 
| 25162 | 119 | by (rule not_sym, rule n_not_Suc_n) | 
| 13449 | 120 | |
| 121 | text {* A special form of induction for reasoning
 | |
| 122 |   about @{term "m < n"} and @{term "m - n"} *}
 | |
| 123 | ||
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 124 | lemma diff_induct: "(!!x. P x 0) ==> (!!y. P 0 (Suc y)) ==> | 
| 13449 | 125 | (!!x y. P x y ==> P (Suc x) (Suc y)) ==> P m n" | 
| 14208 | 126 | apply (rule_tac x = m in spec) | 
| 15251 | 127 | apply (induct n) | 
| 13449 | 128 | prefer 2 | 
| 129 | apply (rule allI) | |
| 17589 | 130 | apply (induct_tac x, iprover+) | 
| 13449 | 131 | done | 
| 132 | ||
| 24995 | 133 | |
| 134 | subsection {* Arithmetic operators *}
 | |
| 135 | ||
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 136 | instantiation nat :: "{minus, comm_monoid_add}"
 | 
| 25571 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25563diff
changeset | 137 | begin | 
| 24995 | 138 | |
| 25571 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25563diff
changeset | 139 | primrec plus_nat | 
| 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25563diff
changeset | 140 | where | 
| 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25563diff
changeset | 141 | add_0: "0 + n = (n\<Colon>nat)" | 
| 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25563diff
changeset | 142 | | add_Suc: "Suc m + n = Suc (m + n)" | 
| 24995 | 143 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 144 | lemma add_0_right [simp]: "m + 0 = (m::nat)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 145 | by (induct m) simp_all | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 146 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 147 | 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 | 148 | by (induct m) simp_all | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 149 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 150 | 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 | 151 | by simp | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 152 | |
| 25571 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25563diff
changeset | 153 | primrec minus_nat | 
| 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25563diff
changeset | 154 | where | 
| 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25563diff
changeset | 155 | diff_0: "m - 0 = (m\<Colon>nat)" | 
| 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25563diff
changeset | 156 | | diff_Suc: "m - Suc n = (case m - n of 0 => 0 | Suc k => k)" | 
| 24995 | 157 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 158 | declare diff_Suc [simp del, code del] | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 159 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 160 | 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 | 161 | by (induct n) (simp_all add: diff_Suc) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 162 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 163 | 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 | 164 | by (induct n) (simp_all add: diff_Suc) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 165 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 166 | instance proof | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 167 | fix n m q :: nat | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 168 | 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 | 169 | show "n + m = m + n" by (induct n) simp_all | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 170 | show "0 + n = n" by simp | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 171 | qed | 
| 
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 | end | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 174 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 175 | instantiation nat :: comm_semiring_1_cancel | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 176 | begin | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 177 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 178 | definition | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 179 | One_nat_def [simp]: "1 = Suc 0" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 180 | |
| 25571 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25563diff
changeset | 181 | primrec times_nat | 
| 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25563diff
changeset | 182 | where | 
| 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25563diff
changeset | 183 | mult_0: "0 * n = (0\<Colon>nat)" | 
| 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25563diff
changeset | 184 | | mult_Suc: "Suc m * n = n + (m * n)" | 
| 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25563diff
changeset | 185 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 186 | lemma mult_0_right [simp]: "(m::nat) * 0 = 0" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 187 | by (induct m) simp_all | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 188 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 189 | 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 | 190 | by (induct m) (simp_all add: add_left_commute) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 191 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 192 | 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 | 193 | by (induct m) (simp_all add: add_assoc) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 194 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 195 | instance proof | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 196 | fix n m q :: nat | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 197 | show "0 \<noteq> (1::nat)" by simp | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 198 | show "1 * n = n" by simp | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 199 | show "n * m = m * n" by (induct n) simp_all | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 200 | 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 | 201 | 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 | 202 | 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 | 203 | qed | 
| 25571 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25563diff
changeset | 204 | |
| 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25563diff
changeset | 205 | end | 
| 24995 | 206 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 207 | subsubsection {* Addition *}
 | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 208 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 209 | 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 | 210 | by (rule add_assoc) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 211 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 212 | lemma nat_add_commute: "m + n = n + (m::nat)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 213 | by (rule add_commute) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 214 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 215 | 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 | 216 | by (rule add_left_commute) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 217 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 218 | 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 | 219 | by (rule add_left_cancel) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 220 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 221 | 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 | 222 | by (rule add_right_cancel) | 
| 
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 | text {* Reasoning about @{text "m + 0 = 0"}, etc. *}
 | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 225 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 226 | lemma add_is_0 [iff]: | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 227 | fixes m n :: nat | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 228 | shows "(m + n = 0) = (m = 0 & n = 0)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 229 | by (cases m) simp_all | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 230 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 231 | lemma add_is_1: | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 232 | "(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 | 233 | by (cases m) simp_all | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 234 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 235 | lemma one_is_add: | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 236 | "(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 | 237 | by (rule trans, rule eq_commute, rule add_is_1) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 238 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 239 | lemma add_eq_self_zero: | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 240 | fixes m n :: nat | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 241 | shows "m + n = m \<Longrightarrow> n = 0" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 242 | by (induct m) simp_all | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 243 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 244 | 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 | 245 | apply (induct k) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 246 | apply simp | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 247 | apply(drule comp_inj_on[OF _ inj_Suc]) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 248 | apply (simp add:o_def) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 249 | done | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 250 | |
| 
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 | subsubsection {* Difference *}
 | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 253 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 254 | 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 | 255 | by (induct m) simp_all | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 256 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 257 | 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 | 258 | by (induct i j rule: diff_induct) simp_all | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 259 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 260 | 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 | 261 | by (simp add: diff_diff_left) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 262 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 263 | lemma diff_commute: "(i::nat) - j - k = i - k - j" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 264 | by (simp add: diff_diff_left add_commute) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 265 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 266 | lemma diff_add_inverse: "(n + m) - n = (m::nat)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 267 | by (induct n) simp_all | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 268 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 269 | lemma diff_add_inverse2: "(m + n) - n = (m::nat)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 270 | 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 | 271 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 272 | lemma diff_cancel: "(k + m) - (k + n) = m - (n::nat)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 273 | by (induct k) simp_all | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 274 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 275 | lemma diff_cancel2: "(m + k) - (n + k) = m - (n::nat)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 276 | by (simp add: diff_cancel add_commute) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 277 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 278 | lemma diff_add_0: "n - (n + m) = (0::nat)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 279 | by (induct n) simp_all | 
| 
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 | text {* Difference distributes over multiplication *}
 | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 282 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 283 | 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 | 284 | 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 | 285 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 286 | 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 | 287 | by (simp add: diff_mult_distrib mult_commute [of k]) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 288 |   -- {* 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 | 289 | |
| 
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 | subsubsection {* Multiplication *}
 | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 292 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 293 | 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 | 294 | by (rule mult_assoc) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 295 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 296 | lemma nat_mult_commute: "m * n = n * (m::nat)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 297 | by (rule mult_commute) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 298 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 299 | 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 | 300 | by (rule right_distrib) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 301 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 302 | 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 | 303 | by (induct m) auto | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 304 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 305 | lemmas nat_distrib = | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 306 | 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 | 307 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 308 | 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 | 309 | apply (induct m) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 310 | apply simp | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 311 | apply (induct n) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 312 | apply auto | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 313 | done | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 314 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 315 | 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 | 316 | apply (rule trans) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 317 | apply (rule_tac [2] mult_eq_1_iff, fastsimp) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 318 | done | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 319 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 320 | 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 | 321 | proof - | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 322 | 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 | 323 | proof (induct n arbitrary: m) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 324 | case 0 then show "m = 0" by simp | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 325 | next | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 326 | case (Suc n) then show "m = Suc n" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 327 | by (cases m) (simp_all add: eq_commute [of "0"]) | 
| 
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 | then show ?thesis by auto | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 330 | qed | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 331 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 332 | 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 | 333 | by (simp add: mult_commute) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 334 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 335 | 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 | 336 | by (subst mult_cancel1) simp | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 337 | |
| 24995 | 338 | |
| 339 | subsection {* Orders on @{typ nat} *}
 | |
| 340 | ||
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 341 | subsubsection {* Operation definition *}
 | 
| 24995 | 342 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 343 | instantiation nat :: linorder | 
| 25510 | 344 | begin | 
| 345 | ||
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 346 | primrec less_eq_nat where | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 347 | "(0\<Colon>nat) \<le> n \<longleftrightarrow> True" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 348 | | "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 | 349 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 350 | declare less_eq_nat.simps [simp del, code del] | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 351 | 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 | 352 | 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 | 353 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 354 | definition less_nat where | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 355 | 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 | 356 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 357 | 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 | 358 | by (simp add: less_eq_nat.simps(2)) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 359 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 360 | 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 | 361 | unfolding less_eq_Suc_le .. | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 362 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 363 | 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 | 364 | 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 | 365 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 366 | lemma not_less0 [iff]: "\<not> n < (0\<Colon>nat)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 367 | by (simp add: less_eq_Suc_le) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 368 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 369 | 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 | 370 | by simp | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 371 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 372 | 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 | 373 | by (simp add: less_eq_Suc_le) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 374 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 375 | 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 | 376 | by (simp add: less_eq_Suc_le) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 377 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 378 | 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 | 379 | by (induct m arbitrary: n) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 380 | (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 | 381 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 382 | 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 | 383 | by (cases n) (auto intro: le_SucI) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 384 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 385 | lemma less_SucI: "m < n \<Longrightarrow> m < Suc n" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 386 | by (simp add: less_eq_Suc_le) (erule Suc_leD) | 
| 24995 | 387 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 388 | lemma Suc_lessD: "Suc m < n \<Longrightarrow> m < n" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 389 | by (simp add: less_eq_Suc_le) (erule Suc_leD) | 
| 25510 | 390 | |
| 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 | 391 | 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 | 392 | proof | 
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 393 | fix n m :: nat | 
| 27679 | 394 | show "n < m \<longleftrightarrow> n \<le> m \<and> \<not> m \<le> n" | 
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 395 | proof (induct n arbitrary: m) | 
| 27679 | 396 | case 0 then show ?case by (cases m) (simp_all add: less_eq_Suc_le) | 
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 397 | next | 
| 27679 | 398 | case (Suc n) then show ?case by (cases m) (simp_all add: less_eq_Suc_le) | 
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 399 | qed | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 400 | next | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 401 | 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 | 402 | next | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 403 | 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 | 404 | then show "n = m" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 405 | by (induct n arbitrary: m) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 406 | (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 | 407 | next | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 408 | 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 | 409 | then show "n \<le> q" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 410 | proof (induct n arbitrary: m q) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 411 | case 0 show ?case by simp | 
| 
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 | case (Suc n) then show ?case | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 414 | 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 | 415 | 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 | 416 | 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 | 417 | qed | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 418 | next | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 419 | 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 | 420 | by (induct n arbitrary: m) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 421 | (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 | 422 | qed | 
| 25510 | 423 | |
| 424 | end | |
| 13449 | 425 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 426 | subsubsection {* Introduction properties *}
 | 
| 13449 | 427 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 428 | lemma lessI [iff]: "n < Suc n" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 429 | by (simp add: less_Suc_eq_le) | 
| 13449 | 430 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 431 | lemma zero_less_Suc [iff]: "0 < Suc n" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 432 | by (simp add: less_Suc_eq_le) | 
| 13449 | 433 | |
| 434 | ||
| 435 | subsubsection {* Elimination properties *}
 | |
| 436 | ||
| 437 | lemma less_not_refl: "~ n < (n::nat)" | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 438 | by (rule order_less_irrefl) | 
| 13449 | 439 | |
| 26335 
961bbcc9d85b
removed redundant Nat.less_not_sym, Nat.less_asym;
 wenzelm parents: 
26315diff
changeset | 440 | lemma less_not_refl2: "n < m ==> m \<noteq> (n::nat)" | 
| 
961bbcc9d85b
removed redundant Nat.less_not_sym, Nat.less_asym;
 wenzelm parents: 
26315diff
changeset | 441 | by (rule not_sym) (rule less_imp_neq) | 
| 13449 | 442 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 443 | 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 | 444 | by (rule less_imp_neq) | 
| 13449 | 445 | |
| 26335 
961bbcc9d85b
removed redundant Nat.less_not_sym, Nat.less_asym;
 wenzelm parents: 
26315diff
changeset | 446 | lemma less_irrefl_nat: "(n::nat) < n ==> R" | 
| 
961bbcc9d85b
removed redundant Nat.less_not_sym, Nat.less_asym;
 wenzelm parents: 
26315diff
changeset | 447 | by (rule notE, rule less_not_refl) | 
| 13449 | 448 | |
| 449 | lemma less_zeroE: "(n::nat) < 0 ==> R" | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 450 | by (rule notE) (rule not_less0) | 
| 13449 | 451 | |
| 452 | 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 | 453 | unfolding less_Suc_eq_le le_less .. | 
| 13449 | 454 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 455 | lemma less_one [iff, noatp]: "(n < (1::nat)) = (n = 0)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 456 | by (simp add: less_Suc_eq) | 
| 13449 | 457 | |
| 458 | lemma less_Suc0 [iff]: "(n < Suc 0) = (n = 0)" | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 459 | by (simp add: less_Suc_eq) | 
| 13449 | 460 | |
| 461 | lemma Suc_mono: "m < n ==> Suc m < Suc n" | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 462 | by simp | 
| 13449 | 463 | |
| 14302 | 464 | text {* "Less than" is antisymmetric, sort of *}
 | 
| 465 | 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 | 466 | unfolding not_less less_Suc_eq_le by (rule antisym) | 
| 14302 | 467 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 468 | 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 | 469 | by (rule linorder_neq_iff) | 
| 13449 | 470 | |
| 471 | lemma nat_less_cases: assumes major: "(m::nat) < n ==> P n m" | |
| 472 | and eqCase: "m = n ==> P n m" and lessCase: "n<m ==> P n m" | |
| 473 | shows "P n m" | |
| 474 | apply (rule less_linear [THEN disjE]) | |
| 475 | apply (erule_tac [2] disjE) | |
| 476 | apply (erule lessCase) | |
| 477 | apply (erule sym [THEN eqCase]) | |
| 478 | apply (erule major) | |
| 479 | done | |
| 480 | ||
| 481 | ||
| 482 | subsubsection {* Inductive (?) properties *}
 | |
| 483 | ||
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 484 | 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 | 485 | unfolding less_eq_Suc_le [of m] le_less by simp | 
| 13449 | 486 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 487 | lemma lessE: | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 488 | assumes major: "i < k" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 489 | 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 | 490 | shows P | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 491 | proof - | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 492 | 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 | 493 | unfolding less_eq_Suc_le by (induct k) simp_all | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 494 | 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 | 495 | by (clarsimp simp add: less_le) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 496 | with p1 p2 show P by auto | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 497 | qed | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 498 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 499 | lemma less_SucE: assumes major: "m < Suc n" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 500 | 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 | 501 | apply (rule major [THEN lessE]) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 502 | apply (rule eq, blast) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 503 | apply (rule less, blast) | 
| 13449 | 504 | done | 
| 505 | ||
| 506 | lemma Suc_lessE: assumes major: "Suc i < k" | |
| 507 | and minor: "!!j. i < j ==> k = Suc j ==> P" shows P | |
| 508 | apply (rule major [THEN lessE]) | |
| 509 | apply (erule lessI [THEN minor]) | |
| 14208 | 510 | apply (erule Suc_lessD [THEN minor], assumption) | 
| 13449 | 511 | done | 
| 512 | ||
| 513 | 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 | 514 | by simp | 
| 13449 | 515 | |
| 516 | lemma less_trans_Suc: | |
| 517 | assumes le: "i < j" shows "j < k ==> Suc i < k" | |
| 14208 | 518 | apply (induct k, simp_all) | 
| 13449 | 519 | apply (insert le) | 
| 520 | apply (simp add: less_Suc_eq) | |
| 521 | apply (blast dest: Suc_lessD) | |
| 522 | done | |
| 523 | ||
| 524 | 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 | 525 | 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 | 526 | unfolding not_less less_Suc_eq_le .. | 
| 13449 | 527 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 528 | 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 | 529 | unfolding not_le Suc_le_eq .. | 
| 21243 | 530 | |
| 24995 | 531 | text {* Properties of "less than or equal" *}
 | 
| 13449 | 532 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 533 | 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 | 534 | unfolding less_Suc_eq_le . | 
| 13449 | 535 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 536 | 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 | 537 | unfolding not_le less_Suc_eq_le .. | 
| 13449 | 538 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 539 | 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 | 540 | by (simp add: less_Suc_eq_le [symmetric] less_Suc_eq) | 
| 13449 | 541 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 542 | 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 | 543 | by (drule le_Suc_eq [THEN iffD1], iprover+) | 
| 13449 | 544 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 545 | lemma Suc_leI: "m < n ==> Suc(m) \<le> n" | 
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 546 | unfolding Suc_le_eq . | 
| 13449 | 547 | |
| 548 | 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 | 549 | 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 | 550 | unfolding Suc_le_eq . | 
| 13449 | 551 | |
| 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 | 552 | 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 | 553 | unfolding less_eq_Suc_le by (rule Suc_leD) | 
| 13449 | 554 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 555 | 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 | 556 | lemmas le_simps = less_imp_le_nat less_Suc_eq_le Suc_le_eq | 
| 13449 | 557 | |
| 558 | ||
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 559 | text {* Equivalence of @{term "m \<le> n"} and @{term "m < n | m = n"} *}
 | 
| 13449 | 560 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 561 | 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 | 562 | unfolding le_less . | 
| 13449 | 563 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 564 | 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 | 565 | by (rule le_less) | 
| 13449 | 566 | |
| 22718 | 567 | text {* Useful with @{text blast}. *}
 | 
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 568 | 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 | 569 | by auto | 
| 13449 | 570 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 571 | lemma le_refl: "n \<le> (n::nat)" | 
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 572 | by simp | 
| 13449 | 573 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 574 | 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 | 575 | by (rule order_trans) | 
| 13449 | 576 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 577 | 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 | 578 | by (rule antisym) | 
| 13449 | 579 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 580 | 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 | 581 | by (rule less_le) | 
| 13449 | 582 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 583 | 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 | 584 | unfolding less_le .. | 
| 13449 | 585 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 586 | 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 | 587 | by (rule linear) | 
| 14341 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 paulson parents: 
14331diff
changeset | 588 | |
| 22718 | 589 | lemmas linorder_neqE_nat = linorder_neqE [where 'a = nat] | 
| 15921 | 590 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 591 | 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 | 592 | unfolding less_Suc_eq_le by auto | 
| 13449 | 593 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 594 | 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 | 595 | unfolding not_less by (rule le_less_Suc_eq) | 
| 13449 | 596 | |
| 597 | lemmas not_less_simps = not_less_less_Suc_eq le_less_Suc_eq | |
| 598 | ||
| 22718 | 599 | 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 | 600 | NOTE USE OF @{text "=="} *}
 | 
| 13449 | 601 | lemma def_nat_rec_0: "(!!n. f n == nat_rec c h n) ==> f 0 = c" | 
| 25162 | 602 | by simp | 
| 13449 | 603 | |
| 604 | lemma def_nat_rec_Suc: "(!!n. f n == nat_rec c h n) ==> f (Suc n) = h n (f n)" | |
| 25162 | 605 | by simp | 
| 13449 | 606 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 607 | lemma not0_implies_Suc: "n \<noteq> 0 ==> \<exists>m. n = Suc m" | 
| 25162 | 608 | by (cases n) simp_all | 
| 609 | ||
| 610 | lemma gr0_implies_Suc: "n > 0 ==> \<exists>m. n = Suc m" | |
| 611 | by (cases n) simp_all | |
| 13449 | 612 | |
| 22718 | 613 | lemma gr_implies_not0: fixes n :: nat shows "m<n ==> n \<noteq> 0" | 
| 25162 | 614 | by (cases n) simp_all | 
| 13449 | 615 | |
| 25162 | 616 | lemma neq0_conv[iff]: fixes n :: nat shows "(n \<noteq> 0) = (0 < n)" | 
| 617 | by (cases n) simp_all | |
| 25140 | 618 | |
| 13449 | 619 | text {* This theorem is useful with @{text blast} *}
 | 
| 620 | lemma gr0I: "((n::nat) = 0 ==> False) ==> 0 < n" | |
| 25162 | 621 | by (rule neq0_conv[THEN iffD1], iprover) | 
| 13449 | 622 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 623 | lemma gr0_conv_Suc: "(0 < n) = (\<exists>m. n = Suc m)" | 
| 25162 | 624 | by (fast intro: not0_implies_Suc) | 
| 13449 | 625 | |
| 24286 
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
 paulson parents: 
24196diff
changeset | 626 | 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 | 627 | using neq0_conv by blast | 
| 13449 | 628 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 629 | lemma Suc_le_D: "(Suc n \<le> m') ==> (? m. m' = Suc m)" | 
| 25162 | 630 | by (induct m') simp_all | 
| 13449 | 631 | |
| 632 | text {* Useful in certain inductive arguments *}
 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 633 | lemma less_Suc_eq_0_disj: "(m < Suc n) = (m = 0 | (\<exists>j. m = Suc j & j < n))" | 
| 25162 | 634 | by (cases m) simp_all | 
| 13449 | 635 | |
| 636 | ||
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 637 | subsubsection {* @{term min} and @{term max} *}
 | 
| 13449 | 638 | |
| 25076 | 639 | lemma mono_Suc: "mono Suc" | 
| 25162 | 640 | by (rule monoI) simp | 
| 25076 | 641 | |
| 13449 | 642 | lemma min_0L [simp]: "min 0 n = (0::nat)" | 
| 25162 | 643 | by (rule min_leastL) simp | 
| 13449 | 644 | |
| 645 | lemma min_0R [simp]: "min n 0 = (0::nat)" | |
| 25162 | 646 | by (rule min_leastR) simp | 
| 13449 | 647 | |
| 648 | lemma min_Suc_Suc [simp]: "min (Suc m) (Suc n) = Suc (min m n)" | |
| 25162 | 649 | by (simp add: mono_Suc min_of_mono) | 
| 13449 | 650 | |
| 22191 | 651 | lemma min_Suc1: | 
| 652 | "min (Suc n) m = (case m of 0 => 0 | Suc m' => Suc(min n m'))" | |
| 25162 | 653 | by (simp split: nat.split) | 
| 22191 | 654 | |
| 655 | lemma min_Suc2: | |
| 656 | "min m (Suc n) = (case m of 0 => 0 | Suc m' => Suc(min m' n))" | |
| 25162 | 657 | by (simp split: nat.split) | 
| 22191 | 658 | |
| 13449 | 659 | lemma max_0L [simp]: "max 0 n = (n::nat)" | 
| 25162 | 660 | by (rule max_leastL) simp | 
| 13449 | 661 | |
| 662 | lemma max_0R [simp]: "max n 0 = (n::nat)" | |
| 25162 | 663 | by (rule max_leastR) simp | 
| 13449 | 664 | |
| 665 | lemma max_Suc_Suc [simp]: "max (Suc m) (Suc n) = Suc(max m n)" | |
| 25162 | 666 | by (simp add: mono_Suc max_of_mono) | 
| 13449 | 667 | |
| 22191 | 668 | lemma max_Suc1: | 
| 669 | "max (Suc n) m = (case m of 0 => Suc n | Suc m' => Suc(max n m'))" | |
| 25162 | 670 | by (simp split: nat.split) | 
| 22191 | 671 | |
| 672 | lemma max_Suc2: | |
| 673 | "max m (Suc n) = (case m of 0 => Suc n | Suc m' => Suc(max m' n))" | |
| 25162 | 674 | by (simp split: nat.split) | 
| 22191 | 675 | |
| 13449 | 676 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 677 | subsubsection {* Monotonicity of Addition *}
 | 
| 13449 | 678 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 679 | 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 | 680 | by (simp add: diff_Suc split: nat.split) | 
| 13449 | 681 | |
| 14331 | 682 | lemma nat_add_left_cancel_le [simp]: "(k + m \<le> k + n) = (m\<le>(n::nat))" | 
| 25162 | 683 | by (induct k) simp_all | 
| 13449 | 684 | |
| 14331 | 685 | lemma nat_add_left_cancel_less [simp]: "(k + m < k + n) = (m<(n::nat))" | 
| 25162 | 686 | by (induct k) simp_all | 
| 13449 | 687 | |
| 25162 | 688 | lemma add_gr_0 [iff]: "!!m::nat. (m + n > 0) = (m>0 | n>0)" | 
| 689 | by(auto dest:gr0_implies_Suc) | |
| 13449 | 690 | |
| 14341 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 paulson parents: 
14331diff
changeset | 691 | text {* strict, in 1st argument *}
 | 
| 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 paulson parents: 
14331diff
changeset | 692 | lemma add_less_mono1: "i < j ==> i + k < j + (k::nat)" | 
| 25162 | 693 | by (induct k) simp_all | 
| 14341 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 paulson parents: 
14331diff
changeset | 694 | |
| 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 paulson parents: 
14331diff
changeset | 695 | text {* strict, in both arguments *}
 | 
| 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 paulson parents: 
14331diff
changeset | 696 | 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 | 697 | apply (rule add_less_mono1 [THEN less_trans], assumption+) | 
| 15251 | 698 | apply (induct j, simp_all) | 
| 14341 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 paulson parents: 
14331diff
changeset | 699 | done | 
| 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 paulson parents: 
14331diff
changeset | 700 | |
| 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 paulson parents: 
14331diff
changeset | 701 | 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 | 702 | 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 | 703 | apply (induct n) | 
| 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 paulson parents: 
14331diff
changeset | 704 | apply (simp_all add: order_le_less) | 
| 22718 | 705 | apply (blast elim!: less_SucE | 
| 14341 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 paulson parents: 
14331diff
changeset | 706 | 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 | 707 | done | 
| 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 paulson parents: 
14331diff
changeset | 708 | |
| 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 paulson parents: 
14331diff
changeset | 709 | 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 | 710 | 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 | 711 | apply(auto simp: gr0_conv_Suc) | 
| 
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
 nipkow parents: 
25111diff
changeset | 712 | apply (induct_tac m) | 
| 
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
 nipkow parents: 
25111diff
changeset | 713 | apply (simp_all add: add_less_mono) | 
| 
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
 nipkow parents: 
25111diff
changeset | 714 | done | 
| 14341 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 paulson parents: 
14331diff
changeset | 715 | |
| 14740 | 716 | text{*The naturals form an ordered @{text comm_semiring_1_cancel}*}
 | 
| 14738 | 717 | instance nat :: ordered_semidom | 
| 14341 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 paulson parents: 
14331diff
changeset | 718 | proof | 
| 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 paulson parents: 
14331diff
changeset | 719 | fix i j k :: nat | 
| 14348 
744c868ee0b7
Defining the type class "ringpower" and deleting superseded theorems for
 paulson parents: 
14341diff
changeset | 720 | show "0 < (1::nat)" by simp | 
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 721 | 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 | 722 | 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 | 723 | qed | 
| 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 724 | |
| 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 725 | lemma nat_mult_1: "(1::nat) * n = n" | 
| 25162 | 726 | by simp | 
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 727 | |
| 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 728 | lemma nat_mult_1_right: "n * (1::nat) = n" | 
| 25162 | 729 | by simp | 
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 730 | |
| 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 731 | |
| 26748 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 732 | subsubsection {* Additional theorems about @{term "op \<le>"} *}
 | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 733 | |
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 734 | text {* Complete induction, aka course-of-values induction *}
 | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 735 | |
| 27823 | 736 | instance nat :: wellorder proof | 
| 737 | fix P and n :: nat | |
| 738 | assume step: "\<And>n::nat. (\<And>m. m < n \<Longrightarrow> P m) \<Longrightarrow> P n" | |
| 739 | have "\<And>q. q \<le> n \<Longrightarrow> P q" | |
| 740 | proof (induct n) | |
| 741 | case (0 n) | |
| 26748 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 742 | have "P 0" by (rule step) auto | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 743 | thus ?case using 0 by auto | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 744 | next | 
| 27823 | 745 | case (Suc m n) | 
| 746 | then have "n \<le> m \<or> n = Suc m" by (simp add: le_Suc_eq) | |
| 26748 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 747 | thus ?case | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 748 | proof | 
| 27823 | 749 | assume "n \<le> m" thus "P n" by (rule Suc(1)) | 
| 26748 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 750 | next | 
| 27823 | 751 | assume n: "n = Suc m" | 
| 752 | show "P n" | |
| 753 | by (rule step) (rule Suc(1), simp add: n le_simps) | |
| 26748 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 754 | qed | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 755 | qed | 
| 27823 | 756 | then show "P n" by auto | 
| 26748 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 757 | qed | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 758 | |
| 27823 | 759 | lemma Least_Suc: | 
| 760 | "[| P n; ~ P 0 |] ==> (LEAST n. P n) = Suc (LEAST m. P(Suc m))" | |
| 761 | apply (case_tac "n", auto) | |
| 762 | apply (frule LeastI) | |
| 763 | apply (drule_tac P = "%x. P (Suc x) " in LeastI) | |
| 764 | apply (subgoal_tac " (LEAST x. P x) \<le> Suc (LEAST x. P (Suc x))") | |
| 765 | apply (erule_tac [2] Least_le) | |
| 766 | apply (case_tac "LEAST x. P x", auto) | |
| 767 | apply (drule_tac P = "%x. P (Suc x) " in Least_le) | |
| 768 | apply (blast intro: order_antisym) | |
| 769 | done | |
| 770 | ||
| 771 | lemma Least_Suc2: | |
| 772 | "[|P n; Q m; ~P 0; !k. P (Suc k) = Q k|] ==> Least P = Suc (Least Q)" | |
| 773 | apply (erule (1) Least_Suc [THEN ssubst]) | |
| 774 | apply simp | |
| 775 | done | |
| 776 | ||
| 777 | lemma ex_least_nat_le: "\<not>P(0) \<Longrightarrow> P(n::nat) \<Longrightarrow> \<exists>k\<le>n. (\<forall>i<k. \<not>P i) & P(k)" | |
| 778 | apply (cases n) | |
| 779 | apply blast | |
| 780 | apply (rule_tac x="LEAST k. P(k)" in exI) | |
| 781 | apply (blast intro: Least_le dest: not_less_Least intro: LeastI_ex) | |
| 782 | done | |
| 783 | ||
| 784 | lemma ex_least_nat_less: "\<not>P(0) \<Longrightarrow> P(n::nat) \<Longrightarrow> \<exists>k<n. (\<forall>i\<le>k. \<not>P i) & P(k+1)" | |
| 785 | apply (cases n) | |
| 786 | apply blast | |
| 787 | apply (frule (1) ex_least_nat_le) | |
| 788 | apply (erule exE) | |
| 789 | apply (case_tac k) | |
| 790 | apply simp | |
| 791 | apply (rename_tac k1) | |
| 792 | apply (rule_tac x=k1 in exI) | |
| 793 | apply (auto simp add: less_eq_Suc_le) | |
| 794 | done | |
| 795 | ||
| 26748 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 796 | lemma nat_less_induct: | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 797 | assumes "!!n. \<forall>m::nat. m < n --> P m ==> P n" shows "P n" | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 798 | using assms less_induct by blast | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 799 | |
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 800 | lemma measure_induct_rule [case_names less]: | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 801 | fixes f :: "'a \<Rightarrow> nat" | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 802 | assumes step: "\<And>x. (\<And>y. f y < f x \<Longrightarrow> P y) \<Longrightarrow> P x" | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 803 | shows "P a" | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 804 | by (induct m\<equiv>"f a" arbitrary: a rule: less_induct) (auto intro: step) | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 805 | |
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 806 | text {* old style induction rules: *}
 | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 807 | lemma measure_induct: | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 808 | fixes f :: "'a \<Rightarrow> nat" | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 809 | shows "(\<And>x. \<forall>y. f y < f x \<longrightarrow> P y \<Longrightarrow> P x) \<Longrightarrow> P a" | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 810 | by (rule measure_induct_rule [of f P a]) iprover | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 811 | |
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 812 | lemma full_nat_induct: | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 813 | assumes step: "(!!n. (ALL m. Suc m <= n --> P m) ==> P n)" | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 814 | shows "P n" | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 815 | by (rule less_induct) (auto intro: step simp:le_simps) | 
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 816 | |
| 19870 | 817 | text{*An induction rule for estabilishing binary relations*}
 | 
| 22718 | 818 | lemma less_Suc_induct: | 
| 19870 | 819 | assumes less: "i < j" | 
| 820 | and step: "!!i. P i (Suc i)" | |
| 821 | and trans: "!!i j k. P i j ==> P j k ==> P i k" | |
| 822 | shows "P i j" | |
| 823 | proof - | |
| 22718 | 824 | from less obtain k where j: "j = Suc(i+k)" by (auto dest: less_imp_Suc_add) | 
| 825 | have "P i (Suc (i + k))" | |
| 19870 | 826 | proof (induct k) | 
| 22718 | 827 | case 0 | 
| 828 | show ?case by (simp add: step) | |
| 19870 | 829 | next | 
| 830 | case (Suc k) | |
| 22718 | 831 | thus ?case by (auto intro: assms) | 
| 19870 | 832 | qed | 
| 22718 | 833 | thus "P i j" by (simp add: j) | 
| 19870 | 834 | qed | 
| 835 | ||
| 26748 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 836 | lemma nat_induct2: "[|P 0; P (Suc 0); !!k. P k ==> P (Suc (Suc k))|] ==> P n" | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 837 | apply (rule nat_less_induct) | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 838 | apply (case_tac n) | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 839 | apply (case_tac [2] nat) | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 840 | apply (blast intro: less_trans)+ | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 841 | done | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 842 | |
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 843 | text {* The method of infinite descent, frequently used in number theory.
 | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 844 | Provided by Roelof Oosterhuis. | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 845 | $P(n)$ is true for all $n\in\mathbb{N}$ if
 | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 846 | \begin{itemize}
 | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 847 | \item case ``0'': given $n=0$ prove $P(n)$, | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 848 | \item case ``smaller'': given $n>0$ and $\neg P(n)$ prove there exists | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 849 | a smaller integer $m$ such that $\neg P(m)$. | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 850 | \end{itemize} *}
 | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 851 | |
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 852 | text{* A compact version without explicit base case: *}
 | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 853 | lemma infinite_descent: | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 854 | "\<lbrakk> !!n::nat. \<not> P n \<Longrightarrow> \<exists>m<n. \<not> P m \<rbrakk> \<Longrightarrow> P n" | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 855 | by (induct n rule: less_induct, auto) | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 856 | |
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 857 | lemma infinite_descent0[case_names 0 smaller]: | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 858 | "\<lbrakk> P 0; !!n. n>0 \<Longrightarrow> \<not> P n \<Longrightarrow> (\<exists>m::nat. m < n \<and> \<not>P m) \<rbrakk> \<Longrightarrow> P n" | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 859 | by (rule infinite_descent) (case_tac "n>0", auto) | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 860 | |
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 861 | text {*
 | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 862 | Infinite descent using a mapping to $\mathbb{N}$:
 | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 863 | $P(x)$ is true for all $x\in D$ if there exists a $V: D \to \mathbb{N}$ and
 | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 864 | \begin{itemize}
 | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 865 | \item case ``0'': given $V(x)=0$ prove $P(x)$, | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 866 | \item case ``smaller'': given $V(x)>0$ and $\neg P(x)$ prove there exists a $y \in D$ such that $V(y)<V(x)$ and $~\neg P(y)$. | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 867 | \end{itemize}
 | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 868 | NB: the proof also shows how to use the previous lemma. *} | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 869 | |
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 870 | corollary infinite_descent0_measure [case_names 0 smaller]: | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 871 | assumes A0: "!!x. V x = (0::nat) \<Longrightarrow> P x" | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 872 | and A1: "!!x. V x > 0 \<Longrightarrow> \<not>P x \<Longrightarrow> (\<exists>y. V y < V x \<and> \<not>P y)" | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 873 | shows "P x" | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 874 | proof - | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 875 | obtain n where "n = V x" by auto | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 876 | moreover have "\<And>x. V x = n \<Longrightarrow> P x" | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 877 | proof (induct n rule: infinite_descent0) | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 878 | case 0 -- "i.e. $V(x) = 0$" | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 879 | with A0 show "P x" by auto | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 880 | next -- "now $n>0$ and $P(x)$ does not hold for some $x$ with $V(x)=n$" | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 881 | case (smaller n) | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 882 | then obtain x where vxn: "V x = n " and "V x > 0 \<and> \<not> P x" by auto | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 883 | with A1 obtain y where "V y < V x \<and> \<not> P y" by auto | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 884 | with vxn obtain m where "m = V y \<and> m<n \<and> \<not> P y" by auto | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 885 | then show ?case by auto | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 886 | qed | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 887 | ultimately show "P x" by auto | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 888 | qed | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 889 | |
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 890 | text{* Again, without explicit base case: *}
 | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 891 | lemma infinite_descent_measure: | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 892 | assumes "!!x. \<not> P x \<Longrightarrow> \<exists>y. (V::'a\<Rightarrow>nat) y < V x \<and> \<not> P y" shows "P x" | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 893 | proof - | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 894 | from assms obtain n where "n = V x" by auto | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 895 | moreover have "!!x. V x = n \<Longrightarrow> P x" | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 896 | proof (induct n rule: infinite_descent, auto) | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 897 | fix x assume "\<not> P x" | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 898 | with assms show "\<exists>m < V x. \<exists>y. V y = m \<and> \<not> P y" by auto | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 899 | qed | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 900 | ultimately show "P x" by auto | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 901 | qed | 
| 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 902 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 903 | text {* A [clumsy] way of lifting @{text "<"}
 | 
| 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 904 |   monotonicity to @{text "\<le>"} monotonicity *}
 | 
| 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 905 | lemma less_mono_imp_le_mono: | 
| 24438 | 906 | "\<lbrakk> !!i j::nat. i < j \<Longrightarrow> f i < f j; i \<le> j \<rbrakk> \<Longrightarrow> f i \<le> ((f j)::nat)" | 
| 907 | by (simp add: order_le_less) (blast) | |
| 908 | ||
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 909 | |
| 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 910 | text {* non-strict, in 1st argument *}
 | 
| 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 911 | lemma add_le_mono1: "i \<le> j ==> i + k \<le> j + (k::nat)" | 
| 24438 | 912 | by (rule add_right_mono) | 
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 913 | |
| 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 914 | text {* non-strict, in both arguments *}
 | 
| 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 915 | lemma add_le_mono: "[| i \<le> j; k \<le> l |] ==> i + k \<le> j + (l::nat)" | 
| 24438 | 916 | by (rule add_mono) | 
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 917 | |
| 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 918 | lemma le_add2: "n \<le> ((m + n)::nat)" | 
| 24438 | 919 | by (insert add_right_mono [of 0 m n], simp) | 
| 13449 | 920 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 921 | lemma le_add1: "n \<le> ((n + m)::nat)" | 
| 24438 | 922 | by (simp add: add_commute, rule le_add2) | 
| 13449 | 923 | |
| 924 | lemma less_add_Suc1: "i < Suc (i + m)" | |
| 24438 | 925 | by (rule le_less_trans, rule le_add1, rule lessI) | 
| 13449 | 926 | |
| 927 | lemma less_add_Suc2: "i < Suc (m + i)" | |
| 24438 | 928 | by (rule le_less_trans, rule le_add2, rule lessI) | 
| 13449 | 929 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 930 | lemma less_iff_Suc_add: "(m < n) = (\<exists>k. n = Suc (m + k))" | 
| 24438 | 931 | by (iprover intro!: less_add_Suc1 less_imp_Suc_add) | 
| 13449 | 932 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 933 | lemma trans_le_add1: "(i::nat) \<le> j ==> i \<le> j + m" | 
| 24438 | 934 | by (rule le_trans, assumption, rule le_add1) | 
| 13449 | 935 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 936 | lemma trans_le_add2: "(i::nat) \<le> j ==> i \<le> m + j" | 
| 24438 | 937 | by (rule le_trans, assumption, rule le_add2) | 
| 13449 | 938 | |
| 939 | lemma trans_less_add1: "(i::nat) < j ==> i < j + m" | |
| 24438 | 940 | by (rule less_le_trans, assumption, rule le_add1) | 
| 13449 | 941 | |
| 942 | lemma trans_less_add2: "(i::nat) < j ==> i < m + j" | |
| 24438 | 943 | by (rule less_le_trans, assumption, rule le_add2) | 
| 13449 | 944 | |
| 945 | lemma add_lessD1: "i + j < (k::nat) ==> i < k" | |
| 24438 | 946 | apply (rule le_less_trans [of _ "i+j"]) | 
| 947 | apply (simp_all add: le_add1) | |
| 948 | done | |
| 13449 | 949 | |
| 950 | lemma not_add_less1 [iff]: "~ (i + j < (i::nat))" | |
| 24438 | 951 | apply (rule notI) | 
| 26335 
961bbcc9d85b
removed redundant Nat.less_not_sym, Nat.less_asym;
 wenzelm parents: 
26315diff
changeset | 952 | apply (drule add_lessD1) | 
| 
961bbcc9d85b
removed redundant Nat.less_not_sym, Nat.less_asym;
 wenzelm parents: 
26315diff
changeset | 953 | apply (erule less_irrefl [THEN notE]) | 
| 24438 | 954 | done | 
| 13449 | 955 | |
| 956 | lemma not_add_less2 [iff]: "~ (j + i < (i::nat))" | |
| 26748 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 957 | by (simp add: add_commute) | 
| 13449 | 958 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 959 | lemma add_leD1: "m + k \<le> n ==> m \<le> (n::nat)" | 
| 24438 | 960 | apply (rule order_trans [of _ "m+k"]) | 
| 961 | apply (simp_all add: le_add1) | |
| 962 | done | |
| 13449 | 963 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 964 | lemma add_leD2: "m + k \<le> n ==> k \<le> (n::nat)" | 
| 24438 | 965 | apply (simp add: add_commute) | 
| 966 | apply (erule add_leD1) | |
| 967 | done | |
| 13449 | 968 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 969 | lemma add_leE: "(m::nat) + k \<le> n ==> (m \<le> n ==> k \<le> n ==> R) ==> R" | 
| 24438 | 970 | by (blast dest: add_leD1 add_leD2) | 
| 13449 | 971 | |
| 972 | text {* needs @{text "!!k"} for @{text add_ac} to work *}
 | |
| 973 | lemma less_add_eq_less: "!!k::nat. k < l ==> m + l = k + n ==> m < n" | |
| 24438 | 974 | by (force simp del: add_Suc_right | 
| 13449 | 975 | simp add: less_iff_Suc_add add_Suc_right [symmetric] add_ac) | 
| 976 | ||
| 977 | ||
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 978 | subsubsection {* More results about difference *}
 | 
| 13449 | 979 | |
| 980 | 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 | 981 |   if @{term "n \<le> m"} then @{term "n + (m - n) = m"}. *}
 | 
| 13449 | 982 | lemma add_diff_inverse: "~ m < n ==> n + (m - n) = (m::nat)" | 
| 24438 | 983 | by (induct m n rule: diff_induct) simp_all | 
| 13449 | 984 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 985 | lemma le_add_diff_inverse [simp]: "n \<le> m ==> n + (m - n) = (m::nat)" | 
| 24438 | 986 | by (simp add: add_diff_inverse linorder_not_less) | 
| 13449 | 987 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 988 | lemma le_add_diff_inverse2 [simp]: "n \<le> m ==> (m - n) + n = (m::nat)" | 
| 26748 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 989 | by (simp add: add_commute) | 
| 13449 | 990 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 991 | lemma Suc_diff_le: "n \<le> m ==> Suc m - n = Suc (m - n)" | 
| 24438 | 992 | by (induct m n rule: diff_induct) simp_all | 
| 13449 | 993 | |
| 994 | lemma diff_less_Suc: "m - n < Suc m" | |
| 24438 | 995 | apply (induct m n rule: diff_induct) | 
| 996 | apply (erule_tac [3] less_SucE) | |
| 997 | apply (simp_all add: less_Suc_eq) | |
| 998 | done | |
| 13449 | 999 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 1000 | lemma diff_le_self [simp]: "m - n \<le> (m::nat)" | 
| 24438 | 1001 | by (induct m n rule: diff_induct) (simp_all add: le_SucI) | 
| 13449 | 1002 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1003 | 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 | 1004 | 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 | 1005 | |
| 13449 | 1006 | lemma less_imp_diff_less: "(j::nat) < k ==> j - n < k" | 
| 24438 | 1007 | by (rule le_less_trans, rule diff_le_self) | 
| 13449 | 1008 | |
| 1009 | lemma diff_Suc_less [simp]: "0<n ==> n - Suc i < n" | |
| 24438 | 1010 | by (cases n) (auto simp add: le_simps) | 
| 13449 | 1011 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 1012 | lemma diff_add_assoc: "k \<le> (j::nat) ==> (i + j) - k = i + (j - k)" | 
| 24438 | 1013 | by (induct j k rule: diff_induct) simp_all | 
| 13449 | 1014 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 1015 | lemma diff_add_assoc2: "k \<le> (j::nat) ==> (j + i) - k = (j - k) + i" | 
| 24438 | 1016 | by (simp add: add_commute diff_add_assoc) | 
| 13449 | 1017 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 1018 | lemma le_imp_diff_is_add: "i \<le> (j::nat) ==> (j - i = k) = (j = k + i)" | 
| 24438 | 1019 | by (auto simp add: diff_add_inverse2) | 
| 13449 | 1020 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 1021 | lemma diff_is_0_eq [simp]: "((m::nat) - n = 0) = (m \<le> n)" | 
| 24438 | 1022 | by (induct m n rule: diff_induct) simp_all | 
| 13449 | 1023 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 1024 | lemma diff_is_0_eq' [simp]: "m \<le> n ==> (m::nat) - n = 0" | 
| 24438 | 1025 | by (rule iffD2, rule diff_is_0_eq) | 
| 13449 | 1026 | |
| 1027 | lemma zero_less_diff [simp]: "(0 < n - (m::nat)) = (m < n)" | |
| 24438 | 1028 | by (induct m n rule: diff_induct) simp_all | 
| 13449 | 1029 | |
| 22718 | 1030 | lemma less_imp_add_positive: | 
| 1031 | assumes "i < j" | |
| 1032 | shows "\<exists>k::nat. 0 < k & i + k = j" | |
| 1033 | proof | |
| 1034 | from assms show "0 < j - i & i + (j - i) = j" | |
| 23476 | 1035 | by (simp add: order_less_imp_le) | 
| 22718 | 1036 | qed | 
| 9436 
62bb04ab4b01
rearranged setup of arithmetic procedures, avoiding global reference values;
 wenzelm parents: 
7702diff
changeset | 1037 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1038 | text {* a nice rewrite for bounded subtraction *}
 | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1039 | lemma nat_minus_add_max: | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1040 | fixes n m :: nat | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1041 | shows "n - m + m = max n m" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1042 | by (simp add: max_def not_le order_less_imp_le) | 
| 13449 | 1043 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1044 | lemma nat_diff_split: | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1045 | "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 | 1046 |     -- {* elimination of @{text -} on @{text nat} *}
 | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1047 | by (cases "a < b") | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1048 | (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 | 1049 | not_less le_less dest!: sym [of a] sym [of b] add_eq_self_zero) | 
| 13449 | 1050 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1051 | lemma nat_diff_split_asm: | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1052 | "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 | 1053 |     -- {* elimination of @{text -} on @{text nat} in assumptions *}
 | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1054 | by (auto split: nat_diff_split) | 
| 13449 | 1055 | |
| 1056 | ||
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1057 | subsubsection {* Monotonicity of Multiplication *}
 | 
| 13449 | 1058 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 1059 | lemma mult_le_mono1: "i \<le> (j::nat) ==> i * k \<le> j * k" | 
| 24438 | 1060 | by (simp add: mult_right_mono) | 
| 13449 | 1061 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 1062 | lemma mult_le_mono2: "i \<le> (j::nat) ==> k * i \<le> k * j" | 
| 24438 | 1063 | by (simp add: mult_left_mono) | 
| 13449 | 1064 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 1065 | text {* @{text "\<le>"} monotonicity, BOTH arguments *}
 | 
| 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 1066 | lemma mult_le_mono: "i \<le> (j::nat) ==> k \<le> l ==> i * k \<le> j * l" | 
| 24438 | 1067 | by (simp add: mult_mono) | 
| 13449 | 1068 | |
| 1069 | lemma mult_less_mono1: "(i::nat) < j ==> 0 < k ==> i * k < j * k" | |
| 24438 | 1070 | by (simp add: mult_strict_right_mono) | 
| 13449 | 1071 | |
| 14266 | 1072 | text{*Differs from the standard @{text zero_less_mult_iff} in that
 | 
| 1073 | there are no negative numbers.*} | |
| 1074 | lemma nat_0_less_mult_iff [simp]: "(0 < (m::nat) * n) = (0 < m & 0 < n)" | |
| 13449 | 1075 | apply (induct m) | 
| 22718 | 1076 | apply simp | 
| 1077 | apply (case_tac n) | |
| 1078 | apply simp_all | |
| 13449 | 1079 | done | 
| 1080 | ||
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 1081 | lemma one_le_mult_iff [simp]: "(Suc 0 \<le> m * n) = (1 \<le> m & 1 \<le> n)" | 
| 13449 | 1082 | apply (induct m) | 
| 22718 | 1083 | apply simp | 
| 1084 | apply (case_tac n) | |
| 1085 | apply simp_all | |
| 13449 | 1086 | done | 
| 1087 | ||
| 14341 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 paulson parents: 
14331diff
changeset | 1088 | lemma mult_less_cancel2 [simp]: "((m::nat) * k < n * k) = (0 < k & m < n)" | 
| 13449 | 1089 | apply (safe intro!: mult_less_mono1) | 
| 14208 | 1090 | apply (case_tac k, auto) | 
| 13449 | 1091 | apply (simp del: le_0_eq add: linorder_not_le [symmetric]) | 
| 1092 | apply (blast intro: mult_le_mono1) | |
| 1093 | done | |
| 1094 | ||
| 1095 | lemma mult_less_cancel1 [simp]: "(k * (m::nat) < k * n) = (0 < k & m < n)" | |
| 24438 | 1096 | by (simp add: mult_commute [of k]) | 
| 13449 | 1097 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 1098 | lemma mult_le_cancel1 [simp]: "(k * (m::nat) \<le> k * n) = (0 < k --> m \<le> n)" | 
| 24438 | 1099 | by (simp add: linorder_not_less [symmetric], auto) | 
| 13449 | 1100 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 1101 | lemma mult_le_cancel2 [simp]: "((m::nat) * k \<le> n * k) = (0 < k --> m \<le> n)" | 
| 24438 | 1102 | by (simp add: linorder_not_less [symmetric], auto) | 
| 13449 | 1103 | |
| 1104 | lemma Suc_mult_less_cancel1: "(Suc k * m < Suc k * n) = (m < n)" | |
| 24438 | 1105 | by (subst mult_less_cancel1) simp | 
| 13449 | 1106 | |
| 14267 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 paulson parents: 
14266diff
changeset | 1107 | lemma Suc_mult_le_cancel1: "(Suc k * m \<le> Suc k * n) = (m \<le> n)" | 
| 24438 | 1108 | by (subst mult_le_cancel1) simp | 
| 13449 | 1109 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1110 | lemma le_square: "m \<le> m * (m::nat)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1111 | by (cases m) (auto intro: le_add1) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1112 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1113 | lemma le_cube: "(m::nat) \<le> m * (m * m)" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1114 | by (cases m) (auto intro: le_add1) | 
| 13449 | 1115 | |
| 1116 | text {* Lemma for @{text gcd} *}
 | |
| 1117 | lemma mult_eq_self_implies_10: "(m::nat) = m * n ==> n = 1 | m = 0" | |
| 1118 | apply (drule sym) | |
| 1119 | apply (rule disjCI) | |
| 1120 | apply (rule nat_less_cases, erule_tac [2] _) | |
| 25157 | 1121 | apply (drule_tac [2] mult_less_mono2) | 
| 25162 | 1122 | apply (auto) | 
| 13449 | 1123 | done | 
| 9436 
62bb04ab4b01
rearranged setup of arithmetic procedures, avoiding global reference values;
 wenzelm parents: 
7702diff
changeset | 1124 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1125 | text {* the lattice order on @{typ nat} *}
 | 
| 24995 | 1126 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1127 | instantiation nat :: distrib_lattice | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1128 | begin | 
| 24995 | 1129 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1130 | definition | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1131 | "(inf \<Colon> nat \<Rightarrow> nat \<Rightarrow> nat) = min" | 
| 24995 | 1132 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1133 | definition | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1134 | "(sup \<Colon> nat \<Rightarrow> nat \<Rightarrow> nat) = max" | 
| 24995 | 1135 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1136 | instance by intro_classes | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1137 | (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 | 1138 | intro: order_less_imp_le antisym elim!: order_trans order_less_trans) | 
| 24995 | 1139 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1140 | end | 
| 24995 | 1141 | |
| 1142 | ||
| 25193 | 1143 | subsection {* Embedding of the Naturals into any
 | 
| 1144 |   @{text semiring_1}: @{term of_nat} *}
 | |
| 24196 | 1145 | |
| 1146 | context semiring_1 | |
| 1147 | begin | |
| 1148 | ||
| 25559 | 1149 | primrec | 
| 1150 | of_nat :: "nat \<Rightarrow> 'a" | |
| 1151 | where | |
| 1152 | of_nat_0: "of_nat 0 = 0" | |
| 1153 | | of_nat_Suc: "of_nat (Suc m) = 1 + of_nat m" | |
| 25193 | 1154 | |
| 1155 | lemma of_nat_1 [simp]: "of_nat 1 = 1" | |
| 1156 | by simp | |
| 1157 | ||
| 1158 | lemma of_nat_add [simp]: "of_nat (m + n) = of_nat m + of_nat n" | |
| 1159 | by (induct m) (simp_all add: add_ac) | |
| 1160 | ||
| 1161 | lemma of_nat_mult: "of_nat (m * n) = of_nat m * of_nat n" | |
| 1162 | by (induct m) (simp_all add: add_ac left_distrib) | |
| 1163 | ||
| 25928 | 1164 | definition | 
| 1165 | of_nat_aux :: "nat \<Rightarrow> 'a \<Rightarrow> 'a" | |
| 1166 | where | |
| 1167 | [code func del]: "of_nat_aux n i = of_nat n + i" | |
| 1168 | ||
| 1169 | lemma of_nat_aux_code [code]: | |
| 1170 | "of_nat_aux 0 i = i" | |
| 1171 |   "of_nat_aux (Suc n) i = of_nat_aux n (i + 1)" -- {* tail recursive *}
 | |
| 1172 | by (simp_all add: of_nat_aux_def add_ac) | |
| 1173 | ||
| 1174 | lemma of_nat_code [code]: | |
| 1175 | "of_nat n = of_nat_aux n 0" | |
| 1176 | by (simp add: of_nat_aux_def) | |
| 1177 | ||
| 24196 | 1178 | end | 
| 1179 | ||
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1180 | text{*Class for unital semirings with characteristic zero.
 | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1181 | Includes non-ordered rings like the complex numbers.*} | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1182 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1183 | class semiring_char_0 = semiring_1 + | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1184 | 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 | 1185 | begin | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1186 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1187 | text{*Special cases where either operand is zero*}
 | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1188 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1189 | 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 | 1190 | by (rule of_nat_eq_iff [of 0, simplified]) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1191 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1192 | 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 | 1193 | by (rule of_nat_eq_iff [of _ 0, simplified]) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1194 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1195 | lemma inj_of_nat: "inj of_nat" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1196 | by (simp add: inj_on_def) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1197 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1198 | end | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1199 | |
| 25193 | 1200 | context ordered_semidom | 
| 1201 | begin | |
| 1202 | ||
| 1203 | lemma zero_le_imp_of_nat: "0 \<le> of_nat m" | |
| 1204 | apply (induct m, simp_all) | |
| 1205 | apply (erule order_trans) | |
| 1206 | apply (rule ord_le_eq_trans [OF _ add_commute]) | |
| 1207 | apply (rule less_add_one [THEN less_imp_le]) | |
| 1208 | done | |
| 1209 | ||
| 1210 | lemma less_imp_of_nat_less: "m < n \<Longrightarrow> of_nat m < of_nat n" | |
| 1211 | apply (induct m n rule: diff_induct, simp_all) | |
| 1212 | apply (insert add_less_le_mono [OF zero_less_one zero_le_imp_of_nat], force) | |
| 1213 | done | |
| 1214 | ||
| 1215 | lemma of_nat_less_imp_less: "of_nat m < of_nat n \<Longrightarrow> m < n" | |
| 1216 | apply (induct m n rule: diff_induct, simp_all) | |
| 1217 | apply (insert zero_le_imp_of_nat) | |
| 1218 | apply (force simp add: not_less [symmetric]) | |
| 1219 | done | |
| 1220 | ||
| 1221 | lemma of_nat_less_iff [simp]: "of_nat m < of_nat n \<longleftrightarrow> m < n" | |
| 1222 | by (blast intro: of_nat_less_imp_less less_imp_of_nat_less) | |
| 1223 | ||
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1224 | 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 | 1225 | by (simp add: not_less [symmetric] linorder_not_less [symmetric]) | 
| 25193 | 1226 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1227 | text{*Every @{text ordered_semidom} has characteristic zero.*}
 | 
| 25193 | 1228 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1229 | subclass semiring_char_0 | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1230 | by unfold_locales (simp add: eq_iff order_eq_iff) | 
| 25193 | 1231 | |
| 1232 | text{*Special cases where either operand is zero*}
 | |
| 1233 | ||
| 1234 | lemma of_nat_0_le_iff [simp]: "0 \<le> of_nat n" | |
| 1235 | by (rule of_nat_le_iff [of 0, simplified]) | |
| 1236 | ||
| 1237 | lemma of_nat_le_0_iff [simp, noatp]: "of_nat m \<le> 0 \<longleftrightarrow> m = 0" | |
| 1238 | by (rule of_nat_le_iff [of _ 0, simplified]) | |
| 1239 | ||
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1240 | 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 | 1241 | by (rule of_nat_less_iff [of 0, simplified]) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1242 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1243 | 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 | 1244 | by (rule of_nat_less_iff [of _ 0, simplified]) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1245 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1246 | end | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1247 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1248 | context ring_1 | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1249 | begin | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1250 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1251 | 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 | 1252 | by (simp add: compare_rls of_nat_add [symmetric]) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1253 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1254 | end | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1255 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1256 | context ordered_idom | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1257 | begin | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1258 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1259 | 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 | 1260 | unfolding abs_if by auto | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1261 | |
| 25193 | 1262 | end | 
| 1263 | ||
| 1264 | lemma of_nat_id [simp]: "of_nat n = n" | |
| 1265 | by (induct n) auto | |
| 1266 | ||
| 1267 | lemma of_nat_eq_id [simp]: "of_nat = id" | |
| 1268 | by (auto simp add: expand_fun_eq) | |
| 1269 | ||
| 1270 | ||
| 26149 | 1271 | subsection {* The Set of Natural Numbers *}
 | 
| 25193 | 1272 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1273 | context semiring_1 | 
| 25193 | 1274 | begin | 
| 1275 | ||
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1276 | definition | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1277 | Nats :: "'a set" where | 
| 27104 
791607529f6d
rep_datatype command now takes list of constructors as input arguments
 haftmann parents: 
26748diff
changeset | 1278 | [code func del]: "Nats = range of_nat" | 
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1279 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1280 | notation (xsymbols) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1281 |   Nats  ("\<nat>")
 | 
| 25193 | 1282 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1283 | 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 | 1284 | by (simp add: Nats_def) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1285 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1286 | lemma Nats_0 [simp]: "0 \<in> \<nat>" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1287 | apply (simp add: Nats_def) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1288 | apply (rule range_eqI) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1289 | apply (rule of_nat_0 [symmetric]) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1290 | done | 
| 25193 | 1291 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1292 | lemma Nats_1 [simp]: "1 \<in> \<nat>" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1293 | apply (simp add: Nats_def) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1294 | apply (rule range_eqI) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1295 | apply (rule of_nat_1 [symmetric]) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1296 | done | 
| 25193 | 1297 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1298 | 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 | 1299 | apply (auto simp add: Nats_def) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1300 | apply (rule range_eqI) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1301 | apply (rule of_nat_add [symmetric]) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1302 | done | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1303 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1304 | 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 | 1305 | apply (auto simp add: Nats_def) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1306 | apply (rule range_eqI) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1307 | apply (rule of_nat_mult [symmetric]) | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1308 | done | 
| 25193 | 1309 | |
| 1310 | end | |
| 1311 | ||
| 1312 | ||
| 21243 | 1313 | subsection {* Further Arithmetic Facts Concerning the Natural Numbers *}
 | 
| 1314 | ||
| 22845 | 1315 | lemma subst_equals: | 
| 1316 | assumes 1: "t = s" and 2: "u = t" | |
| 1317 | shows "u = s" | |
| 1318 | using 2 1 by (rule trans) | |
| 1319 | ||
| 21243 | 1320 | use "arith_data.ML" | 
| 26101 | 1321 | declaration {* K ArithData.setup *}
 | 
| 24091 | 1322 | |
| 1323 | use "Tools/lin_arith.ML" | |
| 1324 | declaration {* K LinArith.setup *}
 | |
| 1325 | ||
| 21243 | 1326 | lemmas [arith_split] = nat_diff_split split_min split_max | 
| 1327 | ||
| 27625 | 1328 | |
| 1329 | context order | |
| 1330 | begin | |
| 1331 | ||
| 1332 | lemma lift_Suc_mono_le: | |
| 27627 | 1333 | assumes mono: "!!n. f n \<le> f(Suc n)" and "n\<le>n'" | 
| 1334 | shows "f n \<le> f n'" | |
| 1335 | proof (cases "n < n'") | |
| 1336 | case True | |
| 1337 | thus ?thesis | |
| 1338 | by (induct n n' rule: less_Suc_induct[consumes 1]) (auto intro: mono) | |
| 1339 | qed (insert `n \<le> n'`, auto) -- {*trivial for @{prop "n = n'"} *}
 | |
| 27625 | 1340 | |
| 1341 | lemma lift_Suc_mono_less: | |
| 27627 | 1342 | assumes mono: "!!n. f n < f(Suc n)" and "n < n'" | 
| 1343 | shows "f n < f n'" | |
| 1344 | using `n < n'` | |
| 1345 | by (induct n n' rule: less_Suc_induct[consumes 1]) (auto intro: mono) | |
| 27625 | 1346 | |
| 27789 | 1347 | lemma lift_Suc_mono_less_iff: | 
| 1348 | "(!!n. f n < f(Suc n)) \<Longrightarrow> f(n) < f(m) \<longleftrightarrow> n<m" | |
| 1349 | by(blast intro: less_asym' lift_Suc_mono_less[of f] | |
| 1350 | dest: linorder_not_less[THEN iffD1] le_eq_less_or_eq[THEN iffD1]) | |
| 1351 | ||
| 27625 | 1352 | end | 
| 1353 | ||
| 1354 | ||
| 27789 | 1355 | lemma mono_nat_linear_lb: | 
| 1356 | "(!!m n::nat. m<n \<Longrightarrow> f m < f n) \<Longrightarrow> f(m)+k \<le> f(m+k)" | |
| 1357 | apply(induct_tac k) | |
| 1358 | apply simp | |
| 1359 | apply(erule_tac x="m+n" in meta_allE) | |
| 1360 | apply(erule_tac x="m+n+1" in meta_allE) | |
| 1361 | apply simp | |
| 1362 | done | |
| 1363 | ||
| 1364 | ||
| 21243 | 1365 | text{*Subtraction laws, mostly by Clemens Ballarin*}
 | 
| 1366 | ||
| 1367 | lemma diff_less_mono: "[| a < (b::nat); c \<le> a |] ==> a-c < b-c" | |
| 24438 | 1368 | by arith | 
| 21243 | 1369 | |
| 1370 | lemma less_diff_conv: "(i < j-k) = (i+k < (j::nat))" | |
| 24438 | 1371 | by arith | 
| 21243 | 1372 | |
| 1373 | lemma le_diff_conv: "(j-k \<le> (i::nat)) = (j \<le> i+k)" | |
| 24438 | 1374 | by arith | 
| 21243 | 1375 | |
| 1376 | lemma le_diff_conv2: "k \<le> j ==> (i \<le> j-k) = (i+k \<le> (j::nat))" | |
| 24438 | 1377 | by arith | 
| 21243 | 1378 | |
| 1379 | lemma diff_diff_cancel [simp]: "i \<le> (n::nat) ==> n - (n - i) = i" | |
| 24438 | 1380 | by arith | 
| 21243 | 1381 | |
| 1382 | lemma le_add_diff: "k \<le> (n::nat) ==> m \<le> n + m - k" | |
| 24438 | 1383 | by arith | 
| 21243 | 1384 | |
| 1385 | (*Replaces the previous diff_less and le_diff_less, which had the stronger | |
| 1386 | second premise n\<le>m*) | |
| 1387 | lemma diff_less[simp]: "!!m::nat. [| 0<n; 0<m |] ==> m - n < m" | |
| 24438 | 1388 | by arith | 
| 21243 | 1389 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1390 | text {* Simplification of relational expressions involving subtraction *}
 | 
| 21243 | 1391 | |
| 1392 | lemma diff_diff_eq: "[| k \<le> m; k \<le> (n::nat) |] ==> ((m-k) - (n-k)) = (m-n)" | |
| 24438 | 1393 | by (simp split add: nat_diff_split) | 
| 21243 | 1394 | |
| 1395 | lemma eq_diff_iff: "[| k \<le> m; k \<le> (n::nat) |] ==> (m-k = n-k) = (m=n)" | |
| 24438 | 1396 | by (auto split add: nat_diff_split) | 
| 21243 | 1397 | |
| 1398 | lemma less_diff_iff: "[| k \<le> m; k \<le> (n::nat) |] ==> (m-k < n-k) = (m<n)" | |
| 24438 | 1399 | by (auto split add: nat_diff_split) | 
| 21243 | 1400 | |
| 1401 | lemma le_diff_iff: "[| k \<le> m; k \<le> (n::nat) |] ==> (m-k \<le> n-k) = (m\<le>n)" | |
| 24438 | 1402 | by (auto split add: nat_diff_split) | 
| 21243 | 1403 | |
| 1404 | text{*(Anti)Monotonicity of subtraction -- by Stephan Merz*}
 | |
| 1405 | ||
| 1406 | (* Monotonicity of subtraction in first argument *) | |
| 1407 | lemma diff_le_mono: "m \<le> (n::nat) ==> (m-l) \<le> (n-l)" | |
| 24438 | 1408 | by (simp split add: nat_diff_split) | 
| 21243 | 1409 | |
| 1410 | lemma diff_le_mono2: "m \<le> (n::nat) ==> (l-n) \<le> (l-m)" | |
| 24438 | 1411 | by (simp split add: nat_diff_split) | 
| 21243 | 1412 | |
| 1413 | lemma diff_less_mono2: "[| m < (n::nat); m<l |] ==> (l-n) < (l-m)" | |
| 24438 | 1414 | by (simp split add: nat_diff_split) | 
| 21243 | 1415 | |
| 1416 | lemma diffs0_imp_equal: "!!m::nat. [| m-n = 0; n-m = 0 |] ==> m=n" | |
| 24438 | 1417 | by (simp split add: nat_diff_split) | 
| 21243 | 1418 | |
| 26143 
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
 bulwahn parents: 
26101diff
changeset | 1419 | 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 | 1420 | unfolding min_def by auto | 
| 
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
 bulwahn parents: 
26101diff
changeset | 1421 | |
| 
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
 bulwahn parents: 
26101diff
changeset | 1422 | lemma inj_on_diff_nat: | 
| 
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
 bulwahn parents: 
26101diff
changeset | 1423 | 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 | 1424 | shows "inj_on (\<lambda>n. n - k) N" | 
| 
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
 bulwahn parents: 
26101diff
changeset | 1425 | proof (rule inj_onI) | 
| 
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
 bulwahn parents: 
26101diff
changeset | 1426 | fix x y | 
| 
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
 bulwahn parents: 
26101diff
changeset | 1427 | 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 | 1428 | 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 | 1429 | 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 | 1430 | qed | 
| 
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
 bulwahn parents: 
26101diff
changeset | 1431 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1432 | text{*Rewriting to pull differences out*}
 | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1433 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1434 | 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 | 1435 | by arith | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1436 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1437 | 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 | 1438 | by arith | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1439 | |
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1440 | 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 | 1441 | by arith | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1442 | |
| 21243 | 1443 | text{*Lemmas for ex/Factorization*}
 | 
| 1444 | ||
| 1445 | lemma one_less_mult: "[| Suc 0 < n; Suc 0 < m |] ==> Suc 0 < m*n" | |
| 24438 | 1446 | by (cases m) auto | 
| 21243 | 1447 | |
| 1448 | lemma n_less_m_mult_n: "[| Suc 0 < n; Suc 0 < m |] ==> n<m*n" | |
| 24438 | 1449 | by (cases m) auto | 
| 21243 | 1450 | |
| 1451 | lemma n_less_n_mult_m: "[| Suc 0 < n; Suc 0 < m |] ==> n<n*m" | |
| 24438 | 1452 | by (cases m) auto | 
| 21243 | 1453 | |
| 23001 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1454 | text {* Specialized induction principles that work "backwards": *}
 | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1455 | |
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1456 | 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 | 1457 | assumes less: "i <= j" | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1458 | assumes base: "P j" | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1459 | 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 | 1460 | shows "P i" | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1461 | using less | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1462 | proof (induct d=="j - i" arbitrary: i) | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1463 | case (0 i) | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1464 | hence "i = j" by simp | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1465 | with base show ?case by simp | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1466 | next | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1467 | case (Suc d i) | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1468 | hence "i < j" "P (Suc i)" | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1469 | by simp_all | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1470 | thus "P i" by (rule step) | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1471 | qed | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1472 | |
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1473 | 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 | 1474 | assumes less: "i < j" | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1475 | assumes base: "!!i. j = Suc i ==> P i" | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1476 | 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 | 1477 | shows "P i" | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1478 | using less | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1479 | proof (induct d=="j - i - 1" arbitrary: i) | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1480 | case (0 i) | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1481 | 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 | 1482 | with base show ?case by simp | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1483 | next | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1484 | case (Suc d i) | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1485 | hence "i < j" "P (Suc i)" | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1486 | by simp_all | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1487 | thus "P i" by (rule step) | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1488 | qed | 
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1489 | |
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1490 | 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 | 1491 | 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 | 1492 | |
| 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 krauss parents: 
22920diff
changeset | 1493 | 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 | 1494 | using inc_induct[of 0 k P] by blast | 
| 21243 | 1495 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1496 | lemma nat_not_singleton: "(\<forall>x. x = (0::nat)) = False" | 
| 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1497 | by auto | 
| 21243 | 1498 | |
| 1499 | (*The others are | |
| 1500 | i - j - k = i - (j + k), | |
| 1501 | k \<le> j ==> j - k + i = j + i - k, | |
| 1502 | k \<le> j ==> i + (j - k) = i + j - k *) | |
| 1503 | lemmas add_diff_assoc = diff_add_assoc [symmetric] | |
| 1504 | lemmas add_diff_assoc2 = diff_add_assoc2[symmetric] | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1505 | declare diff_diff_left [simp] add_diff_assoc [simp] add_diff_assoc2[simp] | 
| 21243 | 1506 | |
| 1507 | text{*At present we prove no analogue of @{text not_less_Least} or @{text
 | |
| 1508 | Least_Suc}, since there appears to be no need.*} | |
| 1509 | ||
| 27625 | 1510 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1511 | subsection {* size of a datatype value *}
 | 
| 25193 | 1512 | |
| 26072 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 haftmann parents: 
25928diff
changeset | 1513 | class size = type + | 
| 26748 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 krauss parents: 
26335diff
changeset | 1514 |   fixes size :: "'a \<Rightarrow> nat" -- {* see further theory @{text Wellfounded} *}
 | 
| 23852 | 1515 | |
| 25193 | 1516 | end |