src/HOL/Nat.thy
author wenzelm
Wed, 08 Nov 2006 13:48:29 +0100
changeset 21243 afffe1f72143
parent 21191 c00161fbf990
child 21252 9bffcdfd7553
permissions -rw-r--r--
removed theory NatArith (now part of Nat);
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     1
(*  Title:      HOL/Nat.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     2
    ID:         $Id$
21243
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
     3
    Author:     Tobias Nipkow and Lawrence C Paulson and Markus Wenzel
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     4
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents: 7702
diff changeset
     5
Type "nat" is a linear order, and a datatype; arithmetic operators + -
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents: 7702
diff changeset
     6
and * (for div, mod and dvd, see theory Divides).
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     7
*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     8
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
     9
header {* Natural numbers *}
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    10
15131
c69542757a4d New theory header syntax.
nipkow
parents: 14740
diff changeset
    11
theory Nat
15140
322485b816ac import -> imports
nipkow
parents: 15131
diff changeset
    12
imports Wellfounded_Recursion Ring_and_Field
21243
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
    13
uses ("arith_data.ML")
15131
c69542757a4d New theory header syntax.
nipkow
parents: 14740
diff changeset
    14
begin
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    15
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    16
subsection {* Type @{text ind} *}
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    17
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    18
typedecl ind
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    19
19573
340c466c9605 axiomatization;
wenzelm
parents: 18702
diff changeset
    20
axiomatization
340c466c9605 axiomatization;
wenzelm
parents: 18702
diff changeset
    21
  Zero_Rep :: ind and
340c466c9605 axiomatization;
wenzelm
parents: 18702
diff changeset
    22
  Suc_Rep :: "ind => ind"
340c466c9605 axiomatization;
wenzelm
parents: 18702
diff changeset
    23
where
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    24
  -- {* the axiom of infinity in 2 parts *}
19573
340c466c9605 axiomatization;
wenzelm
parents: 18702
diff changeset
    25
  inj_Suc_Rep:          "inj Suc_Rep" and
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
    26
  Suc_Rep_not_Zero_Rep: "Suc_Rep x \<noteq> Zero_Rep"
19573
340c466c9605 axiomatization;
wenzelm
parents: 18702
diff changeset
    27
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    28
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    29
subsection {* Type nat *}
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    30
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    31
text {* Type definition *}
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    32
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    33
consts
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    34
  Nat :: "ind set"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    35
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    36
inductive Nat
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    37
intros
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    38
  Zero_RepI: "Zero_Rep : Nat"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    39
  Suc_RepI: "i : Nat ==> Suc_Rep i : Nat"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    40
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    41
global
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    42
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    43
typedef (open Nat)
21243
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
    44
  nat = Nat
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
    45
proof
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
    46
  show "Zero_Rep : Nat" by (rule Nat.Zero_RepI)
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
    47
qed
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    48
14691
e1eedc8cad37 tuned instance statements;
wenzelm
parents: 14348
diff changeset
    49
instance nat :: "{ord, zero, one}" ..
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    50
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    51
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    52
text {* Abstract constants and syntax *}
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    53
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    54
consts
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    55
  Suc :: "nat => nat"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    56
  pred_nat :: "(nat * nat) set"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    57
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    58
local
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    59
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    60
defs
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    61
  Zero_nat_def: "0 == Abs_Nat Zero_Rep"
18648
22f96cd085d5 tidied, and giving theorems names
paulson
parents: 17702
diff changeset
    62
  Suc_def:      "Suc == (%n. Abs_Nat (Suc_Rep (Rep_Nat n)))"
22f96cd085d5 tidied, and giving theorems names
paulson
parents: 17702
diff changeset
    63
  One_nat_def:  "1 == Suc 0"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    64
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    65
  -- {* nat operations *}
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    66
  pred_nat_def: "pred_nat == {(m, n). n = Suc m}"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    67
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    68
  less_def: "m < n == (m, n) : trancl pred_nat"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    69
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
    70
  le_def: "m \<le> (n::nat) == ~ (n < m)"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    71
18648
22f96cd085d5 tidied, and giving theorems names
paulson
parents: 17702
diff changeset
    72
declare One_nat_def [simp]
22f96cd085d5 tidied, and giving theorems names
paulson
parents: 17702
diff changeset
    73
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    74
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    75
text {* Induction *}
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    76
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    77
theorem nat_induct: "P 0 ==> (!!n. P n ==> P (Suc n)) ==> P n"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    78
  apply (unfold Zero_nat_def Suc_def)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    79
  apply (rule Rep_Nat_inverse [THEN subst]) -- {* types force good instantiation *}
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    80
  apply (erule Rep_Nat [THEN Nat.induct])
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 16796
diff changeset
    81
  apply (iprover elim: Abs_Nat_inverse [THEN subst])
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    82
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    83
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    84
text {* Distinctness of constructors *}
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    85
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
    86
lemma Suc_not_Zero [iff]: "Suc m \<noteq> 0"
15413
901d1bfedf09 removal of archaic Abs/Rep proofs
paulson
parents: 15341
diff changeset
    87
  by (simp add: Zero_nat_def Suc_def Abs_Nat_inject Rep_Nat Suc_RepI Zero_RepI
901d1bfedf09 removal of archaic Abs/Rep proofs
paulson
parents: 15341
diff changeset
    88
                Suc_Rep_not_Zero_Rep) 
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    89
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
    90
lemma Zero_not_Suc [iff]: "0 \<noteq> Suc m"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    91
  by (rule not_sym, rule Suc_not_Zero not_sym)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    92
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    93
lemma Suc_neq_Zero: "Suc m = 0 ==> R"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    94
  by (rule notE, rule Suc_not_Zero)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    95
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    96
lemma Zero_neq_Suc: "0 = Suc m ==> R"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    97
  by (rule Suc_neq_Zero, erule sym)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    98
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
    99
text {* Injectiveness of @{term Suc} *}
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   100
16733
236dfafbeb63 linear arithmetic now takes "&" in assumptions apart.
nipkow
parents: 16635
diff changeset
   101
lemma inj_Suc[simp]: "inj_on Suc N"
15413
901d1bfedf09 removal of archaic Abs/Rep proofs
paulson
parents: 15341
diff changeset
   102
  by (simp add: Suc_def inj_on_def Abs_Nat_inject Rep_Nat Suc_RepI 
901d1bfedf09 removal of archaic Abs/Rep proofs
paulson
parents: 15341
diff changeset
   103
                inj_Suc_Rep [THEN inj_eq] Rep_Nat_inject) 
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   104
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   105
lemma Suc_inject: "Suc x = Suc y ==> x = y"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   106
  by (rule inj_Suc [THEN injD])
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   107
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   108
lemma Suc_Suc_eq [iff]: "(Suc m = Suc n) = (m = n)"
15413
901d1bfedf09 removal of archaic Abs/Rep proofs
paulson
parents: 15341
diff changeset
   109
  by (rule inj_Suc [THEN inj_eq])
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   110
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   111
lemma nat_not_singleton: "(\<forall>x. x = (0::nat)) = False"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   112
  by auto
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   113
21243
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
   114
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
   115
text {* size of a datatype value; overloaded *}
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
   116
consts size :: "'a => nat"
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
   117
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   118
text {* @{typ nat} is a datatype *}
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents: 7702
diff changeset
   119
5188
633ec5f6c155 Declaration of type 'nat' as a datatype (this allows usage of
berghofe
parents: 4640
diff changeset
   120
rep_datatype nat
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   121
  distinct  Suc_not_Zero Zero_not_Suc
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   122
  inject    Suc_Suc_eq
20713
823967ef47f1 renamed 0 and 1 to HOL.zero and HOL.one respectivly; introduced corresponding syntactic classes
haftmann
parents: 20699
diff changeset
   123
  induction nat_induct [case_names 0 Suc]
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   124
21043
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   125
text {* fix syntax translation for nat case *}
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   126
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   127
setup {*
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   128
let
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   129
  val thy = the_context ();
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   130
  val info = DatatypePackage.the_datatype thy "nat";
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   131
  val constrs = (#3 o snd o hd o #descr) info;
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   132
  val constrs' = ["0", "Suc"];
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   133
  val case_name = Sign.extern_const thy (#case_name info);
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   134
  fun nat_case_tr' context ts =
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   135
    if length ts <> length constrs + 1 then raise Match else
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   136
    let
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   137
      val (fs, x) = split_last ts;
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   138
      fun strip_abs 0 t = ([], t)
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   139
        | strip_abs i (Abs p) =
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   140
          let val (x, u) = Syntax.atomic_abs_tr' p
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   141
          in apfst (cons x) (strip_abs (i-1) u) end
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   142
        | strip_abs i (Const ("split", _) $ t) = (case strip_abs (i+1) t of
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   143
            (v :: v' :: vs, u) => (Syntax.const "Pair" $ v $ v' :: vs, u));
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   144
      fun is_dependent i t =
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   145
        let val k = length (strip_abs_vars t) - i
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   146
        in k < 0 orelse exists (fn j => j >= k)
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   147
          (loose_bnos (strip_abs_body t))
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   148
        end;
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   149
      val cases = map (fn (((cname, dts), cname'), t) =>
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   150
        (cname', strip_abs (length dts) t, is_dependent (length dts) t))
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   151
        (constrs ~~ constrs' ~~ fs);
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   152
      fun count_cases (_, _, true) = I
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   153
        | count_cases (cname, (_, body), false) =
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   154
            AList.map_default (op = : term * term -> bool)
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   155
              (body, []) (cons cname)
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   156
      val cases' = sort (int_ord o swap o pairself (length o snd))
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   157
        (fold_rev count_cases cases []);
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   158
      fun mk_case1 (cname, (vs, body), _) = Syntax.const "_case1" $
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   159
        list_comb (Syntax.const cname, vs) $ body;
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   160
      fun is_undefined (Const ("undefined", _)) = true
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   161
        | is_undefined _ = false;
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   162
    in
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   163
      Syntax.const "_case_syntax" $ x $
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   164
        foldr1 (fn (t, u) => Syntax.const "_case2" $ t $ u) (map mk_case1
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   165
          (case find_first (is_undefined o fst) cases' of
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   166
             SOME (_, cnames) =>
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   167
             if length cnames = length constrs then [hd cases]
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   168
             else filter_out (fn (_, (_, body), _) => is_undefined body) cases
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   169
           | NONE => case cases' of
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   170
             [] => cases
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   171
           | (default, cnames) :: _ =>
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   172
             if length cnames = 1 then cases
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   173
             else if length cnames = length constrs then
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   174
               [hd cases, ("dummy_pattern", ([], default), false)]
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   175
             else
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   176
               filter_out (fn (cname, _, _) => cname mem cnames) cases @
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   177
               [("dummy_pattern", ([], default), false)]))
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   178
    end
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   179
in
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   180
  Theory.add_advanced_trfuns ([], [], [(case_name, nat_case_tr')], [])
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   181
end
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   182
*}
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
   183
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   184
lemma n_not_Suc_n: "n \<noteq> Suc n"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   185
  by (induct n) simp_all
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   186
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   187
lemma Suc_n_not_n: "Suc t \<noteq> t"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   188
  by (rule not_sym, rule n_not_Suc_n)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   189
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   190
text {* A special form of induction for reasoning
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   191
  about @{term "m < n"} and @{term "m - n"} *}
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   192
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   193
theorem diff_induct: "(!!x. P x 0) ==> (!!y. P 0 (Suc y)) ==>
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   194
    (!!x y. P x y ==> P (Suc x) (Suc y)) ==> P m n"
14208
144f45277d5a misc tidying
paulson
parents: 14193
diff changeset
   195
  apply (rule_tac x = m in spec)
15251
bb6f072c8d10 converted some induct_tac to induct
paulson
parents: 15140
diff changeset
   196
  apply (induct n)
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   197
  prefer 2
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   198
  apply (rule allI)
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 16796
diff changeset
   199
  apply (induct_tac x, iprover+)
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   200
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   201
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   202
subsection {* Basic properties of "less than" *}
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   203
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   204
lemma wf_pred_nat: "wf pred_nat"
14208
144f45277d5a misc tidying
paulson
parents: 14193
diff changeset
   205
  apply (unfold wf_def pred_nat_def, clarify)
144f45277d5a misc tidying
paulson
parents: 14193
diff changeset
   206
  apply (induct_tac x, blast+)
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   207
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   208
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   209
lemma wf_less: "wf {(x, y::nat). x < y}"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   210
  apply (unfold less_def)
14208
144f45277d5a misc tidying
paulson
parents: 14193
diff changeset
   211
  apply (rule wf_pred_nat [THEN wf_trancl, THEN wf_subset], blast)
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   212
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   213
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   214
lemma less_eq: "((m, n) : pred_nat^+) = (m < n)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   215
  apply (unfold less_def)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   216
  apply (rule refl)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   217
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   218
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   219
subsubsection {* Introduction properties *}
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   220
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   221
lemma less_trans: "i < j ==> j < k ==> i < (k::nat)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   222
  apply (unfold less_def)
14208
144f45277d5a misc tidying
paulson
parents: 14193
diff changeset
   223
  apply (rule trans_trancl [THEN transD], assumption+)
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   224
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   225
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   226
lemma lessI [iff]: "n < Suc n"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   227
  apply (unfold less_def pred_nat_def)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   228
  apply (simp add: r_into_trancl)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   229
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   230
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   231
lemma less_SucI: "i < j ==> i < Suc j"
14208
144f45277d5a misc tidying
paulson
parents: 14193
diff changeset
   232
  apply (rule less_trans, assumption)
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   233
  apply (rule lessI)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   234
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   235
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   236
lemma zero_less_Suc [iff]: "0 < Suc n"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   237
  apply (induct n)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   238
  apply (rule lessI)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   239
  apply (erule less_trans)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   240
  apply (rule lessI)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   241
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   242
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   243
subsubsection {* Elimination properties *}
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   244
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   245
lemma less_not_sym: "n < m ==> ~ m < (n::nat)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   246
  apply (unfold less_def)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   247
  apply (blast intro: wf_pred_nat wf_trancl [THEN wf_asym])
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   248
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   249
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   250
lemma less_asym:
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   251
  assumes h1: "(n::nat) < m" and h2: "~ P ==> m < n" shows P
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   252
  apply (rule contrapos_np)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   253
  apply (rule less_not_sym)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   254
  apply (rule h1)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   255
  apply (erule h2)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   256
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   257
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   258
lemma less_not_refl: "~ n < (n::nat)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   259
  apply (unfold less_def)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   260
  apply (rule wf_pred_nat [THEN wf_trancl, THEN wf_not_refl])
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   261
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   262
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   263
lemma less_irrefl [elim!]: "(n::nat) < n ==> R"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   264
  by (rule notE, rule less_not_refl)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   265
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   266
lemma less_not_refl2: "n < m ==> m \<noteq> (n::nat)" by blast
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   267
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   268
lemma less_not_refl3: "(s::nat) < t ==> s \<noteq> t"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   269
  by (rule not_sym, rule less_not_refl2)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   270
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   271
lemma lessE:
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   272
  assumes major: "i < k"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   273
  and p1: "k = Suc i ==> P" and p2: "!!j. i < j ==> k = Suc j ==> P"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   274
  shows P
14208
144f45277d5a misc tidying
paulson
parents: 14193
diff changeset
   275
  apply (rule major [unfolded less_def pred_nat_def, THEN tranclE], simp_all)
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   276
  apply (erule p1)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   277
  apply (rule p2)
14208
144f45277d5a misc tidying
paulson
parents: 14193
diff changeset
   278
  apply (simp add: less_def pred_nat_def, assumption)
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   279
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   280
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   281
lemma not_less0 [iff]: "~ n < (0::nat)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   282
  by (blast elim: lessE)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   283
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   284
lemma less_zeroE: "(n::nat) < 0 ==> R"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   285
  by (rule notE, rule not_less0)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   286
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   287
lemma less_SucE: assumes major: "m < Suc n"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   288
  and less: "m < n ==> P" and eq: "m = n ==> P" shows P
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   289
  apply (rule major [THEN lessE])
14208
144f45277d5a misc tidying
paulson
parents: 14193
diff changeset
   290
  apply (rule eq, blast)
144f45277d5a misc tidying
paulson
parents: 14193
diff changeset
   291
  apply (rule less, blast)
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   292
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   293
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   294
lemma less_Suc_eq: "(m < Suc n) = (m < n | m = n)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   295
  by (blast elim!: less_SucE intro: less_trans)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   296
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   297
lemma less_one [iff]: "(n < (1::nat)) = (n = 0)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   298
  by (simp add: less_Suc_eq)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   299
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   300
lemma less_Suc0 [iff]: "(n < Suc 0) = (n = 0)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   301
  by (simp add: less_Suc_eq)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   302
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   303
lemma Suc_mono: "m < n ==> Suc m < Suc n"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   304
  by (induct n) (fast elim: less_trans lessE)+
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   305
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   306
text {* "Less than" is a linear ordering *}
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   307
lemma less_linear: "m < n | m = n | n < (m::nat)"
15251
bb6f072c8d10 converted some induct_tac to induct
paulson
parents: 15140
diff changeset
   308
  apply (induct m)
bb6f072c8d10 converted some induct_tac to induct
paulson
parents: 15140
diff changeset
   309
  apply (induct n)
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   310
  apply (rule refl [THEN disjI1, THEN disjI2])
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   311
  apply (rule zero_less_Suc [THEN disjI1])
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   312
  apply (blast intro: Suc_mono less_SucI elim: lessE)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   313
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   314
14302
6c24235e8d5d *** empty log message ***
nipkow
parents: 14267
diff changeset
   315
text {* "Less than" is antisymmetric, sort of *}
6c24235e8d5d *** empty log message ***
nipkow
parents: 14267
diff changeset
   316
lemma less_antisym: "\<lbrakk> \<not> n < m; n < Suc m \<rbrakk> \<Longrightarrow> m = n"
6c24235e8d5d *** empty log message ***
nipkow
parents: 14267
diff changeset
   317
apply(simp only:less_Suc_eq)
6c24235e8d5d *** empty log message ***
nipkow
parents: 14267
diff changeset
   318
apply blast
6c24235e8d5d *** empty log message ***
nipkow
parents: 14267
diff changeset
   319
done
6c24235e8d5d *** empty log message ***
nipkow
parents: 14267
diff changeset
   320
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   321
lemma nat_neq_iff: "((m::nat) \<noteq> n) = (m < n | n < m)"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   322
  using less_linear by blast
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   323
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   324
lemma nat_less_cases: assumes major: "(m::nat) < n ==> P n m"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   325
  and eqCase: "m = n ==> P n m" and lessCase: "n<m ==> P n m"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   326
  shows "P n m"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   327
  apply (rule less_linear [THEN disjE])
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   328
  apply (erule_tac [2] disjE)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   329
  apply (erule lessCase)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   330
  apply (erule sym [THEN eqCase])
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   331
  apply (erule major)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   332
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   333
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   334
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   335
subsubsection {* Inductive (?) properties *}
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   336
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   337
lemma Suc_lessI: "m < n ==> Suc m \<noteq> n ==> Suc m < n"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   338
  apply (simp add: nat_neq_iff)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   339
  apply (blast elim!: less_irrefl less_SucE elim: less_asym)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   340
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   341
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   342
lemma Suc_lessD: "Suc m < n ==> m < n"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   343
  apply (induct n)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   344
  apply (fast intro!: lessI [THEN less_SucI] elim: less_trans lessE)+
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   345
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   346
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   347
lemma Suc_lessE: assumes major: "Suc i < k"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   348
  and minor: "!!j. i < j ==> k = Suc j ==> P" shows P
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   349
  apply (rule major [THEN lessE])
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   350
  apply (erule lessI [THEN minor])
14208
144f45277d5a misc tidying
paulson
parents: 14193
diff changeset
   351
  apply (erule Suc_lessD [THEN minor], assumption)
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   352
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   353
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   354
lemma Suc_less_SucD: "Suc m < Suc n ==> m < n"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   355
  by (blast elim: lessE dest: Suc_lessD)
4104
84433b1ab826 nat datatype_info moved to Nat.thy;
wenzelm
parents: 3370
diff changeset
   356
16635
bf7de5723c60 Moved some code lemmas from Main to Nat.
berghofe
parents: 15921
diff changeset
   357
lemma Suc_less_eq [iff, code]: "(Suc m < Suc n) = (m < n)"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   358
  apply (rule iffI)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   359
  apply (erule Suc_less_SucD)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   360
  apply (erule Suc_mono)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   361
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   362
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   363
lemma less_trans_Suc:
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   364
  assumes le: "i < j" shows "j < k ==> Suc i < k"
14208
144f45277d5a misc tidying
paulson
parents: 14193
diff changeset
   365
  apply (induct k, simp_all)
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   366
  apply (insert le)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   367
  apply (simp add: less_Suc_eq)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   368
  apply (blast dest: Suc_lessD)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   369
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   370
16635
bf7de5723c60 Moved some code lemmas from Main to Nat.
berghofe
parents: 15921
diff changeset
   371
lemma [code]: "((n::nat) < 0) = False" by simp
bf7de5723c60 Moved some code lemmas from Main to Nat.
berghofe
parents: 15921
diff changeset
   372
lemma [code]: "(0 < Suc n) = True" by simp
bf7de5723c60 Moved some code lemmas from Main to Nat.
berghofe
parents: 15921
diff changeset
   373
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   374
text {* Can be used with @{text less_Suc_eq} to get @{term "n = m | n < m"} *}
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   375
lemma not_less_eq: "(~ m < n) = (n < Suc m)"
14208
144f45277d5a misc tidying
paulson
parents: 14193
diff changeset
   376
by (rule_tac m = m and n = n in diff_induct, simp_all)
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   377
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   378
text {* Complete induction, aka course-of-values induction *}
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   379
lemma nat_less_induct:
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   380
  assumes prem: "!!n. \<forall>m::nat. m < n --> P m ==> P n" shows "P n"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   381
  apply (rule_tac a=n in wf_induct)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   382
  apply (rule wf_pred_nat [THEN wf_trancl])
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   383
  apply (rule prem)
14208
144f45277d5a misc tidying
paulson
parents: 14193
diff changeset
   384
  apply (unfold less_def, assumption)
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   385
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   386
14131
a4fc8b1af5e7 declarations moved from PreList.thy
paulson
parents: 13596
diff changeset
   387
lemmas less_induct = nat_less_induct [rule_format, case_names less]
a4fc8b1af5e7 declarations moved from PreList.thy
paulson
parents: 13596
diff changeset
   388
21243
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
   389
14131
a4fc8b1af5e7 declarations moved from PreList.thy
paulson
parents: 13596
diff changeset
   390
subsection {* Properties of "less than or equal" *}
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   391
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   392
text {* Was @{text le_eq_less_Suc}, but this orientation is more useful *}
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   393
lemma less_Suc_eq_le: "(m < Suc n) = (m \<le> n)"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   394
  by (unfold le_def, rule not_less_eq [symmetric])
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   395
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   396
lemma le_imp_less_Suc: "m \<le> n ==> m < Suc n"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   397
  by (rule less_Suc_eq_le [THEN iffD2])
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   398
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   399
lemma le0 [iff]: "(0::nat) \<le> n"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   400
  by (unfold le_def, rule not_less0)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   401
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   402
lemma Suc_n_not_le_n: "~ Suc n \<le> n"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   403
  by (simp add: le_def)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   404
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   405
lemma le_0_eq [iff]: "((i::nat) \<le> 0) = (i = 0)"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   406
  by (induct i) (simp_all add: le_def)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   407
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   408
lemma le_Suc_eq: "(m \<le> Suc n) = (m \<le> n | m = Suc n)"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   409
  by (simp del: less_Suc_eq_le add: less_Suc_eq_le [symmetric] less_Suc_eq)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   410
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   411
lemma le_SucE: "m \<le> Suc n ==> (m \<le> n ==> R) ==> (m = Suc n ==> R) ==> R"
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 16796
diff changeset
   412
  by (drule le_Suc_eq [THEN iffD1], iprover+)
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   413
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   414
lemma Suc_leI: "m < n ==> Suc(m) \<le> n"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   415
  apply (simp add: le_def less_Suc_eq)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   416
  apply (blast elim!: less_irrefl less_asym)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   417
  done -- {* formerly called lessD *}
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   418
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   419
lemma Suc_leD: "Suc(m) \<le> n ==> m \<le> n"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   420
  by (simp add: le_def less_Suc_eq)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   421
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   422
text {* Stronger version of @{text Suc_leD} *}
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   423
lemma Suc_le_lessD: "Suc m \<le> n ==> m < n"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   424
  apply (simp add: le_def less_Suc_eq)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   425
  using less_linear
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   426
  apply blast
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   427
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   428
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   429
lemma Suc_le_eq: "(Suc m \<le> n) = (m < n)"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   430
  by (blast intro: Suc_leI Suc_le_lessD)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   431
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   432
lemma le_SucI: "m \<le> n ==> m \<le> Suc n"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   433
  by (unfold le_def) (blast dest: Suc_lessD)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   434
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   435
lemma less_imp_le: "m < n ==> m \<le> (n::nat)"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   436
  by (unfold le_def) (blast elim: less_asym)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   437
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   438
text {* For instance, @{text "(Suc m < Suc n) = (Suc m \<le> n) = (m < n)"} *}
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   439
lemmas le_simps = less_imp_le less_Suc_eq_le Suc_le_eq
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   440
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   441
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   442
text {* Equivalence of @{term "m \<le> n"} and @{term "m < n | m = n"} *}
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   443
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   444
lemma le_imp_less_or_eq: "m \<le> n ==> m < n | m = (n::nat)"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   445
  apply (unfold le_def)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   446
  using less_linear
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   447
  apply (blast elim: less_irrefl less_asym)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   448
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   449
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   450
lemma less_or_eq_imp_le: "m < n | m = n ==> m \<le> (n::nat)"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   451
  apply (unfold le_def)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   452
  using less_linear
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   453
  apply (blast elim!: less_irrefl elim: less_asym)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   454
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   455
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   456
lemma le_eq_less_or_eq: "(m \<le> (n::nat)) = (m < n | m=n)"
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 16796
diff changeset
   457
  by (iprover intro: less_or_eq_imp_le le_imp_less_or_eq)
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   458
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   459
text {* Useful with @{text Blast}. *}
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   460
lemma eq_imp_le: "(m::nat) = n ==> m \<le> n"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   461
  by (rule less_or_eq_imp_le, rule disjI2)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   462
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   463
lemma le_refl: "n \<le> (n::nat)"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   464
  by (simp add: le_eq_less_or_eq)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   465
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   466
lemma le_less_trans: "[| i \<le> j; j < k |] ==> i < (k::nat)"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   467
  by (blast dest!: le_imp_less_or_eq intro: less_trans)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   468
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   469
lemma less_le_trans: "[| i < j; j \<le> k |] ==> i < (k::nat)"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   470
  by (blast dest!: le_imp_less_or_eq intro: less_trans)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   471
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   472
lemma le_trans: "[| i \<le> j; j \<le> k |] ==> i \<le> (k::nat)"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   473
  by (blast dest!: le_imp_less_or_eq intro: less_or_eq_imp_le less_trans)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   474
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   475
lemma le_anti_sym: "[| m \<le> n; n \<le> m |] ==> m = (n::nat)"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   476
  by (blast dest!: le_imp_less_or_eq elim!: less_irrefl elim: less_asym)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   477
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   478
lemma Suc_le_mono [iff]: "(Suc n \<le> Suc m) = (n \<le> m)"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   479
  by (simp add: le_simps)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   480
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   481
text {* Axiom @{text order_less_le} of class @{text order}: *}
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   482
lemma nat_less_le: "((m::nat) < n) = (m \<le> n & m \<noteq> n)"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   483
  by (simp add: le_def nat_neq_iff) (blast elim!: less_asym)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   484
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   485
lemma le_neq_implies_less: "(m::nat) \<le> n ==> m \<noteq> n ==> m < n"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   486
  by (rule iffD2, rule nat_less_le, rule conjI)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   487
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   488
text {* Axiom @{text linorder_linear} of class @{text linorder}: *}
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   489
lemma nat_le_linear: "(m::nat) \<le> n | n \<le> m"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   490
  apply (simp add: le_eq_less_or_eq)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   491
  using less_linear
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   492
  apply blast
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   493
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   494
14341
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   495
text {* Type {@typ nat} is a wellfounded linear order *}
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   496
14691
e1eedc8cad37 tuned instance statements;
wenzelm
parents: 14348
diff changeset
   497
instance nat :: "{order, linorder, wellorder}"
e1eedc8cad37 tuned instance statements;
wenzelm
parents: 14348
diff changeset
   498
  by intro_classes
e1eedc8cad37 tuned instance statements;
wenzelm
parents: 14348
diff changeset
   499
    (assumption |
e1eedc8cad37 tuned instance statements;
wenzelm
parents: 14348
diff changeset
   500
      rule le_refl le_trans le_anti_sym nat_less_le nat_le_linear wf_less)+
14341
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   501
15921
b6e345548913 Fixing a problem with lin.arith.
nipkow
parents: 15539
diff changeset
   502
lemmas linorder_neqE_nat = linorder_neqE[where 'a = nat]
b6e345548913 Fixing a problem with lin.arith.
nipkow
parents: 15539
diff changeset
   503
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   504
lemma not_less_less_Suc_eq: "~ n < m ==> (n < Suc m) = (n = m)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   505
  by (blast elim!: less_SucE)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   506
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   507
text {*
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   508
  Rewrite @{term "n < Suc m"} to @{term "n = m"}
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   509
  if @{term "~ n < m"} or @{term "m \<le> n"} hold.
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   510
  Not suitable as default simprules because they often lead to looping
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   511
*}
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   512
lemma le_less_Suc_eq: "m \<le> n ==> (n < Suc m) = (n = m)"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   513
  by (rule not_less_less_Suc_eq, rule leD)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   514
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   515
lemmas not_less_simps = not_less_less_Suc_eq le_less_Suc_eq
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   516
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   517
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   518
text {*
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   519
  Re-orientation of the equations @{text "0 = x"} and @{text "1 = x"}. 
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   520
  No longer added as simprules (they loop) 
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   521
  but via @{text reorient_simproc} in Bin
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   522
*}
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   523
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   524
text {* Polymorphic, not just for @{typ nat} *}
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   525
lemma zero_reorient: "(0 = x) = (x = 0)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   526
  by auto
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   527
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   528
lemma one_reorient: "(1 = x) = (x = 1)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   529
  by auto
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   530
21243
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
   531
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   532
subsection {* Arithmetic operators *}
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1625
diff changeset
   533
12338
de0f4a63baa5 renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents: 11451
diff changeset
   534
axclass power < type
10435
b100e8d2c355 added axclass power (from HOL.thy);
wenzelm
parents: 9436
diff changeset
   535
3370
5c5fdce3a4e4 Overloading of "^" requires new type class "power", with types "nat" and
paulson
parents: 2608
diff changeset
   536
consts
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   537
  power :: "('a::power) => nat => 'a"            (infixr "^" 80)
3370
5c5fdce3a4e4 Overloading of "^" requires new type class "power", with types "nat" and
paulson
parents: 2608
diff changeset
   538
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents: 7702
diff changeset
   539
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   540
text {* arithmetic operators @{text "+ -"} and @{text "*"} *}
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   541
14691
e1eedc8cad37 tuned instance statements;
wenzelm
parents: 14348
diff changeset
   542
instance nat :: "{plus, minus, times, power}" ..
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents: 7702
diff changeset
   543
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   544
primrec
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   545
  add_0:    "0 + n = n"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   546
  add_Suc:  "Suc m + n = Suc (m + n)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   547
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   548
primrec
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   549
  diff_0:   "m - 0 = m"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   550
  diff_Suc: "m - Suc n = (case m - n of 0 => 0 | Suc k => k)"
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents: 7702
diff changeset
   551
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents: 7702
diff changeset
   552
primrec
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   553
  mult_0:   "0 * n = 0"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   554
  mult_Suc: "Suc m * n = n + (m * n)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   555
14341
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   556
text {* These two rules ease the use of primitive recursion. 
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   557
NOTE USE OF @{text "=="} *}
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   558
lemma def_nat_rec_0: "(!!n. f n == nat_rec c h n) ==> f 0 = c"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   559
  by simp
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   560
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   561
lemma def_nat_rec_Suc: "(!!n. f n == nat_rec c h n) ==> f (Suc n) = h n (f n)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   562
  by simp
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   563
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   564
lemma not0_implies_Suc: "n \<noteq> 0 ==> \<exists>m. n = Suc m"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   565
  by (case_tac n) simp_all
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   566
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   567
lemma gr_implies_not0: "!!n::nat. m<n ==> n \<noteq> 0"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   568
  by (case_tac n) simp_all
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   569
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   570
lemma neq0_conv [iff]: "!!n::nat. (n \<noteq> 0) = (0 < n)"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   571
  by (case_tac n) simp_all
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   572
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   573
text {* This theorem is useful with @{text blast} *}
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   574
lemma gr0I: "((n::nat) = 0 ==> False) ==> 0 < n"
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 16796
diff changeset
   575
  by (rule iffD1, rule neq0_conv, iprover)
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   576
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   577
lemma gr0_conv_Suc: "(0 < n) = (\<exists>m. n = Suc m)"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   578
  by (fast intro: not0_implies_Suc)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   579
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   580
lemma not_gr0 [iff]: "!!n::nat. (~ (0 < n)) = (n = 0)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   581
  apply (rule iffI)
14208
144f45277d5a misc tidying
paulson
parents: 14193
diff changeset
   582
  apply (rule ccontr, simp_all)
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   583
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   584
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   585
lemma Suc_le_D: "(Suc n \<le> m') ==> (? m. m' = Suc m)"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   586
  by (induct m') simp_all
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   587
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   588
text {* Useful in certain inductive arguments *}
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   589
lemma less_Suc_eq_0_disj: "(m < Suc n) = (m = 0 | (\<exists>j. m = Suc j & j < n))"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   590
  by (case_tac m) simp_all
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   591
14341
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   592
lemma nat_induct2: "[|P 0; P (Suc 0); !!k. P k ==> P (Suc (Suc k))|] ==> P n"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   593
  apply (rule nat_less_induct)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   594
  apply (case_tac n)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   595
  apply (case_tac [2] nat)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   596
  apply (blast intro: less_trans)+
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   597
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   598
21243
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
   599
15341
254f6f00b60e converted to Isar script, simplifying some results
paulson
parents: 15281
diff changeset
   600
subsection {* @{text LEAST} theorems for type @{typ nat}*}
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   601
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   602
lemma Least_Suc:
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   603
     "[| P n; ~ P 0 |] ==> (LEAST n. P n) = Suc (LEAST m. P(Suc m))"
14208
144f45277d5a misc tidying
paulson
parents: 14193
diff changeset
   604
  apply (case_tac "n", auto)
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   605
  apply (frule LeastI)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   606
  apply (drule_tac P = "%x. P (Suc x) " in LeastI)
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   607
  apply (subgoal_tac " (LEAST x. P x) \<le> Suc (LEAST x. P (Suc x))")
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   608
  apply (erule_tac [2] Least_le)
14208
144f45277d5a misc tidying
paulson
parents: 14193
diff changeset
   609
  apply (case_tac "LEAST x. P x", auto)
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   610
  apply (drule_tac P = "%x. P (Suc x) " in Least_le)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   611
  apply (blast intro: order_antisym)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   612
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   613
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   614
lemma Least_Suc2:
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   615
     "[|P n; Q m; ~P 0; !k. P (Suc k) = Q k|] ==> Least P = Suc (Least Q)"
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   616
  by (erule (1) Least_Suc [THEN ssubst], simp)
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   617
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   618
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   619
subsection {* @{term min} and @{term max} *}
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   620
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   621
lemma min_0L [simp]: "min 0 n = (0::nat)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   622
  by (rule min_leastL) simp
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   623
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   624
lemma min_0R [simp]: "min n 0 = (0::nat)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   625
  by (rule min_leastR) simp
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   626
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   627
lemma min_Suc_Suc [simp]: "min (Suc m) (Suc n) = Suc (min m n)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   628
  by (simp add: min_of_mono)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   629
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   630
lemma max_0L [simp]: "max 0 n = (n::nat)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   631
  by (rule max_leastL) simp
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   632
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   633
lemma max_0R [simp]: "max n 0 = (n::nat)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   634
  by (rule max_leastR) simp
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   635
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   636
lemma max_Suc_Suc [simp]: "max (Suc m) (Suc n) = Suc(max m n)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   637
  by (simp add: max_of_mono)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   638
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   639
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   640
subsection {* Basic rewrite rules for the arithmetic operators *}
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   641
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   642
text {* Difference *}
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   643
14193
30e41f63712e Improved efficiency of code generated for + and -
berghofe
parents: 14131
diff changeset
   644
lemma diff_0_eq_0 [simp, code]: "0 - n = (0::nat)"
15251
bb6f072c8d10 converted some induct_tac to induct
paulson
parents: 15140
diff changeset
   645
  by (induct n) simp_all
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   646
14193
30e41f63712e Improved efficiency of code generated for + and -
berghofe
parents: 14131
diff changeset
   647
lemma diff_Suc_Suc [simp, code]: "Suc(m) - Suc(n) = m - n"
15251
bb6f072c8d10 converted some induct_tac to induct
paulson
parents: 15140
diff changeset
   648
  by (induct n) simp_all
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   649
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   650
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   651
text {*
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   652
  Could be (and is, below) generalized in various ways
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   653
  However, none of the generalizations are currently in the simpset,
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   654
  and I dread to think what happens if I put them in
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   655
*}
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   656
lemma Suc_pred [simp]: "0 < n ==> Suc (n - Suc 0) = n"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   657
  by (simp split add: nat.split)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   658
14193
30e41f63712e Improved efficiency of code generated for + and -
berghofe
parents: 14131
diff changeset
   659
declare diff_Suc [simp del, code del]
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   660
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   661
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   662
subsection {* Addition *}
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   663
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   664
lemma add_0_right [simp]: "m + 0 = (m::nat)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   665
  by (induct m) simp_all
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   666
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   667
lemma add_Suc_right [simp]: "m + Suc n = Suc (m + n)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   668
  by (induct m) simp_all
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   669
19890
1aad48bcc674 slight adaption for code generator
haftmann
parents: 19870
diff changeset
   670
lemma add_Suc_shift [code]: "Suc m + n = m + Suc n"
1aad48bcc674 slight adaption for code generator
haftmann
parents: 19870
diff changeset
   671
  by simp
14193
30e41f63712e Improved efficiency of code generated for + and -
berghofe
parents: 14131
diff changeset
   672
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   673
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   674
text {* Associative law for addition *}
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   675
lemma nat_add_assoc: "(m + n) + k = m + ((n + k)::nat)"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   676
  by (induct m) simp_all
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   677
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   678
text {* Commutative law for addition *}
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   679
lemma nat_add_commute: "m + n = n + (m::nat)"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   680
  by (induct m) simp_all
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   681
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   682
lemma nat_add_left_commute: "x + (y + z) = y + ((x + z)::nat)"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   683
  apply (rule mk_left_commute [of "op +"])
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   684
  apply (rule nat_add_assoc)
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   685
  apply (rule nat_add_commute)
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   686
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   687
14331
8dbbb7cf3637 re-organized numeric lemmas
paulson
parents: 14302
diff changeset
   688
lemma nat_add_left_cancel [simp]: "(k + m = k + n) = (m = (n::nat))"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   689
  by (induct k) simp_all
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   690
14331
8dbbb7cf3637 re-organized numeric lemmas
paulson
parents: 14302
diff changeset
   691
lemma nat_add_right_cancel [simp]: "(m + k = n + k) = (m=(n::nat))"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   692
  by (induct k) simp_all
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   693
14331
8dbbb7cf3637 re-organized numeric lemmas
paulson
parents: 14302
diff changeset
   694
lemma nat_add_left_cancel_le [simp]: "(k + m \<le> k + n) = (m\<le>(n::nat))"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   695
  by (induct k) simp_all
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   696
14331
8dbbb7cf3637 re-organized numeric lemmas
paulson
parents: 14302
diff changeset
   697
lemma nat_add_left_cancel_less [simp]: "(k + m < k + n) = (m<(n::nat))"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   698
  by (induct k) simp_all
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   699
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   700
text {* Reasoning about @{text "m + 0 = 0"}, etc. *}
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   701
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   702
lemma add_is_0 [iff]: "!!m::nat. (m + n = 0) = (m = 0 & n = 0)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   703
  by (case_tac m) simp_all
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   704
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   705
lemma add_is_1: "(m+n= Suc 0) = (m= Suc 0 & n=0 | m=0 & n= Suc 0)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   706
  by (case_tac m) simp_all
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   707
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   708
lemma one_is_add: "(Suc 0 = m + n) = (m = Suc 0 & n = 0 | m = 0 & n = Suc 0)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   709
  by (rule trans, rule eq_commute, rule add_is_1)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   710
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   711
lemma add_gr_0 [iff]: "!!m::nat. (0 < m + n) = (0 < m | 0 < n)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   712
  by (simp del: neq0_conv add: neq0_conv [symmetric])
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   713
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   714
lemma add_eq_self_zero: "!!m::nat. m + n = m ==> n = 0"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   715
  apply (drule add_0_right [THEN ssubst])
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   716
  apply (simp add: nat_add_assoc del: add_0_right)
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   717
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   718
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   719
16733
236dfafbeb63 linear arithmetic now takes "&" in assumptions apart.
nipkow
parents: 16635
diff changeset
   720
lemma inj_on_add_nat[simp]: "inj_on (%n::nat. n+k) N"
236dfafbeb63 linear arithmetic now takes "&" in assumptions apart.
nipkow
parents: 16635
diff changeset
   721
apply(induct k)
236dfafbeb63 linear arithmetic now takes "&" in assumptions apart.
nipkow
parents: 16635
diff changeset
   722
 apply simp
236dfafbeb63 linear arithmetic now takes "&" in assumptions apart.
nipkow
parents: 16635
diff changeset
   723
apply(drule comp_inj_on[OF _ inj_Suc])
236dfafbeb63 linear arithmetic now takes "&" in assumptions apart.
nipkow
parents: 16635
diff changeset
   724
apply (simp add:o_def)
236dfafbeb63 linear arithmetic now takes "&" in assumptions apart.
nipkow
parents: 16635
diff changeset
   725
done
236dfafbeb63 linear arithmetic now takes "&" in assumptions apart.
nipkow
parents: 16635
diff changeset
   726
236dfafbeb63 linear arithmetic now takes "&" in assumptions apart.
nipkow
parents: 16635
diff changeset
   727
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   728
subsection {* Multiplication *}
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   729
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   730
text {* right annihilation in product *}
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   731
lemma mult_0_right [simp]: "(m::nat) * 0 = 0"
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   732
  by (induct m) simp_all
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   733
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   734
text {* right successor law for multiplication *}
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   735
lemma mult_Suc_right [simp]: "m * Suc n = m + (m * n)"
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   736
  by (induct m) (simp_all add: nat_add_left_commute)
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   737
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   738
text {* Commutative law for multiplication *}
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   739
lemma nat_mult_commute: "m * n = n * (m::nat)"
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   740
  by (induct m) simp_all
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   741
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   742
text {* addition distributes over multiplication *}
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   743
lemma add_mult_distrib: "(m + n) * k = (m * k) + ((n * k)::nat)"
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   744
  by (induct m) (simp_all add: nat_add_assoc nat_add_left_commute)
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   745
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   746
lemma add_mult_distrib2: "k * (m + n) = (k * m) + ((k * n)::nat)"
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   747
  by (induct m) (simp_all add: nat_add_assoc)
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   748
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   749
text {* Associative law for multiplication *}
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   750
lemma nat_mult_assoc: "(m * n) * k = m * ((n * k)::nat)"
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   751
  by (induct m) (simp_all add: add_mult_distrib)
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   752
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   753
14740
c8e1937110c2 fixed latex problems
nipkow
parents: 14738
diff changeset
   754
text{*The naturals form a @{text comm_semiring_1_cancel}*}
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14691
diff changeset
   755
instance nat :: comm_semiring_1_cancel
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   756
proof
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   757
  fix i j k :: nat
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   758
  show "(i + j) + k = i + (j + k)" by (rule nat_add_assoc)
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   759
  show "i + j = j + i" by (rule nat_add_commute)
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   760
  show "0 + i = i" by simp
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   761
  show "(i * j) * k = i * (j * k)" by (rule nat_mult_assoc)
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   762
  show "i * j = j * i" by (rule nat_mult_commute)
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   763
  show "1 * i = i" by simp
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   764
  show "(i + j) * k = i * k + j * k" by (simp add: add_mult_distrib)
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   765
  show "0 \<noteq> (1::nat)" by simp
14341
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   766
  assume "k+i = k+j" thus "i=j" by simp
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   767
qed
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   768
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   769
lemma mult_is_0 [simp]: "((m::nat) * n = 0) = (m=0 | n=0)"
15251
bb6f072c8d10 converted some induct_tac to induct
paulson
parents: 15140
diff changeset
   770
  apply (induct m)
14341
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   771
  apply (induct_tac [2] n, simp_all)
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   772
  done
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   773
21243
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
   774
14341
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   775
subsection {* Monotonicity of Addition *}
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   776
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   777
text {* strict, in 1st argument *}
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   778
lemma add_less_mono1: "i < j ==> i + k < j + (k::nat)"
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   779
  by (induct k) simp_all
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   780
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   781
text {* strict, in both arguments *}
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   782
lemma add_less_mono: "[|i < j; k < l|] ==> i + k < j + (l::nat)"
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   783
  apply (rule add_less_mono1 [THEN less_trans], assumption+)
15251
bb6f072c8d10 converted some induct_tac to induct
paulson
parents: 15140
diff changeset
   784
  apply (induct j, simp_all)
14341
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   785
  done
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   786
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   787
text {* Deleted @{text less_natE}; use @{text "less_imp_Suc_add RS exE"} *}
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   788
lemma less_imp_Suc_add: "m < n ==> (\<exists>k. n = Suc (m + k))"
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   789
  apply (induct n)
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   790
  apply (simp_all add: order_le_less)
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   791
  apply (blast elim!: less_SucE 
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   792
               intro!: add_0_right [symmetric] add_Suc_right [symmetric])
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   793
  done
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   794
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   795
text {* strict, in 1st argument; proof is by induction on @{text "k > 0"} *}
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   796
lemma mult_less_mono2: "(i::nat) < j ==> 0 < k ==> k * i < k * j"
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   797
  apply (erule_tac m1 = 0 in less_imp_Suc_add [THEN exE], simp)
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   798
  apply (induct_tac x) 
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   799
  apply (simp_all add: add_less_mono)
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   800
  done
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   801
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   802
14740
c8e1937110c2 fixed latex problems
nipkow
parents: 14738
diff changeset
   803
text{*The naturals form an ordered @{text comm_semiring_1_cancel}*}
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14691
diff changeset
   804
instance nat :: ordered_semidom
14341
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   805
proof
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   806
  fix i j k :: nat
14348
744c868ee0b7 Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents: 14341
diff changeset
   807
  show "0 < (1::nat)" by simp
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   808
  show "i \<le> j ==> k + i \<le> k + j" by simp
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   809
  show "i < j ==> 0 < k ==> k * i < k * j" by (simp add: mult_less_mono2)
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   810
qed
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   811
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   812
lemma nat_mult_1: "(1::nat) * n = n"
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   813
  by simp
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   814
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   815
lemma nat_mult_1_right: "n * (1::nat) = n"
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   816
  by simp
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   817
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   818
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   819
subsection {* Additional theorems about "less than" *}
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   820
19870
ef037d1b32d1 new results
paulson
parents: 19573
diff changeset
   821
text{*An induction rule for estabilishing binary relations*}
ef037d1b32d1 new results
paulson
parents: 19573
diff changeset
   822
lemma less_Suc_induct: 
ef037d1b32d1 new results
paulson
parents: 19573
diff changeset
   823
  assumes less:  "i < j"
ef037d1b32d1 new results
paulson
parents: 19573
diff changeset
   824
     and  step:  "!!i. P i (Suc i)"
ef037d1b32d1 new results
paulson
parents: 19573
diff changeset
   825
     and  trans: "!!i j k. P i j ==> P j k ==> P i k"
ef037d1b32d1 new results
paulson
parents: 19573
diff changeset
   826
  shows "P i j"
ef037d1b32d1 new results
paulson
parents: 19573
diff changeset
   827
proof -
ef037d1b32d1 new results
paulson
parents: 19573
diff changeset
   828
  from less obtain k where j: "j = Suc(i+k)" by (auto dest: less_imp_Suc_add) 
ef037d1b32d1 new results
paulson
parents: 19573
diff changeset
   829
  have "P i (Suc(i+k))"
ef037d1b32d1 new results
paulson
parents: 19573
diff changeset
   830
  proof (induct k)
ef037d1b32d1 new results
paulson
parents: 19573
diff changeset
   831
    case 0 
ef037d1b32d1 new results
paulson
parents: 19573
diff changeset
   832
    show ?case by (simp add: step) 
ef037d1b32d1 new results
paulson
parents: 19573
diff changeset
   833
  next
ef037d1b32d1 new results
paulson
parents: 19573
diff changeset
   834
    case (Suc k)
ef037d1b32d1 new results
paulson
parents: 19573
diff changeset
   835
    thus ?case by (auto intro: prems)
ef037d1b32d1 new results
paulson
parents: 19573
diff changeset
   836
  qed
ef037d1b32d1 new results
paulson
parents: 19573
diff changeset
   837
  thus "P i j" by (simp add: j) 
ef037d1b32d1 new results
paulson
parents: 19573
diff changeset
   838
qed
ef037d1b32d1 new results
paulson
parents: 19573
diff changeset
   839
ef037d1b32d1 new results
paulson
parents: 19573
diff changeset
   840
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   841
text {* A [clumsy] way of lifting @{text "<"}
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   842
  monotonicity to @{text "\<le>"} monotonicity *}
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   843
lemma less_mono_imp_le_mono:
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   844
  assumes lt_mono: "!!i j::nat. i < j ==> f i < f j"
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   845
  and le: "i \<le> j" shows "f i \<le> ((f j)::nat)" using le
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   846
  apply (simp add: order_le_less)
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   847
  apply (blast intro!: lt_mono)
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   848
  done
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   849
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   850
text {* non-strict, in 1st argument *}
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   851
lemma add_le_mono1: "i \<le> j ==> i + k \<le> j + (k::nat)"
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   852
  by (rule add_right_mono)
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   853
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   854
text {* non-strict, in both arguments *}
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   855
lemma add_le_mono: "[| i \<le> j;  k \<le> l |] ==> i + k \<le> j + (l::nat)"
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   856
  by (rule add_mono)
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   857
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   858
lemma le_add2: "n \<le> ((m + n)::nat)"
14341
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   859
  by (insert add_right_mono [of 0 m n], simp) 
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   860
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   861
lemma le_add1: "n \<le> ((n + m)::nat)"
14341
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   862
  by (simp add: add_commute, rule le_add2)
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   863
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   864
lemma less_add_Suc1: "i < Suc (i + m)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   865
  by (rule le_less_trans, rule le_add1, rule lessI)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   866
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   867
lemma less_add_Suc2: "i < Suc (m + i)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   868
  by (rule le_less_trans, rule le_add2, rule lessI)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   869
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   870
lemma less_iff_Suc_add: "(m < n) = (\<exists>k. n = Suc (m + k))"
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 16796
diff changeset
   871
  by (iprover intro!: less_add_Suc1 less_imp_Suc_add)
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   872
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   873
lemma trans_le_add1: "(i::nat) \<le> j ==> i \<le> j + m"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   874
  by (rule le_trans, assumption, rule le_add1)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   875
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   876
lemma trans_le_add2: "(i::nat) \<le> j ==> i \<le> m + j"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   877
  by (rule le_trans, assumption, rule le_add2)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   878
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   879
lemma trans_less_add1: "(i::nat) < j ==> i < j + m"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   880
  by (rule less_le_trans, assumption, rule le_add1)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   881
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   882
lemma trans_less_add2: "(i::nat) < j ==> i < m + j"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   883
  by (rule less_le_trans, assumption, rule le_add2)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   884
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   885
lemma add_lessD1: "i + j < (k::nat) ==> i < k"
14341
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   886
  apply (rule le_less_trans [of _ "i+j"]) 
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   887
  apply (simp_all add: le_add1)
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   888
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   889
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   890
lemma not_add_less1 [iff]: "~ (i + j < (i::nat))"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   891
  apply (rule notI)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   892
  apply (erule add_lessD1 [THEN less_irrefl])
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   893
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   894
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   895
lemma not_add_less2 [iff]: "~ (j + i < (i::nat))"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   896
  by (simp add: add_commute not_add_less1)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   897
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   898
lemma add_leD1: "m + k \<le> n ==> m \<le> (n::nat)"
14341
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   899
  apply (rule order_trans [of _ "m+k"]) 
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   900
  apply (simp_all add: le_add1)
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
   901
  done
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   902
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   903
lemma add_leD2: "m + k \<le> n ==> k \<le> (n::nat)"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   904
  apply (simp add: add_commute)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   905
  apply (erule add_leD1)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   906
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   907
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   908
lemma add_leE: "(m::nat) + k \<le> n ==> (m \<le> n ==> k \<le> n ==> R) ==> R"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   909
  by (blast dest: add_leD1 add_leD2)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   910
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   911
text {* needs @{text "!!k"} for @{text add_ac} to work *}
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   912
lemma less_add_eq_less: "!!k::nat. k < l ==> m + l = k + n ==> m < n"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   913
  by (force simp del: add_Suc_right
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   914
    simp add: less_iff_Suc_add add_Suc_right [symmetric] add_ac)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   915
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   916
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   917
subsection {* Difference *}
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   918
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   919
lemma diff_self_eq_0 [simp]: "(m::nat) - m = 0"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   920
  by (induct m) simp_all
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   921
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   922
text {* Addition is the inverse of subtraction:
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   923
  if @{term "n \<le> m"} then @{term "n + (m - n) = m"}. *}
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   924
lemma add_diff_inverse: "~  m < n ==> n + (m - n) = (m::nat)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   925
  by (induct m n rule: diff_induct) simp_all
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   926
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   927
lemma le_add_diff_inverse [simp]: "n \<le> m ==> n + (m - n) = (m::nat)"
16796
140f1e0ea846 generlization of some "nat" theorems
paulson
parents: 16733
diff changeset
   928
  by (simp add: add_diff_inverse linorder_not_less)
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   929
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   930
lemma le_add_diff_inverse2 [simp]: "n \<le> m ==> (m - n) + n = (m::nat)"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   931
  by (simp add: le_add_diff_inverse add_commute)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   932
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   933
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   934
subsection {* More results about difference *}
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   935
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   936
lemma Suc_diff_le: "n \<le> m ==> Suc m - n = Suc (m - n)"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   937
  by (induct m n rule: diff_induct) simp_all
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   938
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   939
lemma diff_less_Suc: "m - n < Suc m"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   940
  apply (induct m n rule: diff_induct)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   941
  apply (erule_tac [3] less_SucE)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   942
  apply (simp_all add: less_Suc_eq)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   943
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   944
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   945
lemma diff_le_self [simp]: "m - n \<le> (m::nat)"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   946
  by (induct m n rule: diff_induct) (simp_all add: le_SucI)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   947
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   948
lemma less_imp_diff_less: "(j::nat) < k ==> j - n < k"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   949
  by (rule le_less_trans, rule diff_le_self)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   950
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   951
lemma diff_diff_left: "(i::nat) - j - k = i - (j + k)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   952
  by (induct i j rule: diff_induct) simp_all
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   953
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   954
lemma Suc_diff_diff [simp]: "(Suc m - n) - Suc k = m - n - k"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   955
  by (simp add: diff_diff_left)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   956
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   957
lemma diff_Suc_less [simp]: "0<n ==> n - Suc i < n"
14208
144f45277d5a misc tidying
paulson
parents: 14193
diff changeset
   958
  apply (case_tac "n", safe)
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   959
  apply (simp add: le_simps)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   960
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   961
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   962
text {* This and the next few suggested by Florian Kammueller *}
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   963
lemma diff_commute: "(i::nat) - j - k = i - k - j"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   964
  by (simp add: diff_diff_left add_commute)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   965
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   966
lemma diff_add_assoc: "k \<le> (j::nat) ==> (i + j) - k = i + (j - k)"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   967
  by (induct j k rule: diff_induct) simp_all
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   968
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   969
lemma diff_add_assoc2: "k \<le> (j::nat) ==> (j + i) - k = (j - k) + i"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   970
  by (simp add: add_commute diff_add_assoc)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   971
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   972
lemma diff_add_inverse: "(n + m) - n = (m::nat)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   973
  by (induct n) simp_all
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   974
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   975
lemma diff_add_inverse2: "(m + n) - n = (m::nat)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   976
  by (simp add: diff_add_assoc)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   977
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   978
lemma le_imp_diff_is_add: "i \<le> (j::nat) ==> (j - i = k) = (j = k + i)"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   979
  apply safe
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   980
  apply (simp_all add: diff_add_inverse2)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   981
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   982
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   983
lemma diff_is_0_eq [simp]: "((m::nat) - n = 0) = (m \<le> n)"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   984
  by (induct m n rule: diff_induct) simp_all
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   985
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   986
lemma diff_is_0_eq' [simp]: "m \<le> n ==> (m::nat) - n = 0"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   987
  by (rule iffD2, rule diff_is_0_eq)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   988
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   989
lemma zero_less_diff [simp]: "(0 < n - (m::nat)) = (m < n)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   990
  by (induct m n rule: diff_induct) simp_all
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   991
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
   992
lemma less_imp_add_positive: "i < j  ==> \<exists>k::nat. 0 < k & i + k = j"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   993
  apply (rule_tac x = "j - i" in exI)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   994
  apply (simp (no_asm_simp) add: add_diff_inverse less_not_sym)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   995
  done
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents: 7702
diff changeset
   996
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   997
lemma zero_induct_lemma: "P k ==> (!!n. P (Suc n) ==> P n) ==> P (k - i)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   998
  apply (induct k i rule: diff_induct)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
   999
  apply (simp_all (no_asm))
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 16796
diff changeset
  1000
  apply iprover
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1001
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1002
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1003
lemma zero_induct: "P k ==> (!!n. P (Suc n) ==> P n) ==> P 0"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1004
  apply (rule diff_self_eq_0 [THEN subst])
17589
58eeffd73be1 renamed rules to iprover
nipkow
parents: 16796
diff changeset
  1005
  apply (rule zero_induct_lemma, iprover+)
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1006
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1007
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1008
lemma diff_cancel: "(k + m) - (k + n) = m - (n::nat)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1009
  by (induct k) simp_all
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1010
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1011
lemma diff_cancel2: "(m + k) - (n + k) = m - (n::nat)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1012
  by (simp add: diff_cancel add_commute)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1013
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1014
lemma diff_add_0: "n - (n + m) = (0::nat)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1015
  by (induct n) simp_all
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1016
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1017
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1018
text {* Difference distributes over multiplication *}
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1019
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1020
lemma diff_mult_distrib: "((m::nat) - n) * k = (m * k) - (n * k)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1021
  by (induct m n rule: diff_induct) (simp_all add: diff_cancel)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1022
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1023
lemma diff_mult_distrib2: "k * ((m::nat) - n) = (k * m) - (k * n)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1024
  by (simp add: diff_mult_distrib mult_commute [of k])
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1025
  -- {* NOT added as rewrites, since sometimes they are used from right-to-left *}
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1026
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1027
lemmas nat_distrib =
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1028
  add_mult_distrib add_mult_distrib2 diff_mult_distrib diff_mult_distrib2
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1029
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1030
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1031
subsection {* Monotonicity of Multiplication *}
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1032
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
  1033
lemma mult_le_mono1: "i \<le> (j::nat) ==> i * k \<le> j * k"
14341
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
  1034
  by (simp add: mult_right_mono) 
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1035
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
  1036
lemma mult_le_mono2: "i \<le> (j::nat) ==> k * i \<le> k * j"
14341
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
  1037
  by (simp add: mult_left_mono) 
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1038
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
  1039
text {* @{text "\<le>"} monotonicity, BOTH arguments *}
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
  1040
lemma mult_le_mono: "i \<le> (j::nat) ==> k \<le> l ==> i * k \<le> j * l"
14341
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
  1041
  by (simp add: mult_mono) 
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1042
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1043
lemma mult_less_mono1: "(i::nat) < j ==> 0 < k ==> i * k < j * k"
14341
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
  1044
  by (simp add: mult_strict_right_mono) 
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1045
14266
08b34c902618 conversion of integers to use Ring_and_Field;
paulson
parents: 14265
diff changeset
  1046
text{*Differs from the standard @{text zero_less_mult_iff} in that
08b34c902618 conversion of integers to use Ring_and_Field;
paulson
parents: 14265
diff changeset
  1047
      there are no negative numbers.*}
08b34c902618 conversion of integers to use Ring_and_Field;
paulson
parents: 14265
diff changeset
  1048
lemma nat_0_less_mult_iff [simp]: "(0 < (m::nat) * n) = (0 < m & 0 < n)"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1049
  apply (induct m)
14208
144f45277d5a misc tidying
paulson
parents: 14193
diff changeset
  1050
  apply (case_tac [2] n, simp_all)
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1051
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1052
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
  1053
lemma one_le_mult_iff [simp]: "(Suc 0 \<le> m * n) = (1 \<le> m & 1 \<le> n)"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1054
  apply (induct m)
14208
144f45277d5a misc tidying
paulson
parents: 14193
diff changeset
  1055
  apply (case_tac [2] n, simp_all)
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1056
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1057
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1058
lemma mult_eq_1_iff [simp]: "(m * n = Suc 0) = (m = 1 & n = 1)"
15251
bb6f072c8d10 converted some induct_tac to induct
paulson
parents: 15140
diff changeset
  1059
  apply (induct m, simp)
bb6f072c8d10 converted some induct_tac to induct
paulson
parents: 15140
diff changeset
  1060
  apply (induct n, simp, fastsimp)
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1061
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1062
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1063
lemma one_eq_mult_iff [simp]: "(Suc 0 = m * n) = (m = 1 & n = 1)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1064
  apply (rule trans)
14208
144f45277d5a misc tidying
paulson
parents: 14193
diff changeset
  1065
  apply (rule_tac [2] mult_eq_1_iff, fastsimp)
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1066
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1067
14341
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
  1068
lemma mult_less_cancel2 [simp]: "((m::nat) * k < n * k) = (0 < k & m < n)"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1069
  apply (safe intro!: mult_less_mono1)
14208
144f45277d5a misc tidying
paulson
parents: 14193
diff changeset
  1070
  apply (case_tac k, auto)
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1071
  apply (simp del: le_0_eq add: linorder_not_le [symmetric])
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1072
  apply (blast intro: mult_le_mono1)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1073
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1074
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1075
lemma mult_less_cancel1 [simp]: "(k * (m::nat) < k * n) = (0 < k & m < n)"
14341
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
  1076
  by (simp add: mult_commute [of k])
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1077
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
  1078
lemma mult_le_cancel1 [simp]: "(k * (m::nat) \<le> k * n) = (0 < k --> m \<le> n)"
14208
144f45277d5a misc tidying
paulson
parents: 14193
diff changeset
  1079
by (simp add: linorder_not_less [symmetric], auto)
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1080
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
  1081
lemma mult_le_cancel2 [simp]: "((m::nat) * k \<le> n * k) = (0 < k --> m \<le> n)"
14208
144f45277d5a misc tidying
paulson
parents: 14193
diff changeset
  1082
by (simp add: linorder_not_less [symmetric], auto)
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1083
14341
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
  1084
lemma mult_cancel2 [simp]: "(m * k = n * k) = (m = n | (k = (0::nat)))"
14208
144f45277d5a misc tidying
paulson
parents: 14193
diff changeset
  1085
  apply (cut_tac less_linear, safe, auto)
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1086
  apply (drule mult_less_mono1, assumption, simp)+
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1087
  done
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1088
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1089
lemma mult_cancel1 [simp]: "(k * m = k * n) = (m = n | (k = (0::nat)))"
14341
a09441bd4f1e Ring_and_Field now requires axiom add_left_imp_eq for semirings.
paulson
parents: 14331
diff changeset
  1090
  by (simp add: mult_commute [of k])
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1091
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1092
lemma Suc_mult_less_cancel1: "(Suc k * m < Suc k * n) = (m < n)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1093
  by (subst mult_less_cancel1) simp
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1094
14267
b963e9cee2a0 More refinements to Ring_and_Field and numerics. Conversion of Divides_lemmas
paulson
parents: 14266
diff changeset
  1095
lemma Suc_mult_le_cancel1: "(Suc k * m \<le> Suc k * n) = (m \<le> n)"
13449
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1096
  by (subst mult_le_cancel1) simp
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1097
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1098
lemma Suc_mult_cancel1: "(Suc k * m = Suc k * n) = (m = n)"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1099
  by (subst mult_cancel1) simp
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1100
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1101
text {* Lemma for @{text gcd} *}
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1102
lemma mult_eq_self_implies_10: "(m::nat) = m * n ==> n = 1 | m = 0"
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1103
  apply (drule sym)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1104
  apply (rule disjCI)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1105
  apply (rule nat_less_cases, erule_tac [2] _)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1106
  apply (fastsimp elim!: less_SucE)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1107
  apply (fastsimp dest: mult_less_mono2)
43c9ec498291 - Converted to new theory format
berghofe
parents: 12338
diff changeset
  1108
  done
9436
62bb04ab4b01 rearranged setup of arithmetic procedures, avoiding global reference values;
wenzelm
parents: 7702
diff changeset
  1109
20588
c847c56edf0c added operational equality
haftmann
parents: 20380
diff changeset
  1110
18702
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18648
diff changeset
  1111
subsection {* Code generator setup *}
7dc7dcd63224 substantial improvements in code generator
haftmann
parents: 18648
diff changeset
  1112
20355
50aaae6ae4db cleanup code generation for Numerals
haftmann
parents: 19890
diff changeset
  1113
lemma one_is_suc_zero [code inline]:
50aaae6ae4db cleanup code generation for Numerals
haftmann
parents: 19890
diff changeset
  1114
  "1 = Suc 0"
50aaae6ae4db cleanup code generation for Numerals
haftmann
parents: 19890
diff changeset
  1115
  by simp
50aaae6ae4db cleanup code generation for Numerals
haftmann
parents: 19890
diff changeset
  1116
20588
c847c56edf0c added operational equality
haftmann
parents: 20380
diff changeset
  1117
instance nat :: eq ..
c847c56edf0c added operational equality
haftmann
parents: 20380
diff changeset
  1118
c847c56edf0c added operational equality
haftmann
parents: 20380
diff changeset
  1119
lemma [code func]:
21043
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
  1120
  "Code_Generator.eq (0\<Colon>nat) 0 = True" unfolding eq_def by auto
20588
c847c56edf0c added operational equality
haftmann
parents: 20380
diff changeset
  1121
c847c56edf0c added operational equality
haftmann
parents: 20380
diff changeset
  1122
lemma [code func]:
21043
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
  1123
  "Code_Generator.eq (Suc n) (Suc m) = Code_Generator.eq n m" unfolding eq_def by auto
20588
c847c56edf0c added operational equality
haftmann
parents: 20380
diff changeset
  1124
c847c56edf0c added operational equality
haftmann
parents: 20380
diff changeset
  1125
lemma [code func]:
21043
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
  1126
  "Code_Generator.eq (Suc n) 0 = False" unfolding eq_def by auto
20588
c847c56edf0c added operational equality
haftmann
parents: 20380
diff changeset
  1127
c847c56edf0c added operational equality
haftmann
parents: 20380
diff changeset
  1128
lemma [code func]:
21043
b9b12ab00660 added explicit print translation for nat_case
haftmann
parents: 20834
diff changeset
  1129
  "Code_Generator.eq 0 (Suc m) = False" unfolding eq_def by auto
20588
c847c56edf0c added operational equality
haftmann
parents: 20380
diff changeset
  1130
21243
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1131
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1132
subsection {* Further Arithmetic Facts Concerning the Natural Numbers *}
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1133
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1134
use "arith_data.ML"
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1135
setup arith_setup
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1136
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1137
text{*The following proofs may rely on the arithmetic proof procedures.*}
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1138
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1139
lemma le_iff_add: "(m::nat) \<le> n = (\<exists>k. n = m + k)"
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1140
  by (auto simp: le_eq_less_or_eq dest: less_imp_Suc_add)
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1141
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1142
lemma pred_nat_trancl_eq_le: "((m, n) : pred_nat^*) = (m \<le> n)"
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1143
by (simp add: less_eq reflcl_trancl [symmetric]
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1144
            del: reflcl_trancl, arith)
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1145
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1146
lemma nat_diff_split:
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1147
    "P(a - b::nat) = ((a<b --> P 0) & (ALL d. a = b + d --> P d))"
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1148
    -- {* elimination of @{text -} on @{text nat} *}
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1149
  by (cases "a<b" rule: case_split)
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1150
     (auto simp add: diff_is_0_eq [THEN iffD2])
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1151
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1152
lemma nat_diff_split_asm:
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1153
    "P(a - b::nat) = (~ (a < b & ~ P 0 | (EX d. a = b + d & ~ P d)))"
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1154
    -- {* elimination of @{text -} on @{text nat} in assumptions *}
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1155
  by (simp split: nat_diff_split)
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1156
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1157
lemmas [arith_split] = nat_diff_split split_min split_max
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1158
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1159
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1160
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1161
lemma le_square: "m \<le> m * (m::nat)"
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1162
  by (induct m) auto
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1163
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1164
lemma le_cube: "(m::nat) \<le> m * (m * m)"
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1165
  by (induct m) auto
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1166
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1167
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1168
text{*Subtraction laws, mostly by Clemens Ballarin*}
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1169
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1170
lemma diff_less_mono: "[| a < (b::nat); c \<le> a |] ==> a-c < b-c"
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1171
by arith
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1172
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1173
lemma less_diff_conv: "(i < j-k) = (i+k < (j::nat))"
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1174
by arith
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1175
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1176
lemma le_diff_conv: "(j-k \<le> (i::nat)) = (j \<le> i+k)"
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1177
by arith
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1178
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1179
lemma le_diff_conv2: "k \<le> j ==> (i \<le> j-k) = (i+k \<le> (j::nat))"
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1180
by arith
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1181
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1182
lemma diff_diff_cancel [simp]: "i \<le> (n::nat) ==> n - (n - i) = i"
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1183
by arith
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1184
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1185
lemma le_add_diff: "k \<le> (n::nat) ==> m \<le> n + m - k"
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1186
by arith
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1187
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1188
(*Replaces the previous diff_less and le_diff_less, which had the stronger
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1189
  second premise n\<le>m*)
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1190
lemma diff_less[simp]: "!!m::nat. [| 0<n; 0<m |] ==> m - n < m"
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1191
by arith
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1192
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1193
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1194
(** Simplification of relational expressions involving subtraction **)
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1195
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1196
lemma diff_diff_eq: "[| k \<le> m;  k \<le> (n::nat) |] ==> ((m-k) - (n-k)) = (m-n)"
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1197
by (simp split add: nat_diff_split)
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1198
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1199
lemma eq_diff_iff: "[| k \<le> m;  k \<le> (n::nat) |] ==> (m-k = n-k) = (m=n)"
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1200
by (auto split add: nat_diff_split)
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1201
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1202
lemma less_diff_iff: "[| k \<le> m;  k \<le> (n::nat) |] ==> (m-k < n-k) = (m<n)"
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1203
by (auto split add: nat_diff_split)
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1204
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1205
lemma le_diff_iff: "[| k \<le> m;  k \<le> (n::nat) |] ==> (m-k \<le> n-k) = (m\<le>n)"
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1206
by (auto split add: nat_diff_split)
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1207
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1208
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1209
text{*(Anti)Monotonicity of subtraction -- by Stephan Merz*}
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1210
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1211
(* Monotonicity of subtraction in first argument *)
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1212
lemma diff_le_mono: "m \<le> (n::nat) ==> (m-l) \<le> (n-l)"
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1213
by (simp split add: nat_diff_split)
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1214
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1215
lemma diff_le_mono2: "m \<le> (n::nat) ==> (l-n) \<le> (l-m)"
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1216
by (simp split add: nat_diff_split)
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1217
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1218
lemma diff_less_mono2: "[| m < (n::nat); m<l |] ==> (l-n) < (l-m)"
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1219
by (simp split add: nat_diff_split)
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1220
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1221
lemma diffs0_imp_equal: "!!m::nat. [| m-n = 0; n-m = 0 |] ==>  m=n"
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1222
by (simp split add: nat_diff_split)
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1223
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1224
text{*Lemmas for ex/Factorization*}
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1225
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1226
lemma one_less_mult: "[| Suc 0 < n; Suc 0 < m |] ==> Suc 0 < m*n"
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1227
by (case_tac "m", auto)
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1228
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1229
lemma n_less_m_mult_n: "[| Suc 0 < n; Suc 0 < m |] ==> n<m*n"
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1230
by (case_tac "m", auto)
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1231
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1232
lemma n_less_n_mult_m: "[| Suc 0 < n; Suc 0 < m |] ==> n<n*m"
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1233
by (case_tac "m", auto)
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1234
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1235
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1236
text{*Rewriting to pull differences out*}
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1237
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1238
lemma diff_diff_right [simp]: "k\<le>j --> i - (j - k) = i + (k::nat) - j"
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1239
by arith
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1240
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1241
lemma diff_Suc_diff_eq1 [simp]: "k \<le> j ==> m - Suc (j - k) = m + k - Suc j"
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1242
by arith
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1243
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1244
lemma diff_Suc_diff_eq2 [simp]: "k \<le> j ==> Suc (j - k) - m = Suc j - (k + m)"
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1245
by arith
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1246
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1247
(*The others are
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1248
      i - j - k = i - (j + k),
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1249
      k \<le> j ==> j - k + i = j + i - k,
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1250
      k \<le> j ==> i + (j - k) = i + j - k *)
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1251
lemmas add_diff_assoc = diff_add_assoc [symmetric]
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1252
lemmas add_diff_assoc2 = diff_add_assoc2[symmetric]
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1253
declare diff_diff_left [simp]  add_diff_assoc [simp]  add_diff_assoc2[simp]
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1254
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1255
text{*At present we prove no analogue of @{text not_less_Least} or @{text
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1256
Least_Suc}, since there appears to be no need.*}
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1257
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1258
ML
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1259
{*
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1260
val pred_nat_trancl_eq_le = thm "pred_nat_trancl_eq_le";
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1261
val nat_diff_split = thm "nat_diff_split";
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1262
val nat_diff_split_asm = thm "nat_diff_split_asm";
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1263
val le_square = thm "le_square";
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1264
val le_cube = thm "le_cube";
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1265
val diff_less_mono = thm "diff_less_mono";
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1266
val less_diff_conv = thm "less_diff_conv";
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1267
val le_diff_conv = thm "le_diff_conv";
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1268
val le_diff_conv2 = thm "le_diff_conv2";
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1269
val diff_diff_cancel = thm "diff_diff_cancel";
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1270
val le_add_diff = thm "le_add_diff";
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1271
val diff_less = thm "diff_less";
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1272
val diff_diff_eq = thm "diff_diff_eq";
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1273
val eq_diff_iff = thm "eq_diff_iff";
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1274
val less_diff_iff = thm "less_diff_iff";
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1275
val le_diff_iff = thm "le_diff_iff";
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1276
val diff_le_mono = thm "diff_le_mono";
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1277
val diff_le_mono2 = thm "diff_le_mono2";
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1278
val diff_less_mono2 = thm "diff_less_mono2";
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1279
val diffs0_imp_equal = thm "diffs0_imp_equal";
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1280
val one_less_mult = thm "one_less_mult";
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1281
val n_less_m_mult_n = thm "n_less_m_mult_n";
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1282
val n_less_n_mult_m = thm "n_less_n_mult_m";
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1283
val diff_diff_right = thm "diff_diff_right";
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1284
val diff_Suc_diff_eq1 = thm "diff_Suc_diff_eq1";
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1285
val diff_Suc_diff_eq2 = thm "diff_Suc_diff_eq2";
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1286
*}
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1287
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1288
subsection{*Embedding of the Naturals into any @{text
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1289
semiring_1_cancel}: @{term of_nat}*}
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1290
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1291
consts of_nat :: "nat => 'a::semiring_1_cancel"
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1292
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1293
primrec
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1294
  of_nat_0:   "of_nat 0 = 0"
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1295
  of_nat_Suc: "of_nat (Suc m) = of_nat m + 1"
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1296
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1297
lemma of_nat_1 [simp]: "of_nat 1 = 1"
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1298
by simp
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1299
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1300
lemma of_nat_add [simp]: "of_nat (m+n) = of_nat m + of_nat n"
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1301
apply (induct m)
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1302
apply (simp_all add: add_ac)
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1303
done
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1304
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1305
lemma of_nat_mult [simp]: "of_nat (m*n) = of_nat m * of_nat n"
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1306
apply (induct m)
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1307
apply (simp_all add: add_ac left_distrib)
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1308
done
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1309
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1310
lemma zero_le_imp_of_nat: "0 \<le> (of_nat m::'a::ordered_semidom)"
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1311
apply (induct m, simp_all)
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1312
apply (erule order_trans)
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1313
apply (rule less_add_one [THEN order_less_imp_le])
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1314
done
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1315
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1316
lemma less_imp_of_nat_less:
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1317
     "m < n ==> of_nat m < (of_nat n::'a::ordered_semidom)"
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1318
apply (induct m n rule: diff_induct, simp_all)
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1319
apply (insert add_le_less_mono [OF zero_le_imp_of_nat zero_less_one], force)
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1320
done
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1321
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1322
lemma of_nat_less_imp_less:
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1323
     "of_nat m < (of_nat n::'a::ordered_semidom) ==> m < n"
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1324
apply (induct m n rule: diff_induct, simp_all)
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1325
apply (insert zero_le_imp_of_nat)
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1326
apply (force simp add: linorder_not_less [symmetric])
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1327
done
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1328
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1329
lemma of_nat_less_iff [simp]:
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1330
     "(of_nat m < (of_nat n::'a::ordered_semidom)) = (m<n)"
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1331
by (blast intro: of_nat_less_imp_less less_imp_of_nat_less)
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1332
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1333
text{*Special cases where either operand is zero*}
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1334
lemmas of_nat_0_less_iff = of_nat_less_iff [of 0, simplified]
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1335
lemmas of_nat_less_0_iff = of_nat_less_iff [of _ 0, simplified]
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1336
declare of_nat_0_less_iff [simp]
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1337
declare of_nat_less_0_iff [simp]
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1338
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1339
lemma of_nat_le_iff [simp]:
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1340
     "(of_nat m \<le> (of_nat n::'a::ordered_semidom)) = (m \<le> n)"
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1341
by (simp add: linorder_not_less [symmetric])
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1342
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1343
text{*Special cases where either operand is zero*}
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1344
lemmas of_nat_0_le_iff = of_nat_le_iff [of 0, simplified]
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1345
lemmas of_nat_le_0_iff = of_nat_le_iff [of _ 0, simplified]
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1346
declare of_nat_0_le_iff [simp]
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1347
declare of_nat_le_0_iff [simp]
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1348
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1349
text{*The ordering on the @{text semiring_1_cancel} is necessary
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1350
to exclude the possibility of a finite field, which indeed wraps back to
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1351
zero.*}
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1352
lemma of_nat_eq_iff [simp]:
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1353
     "(of_nat m = (of_nat n::'a::ordered_semidom)) = (m = n)"
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1354
by (simp add: order_eq_iff)
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1355
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1356
text{*Special cases where either operand is zero*}
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1357
lemmas of_nat_0_eq_iff = of_nat_eq_iff [of 0, simplified]
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1358
lemmas of_nat_eq_0_iff = of_nat_eq_iff [of _ 0, simplified]
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1359
declare of_nat_0_eq_iff [simp]
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1360
declare of_nat_eq_0_iff [simp]
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1361
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1362
lemma of_nat_diff [simp]:
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1363
     "n \<le> m ==> of_nat (m - n) = of_nat m - (of_nat n :: 'a::ring_1)"
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1364
by (simp del: of_nat_add
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1365
	 add: compare_rls of_nat_add [symmetric] split add: nat_diff_split)
afffe1f72143 removed theory NatArith (now part of Nat);
wenzelm
parents: 21191
diff changeset
  1366
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
  1367
end