src/HOL/NatDef.ML
author wenzelm
Thu, 14 Dec 2000 19:36:48 +0100
changeset 10671 ac6b3b671198
parent 10231 178a272bceeb
child 10706 f02834001fca
permissions -rw-r--r--
added Summation;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
     1
(*  Title:      HOL/NatDef.ML
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
     2
    ID:         $Id$
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
     3
    Author:     Tobias Nipkow, Cambridge University Computer Laboratory
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
     4
    Copyright   1991  University of Cambridge
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
     5
*)
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
     6
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4830
diff changeset
     7
Goal "mono(%X. {Zero_Rep} Un (Suc_Rep``X))";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
     8
by (REPEAT (ares_tac [monoI, subset_refl, image_mono, Un_mono] 1));
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
     9
qed "Nat_fun_mono";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    10
10186
499637e8f2c6 *** empty log message ***
nipkow
parents: 9969
diff changeset
    11
bind_thm ("Nat_unfold", Nat_fun_mono RS (Nat_def RS def_lfp_unfold));
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    12
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    13
(* Zero is a natural number -- this also justifies the type definition*)
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4830
diff changeset
    14
Goal "Zero_Rep: Nat";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    15
by (stac Nat_unfold 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    16
by (rtac (singletonI RS UnI1) 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    17
qed "Zero_RepI";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    18
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5187
diff changeset
    19
Goal "i: Nat ==> Suc_Rep(i) : Nat";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    20
by (stac Nat_unfold 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    21
by (rtac (imageI RS UnI2) 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5187
diff changeset
    22
by (assume_tac 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    23
qed "Suc_RepI";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    24
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    25
(*** Induction ***)
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    26
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5187
diff changeset
    27
val major::prems = Goal
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    28
    "[| i: Nat;  P(Zero_Rep);   \
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    29
\       !!j. [| j: Nat; P(j) |] ==> P(Suc_Rep(j)) |]  ==> P(i)";
10202
9e8b4bebc940 induct -> lfp_induct
nipkow
parents: 10186
diff changeset
    30
by (rtac ([Nat_def, Nat_fun_mono, major] MRS def_lfp_induct) 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4032
diff changeset
    31
by (blast_tac (claset() addIs prems) 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    32
qed "Nat_induct";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    33
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5187
diff changeset
    34
val prems = Goalw [Zero_def,Suc_def]
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    35
    "[| P(0);   \
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3023
diff changeset
    36
\       !!n. P(n) ==> P(Suc(n)) |]  ==> P(n)";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    37
by (rtac (Rep_Nat_inverse RS subst) 1);   (*types force good instantiation*)
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    38
by (rtac (Rep_Nat RS Nat_induct) 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    39
by (REPEAT (ares_tac prems 1
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    40
     ORELSE eresolve_tac [Abs_Nat_inverse RS subst] 1));
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    41
qed "nat_induct";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    42
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    43
(*Perform induction on n. *)
5187
55f07169cf5f Removed nat_case, nat_rec, and natE (now provided by datatype
berghofe
parents: 5148
diff changeset
    44
fun nat_ind_tac a i = 
55f07169cf5f Removed nat_case, nat_rec, and natE (now provided by datatype
berghofe
parents: 5148
diff changeset
    45
  res_inst_tac [("n",a)] nat_induct i  THEN  rename_last_tac a [""] (i+1);
3040
7d48671753da Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents: 3023
diff changeset
    46
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    47
(*A special form of induction for reasoning about m<n and m-n*)
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5187
diff changeset
    48
val prems = Goal
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    49
    "[| !!x. P x 0;  \
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    50
\       !!y. P 0 (Suc y);  \
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    51
\       !!x y. [| P x y |] ==> P (Suc x) (Suc y)  \
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    52
\    |] ==> P m n";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    53
by (res_inst_tac [("x","m")] spec 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    54
by (nat_ind_tac "n" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    55
by (rtac allI 2);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    56
by (nat_ind_tac "x" 2);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    57
by (REPEAT (ares_tac (prems@[allI]) 1 ORELSE etac spec 1));
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    58
qed "diff_induct";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    59
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    60
(*** Isomorphisms: Abs_Nat and Rep_Nat ***)
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    61
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    62
(*We can't take these properties as axioms, or take Abs_Nat==Inv(Rep_Nat),
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    63
  since we assume the isomorphism equations will one day be given by Isabelle*)
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    64
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4830
diff changeset
    65
Goal "inj(Rep_Nat)";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    66
by (rtac inj_inverseI 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    67
by (rtac Rep_Nat_inverse 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    68
qed "inj_Rep_Nat";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    69
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4830
diff changeset
    70
Goal "inj_on Abs_Nat Nat";
4830
bd73675adbed Added a few lemmas.
nipkow
parents: 4821
diff changeset
    71
by (rtac inj_on_inverseI 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    72
by (etac Abs_Nat_inverse 1);
4830
bd73675adbed Added a few lemmas.
nipkow
parents: 4821
diff changeset
    73
qed "inj_on_Abs_Nat";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    74
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    75
(*** Distinctness of constructors ***)
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    76
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4830
diff changeset
    77
Goalw [Zero_def,Suc_def] "Suc(m) ~= 0";
4830
bd73675adbed Added a few lemmas.
nipkow
parents: 4821
diff changeset
    78
by (rtac (inj_on_Abs_Nat RS inj_on_contraD) 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    79
by (rtac Suc_Rep_not_Zero_Rep 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    80
by (REPEAT (resolve_tac [Rep_Nat, Suc_RepI, Zero_RepI] 1));
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    81
qed "Suc_not_Zero";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    82
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    83
bind_thm ("Zero_not_Suc", Suc_not_Zero RS not_sym);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    84
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    85
AddIffs [Suc_not_Zero,Zero_not_Suc];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    86
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    87
bind_thm ("Suc_neq_Zero", (Suc_not_Zero RS notE));
9108
9fff97d29837 bind_thm(s);
wenzelm
parents: 8942
diff changeset
    88
bind_thm ("Zero_neq_Suc", sym RS Suc_neq_Zero);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    89
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    90
(** Injectiveness of Suc **)
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    91
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4830
diff changeset
    92
Goalw [Suc_def] "inj(Suc)";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    93
by (rtac injI 1);
4830
bd73675adbed Added a few lemmas.
nipkow
parents: 4821
diff changeset
    94
by (dtac (inj_on_Abs_Nat RS inj_onD) 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    95
by (REPEAT (resolve_tac [Rep_Nat, Suc_RepI] 1));
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    96
by (dtac (inj_Suc_Rep RS injD) 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    97
by (etac (inj_Rep_Nat RS injD) 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    98
qed "inj_Suc";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
    99
9108
9fff97d29837 bind_thm(s);
wenzelm
parents: 8942
diff changeset
   100
bind_thm ("Suc_inject", inj_Suc RS injD);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   101
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4830
diff changeset
   102
Goal "(Suc(m)=Suc(n)) = (m=n)";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   103
by (EVERY1 [rtac iffI, etac Suc_inject, etac arg_cong]); 
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   104
qed "Suc_Suc_eq";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   105
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   106
AddIffs [Suc_Suc_eq];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   107
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4830
diff changeset
   108
Goal "n ~= Suc(n)";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   109
by (nat_ind_tac "n" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   110
by (ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   111
qed "n_not_Suc_n";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   112
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   113
bind_thm ("Suc_n_not_n", n_not_Suc_n RS not_sym);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   114
5187
55f07169cf5f Removed nat_case, nat_rec, and natE (now provided by datatype
berghofe
parents: 5148
diff changeset
   115
(*** Basic properties of "less than" ***)
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   116
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4830
diff changeset
   117
Goalw [wf_def, pred_nat_def] "wf(pred_nat)";
3718
d78cf498a88c Minor tidying to use Clarify_tac, etc.
paulson
parents: 3563
diff changeset
   118
by (Clarify_tac 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   119
by (nat_ind_tac "x" 1);
3236
882e125ed7da New pattern-matching definition of pred_nat
paulson
parents: 3143
diff changeset
   120
by (ALLGOALS Blast_tac);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   121
qed "wf_pred_nat";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   122
3378
11f4884a071a Moved "less_eq" to NatDef from Arith
paulson
parents: 3355
diff changeset
   123
(*Used in TFL/post.sml*)
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4830
diff changeset
   124
Goalw [less_def] "(m,n) : pred_nat^+ = (m<n)";
3378
11f4884a071a Moved "less_eq" to NatDef from Arith
paulson
parents: 3355
diff changeset
   125
by (rtac refl 1);
11f4884a071a Moved "less_eq" to NatDef from Arith
paulson
parents: 3355
diff changeset
   126
qed "less_eq";
11f4884a071a Moved "less_eq" to NatDef from Arith
paulson
parents: 3355
diff changeset
   127
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   128
(** Introduction properties **)
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   129
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5187
diff changeset
   130
Goalw [less_def] "[| i<j;  j<k |] ==> i<(k::nat)";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   131
by (rtac (trans_trancl RS transD) 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5187
diff changeset
   132
by (assume_tac 1);
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5187
diff changeset
   133
by (assume_tac 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   134
qed "less_trans";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   135
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4830
diff changeset
   136
Goalw [less_def, pred_nat_def] "n < Suc(n)";
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4032
diff changeset
   137
by (simp_tac (simpset() addsimps [r_into_trancl]) 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   138
qed "lessI";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   139
AddIffs [lessI];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   140
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   141
(* i<j ==> i<Suc(j) *)
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   142
bind_thm("less_SucI", lessI RSN (2, less_trans));
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   143
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4830
diff changeset
   144
Goal "0 < Suc(n)";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   145
by (nat_ind_tac "n" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   146
by (rtac lessI 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   147
by (etac less_trans 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   148
by (rtac lessI 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   149
qed "zero_less_Suc";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   150
AddIffs [zero_less_Suc];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   151
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   152
(** Elimination properties **)
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   153
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5187
diff changeset
   154
Goalw [less_def] "n<m ==> ~ m<(n::nat)";
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5187
diff changeset
   155
by (blast_tac (claset() addIs [wf_pred_nat, wf_trancl RS wf_asym])1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   156
qed "less_not_sym";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   157
5474
a2109bb8ce2b well-formed asym rules; also adds less_irrefl, le_refl since order_refl
paulson
parents: 5354
diff changeset
   158
(* [| n<m; ~P ==> m<n |] ==> P *)
10231
178a272bceeb renaming of contrapos rules
paulson
parents: 10202
diff changeset
   159
bind_thm ("less_asym", less_not_sym RS contrapos_np);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   160
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4830
diff changeset
   161
Goalw [less_def] "~ n<(n::nat)";
9160
7a98dbf3e579 using the new theorem wf_not_refl; tidied
paulson
parents: 9108
diff changeset
   162
by (rtac (wf_pred_nat RS wf_trancl RS wf_not_refl) 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   163
qed "less_not_refl";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   164
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   165
(* n<n ==> R *)
9160
7a98dbf3e579 using the new theorem wf_not_refl; tidied
paulson
parents: 9108
diff changeset
   166
bind_thm ("less_irrefl", less_not_refl RS notE);
5474
a2109bb8ce2b well-formed asym rules; also adds less_irrefl, le_refl since order_refl
paulson
parents: 5354
diff changeset
   167
AddSEs [less_irrefl];
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   168
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5132
diff changeset
   169
Goal "n<m ==> m ~= (n::nat)";
5474
a2109bb8ce2b well-formed asym rules; also adds less_irrefl, le_refl since order_refl
paulson
parents: 5354
diff changeset
   170
by (Blast_tac 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   171
qed "less_not_refl2";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   172
5354
da63d9b35caf new theorems; adds [le_refl, less_imp_le] as simprules
paulson
parents: 5316
diff changeset
   173
(* s < t ==> s ~= t *)
da63d9b35caf new theorems; adds [le_refl, less_imp_le] as simprules
paulson
parents: 5316
diff changeset
   174
bind_thm ("less_not_refl3", less_not_refl2 RS not_sym);
da63d9b35caf new theorems; adds [le_refl, less_imp_le] as simprules
paulson
parents: 5316
diff changeset
   175
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   176
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5187
diff changeset
   177
val major::prems = Goalw [less_def, pred_nat_def]
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   178
    "[| i<k;  k=Suc(i) ==> P;  !!j. [| i<j;  k=Suc(j) |] ==> P \
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   179
\    |] ==> P";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   180
by (rtac (major RS tranclE) 1);
3236
882e125ed7da New pattern-matching definition of pred_nat
paulson
parents: 3143
diff changeset
   181
by (ALLGOALS Full_simp_tac); 
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   182
by (REPEAT_FIRST (bound_hyp_subst_tac ORELSE'
3236
882e125ed7da New pattern-matching definition of pred_nat
paulson
parents: 3143
diff changeset
   183
                  eresolve_tac (prems@[asm_rl, Pair_inject])));
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   184
qed "lessE";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   185
8942
6aad5381ba83 added type constraint ::nat because 0 is now overloaded
paulson
parents: 8741
diff changeset
   186
Goal "~ n < (0::nat)";
6aad5381ba83 added type constraint ::nat because 0 is now overloaded
paulson
parents: 8741
diff changeset
   187
by (blast_tac (claset() addEs [lessE]) 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   188
qed "not_less0";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   189
AddIffs [not_less0];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   190
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   191
(* n<0 ==> R *)
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   192
bind_thm ("less_zeroE", not_less0 RS notE);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   193
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5187
diff changeset
   194
val [major,less,eq] = Goal
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   195
    "[| m < Suc(n);  m<n ==> P;  m=n ==> P |] ==> P";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   196
by (rtac (major RS lessE) 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   197
by (rtac eq 1);
2891
d8f254ad1ab9 Calls Blast_tac
paulson
parents: 2718
diff changeset
   198
by (Blast_tac 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   199
by (rtac less 1);
2891
d8f254ad1ab9 Calls Blast_tac
paulson
parents: 2718
diff changeset
   200
by (Blast_tac 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   201
qed "less_SucE";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   202
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4830
diff changeset
   203
Goal "(m < Suc(n)) = (m < n | m = n)";
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4032
diff changeset
   204
by (blast_tac (claset() addSEs [less_SucE] addIs [less_trans]) 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   205
qed "less_Suc_eq";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   206
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4830
diff changeset
   207
Goal "(n<1) = (n=0)";
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4032
diff changeset
   208
by (simp_tac (simpset() addsimps [less_Suc_eq]) 1);
3484
1e93eb09ebb9 Added the following lemmas tp Divides and a few others to Arith and NatDef:
nipkow
parents: 3457
diff changeset
   209
qed "less_one";
1e93eb09ebb9 Added the following lemmas tp Divides and a few others to Arith and NatDef:
nipkow
parents: 3457
diff changeset
   210
AddIffs [less_one];
1e93eb09ebb9 Added the following lemmas tp Divides and a few others to Arith and NatDef:
nipkow
parents: 3457
diff changeset
   211
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5132
diff changeset
   212
Goal "m<n ==> Suc(m) < Suc(n)";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   213
by (etac rev_mp 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   214
by (nat_ind_tac "n" 1);
5474
a2109bb8ce2b well-formed asym rules; also adds less_irrefl, le_refl since order_refl
paulson
parents: 5354
diff changeset
   215
by (ALLGOALS (fast_tac (claset() addEs [less_trans, lessE])));
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   216
qed "Suc_mono";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   217
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   218
(*"Less than" is a linear ordering*)
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4830
diff changeset
   219
Goal "m<n | m=n | n<(m::nat)";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   220
by (nat_ind_tac "m" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   221
by (nat_ind_tac "n" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   222
by (rtac (refl RS disjI1 RS disjI2) 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   223
by (rtac (zero_less_Suc RS disjI1) 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4032
diff changeset
   224
by (blast_tac (claset() addIs [Suc_mono, less_SucI] addEs [lessE]) 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   225
qed "less_linear";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   226
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4830
diff changeset
   227
Goal "!!m::nat. (m ~= n) = (m<n | n<m)";
4737
4544290d5a6b The theorem nat_neqE, and some tidying
paulson
parents: 4686
diff changeset
   228
by (cut_facts_tac [less_linear] 1);
5500
7e0ed3e31590 new theorem less_Suc_eq_le and le_simps
paulson
parents: 5478
diff changeset
   229
by (Blast_tac 1);
4737
4544290d5a6b The theorem nat_neqE, and some tidying
paulson
parents: 4686
diff changeset
   230
qed "nat_neq_iff";
4544290d5a6b The theorem nat_neqE, and some tidying
paulson
parents: 4686
diff changeset
   231
7030
53934985426a getting rid of qed_goal
paulson
parents: 6115
diff changeset
   232
val [major,eqCase,lessCase] = Goal 
53934985426a getting rid of qed_goal
paulson
parents: 6115
diff changeset
   233
   "[| (m::nat)<n ==> P n m; m=n ==> P n m; n<m ==> P n m |] ==> P n m";
53934985426a getting rid of qed_goal
paulson
parents: 6115
diff changeset
   234
by (rtac (less_linear RS disjE) 1);
53934985426a getting rid of qed_goal
paulson
parents: 6115
diff changeset
   235
by (etac disjE 2);
53934985426a getting rid of qed_goal
paulson
parents: 6115
diff changeset
   236
by (etac lessCase 1);
53934985426a getting rid of qed_goal
paulson
parents: 6115
diff changeset
   237
by (etac (sym RS eqCase) 1);
53934985426a getting rid of qed_goal
paulson
parents: 6115
diff changeset
   238
by (etac major 1);
53934985426a getting rid of qed_goal
paulson
parents: 6115
diff changeset
   239
qed "nat_less_cases";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   240
4745
b855a7094195 re-ordered proofs
paulson
parents: 4737
diff changeset
   241
b855a7094195 re-ordered proofs
paulson
parents: 4737
diff changeset
   242
(** Inductive (?) properties **)
b855a7094195 re-ordered proofs
paulson
parents: 4737
diff changeset
   243
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5132
diff changeset
   244
Goal "[| m<n; Suc m ~= n |] ==> Suc(m) < n";
4745
b855a7094195 re-ordered proofs
paulson
parents: 4737
diff changeset
   245
by (full_simp_tac (simpset() addsimps [nat_neq_iff]) 1);
b855a7094195 re-ordered proofs
paulson
parents: 4737
diff changeset
   246
by (blast_tac (claset() addSEs [less_irrefl, less_SucE] addEs [less_asym]) 1);
b855a7094195 re-ordered proofs
paulson
parents: 4737
diff changeset
   247
qed "Suc_lessI";
b855a7094195 re-ordered proofs
paulson
parents: 4737
diff changeset
   248
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5187
diff changeset
   249
Goal "Suc(m) < n ==> m<n";
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5187
diff changeset
   250
by (etac rev_mp 1);
4745
b855a7094195 re-ordered proofs
paulson
parents: 4737
diff changeset
   251
by (nat_ind_tac "n" 1);
b855a7094195 re-ordered proofs
paulson
parents: 4737
diff changeset
   252
by (ALLGOALS (fast_tac (claset() addSIs [lessI RS less_SucI]
b855a7094195 re-ordered proofs
paulson
parents: 4737
diff changeset
   253
                                 addEs  [less_trans, lessE])));
b855a7094195 re-ordered proofs
paulson
parents: 4737
diff changeset
   254
qed "Suc_lessD";
b855a7094195 re-ordered proofs
paulson
parents: 4737
diff changeset
   255
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5187
diff changeset
   256
val [major,minor] = Goal 
4745
b855a7094195 re-ordered proofs
paulson
parents: 4737
diff changeset
   257
    "[| Suc(i)<k;  !!j. [| i<j;  k=Suc(j) |] ==> P \
b855a7094195 re-ordered proofs
paulson
parents: 4737
diff changeset
   258
\    |] ==> P";
b855a7094195 re-ordered proofs
paulson
parents: 4737
diff changeset
   259
by (rtac (major RS lessE) 1);
b855a7094195 re-ordered proofs
paulson
parents: 4737
diff changeset
   260
by (etac (lessI RS minor) 1);
b855a7094195 re-ordered proofs
paulson
parents: 4737
diff changeset
   261
by (etac (Suc_lessD RS minor) 1);
b855a7094195 re-ordered proofs
paulson
parents: 4737
diff changeset
   262
by (assume_tac 1);
b855a7094195 re-ordered proofs
paulson
parents: 4737
diff changeset
   263
qed "Suc_lessE";
b855a7094195 re-ordered proofs
paulson
parents: 4737
diff changeset
   264
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5132
diff changeset
   265
Goal "Suc(m) < Suc(n) ==> m<n";
4745
b855a7094195 re-ordered proofs
paulson
parents: 4737
diff changeset
   266
by (blast_tac (claset() addEs [lessE, make_elim Suc_lessD]) 1);
b855a7094195 re-ordered proofs
paulson
parents: 4737
diff changeset
   267
qed "Suc_less_SucD";
b855a7094195 re-ordered proofs
paulson
parents: 4737
diff changeset
   268
b855a7094195 re-ordered proofs
paulson
parents: 4737
diff changeset
   269
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4830
diff changeset
   270
Goal "(Suc(m) < Suc(n)) = (m<n)";
4745
b855a7094195 re-ordered proofs
paulson
parents: 4737
diff changeset
   271
by (EVERY1 [rtac iffI, etac Suc_less_SucD, etac Suc_mono]);
b855a7094195 re-ordered proofs
paulson
parents: 4737
diff changeset
   272
qed "Suc_less_eq";
8555
17325ee838ab Suc_less_eq now with AddIffs. How could this have been overlooked?
paulson
parents: 7064
diff changeset
   273
AddIffs [Suc_less_eq];
4745
b855a7094195 re-ordered proofs
paulson
parents: 4737
diff changeset
   274
6109
82b50115564c Simplified arithmetic.
nipkow
parents: 6075
diff changeset
   275
(*Goal "~(Suc(n) < n)";
4745
b855a7094195 re-ordered proofs
paulson
parents: 4737
diff changeset
   276
by (blast_tac (claset() addEs [Suc_lessD RS less_irrefl]) 1);
b855a7094195 re-ordered proofs
paulson
parents: 4737
diff changeset
   277
qed "not_Suc_n_less_n";
6109
82b50115564c Simplified arithmetic.
nipkow
parents: 6075
diff changeset
   278
Addsimps [not_Suc_n_less_n];*)
4745
b855a7094195 re-ordered proofs
paulson
parents: 4737
diff changeset
   279
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5132
diff changeset
   280
Goal "i<j ==> j<k --> Suc i < k";
4745
b855a7094195 re-ordered proofs
paulson
parents: 4737
diff changeset
   281
by (nat_ind_tac "k" 1);
b855a7094195 re-ordered proofs
paulson
parents: 4737
diff changeset
   282
by (ALLGOALS (asm_simp_tac (simpset())));
b855a7094195 re-ordered proofs
paulson
parents: 4737
diff changeset
   283
by (asm_simp_tac (simpset() addsimps [less_Suc_eq]) 1);
b855a7094195 re-ordered proofs
paulson
parents: 4737
diff changeset
   284
by (blast_tac (claset() addDs [Suc_lessD]) 1);
b855a7094195 re-ordered proofs
paulson
parents: 4737
diff changeset
   285
qed_spec_mp "less_trans_Suc";
b855a7094195 re-ordered proofs
paulson
parents: 4737
diff changeset
   286
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   287
(*Can be used with less_Suc_eq to get n=m | n<m *)
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4830
diff changeset
   288
Goal "(~ m < n) = (n < Suc(m))";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   289
by (res_inst_tac [("m","m"),("n","n")] diff_induct 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   290
by (ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   291
qed "not_less_eq";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   292
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   293
(*Complete induction, aka course-of-values induction*)
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5187
diff changeset
   294
val prems = Goalw [less_def]
9160
7a98dbf3e579 using the new theorem wf_not_refl; tidied
paulson
parents: 9108
diff changeset
   295
    "[| !!n. [| ALL m::nat. m<n --> P(m) |] ==> P(n) |]  ==>  P(n)";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   296
by (wf_ind_tac "n" [wf_pred_nat RS wf_trancl] 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   297
by (eresolve_tac prems 1);
9870
2374ba026fc6 less_induct -> nat_less_induct
nipkow
parents: 9160
diff changeset
   298
qed "nat_less_induct";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   299
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   300
(*** Properties of <= ***)
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   301
5500
7e0ed3e31590 new theorem less_Suc_eq_le and le_simps
paulson
parents: 5478
diff changeset
   302
(*Was le_eq_less_Suc, but this orientation is more useful*)
7e0ed3e31590 new theorem less_Suc_eq_le and le_simps
paulson
parents: 5478
diff changeset
   303
Goalw [le_def] "(m < Suc n) = (m <= n)";
7e0ed3e31590 new theorem less_Suc_eq_le and le_simps
paulson
parents: 5478
diff changeset
   304
by (rtac (not_less_eq RS sym) 1);
7e0ed3e31590 new theorem less_Suc_eq_le and le_simps
paulson
parents: 5478
diff changeset
   305
qed "less_Suc_eq_le";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   306
3343
45986997f1fe Renamed lessD to Suc_leI
paulson
parents: 3308
diff changeset
   307
(*  m<=n ==> m < Suc n  *)
5500
7e0ed3e31590 new theorem less_Suc_eq_le and le_simps
paulson
parents: 5478
diff changeset
   308
bind_thm ("le_imp_less_Suc", less_Suc_eq_le RS iffD2);
3343
45986997f1fe Renamed lessD to Suc_leI
paulson
parents: 3308
diff changeset
   309
8942
6aad5381ba83 added type constraint ::nat because 0 is now overloaded
paulson
parents: 8741
diff changeset
   310
Goalw [le_def] "(0::nat) <= n";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   311
by (rtac not_less0 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   312
qed "le0";
6075
c148037f53c6 Remoaved a few now redundant rewrite rules.
nipkow
parents: 5983
diff changeset
   313
AddIffs [le0];
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   314
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4830
diff changeset
   315
Goalw [le_def] "~ Suc n <= n";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   316
by (Simp_tac 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   317
qed "Suc_n_not_le_n";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   318
8942
6aad5381ba83 added type constraint ::nat because 0 is now overloaded
paulson
parents: 8741
diff changeset
   319
Goalw [le_def] "!!i::nat. (i <= 0) = (i = 0)";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   320
by (nat_ind_tac "i" 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   321
by (ALLGOALS Asm_simp_tac);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   322
qed "le_0_eq";
4614
122015efd4e1 New AddIffs le_0_eq and neq0_conv
paulson
parents: 4599
diff changeset
   323
AddIffs [le_0_eq];
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   324
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5132
diff changeset
   325
Goal "(m <= Suc(n)) = (m<=n | m = Suc n)";
5500
7e0ed3e31590 new theorem less_Suc_eq_le and le_simps
paulson
parents: 5478
diff changeset
   326
by (simp_tac (simpset() delsimps [less_Suc_eq_le]
7e0ed3e31590 new theorem less_Suc_eq_le and le_simps
paulson
parents: 5478
diff changeset
   327
			addsimps [less_Suc_eq_le RS sym, less_Suc_eq]) 1);
3355
0d955bcf8e0a New theorem le_Suc_eq
paulson
parents: 3343
diff changeset
   328
qed "le_Suc_eq";
0d955bcf8e0a New theorem le_Suc_eq
paulson
parents: 3343
diff changeset
   329
4614
122015efd4e1 New AddIffs le_0_eq and neq0_conv
paulson
parents: 4599
diff changeset
   330
(* [| m <= Suc n;  m <= n ==> R;  m = Suc n ==> R |] ==> R *)
122015efd4e1 New AddIffs le_0_eq and neq0_conv
paulson
parents: 4599
diff changeset
   331
bind_thm ("le_SucE", le_Suc_eq RS iffD1 RS disjE);
122015efd4e1 New AddIffs le_0_eq and neq0_conv
paulson
parents: 4599
diff changeset
   332
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5187
diff changeset
   333
Goalw [le_def] "~n<m ==> m<=(n::nat)";
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5187
diff changeset
   334
by (assume_tac 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   335
qed "leI";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   336
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5187
diff changeset
   337
Goalw [le_def] "m<=n ==> ~ n < (m::nat)";
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5187
diff changeset
   338
by (assume_tac 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   339
qed "leD";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   340
9108
9fff97d29837 bind_thm(s);
wenzelm
parents: 8942
diff changeset
   341
bind_thm ("leE", make_elim leD);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   342
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4830
diff changeset
   343
Goal "(~n<m) = (m<=(n::nat))";
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4032
diff changeset
   344
by (blast_tac (claset() addIs [leI] addEs [leE]) 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   345
qed "not_less_iff_le";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   346
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5132
diff changeset
   347
Goalw [le_def] "~ m <= n ==> n<(m::nat)";
2891
d8f254ad1ab9 Calls Blast_tac
paulson
parents: 2718
diff changeset
   348
by (Blast_tac 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   349
qed "not_leE";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   350
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4830
diff changeset
   351
Goalw [le_def] "(~n<=m) = (m<(n::nat))";
4599
3a4348a3d6ff New max, min theorems
paulson
parents: 4535
diff changeset
   352
by (Simp_tac 1);
3a4348a3d6ff New max, min theorems
paulson
parents: 4535
diff changeset
   353
qed "not_le_iff_less";
3a4348a3d6ff New max, min theorems
paulson
parents: 4535
diff changeset
   354
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5132
diff changeset
   355
Goalw [le_def] "m < n ==> Suc(m) <= n";
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4032
diff changeset
   356
by (simp_tac (simpset() addsimps [less_Suc_eq]) 1);
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4032
diff changeset
   357
by (blast_tac (claset() addSEs [less_irrefl,less_asym]) 1);
3343
45986997f1fe Renamed lessD to Suc_leI
paulson
parents: 3308
diff changeset
   358
qed "Suc_leI";  (*formerly called lessD*)
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   359
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5132
diff changeset
   360
Goalw [le_def] "Suc(m) <= n ==> m <= n";
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4032
diff changeset
   361
by (asm_full_simp_tac (simpset() addsimps [less_Suc_eq]) 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   362
qed "Suc_leD";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   363
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   364
(* stronger version of Suc_leD *)
5148
74919e8f221c More tidying and removal of "\!\!... from Goal commands
paulson
parents: 5143
diff changeset
   365
Goalw [le_def] "Suc m <= n ==> m < n";
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4032
diff changeset
   366
by (asm_full_simp_tac (simpset() addsimps [less_Suc_eq]) 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   367
by (cut_facts_tac [less_linear] 1);
2891
d8f254ad1ab9 Calls Blast_tac
paulson
parents: 2718
diff changeset
   368
by (Blast_tac 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   369
qed "Suc_le_lessD";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   370
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4830
diff changeset
   371
Goal "(Suc m <= n) = (m < n)";
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4032
diff changeset
   372
by (blast_tac (claset() addIs [Suc_leI, Suc_le_lessD]) 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   373
qed "Suc_le_eq";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   374
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5132
diff changeset
   375
Goalw [le_def] "m <= n ==> m <= Suc n";
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4032
diff changeset
   376
by (blast_tac (claset() addDs [Suc_lessD]) 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   377
qed "le_SucI";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   378
6109
82b50115564c Simplified arithmetic.
nipkow
parents: 6075
diff changeset
   379
(*bind_thm ("le_Suc", not_Suc_n_less_n RS leI);*)
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   380
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5132
diff changeset
   381
Goalw [le_def] "m < n ==> m <= (n::nat)";
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4032
diff changeset
   382
by (blast_tac (claset() addEs [less_asym]) 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   383
qed "less_imp_le";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   384
5591
paulson
parents: 5500
diff changeset
   385
(*For instance, (Suc m < Suc n)  =   (Suc m <= n)  =  (m<n) *)
9108
9fff97d29837 bind_thm(s);
wenzelm
parents: 8942
diff changeset
   386
bind_thms ("le_simps", [less_imp_le, less_Suc_eq_le, Suc_le_eq]);
5591
paulson
parents: 5500
diff changeset
   387
5354
da63d9b35caf new theorems; adds [le_refl, less_imp_le] as simprules
paulson
parents: 5316
diff changeset
   388
3343
45986997f1fe Renamed lessD to Suc_leI
paulson
parents: 3308
diff changeset
   389
(** Equivalence of m<=n and  m<n | m=n **)
45986997f1fe Renamed lessD to Suc_leI
paulson
parents: 3308
diff changeset
   390
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5132
diff changeset
   391
Goalw [le_def] "m <= n ==> m < n | m=(n::nat)";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   392
by (cut_facts_tac [less_linear] 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4032
diff changeset
   393
by (blast_tac (claset() addEs [less_irrefl,less_asym]) 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   394
qed "le_imp_less_or_eq";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   395
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5132
diff changeset
   396
Goalw [le_def] "m<n | m=n ==> m <=(n::nat)";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   397
by (cut_facts_tac [less_linear] 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4032
diff changeset
   398
by (blast_tac (claset() addSEs [less_irrefl] addEs [less_asym]) 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   399
qed "less_or_eq_imp_le";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   400
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4830
diff changeset
   401
Goal "(m <= (n::nat)) = (m < n | m=n)";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   402
by (REPEAT(ares_tac [iffI,less_or_eq_imp_le,le_imp_less_or_eq] 1));
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   403
qed "le_eq_less_or_eq";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   404
4635
c448e09d0fca New theorem eq_imp_le
paulson
parents: 4614
diff changeset
   405
(*Useful with Blast_tac.   m=n ==> m<=n *)
c448e09d0fca New theorem eq_imp_le
paulson
parents: 4614
diff changeset
   406
bind_thm ("eq_imp_le", disjI2 RS less_or_eq_imp_le);
c448e09d0fca New theorem eq_imp_le
paulson
parents: 4614
diff changeset
   407
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4830
diff changeset
   408
Goal "n <= (n::nat)";
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4032
diff changeset
   409
by (simp_tac (simpset() addsimps [le_eq_less_or_eq]) 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   410
qed "le_refl";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   411
5354
da63d9b35caf new theorems; adds [le_refl, less_imp_le] as simprules
paulson
parents: 5316
diff changeset
   412
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5132
diff changeset
   413
Goal "[| i <= j; j < k |] ==> i < (k::nat)";
4468
paulson
parents: 4423
diff changeset
   414
by (blast_tac (claset() addSDs [le_imp_less_or_eq]
paulson
parents: 4423
diff changeset
   415
	                addIs [less_trans]) 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   416
qed "le_less_trans";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   417
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5132
diff changeset
   418
Goal "[| i < j; j <= k |] ==> i < (k::nat)";
4468
paulson
parents: 4423
diff changeset
   419
by (blast_tac (claset() addSDs [le_imp_less_or_eq]
paulson
parents: 4423
diff changeset
   420
	                addIs [less_trans]) 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   421
qed "less_le_trans";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   422
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5132
diff changeset
   423
Goal "[| i <= j; j <= k |] ==> i <= (k::nat)";
4468
paulson
parents: 4423
diff changeset
   424
by (blast_tac (claset() addSDs [le_imp_less_or_eq]
paulson
parents: 4423
diff changeset
   425
	                addIs [less_or_eq_imp_le, less_trans]) 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   426
qed "le_trans";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   427
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5132
diff changeset
   428
Goal "[| m <= n; n <= m |] ==> m = (n::nat)";
4468
paulson
parents: 4423
diff changeset
   429
(*order_less_irrefl could make this proof fail*)
paulson
parents: 4423
diff changeset
   430
by (blast_tac (claset() addSDs [le_imp_less_or_eq]
paulson
parents: 4423
diff changeset
   431
	                addSEs [less_irrefl] addEs [less_asym]) 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   432
qed "le_anti_sym";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   433
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4830
diff changeset
   434
Goal "(Suc(n) <= Suc(m)) = (n <= m)";
5500
7e0ed3e31590 new theorem less_Suc_eq_le and le_simps
paulson
parents: 5478
diff changeset
   435
by (simp_tac (simpset() addsimps le_simps) 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   436
qed "Suc_le_mono";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   437
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   438
AddIffs [Suc_le_mono];
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   439
5500
7e0ed3e31590 new theorem less_Suc_eq_le and le_simps
paulson
parents: 5478
diff changeset
   440
(* Axiom 'order_less_le' of class 'order': *)
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4830
diff changeset
   441
Goal "(m::nat) < n = (m <= n & m ~= n)";
4737
4544290d5a6b The theorem nat_neqE, and some tidying
paulson
parents: 4686
diff changeset
   442
by (simp_tac (simpset() addsimps [le_def, nat_neq_iff]) 1);
4544290d5a6b The theorem nat_neqE, and some tidying
paulson
parents: 4686
diff changeset
   443
by (blast_tac (claset() addSEs [less_asym]) 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   444
qed "nat_less_le";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   445
5354
da63d9b35caf new theorems; adds [le_refl, less_imp_le] as simprules
paulson
parents: 5316
diff changeset
   446
(* [| m <= n; m ~= n |] ==> m < n *)
da63d9b35caf new theorems; adds [le_refl, less_imp_le] as simprules
paulson
parents: 5316
diff changeset
   447
bind_thm ("le_neq_implies_less", [nat_less_le, conjI] MRS iffD2);
da63d9b35caf new theorems; adds [le_refl, less_imp_le] as simprules
paulson
parents: 5316
diff changeset
   448
4640
ac6cf9f18653 Congruence rules use == in premises now.
nipkow
parents: 4635
diff changeset
   449
(* Axiom 'linorder_linear' of class 'linorder': *)
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4830
diff changeset
   450
Goal "(m::nat) <= n | n <= m";
4640
ac6cf9f18653 Congruence rules use == in premises now.
nipkow
parents: 4635
diff changeset
   451
by (simp_tac (simpset() addsimps [le_eq_less_or_eq]) 1);
ac6cf9f18653 Congruence rules use == in premises now.
nipkow
parents: 4635
diff changeset
   452
by (cut_facts_tac [less_linear] 1);
5132
24f992a25adc isatool expandshort;
wenzelm
parents: 5069
diff changeset
   453
by (Blast_tac 1);
4640
ac6cf9f18653 Congruence rules use == in premises now.
nipkow
parents: 4635
diff changeset
   454
qed "nat_le_linear";
ac6cf9f18653 Congruence rules use == in premises now.
nipkow
parents: 4635
diff changeset
   455
5354
da63d9b35caf new theorems; adds [le_refl, less_imp_le] as simprules
paulson
parents: 5316
diff changeset
   456
Goal "~ n < m ==> (n < Suc m) = (n = m)";
da63d9b35caf new theorems; adds [le_refl, less_imp_le] as simprules
paulson
parents: 5316
diff changeset
   457
by (blast_tac (claset() addSEs [less_SucE]) 1);
da63d9b35caf new theorems; adds [le_refl, less_imp_le] as simprules
paulson
parents: 5316
diff changeset
   458
qed "not_less_less_Suc_eq";
da63d9b35caf new theorems; adds [le_refl, less_imp_le] as simprules
paulson
parents: 5316
diff changeset
   459
da63d9b35caf new theorems; adds [le_refl, less_imp_le] as simprules
paulson
parents: 5316
diff changeset
   460
da63d9b35caf new theorems; adds [le_refl, less_imp_le] as simprules
paulson
parents: 5316
diff changeset
   461
(*Rewrite (n < Suc m) to (n=m) if  ~ n<m or m<=n hold.
da63d9b35caf new theorems; adds [le_refl, less_imp_le] as simprules
paulson
parents: 5316
diff changeset
   462
  Not suitable as default simprules because they often lead to looping*)
9108
9fff97d29837 bind_thm(s);
wenzelm
parents: 8942
diff changeset
   463
bind_thms ("not_less_simps", [not_less_less_Suc_eq, leD RS not_less_less_Suc_eq]);
4640
ac6cf9f18653 Congruence rules use == in premises now.
nipkow
parents: 4635
diff changeset
   464
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   465
(** LEAST -- the least number operator **)
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   466
9160
7a98dbf3e579 using the new theorem wf_not_refl; tidied
paulson
parents: 9108
diff changeset
   467
Goal "(ALL m::nat. P m --> n <= m) = (ALL m. m < n --> ~ P m)";
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4032
diff changeset
   468
by (blast_tac (claset() addIs [leI] addEs [leE]) 1);
3143
d60e49b86c6a Modified def of Least, which, as Markus correctly complained, looked like
nipkow
parents: 3085
diff changeset
   469
val lemma = result();
d60e49b86c6a Modified def of Least, which, as Markus correctly complained, looked like
nipkow
parents: 3085
diff changeset
   470
d60e49b86c6a Modified def of Least, which, as Markus correctly complained, looked like
nipkow
parents: 3085
diff changeset
   471
(* This is an old def of Least for nat, which is derived for compatibility *)
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4830
diff changeset
   472
Goalw [Least_def]
3143
d60e49b86c6a Modified def of Least, which, as Markus correctly complained, looked like
nipkow
parents: 3085
diff changeset
   473
  "(LEAST n::nat. P n) == (@n. P(n) & (ALL m. m < n --> ~P(m)))";
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4032
diff changeset
   474
by (simp_tac (simpset() addsimps [lemma]) 1);
3143
d60e49b86c6a Modified def of Least, which, as Markus correctly complained, looked like
nipkow
parents: 3085
diff changeset
   475
qed "Least_nat_def";
d60e49b86c6a Modified def of Least, which, as Markus correctly complained, looked like
nipkow
parents: 3085
diff changeset
   476
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5187
diff changeset
   477
val [prem1,prem2] = Goalw [Least_nat_def]
3842
b55686a7b22c fixed dots;
wenzelm
parents: 3768
diff changeset
   478
    "[| P(k::nat);  !!x. x<k ==> ~P(x) |] ==> (LEAST x. P(x)) = k";
9969
4753185f1dd2 renamed (most of...) the select rules
paulson
parents: 9870
diff changeset
   479
by (rtac some_equality 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4032
diff changeset
   480
by (blast_tac (claset() addSIs [prem1,prem2]) 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   481
by (cut_facts_tac [less_linear] 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4032
diff changeset
   482
by (blast_tac (claset() addSIs [prem1] addSDs [prem2]) 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   483
qed "Least_equality";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   484
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5187
diff changeset
   485
Goal "P(k::nat) ==> P(LEAST x. P(x))";
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5187
diff changeset
   486
by (etac rev_mp 1);
9870
2374ba026fc6 less_induct -> nat_less_induct
nipkow
parents: 9160
diff changeset
   487
by (res_inst_tac [("n","k")] nat_less_induct 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   488
by (rtac impI 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   489
by (rtac classical 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   490
by (res_inst_tac [("s","n")] (Least_equality RS ssubst) 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   491
by (assume_tac 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   492
by (assume_tac 2);
2891
d8f254ad1ab9 Calls Blast_tac
paulson
parents: 2718
diff changeset
   493
by (Blast_tac 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   494
qed "LeastI";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   495
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   496
(*Proof is almost identical to the one above!*)
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5187
diff changeset
   497
Goal "P(k::nat) ==> (LEAST x. P(x)) <= k";
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5187
diff changeset
   498
by (etac rev_mp 1);
9870
2374ba026fc6 less_induct -> nat_less_induct
nipkow
parents: 9160
diff changeset
   499
by (res_inst_tac [("n","k")] nat_less_induct 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   500
by (rtac impI 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   501
by (rtac classical 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   502
by (res_inst_tac [("s","n")] (Least_equality RS ssubst) 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   503
by (assume_tac 1);
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   504
by (rtac le_refl 2);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4032
diff changeset
   505
by (blast_tac (claset() addIs [less_imp_le,le_trans]) 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   506
qed "Least_le";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   507
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5187
diff changeset
   508
Goal "k < (LEAST x. P(x)) ==> ~P(k::nat)";
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   509
by (rtac notI 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5187
diff changeset
   510
by (etac (rewrite_rule [le_def] Least_le RS notE) 1 THEN assume_tac 1);
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   511
qed "not_less_Least";
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents:
diff changeset
   512
5983
79e301a6a51b At last: linear arithmetic for nat!
nipkow
parents: 5654
diff changeset
   513
(* [| m ~= n; m < n ==> P; n < m ==> P |] ==> P *)
4737
4544290d5a6b The theorem nat_neqE, and some tidying
paulson
parents: 4686
diff changeset
   514
bind_thm("nat_neqE", nat_neq_iff RS iffD1 RS disjE);
7064
b053e0ab9f60 New lemmas by Stefan Merz.
nipkow
parents: 7030
diff changeset
   515
9160
7a98dbf3e579 using the new theorem wf_not_refl; tidied
paulson
parents: 9108
diff changeset
   516
Goal "(S::nat set) ~= {} ==> EX x:S. ALL y:S. x <= y";
7064
b053e0ab9f60 New lemmas by Stefan Merz.
nipkow
parents: 7030
diff changeset
   517
by (cut_facts_tac [wf_pred_nat RS wf_trancl RS (wf_eq_minimal RS iffD1)] 1);
b053e0ab9f60 New lemmas by Stefan Merz.
nipkow
parents: 7030
diff changeset
   518
by (dres_inst_tac [("x","S")] spec 1);
b053e0ab9f60 New lemmas by Stefan Merz.
nipkow
parents: 7030
diff changeset
   519
by (Asm_full_simp_tac 1);
b053e0ab9f60 New lemmas by Stefan Merz.
nipkow
parents: 7030
diff changeset
   520
by (etac impE 1);
b053e0ab9f60 New lemmas by Stefan Merz.
nipkow
parents: 7030
diff changeset
   521
by (Force_tac 1);
b053e0ab9f60 New lemmas by Stefan Merz.
nipkow
parents: 7030
diff changeset
   522
by (force_tac (claset(), simpset() addsimps [less_eq,not_le_iff_less]) 1);
b053e0ab9f60 New lemmas by Stefan Merz.
nipkow
parents: 7030
diff changeset
   523
qed "nonempty_has_least";