| author | kleing | 
| Mon, 01 Mar 2004 05:39:32 +0100 | |
| changeset 14419 | a98803496711 | 
| parent 14348 | 744c868ee0b7 | 
| child 14691 | e1eedc8cad37 | 
| permissions | -rw-r--r-- | 
| 923 | 1  | 
(* Title: HOL/Nat.thy  | 
2  | 
ID: $Id$  | 
|
| 
9436
 
62bb04ab4b01
rearranged setup of arithmetic procedures, avoiding global reference values;
 
wenzelm 
parents: 
7702 
diff
changeset
 | 
3  | 
Author: Tobias Nipkow and Lawrence C Paulson  | 
| 923 | 4  | 
|
| 
9436
 
62bb04ab4b01
rearranged setup of arithmetic procedures, avoiding global reference values;
 
wenzelm 
parents: 
7702 
diff
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: 
7702 
diff
changeset
 | 
6  | 
and * (for div, mod and dvd, see theory Divides).  | 
| 923 | 7  | 
*)  | 
8  | 
||
| 13449 | 9  | 
header {* Natural numbers *}
 | 
10  | 
||
| 
14265
 
95b42e69436c
HOL: installation of Ring_and_Field as the basis for Naturals and Reals
 
paulson 
parents: 
14208 
diff
changeset
 | 
11  | 
theory Nat = Wellfounded_Recursion + Ring_and_Field:  | 
| 13449 | 12  | 
|
13  | 
subsection {* Type @{text ind} *}
 | 
|
14  | 
||
15  | 
typedecl ind  | 
|
16  | 
||
17  | 
consts  | 
|
18  | 
Zero_Rep :: ind  | 
|
19  | 
Suc_Rep :: "ind => ind"  | 
|
20  | 
||
21  | 
axioms  | 
|
22  | 
  -- {* the axiom of infinity in 2 parts *}
 | 
|
23  | 
inj_Suc_Rep: "inj Suc_Rep"  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
24  | 
Suc_Rep_not_Zero_Rep: "Suc_Rep x \<noteq> Zero_Rep"  | 
| 13449 | 25  | 
|
26  | 
||
27  | 
subsection {* Type nat *}
 | 
|
28  | 
||
29  | 
text {* Type definition *}
 | 
|
30  | 
||
31  | 
consts  | 
|
32  | 
Nat :: "ind set"  | 
|
33  | 
||
34  | 
inductive Nat  | 
|
35  | 
intros  | 
|
36  | 
Zero_RepI: "Zero_Rep : Nat"  | 
|
37  | 
Suc_RepI: "i : Nat ==> Suc_Rep i : Nat"  | 
|
38  | 
||
39  | 
global  | 
|
40  | 
||
41  | 
typedef (open Nat)  | 
|
| 14208 | 42  | 
nat = Nat by (rule exI, rule Nat.Zero_RepI)  | 
| 13449 | 43  | 
|
44  | 
instance nat :: ord ..  | 
|
45  | 
instance nat :: zero ..  | 
|
46  | 
instance nat :: one ..  | 
|
47  | 
||
48  | 
||
49  | 
text {* Abstract constants and syntax *}
 | 
|
50  | 
||
51  | 
consts  | 
|
52  | 
Suc :: "nat => nat"  | 
|
53  | 
pred_nat :: "(nat * nat) set"  | 
|
54  | 
||
55  | 
local  | 
|
56  | 
||
57  | 
defs  | 
|
58  | 
Zero_nat_def: "0 == Abs_Nat Zero_Rep"  | 
|
59  | 
Suc_def: "Suc == (%n. Abs_Nat (Suc_Rep (Rep_Nat n)))"  | 
|
60  | 
One_nat_def [simp]: "1 == Suc 0"  | 
|
61  | 
||
62  | 
  -- {* nat operations *}
 | 
|
63  | 
  pred_nat_def: "pred_nat == {(m, n). n = Suc m}"
 | 
|
64  | 
||
65  | 
less_def: "m < n == (m, n) : trancl pred_nat"  | 
|
66  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
67  | 
le_def: "m \<le> (n::nat) == ~ (n < m)"  | 
| 13449 | 68  | 
|
69  | 
||
70  | 
text {* Induction *}
 | 
|
| 923 | 71  | 
|
| 13449 | 72  | 
theorem nat_induct: "P 0 ==> (!!n. P n ==> P (Suc n)) ==> P n"  | 
73  | 
apply (unfold Zero_nat_def Suc_def)  | 
|
74  | 
  apply (rule Rep_Nat_inverse [THEN subst]) -- {* types force good instantiation *}
 | 
|
75  | 
apply (erule Rep_Nat [THEN Nat.induct])  | 
|
76  | 
apply (rules elim: Abs_Nat_inverse [THEN subst])  | 
|
77  | 
done  | 
|
78  | 
||
79  | 
||
80  | 
text {* Isomorphisms: @{text Abs_Nat} and @{text Rep_Nat} *}
 | 
|
81  | 
||
82  | 
lemma inj_Rep_Nat: "inj Rep_Nat"  | 
|
| 13585 | 83  | 
apply (rule inj_on_inverseI)  | 
| 13449 | 84  | 
apply (rule Rep_Nat_inverse)  | 
85  | 
done  | 
|
86  | 
||
87  | 
lemma inj_on_Abs_Nat: "inj_on Abs_Nat Nat"  | 
|
88  | 
apply (rule inj_on_inverseI)  | 
|
89  | 
apply (erule Abs_Nat_inverse)  | 
|
90  | 
done  | 
|
91  | 
||
92  | 
text {* Distinctness of constructors *}
 | 
|
93  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
94  | 
lemma Suc_not_Zero [iff]: "Suc m \<noteq> 0"  | 
| 13449 | 95  | 
apply (unfold Zero_nat_def Suc_def)  | 
96  | 
apply (rule inj_on_Abs_Nat [THEN inj_on_contraD])  | 
|
97  | 
apply (rule Suc_Rep_not_Zero_Rep)  | 
|
98  | 
apply (rule Rep_Nat Nat.Suc_RepI Nat.Zero_RepI)+  | 
|
99  | 
done  | 
|
100  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
101  | 
lemma Zero_not_Suc [iff]: "0 \<noteq> Suc m"  | 
| 13449 | 102  | 
by (rule not_sym, rule Suc_not_Zero not_sym)  | 
103  | 
||
104  | 
lemma Suc_neq_Zero: "Suc m = 0 ==> R"  | 
|
105  | 
by (rule notE, rule Suc_not_Zero)  | 
|
106  | 
||
107  | 
lemma Zero_neq_Suc: "0 = Suc m ==> R"  | 
|
108  | 
by (rule Suc_neq_Zero, erule sym)  | 
|
109  | 
||
110  | 
text {* Injectiveness of @{term Suc} *}
 | 
|
111  | 
||
112  | 
lemma inj_Suc: "inj Suc"  | 
|
113  | 
apply (unfold Suc_def)  | 
|
| 13585 | 114  | 
apply (rule inj_onI)  | 
| 13449 | 115  | 
apply (drule inj_on_Abs_Nat [THEN inj_onD])  | 
116  | 
apply (rule Rep_Nat Nat.Suc_RepI)+  | 
|
117  | 
apply (drule inj_Suc_Rep [THEN injD])  | 
|
118  | 
apply (erule inj_Rep_Nat [THEN injD])  | 
|
119  | 
done  | 
|
120  | 
||
121  | 
lemma Suc_inject: "Suc x = Suc y ==> x = y"  | 
|
122  | 
by (rule inj_Suc [THEN injD])  | 
|
123  | 
||
124  | 
lemma Suc_Suc_eq [iff]: "(Suc m = Suc n) = (m = n)"  | 
|
125  | 
apply (rule iffI)  | 
|
126  | 
apply (erule Suc_inject)  | 
|
127  | 
apply (erule arg_cong)  | 
|
128  | 
done  | 
|
129  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
130  | 
lemma nat_not_singleton: "(\<forall>x. x = (0::nat)) = False"  | 
| 13449 | 131  | 
by auto  | 
132  | 
||
133  | 
text {* @{typ nat} is a datatype *}
 | 
|
| 
9436
 
62bb04ab4b01
rearranged setup of arithmetic procedures, avoiding global reference values;
 
wenzelm 
parents: 
7702 
diff
changeset
 | 
134  | 
|
| 
5188
 
633ec5f6c155
Declaration of type 'nat' as a datatype (this allows usage of
 
berghofe 
parents: 
4640 
diff
changeset
 | 
135  | 
rep_datatype nat  | 
| 13449 | 136  | 
distinct Suc_not_Zero Zero_not_Suc  | 
137  | 
inject Suc_Suc_eq  | 
|
138  | 
induction nat_induct  | 
|
139  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
140  | 
lemma n_not_Suc_n: "n \<noteq> Suc n"  | 
| 13449 | 141  | 
by (induct n) simp_all  | 
142  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
143  | 
lemma Suc_n_not_n: "Suc t \<noteq> t"  | 
| 13449 | 144  | 
by (rule not_sym, rule n_not_Suc_n)  | 
145  | 
||
146  | 
text {* A special form of induction for reasoning
 | 
|
147  | 
  about @{term "m < n"} and @{term "m - n"} *}
 | 
|
148  | 
||
149  | 
theorem diff_induct: "(!!x. P x 0) ==> (!!y. P 0 (Suc y)) ==>  | 
|
150  | 
(!!x y. P x y ==> P (Suc x) (Suc y)) ==> P m n"  | 
|
| 14208 | 151  | 
apply (rule_tac x = m in spec)  | 
| 13449 | 152  | 
apply (induct_tac n)  | 
153  | 
prefer 2  | 
|
154  | 
apply (rule allI)  | 
|
| 14208 | 155  | 
apply (induct_tac x, rules+)  | 
| 13449 | 156  | 
done  | 
157  | 
||
158  | 
subsection {* Basic properties of "less than" *}
 | 
|
159  | 
||
160  | 
lemma wf_pred_nat: "wf pred_nat"  | 
|
| 14208 | 161  | 
apply (unfold wf_def pred_nat_def, clarify)  | 
162  | 
apply (induct_tac x, blast+)  | 
|
| 13449 | 163  | 
done  | 
164  | 
||
165  | 
lemma wf_less: "wf {(x, y::nat). x < y}"
 | 
|
166  | 
apply (unfold less_def)  | 
|
| 14208 | 167  | 
apply (rule wf_pred_nat [THEN wf_trancl, THEN wf_subset], blast)  | 
| 13449 | 168  | 
done  | 
169  | 
||
170  | 
lemma less_eq: "((m, n) : pred_nat^+) = (m < n)"  | 
|
171  | 
apply (unfold less_def)  | 
|
172  | 
apply (rule refl)  | 
|
173  | 
done  | 
|
174  | 
||
175  | 
subsubsection {* Introduction properties *}
 | 
|
176  | 
||
177  | 
lemma less_trans: "i < j ==> j < k ==> i < (k::nat)"  | 
|
178  | 
apply (unfold less_def)  | 
|
| 14208 | 179  | 
apply (rule trans_trancl [THEN transD], assumption+)  | 
| 13449 | 180  | 
done  | 
181  | 
||
182  | 
lemma lessI [iff]: "n < Suc n"  | 
|
183  | 
apply (unfold less_def pred_nat_def)  | 
|
184  | 
apply (simp add: r_into_trancl)  | 
|
185  | 
done  | 
|
186  | 
||
187  | 
lemma less_SucI: "i < j ==> i < Suc j"  | 
|
| 14208 | 188  | 
apply (rule less_trans, assumption)  | 
| 13449 | 189  | 
apply (rule lessI)  | 
190  | 
done  | 
|
191  | 
||
192  | 
lemma zero_less_Suc [iff]: "0 < Suc n"  | 
|
193  | 
apply (induct n)  | 
|
194  | 
apply (rule lessI)  | 
|
195  | 
apply (erule less_trans)  | 
|
196  | 
apply (rule lessI)  | 
|
197  | 
done  | 
|
198  | 
||
199  | 
subsubsection {* Elimination properties *}
 | 
|
200  | 
||
201  | 
lemma less_not_sym: "n < m ==> ~ m < (n::nat)"  | 
|
202  | 
apply (unfold less_def)  | 
|
203  | 
apply (blast intro: wf_pred_nat wf_trancl [THEN wf_asym])  | 
|
204  | 
done  | 
|
205  | 
||
206  | 
lemma less_asym:  | 
|
207  | 
assumes h1: "(n::nat) < m" and h2: "~ P ==> m < n" shows P  | 
|
208  | 
apply (rule contrapos_np)  | 
|
209  | 
apply (rule less_not_sym)  | 
|
210  | 
apply (rule h1)  | 
|
211  | 
apply (erule h2)  | 
|
212  | 
done  | 
|
213  | 
||
214  | 
lemma less_not_refl: "~ n < (n::nat)"  | 
|
215  | 
apply (unfold less_def)  | 
|
216  | 
apply (rule wf_pred_nat [THEN wf_trancl, THEN wf_not_refl])  | 
|
217  | 
done  | 
|
218  | 
||
219  | 
lemma less_irrefl [elim!]: "(n::nat) < n ==> R"  | 
|
220  | 
by (rule notE, rule less_not_refl)  | 
|
221  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
222  | 
lemma less_not_refl2: "n < m ==> m \<noteq> (n::nat)" by blast  | 
| 13449 | 223  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
224  | 
lemma less_not_refl3: "(s::nat) < t ==> s \<noteq> t"  | 
| 13449 | 225  | 
by (rule not_sym, rule less_not_refl2)  | 
226  | 
||
227  | 
lemma lessE:  | 
|
228  | 
assumes major: "i < k"  | 
|
229  | 
and p1: "k = Suc i ==> P" and p2: "!!j. i < j ==> k = Suc j ==> P"  | 
|
230  | 
shows P  | 
|
| 14208 | 231  | 
apply (rule major [unfolded less_def pred_nat_def, THEN tranclE], simp_all)  | 
| 13449 | 232  | 
apply (erule p1)  | 
233  | 
apply (rule p2)  | 
|
| 14208 | 234  | 
apply (simp add: less_def pred_nat_def, assumption)  | 
| 13449 | 235  | 
done  | 
236  | 
||
237  | 
lemma not_less0 [iff]: "~ n < (0::nat)"  | 
|
238  | 
by (blast elim: lessE)  | 
|
239  | 
||
240  | 
lemma less_zeroE: "(n::nat) < 0 ==> R"  | 
|
241  | 
by (rule notE, rule not_less0)  | 
|
242  | 
||
243  | 
lemma less_SucE: assumes major: "m < Suc n"  | 
|
244  | 
and less: "m < n ==> P" and eq: "m = n ==> P" shows P  | 
|
245  | 
apply (rule major [THEN lessE])  | 
|
| 14208 | 246  | 
apply (rule eq, blast)  | 
247  | 
apply (rule less, blast)  | 
|
| 13449 | 248  | 
done  | 
249  | 
||
250  | 
lemma less_Suc_eq: "(m < Suc n) = (m < n | m = n)"  | 
|
251  | 
by (blast elim!: less_SucE intro: less_trans)  | 
|
252  | 
||
253  | 
lemma less_one [iff]: "(n < (1::nat)) = (n = 0)"  | 
|
254  | 
by (simp add: less_Suc_eq)  | 
|
255  | 
||
256  | 
lemma less_Suc0 [iff]: "(n < Suc 0) = (n = 0)"  | 
|
257  | 
by (simp add: less_Suc_eq)  | 
|
258  | 
||
259  | 
lemma Suc_mono: "m < n ==> Suc m < Suc n"  | 
|
260  | 
by (induct n) (fast elim: less_trans lessE)+  | 
|
261  | 
||
262  | 
text {* "Less than" is a linear ordering *}
 | 
|
263  | 
lemma less_linear: "m < n | m = n | n < (m::nat)"  | 
|
264  | 
apply (induct_tac m)  | 
|
265  | 
apply (induct_tac n)  | 
|
266  | 
apply (rule refl [THEN disjI1, THEN disjI2])  | 
|
267  | 
apply (rule zero_less_Suc [THEN disjI1])  | 
|
268  | 
apply (blast intro: Suc_mono less_SucI elim: lessE)  | 
|
269  | 
done  | 
|
270  | 
||
| 14302 | 271  | 
text {* "Less than" is antisymmetric, sort of *}
 | 
272  | 
lemma less_antisym: "\<lbrakk> \<not> n < m; n < Suc m \<rbrakk> \<Longrightarrow> m = n"  | 
|
273  | 
apply(simp only:less_Suc_eq)  | 
|
274  | 
apply blast  | 
|
275  | 
done  | 
|
276  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
277  | 
lemma nat_neq_iff: "((m::nat) \<noteq> n) = (m < n | n < m)"  | 
| 13449 | 278  | 
using less_linear by blast  | 
279  | 
||
280  | 
lemma nat_less_cases: assumes major: "(m::nat) < n ==> P n m"  | 
|
281  | 
and eqCase: "m = n ==> P n m" and lessCase: "n<m ==> P n m"  | 
|
282  | 
shows "P n m"  | 
|
283  | 
apply (rule less_linear [THEN disjE])  | 
|
284  | 
apply (erule_tac [2] disjE)  | 
|
285  | 
apply (erule lessCase)  | 
|
286  | 
apply (erule sym [THEN eqCase])  | 
|
287  | 
apply (erule major)  | 
|
288  | 
done  | 
|
289  | 
||
290  | 
||
291  | 
subsubsection {* Inductive (?) properties *}
 | 
|
292  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
293  | 
lemma Suc_lessI: "m < n ==> Suc m \<noteq> n ==> Suc m < n"  | 
| 13449 | 294  | 
apply (simp add: nat_neq_iff)  | 
295  | 
apply (blast elim!: less_irrefl less_SucE elim: less_asym)  | 
|
296  | 
done  | 
|
297  | 
||
298  | 
lemma Suc_lessD: "Suc m < n ==> m < n"  | 
|
299  | 
apply (induct n)  | 
|
300  | 
apply (fast intro!: lessI [THEN less_SucI] elim: less_trans lessE)+  | 
|
301  | 
done  | 
|
302  | 
||
303  | 
lemma Suc_lessE: assumes major: "Suc i < k"  | 
|
304  | 
and minor: "!!j. i < j ==> k = Suc j ==> P" shows P  | 
|
305  | 
apply (rule major [THEN lessE])  | 
|
306  | 
apply (erule lessI [THEN minor])  | 
|
| 14208 | 307  | 
apply (erule Suc_lessD [THEN minor], assumption)  | 
| 13449 | 308  | 
done  | 
309  | 
||
310  | 
lemma Suc_less_SucD: "Suc m < Suc n ==> m < n"  | 
|
311  | 
by (blast elim: lessE dest: Suc_lessD)  | 
|
| 4104 | 312  | 
|
| 13449 | 313  | 
lemma Suc_less_eq [iff]: "(Suc m < Suc n) = (m < n)"  | 
314  | 
apply (rule iffI)  | 
|
315  | 
apply (erule Suc_less_SucD)  | 
|
316  | 
apply (erule Suc_mono)  | 
|
317  | 
done  | 
|
318  | 
||
319  | 
lemma less_trans_Suc:  | 
|
320  | 
assumes le: "i < j" shows "j < k ==> Suc i < k"  | 
|
| 14208 | 321  | 
apply (induct k, simp_all)  | 
| 13449 | 322  | 
apply (insert le)  | 
323  | 
apply (simp add: less_Suc_eq)  | 
|
324  | 
apply (blast dest: Suc_lessD)  | 
|
325  | 
done  | 
|
326  | 
||
327  | 
text {* Can be used with @{text less_Suc_eq} to get @{term "n = m | n < m"} *}
 | 
|
328  | 
lemma not_less_eq: "(~ m < n) = (n < Suc m)"  | 
|
| 14208 | 329  | 
by (rule_tac m = m and n = n in diff_induct, simp_all)  | 
| 13449 | 330  | 
|
331  | 
text {* Complete induction, aka course-of-values induction *}
 | 
|
332  | 
lemma nat_less_induct:  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
333  | 
assumes prem: "!!n. \<forall>m::nat. m < n --> P m ==> P n" shows "P n"  | 
| 13449 | 334  | 
apply (rule_tac a=n in wf_induct)  | 
335  | 
apply (rule wf_pred_nat [THEN wf_trancl])  | 
|
336  | 
apply (rule prem)  | 
|
| 14208 | 337  | 
apply (unfold less_def, assumption)  | 
| 13449 | 338  | 
done  | 
339  | 
||
| 14131 | 340  | 
lemmas less_induct = nat_less_induct [rule_format, case_names less]  | 
341  | 
||
342  | 
subsection {* Properties of "less than or equal" *}
 | 
|
| 13449 | 343  | 
|
344  | 
text {* Was @{text le_eq_less_Suc}, but this orientation is more useful *}
 | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
345  | 
lemma less_Suc_eq_le: "(m < Suc n) = (m \<le> n)"  | 
| 13449 | 346  | 
by (unfold le_def, rule not_less_eq [symmetric])  | 
347  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
348  | 
lemma le_imp_less_Suc: "m \<le> n ==> m < Suc n"  | 
| 13449 | 349  | 
by (rule less_Suc_eq_le [THEN iffD2])  | 
350  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
351  | 
lemma le0 [iff]: "(0::nat) \<le> n"  | 
| 13449 | 352  | 
by (unfold le_def, rule not_less0)  | 
353  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
354  | 
lemma Suc_n_not_le_n: "~ Suc n \<le> n"  | 
| 13449 | 355  | 
by (simp add: le_def)  | 
356  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
357  | 
lemma le_0_eq [iff]: "((i::nat) \<le> 0) = (i = 0)"  | 
| 13449 | 358  | 
by (induct i) (simp_all add: le_def)  | 
359  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
360  | 
lemma le_Suc_eq: "(m \<le> Suc n) = (m \<le> n | m = Suc n)"  | 
| 13449 | 361  | 
by (simp del: less_Suc_eq_le add: less_Suc_eq_le [symmetric] less_Suc_eq)  | 
362  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
363  | 
lemma le_SucE: "m \<le> Suc n ==> (m \<le> n ==> R) ==> (m = Suc n ==> R) ==> R"  | 
| 13449 | 364  | 
by (drule le_Suc_eq [THEN iffD1], rules+)  | 
365  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
366  | 
lemma leI: "~ n < m ==> m \<le> (n::nat)" by (simp add: le_def)  | 
| 13449 | 367  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
368  | 
lemma leD: "m \<le> n ==> ~ n < (m::nat)"  | 
| 13449 | 369  | 
by (simp add: le_def)  | 
370  | 
||
371  | 
lemmas leE = leD [elim_format]  | 
|
372  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
373  | 
lemma not_less_iff_le: "(~ n < m) = (m \<le> (n::nat))"  | 
| 13449 | 374  | 
by (blast intro: leI elim: leE)  | 
375  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
376  | 
lemma not_leE: "~ m \<le> n ==> n<(m::nat)"  | 
| 13449 | 377  | 
by (simp add: le_def)  | 
378  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
379  | 
lemma not_le_iff_less: "(~ n \<le> m) = (m < (n::nat))"  | 
| 13449 | 380  | 
by (simp add: le_def)  | 
381  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
382  | 
lemma Suc_leI: "m < n ==> Suc(m) \<le> n"  | 
| 13449 | 383  | 
apply (simp add: le_def less_Suc_eq)  | 
384  | 
apply (blast elim!: less_irrefl less_asym)  | 
|
385  | 
  done -- {* formerly called lessD *}
 | 
|
386  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
387  | 
lemma Suc_leD: "Suc(m) \<le> n ==> m \<le> n"  | 
| 13449 | 388  | 
by (simp add: le_def less_Suc_eq)  | 
389  | 
||
390  | 
text {* Stronger version of @{text Suc_leD} *}
 | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
391  | 
lemma Suc_le_lessD: "Suc m \<le> n ==> m < n"  | 
| 13449 | 392  | 
apply (simp add: le_def less_Suc_eq)  | 
393  | 
using less_linear  | 
|
394  | 
apply blast  | 
|
395  | 
done  | 
|
396  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
397  | 
lemma Suc_le_eq: "(Suc m \<le> n) = (m < n)"  | 
| 13449 | 398  | 
by (blast intro: Suc_leI Suc_le_lessD)  | 
399  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
400  | 
lemma le_SucI: "m \<le> n ==> m \<le> Suc n"  | 
| 13449 | 401  | 
by (unfold le_def) (blast dest: Suc_lessD)  | 
402  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
403  | 
lemma less_imp_le: "m < n ==> m \<le> (n::nat)"  | 
| 13449 | 404  | 
by (unfold le_def) (blast elim: less_asym)  | 
405  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
406  | 
text {* For instance, @{text "(Suc m < Suc n) = (Suc m \<le> n) = (m < n)"} *}
 | 
| 13449 | 407  | 
lemmas le_simps = less_imp_le less_Suc_eq_le Suc_le_eq  | 
408  | 
||
409  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
410  | 
text {* Equivalence of @{term "m \<le> n"} and @{term "m < n | m = n"} *}
 | 
| 13449 | 411  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
412  | 
lemma le_imp_less_or_eq: "m \<le> n ==> m < n | m = (n::nat)"  | 
| 13449 | 413  | 
apply (unfold le_def)  | 
414  | 
using less_linear  | 
|
415  | 
apply (blast elim: less_irrefl less_asym)  | 
|
416  | 
done  | 
|
417  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
418  | 
lemma less_or_eq_imp_le: "m < n | m = n ==> m \<le> (n::nat)"  | 
| 13449 | 419  | 
apply (unfold le_def)  | 
420  | 
using less_linear  | 
|
421  | 
apply (blast elim!: less_irrefl elim: less_asym)  | 
|
422  | 
done  | 
|
423  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
424  | 
lemma le_eq_less_or_eq: "(m \<le> (n::nat)) = (m < n | m=n)"  | 
| 13449 | 425  | 
by (rules intro: less_or_eq_imp_le le_imp_less_or_eq)  | 
426  | 
||
427  | 
text {* Useful with @{text Blast}. *}
 | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
428  | 
lemma eq_imp_le: "(m::nat) = n ==> m \<le> n"  | 
| 13449 | 429  | 
by (rule less_or_eq_imp_le, rule disjI2)  | 
430  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
431  | 
lemma le_refl: "n \<le> (n::nat)"  | 
| 13449 | 432  | 
by (simp add: le_eq_less_or_eq)  | 
433  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
434  | 
lemma le_less_trans: "[| i \<le> j; j < k |] ==> i < (k::nat)"  | 
| 13449 | 435  | 
by (blast dest!: le_imp_less_or_eq intro: less_trans)  | 
436  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
437  | 
lemma less_le_trans: "[| i < j; j \<le> k |] ==> i < (k::nat)"  | 
| 13449 | 438  | 
by (blast dest!: le_imp_less_or_eq intro: less_trans)  | 
439  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
440  | 
lemma le_trans: "[| i \<le> j; j \<le> k |] ==> i \<le> (k::nat)"  | 
| 13449 | 441  | 
by (blast dest!: le_imp_less_or_eq intro: less_or_eq_imp_le less_trans)  | 
442  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
443  | 
lemma le_anti_sym: "[| m \<le> n; n \<le> m |] ==> m = (n::nat)"  | 
| 13449 | 444  | 
by (blast dest!: le_imp_less_or_eq elim!: less_irrefl elim: less_asym)  | 
445  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
446  | 
lemma Suc_le_mono [iff]: "(Suc n \<le> Suc m) = (n \<le> m)"  | 
| 13449 | 447  | 
by (simp add: le_simps)  | 
448  | 
||
449  | 
text {* Axiom @{text order_less_le} of class @{text order}: *}
 | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
450  | 
lemma nat_less_le: "((m::nat) < n) = (m \<le> n & m \<noteq> n)"  | 
| 13449 | 451  | 
by (simp add: le_def nat_neq_iff) (blast elim!: less_asym)  | 
452  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
453  | 
lemma le_neq_implies_less: "(m::nat) \<le> n ==> m \<noteq> n ==> m < n"  | 
| 13449 | 454  | 
by (rule iffD2, rule nat_less_le, rule conjI)  | 
455  | 
||
456  | 
text {* Axiom @{text linorder_linear} of class @{text linorder}: *}
 | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
457  | 
lemma nat_le_linear: "(m::nat) \<le> n | n \<le> m"  | 
| 13449 | 458  | 
apply (simp add: le_eq_less_or_eq)  | 
459  | 
using less_linear  | 
|
460  | 
apply blast  | 
|
461  | 
done  | 
|
462  | 
||
| 
14341
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
463  | 
text {* Type {@typ nat} is a wellfounded linear order *}
 | 
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
464  | 
|
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
465  | 
instance nat :: order by (intro_classes,  | 
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
466  | 
(assumption | rule le_refl le_trans le_anti_sym nat_less_le)+)  | 
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
467  | 
instance nat :: linorder by (intro_classes, rule nat_le_linear)  | 
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
468  | 
instance nat :: wellorder by (intro_classes, rule wf_less)  | 
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
469  | 
|
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
470  | 
|
| 13449 | 471  | 
lemma not_less_less_Suc_eq: "~ n < m ==> (n < Suc m) = (n = m)"  | 
472  | 
by (blast elim!: less_SucE)  | 
|
473  | 
||
474  | 
||
475  | 
text {*
 | 
|
476  | 
  Rewrite @{term "n < Suc m"} to @{term "n = m"}
 | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
477  | 
  if @{term "~ n < m"} or @{term "m \<le> n"} hold.
 | 
| 13449 | 478  | 
Not suitable as default simprules because they often lead to looping  | 
479  | 
*}  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
480  | 
lemma le_less_Suc_eq: "m \<le> n ==> (n < Suc m) = (n = m)"  | 
| 13449 | 481  | 
by (rule not_less_less_Suc_eq, rule leD)  | 
482  | 
||
483  | 
lemmas not_less_simps = not_less_less_Suc_eq le_less_Suc_eq  | 
|
484  | 
||
485  | 
||
486  | 
text {*
 | 
|
487  | 
  Re-orientation of the equations @{text "0 = x"} and @{text "1 = x"}. 
 | 
|
488  | 
No longer added as simprules (they loop)  | 
|
489  | 
  but via @{text reorient_simproc} in Bin
 | 
|
490  | 
*}  | 
|
491  | 
||
492  | 
text {* Polymorphic, not just for @{typ nat} *}
 | 
|
493  | 
lemma zero_reorient: "(0 = x) = (x = 0)"  | 
|
494  | 
by auto  | 
|
495  | 
||
496  | 
lemma one_reorient: "(1 = x) = (x = 1)"  | 
|
497  | 
by auto  | 
|
498  | 
||
499  | 
subsection {* Arithmetic operators *}
 | 
|
| 1660 | 500  | 
|
| 
12338
 
de0f4a63baa5
renamed class "term" to "type" (actually "HOL.type");
 
wenzelm 
parents: 
11451 
diff
changeset
 | 
501  | 
axclass power < type  | 
| 10435 | 502  | 
|
| 
3370
 
5c5fdce3a4e4
Overloading of "^" requires new type class "power", with types "nat" and
 
paulson 
parents: 
2608 
diff
changeset
 | 
503  | 
consts  | 
| 13449 | 504  | 
  power :: "('a::power) => nat => 'a"            (infixr "^" 80)
 | 
| 
3370
 
5c5fdce3a4e4
Overloading of "^" requires new type class "power", with types "nat" and
 
paulson 
parents: 
2608 
diff
changeset
 | 
505  | 
|
| 
9436
 
62bb04ab4b01
rearranged setup of arithmetic procedures, avoiding global reference values;
 
wenzelm 
parents: 
7702 
diff
changeset
 | 
506  | 
|
| 13449 | 507  | 
text {* arithmetic operators @{text "+ -"} and @{text "*"} *}
 | 
508  | 
||
509  | 
instance nat :: plus ..  | 
|
510  | 
instance nat :: minus ..  | 
|
511  | 
instance nat :: times ..  | 
|
512  | 
instance nat :: power ..  | 
|
| 
9436
 
62bb04ab4b01
rearranged setup of arithmetic procedures, avoiding global reference values;
 
wenzelm 
parents: 
7702 
diff
changeset
 | 
513  | 
|
| 13449 | 514  | 
text {* size of a datatype value; overloaded *}
 | 
515  | 
consts size :: "'a => nat"  | 
|
| 
9436
 
62bb04ab4b01
rearranged setup of arithmetic procedures, avoiding global reference values;
 
wenzelm 
parents: 
7702 
diff
changeset
 | 
516  | 
|
| 13449 | 517  | 
primrec  | 
518  | 
add_0: "0 + n = n"  | 
|
519  | 
add_Suc: "Suc m + n = Suc (m + n)"  | 
|
520  | 
||
521  | 
primrec  | 
|
522  | 
diff_0: "m - 0 = m"  | 
|
523  | 
diff_Suc: "m - Suc n = (case m - n of 0 => 0 | Suc k => k)"  | 
|
| 
9436
 
62bb04ab4b01
rearranged setup of arithmetic procedures, avoiding global reference values;
 
wenzelm 
parents: 
7702 
diff
changeset
 | 
524  | 
|
| 
 
62bb04ab4b01
rearranged setup of arithmetic procedures, avoiding global reference values;
 
wenzelm 
parents: 
7702 
diff
changeset
 | 
525  | 
primrec  | 
| 13449 | 526  | 
mult_0: "0 * n = 0"  | 
527  | 
mult_Suc: "Suc m * n = n + (m * n)"  | 
|
528  | 
||
| 
14341
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
529  | 
text {* These two rules ease the use of primitive recursion. 
 | 
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
530  | 
NOTE USE OF @{text "=="} *}
 | 
| 13449 | 531  | 
lemma def_nat_rec_0: "(!!n. f n == nat_rec c h n) ==> f 0 = c"  | 
532  | 
by simp  | 
|
533  | 
||
534  | 
lemma def_nat_rec_Suc: "(!!n. f n == nat_rec c h n) ==> f (Suc n) = h n (f n)"  | 
|
535  | 
by simp  | 
|
536  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
537  | 
lemma not0_implies_Suc: "n \<noteq> 0 ==> \<exists>m. n = Suc m"  | 
| 13449 | 538  | 
by (case_tac n) simp_all  | 
539  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
540  | 
lemma gr_implies_not0: "!!n::nat. m<n ==> n \<noteq> 0"  | 
| 13449 | 541  | 
by (case_tac n) simp_all  | 
542  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
543  | 
lemma neq0_conv [iff]: "!!n::nat. (n \<noteq> 0) = (0 < n)"  | 
| 13449 | 544  | 
by (case_tac n) simp_all  | 
545  | 
||
546  | 
text {* This theorem is useful with @{text blast} *}
 | 
|
547  | 
lemma gr0I: "((n::nat) = 0 ==> False) ==> 0 < n"  | 
|
548  | 
by (rule iffD1, rule neq0_conv, rules)  | 
|
549  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
550  | 
lemma gr0_conv_Suc: "(0 < n) = (\<exists>m. n = Suc m)"  | 
| 13449 | 551  | 
by (fast intro: not0_implies_Suc)  | 
552  | 
||
553  | 
lemma not_gr0 [iff]: "!!n::nat. (~ (0 < n)) = (n = 0)"  | 
|
554  | 
apply (rule iffI)  | 
|
| 14208 | 555  | 
apply (rule ccontr, simp_all)  | 
| 13449 | 556  | 
done  | 
557  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
558  | 
lemma Suc_le_D: "(Suc n \<le> m') ==> (? m. m' = Suc m)"  | 
| 13449 | 559  | 
by (induct m') simp_all  | 
560  | 
||
561  | 
text {* Useful in certain inductive arguments *}
 | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
562  | 
lemma less_Suc_eq_0_disj: "(m < Suc n) = (m = 0 | (\<exists>j. m = Suc j & j < n))"  | 
| 13449 | 563  | 
by (case_tac m) simp_all  | 
564  | 
||
| 
14341
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
565  | 
lemma nat_induct2: "[|P 0; P (Suc 0); !!k. P k ==> P (Suc (Suc k))|] ==> P n"  | 
| 13449 | 566  | 
apply (rule nat_less_induct)  | 
567  | 
apply (case_tac n)  | 
|
568  | 
apply (case_tac [2] nat)  | 
|
569  | 
apply (blast intro: less_trans)+  | 
|
570  | 
done  | 
|
571  | 
||
572  | 
subsection {* @{text LEAST} theorems for type @{typ nat} by specialization *}
 | 
|
573  | 
||
574  | 
lemmas LeastI = wellorder_LeastI  | 
|
575  | 
lemmas Least_le = wellorder_Least_le  | 
|
576  | 
lemmas not_less_Least = wellorder_not_less_Least  | 
|
577  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
578  | 
lemma Least_Suc:  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
579  | 
"[| P n; ~ P 0 |] ==> (LEAST n. P n) = Suc (LEAST m. P(Suc m))"  | 
| 14208 | 580  | 
apply (case_tac "n", auto)  | 
| 13449 | 581  | 
apply (frule LeastI)  | 
582  | 
apply (drule_tac P = "%x. P (Suc x) " in LeastI)  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
583  | 
apply (subgoal_tac " (LEAST x. P x) \<le> Suc (LEAST x. P (Suc x))")  | 
| 13449 | 584  | 
apply (erule_tac [2] Least_le)  | 
| 14208 | 585  | 
apply (case_tac "LEAST x. P x", auto)  | 
| 13449 | 586  | 
apply (drule_tac P = "%x. P (Suc x) " in Least_le)  | 
587  | 
apply (blast intro: order_antisym)  | 
|
588  | 
done  | 
|
589  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
590  | 
lemma Least_Suc2:  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
591  | 
"[|P n; Q m; ~P 0; !k. P (Suc k) = Q k|] ==> Least P = Suc (Least Q)"  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
592  | 
by (erule (1) Least_Suc [THEN ssubst], simp)  | 
| 13449 | 593  | 
|
594  | 
||
| 
14265
 
95b42e69436c
HOL: installation of Ring_and_Field as the basis for Naturals and Reals
 
paulson 
parents: 
14208 
diff
changeset
 | 
595  | 
|
| 13449 | 596  | 
subsection {* @{term min} and @{term max} *}
 | 
597  | 
||
598  | 
lemma min_0L [simp]: "min 0 n = (0::nat)"  | 
|
599  | 
by (rule min_leastL) simp  | 
|
600  | 
||
601  | 
lemma min_0R [simp]: "min n 0 = (0::nat)"  | 
|
602  | 
by (rule min_leastR) simp  | 
|
603  | 
||
604  | 
lemma min_Suc_Suc [simp]: "min (Suc m) (Suc n) = Suc (min m n)"  | 
|
605  | 
by (simp add: min_of_mono)  | 
|
606  | 
||
607  | 
lemma max_0L [simp]: "max 0 n = (n::nat)"  | 
|
608  | 
by (rule max_leastL) simp  | 
|
609  | 
||
610  | 
lemma max_0R [simp]: "max n 0 = (n::nat)"  | 
|
611  | 
by (rule max_leastR) simp  | 
|
612  | 
||
613  | 
lemma max_Suc_Suc [simp]: "max (Suc m) (Suc n) = Suc(max m n)"  | 
|
614  | 
by (simp add: max_of_mono)  | 
|
615  | 
||
616  | 
||
617  | 
subsection {* Basic rewrite rules for the arithmetic operators *}
 | 
|
618  | 
||
619  | 
text {* Difference *}
 | 
|
620  | 
||
| 
14193
 
30e41f63712e
Improved efficiency of code generated for + and -
 
berghofe 
parents: 
14131 
diff
changeset
 | 
621  | 
lemma diff_0_eq_0 [simp, code]: "0 - n = (0::nat)"  | 
| 13449 | 622  | 
by (induct_tac n) simp_all  | 
623  | 
||
| 
14193
 
30e41f63712e
Improved efficiency of code generated for + and -
 
berghofe 
parents: 
14131 
diff
changeset
 | 
624  | 
lemma diff_Suc_Suc [simp, code]: "Suc(m) - Suc(n) = m - n"  | 
| 13449 | 625  | 
by (induct_tac n) simp_all  | 
626  | 
||
627  | 
||
628  | 
text {*
 | 
|
629  | 
Could be (and is, below) generalized in various ways  | 
|
630  | 
However, none of the generalizations are currently in the simpset,  | 
|
631  | 
and I dread to think what happens if I put them in  | 
|
632  | 
*}  | 
|
633  | 
lemma Suc_pred [simp]: "0 < n ==> Suc (n - Suc 0) = n"  | 
|
634  | 
by (simp split add: nat.split)  | 
|
635  | 
||
| 
14193
 
30e41f63712e
Improved efficiency of code generated for + and -
 
berghofe 
parents: 
14131 
diff
changeset
 | 
636  | 
declare diff_Suc [simp del, code del]  | 
| 13449 | 637  | 
|
638  | 
||
639  | 
subsection {* Addition *}
 | 
|
640  | 
||
641  | 
lemma add_0_right [simp]: "m + 0 = (m::nat)"  | 
|
642  | 
by (induct m) simp_all  | 
|
643  | 
||
644  | 
lemma add_Suc_right [simp]: "m + Suc n = Suc (m + n)"  | 
|
645  | 
by (induct m) simp_all  | 
|
646  | 
||
| 
14193
 
30e41f63712e
Improved efficiency of code generated for + and -
 
berghofe 
parents: 
14131 
diff
changeset
 | 
647  | 
lemma [code]: "Suc m + n = m + Suc n" by simp  | 
| 
 
30e41f63712e
Improved efficiency of code generated for + and -
 
berghofe 
parents: 
14131 
diff
changeset
 | 
648  | 
|
| 13449 | 649  | 
|
650  | 
text {* Associative law for addition *}
 | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
651  | 
lemma nat_add_assoc: "(m + n) + k = m + ((n + k)::nat)"  | 
| 13449 | 652  | 
by (induct m) simp_all  | 
653  | 
||
654  | 
text {* Commutative law for addition *}
 | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
655  | 
lemma nat_add_commute: "m + n = n + (m::nat)"  | 
| 13449 | 656  | 
by (induct m) simp_all  | 
657  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
658  | 
lemma nat_add_left_commute: "x + (y + z) = y + ((x + z)::nat)"  | 
| 13449 | 659  | 
apply (rule mk_left_commute [of "op +"])  | 
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
660  | 
apply (rule nat_add_assoc)  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
661  | 
apply (rule nat_add_commute)  | 
| 13449 | 662  | 
done  | 
663  | 
||
| 14331 | 664  | 
lemma nat_add_left_cancel [simp]: "(k + m = k + n) = (m = (n::nat))"  | 
| 13449 | 665  | 
by (induct k) simp_all  | 
666  | 
||
| 14331 | 667  | 
lemma nat_add_right_cancel [simp]: "(m + k = n + k) = (m=(n::nat))"  | 
| 13449 | 668  | 
by (induct k) simp_all  | 
669  | 
||
| 14331 | 670  | 
lemma nat_add_left_cancel_le [simp]: "(k + m \<le> k + n) = (m\<le>(n::nat))"  | 
| 13449 | 671  | 
by (induct k) simp_all  | 
672  | 
||
| 14331 | 673  | 
lemma nat_add_left_cancel_less [simp]: "(k + m < k + n) = (m<(n::nat))"  | 
| 13449 | 674  | 
by (induct k) simp_all  | 
675  | 
||
676  | 
text {* Reasoning about @{text "m + 0 = 0"}, etc. *}
 | 
|
677  | 
||
678  | 
lemma add_is_0 [iff]: "!!m::nat. (m + n = 0) = (m = 0 & n = 0)"  | 
|
679  | 
by (case_tac m) simp_all  | 
|
680  | 
||
681  | 
lemma add_is_1: "(m+n= Suc 0) = (m= Suc 0 & n=0 | m=0 & n= Suc 0)"  | 
|
682  | 
by (case_tac m) simp_all  | 
|
683  | 
||
684  | 
lemma one_is_add: "(Suc 0 = m + n) = (m = Suc 0 & n = 0 | m = 0 & n = Suc 0)"  | 
|
685  | 
by (rule trans, rule eq_commute, rule add_is_1)  | 
|
686  | 
||
687  | 
lemma add_gr_0 [iff]: "!!m::nat. (0 < m + n) = (0 < m | 0 < n)"  | 
|
688  | 
by (simp del: neq0_conv add: neq0_conv [symmetric])  | 
|
689  | 
||
690  | 
lemma add_eq_self_zero: "!!m::nat. m + n = m ==> n = 0"  | 
|
691  | 
apply (drule add_0_right [THEN ssubst])  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
692  | 
apply (simp add: nat_add_assoc del: add_0_right)  | 
| 13449 | 693  | 
done  | 
694  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
695  | 
|
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
696  | 
subsection {* Multiplication *}
 | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
697  | 
|
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
698  | 
text {* right annihilation in product *}
 | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
699  | 
lemma mult_0_right [simp]: "(m::nat) * 0 = 0"  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
700  | 
by (induct m) simp_all  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
701  | 
|
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
702  | 
text {* right successor law for multiplication *}
 | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
703  | 
lemma mult_Suc_right [simp]: "m * Suc n = m + (m * n)"  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
704  | 
by (induct m) (simp_all add: nat_add_left_commute)  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
705  | 
|
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
706  | 
text {* Commutative law for multiplication *}
 | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
707  | 
lemma nat_mult_commute: "m * n = n * (m::nat)"  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
708  | 
by (induct m) simp_all  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
709  | 
|
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
710  | 
text {* addition distributes over multiplication *}
 | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
711  | 
lemma add_mult_distrib: "(m + n) * k = (m * k) + ((n * k)::nat)"  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
712  | 
by (induct m) (simp_all add: nat_add_assoc nat_add_left_commute)  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
713  | 
|
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
714  | 
lemma add_mult_distrib2: "k * (m + n) = (k * m) + ((k * n)::nat)"  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
715  | 
by (induct m) (simp_all add: nat_add_assoc)  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
716  | 
|
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
717  | 
text {* Associative law for multiplication *}
 | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
718  | 
lemma nat_mult_assoc: "(m * n) * k = m * ((n * k)::nat)"  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
719  | 
by (induct m) (simp_all add: add_mult_distrib)  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
720  | 
|
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
721  | 
|
| 
14341
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
722  | 
text{*The Naturals Form A Semiring*}
 | 
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
723  | 
instance nat :: semiring  | 
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
724  | 
proof  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
725  | 
fix i j k :: nat  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
726  | 
show "(i + j) + k = i + (j + k)" by (rule nat_add_assoc)  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
727  | 
show "i + j = j + i" by (rule nat_add_commute)  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
728  | 
show "0 + i = i" by simp  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
729  | 
show "(i * j) * k = i * (j * k)" by (rule nat_mult_assoc)  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
730  | 
show "i * j = j * i" by (rule nat_mult_commute)  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
731  | 
show "1 * i = i" by simp  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
732  | 
show "(i + j) * k = i * k + j * k" by (simp add: add_mult_distrib)  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
733  | 
show "0 \<noteq> (1::nat)" by simp  | 
| 
14341
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
734  | 
assume "k+i = k+j" thus "i=j" by simp  | 
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
735  | 
qed  | 
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
736  | 
|
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
737  | 
lemma mult_is_0 [simp]: "((m::nat) * n = 0) = (m=0 | n=0)"  | 
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
738  | 
apply (induct_tac m)  | 
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
739  | 
apply (induct_tac [2] n, simp_all)  | 
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
740  | 
done  | 
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
741  | 
|
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
742  | 
subsection {* Monotonicity of Addition *}
 | 
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
743  | 
|
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
744  | 
text {* strict, in 1st argument *}
 | 
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
745  | 
lemma add_less_mono1: "i < j ==> i + k < j + (k::nat)"  | 
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
746  | 
by (induct k) simp_all  | 
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
747  | 
|
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
748  | 
text {* strict, in both arguments *}
 | 
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
749  | 
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: 
14331 
diff
changeset
 | 
750  | 
apply (rule add_less_mono1 [THEN less_trans], assumption+)  | 
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
751  | 
apply (induct_tac j, simp_all)  | 
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
752  | 
done  | 
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
753  | 
|
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
754  | 
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: 
14331 
diff
changeset
 | 
755  | 
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: 
14331 
diff
changeset
 | 
756  | 
apply (induct n)  | 
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
757  | 
apply (simp_all add: order_le_less)  | 
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
758  | 
apply (blast elim!: less_SucE  | 
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
759  | 
intro!: add_0_right [symmetric] add_Suc_right [symmetric])  | 
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
760  | 
done  | 
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
761  | 
|
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
762  | 
text {* strict, in 1st argument; proof is by induction on @{text "k > 0"} *}
 | 
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
763  | 
lemma mult_less_mono2: "(i::nat) < j ==> 0 < k ==> k * i < k * j"  | 
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
764  | 
apply (erule_tac m1 = 0 in less_imp_Suc_add [THEN exE], simp)  | 
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
765  | 
apply (induct_tac x)  | 
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
766  | 
apply (simp_all add: add_less_mono)  | 
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
767  | 
done  | 
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
768  | 
|
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
769  | 
|
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
770  | 
text{*The Naturals Form an Ordered Semiring*}
 | 
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
771  | 
instance nat :: ordered_semiring  | 
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
772  | 
proof  | 
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
773  | 
fix i j k :: nat  | 
| 
14348
 
744c868ee0b7
Defining the type class "ringpower" and deleting superseded theorems for
 
paulson 
parents: 
14341 
diff
changeset
 | 
774  | 
show "0 < (1::nat)" by simp  | 
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
775  | 
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: 
14266 
diff
changeset
 | 
776  | 
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: 
14266 
diff
changeset
 | 
777  | 
qed  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
778  | 
|
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
779  | 
lemma nat_mult_1: "(1::nat) * n = n"  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
780  | 
by simp  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
781  | 
|
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
782  | 
lemma nat_mult_1_right: "n * (1::nat) = n"  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
783  | 
by simp  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
784  | 
|
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
785  | 
|
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
786  | 
subsection {* Additional theorems about "less than" *}
 | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
787  | 
|
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
788  | 
text {* A [clumsy] way of lifting @{text "<"}
 | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
789  | 
  monotonicity to @{text "\<le>"} monotonicity *}
 | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
790  | 
lemma less_mono_imp_le_mono:  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
791  | 
assumes lt_mono: "!!i j::nat. i < j ==> f i < f j"  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
792  | 
and le: "i \<le> j" shows "f i \<le> ((f j)::nat)" using le  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
793  | 
apply (simp add: order_le_less)  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
794  | 
apply (blast intro!: lt_mono)  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
795  | 
done  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
796  | 
|
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
797  | 
text {* non-strict, in 1st argument *}
 | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
798  | 
lemma add_le_mono1: "i \<le> j ==> i + k \<le> j + (k::nat)"  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
799  | 
by (rule add_right_mono)  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
800  | 
|
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
801  | 
text {* non-strict, in both arguments *}
 | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
802  | 
lemma add_le_mono: "[| i \<le> j; k \<le> l |] ==> i + k \<le> j + (l::nat)"  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
803  | 
by (rule add_mono)  | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
804  | 
|
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
805  | 
lemma le_add2: "n \<le> ((m + n)::nat)"  | 
| 
14341
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
806  | 
by (insert add_right_mono [of 0 m n], simp)  | 
| 13449 | 807  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
808  | 
lemma le_add1: "n \<le> ((n + m)::nat)"  | 
| 
14341
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
809  | 
by (simp add: add_commute, rule le_add2)  | 
| 13449 | 810  | 
|
811  | 
lemma less_add_Suc1: "i < Suc (i + m)"  | 
|
812  | 
by (rule le_less_trans, rule le_add1, rule lessI)  | 
|
813  | 
||
814  | 
lemma less_add_Suc2: "i < Suc (m + i)"  | 
|
815  | 
by (rule le_less_trans, rule le_add2, rule lessI)  | 
|
816  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
817  | 
lemma less_iff_Suc_add: "(m < n) = (\<exists>k. n = Suc (m + k))"  | 
| 13449 | 818  | 
by (rules intro!: less_add_Suc1 less_imp_Suc_add)  | 
819  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
820  | 
lemma trans_le_add1: "(i::nat) \<le> j ==> i \<le> j + m"  | 
| 13449 | 821  | 
by (rule le_trans, assumption, rule le_add1)  | 
822  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
823  | 
lemma trans_le_add2: "(i::nat) \<le> j ==> i \<le> m + j"  | 
| 13449 | 824  | 
by (rule le_trans, assumption, rule le_add2)  | 
825  | 
||
826  | 
lemma trans_less_add1: "(i::nat) < j ==> i < j + m"  | 
|
827  | 
by (rule less_le_trans, assumption, rule le_add1)  | 
|
828  | 
||
829  | 
lemma trans_less_add2: "(i::nat) < j ==> i < m + j"  | 
|
830  | 
by (rule less_le_trans, assumption, rule le_add2)  | 
|
831  | 
||
832  | 
lemma add_lessD1: "i + j < (k::nat) ==> i < k"  | 
|
| 
14341
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
833  | 
apply (rule le_less_trans [of _ "i+j"])  | 
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
834  | 
apply (simp_all add: le_add1)  | 
| 13449 | 835  | 
done  | 
836  | 
||
837  | 
lemma not_add_less1 [iff]: "~ (i + j < (i::nat))"  | 
|
838  | 
apply (rule notI)  | 
|
839  | 
apply (erule add_lessD1 [THEN less_irrefl])  | 
|
840  | 
done  | 
|
841  | 
||
842  | 
lemma not_add_less2 [iff]: "~ (j + i < (i::nat))"  | 
|
843  | 
by (simp add: add_commute not_add_less1)  | 
|
844  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
845  | 
lemma add_leD1: "m + k \<le> n ==> m \<le> (n::nat)"  | 
| 
14341
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
846  | 
apply (rule order_trans [of _ "m+k"])  | 
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
847  | 
apply (simp_all add: le_add1)  | 
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
848  | 
done  | 
| 13449 | 849  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
850  | 
lemma add_leD2: "m + k \<le> n ==> k \<le> (n::nat)"  | 
| 13449 | 851  | 
apply (simp add: add_commute)  | 
852  | 
apply (erule add_leD1)  | 
|
853  | 
done  | 
|
854  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
855  | 
lemma add_leE: "(m::nat) + k \<le> n ==> (m \<le> n ==> k \<le> n ==> R) ==> R"  | 
| 13449 | 856  | 
by (blast dest: add_leD1 add_leD2)  | 
857  | 
||
858  | 
text {* needs @{text "!!k"} for @{text add_ac} to work *}
 | 
|
859  | 
lemma less_add_eq_less: "!!k::nat. k < l ==> m + l = k + n ==> m < n"  | 
|
860  | 
by (force simp del: add_Suc_right  | 
|
861  | 
simp add: less_iff_Suc_add add_Suc_right [symmetric] add_ac)  | 
|
862  | 
||
863  | 
||
864  | 
||
865  | 
subsection {* Difference *}
 | 
|
866  | 
||
867  | 
lemma diff_self_eq_0 [simp]: "(m::nat) - m = 0"  | 
|
868  | 
by (induct m) simp_all  | 
|
869  | 
||
870  | 
text {* Addition is the inverse of subtraction:
 | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
871  | 
  if @{term "n \<le> m"} then @{term "n + (m - n) = m"}. *}
 | 
| 13449 | 872  | 
lemma add_diff_inverse: "~ m < n ==> n + (m - n) = (m::nat)"  | 
873  | 
by (induct m n rule: diff_induct) simp_all  | 
|
874  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
875  | 
lemma le_add_diff_inverse [simp]: "n \<le> m ==> n + (m - n) = (m::nat)"  | 
| 13449 | 876  | 
by (simp add: add_diff_inverse not_less_iff_le)  | 
877  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
878  | 
lemma le_add_diff_inverse2 [simp]: "n \<le> m ==> (m - n) + n = (m::nat)"  | 
| 13449 | 879  | 
by (simp add: le_add_diff_inverse add_commute)  | 
880  | 
||
881  | 
||
882  | 
subsection {* More results about difference *}
 | 
|
883  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
884  | 
lemma Suc_diff_le: "n \<le> m ==> Suc m - n = Suc (m - n)"  | 
| 13449 | 885  | 
by (induct m n rule: diff_induct) simp_all  | 
886  | 
||
887  | 
lemma diff_less_Suc: "m - n < Suc m"  | 
|
888  | 
apply (induct m n rule: diff_induct)  | 
|
889  | 
apply (erule_tac [3] less_SucE)  | 
|
890  | 
apply (simp_all add: less_Suc_eq)  | 
|
891  | 
done  | 
|
892  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
893  | 
lemma diff_le_self [simp]: "m - n \<le> (m::nat)"  | 
| 13449 | 894  | 
by (induct m n rule: diff_induct) (simp_all add: le_SucI)  | 
895  | 
||
896  | 
lemma less_imp_diff_less: "(j::nat) < k ==> j - n < k"  | 
|
897  | 
by (rule le_less_trans, rule diff_le_self)  | 
|
898  | 
||
899  | 
lemma diff_diff_left: "(i::nat) - j - k = i - (j + k)"  | 
|
900  | 
by (induct i j rule: diff_induct) simp_all  | 
|
901  | 
||
902  | 
lemma Suc_diff_diff [simp]: "(Suc m - n) - Suc k = m - n - k"  | 
|
903  | 
by (simp add: diff_diff_left)  | 
|
904  | 
||
905  | 
lemma diff_Suc_less [simp]: "0<n ==> n - Suc i < n"  | 
|
| 14208 | 906  | 
apply (case_tac "n", safe)  | 
| 13449 | 907  | 
apply (simp add: le_simps)  | 
908  | 
done  | 
|
909  | 
||
910  | 
text {* This and the next few suggested by Florian Kammueller *}
 | 
|
911  | 
lemma diff_commute: "(i::nat) - j - k = i - k - j"  | 
|
912  | 
by (simp add: diff_diff_left add_commute)  | 
|
913  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
914  | 
lemma diff_add_assoc: "k \<le> (j::nat) ==> (i + j) - k = i + (j - k)"  | 
| 13449 | 915  | 
by (induct j k rule: diff_induct) simp_all  | 
916  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
917  | 
lemma diff_add_assoc2: "k \<le> (j::nat) ==> (j + i) - k = (j - k) + i"  | 
| 13449 | 918  | 
by (simp add: add_commute diff_add_assoc)  | 
919  | 
||
920  | 
lemma diff_add_inverse: "(n + m) - n = (m::nat)"  | 
|
921  | 
by (induct n) simp_all  | 
|
922  | 
||
923  | 
lemma diff_add_inverse2: "(m + n) - n = (m::nat)"  | 
|
924  | 
by (simp add: diff_add_assoc)  | 
|
925  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
926  | 
lemma le_imp_diff_is_add: "i \<le> (j::nat) ==> (j - i = k) = (j = k + i)"  | 
| 13449 | 927  | 
apply safe  | 
928  | 
apply (simp_all add: diff_add_inverse2)  | 
|
929  | 
done  | 
|
930  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
931  | 
lemma diff_is_0_eq [simp]: "((m::nat) - n = 0) = (m \<le> n)"  | 
| 13449 | 932  | 
by (induct m n rule: diff_induct) simp_all  | 
933  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
934  | 
lemma diff_is_0_eq' [simp]: "m \<le> n ==> (m::nat) - n = 0"  | 
| 13449 | 935  | 
by (rule iffD2, rule diff_is_0_eq)  | 
936  | 
||
937  | 
lemma zero_less_diff [simp]: "(0 < n - (m::nat)) = (m < n)"  | 
|
938  | 
by (induct m n rule: diff_induct) simp_all  | 
|
939  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
940  | 
lemma less_imp_add_positive: "i < j ==> \<exists>k::nat. 0 < k & i + k = j"  | 
| 13449 | 941  | 
apply (rule_tac x = "j - i" in exI)  | 
942  | 
apply (simp (no_asm_simp) add: add_diff_inverse less_not_sym)  | 
|
943  | 
done  | 
|
| 
9436
 
62bb04ab4b01
rearranged setup of arithmetic procedures, avoiding global reference values;
 
wenzelm 
parents: 
7702 
diff
changeset
 | 
944  | 
|
| 13449 | 945  | 
lemma zero_induct_lemma: "P k ==> (!!n. P (Suc n) ==> P n) ==> P (k - i)"  | 
946  | 
apply (induct k i rule: diff_induct)  | 
|
947  | 
apply (simp_all (no_asm))  | 
|
948  | 
apply rules  | 
|
949  | 
done  | 
|
950  | 
||
951  | 
lemma zero_induct: "P k ==> (!!n. P (Suc n) ==> P n) ==> P 0"  | 
|
952  | 
apply (rule diff_self_eq_0 [THEN subst])  | 
|
| 14208 | 953  | 
apply (rule zero_induct_lemma, rules+)  | 
| 13449 | 954  | 
done  | 
955  | 
||
956  | 
lemma diff_cancel: "(k + m) - (k + n) = m - (n::nat)"  | 
|
957  | 
by (induct k) simp_all  | 
|
958  | 
||
959  | 
lemma diff_cancel2: "(m + k) - (n + k) = m - (n::nat)"  | 
|
960  | 
by (simp add: diff_cancel add_commute)  | 
|
961  | 
||
962  | 
lemma diff_add_0: "n - (n + m) = (0::nat)"  | 
|
963  | 
by (induct n) simp_all  | 
|
964  | 
||
965  | 
||
966  | 
text {* Difference distributes over multiplication *}
 | 
|
967  | 
||
968  | 
lemma diff_mult_distrib: "((m::nat) - n) * k = (m * k) - (n * k)"  | 
|
969  | 
by (induct m n rule: diff_induct) (simp_all add: diff_cancel)  | 
|
970  | 
||
971  | 
lemma diff_mult_distrib2: "k * ((m::nat) - n) = (k * m) - (k * n)"  | 
|
972  | 
by (simp add: diff_mult_distrib mult_commute [of k])  | 
|
973  | 
  -- {* NOT added as rewrites, since sometimes they are used from right-to-left *}
 | 
|
974  | 
||
975  | 
lemmas nat_distrib =  | 
|
976  | 
add_mult_distrib add_mult_distrib2 diff_mult_distrib diff_mult_distrib2  | 
|
977  | 
||
978  | 
||
979  | 
subsection {* Monotonicity of Multiplication *}
 | 
|
980  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
981  | 
lemma mult_le_mono1: "i \<le> (j::nat) ==> i * k \<le> j * k"  | 
| 
14341
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
982  | 
by (simp add: mult_right_mono)  | 
| 13449 | 983  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
984  | 
lemma mult_le_mono2: "i \<le> (j::nat) ==> k * i \<le> k * j"  | 
| 
14341
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
985  | 
by (simp add: mult_left_mono)  | 
| 13449 | 986  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
987  | 
text {* @{text "\<le>"} monotonicity, BOTH arguments *}
 | 
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
988  | 
lemma mult_le_mono: "i \<le> (j::nat) ==> k \<le> l ==> i * k \<le> j * l"  | 
| 
14341
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
989  | 
by (simp add: mult_mono)  | 
| 13449 | 990  | 
|
991  | 
lemma mult_less_mono1: "(i::nat) < j ==> 0 < k ==> i * k < j * k"  | 
|
| 
14341
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
992  | 
by (simp add: mult_strict_right_mono)  | 
| 13449 | 993  | 
|
| 14266 | 994  | 
text{*Differs from the standard @{text zero_less_mult_iff} in that
 | 
995  | 
there are no negative numbers.*}  | 
|
996  | 
lemma nat_0_less_mult_iff [simp]: "(0 < (m::nat) * n) = (0 < m & 0 < n)"  | 
|
| 13449 | 997  | 
apply (induct m)  | 
| 14208 | 998  | 
apply (case_tac [2] n, simp_all)  | 
| 13449 | 999  | 
done  | 
1000  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
1001  | 
lemma one_le_mult_iff [simp]: "(Suc 0 \<le> m * n) = (1 \<le> m & 1 \<le> n)"  | 
| 13449 | 1002  | 
apply (induct m)  | 
| 14208 | 1003  | 
apply (case_tac [2] n, simp_all)  | 
| 13449 | 1004  | 
done  | 
1005  | 
||
1006  | 
lemma mult_eq_1_iff [simp]: "(m * n = Suc 0) = (m = 1 & n = 1)"  | 
|
| 14208 | 1007  | 
apply (induct_tac m, simp)  | 
1008  | 
apply (induct_tac n, simp, fastsimp)  | 
|
| 13449 | 1009  | 
done  | 
1010  | 
||
1011  | 
lemma one_eq_mult_iff [simp]: "(Suc 0 = m * n) = (m = 1 & n = 1)"  | 
|
1012  | 
apply (rule trans)  | 
|
| 14208 | 1013  | 
apply (rule_tac [2] mult_eq_1_iff, fastsimp)  | 
| 13449 | 1014  | 
done  | 
1015  | 
||
| 
14341
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
1016  | 
lemma mult_less_cancel2 [simp]: "((m::nat) * k < n * k) = (0 < k & m < n)"  | 
| 13449 | 1017  | 
apply (safe intro!: mult_less_mono1)  | 
| 14208 | 1018  | 
apply (case_tac k, auto)  | 
| 13449 | 1019  | 
apply (simp del: le_0_eq add: linorder_not_le [symmetric])  | 
1020  | 
apply (blast intro: mult_le_mono1)  | 
|
1021  | 
done  | 
|
1022  | 
||
1023  | 
lemma mult_less_cancel1 [simp]: "(k * (m::nat) < k * n) = (0 < k & m < n)"  | 
|
| 
14341
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
1024  | 
by (simp add: mult_commute [of k])  | 
| 13449 | 1025  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
1026  | 
lemma mult_le_cancel1 [simp]: "(k * (m::nat) \<le> k * n) = (0 < k --> m \<le> n)"  | 
| 14208 | 1027  | 
by (simp add: linorder_not_less [symmetric], auto)  | 
| 13449 | 1028  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
1029  | 
lemma mult_le_cancel2 [simp]: "((m::nat) * k \<le> n * k) = (0 < k --> m \<le> n)"  | 
| 14208 | 1030  | 
by (simp add: linorder_not_less [symmetric], auto)  | 
| 13449 | 1031  | 
|
| 
14341
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
1032  | 
lemma mult_cancel2 [simp]: "(m * k = n * k) = (m = n | (k = (0::nat)))"  | 
| 14208 | 1033  | 
apply (cut_tac less_linear, safe, auto)  | 
| 13449 | 1034  | 
apply (drule mult_less_mono1, assumption, simp)+  | 
1035  | 
done  | 
|
1036  | 
||
1037  | 
lemma mult_cancel1 [simp]: "(k * m = k * n) = (m = n | (k = (0::nat)))"  | 
|
| 
14341
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
1038  | 
by (simp add: mult_commute [of k])  | 
| 13449 | 1039  | 
|
1040  | 
lemma Suc_mult_less_cancel1: "(Suc k * m < Suc k * n) = (m < n)"  | 
|
1041  | 
by (subst mult_less_cancel1) simp  | 
|
1042  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
1043  | 
lemma Suc_mult_le_cancel1: "(Suc k * m \<le> Suc k * n) = (m \<le> n)"  | 
| 13449 | 1044  | 
by (subst mult_le_cancel1) simp  | 
1045  | 
||
1046  | 
lemma Suc_mult_cancel1: "(Suc k * m = Suc k * n) = (m = n)"  | 
|
1047  | 
by (subst mult_cancel1) simp  | 
|
1048  | 
||
1049  | 
text {* Lemma for @{text gcd} *}
 | 
|
1050  | 
lemma mult_eq_self_implies_10: "(m::nat) = m * n ==> n = 1 | m = 0"  | 
|
1051  | 
apply (drule sym)  | 
|
1052  | 
apply (rule disjCI)  | 
|
1053  | 
apply (rule nat_less_cases, erule_tac [2] _)  | 
|
1054  | 
apply (fastsimp elim!: less_SucE)  | 
|
1055  | 
apply (fastsimp dest: mult_less_mono2)  | 
|
1056  | 
done  | 
|
| 
9436
 
62bb04ab4b01
rearranged setup of arithmetic procedures, avoiding global reference values;
 
wenzelm 
parents: 
7702 
diff
changeset
 | 
1057  | 
|
| 923 | 1058  | 
end  |