src/HOL/WF.ML
author oheimb
Thu, 24 Sep 1998 17:17:14 +0200
changeset 5553 ae42b36a50c2
parent 5521 7970832271cc
child 5579 32f99ca617b7
permissions -rw-r--r--
renamed mk_meta_eq to mk_eq
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
     1
(*  Title:      HOL/wf.ML
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     2
    ID:         $Id$
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
     3
    Author:     Tobias Nipkow, with minor changes by Konrad Slind
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
     4
    Copyright   1992  University of Cambridge/1995 TU Munich
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     5
3198
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
     6
Wellfoundedness, induction, and  recursion
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
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     9
open WF;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    10
950
323f8ca4587a Removed superfluous type constraint
nipkow
parents: 923
diff changeset
    11
val H_cong = read_instantiate [("f","H")] (standard(refl RS cong RS cong));
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    12
val H_cong1 = refl RS H_cong;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    13
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    14
(*Restriction to domain A.  If r is well-founded over A then wf(r)*)
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5281
diff changeset
    15
val [prem1,prem2] = Goalw [wf_def]
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1618
diff changeset
    16
 "[| r <= A Times A;  \
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 950
diff changeset
    17
\    !!x P. [| ! x. (! y. (y,x) : r --> P(y)) --> P(x);  x:A |] ==> P(x) |]  \
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    18
\ ==>  wf(r)";
3708
56facaebf3e3 Changed some proofs to use Clarify_tac
paulson
parents: 3457
diff changeset
    19
by (Clarify_tac 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    20
by (rtac allE 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    21
by (assume_tac 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4059
diff changeset
    22
by (best_tac (claset() addSEs [prem1 RS subsetD RS SigmaE2] addIs [prem2]) 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    23
qed "wfI";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    24
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5281
diff changeset
    25
val major::prems = Goalw [wf_def]
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    26
    "[| wf(r);          \
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 950
diff changeset
    27
\       !!x.[| ! y. (y,x): r --> P(y) |] ==> P(x) \
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    28
\    |]  ==>  P(a)";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    29
by (rtac (major RS spec RS mp RS spec) 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4059
diff changeset
    30
by (blast_tac (claset() addIs prems) 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    31
qed "wf_induct";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    32
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    33
(*Perform induction on i, then prove the wf(r) subgoal using prems. *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    34
fun wf_ind_tac a prems i = 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    35
    EVERY [res_inst_tac [("a",a)] wf_induct i,
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1264
diff changeset
    36
           rename_last_tac a ["1"] (i+1),
5d7a7e439cec expanded tabs
clasohm
parents: 1264
diff changeset
    37
           ares_tac prems i];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    38
5452
b38332431a8c New theorem wf_not_sym and well-formed wf_asym
paulson
parents: 5337
diff changeset
    39
Goal "wf(r) ==> ! x. (a,x):r --> (x,a)~:r";
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5281
diff changeset
    40
by (wf_ind_tac "a" [] 1);
2935
998cb95fdd43 Yet more fast_tac->blast_tac, and other tidying
paulson
parents: 2637
diff changeset
    41
by (Blast_tac 1);
5452
b38332431a8c New theorem wf_not_sym and well-formed wf_asym
paulson
parents: 5337
diff changeset
    42
qed_spec_mp "wf_not_sym";
b38332431a8c New theorem wf_not_sym and well-formed wf_asym
paulson
parents: 5337
diff changeset
    43
b38332431a8c New theorem wf_not_sym and well-formed wf_asym
paulson
parents: 5337
diff changeset
    44
(* [| wf(r);  (a,x):r;  ~P ==> (x,a):r |] ==> P *)
b38332431a8c New theorem wf_not_sym and well-formed wf_asym
paulson
parents: 5337
diff changeset
    45
bind_thm ("wf_asym", wf_not_sym RS swap);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    46
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5281
diff changeset
    47
Goal "[| wf(r);  (a,a): r |] ==> P";
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5281
diff changeset
    48
by (blast_tac (claset() addEs [wf_asym]) 1);
1618
372880456b5b Library changes for mutilated checkerboard
paulson
parents: 1552
diff changeset
    49
qed "wf_irrefl";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    50
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
    51
(*transitive closure of a wf relation is wf! *)
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5281
diff changeset
    52
Goal "wf(r) ==> wf(r^+)";
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5281
diff changeset
    53
by (stac wf_def 1);
3708
56facaebf3e3 Changed some proofs to use Clarify_tac
paulson
parents: 3457
diff changeset
    54
by (Clarify_tac 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    55
(*must retain the universal formula for later use!*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    56
by (rtac allE 1 THEN assume_tac 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    57
by (etac mp 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5281
diff changeset
    58
by (eres_inst_tac [("a","x")] wf_induct 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    59
by (rtac (impI RS allI) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    60
by (etac tranclE 1);
2935
998cb95fdd43 Yet more fast_tac->blast_tac, and other tidying
paulson
parents: 2637
diff changeset
    61
by (Blast_tac 1);
998cb95fdd43 Yet more fast_tac->blast_tac, and other tidying
paulson
parents: 2637
diff changeset
    62
by (Blast_tac 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    63
qed "wf_trancl";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    64
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    65
4762
afebaa81f148 added wf_converse_trancl, adapted proof of wfrec
oheimb
parents: 4750
diff changeset
    66
val wf_converse_trancl = prove_goal thy 
afebaa81f148 added wf_converse_trancl, adapted proof of wfrec
oheimb
parents: 4750
diff changeset
    67
"!!X. wf (r^-1) ==> wf ((r^+)^-1)" (K [
afebaa81f148 added wf_converse_trancl, adapted proof of wfrec
oheimb
parents: 4750
diff changeset
    68
	stac (trancl_converse RS sym) 1,
afebaa81f148 added wf_converse_trancl, adapted proof of wfrec
oheimb
parents: 4750
diff changeset
    69
	etac wf_trancl 1]);
afebaa81f148 added wf_converse_trancl, adapted proof of wfrec
oheimb
parents: 4750
diff changeset
    70
3198
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
    71
(*----------------------------------------------------------------------------
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
    72
 * Minimal-element characterization of well-foundedness
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
    73
 *---------------------------------------------------------------------------*)
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
    74
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5281
diff changeset
    75
Goalw [wf_def] "wf r ==> x:Q --> (? z:Q. ! y. (y,z):r --> y~:Q)";
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
    76
by (dtac spec 1);
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5281
diff changeset
    77
by (etac (mp RS spec) 1);
3198
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
    78
by (Blast_tac 1);
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
    79
val lemma1 = result();
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
    80
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5281
diff changeset
    81
Goalw [wf_def] "(! Q x. x:Q --> (? z:Q. ! y. (y,z):r --> y~:Q)) ==> wf r";
3708
56facaebf3e3 Changed some proofs to use Clarify_tac
paulson
parents: 3457
diff changeset
    82
by (Clarify_tac 1);
3198
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
    83
by (dres_inst_tac [("x", "{x. ~ P x}")] spec 1);
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
    84
by (Blast_tac 1);
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
    85
val lemma2 = result();
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
    86
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4821
diff changeset
    87
Goal "wf r = (! Q x. x:Q --> (? z:Q. ! y. (y,z):r --> y~:Q))";
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4059
diff changeset
    88
by (blast_tac (claset() addSIs [lemma1, lemma2]) 1);
3198
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
    89
qed "wf_eq_minimal";
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
    90
3413
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
    91
(*---------------------------------------------------------------------------
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
    92
 * Wellfoundedness of subsets
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
    93
 *---------------------------------------------------------------------------*)
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
    94
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5132
diff changeset
    95
Goal "[| wf(r);  p<=r |] ==> wf(p)";
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4059
diff changeset
    96
by (full_simp_tac (simpset() addsimps [wf_eq_minimal]) 1);
3413
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
    97
by (Fast_tac 1);
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
    98
qed "wf_subset";
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
    99
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
   100
(*---------------------------------------------------------------------------
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
   101
 * Wellfoundedness of the empty relation.
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
   102
 *---------------------------------------------------------------------------*)
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
   103
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4821
diff changeset
   104
Goal "wf({})";
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4059
diff changeset
   105
by (simp_tac (simpset() addsimps [wf_def]) 1);
3413
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
   106
qed "wf_empty";
5281
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   107
AddIffs [wf_empty];
3413
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
   108
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
   109
(*---------------------------------------------------------------------------
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
   110
 * Wellfoundedness of `insert'
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
   111
 *---------------------------------------------------------------------------*)
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
   112
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4821
diff changeset
   113
Goal "wf(insert (y,x) r) = (wf(r) & (x,y) ~: r^*)";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3439
diff changeset
   114
by (rtac iffI 1);
4350
1983e4054fd8 updated for latest Blast_tac, which treats equality differently
paulson
parents: 4153
diff changeset
   115
 by (blast_tac (claset() addEs [wf_trancl RS wf_irrefl] 
1983e4054fd8 updated for latest Blast_tac, which treats equality differently
paulson
parents: 4153
diff changeset
   116
	addIs [rtrancl_into_trancl1,wf_subset,impOfSubs rtrancl_mono]) 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4059
diff changeset
   117
by (asm_full_simp_tac (simpset() addsimps [wf_eq_minimal]) 1);
4153
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4089
diff changeset
   118
by Safe_tac;
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3439
diff changeset
   119
by (EVERY1[rtac allE, atac, etac impE, Blast_tac]);
a8ab7c64817c Ran expandshort
paulson
parents: 3439
diff changeset
   120
by (etac bexE 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3439
diff changeset
   121
by (rename_tac "a" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3439
diff changeset
   122
by (case_tac "a = x" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3439
diff changeset
   123
 by (res_inst_tac [("x","a")]bexI 2);
a8ab7c64817c Ran expandshort
paulson
parents: 3439
diff changeset
   124
  by (assume_tac 3);
a8ab7c64817c Ran expandshort
paulson
parents: 3439
diff changeset
   125
 by (Blast_tac 2);
a8ab7c64817c Ran expandshort
paulson
parents: 3439
diff changeset
   126
by (case_tac "y:Q" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3439
diff changeset
   127
 by (Blast_tac 2);
4059
59c1422c9da5 New Blast_tac (and minor tidying...)
paulson
parents: 3919
diff changeset
   128
by (res_inst_tac [("x","{z. z:Q & (z,y) : r^*}")] allE 1);
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3439
diff changeset
   129
 by (assume_tac 1);
4059
59c1422c9da5 New Blast_tac (and minor tidying...)
paulson
parents: 3919
diff changeset
   130
by (thin_tac "! Q. (? x. x : Q) --> ?P Q" 1);	(*essential for speed*)
4350
1983e4054fd8 updated for latest Blast_tac, which treats equality differently
paulson
parents: 4153
diff changeset
   131
(*Blast_tac with new substOccur fails*)
1983e4054fd8 updated for latest Blast_tac, which treats equality differently
paulson
parents: 4153
diff changeset
   132
by (best_tac (claset() addIs [rtrancl_into_rtrancl2]) 1);
3413
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
   133
qed "wf_insert";
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
   134
AddIffs [wf_insert];
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
   135
5281
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   136
(*---------------------------------------------------------------------------
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   137
 * Wellfoundedness of `disjoint union'
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   138
 *---------------------------------------------------------------------------*)
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   139
5330
8c9fadda81f4 added comment
paulson
parents: 5318
diff changeset
   140
(*Intuition behind this proof for the case of binary union:
8c9fadda81f4 added comment
paulson
parents: 5318
diff changeset
   141
8c9fadda81f4 added comment
paulson
parents: 5318
diff changeset
   142
  Goal: find an (R u S)-min element of a nonempty subset A.
8c9fadda81f4 added comment
paulson
parents: 5318
diff changeset
   143
  by case distinction:
8c9fadda81f4 added comment
paulson
parents: 5318
diff changeset
   144
  1. There is a step a -R-> b with a,b : A.
8c9fadda81f4 added comment
paulson
parents: 5318
diff changeset
   145
     Pick an R-min element z of the (nonempty) set {a:A | EX b:A. a -R-> b}.
8c9fadda81f4 added comment
paulson
parents: 5318
diff changeset
   146
     By definition, there is z':A s.t. z -R-> z'. Because z is R-min in the
8c9fadda81f4 added comment
paulson
parents: 5318
diff changeset
   147
     subset, z' must be R-min in A. Because z' has an R-predecessor, it cannot
8c9fadda81f4 added comment
paulson
parents: 5318
diff changeset
   148
     have an S-successor and is thus S-min in A as well.
8c9fadda81f4 added comment
paulson
parents: 5318
diff changeset
   149
  2. There is no such step.
8c9fadda81f4 added comment
paulson
parents: 5318
diff changeset
   150
     Pick an S-min element of A. In this case it must be an R-min
8c9fadda81f4 added comment
paulson
parents: 5318
diff changeset
   151
     element of A as well.
8c9fadda81f4 added comment
paulson
parents: 5318
diff changeset
   152
8c9fadda81f4 added comment
paulson
parents: 5318
diff changeset
   153
*)
8c9fadda81f4 added comment
paulson
parents: 5318
diff changeset
   154
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5281
diff changeset
   155
Goal "[| !i:I. wf(r i); \
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5281
diff changeset
   156
\        !i:I.!j:I. r i ~= r j --> Domain(r i) Int Range(r j) = {} & \
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5281
diff changeset
   157
\                                  Domain(r j) Int Range(r i) = {} \
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5281
diff changeset
   158
\     |] ==> wf(UN i:I. r i)";
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   159
by (asm_full_simp_tac (HOL_basic_ss addsimps [wf_eq_minimal]) 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   160
by (Clarify_tac 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   161
by (rename_tac "A a" 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   162
by (case_tac "? i:I. ? a:A. ? b:A. (b,a) : r i" 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   163
 by (Clarify_tac 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   164
 by (EVERY1[dtac bspec, atac,
5281
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   165
           eres_inst_tac[("x","{a. a:A & (? b:A. (b,a) : r i)}")]allE]);
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   166
 by (EVERY1[etac allE,etac impE]);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   167
  by (Blast_tac 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   168
 by (Clarify_tac 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   169
 by (rename_tac "z'" 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   170
 by (res_inst_tac [("x","z'")] bexI 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   171
  by (assume_tac 2);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   172
 by (Clarify_tac 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   173
 by (rename_tac "j" 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   174
 by (case_tac "r j = r i" 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   175
  by (EVERY1[etac allE,etac impE,atac]);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   176
  by (Asm_full_simp_tac 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   177
  by (Blast_tac 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   178
 by (blast_tac (claset() addEs [equalityE]) 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   179
by (Asm_full_simp_tac 1);
5521
7970832271cc added wrapper for bspec
oheimb
parents: 5452
diff changeset
   180
by (fast_tac (claset() delWrapper "bspec") 1); (*faster than Blast_tac*)
5281
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   181
qed "wf_UN";
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   182
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   183
Goalw [Union_def]
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   184
 "[| !r:R. wf r; \
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   185
\    !r:R.!s:R. r ~= s --> Domain r Int Range s = {} & \
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   186
\                          Domain s Int Range r = {} \
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   187
\ |] ==> wf(Union R)";
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   188
by (rtac wf_UN 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   189
by (Blast_tac 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   190
by (Blast_tac 1);
5281
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   191
qed "wf_Union";
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   192
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5281
diff changeset
   193
Goal "[| wf r; wf s; Domain r Int Range s = {}; Domain s Int Range r = {} \
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5281
diff changeset
   194
\     |] ==> wf(r Un s)";
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   195
by (rtac (simplify (simpset()) (read_instantiate[("R","{r,s}")]wf_Union)) 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   196
by (Blast_tac 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   197
by (Blast_tac 1);
5281
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   198
qed "wf_Un";
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   199
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   200
(*---------------------------------------------------------------------------
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   201
 * Wellfoundedness of `image'
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   202
 *---------------------------------------------------------------------------*)
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   203
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   204
Goal "[| wf r; inj f |] ==> wf(prod_fun f f `` r)";
5318
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   205
by (asm_full_simp_tac (HOL_basic_ss addsimps [wf_eq_minimal]) 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   206
by (Clarify_tac 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   207
by (case_tac "? p. f p : Q" 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   208
by (eres_inst_tac [("x","{p. f p : Q}")]allE 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   209
by (fast_tac (claset() addDs [injD]) 1);
72bf8039b53f expandshort
paulson
parents: 5316
diff changeset
   210
by (Blast_tac 1);
5281
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   211
qed "wf_prod_fun_image";
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5278
diff changeset
   212
3413
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
   213
(*** acyclic ***)
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
   214
4750
f83cd6a06676 added acyclicI
oheimb
parents: 4746
diff changeset
   215
val acyclicI = prove_goalw WF.thy [acyclic_def] 
f83cd6a06676 added acyclicI
oheimb
parents: 4746
diff changeset
   216
"!!r. !x. (x, x) ~: r^+ ==> acyclic r" (K [atac 1]);
f83cd6a06676 added acyclicI
oheimb
parents: 4746
diff changeset
   217
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4821
diff changeset
   218
Goalw [acyclic_def]
5148
74919e8f221c More tidying and removal of "\!\!... from Goal commands
paulson
parents: 5143
diff changeset
   219
 "wf r ==> acyclic r";
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4059
diff changeset
   220
by (blast_tac (claset() addEs [wf_trancl RS wf_irrefl]) 1);
3413
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
   221
qed "wf_acyclic";
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
   222
5452
b38332431a8c New theorem wf_not_sym and well-formed wf_asym
paulson
parents: 5337
diff changeset
   223
Goalw [acyclic_def] "acyclic(insert (y,x) r) = (acyclic r & (x,y) ~: r^*)";
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 4059
diff changeset
   224
by (simp_tac (simpset() addsimps [trancl_insert]) 1);
5452
b38332431a8c New theorem wf_not_sym and well-formed wf_asym
paulson
parents: 5337
diff changeset
   225
by (blast_tac (claset() addIs [rtrancl_trans]) 1);
3413
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
   226
qed "acyclic_insert";
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
   227
AddIffs [acyclic_insert];
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
   228
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4821
diff changeset
   229
Goalw [acyclic_def] "acyclic(r^-1) = acyclic r";
4746
a5dcd7e4a37d inverse -> converse
paulson
parents: 4686
diff changeset
   230
by (simp_tac (simpset() addsimps [trancl_converse]) 1);
a5dcd7e4a37d inverse -> converse
paulson
parents: 4686
diff changeset
   231
qed "acyclic_converse";
3198
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
   232
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   233
(** cut **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   234
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   235
(*This rewrite rule works upon formulae; thus it requires explicit use of
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   236
  H_cong to expose the equality*)
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4821
diff changeset
   237
Goalw [cut_def]
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 950
diff changeset
   238
    "(cut f r x = cut g r x) = (!y. (y,x):r --> f(y)=g(y))";
4686
74a12e86b20b Removed `addsplits [expand_if]'
nipkow
parents: 4350
diff changeset
   239
by (simp_tac (HOL_ss addsimps [expand_fun_eq]) 1);
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   240
qed "cuts_eq";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   241
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5132
diff changeset
   242
Goalw [cut_def] "(x,a):r ==> (cut f r a)(x) = f(x)";
1552
6f71b5d46700 Ran expandshort
paulson
parents: 1485
diff changeset
   243
by (asm_simp_tac HOL_ss 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   244
qed "cut_apply";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   245
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   246
(*** is_recfun ***)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   247
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4821
diff changeset
   248
Goalw [is_recfun_def,cut_def]
5148
74919e8f221c More tidying and removal of "\!\!... from Goal commands
paulson
parents: 5143
diff changeset
   249
    "[| is_recfun r H a f;  ~(b,a):r |] ==> f(b) = arbitrary";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   250
by (etac ssubst 1);
1552
6f71b5d46700 Ran expandshort
paulson
parents: 1485
diff changeset
   251
by (asm_simp_tac HOL_ss 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   252
qed "is_recfun_undef";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   253
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   254
(*** NOTE! some simplifications need a different finish_tac!! ***)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   255
fun indhyp_tac hyps =
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   256
    (cut_facts_tac hyps THEN'
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   257
       DEPTH_SOLVE_1 o (ares_tac [TrueI] ORELSE'
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1264
diff changeset
   258
                        eresolve_tac [transD, mp, allE]));
2637
e9b203f854ae reflecting my recent changes of the simplifier and classical reasoner
oheimb
parents: 2031
diff changeset
   259
val wf_super_ss = HOL_ss addSolver indhyp_tac;
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   260
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5281
diff changeset
   261
Goalw [is_recfun_def,cut_def]
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   262
    "[| wf(r);  trans(r);  is_recfun r H a f;  is_recfun r H b g |] ==> \
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 950
diff changeset
   263
    \ (x,a):r --> (x,b):r --> f(x)=g(x)";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   264
by (etac wf_induct 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   265
by (REPEAT (rtac impI 1 ORELSE etac ssubst 1));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   266
by (asm_simp_tac (wf_super_ss addcongs [if_cong]) 1);
1485
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1475
diff changeset
   267
qed_spec_mp "is_recfun_equal";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   268
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   269
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   270
val prems as [wfr,transr,recfa,recgb,_] = goalw WF.thy [cut_def]
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   271
    "[| wf(r);  trans(r); \
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   272
\       is_recfun r H a f;  is_recfun r H b g;  (b,a):r |] ==> \
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   273
\    cut f r b = g";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   274
val gundef = recgb RS is_recfun_undef
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   275
and fisg   = recgb RS (recfa RS (transr RS (wfr RS is_recfun_equal)));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   276
by (cut_facts_tac prems 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   277
by (rtac ext 1);
4686
74a12e86b20b Removed `addsplits [expand_if]'
nipkow
parents: 4350
diff changeset
   278
by (asm_simp_tac (wf_super_ss addsimps [gundef,fisg]) 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   279
qed "is_recfun_cut";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   280
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   281
(*** Main Existence Lemma -- Basic Properties of the_recfun ***)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   282
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5281
diff changeset
   283
Goalw [the_recfun_def]
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   284
    "is_recfun r H a f ==> is_recfun r H a (the_recfun r H a)";
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5281
diff changeset
   285
by (eres_inst_tac [("P", "is_recfun r H a")] selectI 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   286
qed "is_the_recfun";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   287
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5281
diff changeset
   288
Goal "[| wf(r);  trans(r) |] ==> is_recfun r H a (the_recfun r H a)";
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5281
diff changeset
   289
by (wf_ind_tac "a" [] 1);
4821
bfbaea156f43 Modifications due to improved simplifier.
nipkow
parents: 4762
diff changeset
   290
by (res_inst_tac [("f","cut (%y. H (the_recfun r H y) y) r a1")]
bfbaea156f43 Modifications due to improved simplifier.
nipkow
parents: 4762
diff changeset
   291
                 is_the_recfun 1);
bfbaea156f43 Modifications due to improved simplifier.
nipkow
parents: 4762
diff changeset
   292
by (rewtac is_recfun_def);
bfbaea156f43 Modifications due to improved simplifier.
nipkow
parents: 4762
diff changeset
   293
by (stac cuts_eq 1);
bfbaea156f43 Modifications due to improved simplifier.
nipkow
parents: 4762
diff changeset
   294
by (Clarify_tac 1);
bfbaea156f43 Modifications due to improved simplifier.
nipkow
parents: 4762
diff changeset
   295
by (rtac (refl RSN (2,H_cong)) 1);
bfbaea156f43 Modifications due to improved simplifier.
nipkow
parents: 4762
diff changeset
   296
by (subgoal_tac
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   297
         "the_recfun r H y = cut(%x. H(cut(the_recfun r H y) r x) x) r y" 1);
4821
bfbaea156f43 Modifications due to improved simplifier.
nipkow
parents: 4762
diff changeset
   298
 by (etac allE 2);
bfbaea156f43 Modifications due to improved simplifier.
nipkow
parents: 4762
diff changeset
   299
 by (dtac impE 2);
bfbaea156f43 Modifications due to improved simplifier.
nipkow
parents: 4762
diff changeset
   300
   by (atac 2);
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   301
  by (atac 3);
4821
bfbaea156f43 Modifications due to improved simplifier.
nipkow
parents: 4762
diff changeset
   302
 by (atac 2);
bfbaea156f43 Modifications due to improved simplifier.
nipkow
parents: 4762
diff changeset
   303
by (etac ssubst 1);
bfbaea156f43 Modifications due to improved simplifier.
nipkow
parents: 4762
diff changeset
   304
by (simp_tac (HOL_ss addsimps [cuts_eq]) 1);
bfbaea156f43 Modifications due to improved simplifier.
nipkow
parents: 4762
diff changeset
   305
by (Clarify_tac 1);
bfbaea156f43 Modifications due to improved simplifier.
nipkow
parents: 4762
diff changeset
   306
by (stac cut_apply 1);
5132
24f992a25adc isatool expandshort;
wenzelm
parents: 5069
diff changeset
   307
 by (fast_tac (claset() addDs [transD]) 1);
4821
bfbaea156f43 Modifications due to improved simplifier.
nipkow
parents: 4762
diff changeset
   308
by (rtac (refl RSN (2,H_cong)) 1);
bfbaea156f43 Modifications due to improved simplifier.
nipkow
parents: 4762
diff changeset
   309
by (fold_tac [is_recfun_def]);
bfbaea156f43 Modifications due to improved simplifier.
nipkow
parents: 4762
diff changeset
   310
by (asm_simp_tac (wf_super_ss addsimps[is_recfun_cut]) 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   311
qed "unfold_the_recfun";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   312
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   313
val unwind1_the_recfun = rewrite_rule[is_recfun_def] unfold_the_recfun;
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   314
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   315
(*--------------Old proof-----------------------------------------------------
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5281
diff changeset
   316
val prems = Goal
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   317
    "[| wf(r);  trans(r) |] ==> is_recfun r H a (the_recfun r H a)";
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   318
by (cut_facts_tac prems 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   319
by (wf_ind_tac "a" prems 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   320
by (res_inst_tac [("f", "cut (%y. wftrec r H y) r a1")] is_the_recfun 1); 
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   321
by (rewrite_goals_tac [is_recfun_def, wftrec_def]);
2031
03a843f0f447 Ran expandshort
paulson
parents: 1786
diff changeset
   322
by (stac cuts_eq 1);
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   323
(*Applying the substitution: must keep the quantified assumption!!*)
3708
56facaebf3e3 Changed some proofs to use Clarify_tac
paulson
parents: 3457
diff changeset
   324
by (EVERY1 [Clarify_tac, rtac H_cong1, rtac allE, atac,
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   325
            etac (mp RS ssubst), atac]); 
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   326
by (fold_tac [is_recfun_def]);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   327
by (asm_simp_tac (wf_super_ss addsimps[cut_apply,is_recfun_cut,cuts_eq]) 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   328
qed "unfold_the_recfun";
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   329
---------------------------------------------------------------------------*)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   330
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   331
(** Removal of the premise trans(r) **)
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   332
val th = rewrite_rule[is_recfun_def]
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   333
                     (trans_trancl RSN (2,(wf_trancl RS unfold_the_recfun)));
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   334
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4821
diff changeset
   335
Goalw [wfrec_def]
5148
74919e8f221c More tidying and removal of "\!\!... from Goal commands
paulson
parents: 5143
diff changeset
   336
    "wf(r) ==> wfrec r H a = H (cut (wfrec r H) r a) a";
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   337
by (rtac H_cong 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   338
by (rtac refl 2);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   339
by (simp_tac (HOL_ss addsimps [cuts_eq]) 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   340
by (rtac allI 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   341
by (rtac impI 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   342
by (simp_tac(HOL_ss addsimps [wfrec_def]) 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   343
by (res_inst_tac [("a1","a")] (th RS ssubst) 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   344
by (atac 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   345
by (forward_tac[wf_trancl] 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   346
by (forward_tac[r_into_trancl] 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   347
by (asm_simp_tac (HOL_ss addsimps [cut_apply]) 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   348
by (rtac H_cong 1);    (*expose the equality of cuts*)
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   349
by (rtac refl 2);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   350
by (simp_tac (HOL_ss addsimps [cuts_eq, cut_apply, r_into_trancl]) 1);
3708
56facaebf3e3 Changed some proofs to use Clarify_tac
paulson
parents: 3457
diff changeset
   351
by (Clarify_tac 1);
1485
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1475
diff changeset
   352
by (res_inst_tac [("r","r^+")] is_recfun_equal 1);
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   353
by (atac 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   354
by (rtac trans_trancl 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   355
by (rtac unfold_the_recfun 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   356
by (atac 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   357
by (rtac trans_trancl 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   358
by (rtac unfold_the_recfun 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   359
by (atac 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   360
by (rtac trans_trancl 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   361
by (rtac transD 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   362
by (rtac trans_trancl 1);
4762
afebaa81f148 added wf_converse_trancl, adapted proof of wfrec
oheimb
parents: 4750
diff changeset
   363
by (forw_inst_tac [("p","(ya,y)")] r_into_trancl 1);
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   364
by (atac 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   365
by (atac 1);
4762
afebaa81f148 added wf_converse_trancl, adapted proof of wfrec
oheimb
parents: 4750
diff changeset
   366
by (forw_inst_tac [("p","(ya,y)")] r_into_trancl 1);
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   367
by (atac 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   368
qed "wfrec";
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   369
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   370
(*--------------Old proof-----------------------------------------------------
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4821
diff changeset
   371
Goalw [wfrec_def]
5148
74919e8f221c More tidying and removal of "\!\!... from Goal commands
paulson
parents: 5143
diff changeset
   372
    "wf(r) ==> wfrec r H a = H (cut (wfrec r H) r a) a";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   373
by (etac (wf_trancl RS wftrec RS ssubst) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   374
by (rtac trans_trancl 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   375
by (rtac (refl RS H_cong) 1);    (*expose the equality of cuts*)
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   376
by (simp_tac (HOL_ss addsimps [cuts_eq, cut_apply, r_into_trancl]) 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   377
qed "wfrec";
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   378
---------------------------------------------------------------------------*)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   379
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   380
(*---------------------------------------------------------------------------
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   381
 * This form avoids giant explosions in proofs.  NOTE USE OF == 
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   382
 *---------------------------------------------------------------------------*)
5316
7a8975451a89 even more tidying of Goal commands
paulson
parents: 5281
diff changeset
   383
val rew::prems = goal thy
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   384
    "[| f==wfrec r H;  wf(r) |] ==> f(a) = H (cut f r a) a";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   385
by (rewtac rew);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   386
by (REPEAT (resolve_tac (prems@[wfrec]) 1));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   387
qed "def_wfrec";
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   388
3198
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
   389
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
   390
(**** TFL variants ****)
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
   391
5278
a903b66822e2 even more tidying of Goal commands
paulson
parents: 5148
diff changeset
   392
Goal "!R. wf R --> (!P. (!x. (!y. (y,x):R --> P y) --> P x) --> (!x. P x))";
3708
56facaebf3e3 Changed some proofs to use Clarify_tac
paulson
parents: 3457
diff changeset
   393
by (Clarify_tac 1);
3198
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
   394
by (res_inst_tac [("r","R"),("P","P"), ("a","x")] wf_induct 1);
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
   395
by (assume_tac 1);
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
   396
by (Blast_tac 1);
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
   397
qed"tfl_wf_induct";
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
   398
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4821
diff changeset
   399
Goal "!f R. (x,a):R --> (cut f R a)(x) = f(x)";
3708
56facaebf3e3 Changed some proofs to use Clarify_tac
paulson
parents: 3457
diff changeset
   400
by (Clarify_tac 1);
3198
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
   401
by (rtac cut_apply 1);
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
   402
by (assume_tac 1);
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
   403
qed"tfl_cut_apply";
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
   404
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4821
diff changeset
   405
Goal "!M R f. (f=wfrec R M) --> wf R --> (!x. f x = M (cut f R x) x)";
3708
56facaebf3e3 Changed some proofs to use Clarify_tac
paulson
parents: 3457
diff changeset
   406
by (Clarify_tac 1);
4153
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4089
diff changeset
   407
by (etac wfrec 1);
3198
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
   408
qed "tfl_wfrec";