src/HOL/WF.ML
author paulson
Mon, 23 Jun 1997 10:42:03 +0200
changeset 3457 a8ab7c64817c
parent 3439 54785105178c
child 3708 56facaebf3e3
permissions -rw-r--r--
Ran expandshort
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)*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    15
val [prem1,prem2] = goalw WF.thy [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)";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    19
by (strip_tac 1);
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);
1786
8a31d85d27b8 best_tac, deepen_tac and safe_tac now also use default claset.
berghofe
parents: 1771
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
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    25
val major::prems = goalw WF.thy [wf_def]
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);
2935
998cb95fdd43 Yet more fast_tac->blast_tac, and other tidying
paulson
parents: 2637
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
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 950
diff changeset
    39
val prems = goal WF.thy "[| wf(r);  (a,x):r;  (x,a):r |] ==> P";
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 950
diff changeset
    40
by (subgoal_tac "! x. (a,x):r --> (x,a):r --> P" 1);
2935
998cb95fdd43 Yet more fast_tac->blast_tac, and other tidying
paulson
parents: 2637
diff changeset
    41
by (blast_tac (!claset addIs prems) 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    42
by (wf_ind_tac "a" prems 1);
2935
998cb95fdd43 Yet more fast_tac->blast_tac, and other tidying
paulson
parents: 2637
diff changeset
    43
by (Blast_tac 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    44
qed "wf_asym";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    45
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 950
diff changeset
    46
val prems = goal WF.thy "[| wf(r);  (a,a): r |] ==> P";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    47
by (rtac wf_asym 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    48
by (REPEAT (resolve_tac prems 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! *)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    52
val [prem] = goal WF.thy "wf(r) ==> wf(r^+)";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    53
by (rewtac wf_def);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    54
by (strip_tac 1);
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);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    58
by (res_inst_tac [("a","x")] (prem RS wf_induct) 1);
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
3198
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
    66
(*----------------------------------------------------------------------------
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
    67
 * Minimal-element characterization of well-foundedness
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
    68
 *---------------------------------------------------------------------------*)
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
    69
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
    70
val wfr::_ = goalw WF.thy [wf_def]
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
    71
    "wf r ==> x:Q --> (? z:Q. ! y. (y,z):r --> y~:Q)";
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
    72
by (rtac (wfr RS spec RS mp RS spec) 1);
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
    73
by (Blast_tac 1);
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
    74
val lemma1 = result();
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
    75
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
    76
goalw WF.thy [wf_def]
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
    77
    "!!r. (! Q x. x:Q --> (? z:Q. ! y. (y,z):r --> y~:Q)) ==> wf r";
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
    78
by (strip_tac 1);
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
    79
by (dres_inst_tac [("x", "{x. ~ P x}")] spec 1);
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
    80
by (Blast_tac 1);
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
    81
val lemma2 = result();
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
    82
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
    83
goal WF.thy "wf r = (! Q x. x:Q --> (? z:Q. ! y. (y,z):r --> y~:Q))";
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
    84
by (blast_tac (!claset addSIs [lemma1, lemma2]) 1);
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
    85
qed "wf_eq_minimal";
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
    86
3413
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
    87
(*---------------------------------------------------------------------------
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
    88
 * Wellfoundedness of subsets
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
    89
 *---------------------------------------------------------------------------*)
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
    90
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
    91
goal thy "!!r. [| wf(r);  p<=r |] ==> wf(p)";
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
    92
by (full_simp_tac (!simpset addsimps [wf_eq_minimal]) 1);
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
    93
by (Fast_tac 1);
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
    94
qed "wf_subset";
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
    95
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
    96
(*---------------------------------------------------------------------------
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
    97
 * Wellfoundedness of the empty relation.
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
    98
 *---------------------------------------------------------------------------*)
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
goal thy "wf({})";
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
   101
by (simp_tac (!simpset addsimps [wf_def]) 1);
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
   102
qed "wf_empty";
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
   103
AddSIs [wf_empty];
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
   104
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
   105
(*---------------------------------------------------------------------------
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
   106
 * Wellfoundedness of `insert'
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
   107
 *---------------------------------------------------------------------------*)
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
goal WF.thy "wf(insert (y,x) r) = (wf(r) & (x,y) ~: r^*)";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3439
diff changeset
   110
by (rtac iffI 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3439
diff changeset
   111
 by (blast_tac (!claset addEs [wf_trancl RS wf_irrefl] addIs
3413
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
   112
      [rtrancl_into_trancl1,wf_subset,impOfSubs rtrancl_mono]) 1);
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3439
diff changeset
   113
by (asm_full_simp_tac (!simpset addsimps [wf_eq_minimal]) 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3439
diff changeset
   114
by (safe_tac (!claset));
a8ab7c64817c Ran expandshort
paulson
parents: 3439
diff changeset
   115
by (EVERY1[rtac allE, atac, etac impE, Blast_tac]);
a8ab7c64817c Ran expandshort
paulson
parents: 3439
diff changeset
   116
by (etac bexE 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3439
diff changeset
   117
by (rename_tac "a" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3439
diff changeset
   118
by (case_tac "a = x" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3439
diff changeset
   119
 by (res_inst_tac [("x","a")]bexI 2);
a8ab7c64817c Ran expandshort
paulson
parents: 3439
diff changeset
   120
  by (assume_tac 3);
a8ab7c64817c Ran expandshort
paulson
parents: 3439
diff changeset
   121
 by (Blast_tac 2);
a8ab7c64817c Ran expandshort
paulson
parents: 3439
diff changeset
   122
by (case_tac "y:Q" 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3439
diff changeset
   123
 by (Blast_tac 2);
a8ab7c64817c Ran expandshort
paulson
parents: 3439
diff changeset
   124
by (res_inst_tac [("x","{z. z:Q & (z,y) : r^*}")]allE 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3439
diff changeset
   125
 by (assume_tac 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3439
diff changeset
   126
by (fast_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
   127
qed "wf_insert";
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
   128
AddIffs [wf_insert];
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
   129
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
   130
(*** acyclic ***)
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
   131
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
   132
goalw WF.thy [acyclic_def]
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
   133
 "!!r. wf r ==> acyclic r";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3439
diff changeset
   134
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
   135
qed "wf_acyclic";
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
   136
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
   137
goalw WF.thy [acyclic_def]
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
   138
  "acyclic(insert (y,x) r) = (acyclic r & (x,y) ~: r^*)";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3439
diff changeset
   139
by (simp_tac (!simpset addsimps [trancl_insert]) 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3439
diff changeset
   140
by (blast_tac (!claset addEs [make_elim rtrancl_trans]) 1);
3413
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
   141
qed "acyclic_insert";
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
   142
AddIffs [acyclic_insert];
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 3320
diff changeset
   143
3439
54785105178c converse -> ^-1
nipkow
parents: 3413
diff changeset
   144
goalw WF.thy [acyclic_def] "acyclic(r^-1) = acyclic r";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3439
diff changeset
   145
by (simp_tac (!simpset addsimps [trancl_inverse]) 1);
3439
54785105178c converse -> ^-1
nipkow
parents: 3413
diff changeset
   146
qed "acyclic_inverse";
3198
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
   147
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   148
(** cut **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   149
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   150
(*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
   151
  H_cong to expose the equality*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   152
goalw WF.thy [cut_def]
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 950
diff changeset
   153
    "(cut f r x = cut g r x) = (!y. (y,x):r --> f(y)=g(y))";
1552
6f71b5d46700 Ran expandshort
paulson
parents: 1485
diff changeset
   154
by (simp_tac (HOL_ss addsimps [expand_fun_eq]
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   155
                    setloop (split_tac [expand_if])) 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   156
qed "cuts_eq";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   157
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 950
diff changeset
   158
goalw WF.thy [cut_def] "!!x. (x,a):r ==> (cut f r a)(x) = f(x)";
1552
6f71b5d46700 Ran expandshort
paulson
parents: 1485
diff changeset
   159
by (asm_simp_tac HOL_ss 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   160
qed "cut_apply";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   161
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   162
(*** is_recfun ***)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   163
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   164
goalw WF.thy [is_recfun_def,cut_def]
3320
3a5e4930fb77 Added `arbitrary'
nipkow
parents: 3198
diff changeset
   165
    "!!f. [| 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
   166
by (etac ssubst 1);
1552
6f71b5d46700 Ran expandshort
paulson
parents: 1485
diff changeset
   167
by (asm_simp_tac HOL_ss 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   168
qed "is_recfun_undef";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   169
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   170
(*** NOTE! some simplifications need a different finish_tac!! ***)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   171
fun indhyp_tac hyps =
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   172
    (cut_facts_tac hyps THEN'
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   173
       DEPTH_SOLVE_1 o (ares_tac [TrueI] ORELSE'
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1264
diff changeset
   174
                        eresolve_tac [transD, mp, allE]));
2637
e9b203f854ae reflecting my recent changes of the simplifier and classical reasoner
oheimb
parents: 2031
diff changeset
   175
val wf_super_ss = HOL_ss addSolver indhyp_tac;
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   176
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   177
val prems = goalw WF.thy [is_recfun_def,cut_def]
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   178
    "[| 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
   179
    \ (x,a):r --> (x,b):r --> f(x)=g(x)";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   180
by (cut_facts_tac prems 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   181
by (etac wf_induct 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   182
by (REPEAT (rtac impI 1 ORELSE etac ssubst 1));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   183
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
   184
qed_spec_mp "is_recfun_equal";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   185
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   186
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   187
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
   188
    "[| wf(r);  trans(r); \
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   189
\       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
   190
\    cut f r b = g";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   191
val gundef = recgb RS is_recfun_undef
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   192
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
   193
by (cut_facts_tac prems 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   194
by (rtac ext 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   195
by (asm_simp_tac (wf_super_ss addsimps [gundef,fisg]
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   196
                              setloop (split_tac [expand_if])) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   197
qed "is_recfun_cut";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   198
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   199
(*** Main Existence Lemma -- Basic Properties of the_recfun ***)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   200
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   201
val prems = goalw WF.thy [the_recfun_def]
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   202
    "is_recfun r H a f ==> is_recfun r H a (the_recfun r H a)";
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   203
by (res_inst_tac [("P", "is_recfun r H a")] selectI 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   204
by (resolve_tac prems 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   205
qed "is_the_recfun";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   206
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   207
val prems = goal WF.thy
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   208
 "[| 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
   209
  by (cut_facts_tac prems 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   210
  by (wf_ind_tac "a" prems 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   211
  by (res_inst_tac [("f","cut (%y. H (the_recfun r H y) y) r a1")]
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   212
                   is_the_recfun 1);
1552
6f71b5d46700 Ran expandshort
paulson
parents: 1485
diff changeset
   213
  by (rewtac is_recfun_def);
2031
03a843f0f447 Ran expandshort
paulson
parents: 1786
diff changeset
   214
  by (stac cuts_eq 1);
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   215
  by (rtac allI 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   216
  by (rtac impI 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   217
  by (res_inst_tac [("f1","H"),("x","y")](arg_cong RS fun_cong) 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   218
  by (subgoal_tac
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   219
         "the_recfun r H y = cut(%x. H(cut(the_recfun r H y) r x) x) r y" 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   220
  by (etac allE 2);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   221
  by (dtac impE 2);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   222
  by (atac 2);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   223
  by (atac 3);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   224
  by (atac 2);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   225
  by (etac ssubst 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   226
  by (simp_tac (HOL_ss addsimps [cuts_eq]) 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   227
  by (rtac allI 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   228
  by (rtac impI 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   229
  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
   230
  by (res_inst_tac [("f1","H"),("x","ya")](arg_cong RS fun_cong) 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   231
  by (fold_tac [is_recfun_def]);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   232
  by (asm_simp_tac (wf_super_ss addsimps[cut_apply,is_recfun_cut,cuts_eq]) 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   233
qed "unfold_the_recfun";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   234
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   235
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
   236
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   237
(*--------------Old proof-----------------------------------------------------
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   238
val prems = goal WF.thy
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   239
    "[| 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
   240
by (cut_facts_tac prems 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   241
by (wf_ind_tac "a" prems 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   242
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
   243
by (rewrite_goals_tac [is_recfun_def, wftrec_def]);
2031
03a843f0f447 Ran expandshort
paulson
parents: 1786
diff changeset
   244
by (stac cuts_eq 1);
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   245
(*Applying the substitution: must keep the quantified assumption!!*)
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   246
by (EVERY1 [strip_tac, rtac H_cong1, rtac allE, atac,
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   247
            etac (mp RS ssubst), atac]); 
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   248
by (fold_tac [is_recfun_def]);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   249
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
   250
qed "unfold_the_recfun";
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   251
---------------------------------------------------------------------------*)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   252
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   253
(** Removal of the premise trans(r) **)
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   254
val th = rewrite_rule[is_recfun_def]
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   255
                     (trans_trancl RSN (2,(wf_trancl RS unfold_the_recfun)));
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   256
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   257
goalw WF.thy [wfrec_def]
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   258
    "!!r. wf(r) ==> wfrec r H a = H (cut (wfrec r H) r a) a";
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   259
by (rtac H_cong 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   260
by (rtac refl 2);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   261
by (simp_tac (HOL_ss addsimps [cuts_eq]) 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   262
by (rtac allI 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   263
by (rtac impI 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   264
by (simp_tac(HOL_ss addsimps [wfrec_def]) 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   265
by (res_inst_tac [("a1","a")] (th RS ssubst) 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   266
by (atac 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   267
by (forward_tac[wf_trancl] 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   268
by (forward_tac[r_into_trancl] 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   269
by (asm_simp_tac (HOL_ss addsimps [cut_apply]) 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   270
by (rtac H_cong 1);    (*expose the equality of cuts*)
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   271
by (rtac refl 2);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   272
by (simp_tac (HOL_ss addsimps [cuts_eq, cut_apply, r_into_trancl]) 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   273
by (strip_tac 1);
1485
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1475
diff changeset
   274
by (res_inst_tac [("r","r^+")] is_recfun_equal 1);
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   275
by (atac 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   276
by (rtac trans_trancl 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   277
by (rtac unfold_the_recfun 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   278
by (atac 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   279
by (rtac trans_trancl 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   280
by (rtac unfold_the_recfun 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   281
by (atac 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   282
by (rtac trans_trancl 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   283
by (rtac transD 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   284
by (rtac trans_trancl 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   285
by (forw_inst_tac [("a","ya")] r_into_trancl 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   286
by (atac 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   287
by (atac 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   288
by (forw_inst_tac [("a","ya")] r_into_trancl 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   289
by (atac 1);
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   290
qed "wfrec";
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   291
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   292
(*--------------Old proof-----------------------------------------------------
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   293
goalw WF.thy [wfrec_def]
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   294
    "!!r. 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
   295
by (etac (wf_trancl RS wftrec RS ssubst) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   296
by (rtac trans_trancl 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   297
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
   298
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
   299
qed "wfrec";
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   300
---------------------------------------------------------------------------*)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   301
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   302
(*---------------------------------------------------------------------------
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   303
 * This form avoids giant explosions in proofs.  NOTE USE OF == 
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   304
 *---------------------------------------------------------------------------*)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   305
val rew::prems = goal WF.thy
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   306
    "[| 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
   307
by (rewtac rew);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   308
by (REPEAT (resolve_tac (prems@[wfrec]) 1));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   309
qed "def_wfrec";
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1465
diff changeset
   310
3198
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
   311
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
   312
(**** TFL variants ****)
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
   313
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
   314
goal WF.thy
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
   315
    "!R. wf R --> (!P. (!x. (!y. (y,x):R --> P y) --> P x) --> (!x. P x))";
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
   316
by (strip_tac 1);
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
   317
by (res_inst_tac [("r","R"),("P","P"), ("a","x")] wf_induct 1);
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
   318
by (assume_tac 1);
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
   319
by (Blast_tac 1);
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
   320
qed"tfl_wf_induct";
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
   321
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
   322
goal WF.thy "!f R. (x,a):R --> (cut f R a)(x) = f(x)";
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
   323
by (strip_tac 1);
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
   324
by (rtac cut_apply 1);
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
   325
by (assume_tac 1);
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
   326
qed"tfl_cut_apply";
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
   327
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
   328
goal WF.thy "!M R f. (f=wfrec R M) --> wf R --> (!x. f x = M (cut f R x) x)";
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
   329
by (strip_tac 1);
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
   330
by (res_inst_tac [("r","R"), ("H","M"),
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
   331
                  ("a","x"), ("f","f")] (eq_reflection RS def_wfrec) 1);
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
   332
by (assume_tac 1);
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
   333
by (assume_tac 1);
295287618e30 New proofs for TFL
paulson
parents: 2935
diff changeset
   334
qed "tfl_wfrec";