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