| author | hoelzl | 
| Fri, 19 Feb 2016 13:40:50 +0100 | |
| changeset 62378 | 85ed00c1fe7c | 
| parent 62376 | 85f38d5f8807 | 
| child 62481 | b5d8e57826df | 
| permissions | -rw-r--r-- | 
| 923 | 1  | 
(* Title: HOL/Nat.thy  | 
| 21243 | 2  | 
Author: Tobias Nipkow and Lawrence C Paulson and Markus Wenzel  | 
| 923 | 3  | 
|
| 
9436
 
62bb04ab4b01
rearranged setup of arithmetic procedures, avoiding global reference values;
 
wenzelm 
parents: 
7702 
diff
changeset
 | 
4  | 
Type "nat" is a linear order, and a datatype; arithmetic operators + -  | 
| 
30496
 
7cdcc9dd95cb
vague cleanup in arith proof tools setup: deleted dead code, more proper structures, clearer arrangement
 
haftmann 
parents: 
30242 
diff
changeset
 | 
5  | 
and * (for div and mod, see theory Divides).  | 
| 923 | 6  | 
*)  | 
7  | 
||
| 60758 | 8  | 
section \<open>Natural numbers\<close>  | 
| 13449 | 9  | 
|
| 15131 | 10  | 
theory Nat  | 
| 35121 | 11  | 
imports Inductive Typedef Fun Fields  | 
| 15131 | 12  | 
begin  | 
| 13449 | 13  | 
|
| 48891 | 14  | 
ML_file "~~/src/Tools/rat.ML"  | 
| 57952 | 15  | 
|
16  | 
named_theorems arith "arith facts -- only ground formulas"  | 
|
| 48891 | 17  | 
ML_file "Tools/arith_data.ML"  | 
18  | 
ML_file "~~/src/Provers/Arith/fast_lin_arith.ML"  | 
|
19  | 
||
20  | 
||
| 61799 | 21  | 
subsection \<open>Type \<open>ind\<close>\<close>  | 
| 13449 | 22  | 
|
23  | 
typedecl ind  | 
|
24  | 
||
| 44325 | 25  | 
axiomatization Zero_Rep :: ind and Suc_Rep :: "ind => ind" where  | 
| 61799 | 26  | 
\<comment> \<open>the axiom of infinity in 2 parts\<close>  | 
| 
34208
 
a7acd6c68d9b
more regular axiom of infinity, with no (indirect) reference to overloaded constants
 
krauss 
parents: 
33657 
diff
changeset
 | 
27  | 
Suc_Rep_inject: "Suc_Rep x = Suc_Rep y ==> x = y" and  | 
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
28  | 
Suc_Rep_not_Zero_Rep: "Suc_Rep x \<noteq> Zero_Rep"  | 
| 19573 | 29  | 
|
| 60758 | 30  | 
subsection \<open>Type nat\<close>  | 
31  | 
||
32  | 
text \<open>Type definition\<close>  | 
|
| 13449 | 33  | 
|
| 44325 | 34  | 
inductive Nat :: "ind \<Rightarrow> bool" where  | 
35  | 
Zero_RepI: "Nat Zero_Rep"  | 
|
36  | 
| Suc_RepI: "Nat i \<Longrightarrow> Nat (Suc_Rep i)"  | 
|
| 13449 | 37  | 
|
| 49834 | 38  | 
typedef nat = "{n. Nat n}"
 | 
| 45696 | 39  | 
morphisms Rep_Nat Abs_Nat  | 
| 
44278
 
1220ecb81e8f
observe distinction between sets and predicates more properly
 
haftmann 
parents: 
43595 
diff
changeset
 | 
40  | 
using Nat.Zero_RepI by auto  | 
| 
 
1220ecb81e8f
observe distinction between sets and predicates more properly
 
haftmann 
parents: 
43595 
diff
changeset
 | 
41  | 
|
| 
 
1220ecb81e8f
observe distinction between sets and predicates more properly
 
haftmann 
parents: 
43595 
diff
changeset
 | 
42  | 
lemma Nat_Rep_Nat:  | 
| 
 
1220ecb81e8f
observe distinction between sets and predicates more properly
 
haftmann 
parents: 
43595 
diff
changeset
 | 
43  | 
"Nat (Rep_Nat n)"  | 
| 
 
1220ecb81e8f
observe distinction between sets and predicates more properly
 
haftmann 
parents: 
43595 
diff
changeset
 | 
44  | 
using Rep_Nat by simp  | 
| 13449 | 45  | 
|
| 
44278
 
1220ecb81e8f
observe distinction between sets and predicates more properly
 
haftmann 
parents: 
43595 
diff
changeset
 | 
46  | 
lemma Nat_Abs_Nat_inverse:  | 
| 
 
1220ecb81e8f
observe distinction between sets and predicates more properly
 
haftmann 
parents: 
43595 
diff
changeset
 | 
47  | 
"Nat n \<Longrightarrow> Rep_Nat (Abs_Nat n) = n"  | 
| 
 
1220ecb81e8f
observe distinction between sets and predicates more properly
 
haftmann 
parents: 
43595 
diff
changeset
 | 
48  | 
using Abs_Nat_inverse by simp  | 
| 
 
1220ecb81e8f
observe distinction between sets and predicates more properly
 
haftmann 
parents: 
43595 
diff
changeset
 | 
49  | 
|
| 
 
1220ecb81e8f
observe distinction between sets and predicates more properly
 
haftmann 
parents: 
43595 
diff
changeset
 | 
50  | 
lemma Nat_Abs_Nat_inject:  | 
| 
 
1220ecb81e8f
observe distinction between sets and predicates more properly
 
haftmann 
parents: 
43595 
diff
changeset
 | 
51  | 
"Nat n \<Longrightarrow> Nat m \<Longrightarrow> Abs_Nat n = Abs_Nat m \<longleftrightarrow> n = m"  | 
| 
 
1220ecb81e8f
observe distinction between sets and predicates more properly
 
haftmann 
parents: 
43595 
diff
changeset
 | 
52  | 
using Abs_Nat_inject by simp  | 
| 13449 | 53  | 
|
| 25510 | 54  | 
instantiation nat :: zero  | 
55  | 
begin  | 
|
56  | 
||
| 37767 | 57  | 
definition Zero_nat_def:  | 
| 25510 | 58  | 
"0 = Abs_Nat Zero_Rep"  | 
59  | 
||
60  | 
instance ..  | 
|
61  | 
||
62  | 
end  | 
|
| 24995 | 63  | 
|
| 
44278
 
1220ecb81e8f
observe distinction between sets and predicates more properly
 
haftmann 
parents: 
43595 
diff
changeset
 | 
64  | 
definition Suc :: "nat \<Rightarrow> nat" where  | 
| 
 
1220ecb81e8f
observe distinction between sets and predicates more properly
 
haftmann 
parents: 
43595 
diff
changeset
 | 
65  | 
"Suc n = Abs_Nat (Suc_Rep (Rep_Nat n))"  | 
| 
 
1220ecb81e8f
observe distinction between sets and predicates more properly
 
haftmann 
parents: 
43595 
diff
changeset
 | 
66  | 
|
| 
27104
 
791607529f6d
rep_datatype command now takes list of constructors as input arguments
 
haftmann 
parents: 
26748 
diff
changeset
 | 
67  | 
lemma Suc_not_Zero: "Suc m \<noteq> 0"  | 
| 
44278
 
1220ecb81e8f
observe distinction between sets and predicates more properly
 
haftmann 
parents: 
43595 
diff
changeset
 | 
68  | 
by (simp add: Zero_nat_def Suc_def Suc_RepI Zero_RepI Nat_Abs_Nat_inject Suc_Rep_not_Zero_Rep Nat_Rep_Nat)  | 
| 13449 | 69  | 
|
| 
27104
 
791607529f6d
rep_datatype command now takes list of constructors as input arguments
 
haftmann 
parents: 
26748 
diff
changeset
 | 
70  | 
lemma Zero_not_Suc: "0 \<noteq> Suc m"  | 
| 13449 | 71  | 
by (rule not_sym, rule Suc_not_Zero not_sym)  | 
72  | 
||
| 
34208
 
a7acd6c68d9b
more regular axiom of infinity, with no (indirect) reference to overloaded constants
 
krauss 
parents: 
33657 
diff
changeset
 | 
73  | 
lemma Suc_Rep_inject': "Suc_Rep x = Suc_Rep y \<longleftrightarrow> x = y"  | 
| 
 
a7acd6c68d9b
more regular axiom of infinity, with no (indirect) reference to overloaded constants
 
krauss 
parents: 
33657 
diff
changeset
 | 
74  | 
by (rule iffI, rule Suc_Rep_inject) simp_all  | 
| 
 
a7acd6c68d9b
more regular axiom of infinity, with no (indirect) reference to overloaded constants
 
krauss 
parents: 
33657 
diff
changeset
 | 
75  | 
|
| 
55417
 
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
 
blanchet 
parents: 
55415 
diff
changeset
 | 
76  | 
lemma nat_induct0:  | 
| 
 
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
 
blanchet 
parents: 
55415 
diff
changeset
 | 
77  | 
fixes n  | 
| 
 
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
 
blanchet 
parents: 
55415 
diff
changeset
 | 
78  | 
assumes "P 0" and "\<And>n. P n \<Longrightarrow> P (Suc n)"  | 
| 
 
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
 
blanchet 
parents: 
55415 
diff
changeset
 | 
79  | 
shows "P n"  | 
| 
 
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
 
blanchet 
parents: 
55415 
diff
changeset
 | 
80  | 
using assms  | 
| 
 
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
 
blanchet 
parents: 
55415 
diff
changeset
 | 
81  | 
apply (unfold Zero_nat_def Suc_def)  | 
| 61799 | 82  | 
apply (rule Rep_Nat_inverse [THEN subst]) \<comment> \<open>types force good instantiation\<close>  | 
| 
55417
 
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
 
blanchet 
parents: 
55415 
diff
changeset
 | 
83  | 
apply (erule Nat_Rep_Nat [THEN Nat.induct])  | 
| 
 
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
 
blanchet 
parents: 
55415 
diff
changeset
 | 
84  | 
apply (iprover elim: Nat_Abs_Nat_inverse [THEN subst])  | 
| 
 
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
 
blanchet 
parents: 
55415 
diff
changeset
 | 
85  | 
done  | 
| 
 
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
 
blanchet 
parents: 
55415 
diff
changeset
 | 
86  | 
|
| 
55469
 
b19dd108f0c2
aligned the syntax for 'free_constructors' on the 'datatype_new' and 'codatatype' syntax
 
blanchet 
parents: 
55468 
diff
changeset
 | 
87  | 
free_constructors case_nat for  | 
| 61076 | 88  | 
"0 :: nat"  | 
| 
55469
 
b19dd108f0c2
aligned the syntax for 'free_constructors' on the 'datatype_new' and 'codatatype' syntax
 
blanchet 
parents: 
55468 
diff
changeset
 | 
89  | 
| Suc pred  | 
| 
57200
 
aab87ffa60cc
use 'where' clause for selector default value syntax
 
blanchet 
parents: 
57091 
diff
changeset
 | 
90  | 
where  | 
| 61076 | 91  | 
"pred (0 :: nat) = (0 :: nat)"  | 
| 
58189
 
9d714be4f028
added 'plugins' option to control which hooks are enabled
 
blanchet 
parents: 
57983 
diff
changeset
 | 
92  | 
apply atomize_elim  | 
| 
 
9d714be4f028
added 'plugins' option to control which hooks are enabled
 
blanchet 
parents: 
57983 
diff
changeset
 | 
93  | 
apply (rename_tac n, induct_tac n rule: nat_induct0, auto)  | 
| 
 
9d714be4f028
added 'plugins' option to control which hooks are enabled
 
blanchet 
parents: 
57983 
diff
changeset
 | 
94  | 
apply (simp add: Suc_def Nat_Abs_Nat_inject Nat_Rep_Nat Suc_RepI Suc_Rep_inject'  | 
| 
 
9d714be4f028
added 'plugins' option to control which hooks are enabled
 
blanchet 
parents: 
57983 
diff
changeset
 | 
95  | 
Rep_Nat_inject)  | 
| 
 
9d714be4f028
added 'plugins' option to control which hooks are enabled
 
blanchet 
parents: 
57983 
diff
changeset
 | 
96  | 
apply (simp only: Suc_not_Zero)  | 
| 
 
9d714be4f028
added 'plugins' option to control which hooks are enabled
 
blanchet 
parents: 
57983 
diff
changeset
 | 
97  | 
done  | 
| 
55417
 
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
 
blanchet 
parents: 
55415 
diff
changeset
 | 
98  | 
|
| 61799 | 99  | 
\<comment> \<open>Avoid name clashes by prefixing the output of \<open>old_rep_datatype\<close> with \<open>old\<close>.\<close>  | 
| 60758 | 100  | 
setup \<open>Sign.mandatory_path "old"\<close>  | 
| 
55417
 
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
 
blanchet 
parents: 
55415 
diff
changeset
 | 
101  | 
|
| 61076 | 102  | 
old_rep_datatype "0 :: nat" Suc  | 
| 
55417
 
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
 
blanchet 
parents: 
55415 
diff
changeset
 | 
103  | 
apply (erule nat_induct0, assumption)  | 
| 
 
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
 
blanchet 
parents: 
55415 
diff
changeset
 | 
104  | 
apply (rule nat.inject)  | 
| 
 
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
 
blanchet 
parents: 
55415 
diff
changeset
 | 
105  | 
apply (rule nat.distinct(1))  | 
| 
 
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
 
blanchet 
parents: 
55415 
diff
changeset
 | 
106  | 
done  | 
| 
 
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
 
blanchet 
parents: 
55415 
diff
changeset
 | 
107  | 
|
| 60758 | 108  | 
setup \<open>Sign.parent_path\<close>  | 
109  | 
||
| 61799 | 110  | 
\<comment> \<open>But erase the prefix for properties that are not generated by \<open>free_constructors\<close>.\<close>  | 
| 60758 | 111  | 
setup \<open>Sign.mandatory_path "nat"\<close>  | 
| 
55417
 
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
 
blanchet 
parents: 
55415 
diff
changeset
 | 
112  | 
|
| 
 
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
 
blanchet 
parents: 
55415 
diff
changeset
 | 
113  | 
declare  | 
| 
 
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
 
blanchet 
parents: 
55415 
diff
changeset
 | 
114  | 
old.nat.inject[iff del]  | 
| 
 
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
 
blanchet 
parents: 
55415 
diff
changeset
 | 
115  | 
old.nat.distinct(1)[simp del, induct_simp del]  | 
| 
 
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
 
blanchet 
parents: 
55415 
diff
changeset
 | 
116  | 
|
| 
 
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
 
blanchet 
parents: 
55415 
diff
changeset
 | 
117  | 
lemmas induct = old.nat.induct  | 
| 
 
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
 
blanchet 
parents: 
55415 
diff
changeset
 | 
118  | 
lemmas inducts = old.nat.inducts  | 
| 
55642
 
63beb38e9258
adapted to renaming of datatype 'cases' and 'recs' to 'case' and 'rec'
 
blanchet 
parents: 
55575 
diff
changeset
 | 
119  | 
lemmas rec = old.nat.rec  | 
| 
 
63beb38e9258
adapted to renaming of datatype 'cases' and 'recs' to 'case' and 'rec'
 
blanchet 
parents: 
55575 
diff
changeset
 | 
120  | 
lemmas simps = nat.inject nat.distinct nat.case nat.rec  | 
| 
55417
 
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
 
blanchet 
parents: 
55415 
diff
changeset
 | 
121  | 
|
| 60758 | 122  | 
setup \<open>Sign.parent_path\<close>  | 
| 
55417
 
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
 
blanchet 
parents: 
55415 
diff
changeset
 | 
123  | 
|
| 
 
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
 
blanchet 
parents: 
55415 
diff
changeset
 | 
124  | 
abbreviation rec_nat :: "'a \<Rightarrow> (nat \<Rightarrow> 'a \<Rightarrow> 'a) \<Rightarrow> nat \<Rightarrow> 'a" where  | 
| 
 
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
 
blanchet 
parents: 
55415 
diff
changeset
 | 
125  | 
"rec_nat \<equiv> old.rec_nat"  | 
| 
 
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
 
blanchet 
parents: 
55415 
diff
changeset
 | 
126  | 
|
| 
55424
 
9ab4129a76a3
remove hidden fact about hidden constant from code generator setup
 
blanchet 
parents: 
55423 
diff
changeset
 | 
127  | 
declare nat.sel[code del]  | 
| 
 
9ab4129a76a3
remove hidden fact about hidden constant from code generator setup
 
blanchet 
parents: 
55423 
diff
changeset
 | 
128  | 
|
| 61799 | 129  | 
hide_const (open) Nat.pred \<comment> \<open>hide everything related to the selector\<close>  | 
| 
55417
 
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
 
blanchet 
parents: 
55415 
diff
changeset
 | 
130  | 
hide_fact  | 
| 
 
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
 
blanchet 
parents: 
55415 
diff
changeset
 | 
131  | 
nat.case_eq_if  | 
| 
 
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
 
blanchet 
parents: 
55415 
diff
changeset
 | 
132  | 
nat.collapse  | 
| 
 
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
 
blanchet 
parents: 
55415 
diff
changeset
 | 
133  | 
nat.expand  | 
| 
 
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
 
blanchet 
parents: 
55415 
diff
changeset
 | 
134  | 
nat.sel  | 
| 
57983
 
6edc3529bb4e
reordered some (co)datatype property names for more consistency
 
blanchet 
parents: 
57952 
diff
changeset
 | 
135  | 
nat.exhaust_sel  | 
| 
 
6edc3529bb4e
reordered some (co)datatype property names for more consistency
 
blanchet 
parents: 
57952 
diff
changeset
 | 
136  | 
nat.split_sel  | 
| 
 
6edc3529bb4e
reordered some (co)datatype property names for more consistency
 
blanchet 
parents: 
57952 
diff
changeset
 | 
137  | 
nat.split_sel_asm  | 
| 
55417
 
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
 
blanchet 
parents: 
55415 
diff
changeset
 | 
138  | 
|
| 
 
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
 
blanchet 
parents: 
55415 
diff
changeset
 | 
139  | 
lemma nat_exhaust [case_names 0 Suc, cases type: nat]:  | 
| 61799 | 140  | 
\<comment> \<open>for backward compatibility -- names of variables differ\<close>  | 
| 
55417
 
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
 
blanchet 
parents: 
55415 
diff
changeset
 | 
141  | 
"(y = 0 \<Longrightarrow> P) \<Longrightarrow> (\<And>nat. y = Suc nat \<Longrightarrow> P) \<Longrightarrow> P"  | 
| 
55423
 
07dea66779f3
for extraction -- use the exhaust rule that's registered with 'datatype_realizer.ML'
 
blanchet 
parents: 
55417 
diff
changeset
 | 
142  | 
by (rule old.nat.exhaust)  | 
| 13449 | 143  | 
|
| 
27104
 
791607529f6d
rep_datatype command now takes list of constructors as input arguments
 
haftmann 
parents: 
26748 
diff
changeset
 | 
144  | 
lemma nat_induct [case_names 0 Suc, induct type: nat]:  | 
| 61799 | 145  | 
\<comment> \<open>for backward compatibility -- names of variables differ\<close>  | 
| 
27104
 
791607529f6d
rep_datatype command now takes list of constructors as input arguments
 
haftmann 
parents: 
26748 
diff
changeset
 | 
146  | 
fixes n  | 
| 
55417
 
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
 
blanchet 
parents: 
55415 
diff
changeset
 | 
147  | 
assumes "P 0" and "\<And>n. P n \<Longrightarrow> P (Suc n)"  | 
| 
27104
 
791607529f6d
rep_datatype command now takes list of constructors as input arguments
 
haftmann 
parents: 
26748 
diff
changeset
 | 
148  | 
shows "P n"  | 
| 
55417
 
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
 
blanchet 
parents: 
55415 
diff
changeset
 | 
149  | 
using assms by (rule nat.induct)  | 
| 13449 | 150  | 
|
| 
55417
 
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
 
blanchet 
parents: 
55415 
diff
changeset
 | 
151  | 
hide_fact  | 
| 
 
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
 
blanchet 
parents: 
55415 
diff
changeset
 | 
152  | 
nat_exhaust  | 
| 
 
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
 
blanchet 
parents: 
55415 
diff
changeset
 | 
153  | 
nat_induct0  | 
| 24995 | 154  | 
|
| 60758 | 155  | 
ML \<open>  | 
| 58389 | 156  | 
val nat_basic_lfp_sugar =  | 
157  | 
let  | 
|
158  | 
    val ctr_sugar = the (Ctr_Sugar.ctr_sugar_of_global @{theory} @{type_name nat});
 | 
|
159  | 
    val recx = Logic.varify_types_global @{term rec_nat};
 | 
|
160  | 
val C = body_type (fastype_of recx);  | 
|
161  | 
in  | 
|
162  | 
    {T = HOLogic.natT, fp_res_index = 0, C = C, fun_arg_Tsss = [[], [[HOLogic.natT, C]]],
 | 
|
163  | 
     ctr_sugar = ctr_sugar, recx = recx, rec_thms = @{thms nat.rec}}
 | 
|
164  | 
end;  | 
|
| 60758 | 165  | 
\<close>  | 
166  | 
||
167  | 
setup \<open>  | 
|
| 58389 | 168  | 
let  | 
169  | 
  fun basic_lfp_sugars_of _ [@{typ nat}] _ _ ctxt =
 | 
|
| 
62326
 
3cf7a067599c
allow predicator instead of map function in 'primrec'
 
blanchet 
parents: 
62217 
diff
changeset
 | 
170  | 
([], [0], [nat_basic_lfp_sugar], [], [], [], TrueI (*dummy*), [], false, ctxt)  | 
| 58389 | 171  | 
| basic_lfp_sugars_of bs arg_Ts callers callssss ctxt =  | 
172  | 
BNF_LFP_Rec_Sugar.default_basic_lfp_sugars_of bs arg_Ts callers callssss ctxt;  | 
|
173  | 
in  | 
|
174  | 
BNF_LFP_Rec_Sugar.register_lfp_rec_extension  | 
|
175  | 
    {nested_simps = [], is_new_datatype = K (K true), basic_lfp_sugars_of = basic_lfp_sugars_of,
 | 
|
176  | 
rewrite_nested_rec_call = NONE}  | 
|
177  | 
end  | 
|
| 60758 | 178  | 
\<close>  | 
179  | 
||
180  | 
text \<open>Injectiveness and distinctness lemmas\<close>  | 
|
| 24995 | 181  | 
|
| 
27104
 
791607529f6d
rep_datatype command now takes list of constructors as input arguments
 
haftmann 
parents: 
26748 
diff
changeset
 | 
182  | 
lemma inj_Suc[simp]: "inj_on Suc N"  | 
| 
 
791607529f6d
rep_datatype command now takes list of constructors as input arguments
 
haftmann 
parents: 
26748 
diff
changeset
 | 
183  | 
by (simp add: inj_on_def)  | 
| 
 
791607529f6d
rep_datatype command now takes list of constructors as input arguments
 
haftmann 
parents: 
26748 
diff
changeset
 | 
184  | 
|
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
185  | 
lemma Suc_neq_Zero: "Suc m = 0 \<Longrightarrow> R"  | 
| 25162 | 186  | 
by (rule notE, rule Suc_not_Zero)  | 
| 24995 | 187  | 
|
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
188  | 
lemma Zero_neq_Suc: "0 = Suc m \<Longrightarrow> R"  | 
| 25162 | 189  | 
by (rule Suc_neq_Zero, erule sym)  | 
| 24995 | 190  | 
|
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
191  | 
lemma Suc_inject: "Suc x = Suc y \<Longrightarrow> x = y"  | 
| 25162 | 192  | 
by (rule inj_Suc [THEN injD])  | 
| 24995 | 193  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
194  | 
lemma n_not_Suc_n: "n \<noteq> Suc n"  | 
| 25162 | 195  | 
by (induct n) simp_all  | 
| 13449 | 196  | 
|
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
197  | 
lemma Suc_n_not_n: "Suc n \<noteq> n"  | 
| 25162 | 198  | 
by (rule not_sym, rule n_not_Suc_n)  | 
| 13449 | 199  | 
|
| 60758 | 200  | 
text \<open>A special form of induction for reasoning  | 
201  | 
  about @{term "m < n"} and @{term "m - n"}\<close>
 | 
|
| 13449 | 202  | 
|
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
203  | 
lemma diff_induct: "(!!x. P x 0) ==> (!!y. P 0 (Suc y)) ==>  | 
| 13449 | 204  | 
(!!x y. P x y ==> P (Suc x) (Suc y)) ==> P m n"  | 
| 14208 | 205  | 
apply (rule_tac x = m in spec)  | 
| 15251 | 206  | 
apply (induct n)  | 
| 13449 | 207  | 
prefer 2  | 
208  | 
apply (rule allI)  | 
|
| 17589 | 209  | 
apply (induct_tac x, iprover+)  | 
| 13449 | 210  | 
done  | 
211  | 
||
| 24995 | 212  | 
|
| 60758 | 213  | 
subsection \<open>Arithmetic operators\<close>  | 
| 24995 | 214  | 
|
| 49388 | 215  | 
instantiation nat :: comm_monoid_diff  | 
| 
25571
 
c9e39eafc7a0
instantiation target rather than legacy instance
 
haftmann 
parents: 
25563 
diff
changeset
 | 
216  | 
begin  | 
| 24995 | 217  | 
|
| 
55575
 
a5e33e18fb5c
moved 'primrec' up (for real this time) and removed temporary 'old_primrec'
 
blanchet 
parents: 
55534 
diff
changeset
 | 
218  | 
primrec plus_nat where  | 
| 61076 | 219  | 
add_0: "0 + n = (n::nat)"  | 
| 44325 | 220  | 
| add_Suc: "Suc m + n = Suc (m + n)"  | 
| 24995 | 221  | 
|
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
222  | 
lemma add_0_right [simp]: "m + 0 = (m::nat)"  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
223  | 
by (induct m) simp_all  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
224  | 
|
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
225  | 
lemma add_Suc_right [simp]: "m + Suc n = Suc (m + n)"  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
226  | 
by (induct m) simp_all  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
227  | 
|
| 28514 | 228  | 
declare add_0 [code]  | 
229  | 
||
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
230  | 
lemma add_Suc_shift [code]: "Suc m + n = m + Suc n"  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
231  | 
by simp  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
232  | 
|
| 
55575
 
a5e33e18fb5c
moved 'primrec' up (for real this time) and removed temporary 'old_primrec'
 
blanchet 
parents: 
55534 
diff
changeset
 | 
233  | 
primrec minus_nat where  | 
| 61076 | 234  | 
diff_0 [code]: "m - 0 = (m::nat)"  | 
| 39793 | 235  | 
| diff_Suc: "m - Suc n = (case m - n of 0 => 0 | Suc k => k)"  | 
| 24995 | 236  | 
|
| 28514 | 237  | 
declare diff_Suc [simp del]  | 
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
238  | 
|
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
239  | 
lemma diff_0_eq_0 [simp, code]: "0 - n = (0::nat)"  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
240  | 
by (induct n) (simp_all add: diff_Suc)  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
241  | 
|
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
242  | 
lemma diff_Suc_Suc [simp, code]: "Suc m - Suc n = m - n"  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
243  | 
by (induct n) (simp_all add: diff_Suc)  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
244  | 
|
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
245  | 
instance proof  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
246  | 
fix n m q :: nat  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
247  | 
show "(n + m) + q = n + (m + q)" by (induct n) simp_all  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
248  | 
show "n + m = m + n" by (induct n) simp_all  | 
| 
59815
 
cce82e360c2f
explicit commutative additive inverse operation;
 
haftmann 
parents: 
59582 
diff
changeset
 | 
249  | 
show "m + n - m = n" by (induct m) simp_all  | 
| 
 
cce82e360c2f
explicit commutative additive inverse operation;
 
haftmann 
parents: 
59582 
diff
changeset
 | 
250  | 
show "n - m - q = n - (m + q)" by (induct q) (simp_all add: diff_Suc)  | 
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
251  | 
show "0 + n = n" by simp  | 
| 49388 | 252  | 
show "0 - n = 0" by simp  | 
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
253  | 
qed  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
254  | 
|
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
255  | 
end  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
256  | 
|
| 
36176
 
3fe7e97ccca8
replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
 
wenzelm 
parents: 
35828 
diff
changeset
 | 
257  | 
hide_fact (open) add_0 add_0_right diff_0  | 
| 
35047
 
1b2bae06c796
hide fact Nat.add_0_right; make add_0_right from Groups priority
 
haftmann 
parents: 
35028 
diff
changeset
 | 
258  | 
|
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
259  | 
instantiation nat :: comm_semiring_1_cancel  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
260  | 
begin  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
261  | 
|
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
262  | 
definition  | 
| 
47108
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46351 
diff
changeset
 | 
263  | 
One_nat_def [simp]: "1 = Suc 0"  | 
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
264  | 
|
| 
55575
 
a5e33e18fb5c
moved 'primrec' up (for real this time) and removed temporary 'old_primrec'
 
blanchet 
parents: 
55534 
diff
changeset
 | 
265  | 
primrec times_nat where  | 
| 61076 | 266  | 
mult_0: "0 * n = (0::nat)"  | 
| 44325 | 267  | 
| mult_Suc: "Suc m * n = n + (m * n)"  | 
| 
25571
 
c9e39eafc7a0
instantiation target rather than legacy instance
 
haftmann 
parents: 
25563 
diff
changeset
 | 
268  | 
|
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
269  | 
lemma mult_0_right [simp]: "(m::nat) * 0 = 0"  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
270  | 
by (induct m) simp_all  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
271  | 
|
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
272  | 
lemma mult_Suc_right [simp]: "m * Suc n = m + (m * n)"  | 
| 
57512
 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 
haftmann 
parents: 
57492 
diff
changeset
 | 
273  | 
by (induct m) (simp_all add: add.left_commute)  | 
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
274  | 
|
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
275  | 
lemma add_mult_distrib: "(m + n) * k = (m * k) + ((n * k)::nat)"  | 
| 
57512
 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 
haftmann 
parents: 
57492 
diff
changeset
 | 
276  | 
by (induct m) (simp_all add: add.assoc)  | 
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
277  | 
|
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
278  | 
instance proof  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
279  | 
fix n m q :: nat  | 
| 
30079
 
293b896b9c25
make proofs work whether or not One_nat_def is a simp rule; replace 1 with Suc 0 in the rhs of some simp rules
 
huffman 
parents: 
30056 
diff
changeset
 | 
280  | 
show "0 \<noteq> (1::nat)" unfolding One_nat_def by simp  | 
| 
 
293b896b9c25
make proofs work whether or not One_nat_def is a simp rule; replace 1 with Suc 0 in the rhs of some simp rules
 
huffman 
parents: 
30056 
diff
changeset
 | 
281  | 
show "1 * n = n" unfolding One_nat_def by simp  | 
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
282  | 
show "n * m = m * n" by (induct n) simp_all  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
283  | 
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: 
25928 
diff
changeset
 | 
284  | 
show "(n + m) * q = n * q + m * q" by (rule add_mult_distrib)  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60427 
diff
changeset
 | 
285  | 
next  | 
| 
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60427 
diff
changeset
 | 
286  | 
fix k m n :: nat  | 
| 
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60427 
diff
changeset
 | 
287  | 
show "k * ((m::nat) - n) = (k * m) - (k * n)"  | 
| 
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60427 
diff
changeset
 | 
288  | 
by (induct m n rule: diff_induct) simp_all  | 
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
289  | 
qed  | 
| 
25571
 
c9e39eafc7a0
instantiation target rather than legacy instance
 
haftmann 
parents: 
25563 
diff
changeset
 | 
290  | 
|
| 
 
c9e39eafc7a0
instantiation target rather than legacy instance
 
haftmann 
parents: 
25563 
diff
changeset
 | 
291  | 
end  | 
| 24995 | 292  | 
|
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60427 
diff
changeset
 | 
293  | 
|
| 60758 | 294  | 
subsubsection \<open>Addition\<close>  | 
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
295  | 
|
| 61799 | 296  | 
text \<open>Reasoning about \<open>m + 0 = 0\<close>, etc.\<close>  | 
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
297  | 
|
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
298  | 
lemma add_is_0 [iff]:  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
299  | 
fixes m n :: nat  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
300  | 
shows "(m + n = 0) = (m = 0 & n = 0)"  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
301  | 
by (cases m) simp_all  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
302  | 
|
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
303  | 
lemma add_is_1:  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
304  | 
"(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: 
25928 
diff
changeset
 | 
305  | 
by (cases m) simp_all  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
306  | 
|
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
307  | 
lemma one_is_add:  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
308  | 
"(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: 
25928 
diff
changeset
 | 
309  | 
by (rule trans, rule eq_commute, rule add_is_1)  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
310  | 
|
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
311  | 
lemma add_eq_self_zero:  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
312  | 
fixes m n :: nat  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
313  | 
shows "m + n = m \<Longrightarrow> n = 0"  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
314  | 
by (induct m) simp_all  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
315  | 
|
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
316  | 
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: 
25928 
diff
changeset
 | 
317  | 
apply (induct k)  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
318  | 
apply simp  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
319  | 
apply(drule comp_inj_on[OF _ inj_Suc])  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
320  | 
apply (simp add:o_def)  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
321  | 
done  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
322  | 
|
| 47208 | 323  | 
lemma Suc_eq_plus1: "Suc n = n + 1"  | 
324  | 
unfolding One_nat_def by simp  | 
|
325  | 
||
326  | 
lemma Suc_eq_plus1_left: "Suc n = 1 + n"  | 
|
327  | 
unfolding One_nat_def by simp  | 
|
328  | 
||
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
329  | 
|
| 60758 | 330  | 
subsubsection \<open>Difference\<close>  | 
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
331  | 
|
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
332  | 
lemma Suc_diff_diff [simp]: "(Suc m - n) - Suc k = m - n - k"  | 
| 62365 | 333  | 
by (simp add: diff_diff_add)  | 
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
334  | 
|
| 30093 | 335  | 
lemma diff_Suc_1 [simp]: "Suc n - 1 = n"  | 
336  | 
unfolding One_nat_def by simp  | 
|
337  | 
||
| 60758 | 338  | 
subsubsection \<open>Multiplication\<close>  | 
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
339  | 
|
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
340  | 
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: 
25928 
diff
changeset
 | 
341  | 
by (induct m) auto  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
342  | 
|
| 
30079
 
293b896b9c25
make proofs work whether or not One_nat_def is a simp rule; replace 1 with Suc 0 in the rhs of some simp rules
 
huffman 
parents: 
30056 
diff
changeset
 | 
343  | 
lemma mult_eq_1_iff [simp]: "(m * n = Suc 0) = (m = Suc 0 & n = Suc 0)"  | 
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
344  | 
apply (induct m)  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
345  | 
apply simp  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
346  | 
apply (induct n)  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
347  | 
apply auto  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
348  | 
done  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
349  | 
|
| 
54147
 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 
blanchet 
parents: 
53986 
diff
changeset
 | 
350  | 
lemma one_eq_mult_iff [simp]: "(Suc 0 = m * n) = (m = Suc 0 & n = Suc 0)"  | 
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
351  | 
apply (rule trans)  | 
| 
44890
 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 
nipkow 
parents: 
44848 
diff
changeset
 | 
352  | 
apply (rule_tac [2] mult_eq_1_iff, fastforce)  | 
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
353  | 
done  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
354  | 
|
| 
30079
 
293b896b9c25
make proofs work whether or not One_nat_def is a simp rule; replace 1 with Suc 0 in the rhs of some simp rules
 
huffman 
parents: 
30056 
diff
changeset
 | 
355  | 
lemma nat_mult_eq_1_iff [simp]: "m * n = (1::nat) \<longleftrightarrow> m = 1 \<and> n = 1"  | 
| 
 
293b896b9c25
make proofs work whether or not One_nat_def is a simp rule; replace 1 with Suc 0 in the rhs of some simp rules
 
huffman 
parents: 
30056 
diff
changeset
 | 
356  | 
unfolding One_nat_def by (rule mult_eq_1_iff)  | 
| 
 
293b896b9c25
make proofs work whether or not One_nat_def is a simp rule; replace 1 with Suc 0 in the rhs of some simp rules
 
huffman 
parents: 
30056 
diff
changeset
 | 
357  | 
|
| 
 
293b896b9c25
make proofs work whether or not One_nat_def is a simp rule; replace 1 with Suc 0 in the rhs of some simp rules
 
huffman 
parents: 
30056 
diff
changeset
 | 
358  | 
lemma nat_1_eq_mult_iff [simp]: "(1::nat) = m * n \<longleftrightarrow> m = 1 \<and> n = 1"  | 
| 
 
293b896b9c25
make proofs work whether or not One_nat_def is a simp rule; replace 1 with Suc 0 in the rhs of some simp rules
 
huffman 
parents: 
30056 
diff
changeset
 | 
359  | 
unfolding One_nat_def by (rule one_eq_mult_iff)  | 
| 
 
293b896b9c25
make proofs work whether or not One_nat_def is a simp rule; replace 1 with Suc 0 in the rhs of some simp rules
 
huffman 
parents: 
30056 
diff
changeset
 | 
360  | 
|
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
361  | 
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: 
25928 
diff
changeset
 | 
362  | 
proof -  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
363  | 
have "k \<noteq> 0 \<Longrightarrow> k * m = k * n \<Longrightarrow> m = n"  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
364  | 
proof (induct n arbitrary: m)  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
365  | 
case 0 then show "m = 0" by simp  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
366  | 
next  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
367  | 
case (Suc n) then show "m = Suc n"  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
368  | 
by (cases m) (simp_all add: eq_commute [of "0"])  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
369  | 
qed  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
370  | 
then show ?thesis by auto  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
371  | 
qed  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
372  | 
|
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
373  | 
lemma mult_cancel2 [simp]: "(m * k = n * k) = (m = n | (k = (0::nat)))"  | 
| 
57512
 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 
haftmann 
parents: 
57492 
diff
changeset
 | 
374  | 
by (simp add: mult.commute)  | 
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
375  | 
|
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
376  | 
lemma Suc_mult_cancel1: "(Suc k * m = Suc k * n) = (m = n)"  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
377  | 
by (subst mult_cancel1) simp  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
378  | 
|
| 24995 | 379  | 
|
| 60758 | 380  | 
subsection \<open>Orders on @{typ nat}\<close>
 | 
381  | 
||
382  | 
subsubsection \<open>Operation definition\<close>  | 
|
| 24995 | 383  | 
|
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
384  | 
instantiation nat :: linorder  | 
| 25510 | 385  | 
begin  | 
386  | 
||
| 
55575
 
a5e33e18fb5c
moved 'primrec' up (for real this time) and removed temporary 'old_primrec'
 
blanchet 
parents: 
55534 
diff
changeset
 | 
387  | 
primrec less_eq_nat where  | 
| 61076 | 388  | 
"(0::nat) \<le> n \<longleftrightarrow> True"  | 
| 44325 | 389  | 
| "Suc m \<le> n \<longleftrightarrow> (case n of 0 \<Rightarrow> False | Suc n \<Rightarrow> m \<le> n)"  | 
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
390  | 
|
| 28514 | 391  | 
declare less_eq_nat.simps [simp del]  | 
| 61076 | 392  | 
lemma le0 [iff]: "0 \<le> (n::nat)" by (simp add: less_eq_nat.simps)  | 
393  | 
lemma [code]: "(0::nat) \<le> n \<longleftrightarrow> True" by simp  | 
|
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
394  | 
|
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
395  | 
definition less_nat where  | 
| 28514 | 396  | 
less_eq_Suc_le: "n < m \<longleftrightarrow> Suc n \<le> m"  | 
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
397  | 
|
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
398  | 
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: 
25928 
diff
changeset
 | 
399  | 
by (simp add: less_eq_nat.simps(2))  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
400  | 
|
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
401  | 
lemma Suc_le_eq [code]: "Suc m \<le> n \<longleftrightarrow> m < n"  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
402  | 
unfolding less_eq_Suc_le ..  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
403  | 
|
| 61076 | 404  | 
lemma le_0_eq [iff]: "(n::nat) \<le> 0 \<longleftrightarrow> n = 0"  | 
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
405  | 
by (induct n) (simp_all add: less_eq_nat.simps(2))  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
406  | 
|
| 61076 | 407  | 
lemma not_less0 [iff]: "\<not> n < (0::nat)"  | 
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
408  | 
by (simp add: less_eq_Suc_le)  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
409  | 
|
| 61076 | 410  | 
lemma less_nat_zero_code [code]: "n < (0::nat) \<longleftrightarrow> False"  | 
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
411  | 
by simp  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
412  | 
|
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
413  | 
lemma Suc_less_eq [iff]: "Suc m < Suc n \<longleftrightarrow> m < n"  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
414  | 
by (simp add: less_eq_Suc_le)  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
415  | 
|
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
416  | 
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: 
25928 
diff
changeset
 | 
417  | 
by (simp add: less_eq_Suc_le)  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
418  | 
|
| 56194 | 419  | 
lemma Suc_less_eq2: "Suc n < m \<longleftrightarrow> (\<exists>m'. m = Suc m' \<and> n < m')"  | 
420  | 
by (cases m) auto  | 
|
421  | 
||
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
422  | 
lemma le_SucI: "m \<le> n \<Longrightarrow> m \<le> Suc n"  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
423  | 
by (induct m arbitrary: n)  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
424  | 
(simp_all add: less_eq_nat.simps(2) split: nat.splits)  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
425  | 
|
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
426  | 
lemma Suc_leD: "Suc m \<le> n \<Longrightarrow> m \<le> n"  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
427  | 
by (cases n) (auto intro: le_SucI)  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
428  | 
|
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
429  | 
lemma less_SucI: "m < n \<Longrightarrow> m < Suc n"  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
430  | 
by (simp add: less_eq_Suc_le) (erule Suc_leD)  | 
| 24995 | 431  | 
|
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
432  | 
lemma Suc_lessD: "Suc m < n \<Longrightarrow> m < n"  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
433  | 
by (simp add: less_eq_Suc_le) (erule Suc_leD)  | 
| 25510 | 434  | 
|
| 
26315
 
cb3badaa192e
removed redundant less_trans, less_linear, le_imp_less_or_eq, le_less_trans, less_le_trans (cf. Orderings.thy);
 
wenzelm 
parents: 
26300 
diff
changeset
 | 
435  | 
instance  | 
| 
 
cb3badaa192e
removed redundant less_trans, less_linear, le_imp_less_or_eq, le_less_trans, less_le_trans (cf. Orderings.thy);
 
wenzelm 
parents: 
26300 
diff
changeset
 | 
436  | 
proof  | 
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
437  | 
fix n m :: nat  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60427 
diff
changeset
 | 
438  | 
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: 
25928 
diff
changeset
 | 
439  | 
proof (induct n arbitrary: m)  | 
| 27679 | 440  | 
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: 
25928 
diff
changeset
 | 
441  | 
next  | 
| 27679 | 442  | 
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: 
25928 
diff
changeset
 | 
443  | 
qed  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
444  | 
next  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
445  | 
fix n :: nat show "n \<le> n" by (induct n) simp_all  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
446  | 
next  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
447  | 
fix n m :: nat assume "n \<le> m" and "m \<le> n"  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
448  | 
then show "n = m"  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
449  | 
by (induct n arbitrary: m)  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
450  | 
(simp_all add: less_eq_nat.simps(2) split: nat.splits)  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
451  | 
next  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
452  | 
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: 
25928 
diff
changeset
 | 
453  | 
then show "n \<le> q"  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
454  | 
proof (induct n arbitrary: m q)  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
455  | 
case 0 show ?case by simp  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
456  | 
next  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
457  | 
case (Suc n) then show ?case  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
458  | 
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: 
25928 
diff
changeset
 | 
459  | 
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: 
25928 
diff
changeset
 | 
460  | 
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: 
25928 
diff
changeset
 | 
461  | 
qed  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
462  | 
next  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
463  | 
fix n m :: nat show "n \<le> m \<or> m \<le> n"  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
464  | 
by (induct n arbitrary: m)  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
465  | 
(simp_all add: less_eq_nat.simps(2) split: nat.splits)  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
466  | 
qed  | 
| 25510 | 467  | 
|
468  | 
end  | 
|
| 13449 | 469  | 
|
| 
52729
 
412c9e0381a1
factored syntactic type classes for bot and top (by Alessandro Coglio)
 
haftmann 
parents: 
52435 
diff
changeset
 | 
470  | 
instantiation nat :: order_bot  | 
| 29652 | 471  | 
begin  | 
472  | 
||
473  | 
definition bot_nat :: nat where  | 
|
474  | 
"bot_nat = 0"  | 
|
475  | 
||
476  | 
instance proof  | 
|
477  | 
qed (simp add: bot_nat_def)  | 
|
478  | 
||
479  | 
end  | 
|
480  | 
||
| 
51329
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
481  | 
instance nat :: no_top  | 
| 61169 | 482  | 
by standard (auto intro: less_Suc_eq_le [THEN iffD2])  | 
| 52289 | 483  | 
|
| 
51329
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
484  | 
|
| 60758 | 485  | 
subsubsection \<open>Introduction properties\<close>  | 
| 13449 | 486  | 
|
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
487  | 
lemma lessI [iff]: "n < Suc n"  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
488  | 
by (simp add: less_Suc_eq_le)  | 
| 13449 | 489  | 
|
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
490  | 
lemma zero_less_Suc [iff]: "0 < Suc n"  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
491  | 
by (simp add: less_Suc_eq_le)  | 
| 13449 | 492  | 
|
493  | 
||
| 60758 | 494  | 
subsubsection \<open>Elimination properties\<close>  | 
| 13449 | 495  | 
|
496  | 
lemma less_not_refl: "~ n < (n::nat)"  | 
|
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
497  | 
by (rule order_less_irrefl)  | 
| 13449 | 498  | 
|
| 
26335
 
961bbcc9d85b
removed redundant Nat.less_not_sym, Nat.less_asym;
 
wenzelm 
parents: 
26315 
diff
changeset
 | 
499  | 
lemma less_not_refl2: "n < m ==> m \<noteq> (n::nat)"  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60427 
diff
changeset
 | 
500  | 
by (rule not_sym) (rule less_imp_neq)  | 
| 13449 | 501  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
502  | 
lemma less_not_refl3: "(s::nat) < t ==> s \<noteq> t"  | 
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
503  | 
by (rule less_imp_neq)  | 
| 13449 | 504  | 
|
| 
26335
 
961bbcc9d85b
removed redundant Nat.less_not_sym, Nat.less_asym;
 
wenzelm 
parents: 
26315 
diff
changeset
 | 
505  | 
lemma less_irrefl_nat: "(n::nat) < n ==> R"  | 
| 
 
961bbcc9d85b
removed redundant Nat.less_not_sym, Nat.less_asym;
 
wenzelm 
parents: 
26315 
diff
changeset
 | 
506  | 
by (rule notE, rule less_not_refl)  | 
| 13449 | 507  | 
|
508  | 
lemma less_zeroE: "(n::nat) < 0 ==> R"  | 
|
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
509  | 
by (rule notE) (rule not_less0)  | 
| 13449 | 510  | 
|
511  | 
lemma less_Suc_eq: "(m < Suc n) = (m < n | m = n)"  | 
|
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
512  | 
unfolding less_Suc_eq_le le_less ..  | 
| 13449 | 513  | 
|
| 
30079
 
293b896b9c25
make proofs work whether or not One_nat_def is a simp rule; replace 1 with Suc 0 in the rhs of some simp rules
 
huffman 
parents: 
30056 
diff
changeset
 | 
514  | 
lemma less_Suc0 [iff]: "(n < Suc 0) = (n = 0)"  | 
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
515  | 
by (simp add: less_Suc_eq)  | 
| 13449 | 516  | 
|
| 
54147
 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 
blanchet 
parents: 
53986 
diff
changeset
 | 
517  | 
lemma less_one [iff]: "(n < (1::nat)) = (n = 0)"  | 
| 
30079
 
293b896b9c25
make proofs work whether or not One_nat_def is a simp rule; replace 1 with Suc 0 in the rhs of some simp rules
 
huffman 
parents: 
30056 
diff
changeset
 | 
518  | 
unfolding One_nat_def by (rule less_Suc0)  | 
| 13449 | 519  | 
|
520  | 
lemma Suc_mono: "m < n ==> Suc m < Suc n"  | 
|
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
521  | 
by simp  | 
| 13449 | 522  | 
|
| 60758 | 523  | 
text \<open>"Less than" is antisymmetric, sort of\<close>  | 
| 14302 | 524  | 
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: 
25928 
diff
changeset
 | 
525  | 
unfolding not_less less_Suc_eq_le by (rule antisym)  | 
| 14302 | 526  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
527  | 
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: 
25928 
diff
changeset
 | 
528  | 
by (rule linorder_neq_iff)  | 
| 13449 | 529  | 
|
530  | 
lemma nat_less_cases: assumes major: "(m::nat) < n ==> P n m"  | 
|
531  | 
and eqCase: "m = n ==> P n m" and lessCase: "n<m ==> P n m"  | 
|
532  | 
shows "P n m"  | 
|
533  | 
apply (rule less_linear [THEN disjE])  | 
|
534  | 
apply (erule_tac [2] disjE)  | 
|
535  | 
apply (erule lessCase)  | 
|
536  | 
apply (erule sym [THEN eqCase])  | 
|
537  | 
apply (erule major)  | 
|
538  | 
done  | 
|
539  | 
||
540  | 
||
| 60758 | 541  | 
subsubsection \<open>Inductive (?) properties\<close>  | 
| 13449 | 542  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
543  | 
lemma Suc_lessI: "m < n ==> Suc m \<noteq> n ==> Suc m < n"  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60427 
diff
changeset
 | 
544  | 
unfolding less_eq_Suc_le [of m] le_less by simp  | 
| 13449 | 545  | 
|
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
546  | 
lemma lessE:  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
547  | 
assumes major: "i < k"  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
548  | 
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: 
25928 
diff
changeset
 | 
549  | 
shows P  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
550  | 
proof -  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
551  | 
from major have "\<exists>j. i \<le> j \<and> k = Suc j"  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
552  | 
unfolding less_eq_Suc_le by (induct k) simp_all  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
553  | 
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: 
25928 
diff
changeset
 | 
554  | 
by (clarsimp simp add: less_le)  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
555  | 
with p1 p2 show P by auto  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
556  | 
qed  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
557  | 
|
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
558  | 
lemma less_SucE: assumes major: "m < Suc n"  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
559  | 
and less: "m < n ==> P" and eq: "m = n ==> P" shows P  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
560  | 
apply (rule major [THEN lessE])  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
561  | 
apply (rule eq, blast)  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
562  | 
apply (rule less, blast)  | 
| 13449 | 563  | 
done  | 
564  | 
||
565  | 
lemma Suc_lessE: assumes major: "Suc i < k"  | 
|
566  | 
and minor: "!!j. i < j ==> k = Suc j ==> P" shows P  | 
|
567  | 
apply (rule major [THEN lessE])  | 
|
568  | 
apply (erule lessI [THEN minor])  | 
|
| 14208 | 569  | 
apply (erule Suc_lessD [THEN minor], assumption)  | 
| 13449 | 570  | 
done  | 
571  | 
||
572  | 
lemma Suc_less_SucD: "Suc m < Suc n ==> m < n"  | 
|
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
573  | 
by simp  | 
| 13449 | 574  | 
|
575  | 
lemma less_trans_Suc:  | 
|
576  | 
assumes le: "i < j" shows "j < k ==> Suc i < k"  | 
|
| 14208 | 577  | 
apply (induct k, simp_all)  | 
| 13449 | 578  | 
apply (insert le)  | 
579  | 
apply (simp add: less_Suc_eq)  | 
|
580  | 
apply (blast dest: Suc_lessD)  | 
|
581  | 
done  | 
|
582  | 
||
| 61799 | 583  | 
text \<open>Can be used with \<open>less_Suc_eq\<close> to get @{term "n = m | n < m"}\<close>
 | 
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
584  | 
lemma not_less_eq: "\<not> m < n \<longleftrightarrow> n < Suc m"  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
585  | 
unfolding not_less less_Suc_eq_le ..  | 
| 13449 | 586  | 
|
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
587  | 
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: 
25928 
diff
changeset
 | 
588  | 
unfolding not_le Suc_le_eq ..  | 
| 21243 | 589  | 
|
| 60758 | 590  | 
text \<open>Properties of "less than or equal"\<close>  | 
| 13449 | 591  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
592  | 
lemma le_imp_less_Suc: "m \<le> n ==> m < Suc n"  | 
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
593  | 
unfolding less_Suc_eq_le .  | 
| 13449 | 594  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
595  | 
lemma Suc_n_not_le_n: "~ Suc n \<le> n"  | 
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
596  | 
unfolding not_le less_Suc_eq_le ..  | 
| 13449 | 597  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
598  | 
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: 
25928 
diff
changeset
 | 
599  | 
by (simp add: less_Suc_eq_le [symmetric] less_Suc_eq)  | 
| 13449 | 600  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
601  | 
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: 
25928 
diff
changeset
 | 
602  | 
by (drule le_Suc_eq [THEN iffD1], iprover+)  | 
| 13449 | 603  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
604  | 
lemma Suc_leI: "m < n ==> Suc(m) \<le> n"  | 
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
605  | 
unfolding Suc_le_eq .  | 
| 13449 | 606  | 
|
| 61799 | 607  | 
text \<open>Stronger version of \<open>Suc_leD\<close>\<close>  | 
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
608  | 
lemma Suc_le_lessD: "Suc m \<le> n ==> m < n"  | 
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
609  | 
unfolding Suc_le_eq .  | 
| 13449 | 610  | 
|
| 
26315
 
cb3badaa192e
removed redundant less_trans, less_linear, le_imp_less_or_eq, le_less_trans, less_le_trans (cf. Orderings.thy);
 
wenzelm 
parents: 
26300 
diff
changeset
 | 
611  | 
lemma less_imp_le_nat: "m < n ==> m \<le> (n::nat)"  | 
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
612  | 
unfolding less_eq_Suc_le by (rule Suc_leD)  | 
| 13449 | 613  | 
|
| 61799 | 614  | 
text \<open>For instance, \<open>(Suc m < Suc n) = (Suc m \<le> n) = (m < n)\<close>\<close>  | 
| 
26315
 
cb3badaa192e
removed redundant less_trans, less_linear, le_imp_less_or_eq, le_less_trans, less_le_trans (cf. Orderings.thy);
 
wenzelm 
parents: 
26300 
diff
changeset
 | 
615  | 
lemmas le_simps = less_imp_le_nat less_Suc_eq_le Suc_le_eq  | 
| 13449 | 616  | 
|
617  | 
||
| 60758 | 618  | 
text \<open>Equivalence of @{term "m \<le> n"} and @{term "m < n | m = n"}\<close>
 | 
| 13449 | 619  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
620  | 
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: 
25928 
diff
changeset
 | 
621  | 
unfolding le_less .  | 
| 13449 | 622  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
623  | 
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: 
25928 
diff
changeset
 | 
624  | 
by (rule le_less)  | 
| 13449 | 625  | 
|
| 61799 | 626  | 
text \<open>Useful with \<open>blast\<close>.\<close>  | 
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
627  | 
lemma eq_imp_le: "(m::nat) = n ==> m \<le> n"  | 
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
628  | 
by auto  | 
| 13449 | 629  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
630  | 
lemma le_refl: "n \<le> (n::nat)"  | 
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
631  | 
by simp  | 
| 13449 | 632  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
633  | 
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: 
25928 
diff
changeset
 | 
634  | 
by (rule order_trans)  | 
| 13449 | 635  | 
|
| 33657 | 636  | 
lemma le_antisym: "[| m \<le> n; n \<le> m |] ==> m = (n::nat)"  | 
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
637  | 
by (rule antisym)  | 
| 13449 | 638  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
639  | 
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: 
25928 
diff
changeset
 | 
640  | 
by (rule less_le)  | 
| 13449 | 641  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
642  | 
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: 
25928 
diff
changeset
 | 
643  | 
unfolding less_le ..  | 
| 13449 | 644  | 
|
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
645  | 
lemma nat_le_linear: "(m::nat) \<le> n | n \<le> m"  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
646  | 
by (rule linear)  | 
| 
14341
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
647  | 
|
| 22718 | 648  | 
lemmas linorder_neqE_nat = linorder_neqE [where 'a = nat]  | 
| 15921 | 649  | 
|
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
650  | 
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: 
25928 
diff
changeset
 | 
651  | 
unfolding less_Suc_eq_le by auto  | 
| 13449 | 652  | 
|
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
653  | 
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: 
25928 
diff
changeset
 | 
654  | 
unfolding not_less by (rule le_less_Suc_eq)  | 
| 13449 | 655  | 
|
656  | 
lemmas not_less_simps = not_less_less_Suc_eq le_less_Suc_eq  | 
|
657  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
658  | 
lemma not0_implies_Suc: "n \<noteq> 0 ==> \<exists>m. n = Suc m"  | 
| 25162 | 659  | 
by (cases n) simp_all  | 
660  | 
||
661  | 
lemma gr0_implies_Suc: "n > 0 ==> \<exists>m. n = Suc m"  | 
|
662  | 
by (cases n) simp_all  | 
|
| 13449 | 663  | 
|
| 22718 | 664  | 
lemma gr_implies_not0: fixes n :: nat shows "m<n ==> n \<noteq> 0"  | 
| 25162 | 665  | 
by (cases n) simp_all  | 
| 13449 | 666  | 
|
| 25162 | 667  | 
lemma neq0_conv[iff]: fixes n :: nat shows "(n \<noteq> 0) = (0 < n)"  | 
668  | 
by (cases n) simp_all  | 
|
| 25140 | 669  | 
|
| 61799 | 670  | 
text \<open>This theorem is useful with \<open>blast\<close>\<close>  | 
| 13449 | 671  | 
lemma gr0I: "((n::nat) = 0 ==> False) ==> 0 < n"  | 
| 25162 | 672  | 
by (rule neq0_conv[THEN iffD1], iprover)  | 
| 13449 | 673  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
674  | 
lemma gr0_conv_Suc: "(0 < n) = (\<exists>m. n = Suc m)"  | 
| 25162 | 675  | 
by (fast intro: not0_implies_Suc)  | 
| 13449 | 676  | 
|
| 
54147
 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 
blanchet 
parents: 
53986 
diff
changeset
 | 
677  | 
lemma not_gr0 [iff]: "!!n::nat. (~ (0 < n)) = (n = 0)"  | 
| 
25134
 
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
 
nipkow 
parents: 
25111 
diff
changeset
 | 
678  | 
using neq0_conv by blast  | 
| 13449 | 679  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
680  | 
lemma Suc_le_D: "(Suc n \<le> m') ==> (? m. m' = Suc m)"  | 
| 25162 | 681  | 
by (induct m') simp_all  | 
| 13449 | 682  | 
|
| 60758 | 683  | 
text \<open>Useful in certain inductive arguments\<close>  | 
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
684  | 
lemma less_Suc_eq_0_disj: "(m < Suc n) = (m = 0 | (\<exists>j. m = Suc j & j < n))"  | 
| 25162 | 685  | 
by (cases m) simp_all  | 
| 13449 | 686  | 
|
687  | 
||
| 60758 | 688  | 
subsubsection \<open>Monotonicity of Addition\<close>  | 
| 13449 | 689  | 
|
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
690  | 
lemma Suc_pred [simp]: "n>0 ==> Suc (n - Suc 0) = n"  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
691  | 
by (simp add: diff_Suc split: nat.split)  | 
| 13449 | 692  | 
|
| 
30128
 
365ee7319b86
revert some Suc 0 lemmas back to their original forms; added some simp rules for (1::nat)
 
huffman 
parents: 
30093 
diff
changeset
 | 
693  | 
lemma Suc_diff_1 [simp]: "0 < n ==> Suc (n - 1) = n"  | 
| 
 
365ee7319b86
revert some Suc 0 lemmas back to their original forms; added some simp rules for (1::nat)
 
huffman 
parents: 
30093 
diff
changeset
 | 
694  | 
unfolding One_nat_def by (rule Suc_pred)  | 
| 
 
365ee7319b86
revert some Suc 0 lemmas back to their original forms; added some simp rules for (1::nat)
 
huffman 
parents: 
30093 
diff
changeset
 | 
695  | 
|
| 14331 | 696  | 
lemma nat_add_left_cancel_le [simp]: "(k + m \<le> k + n) = (m\<le>(n::nat))"  | 
| 25162 | 697  | 
by (induct k) simp_all  | 
| 13449 | 698  | 
|
| 14331 | 699  | 
lemma nat_add_left_cancel_less [simp]: "(k + m < k + n) = (m<(n::nat))"  | 
| 25162 | 700  | 
by (induct k) simp_all  | 
| 13449 | 701  | 
|
| 25162 | 702  | 
lemma add_gr_0 [iff]: "!!m::nat. (m + n > 0) = (m>0 | n>0)"  | 
703  | 
by(auto dest:gr0_implies_Suc)  | 
|
| 13449 | 704  | 
|
| 60758 | 705  | 
text \<open>strict, in 1st argument\<close>  | 
| 
14341
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
706  | 
lemma add_less_mono1: "i < j ==> i + k < j + (k::nat)"  | 
| 25162 | 707  | 
by (induct k) simp_all  | 
| 
14341
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
708  | 
|
| 60758 | 709  | 
text \<open>strict, in both arguments\<close>  | 
| 
14341
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
710  | 
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
 | 
711  | 
apply (rule add_less_mono1 [THEN less_trans], assumption+)  | 
| 15251 | 712  | 
apply (induct j, simp_all)  | 
| 
14341
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
713  | 
done  | 
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
714  | 
|
| 61799 | 715  | 
text \<open>Deleted \<open>less_natE\<close>; use \<open>less_imp_Suc_add RS exE\<close>\<close>  | 
| 
14341
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
716  | 
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
 | 
717  | 
apply (induct n)  | 
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
718  | 
apply (simp_all add: order_le_less)  | 
| 22718 | 719  | 
apply (blast elim!: less_SucE  | 
| 
35047
 
1b2bae06c796
hide fact Nat.add_0_right; make add_0_right from Groups priority
 
haftmann 
parents: 
35028 
diff
changeset
 | 
720  | 
intro!: Nat.add_0_right [symmetric] add_Suc_right [symmetric])  | 
| 
14341
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
721  | 
done  | 
| 
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
722  | 
|
| 56194 | 723  | 
lemma le_Suc_ex: "(k::nat) \<le> l \<Longrightarrow> (\<exists>n. l = k + n)"  | 
724  | 
by (auto simp: less_Suc_eq_le[symmetric] dest: less_imp_Suc_add)  | 
|
725  | 
||
| 61799 | 726  | 
text \<open>strict, in 1st argument; proof is by induction on \<open>k > 0\<close>\<close>  | 
| 
25134
 
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
 
nipkow 
parents: 
25111 
diff
changeset
 | 
727  | 
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: 
25111 
diff
changeset
 | 
728  | 
apply(auto simp: gr0_conv_Suc)  | 
| 
 
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
 
nipkow 
parents: 
25111 
diff
changeset
 | 
729  | 
apply (induct_tac m)  | 
| 
 
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
 
nipkow 
parents: 
25111 
diff
changeset
 | 
730  | 
apply (simp_all add: add_less_mono)  | 
| 
 
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
 
nipkow 
parents: 
25111 
diff
changeset
 | 
731  | 
done  | 
| 
14341
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
732  | 
|
| 60758 | 733  | 
text \<open>Addition is the inverse of subtraction:  | 
734  | 
  if @{term "n \<le> m"} then @{term "n + (m - n) = m"}.\<close>
 | 
|
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60427 
diff
changeset
 | 
735  | 
lemma add_diff_inverse_nat: "~ m < n ==> n + (m - n) = (m::nat)"  | 
| 
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60427 
diff
changeset
 | 
736  | 
by (induct m n rule: diff_induct) simp_all  | 
| 
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60427 
diff
changeset
 | 
737  | 
|
| 
62376
 
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
 
hoelzl 
parents: 
62365 
diff
changeset
 | 
738  | 
lemma nat_le_iff_add: "(m::nat) \<le> n = (\<exists>k. n = m + k)"  | 
| 
 
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
 
hoelzl 
parents: 
62365 
diff
changeset
 | 
739  | 
using nat_add_left_cancel_le[of m 0] by (auto dest: le_Suc_ex)  | 
| 
 
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
 
hoelzl 
parents: 
62365 
diff
changeset
 | 
740  | 
|
| 
 
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
 
hoelzl 
parents: 
62365 
diff
changeset
 | 
741  | 
text\<open>The naturals form an ordered \<open>semidom\<close> and a \<open>dioid\<close>\<close>  | 
| 
 
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
 
hoelzl 
parents: 
62365 
diff
changeset
 | 
742  | 
|
| 
35028
 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 
haftmann 
parents: 
34208 
diff
changeset
 | 
743  | 
instance nat :: linordered_semidom  | 
| 
14341
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
744  | 
proof  | 
| 
14348
 
744c868ee0b7
Defining the type class "ringpower" and deleting superseded theorems for
 
paulson 
parents: 
14341 
diff
changeset
 | 
745  | 
show "0 < (1::nat)" by simp  | 
| 52289 | 746  | 
show "\<And>m n q :: nat. m \<le> n \<Longrightarrow> q + m \<le> q + n" by simp  | 
747  | 
show "\<And>m n q :: nat. m < n \<Longrightarrow> 0 < q \<Longrightarrow> q * m < q * n" by (simp add: mult_less_mono2)  | 
|
| 
59833
 
ab828c2c5d67
clarified no_zero_devisors: makes only sense in a semiring;
 
haftmann 
parents: 
59816 
diff
changeset
 | 
748  | 
show "\<And>m n :: nat. m \<noteq> 0 \<Longrightarrow> n \<noteq> 0 \<Longrightarrow> m * n \<noteq> 0" by simp  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60427 
diff
changeset
 | 
749  | 
show "\<And>m n :: nat. n \<le> m ==> (m - n) + n = (m::nat)"  | 
| 
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60427 
diff
changeset
 | 
750  | 
by (simp add: add_diff_inverse_nat add.commute linorder_not_less)  | 
| 
62376
 
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
 
hoelzl 
parents: 
62365 
diff
changeset
 | 
751  | 
qed  | 
| 
 
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
 
hoelzl 
parents: 
62365 
diff
changeset
 | 
752  | 
|
| 
 
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
 
hoelzl 
parents: 
62365 
diff
changeset
 | 
753  | 
instance nat :: dioid  | 
| 
 
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
 
hoelzl 
parents: 
62365 
diff
changeset
 | 
754  | 
proof qed (rule nat_le_iff_add)  | 
| 
62378
 
85ed00c1fe7c
generalize more theorems to support enat and ennreal
 
hoelzl 
parents: 
62376 
diff
changeset
 | 
755  | 
declare le0[simp del] -- \<open>This is now @{thm zero_le}\<close>
 | 
| 
 
85ed00c1fe7c
generalize more theorems to support enat and ennreal
 
hoelzl 
parents: 
62376 
diff
changeset
 | 
756  | 
declare le_0_eq[simp del] -- \<open>This is now @{thm le_zero_eq}\<close>
 | 
| 
 
85ed00c1fe7c
generalize more theorems to support enat and ennreal
 
hoelzl 
parents: 
62376 
diff
changeset
 | 
757  | 
declare not_less0[simp del] -- \<open>This is now @{thm not_less_zero}\<close>
 | 
| 
 
85ed00c1fe7c
generalize more theorems to support enat and ennreal
 
hoelzl 
parents: 
62376 
diff
changeset
 | 
758  | 
declare not_gr0[simp del] -- \<open>This is now @{thm not_gr_zero}\<close>
 | 
| 
62376
 
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
 
hoelzl 
parents: 
62365 
diff
changeset
 | 
759  | 
|
| 
 
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
 
hoelzl 
parents: 
62365 
diff
changeset
 | 
760  | 
instance nat :: ordered_cancel_comm_monoid_add  | 
| 
 
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
 
hoelzl 
parents: 
62365 
diff
changeset
 | 
761  | 
proof qed  | 
| 
 
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
 
hoelzl 
parents: 
62365 
diff
changeset
 | 
762  | 
|
| 
 
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
 
hoelzl 
parents: 
62365 
diff
changeset
 | 
763  | 
instance nat :: ordered_cancel_comm_monoid_diff  | 
| 
 
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
 
hoelzl 
parents: 
62365 
diff
changeset
 | 
764  | 
proof qed  | 
| 44817 | 765  | 
|
| 60758 | 766  | 
subsubsection \<open>@{term min} and @{term max}\<close>
 | 
| 44817 | 767  | 
|
768  | 
lemma mono_Suc: "mono Suc"  | 
|
769  | 
by (rule monoI) simp  | 
|
770  | 
||
771  | 
lemma min_0L [simp]: "min 0 n = (0::nat)"  | 
|
| 45931 | 772  | 
by (rule min_absorb1) simp  | 
| 44817 | 773  | 
|
774  | 
lemma min_0R [simp]: "min n 0 = (0::nat)"  | 
|
| 45931 | 775  | 
by (rule min_absorb2) simp  | 
| 44817 | 776  | 
|
777  | 
lemma min_Suc_Suc [simp]: "min (Suc m) (Suc n) = Suc (min m n)"  | 
|
778  | 
by (simp add: mono_Suc min_of_mono)  | 
|
779  | 
||
780  | 
lemma min_Suc1:  | 
|
781  | 
"min (Suc n) m = (case m of 0 => 0 | Suc m' => Suc(min n m'))"  | 
|
782  | 
by (simp split: nat.split)  | 
|
783  | 
||
784  | 
lemma min_Suc2:  | 
|
785  | 
"min m (Suc n) = (case m of 0 => 0 | Suc m' => Suc(min m' n))"  | 
|
786  | 
by (simp split: nat.split)  | 
|
787  | 
||
788  | 
lemma max_0L [simp]: "max 0 n = (n::nat)"  | 
|
| 45931 | 789  | 
by (rule max_absorb2) simp  | 
| 44817 | 790  | 
|
791  | 
lemma max_0R [simp]: "max n 0 = (n::nat)"  | 
|
| 45931 | 792  | 
by (rule max_absorb1) simp  | 
| 44817 | 793  | 
|
794  | 
lemma max_Suc_Suc [simp]: "max (Suc m) (Suc n) = Suc(max m n)"  | 
|
795  | 
by (simp add: mono_Suc max_of_mono)  | 
|
796  | 
||
797  | 
lemma max_Suc1:  | 
|
798  | 
"max (Suc n) m = (case m of 0 => Suc n | Suc m' => Suc(max n m'))"  | 
|
799  | 
by (simp split: nat.split)  | 
|
800  | 
||
801  | 
lemma max_Suc2:  | 
|
802  | 
"max m (Suc n) = (case m of 0 => Suc n | Suc m' => Suc(max m' n))"  | 
|
803  | 
by (simp split: nat.split)  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
804  | 
|
| 44817 | 805  | 
lemma nat_mult_min_left:  | 
806  | 
fixes m n q :: nat  | 
|
807  | 
shows "min m n * q = min (m * q) (n * q)"  | 
|
808  | 
by (simp add: min_def not_le) (auto dest: mult_right_le_imp_le mult_right_less_imp_less le_less_trans)  | 
|
809  | 
||
810  | 
lemma nat_mult_min_right:  | 
|
811  | 
fixes m n q :: nat  | 
|
812  | 
shows "m * min n q = min (m * n) (m * q)"  | 
|
813  | 
by (simp add: min_def not_le) (auto dest: mult_left_le_imp_le mult_left_less_imp_less le_less_trans)  | 
|
814  | 
||
815  | 
lemma nat_add_max_left:  | 
|
816  | 
fixes m n q :: nat  | 
|
817  | 
shows "max m n + q = max (m + q) (n + q)"  | 
|
818  | 
by (simp add: max_def)  | 
|
819  | 
||
820  | 
lemma nat_add_max_right:  | 
|
821  | 
fixes m n q :: nat  | 
|
822  | 
shows "m + max n q = max (m + n) (m + q)"  | 
|
823  | 
by (simp add: max_def)  | 
|
824  | 
||
825  | 
lemma nat_mult_max_left:  | 
|
826  | 
fixes m n q :: nat  | 
|
827  | 
shows "max m n * q = max (m * q) (n * q)"  | 
|
828  | 
by (simp add: max_def not_le) (auto dest: mult_right_le_imp_le mult_right_less_imp_less le_less_trans)  | 
|
829  | 
||
830  | 
lemma nat_mult_max_right:  | 
|
831  | 
fixes m n q :: nat  | 
|
832  | 
shows "m * max n q = max (m * n) (m * q)"  | 
|
833  | 
by (simp add: max_def not_le) (auto dest: mult_left_le_imp_le mult_left_less_imp_less le_less_trans)  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
834  | 
|
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
835  | 
|
| 60758 | 836  | 
subsubsection \<open>Additional theorems about @{term "op \<le>"}\<close>
 | 
837  | 
||
838  | 
text \<open>Complete induction, aka course-of-values induction\<close>  | 
|
| 
26748
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
839  | 
|
| 27823 | 840  | 
instance nat :: wellorder proof  | 
841  | 
fix P and n :: nat  | 
|
842  | 
assume step: "\<And>n::nat. (\<And>m. m < n \<Longrightarrow> P m) \<Longrightarrow> P n"  | 
|
843  | 
have "\<And>q. q \<le> n \<Longrightarrow> P q"  | 
|
844  | 
proof (induct n)  | 
|
845  | 
case (0 n)  | 
|
| 
26748
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
846  | 
have "P 0" by (rule step) auto  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
847  | 
thus ?case using 0 by auto  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
848  | 
next  | 
| 27823 | 849  | 
case (Suc m n)  | 
850  | 
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: 
26335 
diff
changeset
 | 
851  | 
thus ?case  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
852  | 
proof  | 
| 27823 | 853  | 
assume "n \<le> m" thus "P n" by (rule Suc(1))  | 
| 
26748
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
854  | 
next  | 
| 27823 | 855  | 
assume n: "n = Suc m"  | 
856  | 
show "P n"  | 
|
857  | 
by (rule step) (rule Suc(1), simp add: n le_simps)  | 
|
| 
26748
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
858  | 
qed  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
859  | 
qed  | 
| 27823 | 860  | 
then show "P n" by auto  | 
| 
26748
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
861  | 
qed  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
862  | 
|
| 57015 | 863  | 
|
864  | 
lemma Least_eq_0[simp]: "P(0::nat) \<Longrightarrow> Least P = 0"  | 
|
865  | 
by (rule Least_equality[OF _ le0])  | 
|
866  | 
||
| 27823 | 867  | 
lemma Least_Suc:  | 
868  | 
"[| P n; ~ P 0 |] ==> (LEAST n. P n) = Suc (LEAST m. P(Suc m))"  | 
|
| 47988 | 869  | 
apply (cases n, auto)  | 
| 27823 | 870  | 
apply (frule LeastI)  | 
871  | 
apply (drule_tac P = "%x. P (Suc x) " in LeastI)  | 
|
872  | 
apply (subgoal_tac " (LEAST x. P x) \<le> Suc (LEAST x. P (Suc x))")  | 
|
873  | 
apply (erule_tac [2] Least_le)  | 
|
| 47988 | 874  | 
apply (cases "LEAST x. P x", auto)  | 
| 27823 | 875  | 
apply (drule_tac P = "%x. P (Suc x) " in Least_le)  | 
876  | 
apply (blast intro: order_antisym)  | 
|
877  | 
done  | 
|
878  | 
||
879  | 
lemma Least_Suc2:  | 
|
880  | 
"[|P n; Q m; ~P 0; !k. P (Suc k) = Q k|] ==> Least P = Suc (Least Q)"  | 
|
881  | 
apply (erule (1) Least_Suc [THEN ssubst])  | 
|
882  | 
apply simp  | 
|
883  | 
done  | 
|
884  | 
||
885  | 
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)"  | 
|
886  | 
apply (cases n)  | 
|
887  | 
apply blast  | 
|
888  | 
apply (rule_tac x="LEAST k. P(k)" in exI)  | 
|
889  | 
apply (blast intro: Least_le dest: not_less_Least intro: LeastI_ex)  | 
|
890  | 
done  | 
|
891  | 
||
892  | 
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)"  | 
|
| 
30079
 
293b896b9c25
make proofs work whether or not One_nat_def is a simp rule; replace 1 with Suc 0 in the rhs of some simp rules
 
huffman 
parents: 
30056 
diff
changeset
 | 
893  | 
unfolding One_nat_def  | 
| 27823 | 894  | 
apply (cases n)  | 
895  | 
apply blast  | 
|
896  | 
apply (frule (1) ex_least_nat_le)  | 
|
897  | 
apply (erule exE)  | 
|
898  | 
apply (case_tac k)  | 
|
899  | 
apply simp  | 
|
900  | 
apply (rename_tac k1)  | 
|
901  | 
apply (rule_tac x=k1 in exI)  | 
|
902  | 
apply (auto simp add: less_eq_Suc_le)  | 
|
903  | 
done  | 
|
904  | 
||
| 
26748
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
905  | 
lemma nat_less_induct:  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
906  | 
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: 
26335 
diff
changeset
 | 
907  | 
using assms less_induct by blast  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
908  | 
|
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
909  | 
lemma measure_induct_rule [case_names less]:  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
910  | 
fixes f :: "'a \<Rightarrow> nat"  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
911  | 
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: 
26335 
diff
changeset
 | 
912  | 
shows "P a"  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
913  | 
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: 
26335 
diff
changeset
 | 
914  | 
|
| 60758 | 915  | 
text \<open>old style induction rules:\<close>  | 
| 
26748
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
916  | 
lemma measure_induct:  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
917  | 
fixes f :: "'a \<Rightarrow> nat"  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
918  | 
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: 
26335 
diff
changeset
 | 
919  | 
by (rule measure_induct_rule [of f P a]) iprover  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
920  | 
|
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
921  | 
lemma full_nat_induct:  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
922  | 
assumes step: "(!!n. (ALL m. Suc m <= n --> P m) ==> P n)"  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
923  | 
shows "P n"  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
924  | 
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: 
14266 
diff
changeset
 | 
925  | 
|
| 60758 | 926  | 
text\<open>An induction rule for estabilishing binary relations\<close>  | 
| 22718 | 927  | 
lemma less_Suc_induct:  | 
| 19870 | 928  | 
assumes less: "i < j"  | 
929  | 
and step: "!!i. P i (Suc i)"  | 
|
| 31714 | 930  | 
and trans: "!!i j k. i < j ==> j < k ==> P i j ==> P j k ==> P i k"  | 
| 19870 | 931  | 
shows "P i j"  | 
932  | 
proof -  | 
|
| 31714 | 933  | 
from less obtain k where j: "j = Suc (i + k)" by (auto dest: less_imp_Suc_add)  | 
| 22718 | 934  | 
have "P i (Suc (i + k))"  | 
| 19870 | 935  | 
proof (induct k)  | 
| 22718 | 936  | 
case 0  | 
937  | 
show ?case by (simp add: step)  | 
|
| 19870 | 938  | 
next  | 
939  | 
case (Suc k)  | 
|
| 31714 | 940  | 
have "0 + i < Suc k + i" by (rule add_less_mono1) simp  | 
| 
57512
 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 
haftmann 
parents: 
57492 
diff
changeset
 | 
941  | 
hence "i < Suc (i + k)" by (simp add: add.commute)  | 
| 31714 | 942  | 
from trans[OF this lessI Suc step]  | 
943  | 
show ?case by simp  | 
|
| 19870 | 944  | 
qed  | 
| 22718 | 945  | 
thus "P i j" by (simp add: j)  | 
| 19870 | 946  | 
qed  | 
947  | 
||
| 60758 | 948  | 
text \<open>The method of infinite descent, frequently used in number theory.  | 
| 
26748
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
949  | 
Provided by Roelof Oosterhuis.  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
950  | 
$P(n)$ is true for all $n\in\mathbb{N}$ if
 | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
951  | 
\begin{itemize}
 | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
952  | 
\item case ``0'': given $n=0$ prove $P(n)$,  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
953  | 
\item case ``smaller'': given $n>0$ and $\neg P(n)$ prove there exists  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
954  | 
a smaller integer $m$ such that $\neg P(m)$.  | 
| 60758 | 955  | 
\end{itemize}\<close>
 | 
956  | 
||
957  | 
text\<open>A compact version without explicit base case:\<close>  | 
|
| 
26748
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
958  | 
lemma infinite_descent:  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
959  | 
"\<lbrakk> !!n::nat. \<not> P n \<Longrightarrow> \<exists>m<n. \<not> P m \<rbrakk> \<Longrightarrow> P n"  | 
| 47988 | 960  | 
by (induct n rule: less_induct) auto  | 
| 
26748
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
961  | 
|
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60427 
diff
changeset
 | 
962  | 
lemma infinite_descent0[case_names 0 smaller]:  | 
| 
26748
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
963  | 
"\<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: 
26335 
diff
changeset
 | 
964  | 
by (rule infinite_descent) (case_tac "n>0", auto)  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
965  | 
|
| 60758 | 966  | 
text \<open>  | 
| 
26748
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
967  | 
Infinite descent using a mapping to $\mathbb{N}$:
 | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
968  | 
$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: 
26335 
diff
changeset
 | 
969  | 
\begin{itemize}
 | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
970  | 
\item case ``0'': given $V(x)=0$ prove $P(x)$,  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
971  | 
\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: 
26335 
diff
changeset
 | 
972  | 
\end{itemize}
 | 
| 60758 | 973  | 
NB: the proof also shows how to use the previous lemma.\<close>  | 
| 
26748
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
974  | 
|
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
975  | 
corollary infinite_descent0_measure [case_names 0 smaller]:  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
976  | 
assumes A0: "!!x. V x = (0::nat) \<Longrightarrow> P x"  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
977  | 
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: 
26335 
diff
changeset
 | 
978  | 
shows "P x"  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
979  | 
proof -  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
980  | 
obtain n where "n = V x" by auto  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
981  | 
moreover have "\<And>x. V x = n \<Longrightarrow> P x"  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
982  | 
proof (induct n rule: infinite_descent0)  | 
| 61799 | 983  | 
case 0 \<comment> "i.e. $V(x) = 0$"  | 
| 
26748
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
984  | 
with A0 show "P x" by auto  | 
| 61799 | 985  | 
next \<comment> "now $n>0$ and $P(x)$ does not hold for some $x$ with $V(x)=n$"  | 
| 
26748
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
986  | 
case (smaller n)  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
987  | 
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: 
26335 
diff
changeset
 | 
988  | 
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: 
26335 
diff
changeset
 | 
989  | 
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: 
26335 
diff
changeset
 | 
990  | 
then show ?case by auto  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
991  | 
qed  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
992  | 
ultimately show "P x" by auto  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
993  | 
qed  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
994  | 
|
| 60758 | 995  | 
text\<open>Again, without explicit base case:\<close>  | 
| 
26748
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
996  | 
lemma infinite_descent_measure:  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
997  | 
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: 
26335 
diff
changeset
 | 
998  | 
proof -  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
999  | 
from assms obtain n where "n = V x" by auto  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
1000  | 
moreover have "!!x. V x = n \<Longrightarrow> P x"  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
1001  | 
proof (induct n rule: infinite_descent, auto)  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
1002  | 
fix x assume "\<not> P x"  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
1003  | 
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: 
26335 
diff
changeset
 | 
1004  | 
qed  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
1005  | 
ultimately show "P x" by auto  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
1006  | 
qed  | 
| 
 
4d51ddd6aa5c
Merged theories about wellfoundedness into one: Wellfounded.thy
 
krauss 
parents: 
26335 
diff
changeset
 | 
1007  | 
|
| 61799 | 1008  | 
text \<open>A [clumsy] way of lifting \<open><\<close>  | 
1009  | 
monotonicity to \<open>\<le>\<close> monotonicity\<close>  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
1010  | 
lemma less_mono_imp_le_mono:  | 
| 24438 | 1011  | 
"\<lbrakk> !!i j::nat. i < j \<Longrightarrow> f i < f j; i \<le> j \<rbrakk> \<Longrightarrow> f i \<le> ((f j)::nat)"  | 
1012  | 
by (simp add: order_le_less) (blast)  | 
|
1013  | 
||
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
1014  | 
|
| 60758 | 1015  | 
text \<open>non-strict, in 1st argument\<close>  | 
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
1016  | 
lemma add_le_mono1: "i \<le> j ==> i + k \<le> j + (k::nat)"  | 
| 24438 | 1017  | 
by (rule add_right_mono)  | 
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
1018  | 
|
| 60758 | 1019  | 
text \<open>non-strict, in both arguments\<close>  | 
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
1020  | 
lemma add_le_mono: "[| i \<le> j; k \<le> l |] ==> i + k \<le> j + (l::nat)"  | 
| 24438 | 1021  | 
by (rule add_mono)  | 
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
1022  | 
|
| 
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
1023  | 
lemma le_add2: "n \<le> ((m + n)::nat)"  | 
| 24438 | 1024  | 
by (insert add_right_mono [of 0 m n], simp)  | 
| 13449 | 1025  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
1026  | 
lemma le_add1: "n \<le> ((n + m)::nat)"  | 
| 
57512
 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 
haftmann 
parents: 
57492 
diff
changeset
 | 
1027  | 
by (simp add: add.commute, rule le_add2)  | 
| 13449 | 1028  | 
|
1029  | 
lemma less_add_Suc1: "i < Suc (i + m)"  | 
|
| 24438 | 1030  | 
by (rule le_less_trans, rule le_add1, rule lessI)  | 
| 13449 | 1031  | 
|
1032  | 
lemma less_add_Suc2: "i < Suc (m + i)"  | 
|
| 24438 | 1033  | 
by (rule le_less_trans, rule le_add2, rule lessI)  | 
| 13449 | 1034  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
1035  | 
lemma less_iff_Suc_add: "(m < n) = (\<exists>k. n = Suc (m + k))"  | 
| 24438 | 1036  | 
by (iprover intro!: less_add_Suc1 less_imp_Suc_add)  | 
| 13449 | 1037  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
1038  | 
lemma trans_le_add1: "(i::nat) \<le> j ==> i \<le> j + m"  | 
| 24438 | 1039  | 
by (rule le_trans, assumption, rule le_add1)  | 
| 13449 | 1040  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
1041  | 
lemma trans_le_add2: "(i::nat) \<le> j ==> i \<le> m + j"  | 
| 24438 | 1042  | 
by (rule le_trans, assumption, rule le_add2)  | 
| 13449 | 1043  | 
|
1044  | 
lemma trans_less_add1: "(i::nat) < j ==> i < j + m"  | 
|
| 24438 | 1045  | 
by (rule less_le_trans, assumption, rule le_add1)  | 
| 13449 | 1046  | 
|
1047  | 
lemma trans_less_add2: "(i::nat) < j ==> i < m + j"  | 
|
| 24438 | 1048  | 
by (rule less_le_trans, assumption, rule le_add2)  | 
| 13449 | 1049  | 
|
1050  | 
lemma add_lessD1: "i + j < (k::nat) ==> i < k"  | 
|
| 24438 | 1051  | 
apply (rule le_less_trans [of _ "i+j"])  | 
1052  | 
apply (simp_all add: le_add1)  | 
|
1053  | 
done  | 
|
| 13449 | 1054  | 
|
1055  | 
lemma not_add_less1 [iff]: "~ (i + j < (i::nat))"  | 
|
| 24438 | 1056  | 
apply (rule notI)  | 
| 
26335
 
961bbcc9d85b
removed redundant Nat.less_not_sym, Nat.less_asym;
 
wenzelm 
parents: 
26315 
diff
changeset
 | 
1057  | 
apply (drule add_lessD1)  | 
| 
 
961bbcc9d85b
removed redundant Nat.less_not_sym, Nat.less_asym;
 
wenzelm 
parents: 
26315 
diff
changeset
 | 
1058  | 
apply (erule less_irrefl [THEN notE])  | 
| 24438 | 1059  | 
done  | 
| 13449 | 1060  | 
|
1061  | 
lemma not_add_less2 [iff]: "~ (j + i < (i::nat))"  | 
|
| 
57512
 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 
haftmann 
parents: 
57492 
diff
changeset
 | 
1062  | 
by (simp add: add.commute)  | 
| 13449 | 1063  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
1064  | 
lemma add_leD1: "m + k \<le> n ==> m \<le> (n::nat)"  | 
| 24438 | 1065  | 
apply (rule order_trans [of _ "m+k"])  | 
1066  | 
apply (simp_all add: le_add1)  | 
|
1067  | 
done  | 
|
| 13449 | 1068  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
1069  | 
lemma add_leD2: "m + k \<le> n ==> k \<le> (n::nat)"  | 
| 
57512
 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 
haftmann 
parents: 
57492 
diff
changeset
 | 
1070  | 
apply (simp add: add.commute)  | 
| 24438 | 1071  | 
apply (erule add_leD1)  | 
1072  | 
done  | 
|
| 13449 | 1073  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
1074  | 
lemma add_leE: "(m::nat) + k \<le> n ==> (m \<le> n ==> k \<le> n ==> R) ==> R"  | 
| 24438 | 1075  | 
by (blast dest: add_leD1 add_leD2)  | 
| 13449 | 1076  | 
|
| 61799 | 1077  | 
text \<open>needs \<open>!!k\<close> for \<open>ac_simps\<close> to work\<close>  | 
| 13449 | 1078  | 
lemma less_add_eq_less: "!!k::nat. k < l ==> m + l = k + n ==> m < n"  | 
| 24438 | 1079  | 
by (force simp del: add_Suc_right  | 
| 
57514
 
bdc2c6b40bf2
prefer ac_simps collections over separate name bindings for add and mult
 
haftmann 
parents: 
57512 
diff
changeset
 | 
1080  | 
simp add: less_iff_Suc_add add_Suc_right [symmetric] ac_simps)  | 
| 13449 | 1081  | 
|
1082  | 
||
| 60758 | 1083  | 
subsubsection \<open>More results about difference\<close>  | 
| 13449 | 1084  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
1085  | 
lemma Suc_diff_le: "n \<le> m ==> Suc m - n = Suc (m - n)"  | 
| 24438 | 1086  | 
by (induct m n rule: diff_induct) simp_all  | 
| 13449 | 1087  | 
|
1088  | 
lemma diff_less_Suc: "m - n < Suc m"  | 
|
| 24438 | 1089  | 
apply (induct m n rule: diff_induct)  | 
1090  | 
apply (erule_tac [3] less_SucE)  | 
|
1091  | 
apply (simp_all add: less_Suc_eq)  | 
|
1092  | 
done  | 
|
| 13449 | 1093  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
1094  | 
lemma diff_le_self [simp]: "m - n \<le> (m::nat)"  | 
| 24438 | 1095  | 
by (induct m n rule: diff_induct) (simp_all add: le_SucI)  | 
| 13449 | 1096  | 
|
1097  | 
lemma less_imp_diff_less: "(j::nat) < k ==> j - n < k"  | 
|
| 24438 | 1098  | 
by (rule le_less_trans, rule diff_le_self)  | 
| 13449 | 1099  | 
|
1100  | 
lemma diff_Suc_less [simp]: "0<n ==> n - Suc i < n"  | 
|
| 24438 | 1101  | 
by (cases n) (auto simp add: le_simps)  | 
| 13449 | 1102  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
1103  | 
lemma diff_add_assoc: "k \<le> (j::nat) ==> (i + j) - k = i + (j - k)"  | 
| 24438 | 1104  | 
by (induct j k rule: diff_induct) simp_all  | 
| 13449 | 1105  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
1106  | 
lemma diff_add_assoc2: "k \<le> (j::nat) ==> (j + i) - k = (j - k) + i"  | 
| 
57512
 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 
haftmann 
parents: 
57492 
diff
changeset
 | 
1107  | 
by (simp add: add.commute diff_add_assoc)  | 
| 13449 | 1108  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
1109  | 
lemma le_imp_diff_is_add: "i \<le> (j::nat) ==> (j - i = k) = (j = k + i)"  | 
| 62365 | 1110  | 
by auto  | 
| 13449 | 1111  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
1112  | 
lemma diff_is_0_eq [simp]: "((m::nat) - n = 0) = (m \<le> n)"  | 
| 24438 | 1113  | 
by (induct m n rule: diff_induct) simp_all  | 
| 13449 | 1114  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
1115  | 
lemma diff_is_0_eq' [simp]: "m \<le> n ==> (m::nat) - n = 0"  | 
| 24438 | 1116  | 
by (rule iffD2, rule diff_is_0_eq)  | 
| 13449 | 1117  | 
|
1118  | 
lemma zero_less_diff [simp]: "(0 < n - (m::nat)) = (m < n)"  | 
|
| 24438 | 1119  | 
by (induct m n rule: diff_induct) simp_all  | 
| 13449 | 1120  | 
|
| 22718 | 1121  | 
lemma less_imp_add_positive:  | 
1122  | 
assumes "i < j"  | 
|
1123  | 
shows "\<exists>k::nat. 0 < k & i + k = j"  | 
|
1124  | 
proof  | 
|
1125  | 
from assms show "0 < j - i & i + (j - i) = j"  | 
|
| 23476 | 1126  | 
by (simp add: order_less_imp_le)  | 
| 22718 | 1127  | 
qed  | 
| 
9436
 
62bb04ab4b01
rearranged setup of arithmetic procedures, avoiding global reference values;
 
wenzelm 
parents: 
7702 
diff
changeset
 | 
1128  | 
|
| 60758 | 1129  | 
text \<open>a nice rewrite for bounded subtraction\<close>  | 
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1130  | 
lemma nat_minus_add_max:  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1131  | 
fixes n m :: nat  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1132  | 
shows "n - m + m = max n m"  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1133  | 
by (simp add: max_def not_le order_less_imp_le)  | 
| 13449 | 1134  | 
|
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1135  | 
lemma nat_diff_split:  | 
| 62365 | 1136  | 
fixes a b :: nat  | 
1137  | 
shows "P (a - b) \<longleftrightarrow> (a < b \<longrightarrow> P 0) \<and> (\<forall>d. a = b + d \<longrightarrow> P d)"  | 
|
| 61799 | 1138  | 
\<comment> \<open>elimination of \<open>-\<close> on \<open>nat\<close>\<close>  | 
| 62365 | 1139  | 
by (cases "a < b")  | 
1140  | 
(auto simp add: not_less le_less dest!: add_eq_self_zero [OF sym])  | 
|
| 13449 | 1141  | 
|
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1142  | 
lemma nat_diff_split_asm:  | 
| 62365 | 1143  | 
fixes a b :: nat  | 
1144  | 
shows "P (a - b) \<longleftrightarrow> \<not> (a < b \<and> \<not> P 0 \<or> (\<exists>d. a = b + d \<and> \<not> P d))"  | 
|
| 61799 | 1145  | 
\<comment> \<open>elimination of \<open>-\<close> on \<open>nat\<close> in assumptions\<close>  | 
| 62365 | 1146  | 
by (auto split: nat_diff_split)  | 
| 13449 | 1147  | 
|
| 
47255
 
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
 
huffman 
parents: 
47208 
diff
changeset
 | 
1148  | 
lemma Suc_pred': "0 < n ==> n = Suc(n - 1)"  | 
| 
 
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
 
huffman 
parents: 
47208 
diff
changeset
 | 
1149  | 
by simp  | 
| 
 
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
 
huffman 
parents: 
47208 
diff
changeset
 | 
1150  | 
|
| 
 
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
 
huffman 
parents: 
47208 
diff
changeset
 | 
1151  | 
lemma add_eq_if: "(m::nat) + n = (if m=0 then n else Suc ((m - 1) + n))"  | 
| 
 
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
 
huffman 
parents: 
47208 
diff
changeset
 | 
1152  | 
unfolding One_nat_def by (cases m) simp_all  | 
| 
 
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
 
huffman 
parents: 
47208 
diff
changeset
 | 
1153  | 
|
| 
 
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
 
huffman 
parents: 
47208 
diff
changeset
 | 
1154  | 
lemma mult_eq_if: "(m::nat) * n = (if m=0 then 0 else n + ((m - 1) * n))"  | 
| 
 
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
 
huffman 
parents: 
47208 
diff
changeset
 | 
1155  | 
unfolding One_nat_def by (cases m) simp_all  | 
| 
 
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
 
huffman 
parents: 
47208 
diff
changeset
 | 
1156  | 
|
| 
 
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
 
huffman 
parents: 
47208 
diff
changeset
 | 
1157  | 
lemma Suc_diff_eq_diff_pred: "0 < n ==> Suc m - n = m - (n - 1)"  | 
| 
 
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
 
huffman 
parents: 
47208 
diff
changeset
 | 
1158  | 
unfolding One_nat_def by (cases n) simp_all  | 
| 
 
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
 
huffman 
parents: 
47208 
diff
changeset
 | 
1159  | 
|
| 
 
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
 
huffman 
parents: 
47208 
diff
changeset
 | 
1160  | 
lemma diff_Suc_eq_diff_pred: "m - Suc n = (m - 1) - n"  | 
| 
 
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
 
huffman 
parents: 
47208 
diff
changeset
 | 
1161  | 
unfolding One_nat_def by (cases m) simp_all  | 
| 
 
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
 
huffman 
parents: 
47208 
diff
changeset
 | 
1162  | 
|
| 
 
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
 
huffman 
parents: 
47208 
diff
changeset
 | 
1163  | 
lemma Let_Suc [simp]: "Let (Suc n) f == f (Suc n)"  | 
| 
 
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
 
huffman 
parents: 
47208 
diff
changeset
 | 
1164  | 
by (fact Let_def)  | 
| 
 
30a1692557b0
removed Nat_Numeral.thy, moving all theorems elsewhere
 
huffman 
parents: 
47208 
diff
changeset
 | 
1165  | 
|
| 13449 | 1166  | 
|
| 60758 | 1167  | 
subsubsection \<open>Monotonicity of multiplication\<close>  | 
| 13449 | 1168  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
1169  | 
lemma mult_le_mono1: "i \<le> (j::nat) ==> i * k \<le> j * k"  | 
| 24438 | 1170  | 
by (simp add: mult_right_mono)  | 
| 13449 | 1171  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
1172  | 
lemma mult_le_mono2: "i \<le> (j::nat) ==> k * i \<le> k * j"  | 
| 24438 | 1173  | 
by (simp add: mult_left_mono)  | 
| 13449 | 1174  | 
|
| 61799 | 1175  | 
text \<open>\<open>\<le>\<close> monotonicity, BOTH arguments\<close>  | 
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
1176  | 
lemma mult_le_mono: "i \<le> (j::nat) ==> k \<le> l ==> i * k \<le> j * l"  | 
| 24438 | 1177  | 
by (simp add: mult_mono)  | 
| 13449 | 1178  | 
|
1179  | 
lemma mult_less_mono1: "(i::nat) < j ==> 0 < k ==> i * k < j * k"  | 
|
| 24438 | 1180  | 
by (simp add: mult_strict_right_mono)  | 
| 13449 | 1181  | 
|
| 61799 | 1182  | 
text\<open>Differs from the standard \<open>zero_less_mult_iff\<close> in that  | 
| 60758 | 1183  | 
there are no negative numbers.\<close>  | 
| 14266 | 1184  | 
lemma nat_0_less_mult_iff [simp]: "(0 < (m::nat) * n) = (0 < m & 0 < n)"  | 
| 13449 | 1185  | 
apply (induct m)  | 
| 22718 | 1186  | 
apply simp  | 
1187  | 
apply (case_tac n)  | 
|
1188  | 
apply simp_all  | 
|
| 13449 | 1189  | 
done  | 
1190  | 
||
| 
30079
 
293b896b9c25
make proofs work whether or not One_nat_def is a simp rule; replace 1 with Suc 0 in the rhs of some simp rules
 
huffman 
parents: 
30056 
diff
changeset
 | 
1191  | 
lemma one_le_mult_iff [simp]: "(Suc 0 \<le> m * n) = (Suc 0 \<le> m & Suc 0 \<le> n)"  | 
| 13449 | 1192  | 
apply (induct m)  | 
| 22718 | 1193  | 
apply simp  | 
1194  | 
apply (case_tac n)  | 
|
1195  | 
apply simp_all  | 
|
| 13449 | 1196  | 
done  | 
1197  | 
||
| 
14341
 
a09441bd4f1e
Ring_and_Field now requires axiom add_left_imp_eq for semirings.
 
paulson 
parents: 
14331 
diff
changeset
 | 
1198  | 
lemma mult_less_cancel2 [simp]: "((m::nat) * k < n * k) = (0 < k & m < n)"  | 
| 13449 | 1199  | 
apply (safe intro!: mult_less_mono1)  | 
| 47988 | 1200  | 
apply (cases k, auto)  | 
| 13449 | 1201  | 
apply (simp del: le_0_eq add: linorder_not_le [symmetric])  | 
1202  | 
apply (blast intro: mult_le_mono1)  | 
|
1203  | 
done  | 
|
1204  | 
||
1205  | 
lemma mult_less_cancel1 [simp]: "(k * (m::nat) < k * n) = (0 < k & m < n)"  | 
|
| 
57512
 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 
haftmann 
parents: 
57492 
diff
changeset
 | 
1206  | 
by (simp add: mult.commute [of k])  | 
| 13449 | 1207  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
1208  | 
lemma mult_le_cancel1 [simp]: "(k * (m::nat) \<le> k * n) = (0 < k --> m \<le> n)"  | 
| 24438 | 1209  | 
by (simp add: linorder_not_less [symmetric], auto)  | 
| 13449 | 1210  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
1211  | 
lemma mult_le_cancel2 [simp]: "((m::nat) * k \<le> n * k) = (0 < k --> m \<le> n)"  | 
| 24438 | 1212  | 
by (simp add: linorder_not_less [symmetric], auto)  | 
| 13449 | 1213  | 
|
1214  | 
lemma Suc_mult_less_cancel1: "(Suc k * m < Suc k * n) = (m < n)"  | 
|
| 24438 | 1215  | 
by (subst mult_less_cancel1) simp  | 
| 13449 | 1216  | 
|
| 
14267
 
b963e9cee2a0
More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
 
paulson 
parents: 
14266 
diff
changeset
 | 
1217  | 
lemma Suc_mult_le_cancel1: "(Suc k * m \<le> Suc k * n) = (m \<le> n)"  | 
| 24438 | 1218  | 
by (subst mult_le_cancel1) simp  | 
| 13449 | 1219  | 
|
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1220  | 
lemma le_square: "m \<le> m * (m::nat)"  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1221  | 
by (cases m) (auto intro: le_add1)  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1222  | 
|
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1223  | 
lemma le_cube: "(m::nat) \<le> m * (m * m)"  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1224  | 
by (cases m) (auto intro: le_add1)  | 
| 13449 | 1225  | 
|
| 61799 | 1226  | 
text \<open>Lemma for \<open>gcd\<close>\<close>  | 
| 
30128
 
365ee7319b86
revert some Suc 0 lemmas back to their original forms; added some simp rules for (1::nat)
 
huffman 
parents: 
30093 
diff
changeset
 | 
1227  | 
lemma mult_eq_self_implies_10: "(m::nat) = m * n ==> n = 1 | m = 0"  | 
| 13449 | 1228  | 
apply (drule sym)  | 
1229  | 
apply (rule disjCI)  | 
|
1230  | 
apply (rule nat_less_cases, erule_tac [2] _)  | 
|
| 25157 | 1231  | 
apply (drule_tac [2] mult_less_mono2)  | 
| 25162 | 1232  | 
apply (auto)  | 
| 13449 | 1233  | 
done  | 
| 
9436
 
62bb04ab4b01
rearranged setup of arithmetic procedures, avoiding global reference values;
 
wenzelm 
parents: 
7702 
diff
changeset
 | 
1234  | 
|
| 
51263
 
31e786e0e6a7
turned example into library for comparing growth of functions
 
haftmann 
parents: 
51173 
diff
changeset
 | 
1235  | 
lemma mono_times_nat:  | 
| 
 
31e786e0e6a7
turned example into library for comparing growth of functions
 
haftmann 
parents: 
51173 
diff
changeset
 | 
1236  | 
fixes n :: nat  | 
| 
 
31e786e0e6a7
turned example into library for comparing growth of functions
 
haftmann 
parents: 
51173 
diff
changeset
 | 
1237  | 
assumes "n > 0"  | 
| 
 
31e786e0e6a7
turned example into library for comparing growth of functions
 
haftmann 
parents: 
51173 
diff
changeset
 | 
1238  | 
shows "mono (times n)"  | 
| 
 
31e786e0e6a7
turned example into library for comparing growth of functions
 
haftmann 
parents: 
51173 
diff
changeset
 | 
1239  | 
proof  | 
| 
 
31e786e0e6a7
turned example into library for comparing growth of functions
 
haftmann 
parents: 
51173 
diff
changeset
 | 
1240  | 
fix m q :: nat  | 
| 
 
31e786e0e6a7
turned example into library for comparing growth of functions
 
haftmann 
parents: 
51173 
diff
changeset
 | 
1241  | 
assume "m \<le> q"  | 
| 
 
31e786e0e6a7
turned example into library for comparing growth of functions
 
haftmann 
parents: 
51173 
diff
changeset
 | 
1242  | 
with assms show "n * m \<le> n * q" by simp  | 
| 
 
31e786e0e6a7
turned example into library for comparing growth of functions
 
haftmann 
parents: 
51173 
diff
changeset
 | 
1243  | 
qed  | 
| 
 
31e786e0e6a7
turned example into library for comparing growth of functions
 
haftmann 
parents: 
51173 
diff
changeset
 | 
1244  | 
|
| 60758 | 1245  | 
text \<open>the lattice order on @{typ nat}\<close>
 | 
| 24995 | 1246  | 
|
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1247  | 
instantiation nat :: distrib_lattice  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1248  | 
begin  | 
| 24995 | 1249  | 
|
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1250  | 
definition  | 
| 61076 | 1251  | 
"(inf :: nat \<Rightarrow> nat \<Rightarrow> nat) = min"  | 
| 24995 | 1252  | 
|
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1253  | 
definition  | 
| 61076 | 1254  | 
"(sup :: nat \<Rightarrow> nat \<Rightarrow> nat) = max"  | 
| 24995 | 1255  | 
|
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1256  | 
instance by intro_classes  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1257  | 
(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: 
25928 
diff
changeset
 | 
1258  | 
intro: order_less_imp_le antisym elim!: order_trans order_less_trans)  | 
| 24995 | 1259  | 
|
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1260  | 
end  | 
| 24995 | 1261  | 
|
1262  | 
||
| 60758 | 1263  | 
subsection \<open>Natural operation of natural numbers on functions\<close>  | 
1264  | 
||
1265  | 
text \<open>  | 
|
| 30971 | 1266  | 
We use the same logical constant for the power operations on  | 
1267  | 
functions and relations, in order to share the same syntax.  | 
|
| 60758 | 1268  | 
\<close>  | 
| 30971 | 1269  | 
|
| 
45965
 
2af982715e5c
generalized type signature to permit overloading on `set`
 
haftmann 
parents: 
45933 
diff
changeset
 | 
1270  | 
consts compow :: "nat \<Rightarrow> 'a \<Rightarrow> 'a"  | 
| 30971 | 1271  | 
|
| 
45965
 
2af982715e5c
generalized type signature to permit overloading on `set`
 
haftmann 
parents: 
45933 
diff
changeset
 | 
1272  | 
abbreviation compower :: "'a \<Rightarrow> nat \<Rightarrow> 'a" (infixr "^^" 80) where  | 
| 30971 | 1273  | 
"f ^^ n \<equiv> compow n f"  | 
1274  | 
||
1275  | 
notation (latex output)  | 
|
1276  | 
  compower ("(_\<^bsup>_\<^esup>)" [1000] 1000)
 | 
|
1277  | 
||
| 61799 | 1278  | 
text \<open>\<open>f ^^ n = f o ... o f\<close>, the n-fold composition of \<open>f\<close>\<close>  | 
| 30971 | 1279  | 
|
1280  | 
overloading  | 
|
1281  | 
  funpow == "compow :: nat \<Rightarrow> ('a \<Rightarrow> 'a) \<Rightarrow> ('a \<Rightarrow> 'a)"
 | 
|
1282  | 
begin  | 
|
| 
30954
 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 
haftmann 
parents: 
30686 
diff
changeset
 | 
1283  | 
|
| 
55575
 
a5e33e18fb5c
moved 'primrec' up (for real this time) and removed temporary 'old_primrec'
 
blanchet 
parents: 
55534 
diff
changeset
 | 
1284  | 
primrec funpow :: "nat \<Rightarrow> ('a \<Rightarrow> 'a) \<Rightarrow> 'a \<Rightarrow> 'a" where
 | 
| 44325 | 1285  | 
"funpow 0 f = id"  | 
1286  | 
| "funpow (Suc n) f = f o funpow n f"  | 
|
| 
30954
 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 
haftmann 
parents: 
30686 
diff
changeset
 | 
1287  | 
|
| 30971 | 1288  | 
end  | 
1289  | 
||
| 62217 | 1290  | 
lemma funpow_0 [simp]: "(f ^^ 0) x = x"  | 
1291  | 
by simp  | 
|
1292  | 
||
| 
49723
 
bbc2942ba09f
alternative simplification of ^^ to the righthand side;
 
haftmann 
parents: 
49388 
diff
changeset
 | 
1293  | 
lemma funpow_Suc_right:  | 
| 
 
bbc2942ba09f
alternative simplification of ^^ to the righthand side;
 
haftmann 
parents: 
49388 
diff
changeset
 | 
1294  | 
"f ^^ Suc n = f ^^ n \<circ> f"  | 
| 
 
bbc2942ba09f
alternative simplification of ^^ to the righthand side;
 
haftmann 
parents: 
49388 
diff
changeset
 | 
1295  | 
proof (induct n)  | 
| 
 
bbc2942ba09f
alternative simplification of ^^ to the righthand side;
 
haftmann 
parents: 
49388 
diff
changeset
 | 
1296  | 
case 0 then show ?case by simp  | 
| 
 
bbc2942ba09f
alternative simplification of ^^ to the righthand side;
 
haftmann 
parents: 
49388 
diff
changeset
 | 
1297  | 
next  | 
| 
 
bbc2942ba09f
alternative simplification of ^^ to the righthand side;
 
haftmann 
parents: 
49388 
diff
changeset
 | 
1298  | 
fix n  | 
| 
 
bbc2942ba09f
alternative simplification of ^^ to the righthand side;
 
haftmann 
parents: 
49388 
diff
changeset
 | 
1299  | 
assume "f ^^ Suc n = f ^^ n \<circ> f"  | 
| 
 
bbc2942ba09f
alternative simplification of ^^ to the righthand side;
 
haftmann 
parents: 
49388 
diff
changeset
 | 
1300  | 
then show "f ^^ Suc (Suc n) = f ^^ Suc n \<circ> f"  | 
| 
 
bbc2942ba09f
alternative simplification of ^^ to the righthand side;
 
haftmann 
parents: 
49388 
diff
changeset
 | 
1301  | 
by (simp add: o_assoc)  | 
| 
 
bbc2942ba09f
alternative simplification of ^^ to the righthand side;
 
haftmann 
parents: 
49388 
diff
changeset
 | 
1302  | 
qed  | 
| 
 
bbc2942ba09f
alternative simplification of ^^ to the righthand side;
 
haftmann 
parents: 
49388 
diff
changeset
 | 
1303  | 
|
| 
 
bbc2942ba09f
alternative simplification of ^^ to the righthand side;
 
haftmann 
parents: 
49388 
diff
changeset
 | 
1304  | 
lemmas funpow_simps_right = funpow.simps(1) funpow_Suc_right  | 
| 
 
bbc2942ba09f
alternative simplification of ^^ to the righthand side;
 
haftmann 
parents: 
49388 
diff
changeset
 | 
1305  | 
|
| 60758 | 1306  | 
text \<open>for code generation\<close>  | 
| 30971 | 1307  | 
|
1308  | 
definition funpow :: "nat \<Rightarrow> ('a \<Rightarrow> 'a) \<Rightarrow> 'a \<Rightarrow> 'a" where
 | 
|
| 
46028
 
9f113cdf3d66
attribute code_abbrev superseedes code_unfold_post
 
haftmann 
parents: 
45965 
diff
changeset
 | 
1309  | 
funpow_code_def [code_abbrev]: "funpow = compow"  | 
| 
30954
 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 
haftmann 
parents: 
30686 
diff
changeset
 | 
1310  | 
|
| 30971 | 1311  | 
lemma [code]:  | 
| 37430 | 1312  | 
"funpow (Suc n) f = f o funpow n f"  | 
| 30971 | 1313  | 
"funpow 0 f = id"  | 
| 37430 | 1314  | 
by (simp_all add: funpow_code_def)  | 
| 30971 | 1315  | 
|
| 
36176
 
3fe7e97ccca8
replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
 
wenzelm 
parents: 
35828 
diff
changeset
 | 
1316  | 
hide_const (open) funpow  | 
| 
30954
 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 
haftmann 
parents: 
30686 
diff
changeset
 | 
1317  | 
|
| 
 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 
haftmann 
parents: 
30686 
diff
changeset
 | 
1318  | 
lemma funpow_add:  | 
| 30971 | 1319  | 
"f ^^ (m + n) = f ^^ m \<circ> f ^^ n"  | 
| 
30954
 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 
haftmann 
parents: 
30686 
diff
changeset
 | 
1320  | 
by (induct m) simp_all  | 
| 
 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 
haftmann 
parents: 
30686 
diff
changeset
 | 
1321  | 
|
| 37430 | 1322  | 
lemma funpow_mult:  | 
1323  | 
fixes f :: "'a \<Rightarrow> 'a"  | 
|
1324  | 
shows "(f ^^ m) ^^ n = f ^^ (m * n)"  | 
|
1325  | 
by (induct n) (simp_all add: funpow_add)  | 
|
1326  | 
||
| 
30954
 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 
haftmann 
parents: 
30686 
diff
changeset
 | 
1327  | 
lemma funpow_swap1:  | 
| 30971 | 1328  | 
"f ((f ^^ n) x) = (f ^^ n) (f x)"  | 
| 
30954
 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 
haftmann 
parents: 
30686 
diff
changeset
 | 
1329  | 
proof -  | 
| 30971 | 1330  | 
have "f ((f ^^ n) x) = (f ^^ (n + 1)) x" by simp  | 
1331  | 
also have "\<dots> = (f ^^ n o f ^^ 1) x" by (simp only: funpow_add)  | 
|
1332  | 
also have "\<dots> = (f ^^ n) (f x)" by simp  | 
|
| 
30954
 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 
haftmann 
parents: 
30686 
diff
changeset
 | 
1333  | 
finally show ?thesis .  | 
| 
 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 
haftmann 
parents: 
30686 
diff
changeset
 | 
1334  | 
qed  | 
| 
 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 
haftmann 
parents: 
30686 
diff
changeset
 | 
1335  | 
|
| 
38621
 
d6cb7e625d75
more concise characterization of of_nat operation and class semiring_char_0
 
haftmann 
parents: 
37767 
diff
changeset
 | 
1336  | 
lemma comp_funpow:  | 
| 
 
d6cb7e625d75
more concise characterization of of_nat operation and class semiring_char_0
 
haftmann 
parents: 
37767 
diff
changeset
 | 
1337  | 
fixes f :: "'a \<Rightarrow> 'a"  | 
| 
 
d6cb7e625d75
more concise characterization of of_nat operation and class semiring_char_0
 
haftmann 
parents: 
37767 
diff
changeset
 | 
1338  | 
shows "comp f ^^ n = comp (f ^^ n)"  | 
| 
 
d6cb7e625d75
more concise characterization of of_nat operation and class semiring_char_0
 
haftmann 
parents: 
37767 
diff
changeset
 | 
1339  | 
by (induct n) simp_all  | 
| 
30954
 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 
haftmann 
parents: 
30686 
diff
changeset
 | 
1340  | 
|
| 
54496
 
178922b63b58
add lemmas Suc_funpow and id_funpow to simpset; add lemma map_add_upt
 
hoelzl 
parents: 
54411 
diff
changeset
 | 
1341  | 
lemma Suc_funpow[simp]: "Suc ^^ n = (op + n)"  | 
| 
 
178922b63b58
add lemmas Suc_funpow and id_funpow to simpset; add lemma map_add_upt
 
hoelzl 
parents: 
54411 
diff
changeset
 | 
1342  | 
by (induct n) simp_all  | 
| 
 
178922b63b58
add lemmas Suc_funpow and id_funpow to simpset; add lemma map_add_upt
 
hoelzl 
parents: 
54411 
diff
changeset
 | 
1343  | 
|
| 
 
178922b63b58
add lemmas Suc_funpow and id_funpow to simpset; add lemma map_add_upt
 
hoelzl 
parents: 
54411 
diff
changeset
 | 
1344  | 
lemma id_funpow[simp]: "id ^^ n = id"  | 
| 
 
178922b63b58
add lemmas Suc_funpow and id_funpow to simpset; add lemma map_add_upt
 
hoelzl 
parents: 
54411 
diff
changeset
 | 
1345  | 
by (induct n) simp_all  | 
| 
38621
 
d6cb7e625d75
more concise characterization of of_nat operation and class semiring_char_0
 
haftmann 
parents: 
37767 
diff
changeset
 | 
1346  | 
|
| 59000 | 1347  | 
lemma funpow_mono:  | 
1348  | 
  fixes f :: "'a \<Rightarrow> ('a::lattice)"
 | 
|
1349  | 
shows "mono f \<Longrightarrow> A \<le> B \<Longrightarrow> (f ^^ n) A \<le> (f ^^ n) B"  | 
|
1350  | 
by (induct n arbitrary: A B)  | 
|
1351  | 
(auto simp del: funpow.simps(2) simp add: funpow_Suc_right mono_def)  | 
|
1352  | 
||
| 60758 | 1353  | 
subsection \<open>Kleene iteration\<close>  | 
| 45833 | 1354  | 
|
| 
52729
 
412c9e0381a1
factored syntactic type classes for bot and top (by Alessandro Coglio)
 
haftmann 
parents: 
52435 
diff
changeset
 | 
1355  | 
lemma Kleene_iter_lpfp:  | 
| 
 
412c9e0381a1
factored syntactic type classes for bot and top (by Alessandro Coglio)
 
haftmann 
parents: 
52435 
diff
changeset
 | 
1356  | 
assumes "mono f" and "f p \<le> p" shows "(f^^k) (bot::'a::order_bot) \<le> p"  | 
| 45833 | 1357  | 
proof(induction k)  | 
1358  | 
case 0 show ?case by simp  | 
|
1359  | 
next  | 
|
1360  | 
case Suc  | 
|
1361  | 
from monoD[OF assms(1) Suc] assms(2)  | 
|
1362  | 
show ?case by simp  | 
|
1363  | 
qed  | 
|
1364  | 
||
1365  | 
lemma lfp_Kleene_iter: assumes "mono f" and "(f^^Suc k) bot = (f^^k) bot"  | 
|
1366  | 
shows "lfp f = (f^^k) bot"  | 
|
1367  | 
proof(rule antisym)  | 
|
1368  | 
show "lfp f \<le> (f^^k) bot"  | 
|
1369  | 
proof(rule lfp_lowerbound)  | 
|
1370  | 
show "f ((f^^k) bot) \<le> (f^^k) bot" using assms(2) by simp  | 
|
1371  | 
qed  | 
|
1372  | 
next  | 
|
1373  | 
show "(f^^k) bot \<le> lfp f"  | 
|
1374  | 
using Kleene_iter_lpfp[OF assms(1)] lfp_unfold[OF assms(1)] by simp  | 
|
1375  | 
qed  | 
|
1376  | 
||
| 
60636
 
ee18efe9b246
add named theorems order_continuous_intros; lfp/gfp_funpow; bounded variant for lfp/gfp transfer
 
hoelzl 
parents: 
60562 
diff
changeset
 | 
1377  | 
lemma mono_pow:  | 
| 
 
ee18efe9b246
add named theorems order_continuous_intros; lfp/gfp_funpow; bounded variant for lfp/gfp transfer
 
hoelzl 
parents: 
60562 
diff
changeset
 | 
1378  | 
fixes f :: "'a \<Rightarrow> 'a::complete_lattice"  | 
| 
 
ee18efe9b246
add named theorems order_continuous_intros; lfp/gfp_funpow; bounded variant for lfp/gfp transfer
 
hoelzl 
parents: 
60562 
diff
changeset
 | 
1379  | 
shows "mono f \<Longrightarrow> mono (f ^^ n)"  | 
| 
 
ee18efe9b246
add named theorems order_continuous_intros; lfp/gfp_funpow; bounded variant for lfp/gfp transfer
 
hoelzl 
parents: 
60562 
diff
changeset
 | 
1380  | 
by (induction n) (auto simp: mono_def)  | 
| 
 
ee18efe9b246
add named theorems order_continuous_intros; lfp/gfp_funpow; bounded variant for lfp/gfp transfer
 
hoelzl 
parents: 
60562 
diff
changeset
 | 
1381  | 
|
| 
 
ee18efe9b246
add named theorems order_continuous_intros; lfp/gfp_funpow; bounded variant for lfp/gfp transfer
 
hoelzl 
parents: 
60562 
diff
changeset
 | 
1382  | 
lemma lfp_funpow:  | 
| 
 
ee18efe9b246
add named theorems order_continuous_intros; lfp/gfp_funpow; bounded variant for lfp/gfp transfer
 
hoelzl 
parents: 
60562 
diff
changeset
 | 
1383  | 
assumes f: "mono f" shows "lfp (f ^^ Suc n) = lfp f"  | 
| 
 
ee18efe9b246
add named theorems order_continuous_intros; lfp/gfp_funpow; bounded variant for lfp/gfp transfer
 
hoelzl 
parents: 
60562 
diff
changeset
 | 
1384  | 
proof (rule antisym)  | 
| 
 
ee18efe9b246
add named theorems order_continuous_intros; lfp/gfp_funpow; bounded variant for lfp/gfp transfer
 
hoelzl 
parents: 
60562 
diff
changeset
 | 
1385  | 
show "lfp f \<le> lfp (f ^^ Suc n)"  | 
| 
 
ee18efe9b246
add named theorems order_continuous_intros; lfp/gfp_funpow; bounded variant for lfp/gfp transfer
 
hoelzl 
parents: 
60562 
diff
changeset
 | 
1386  | 
proof (rule lfp_lowerbound)  | 
| 
 
ee18efe9b246
add named theorems order_continuous_intros; lfp/gfp_funpow; bounded variant for lfp/gfp transfer
 
hoelzl 
parents: 
60562 
diff
changeset
 | 
1387  | 
have "f (lfp (f ^^ Suc n)) = lfp (\<lambda>x. f ((f ^^ n) x))"  | 
| 
 
ee18efe9b246
add named theorems order_continuous_intros; lfp/gfp_funpow; bounded variant for lfp/gfp transfer
 
hoelzl 
parents: 
60562 
diff
changeset
 | 
1388  | 
unfolding funpow_Suc_right by (simp add: lfp_rolling f mono_pow comp_def)  | 
| 
 
ee18efe9b246
add named theorems order_continuous_intros; lfp/gfp_funpow; bounded variant for lfp/gfp transfer
 
hoelzl 
parents: 
60562 
diff
changeset
 | 
1389  | 
then show "f (lfp (f ^^ Suc n)) \<le> lfp (f ^^ Suc n)"  | 
| 
 
ee18efe9b246
add named theorems order_continuous_intros; lfp/gfp_funpow; bounded variant for lfp/gfp transfer
 
hoelzl 
parents: 
60562 
diff
changeset
 | 
1390  | 
by (simp add: comp_def)  | 
| 
 
ee18efe9b246
add named theorems order_continuous_intros; lfp/gfp_funpow; bounded variant for lfp/gfp transfer
 
hoelzl 
parents: 
60562 
diff
changeset
 | 
1391  | 
qed  | 
| 
 
ee18efe9b246
add named theorems order_continuous_intros; lfp/gfp_funpow; bounded variant for lfp/gfp transfer
 
hoelzl 
parents: 
60562 
diff
changeset
 | 
1392  | 
have "(f^^n) (lfp f) = lfp f" for n  | 
| 
 
ee18efe9b246
add named theorems order_continuous_intros; lfp/gfp_funpow; bounded variant for lfp/gfp transfer
 
hoelzl 
parents: 
60562 
diff
changeset
 | 
1393  | 
by (induction n) (auto intro: f lfp_unfold[symmetric])  | 
| 
 
ee18efe9b246
add named theorems order_continuous_intros; lfp/gfp_funpow; bounded variant for lfp/gfp transfer
 
hoelzl 
parents: 
60562 
diff
changeset
 | 
1394  | 
then show "lfp (f^^Suc n) \<le> lfp f"  | 
| 
 
ee18efe9b246
add named theorems order_continuous_intros; lfp/gfp_funpow; bounded variant for lfp/gfp transfer
 
hoelzl 
parents: 
60562 
diff
changeset
 | 
1395  | 
by (intro lfp_lowerbound) (simp del: funpow.simps)  | 
| 
 
ee18efe9b246
add named theorems order_continuous_intros; lfp/gfp_funpow; bounded variant for lfp/gfp transfer
 
hoelzl 
parents: 
60562 
diff
changeset
 | 
1396  | 
qed  | 
| 
 
ee18efe9b246
add named theorems order_continuous_intros; lfp/gfp_funpow; bounded variant for lfp/gfp transfer
 
hoelzl 
parents: 
60562 
diff
changeset
 | 
1397  | 
|
| 
 
ee18efe9b246
add named theorems order_continuous_intros; lfp/gfp_funpow; bounded variant for lfp/gfp transfer
 
hoelzl 
parents: 
60562 
diff
changeset
 | 
1398  | 
lemma gfp_funpow:  | 
| 
 
ee18efe9b246
add named theorems order_continuous_intros; lfp/gfp_funpow; bounded variant for lfp/gfp transfer
 
hoelzl 
parents: 
60562 
diff
changeset
 | 
1399  | 
assumes f: "mono f" shows "gfp (f ^^ Suc n) = gfp f"  | 
| 
 
ee18efe9b246
add named theorems order_continuous_intros; lfp/gfp_funpow; bounded variant for lfp/gfp transfer
 
hoelzl 
parents: 
60562 
diff
changeset
 | 
1400  | 
proof (rule antisym)  | 
| 
 
ee18efe9b246
add named theorems order_continuous_intros; lfp/gfp_funpow; bounded variant for lfp/gfp transfer
 
hoelzl 
parents: 
60562 
diff
changeset
 | 
1401  | 
show "gfp f \<ge> gfp (f ^^ Suc n)"  | 
| 
 
ee18efe9b246
add named theorems order_continuous_intros; lfp/gfp_funpow; bounded variant for lfp/gfp transfer
 
hoelzl 
parents: 
60562 
diff
changeset
 | 
1402  | 
proof (rule gfp_upperbound)  | 
| 
 
ee18efe9b246
add named theorems order_continuous_intros; lfp/gfp_funpow; bounded variant for lfp/gfp transfer
 
hoelzl 
parents: 
60562 
diff
changeset
 | 
1403  | 
have "f (gfp (f ^^ Suc n)) = gfp (\<lambda>x. f ((f ^^ n) x))"  | 
| 
 
ee18efe9b246
add named theorems order_continuous_intros; lfp/gfp_funpow; bounded variant for lfp/gfp transfer
 
hoelzl 
parents: 
60562 
diff
changeset
 | 
1404  | 
unfolding funpow_Suc_right by (simp add: gfp_rolling f mono_pow comp_def)  | 
| 
 
ee18efe9b246
add named theorems order_continuous_intros; lfp/gfp_funpow; bounded variant for lfp/gfp transfer
 
hoelzl 
parents: 
60562 
diff
changeset
 | 
1405  | 
then show "f (gfp (f ^^ Suc n)) \<ge> gfp (f ^^ Suc n)"  | 
| 
 
ee18efe9b246
add named theorems order_continuous_intros; lfp/gfp_funpow; bounded variant for lfp/gfp transfer
 
hoelzl 
parents: 
60562 
diff
changeset
 | 
1406  | 
by (simp add: comp_def)  | 
| 
 
ee18efe9b246
add named theorems order_continuous_intros; lfp/gfp_funpow; bounded variant for lfp/gfp transfer
 
hoelzl 
parents: 
60562 
diff
changeset
 | 
1407  | 
qed  | 
| 
 
ee18efe9b246
add named theorems order_continuous_intros; lfp/gfp_funpow; bounded variant for lfp/gfp transfer
 
hoelzl 
parents: 
60562 
diff
changeset
 | 
1408  | 
have "(f^^n) (gfp f) = gfp f" for n  | 
| 
 
ee18efe9b246
add named theorems order_continuous_intros; lfp/gfp_funpow; bounded variant for lfp/gfp transfer
 
hoelzl 
parents: 
60562 
diff
changeset
 | 
1409  | 
by (induction n) (auto intro: f gfp_unfold[symmetric])  | 
| 
 
ee18efe9b246
add named theorems order_continuous_intros; lfp/gfp_funpow; bounded variant for lfp/gfp transfer
 
hoelzl 
parents: 
60562 
diff
changeset
 | 
1410  | 
then show "gfp (f^^Suc n) \<ge> gfp f"  | 
| 
 
ee18efe9b246
add named theorems order_continuous_intros; lfp/gfp_funpow; bounded variant for lfp/gfp transfer
 
hoelzl 
parents: 
60562 
diff
changeset
 | 
1411  | 
by (intro gfp_upperbound) (simp del: funpow.simps)  | 
| 
 
ee18efe9b246
add named theorems order_continuous_intros; lfp/gfp_funpow; bounded variant for lfp/gfp transfer
 
hoelzl 
parents: 
60562 
diff
changeset
 | 
1412  | 
qed  | 
| 45833 | 1413  | 
|
| 61799 | 1414  | 
subsection \<open>Embedding of the naturals into any \<open>semiring_1\<close>: @{term of_nat}\<close>
 | 
| 24196 | 1415  | 
|
1416  | 
context semiring_1  | 
|
1417  | 
begin  | 
|
1418  | 
||
| 
38621
 
d6cb7e625d75
more concise characterization of of_nat operation and class semiring_char_0
 
haftmann 
parents: 
37767 
diff
changeset
 | 
1419  | 
definition of_nat :: "nat \<Rightarrow> 'a" where  | 
| 
 
d6cb7e625d75
more concise characterization of of_nat operation and class semiring_char_0
 
haftmann 
parents: 
37767 
diff
changeset
 | 
1420  | 
"of_nat n = (plus 1 ^^ n) 0"  | 
| 
 
d6cb7e625d75
more concise characterization of of_nat operation and class semiring_char_0
 
haftmann 
parents: 
37767 
diff
changeset
 | 
1421  | 
|
| 
 
d6cb7e625d75
more concise characterization of of_nat operation and class semiring_char_0
 
haftmann 
parents: 
37767 
diff
changeset
 | 
1422  | 
lemma of_nat_simps [simp]:  | 
| 
 
d6cb7e625d75
more concise characterization of of_nat operation and class semiring_char_0
 
haftmann 
parents: 
37767 
diff
changeset
 | 
1423  | 
shows of_nat_0: "of_nat 0 = 0"  | 
| 
 
d6cb7e625d75
more concise characterization of of_nat operation and class semiring_char_0
 
haftmann 
parents: 
37767 
diff
changeset
 | 
1424  | 
and of_nat_Suc: "of_nat (Suc m) = 1 + of_nat m"  | 
| 
 
d6cb7e625d75
more concise characterization of of_nat operation and class semiring_char_0
 
haftmann 
parents: 
37767 
diff
changeset
 | 
1425  | 
by (simp_all add: of_nat_def)  | 
| 25193 | 1426  | 
|
1427  | 
lemma of_nat_1 [simp]: "of_nat 1 = 1"  | 
|
| 
38621
 
d6cb7e625d75
more concise characterization of of_nat operation and class semiring_char_0
 
haftmann 
parents: 
37767 
diff
changeset
 | 
1428  | 
by (simp add: of_nat_def)  | 
| 25193 | 1429  | 
|
1430  | 
lemma of_nat_add [simp]: "of_nat (m + n) = of_nat m + of_nat n"  | 
|
| 
57514
 
bdc2c6b40bf2
prefer ac_simps collections over separate name bindings for add and mult
 
haftmann 
parents: 
57512 
diff
changeset
 | 
1431  | 
by (induct m) (simp_all add: ac_simps)  | 
| 25193 | 1432  | 
|
| 
61649
 
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
 
paulson <lp15@cam.ac.uk> 
parents: 
61531 
diff
changeset
 | 
1433  | 
lemma of_nat_mult [simp]: "of_nat (m * n) = of_nat m * of_nat n"  | 
| 
57514
 
bdc2c6b40bf2
prefer ac_simps collections over separate name bindings for add and mult
 
haftmann 
parents: 
57512 
diff
changeset
 | 
1434  | 
by (induct m) (simp_all add: ac_simps distrib_right)  | 
| 25193 | 1435  | 
|
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61378 
diff
changeset
 | 
1436  | 
lemma mult_of_nat_commute: "of_nat x * y = y * of_nat x"  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61378 
diff
changeset
 | 
1437  | 
by (induction x) (simp_all add: algebra_simps)  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61378 
diff
changeset
 | 
1438  | 
|
| 
55575
 
a5e33e18fb5c
moved 'primrec' up (for real this time) and removed temporary 'old_primrec'
 
blanchet 
parents: 
55534 
diff
changeset
 | 
1439  | 
primrec of_nat_aux :: "('a \<Rightarrow> 'a) \<Rightarrow> nat \<Rightarrow> 'a \<Rightarrow> 'a" where
 | 
| 28514 | 1440  | 
"of_nat_aux inc 0 i = i"  | 
| 61799 | 1441  | 
| "of_nat_aux inc (Suc n) i = of_nat_aux inc n (inc i)" \<comment> \<open>tail recursive\<close>  | 
| 25928 | 1442  | 
|
| 30966 | 1443  | 
lemma of_nat_code:  | 
| 28514 | 1444  | 
"of_nat n = of_nat_aux (\<lambda>i. i + 1) n 0"  | 
1445  | 
proof (induct n)  | 
|
1446  | 
case 0 then show ?case by simp  | 
|
1447  | 
next  | 
|
1448  | 
case (Suc n)  | 
|
1449  | 
have "\<And>i. of_nat_aux (\<lambda>i. i + 1) n (i + 1) = of_nat_aux (\<lambda>i. i + 1) n i + 1"  | 
|
1450  | 
by (induct n) simp_all  | 
|
1451  | 
from this [of 0] have "of_nat_aux (\<lambda>i. i + 1) n 1 = of_nat_aux (\<lambda>i. i + 1) n 0 + 1"  | 
|
1452  | 
by simp  | 
|
| 
57512
 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 
haftmann 
parents: 
57492 
diff
changeset
 | 
1453  | 
with Suc show ?case by (simp add: add.commute)  | 
| 28514 | 1454  | 
qed  | 
| 30966 | 1455  | 
|
| 24196 | 1456  | 
end  | 
1457  | 
||
| 
45231
 
d85a2fdc586c
replacing code_inline by code_unfold, removing obsolete code_unfold, code_inline del now that the ancient code generator is removed
 
bulwahn 
parents: 
44890 
diff
changeset
 | 
1458  | 
declare of_nat_code [code]  | 
| 30966 | 1459  | 
|
| 60758 | 1460  | 
text\<open>Class for unital semirings with characteristic zero.  | 
1461  | 
Includes non-ordered rings like the complex numbers.\<close>  | 
|
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1462  | 
|
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1463  | 
class semiring_char_0 = semiring_1 +  | 
| 
38621
 
d6cb7e625d75
more concise characterization of of_nat operation and class semiring_char_0
 
haftmann 
parents: 
37767 
diff
changeset
 | 
1464  | 
assumes inj_of_nat: "inj of_nat"  | 
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1465  | 
begin  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1466  | 
|
| 
38621
 
d6cb7e625d75
more concise characterization of of_nat operation and class semiring_char_0
 
haftmann 
parents: 
37767 
diff
changeset
 | 
1467  | 
lemma of_nat_eq_iff [simp]: "of_nat m = of_nat n \<longleftrightarrow> m = n"  | 
| 
 
d6cb7e625d75
more concise characterization of of_nat operation and class semiring_char_0
 
haftmann 
parents: 
37767 
diff
changeset
 | 
1468  | 
by (auto intro: inj_of_nat injD)  | 
| 
 
d6cb7e625d75
more concise characterization of of_nat operation and class semiring_char_0
 
haftmann 
parents: 
37767 
diff
changeset
 | 
1469  | 
|
| 60758 | 1470  | 
text\<open>Special cases where either operand is zero\<close>  | 
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1471  | 
|
| 
54147
 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 
blanchet 
parents: 
53986 
diff
changeset
 | 
1472  | 
lemma of_nat_0_eq_iff [simp]: "0 = of_nat n \<longleftrightarrow> 0 = n"  | 
| 
38621
 
d6cb7e625d75
more concise characterization of of_nat operation and class semiring_char_0
 
haftmann 
parents: 
37767 
diff
changeset
 | 
1473  | 
by (fact of_nat_eq_iff [of 0 n, unfolded of_nat_0])  | 
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1474  | 
|
| 
54147
 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 
blanchet 
parents: 
53986 
diff
changeset
 | 
1475  | 
lemma of_nat_eq_0_iff [simp]: "of_nat m = 0 \<longleftrightarrow> m = 0"  | 
| 
38621
 
d6cb7e625d75
more concise characterization of of_nat operation and class semiring_char_0
 
haftmann 
parents: 
37767 
diff
changeset
 | 
1476  | 
by (fact of_nat_eq_iff [of m 0, unfolded of_nat_0])  | 
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1477  | 
|
| 
60353
 
838025c6e278
implicit partial divison operation in integral domains
 
haftmann 
parents: 
60175 
diff
changeset
 | 
1478  | 
lemma of_nat_neq_0 [simp]:  | 
| 
 
838025c6e278
implicit partial divison operation in integral domains
 
haftmann 
parents: 
60175 
diff
changeset
 | 
1479  | 
"of_nat (Suc n) \<noteq> 0"  | 
| 
 
838025c6e278
implicit partial divison operation in integral domains
 
haftmann 
parents: 
60175 
diff
changeset
 | 
1480  | 
unfolding of_nat_eq_0_iff by simp  | 
| 
 
838025c6e278
implicit partial divison operation in integral domains
 
haftmann 
parents: 
60175 
diff
changeset
 | 
1481  | 
|
| 
 
838025c6e278
implicit partial divison operation in integral domains
 
haftmann 
parents: 
60175 
diff
changeset
 | 
1482  | 
lemma of_nat_0_neq [simp]:  | 
| 
 
838025c6e278
implicit partial divison operation in integral domains
 
haftmann 
parents: 
60175 
diff
changeset
 | 
1483  | 
"0 \<noteq> of_nat (Suc n)"  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60427 
diff
changeset
 | 
1484  | 
unfolding of_nat_0_eq_iff by simp  | 
| 
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60427 
diff
changeset
 | 
1485  | 
|
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1486  | 
end  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1487  | 
|
| 
35028
 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 
haftmann 
parents: 
34208 
diff
changeset
 | 
1488  | 
context linordered_semidom  | 
| 25193 | 1489  | 
begin  | 
1490  | 
||
| 47489 | 1491  | 
lemma of_nat_0_le_iff [simp]: "0 \<le> of_nat n"  | 
1492  | 
by (induct n) simp_all  | 
|
| 25193 | 1493  | 
|
| 47489 | 1494  | 
lemma of_nat_less_0_iff [simp]: "\<not> of_nat m < 0"  | 
1495  | 
by (simp add: not_less)  | 
|
| 25193 | 1496  | 
|
1497  | 
lemma of_nat_less_iff [simp]: "of_nat m < of_nat n \<longleftrightarrow> m < n"  | 
|
| 
62376
 
85f38d5f8807
Rename ordered_comm_monoid_add to ordered_cancel_comm_monoid_add. Introduce ordreed_comm_monoid_add, canonically_ordered_comm_monoid and dioid. Setup nat, entat and ennreal as dioids.
 
hoelzl 
parents: 
62365 
diff
changeset
 | 
1498  | 
by (induct m n rule: diff_induct) (simp_all add: add_pos_nonneg)  | 
| 25193 | 1499  | 
|
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1500  | 
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: 
25928 
diff
changeset
 | 
1501  | 
by (simp add: not_less [symmetric] linorder_not_less [symmetric])  | 
| 25193 | 1502  | 
|
| 47489 | 1503  | 
lemma less_imp_of_nat_less: "m < n \<Longrightarrow> of_nat m < of_nat n"  | 
1504  | 
by simp  | 
|
1505  | 
||
1506  | 
lemma of_nat_less_imp_less: "of_nat m < of_nat n \<Longrightarrow> m < n"  | 
|
1507  | 
by simp  | 
|
1508  | 
||
| 61799 | 1509  | 
text\<open>Every \<open>linordered_semidom\<close> has characteristic zero.\<close>  | 
| 25193 | 1510  | 
|
| 
38621
 
d6cb7e625d75
more concise characterization of of_nat operation and class semiring_char_0
 
haftmann 
parents: 
37767 
diff
changeset
 | 
1511  | 
subclass semiring_char_0 proof  | 
| 
 
d6cb7e625d75
more concise characterization of of_nat operation and class semiring_char_0
 
haftmann 
parents: 
37767 
diff
changeset
 | 
1512  | 
qed (auto intro!: injI simp add: eq_iff)  | 
| 25193 | 1513  | 
|
| 60758 | 1514  | 
text\<open>Special cases where either operand is zero\<close>  | 
| 25193 | 1515  | 
|
| 
54147
 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 
blanchet 
parents: 
53986 
diff
changeset
 | 
1516  | 
lemma of_nat_le_0_iff [simp]: "of_nat m \<le> 0 \<longleftrightarrow> m = 0"  | 
| 25193 | 1517  | 
by (rule of_nat_le_iff [of _ 0, simplified])  | 
1518  | 
||
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1519  | 
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: 
25928 
diff
changeset
 | 
1520  | 
by (rule of_nat_less_iff [of 0, simplified])  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1521  | 
|
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1522  | 
end  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1523  | 
|
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1524  | 
context ring_1  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1525  | 
begin  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1526  | 
|
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1527  | 
lemma of_nat_diff: "n \<le> m \<Longrightarrow> of_nat (m - n) = of_nat m - of_nat n"  | 
| 29667 | 1528  | 
by (simp add: algebra_simps of_nat_add [symmetric])  | 
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1529  | 
|
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1530  | 
end  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1531  | 
|
| 
35028
 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 
haftmann 
parents: 
34208 
diff
changeset
 | 
1532  | 
context linordered_idom  | 
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1533  | 
begin  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1534  | 
|
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1535  | 
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: 
25928 
diff
changeset
 | 
1536  | 
unfolding abs_if by auto  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1537  | 
|
| 25193 | 1538  | 
end  | 
1539  | 
||
1540  | 
lemma of_nat_id [simp]: "of_nat n = n"  | 
|
| 35216 | 1541  | 
by (induct n) simp_all  | 
| 25193 | 1542  | 
|
1543  | 
lemma of_nat_eq_id [simp]: "of_nat = id"  | 
|
| 
39302
 
d7728f65b353
renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
 
nipkow 
parents: 
39198 
diff
changeset
 | 
1544  | 
by (auto simp add: fun_eq_iff)  | 
| 25193 | 1545  | 
|
1546  | 
||
| 60758 | 1547  | 
subsection \<open>The set of natural numbers\<close>  | 
| 25193 | 1548  | 
|
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1549  | 
context semiring_1  | 
| 25193 | 1550  | 
begin  | 
1551  | 
||
| 61070 | 1552  | 
definition Nats :: "'a set"  ("\<nat>")
 | 
1553  | 
where "\<nat> = range of_nat"  | 
|
| 25193 | 1554  | 
|
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1555  | 
lemma of_nat_in_Nats [simp]: "of_nat n \<in> \<nat>"  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1556  | 
by (simp add: Nats_def)  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1557  | 
|
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1558  | 
lemma Nats_0 [simp]: "0 \<in> \<nat>"  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1559  | 
apply (simp add: Nats_def)  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1560  | 
apply (rule range_eqI)  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1561  | 
apply (rule of_nat_0 [symmetric])  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1562  | 
done  | 
| 25193 | 1563  | 
|
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1564  | 
lemma Nats_1 [simp]: "1 \<in> \<nat>"  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1565  | 
apply (simp add: Nats_def)  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1566  | 
apply (rule range_eqI)  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1567  | 
apply (rule of_nat_1 [symmetric])  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1568  | 
done  | 
| 25193 | 1569  | 
|
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1570  | 
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: 
25928 
diff
changeset
 | 
1571  | 
apply (auto simp add: Nats_def)  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1572  | 
apply (rule range_eqI)  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1573  | 
apply (rule of_nat_add [symmetric])  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1574  | 
done  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1575  | 
|
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1576  | 
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: 
25928 
diff
changeset
 | 
1577  | 
apply (auto simp add: Nats_def)  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1578  | 
apply (rule range_eqI)  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1579  | 
apply (rule of_nat_mult [symmetric])  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1580  | 
done  | 
| 25193 | 1581  | 
|
| 35633 | 1582  | 
lemma Nats_cases [cases set: Nats]:  | 
1583  | 
assumes "x \<in> \<nat>"  | 
|
1584  | 
obtains (of_nat) n where "x = of_nat n"  | 
|
1585  | 
unfolding Nats_def  | 
|
1586  | 
proof -  | 
|
| 60758 | 1587  | 
from \<open>x \<in> \<nat>\<close> have "x \<in> range of_nat" unfolding Nats_def .  | 
| 35633 | 1588  | 
then obtain n where "x = of_nat n" ..  | 
1589  | 
then show thesis ..  | 
|
1590  | 
qed  | 
|
1591  | 
||
1592  | 
lemma Nats_induct [case_names of_nat, induct set: Nats]:  | 
|
1593  | 
"x \<in> \<nat> \<Longrightarrow> (\<And>n. P (of_nat n)) \<Longrightarrow> P x"  | 
|
1594  | 
by (rule Nats_cases) auto  | 
|
1595  | 
||
| 25193 | 1596  | 
end  | 
1597  | 
||
1598  | 
||
| 60758 | 1599  | 
subsection \<open>Further arithmetic facts concerning the natural numbers\<close>  | 
| 21243 | 1600  | 
|
| 22845 | 1601  | 
lemma subst_equals:  | 
1602  | 
assumes 1: "t = s" and 2: "u = t"  | 
|
1603  | 
shows "u = s"  | 
|
1604  | 
using 2 1 by (rule trans)  | 
|
1605  | 
||
| 48891 | 1606  | 
ML_file "Tools/nat_arith.ML"  | 
| 
48559
 
686cc7c47589
give Nat_Arith simprocs proper name bindings by using simproc_setup
 
huffman 
parents: 
47988 
diff
changeset
 | 
1607  | 
|
| 
 
686cc7c47589
give Nat_Arith simprocs proper name bindings by using simproc_setup
 
huffman 
parents: 
47988 
diff
changeset
 | 
1608  | 
simproc_setup nateq_cancel_sums  | 
| 
 
686cc7c47589
give Nat_Arith simprocs proper name bindings by using simproc_setup
 
huffman 
parents: 
47988 
diff
changeset
 | 
1609  | 
  ("(l::nat) + m = n" | "(l::nat) = m + n" | "Suc m = n" | "m = Suc n") =
 | 
| 60758 | 1610  | 
\<open>fn phi => try o Nat_Arith.cancel_eq_conv\<close>  | 
| 
48559
 
686cc7c47589
give Nat_Arith simprocs proper name bindings by using simproc_setup
 
huffman 
parents: 
47988 
diff
changeset
 | 
1611  | 
|
| 
 
686cc7c47589
give Nat_Arith simprocs proper name bindings by using simproc_setup
 
huffman 
parents: 
47988 
diff
changeset
 | 
1612  | 
simproc_setup natless_cancel_sums  | 
| 
 
686cc7c47589
give Nat_Arith simprocs proper name bindings by using simproc_setup
 
huffman 
parents: 
47988 
diff
changeset
 | 
1613  | 
  ("(l::nat) + m < n" | "(l::nat) < m + n" | "Suc m < n" | "m < Suc n") =
 | 
| 60758 | 1614  | 
\<open>fn phi => try o Nat_Arith.cancel_less_conv\<close>  | 
| 
48559
 
686cc7c47589
give Nat_Arith simprocs proper name bindings by using simproc_setup
 
huffman 
parents: 
47988 
diff
changeset
 | 
1615  | 
|
| 
 
686cc7c47589
give Nat_Arith simprocs proper name bindings by using simproc_setup
 
huffman 
parents: 
47988 
diff
changeset
 | 
1616  | 
simproc_setup natle_cancel_sums  | 
| 
 
686cc7c47589
give Nat_Arith simprocs proper name bindings by using simproc_setup
 
huffman 
parents: 
47988 
diff
changeset
 | 
1617  | 
  ("(l::nat) + m \<le> n" | "(l::nat) \<le> m + n" | "Suc m \<le> n" | "m \<le> Suc n") =
 | 
| 60758 | 1618  | 
\<open>fn phi => try o Nat_Arith.cancel_le_conv\<close>  | 
| 
48559
 
686cc7c47589
give Nat_Arith simprocs proper name bindings by using simproc_setup
 
huffman 
parents: 
47988 
diff
changeset
 | 
1619  | 
|
| 
 
686cc7c47589
give Nat_Arith simprocs proper name bindings by using simproc_setup
 
huffman 
parents: 
47988 
diff
changeset
 | 
1620  | 
simproc_setup natdiff_cancel_sums  | 
| 
 
686cc7c47589
give Nat_Arith simprocs proper name bindings by using simproc_setup
 
huffman 
parents: 
47988 
diff
changeset
 | 
1621  | 
  ("(l::nat) + m - n" | "(l::nat) - (m + n)" | "Suc m - n" | "m - Suc n") =
 | 
| 60758 | 1622  | 
\<open>fn phi => try o Nat_Arith.cancel_diff_conv\<close>  | 
| 24091 | 1623  | 
|
| 48891 | 1624  | 
ML_file "Tools/lin_arith.ML"  | 
| 60758 | 1625  | 
setup \<open>Lin_Arith.global_setup\<close>  | 
1626  | 
declaration \<open>K Lin_Arith.setup\<close>  | 
|
| 24091 | 1627  | 
|
| 61144 | 1628  | 
simproc_setup fast_arith_nat ("(m::nat) < n" | "(m::nat) \<le> n" | "(m::nat) = n") =
 | 
1629  | 
\<open>K Lin_Arith.simproc\<close>  | 
|
| 43595 | 1630  | 
(* Because of this simproc, the arithmetic solver is really only  | 
1631  | 
useful to detect inconsistencies among the premises for subgoals which are  | 
|
1632  | 
*not* themselves (in)equalities, because the latter activate  | 
|
1633  | 
fast_nat_arith_simproc anyway. However, it seems cheaper to activate the  | 
|
1634  | 
solver all the time rather than add the additional check. *)  | 
|
1635  | 
||
1636  | 
||
| 21243 | 1637  | 
lemmas [arith_split] = nat_diff_split split_min split_max  | 
1638  | 
||
| 27625 | 1639  | 
context order  | 
1640  | 
begin  | 
|
1641  | 
||
1642  | 
lemma lift_Suc_mono_le:  | 
|
| 53986 | 1643  | 
assumes mono: "\<And>n. f n \<le> f (Suc n)" and "n \<le> n'"  | 
| 27627 | 1644  | 
shows "f n \<le> f n'"  | 
1645  | 
proof (cases "n < n'")  | 
|
1646  | 
case True  | 
|
| 53986 | 1647  | 
then show ?thesis  | 
1648  | 
by (induct n n' rule: less_Suc_induct [consumes 1]) (auto intro: mono)  | 
|
| 61799 | 1649  | 
qed (insert \<open>n \<le> n'\<close>, auto) \<comment> \<open>trivial for @{prop "n = n'"}\<close>
 | 
| 27625 | 1650  | 
|
| 
56020
 
f92479477c52
introduced antimono; incseq, decseq are now abbreviations for mono and antimono; renamed Library/Continuity to Library/Order_Continuity; removed up_cont; renamed down_cont to down_continuity and generalized to complete_lattices
 
hoelzl 
parents: 
55642 
diff
changeset
 | 
1651  | 
lemma lift_Suc_antimono_le:  | 
| 
 
f92479477c52
introduced antimono; incseq, decseq are now abbreviations for mono and antimono; renamed Library/Continuity to Library/Order_Continuity; removed up_cont; renamed down_cont to down_continuity and generalized to complete_lattices
 
hoelzl 
parents: 
55642 
diff
changeset
 | 
1652  | 
assumes mono: "\<And>n. f n \<ge> f (Suc n)" and "n \<le> n'"  | 
| 
 
f92479477c52
introduced antimono; incseq, decseq are now abbreviations for mono and antimono; renamed Library/Continuity to Library/Order_Continuity; removed up_cont; renamed down_cont to down_continuity and generalized to complete_lattices
 
hoelzl 
parents: 
55642 
diff
changeset
 | 
1653  | 
shows "f n \<ge> f n'"  | 
| 
 
f92479477c52
introduced antimono; incseq, decseq are now abbreviations for mono and antimono; renamed Library/Continuity to Library/Order_Continuity; removed up_cont; renamed down_cont to down_continuity and generalized to complete_lattices
 
hoelzl 
parents: 
55642 
diff
changeset
 | 
1654  | 
proof (cases "n < n'")  | 
| 
 
f92479477c52
introduced antimono; incseq, decseq are now abbreviations for mono and antimono; renamed Library/Continuity to Library/Order_Continuity; removed up_cont; renamed down_cont to down_continuity and generalized to complete_lattices
 
hoelzl 
parents: 
55642 
diff
changeset
 | 
1655  | 
case True  | 
| 
 
f92479477c52
introduced antimono; incseq, decseq are now abbreviations for mono and antimono; renamed Library/Continuity to Library/Order_Continuity; removed up_cont; renamed down_cont to down_continuity and generalized to complete_lattices
 
hoelzl 
parents: 
55642 
diff
changeset
 | 
1656  | 
then show ?thesis  | 
| 
 
f92479477c52
introduced antimono; incseq, decseq are now abbreviations for mono and antimono; renamed Library/Continuity to Library/Order_Continuity; removed up_cont; renamed down_cont to down_continuity and generalized to complete_lattices
 
hoelzl 
parents: 
55642 
diff
changeset
 | 
1657  | 
by (induct n n' rule: less_Suc_induct [consumes 1]) (auto intro: mono)  | 
| 61799 | 1658  | 
qed (insert \<open>n \<le> n'\<close>, auto) \<comment> \<open>trivial for @{prop "n = n'"}\<close>
 | 
| 
56020
 
f92479477c52
introduced antimono; incseq, decseq are now abbreviations for mono and antimono; renamed Library/Continuity to Library/Order_Continuity; removed up_cont; renamed down_cont to down_continuity and generalized to complete_lattices
 
hoelzl 
parents: 
55642 
diff
changeset
 | 
1659  | 
|
| 27625 | 1660  | 
lemma lift_Suc_mono_less:  | 
| 53986 | 1661  | 
assumes mono: "\<And>n. f n < f (Suc n)" and "n < n'"  | 
| 27627 | 1662  | 
shows "f n < f n'"  | 
| 60758 | 1663  | 
using \<open>n < n'\<close>  | 
| 53986 | 1664  | 
by (induct n n' rule: less_Suc_induct [consumes 1]) (auto intro: mono)  | 
| 27625 | 1665  | 
|
| 27789 | 1666  | 
lemma lift_Suc_mono_less_iff:  | 
| 53986 | 1667  | 
"(\<And>n. f n < f (Suc n)) \<Longrightarrow> f n < f m \<longleftrightarrow> n < m"  | 
1668  | 
by (blast intro: less_asym' lift_Suc_mono_less [of f]  | 
|
1669  | 
dest: linorder_not_less[THEN iffD1] le_eq_less_or_eq [THEN iffD1])  | 
|
| 27789 | 1670  | 
|
| 27625 | 1671  | 
end  | 
1672  | 
||
| 53986 | 1673  | 
lemma mono_iff_le_Suc:  | 
1674  | 
"mono f \<longleftrightarrow> (\<forall>n. f n \<le> f (Suc n))"  | 
|
| 
37387
 
3581483cca6c
qualified types "+" and nat; qualified constants Ball, Bex, Suc, curry; modernized some specifications
 
haftmann 
parents: 
36977 
diff
changeset
 | 
1675  | 
unfolding mono_def by (auto intro: lift_Suc_mono_le [of f])  | 
| 27625 | 1676  | 
|
| 
56020
 
f92479477c52
introduced antimono; incseq, decseq are now abbreviations for mono and antimono; renamed Library/Continuity to Library/Order_Continuity; removed up_cont; renamed down_cont to down_continuity and generalized to complete_lattices
 
hoelzl 
parents: 
55642 
diff
changeset
 | 
1677  | 
lemma antimono_iff_le_Suc:  | 
| 
 
f92479477c52
introduced antimono; incseq, decseq are now abbreviations for mono and antimono; renamed Library/Continuity to Library/Order_Continuity; removed up_cont; renamed down_cont to down_continuity and generalized to complete_lattices
 
hoelzl 
parents: 
55642 
diff
changeset
 | 
1678  | 
"antimono f \<longleftrightarrow> (\<forall>n. f (Suc n) \<le> f n)"  | 
| 
 
f92479477c52
introduced antimono; incseq, decseq are now abbreviations for mono and antimono; renamed Library/Continuity to Library/Order_Continuity; removed up_cont; renamed down_cont to down_continuity and generalized to complete_lattices
 
hoelzl 
parents: 
55642 
diff
changeset
 | 
1679  | 
unfolding antimono_def by (auto intro: lift_Suc_antimono_le [of f])  | 
| 
 
f92479477c52
introduced antimono; incseq, decseq are now abbreviations for mono and antimono; renamed Library/Continuity to Library/Order_Continuity; removed up_cont; renamed down_cont to down_continuity and generalized to complete_lattices
 
hoelzl 
parents: 
55642 
diff
changeset
 | 
1680  | 
|
| 27789 | 1681  | 
lemma mono_nat_linear_lb:  | 
| 53986 | 1682  | 
fixes f :: "nat \<Rightarrow> nat"  | 
1683  | 
assumes "\<And>m n. m < n \<Longrightarrow> f m < f n"  | 
|
1684  | 
shows "f m + k \<le> f (m + k)"  | 
|
1685  | 
proof (induct k)  | 
|
1686  | 
case 0 then show ?case by simp  | 
|
1687  | 
next  | 
|
1688  | 
case (Suc k)  | 
|
1689  | 
then have "Suc (f m + k) \<le> Suc (f (m + k))" by simp  | 
|
1690  | 
also from assms [of "m + k" "Suc (m + k)"] have "Suc (f (m + k)) \<le> f (Suc (m + k))"  | 
|
1691  | 
by (simp add: Suc_le_eq)  | 
|
1692  | 
finally show ?case by simp  | 
|
1693  | 
qed  | 
|
| 27789 | 1694  | 
|
1695  | 
||
| 60758 | 1696  | 
text\<open>Subtraction laws, mostly by Clemens Ballarin\<close>  | 
| 21243 | 1697  | 
|
1698  | 
lemma diff_less_mono: "[| a < (b::nat); c \<le> a |] ==> a-c < b-c"  | 
|
| 24438 | 1699  | 
by arith  | 
| 21243 | 1700  | 
|
1701  | 
lemma less_diff_conv: "(i < j-k) = (i+k < (j::nat))"  | 
|
| 24438 | 1702  | 
by arith  | 
| 21243 | 1703  | 
|
| 51173 | 1704  | 
lemma less_diff_conv2:  | 
1705  | 
fixes j k i :: nat  | 
|
1706  | 
assumes "k \<le> j"  | 
|
1707  | 
shows "j - k < i \<longleftrightarrow> j < i + k"  | 
|
1708  | 
using assms by arith  | 
|
1709  | 
||
| 21243 | 1710  | 
lemma le_diff_conv: "(j-k \<le> (i::nat)) = (j \<le> i+k)"  | 
| 24438 | 1711  | 
by arith  | 
| 21243 | 1712  | 
|
1713  | 
lemma diff_diff_cancel [simp]: "i \<le> (n::nat) ==> n - (n - i) = i"  | 
|
| 24438 | 1714  | 
by arith  | 
| 21243 | 1715  | 
|
1716  | 
(*Replaces the previous diff_less and le_diff_less, which had the stronger  | 
|
1717  | 
second premise n\<le>m*)  | 
|
1718  | 
lemma diff_less[simp]: "!!m::nat. [| 0<n; 0<m |] ==> m - n < m"  | 
|
| 24438 | 1719  | 
by arith  | 
| 21243 | 1720  | 
|
| 60758 | 1721  | 
text \<open>Simplification of relational expressions involving subtraction\<close>  | 
| 21243 | 1722  | 
|
1723  | 
lemma diff_diff_eq: "[| k \<le> m; k \<le> (n::nat) |] ==> ((m-k) - (n-k)) = (m-n)"  | 
|
| 24438 | 1724  | 
by (simp split add: nat_diff_split)  | 
| 21243 | 1725  | 
|
| 
36176
 
3fe7e97ccca8
replaced generic 'hide' command by more conventional 'hide_class', 'hide_type', 'hide_const', 'hide_fact' -- frees some popular keywords;
 
wenzelm 
parents: 
35828 
diff
changeset
 | 
1726  | 
hide_fact (open) diff_diff_eq  | 
| 
35064
 
1bdef0c013d3
hide fact names clashing with fact names from Group.thy
 
haftmann 
parents: 
35047 
diff
changeset
 | 
1727  | 
|
| 21243 | 1728  | 
lemma eq_diff_iff: "[| k \<le> m; k \<le> (n::nat) |] ==> (m-k = n-k) = (m=n)"  | 
| 24438 | 1729  | 
by (auto split add: nat_diff_split)  | 
| 21243 | 1730  | 
|
1731  | 
lemma less_diff_iff: "[| k \<le> m; k \<le> (n::nat) |] ==> (m-k < n-k) = (m<n)"  | 
|
| 24438 | 1732  | 
by (auto split add: nat_diff_split)  | 
| 21243 | 1733  | 
|
1734  | 
lemma le_diff_iff: "[| k \<le> m; k \<le> (n::nat) |] ==> (m-k \<le> n-k) = (m\<le>n)"  | 
|
| 24438 | 1735  | 
by (auto split add: nat_diff_split)  | 
| 21243 | 1736  | 
|
| 60758 | 1737  | 
text\<open>(Anti)Monotonicity of subtraction -- by Stephan Merz\<close>  | 
| 21243 | 1738  | 
|
1739  | 
(* Monotonicity of subtraction in first argument *)  | 
|
1740  | 
lemma diff_le_mono: "m \<le> (n::nat) ==> (m-l) \<le> (n-l)"  | 
|
| 24438 | 1741  | 
by (simp split add: nat_diff_split)  | 
| 21243 | 1742  | 
|
1743  | 
lemma diff_le_mono2: "m \<le> (n::nat) ==> (l-n) \<le> (l-m)"  | 
|
| 24438 | 1744  | 
by (simp split add: nat_diff_split)  | 
| 21243 | 1745  | 
|
1746  | 
lemma diff_less_mono2: "[| m < (n::nat); m<l |] ==> (l-n) < (l-m)"  | 
|
| 24438 | 1747  | 
by (simp split add: nat_diff_split)  | 
| 21243 | 1748  | 
|
1749  | 
lemma diffs0_imp_equal: "!!m::nat. [| m-n = 0; n-m = 0 |] ==> m=n"  | 
|
| 24438 | 1750  | 
by (simp split add: nat_diff_split)  | 
| 21243 | 1751  | 
|
| 
26143
 
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
 
bulwahn 
parents: 
26101 
diff
changeset
 | 
1752  | 
lemma min_diff: "min (m - (i::nat)) (n - i) = min m n - i"  | 
| 32437 | 1753  | 
by auto  | 
| 
26143
 
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
 
bulwahn 
parents: 
26101 
diff
changeset
 | 
1754  | 
|
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60427 
diff
changeset
 | 
1755  | 
lemma inj_on_diff_nat:  | 
| 
26143
 
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
 
bulwahn 
parents: 
26101 
diff
changeset
 | 
1756  | 
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: 
26101 
diff
changeset
 | 
1757  | 
shows "inj_on (\<lambda>n. n - k) N"  | 
| 
 
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
 
bulwahn 
parents: 
26101 
diff
changeset
 | 
1758  | 
proof (rule inj_onI)  | 
| 
 
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
 
bulwahn 
parents: 
26101 
diff
changeset
 | 
1759  | 
fix x y  | 
| 
 
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
 
bulwahn 
parents: 
26101 
diff
changeset
 | 
1760  | 
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: 
26101 
diff
changeset
 | 
1761  | 
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: 
26101 
diff
changeset
 | 
1762  | 
with a k_le_n show "x = y" by auto  | 
| 
 
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
 
bulwahn 
parents: 
26101 
diff
changeset
 | 
1763  | 
qed  | 
| 
 
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
 
bulwahn 
parents: 
26101 
diff
changeset
 | 
1764  | 
|
| 60758 | 1765  | 
text\<open>Rewriting to pull differences out\<close>  | 
| 
26072
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1766  | 
|
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1767  | 
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: 
25928 
diff
changeset
 | 
1768  | 
by arith  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1769  | 
|
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1770  | 
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: 
25928 
diff
changeset
 | 
1771  | 
by arith  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1772  | 
|
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1773  | 
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: 
25928 
diff
changeset
 | 
1774  | 
by arith  | 
| 
 
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
 
haftmann 
parents: 
25928 
diff
changeset
 | 
1775  | 
|
| 45933 | 1776  | 
lemma Suc_diff_Suc: "n < m \<Longrightarrow> Suc (m - Suc n) = m - n"  | 
1777  | 
by simp  | 
|
1778  | 
||
| 
46350
 
a49c89df7c92
moving declarations back to the section they seem to belong to (cf. afffe1f72143)
 
bulwahn 
parents: 
46028 
diff
changeset
 | 
1779  | 
(*The others are  | 
| 
 
a49c89df7c92
moving declarations back to the section they seem to belong to (cf. afffe1f72143)
 
bulwahn 
parents: 
46028 
diff
changeset
 | 
1780  | 
i - j - k = i - (j + k),  | 
| 
 
a49c89df7c92
moving declarations back to the section they seem to belong to (cf. afffe1f72143)
 
bulwahn 
parents: 
46028 
diff
changeset
 | 
1781  | 
k \<le> j ==> j - k + i = j + i - k,  | 
| 
 
a49c89df7c92
moving declarations back to the section they seem to belong to (cf. afffe1f72143)
 
bulwahn 
parents: 
46028 
diff
changeset
 | 
1782  | 
k \<le> j ==> i + (j - k) = i + j - k *)  | 
| 
 
a49c89df7c92
moving declarations back to the section they seem to belong to (cf. afffe1f72143)
 
bulwahn 
parents: 
46028 
diff
changeset
 | 
1783  | 
lemmas add_diff_assoc = diff_add_assoc [symmetric]  | 
| 
 
a49c89df7c92
moving declarations back to the section they seem to belong to (cf. afffe1f72143)
 
bulwahn 
parents: 
46028 
diff
changeset
 | 
1784  | 
lemmas add_diff_assoc2 = diff_add_assoc2[symmetric]  | 
| 62365 | 1785  | 
declare add_diff_assoc [simp] add_diff_assoc2[simp]  | 
| 
46350
 
a49c89df7c92
moving declarations back to the section they seem to belong to (cf. afffe1f72143)
 
bulwahn 
parents: 
46028 
diff
changeset
 | 
1786  | 
|
| 61799 | 1787  | 
text\<open>At present we prove no analogue of \<open>not_less_Least\<close> or \<open>Least_Suc\<close>, since there appears to be no need.\<close>  | 
| 60758 | 1788  | 
|
1789  | 
text\<open>Lemmas for ex/Factorization\<close>  | 
|
| 21243 | 1790  | 
|
1791  | 
lemma one_less_mult: "[| Suc 0 < n; Suc 0 < m |] ==> Suc 0 < m*n"  | 
|
| 24438 | 1792  | 
by (cases m) auto  | 
| 21243 | 1793  | 
|
1794  | 
lemma n_less_m_mult_n: "[| Suc 0 < n; Suc 0 < m |] ==> n<m*n"  | 
|
| 24438 | 1795  | 
by (cases m) auto  | 
| 21243 | 1796  | 
|
1797  | 
lemma n_less_n_mult_m: "[| Suc 0 < n; Suc 0 < m |] ==> n<n*m"  | 
|
| 24438 | 1798  | 
by (cases m) auto  | 
| 21243 | 1799  | 
|
| 60758 | 1800  | 
text \<open>Specialized induction principles that work "backwards":\<close>  | 
| 
23001
 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 
krauss 
parents: 
22920 
diff
changeset
 | 
1801  | 
|
| 
 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 
krauss 
parents: 
22920 
diff
changeset
 | 
1802  | 
lemma inc_induct[consumes 1, case_names base step]:  | 
| 54411 | 1803  | 
assumes less: "i \<le> j"  | 
| 
23001
 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 
krauss 
parents: 
22920 
diff
changeset
 | 
1804  | 
assumes base: "P j"  | 
| 54411 | 1805  | 
assumes step: "\<And>n. i \<le> n \<Longrightarrow> n < j \<Longrightarrow> P (Suc n) \<Longrightarrow> P n"  | 
| 
23001
 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 
krauss 
parents: 
22920 
diff
changeset
 | 
1806  | 
shows "P i"  | 
| 54411 | 1807  | 
using less step  | 
1808  | 
proof (induct d\<equiv>"j - i" arbitrary: i)  | 
|
| 
23001
 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 
krauss 
parents: 
22920 
diff
changeset
 | 
1809  | 
case (0 i)  | 
| 
 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 
krauss 
parents: 
22920 
diff
changeset
 | 
1810  | 
hence "i = j" by simp  | 
| 
 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 
krauss 
parents: 
22920 
diff
changeset
 | 
1811  | 
with base show ?case by simp  | 
| 
 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 
krauss 
parents: 
22920 
diff
changeset
 | 
1812  | 
next  | 
| 54411 | 1813  | 
case (Suc d n)  | 
1814  | 
hence "n \<le> n" "n < j" "P (Suc n)"  | 
|
| 
23001
 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 
krauss 
parents: 
22920 
diff
changeset
 | 
1815  | 
by simp_all  | 
| 54411 | 1816  | 
then show "P n" by fact  | 
| 
23001
 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 
krauss 
parents: 
22920 
diff
changeset
 | 
1817  | 
qed  | 
| 
 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 
krauss 
parents: 
22920 
diff
changeset
 | 
1818  | 
|
| 
 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 
krauss 
parents: 
22920 
diff
changeset
 | 
1819  | 
lemma strict_inc_induct[consumes 1, case_names base step]:  | 
| 
 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 
krauss 
parents: 
22920 
diff
changeset
 | 
1820  | 
assumes less: "i < j"  | 
| 
 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 
krauss 
parents: 
22920 
diff
changeset
 | 
1821  | 
assumes base: "!!i. j = Suc i ==> P i"  | 
| 
 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 
krauss 
parents: 
22920 
diff
changeset
 | 
1822  | 
assumes step: "!!i. [| i < j; P (Suc i) |] ==> P i"  | 
| 
 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 
krauss 
parents: 
22920 
diff
changeset
 | 
1823  | 
shows "P i"  | 
| 
 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 
krauss 
parents: 
22920 
diff
changeset
 | 
1824  | 
using less  | 
| 
 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 
krauss 
parents: 
22920 
diff
changeset
 | 
1825  | 
proof (induct d=="j - i - 1" arbitrary: i)  | 
| 
 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 
krauss 
parents: 
22920 
diff
changeset
 | 
1826  | 
case (0 i)  | 
| 60758 | 1827  | 
with \<open>i < j\<close> have "j = Suc i" by simp  | 
| 
23001
 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 
krauss 
parents: 
22920 
diff
changeset
 | 
1828  | 
with base show ?case by simp  | 
| 
 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 
krauss 
parents: 
22920 
diff
changeset
 | 
1829  | 
next  | 
| 
 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 
krauss 
parents: 
22920 
diff
changeset
 | 
1830  | 
case (Suc d i)  | 
| 
 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 
krauss 
parents: 
22920 
diff
changeset
 | 
1831  | 
hence "i < j" "P (Suc i)"  | 
| 
 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 
krauss 
parents: 
22920 
diff
changeset
 | 
1832  | 
by simp_all  | 
| 
 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 
krauss 
parents: 
22920 
diff
changeset
 | 
1833  | 
thus "P i" by (rule step)  | 
| 
 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 
krauss 
parents: 
22920 
diff
changeset
 | 
1834  | 
qed  | 
| 
 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 
krauss 
parents: 
22920 
diff
changeset
 | 
1835  | 
|
| 
 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 
krauss 
parents: 
22920 
diff
changeset
 | 
1836  | 
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: 
22920 
diff
changeset
 | 
1837  | 
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: 
22920 
diff
changeset
 | 
1838  | 
|
| 
 
3608f0362a91
added induction principles for induction "backwards": P (Suc n) ==> P n
 
krauss 
parents: 
22920 
diff
changeset
 | 
1839  | 
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: 
22920 
diff
changeset
 | 
1840  | 
using inc_induct[of 0 k P] by blast  | 
| 21243 | 1841  | 
|
| 60758 | 1842  | 
text \<open>Further induction rule similar to @{thm inc_induct}\<close>
 | 
| 27625 | 1843  | 
|
| 
46351
 
4a1f743c05b2
adding yet another induction rule on natural numbers
 
bulwahn 
parents: 
46350 
diff
changeset
 | 
1844  | 
lemma dec_induct[consumes 1, case_names base step]:  | 
| 54411 | 1845  | 
"i \<le> j \<Longrightarrow> P i \<Longrightarrow> (\<And>n. i \<le> n \<Longrightarrow> n < j \<Longrightarrow> P n \<Longrightarrow> P (Suc n)) \<Longrightarrow> P j"  | 
| 
46351
 
4a1f743c05b2
adding yet another induction rule on natural numbers
 
bulwahn 
parents: 
46350 
diff
changeset
 | 
1846  | 
by (induct j arbitrary: i) (auto simp: le_Suc_eq)  | 
| 59000 | 1847  | 
|
1848  | 
subsection \<open> Monotonicity of funpow \<close>  | 
|
1849  | 
||
1850  | 
lemma funpow_increasing:  | 
|
1851  | 
  fixes f :: "'a \<Rightarrow> ('a::{lattice, order_top})"
 | 
|
1852  | 
shows "m \<le> n \<Longrightarrow> mono f \<Longrightarrow> (f ^^ n) \<top> \<le> (f ^^ m) \<top>"  | 
|
1853  | 
by (induct rule: inc_induct)  | 
|
1854  | 
(auto simp del: funpow.simps(2) simp add: funpow_Suc_right  | 
|
1855  | 
intro: order_trans[OF _ funpow_mono])  | 
|
1856  | 
||
1857  | 
lemma funpow_decreasing:  | 
|
1858  | 
  fixes f :: "'a \<Rightarrow> ('a::{lattice, order_bot})"
 | 
|
1859  | 
shows "m \<le> n \<Longrightarrow> mono f \<Longrightarrow> (f ^^ m) \<bottom> \<le> (f ^^ n) \<bottom>"  | 
|
1860  | 
by (induct rule: dec_induct)  | 
|
1861  | 
(auto simp del: funpow.simps(2) simp add: funpow_Suc_right  | 
|
1862  | 
intro: order_trans[OF _ funpow_mono])  | 
|
1863  | 
||
1864  | 
lemma mono_funpow:  | 
|
| 60427 | 1865  | 
  fixes Q :: "'a::{lattice, order_bot} \<Rightarrow> 'a"
 | 
| 59000 | 1866  | 
shows "mono Q \<Longrightarrow> mono (\<lambda>i. (Q ^^ i) \<bottom>)"  | 
1867  | 
by (auto intro!: funpow_decreasing simp: mono_def)  | 
|
| 
58377
 
c6f93b8d2d8e
moved old 'size' generator together with 'old_datatype'
 
blanchet 
parents: 
58306 
diff
changeset
 | 
1868  | 
|
| 60175 | 1869  | 
lemma antimono_funpow:  | 
| 60427 | 1870  | 
  fixes Q :: "'a::{lattice, order_top} \<Rightarrow> 'a"
 | 
| 60175 | 1871  | 
shows "mono Q \<Longrightarrow> antimono (\<lambda>i. (Q ^^ i) \<top>)"  | 
1872  | 
by (auto intro!: funpow_increasing simp: antimono_def)  | 
|
1873  | 
||
| 60758 | 1874  | 
subsection \<open>The divides relation on @{typ nat}\<close>
 | 
| 
33274
 
b6ff7db522b5
moved lemmas for dvd on nat to theories Nat and Power
 
haftmann 
parents: 
32772 
diff
changeset
 | 
1875  | 
|
| 62365 | 1876  | 
lemma dvd_1_left [iff]:  | 
1877  | 
"Suc 0 dvd k"  | 
|
1878  | 
by (simp add: dvd_def)  | 
|
1879  | 
||
1880  | 
lemma dvd_1_iff_1 [simp]:  | 
|
1881  | 
"m dvd Suc 0 \<longleftrightarrow> m = Suc 0"  | 
|
1882  | 
by (simp add: dvd_def)  | 
|
1883  | 
||
1884  | 
lemma nat_dvd_1_iff_1 [simp]:  | 
|
1885  | 
"m dvd (1::nat) \<longleftrightarrow> m = 1"  | 
|
1886  | 
by (simp add: dvd_def)  | 
|
1887  | 
||
1888  | 
lemma dvd_antisym:  | 
|
1889  | 
"m dvd n \<Longrightarrow> n dvd m \<Longrightarrow> m = (n::nat)"  | 
|
| 
33274
 
b6ff7db522b5
moved lemmas for dvd on nat to theories Nat and Power
 
haftmann 
parents: 
32772 
diff
changeset
 | 
1890  | 
unfolding dvd_def  | 
| 
57512
 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 
haftmann 
parents: 
57492 
diff
changeset
 | 
1891  | 
by (force dest: mult_eq_self_implies_10 simp add: mult.assoc)  | 
| 
33274
 
b6ff7db522b5
moved lemmas for dvd on nat to theories Nat and Power
 
haftmann 
parents: 
32772 
diff
changeset
 | 
1892  | 
|
| 62365 | 1893  | 
lemma dvd_diff_nat [simp]:  | 
1894  | 
"k dvd m \<Longrightarrow> k dvd n \<Longrightarrow> k dvd (m - n :: nat)"  | 
|
1895  | 
unfolding dvd_def  | 
|
1896  | 
by (blast intro: right_diff_distrib' [symmetric])  | 
|
1897  | 
||
1898  | 
lemma dvd_diffD:  | 
|
1899  | 
"k dvd m - n \<Longrightarrow> k dvd n \<Longrightarrow> n \<le> m \<Longrightarrow> k dvd (m::nat)"  | 
|
| 
33274
 
b6ff7db522b5
moved lemmas for dvd on nat to theories Nat and Power
 
haftmann 
parents: 
32772 
diff
changeset
 | 
1900  | 
apply (erule linorder_not_less [THEN iffD2, THEN add_diff_inverse, THEN subst])  | 
| 
 
b6ff7db522b5
moved lemmas for dvd on nat to theories Nat and Power
 
haftmann 
parents: 
32772 
diff
changeset
 | 
1901  | 
apply (blast intro: dvd_add)  | 
| 
 
b6ff7db522b5
moved lemmas for dvd on nat to theories Nat and Power
 
haftmann 
parents: 
32772 
diff
changeset
 | 
1902  | 
done  | 
| 
 
b6ff7db522b5
moved lemmas for dvd on nat to theories Nat and Power
 
haftmann 
parents: 
32772 
diff
changeset
 | 
1903  | 
|
| 62365 | 1904  | 
lemma dvd_diffD1:  | 
1905  | 
"k dvd m - n \<Longrightarrow> k dvd m \<Longrightarrow> n \<le> m \<Longrightarrow> k dvd (n::nat)"  | 
|
1906  | 
by (drule_tac m = m in dvd_diff_nat) auto  | 
|
1907  | 
||
1908  | 
lemma dvd_mult_cancel:  | 
|
1909  | 
fixes m n k :: nat  | 
|
1910  | 
assumes "k * m dvd k * n" and "0 < k"  | 
|
1911  | 
shows "m dvd n"  | 
|
1912  | 
proof -  | 
|
1913  | 
from assms(1) obtain q where "k * n = (k * m) * q" ..  | 
|
1914  | 
then have "k * n = k * (m * q)" by (simp add: ac_simps)  | 
|
1915  | 
with \<open>0 < k\<close> have "n = m * q" by simp  | 
|
1916  | 
then show ?thesis ..  | 
|
1917  | 
qed  | 
|
1918  | 
||
1919  | 
lemma dvd_mult_cancel1:  | 
|
1920  | 
"0 < m \<Longrightarrow> m * n dvd m \<longleftrightarrow> n = (1::nat)"  | 
|
| 
33274
 
b6ff7db522b5
moved lemmas for dvd on nat to theories Nat and Power
 
haftmann 
parents: 
32772 
diff
changeset
 | 
1921  | 
apply auto  | 
| 
 
b6ff7db522b5
moved lemmas for dvd on nat to theories Nat and Power
 
haftmann 
parents: 
32772 
diff
changeset
 | 
1922  | 
apply (subgoal_tac "m*n dvd m*1")  | 
| 
 
b6ff7db522b5
moved lemmas for dvd on nat to theories Nat and Power
 
haftmann 
parents: 
32772 
diff
changeset
 | 
1923  | 
apply (drule dvd_mult_cancel, auto)  | 
| 
 
b6ff7db522b5
moved lemmas for dvd on nat to theories Nat and Power
 
haftmann 
parents: 
32772 
diff
changeset
 | 
1924  | 
done  | 
| 
 
b6ff7db522b5
moved lemmas for dvd on nat to theories Nat and Power
 
haftmann 
parents: 
32772 
diff
changeset
 | 
1925  | 
|
| 62365 | 1926  | 
lemma dvd_mult_cancel2:  | 
1927  | 
"0 < m \<Longrightarrow> n * m dvd m \<longleftrightarrow> n = (1::nat)"  | 
|
1928  | 
using dvd_mult_cancel1 [of m n] by (simp add: ac_simps)  | 
|
1929  | 
||
1930  | 
lemma dvd_imp_le:  | 
|
1931  | 
"k dvd n \<Longrightarrow> 0 < n \<Longrightarrow> k \<le> (n::nat)"  | 
|
1932  | 
by (auto elim!: dvdE) (auto simp add: gr0_conv_Suc)  | 
|
| 
33274
 
b6ff7db522b5
moved lemmas for dvd on nat to theories Nat and Power
 
haftmann 
parents: 
32772 
diff
changeset
 | 
1933  | 
|
| 
 
b6ff7db522b5
moved lemmas for dvd on nat to theories Nat and Power
 
haftmann 
parents: 
32772 
diff
changeset
 | 
1934  | 
lemma nat_dvd_not_less:  | 
| 
 
b6ff7db522b5
moved lemmas for dvd on nat to theories Nat and Power
 
haftmann 
parents: 
32772 
diff
changeset
 | 
1935  | 
fixes m n :: nat  | 
| 
 
b6ff7db522b5
moved lemmas for dvd on nat to theories Nat and Power
 
haftmann 
parents: 
32772 
diff
changeset
 | 
1936  | 
shows "0 < m \<Longrightarrow> m < n \<Longrightarrow> \<not> n dvd m"  | 
| 62365 | 1937  | 
by (auto elim!: dvdE) (auto simp add: gr0_conv_Suc)  | 
| 
33274
 
b6ff7db522b5
moved lemmas for dvd on nat to theories Nat and Power
 
haftmann 
parents: 
32772 
diff
changeset
 | 
1938  | 
|
| 54222 | 1939  | 
lemma less_eq_dvd_minus:  | 
| 51173 | 1940  | 
fixes m n :: nat  | 
| 54222 | 1941  | 
assumes "m \<le> n"  | 
1942  | 
shows "m dvd n \<longleftrightarrow> m dvd n - m"  | 
|
| 51173 | 1943  | 
proof -  | 
| 54222 | 1944  | 
from assms have "n = m + (n - m)" by simp  | 
| 51173 | 1945  | 
then obtain q where "n = m + q" ..  | 
| 58647 | 1946  | 
then show ?thesis by (simp add: add.commute [of m])  | 
| 51173 | 1947  | 
qed  | 
1948  | 
||
1949  | 
lemma dvd_minus_self:  | 
|
1950  | 
fixes m n :: nat  | 
|
1951  | 
shows "m dvd n - m \<longleftrightarrow> n < m \<or> m dvd n"  | 
|
1952  | 
by (cases "n < m") (auto elim!: dvdE simp add: not_less le_imp_diff_is_add)  | 
|
1953  | 
||
1954  | 
lemma dvd_minus_add:  | 
|
1955  | 
fixes m n q r :: nat  | 
|
1956  | 
assumes "q \<le> n" "q \<le> r * m"  | 
|
1957  | 
shows "m dvd n - q \<longleftrightarrow> m dvd n + (r * m - q)"  | 
|
1958  | 
proof -  | 
|
1959  | 
have "m dvd n - q \<longleftrightarrow> m dvd r * m + (n - q)"  | 
|
| 
58649
 
a62065b5e1e2
generalized and consolidated some theorems concerning divisibility
 
haftmann 
parents: 
58647 
diff
changeset
 | 
1960  | 
using dvd_add_times_triv_left_iff [of m r] by simp  | 
| 
53374
 
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
 
wenzelm 
parents: 
52729 
diff
changeset
 | 
1961  | 
also from assms have "\<dots> \<longleftrightarrow> m dvd r * m + n - q" by simp  | 
| 
 
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
 
wenzelm 
parents: 
52729 
diff
changeset
 | 
1962  | 
also from assms have "\<dots> \<longleftrightarrow> m dvd (r * m - q) + n" by simp  | 
| 
57512
 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 
haftmann 
parents: 
57492 
diff
changeset
 | 
1963  | 
also have "\<dots> \<longleftrightarrow> m dvd n + (r * m - q)" by (simp add: add.commute)  | 
| 51173 | 1964  | 
finally show ?thesis .  | 
1965  | 
qed  | 
|
1966  | 
||
| 
33274
 
b6ff7db522b5
moved lemmas for dvd on nat to theories Nat and Power
 
haftmann 
parents: 
32772 
diff
changeset
 | 
1967  | 
|
| 62365 | 1968  | 
subsection \<open>Aliasses\<close>  | 
| 44817 | 1969  | 
|
1970  | 
lemma nat_mult_1: "(1::nat) * n = n"  | 
|
| 58647 | 1971  | 
by (fact mult_1_left)  | 
| 
60562
 
24af00b010cf
Amalgamation of the class comm_semiring_1_diff_distrib into comm_semiring_1_cancel. Moving axiom le_add_diff_inverse2 from semiring_numeral_div to linordered_semidom.
 
paulson <lp15@cam.ac.uk> 
parents: 
60427 
diff
changeset
 | 
1972  | 
|
| 44817 | 1973  | 
lemma nat_mult_1_right: "n * (1::nat) = n"  | 
| 58647 | 1974  | 
by (fact mult_1_right)  | 
1975  | 
||
| 62365 | 1976  | 
lemma nat_add_left_cancel:  | 
1977  | 
fixes k m n :: nat  | 
|
1978  | 
shows "k + m = k + n \<longleftrightarrow> m = n"  | 
|
1979  | 
by (fact add_left_cancel)  | 
|
1980  | 
||
1981  | 
lemma nat_add_right_cancel:  | 
|
1982  | 
fixes k m n :: nat  | 
|
1983  | 
shows "m + k = n + k \<longleftrightarrow> m = n"  | 
|
1984  | 
by (fact add_right_cancel)  | 
|
1985  | 
||
1986  | 
lemma diff_mult_distrib:  | 
|
1987  | 
"((m::nat) - n) * k = (m * k) - (n * k)"  | 
|
1988  | 
by (fact left_diff_distrib')  | 
|
1989  | 
||
1990  | 
lemma diff_mult_distrib2:  | 
|
1991  | 
"k * ((m::nat) - n) = (k * m) - (k * n)"  | 
|
1992  | 
by (fact right_diff_distrib')  | 
|
1993  | 
||
1994  | 
lemma le_add_diff: "k \<le> (n::nat) ==> m \<le> n + m - k"  | 
|
1995  | 
by (fact le_add_diff) \<comment> \<open>FIXME delete\<close>  | 
|
1996  | 
||
1997  | 
lemma le_diff_conv2: "k \<le> j ==> (i \<le> j-k) = (i+k \<le> (j::nat))"  | 
|
1998  | 
by (fact le_diff_conv2) \<comment> \<open>FIXME delete\<close>  | 
|
1999  | 
||
2000  | 
lemma diff_self_eq_0 [simp]: "(m::nat) - m = 0"  | 
|
2001  | 
by (fact diff_cancel)  | 
|
2002  | 
||
2003  | 
lemma diff_diff_left [simp]: "(i::nat) - j - k = i - (j + k)"  | 
|
2004  | 
by (fact diff_diff_add)  | 
|
2005  | 
||
2006  | 
lemma diff_commute: "(i::nat) - j - k = i - k - j"  | 
|
2007  | 
by (fact diff_right_commute)  | 
|
2008  | 
||
2009  | 
lemma diff_add_inverse: "(n + m) - n = (m::nat)"  | 
|
2010  | 
by (fact add_diff_cancel_left')  | 
|
2011  | 
||
2012  | 
lemma diff_add_inverse2: "(m + n) - n = (m::nat)"  | 
|
2013  | 
by (fact add_diff_cancel_right')  | 
|
2014  | 
||
2015  | 
lemma diff_cancel: "(k + m) - (k + n) = m - (n::nat)"  | 
|
2016  | 
by (fact add_diff_cancel_left)  | 
|
2017  | 
||
2018  | 
lemma diff_cancel2: "(m + k) - (n + k) = m - (n::nat)"  | 
|
2019  | 
by (fact add_diff_cancel_right)  | 
|
2020  | 
||
2021  | 
lemma diff_add_0: "n - (n + m) = (0::nat)"  | 
|
2022  | 
by (fact diff_add_zero)  | 
|
2023  | 
||
2024  | 
lemma add_mult_distrib2: "k * (m + n) = (k * m) + ((k * n)::nat)"  | 
|
2025  | 
by (fact distrib_left)  | 
|
2026  | 
||
2027  | 
lemmas nat_distrib =  | 
|
2028  | 
add_mult_distrib distrib_left diff_mult_distrib diff_mult_distrib2  | 
|
2029  | 
||
| 44817 | 2030  | 
|
| 60758 | 2031  | 
subsection \<open>Size of a datatype value\<close>  | 
| 25193 | 2032  | 
|
| 29608 | 2033  | 
class size =  | 
| 61799 | 2034  | 
fixes size :: "'a \<Rightarrow> nat" \<comment> \<open>see further theory \<open>Wellfounded\<close>\<close>  | 
| 23852 | 2035  | 
|
| 
58377
 
c6f93b8d2d8e
moved old 'size' generator together with 'old_datatype'
 
blanchet 
parents: 
58306 
diff
changeset
 | 
2036  | 
instantiation nat :: size  | 
| 
 
c6f93b8d2d8e
moved old 'size' generator together with 'old_datatype'
 
blanchet 
parents: 
58306 
diff
changeset
 | 
2037  | 
begin  | 
| 
 
c6f93b8d2d8e
moved old 'size' generator together with 'old_datatype'
 
blanchet 
parents: 
58306 
diff
changeset
 | 
2038  | 
|
| 
 
c6f93b8d2d8e
moved old 'size' generator together with 'old_datatype'
 
blanchet 
parents: 
58306 
diff
changeset
 | 
2039  | 
definition size_nat where  | 
| 61076 | 2040  | 
[simp, code]: "size (n::nat) = n"  | 
| 
58377
 
c6f93b8d2d8e
moved old 'size' generator together with 'old_datatype'
 
blanchet 
parents: 
58306 
diff
changeset
 | 
2041  | 
|
| 
 
c6f93b8d2d8e
moved old 'size' generator together with 'old_datatype'
 
blanchet 
parents: 
58306 
diff
changeset
 | 
2042  | 
instance ..  | 
| 
 
c6f93b8d2d8e
moved old 'size' generator together with 'old_datatype'
 
blanchet 
parents: 
58306 
diff
changeset
 | 
2043  | 
|
| 
 
c6f93b8d2d8e
moved old 'size' generator together with 'old_datatype'
 
blanchet 
parents: 
58306 
diff
changeset
 | 
2044  | 
end  | 
| 
 
c6f93b8d2d8e
moved old 'size' generator together with 'old_datatype'
 
blanchet 
parents: 
58306 
diff
changeset
 | 
2045  | 
|
| 
 
c6f93b8d2d8e
moved old 'size' generator together with 'old_datatype'
 
blanchet 
parents: 
58306 
diff
changeset
 | 
2046  | 
|
| 60758 | 2047  | 
subsection \<open>Code module namespace\<close>  | 
| 33364 | 2048  | 
|
| 
52435
 
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
 
haftmann 
parents: 
52289 
diff
changeset
 | 
2049  | 
code_identifier  | 
| 
 
6646bb548c6b
migration from code_(const|type|class|instance) to code_printing and from code_module to code_identifier
 
haftmann 
parents: 
52289 
diff
changeset
 | 
2050  | 
code_module Nat \<rightharpoonup> (SML) Arith and (OCaml) Arith and (Haskell) Arith  | 
| 33364 | 2051  | 
|
| 
47108
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46351 
diff
changeset
 | 
2052  | 
hide_const (open) of_nat_aux  | 
| 
 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 
huffman 
parents: 
46351 
diff
changeset
 | 
2053  | 
|
| 25193 | 2054  | 
end  |