src/HOL/Trancl.ML
author clasohm
Fri, 08 Mar 1996 13:11:09 +0100
changeset 1558 9c6ebfab4e05
parent 1552 6f71b5d46700
child 1642 21db0cf9a1a4
permissions -rw-r--r--
added constdefs section
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1301
diff changeset
     1
(*  Title:      HOL/trancl
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     2
    ID:         $Id$
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1301
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     4
    Copyright   1992  University of Cambridge
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     5
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     6
For trancl.thy.  Theorems about the transitive closure of a relation
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 Trancl;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    10
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    11
(** The relation rtrancl **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    12
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    13
goal Trancl.thy "mono(%s. id Un (r O s))";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    14
by (rtac monoI 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    15
by (REPEAT (ares_tac [monoI, subset_refl, comp_mono, Un_mono] 1));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    16
qed "rtrancl_fun_mono";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    17
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    18
val rtrancl_unfold = rtrancl_fun_mono RS (rtrancl_def RS def_lfp_Tarski);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    19
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    20
(*Reflexivity of rtrancl*)
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 923
diff changeset
    21
goal Trancl.thy "(a,a) : r^*";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    22
by (stac rtrancl_unfold 1);
1128
64b30e3cc6d4 Trancl is now based on Relation which used to be in Integ.
nipkow
parents: 1122
diff changeset
    23
by (fast_tac rel_cs 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    24
qed "rtrancl_refl";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    25
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    26
(*Closure under composition with r*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    27
val prems = goal Trancl.thy
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 923
diff changeset
    28
    "[| (a,b) : r^*;  (b,c) : r |] ==> (a,c) : r^*";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    29
by (stac rtrancl_unfold 1);
1128
64b30e3cc6d4 Trancl is now based on Relation which used to be in Integ.
nipkow
parents: 1122
diff changeset
    30
by (fast_tac (rel_cs addIs prems) 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    31
qed "rtrancl_into_rtrancl";
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
(*rtrancl of r contains r*)
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1130
diff changeset
    34
goal Trancl.thy "!!p. p : r ==> p : r^*";
1552
6f71b5d46700 Ran expandshort
paulson
parents: 1496
diff changeset
    35
by (split_all_tac 1);
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1130
diff changeset
    36
by (etac (rtrancl_refl RS rtrancl_into_rtrancl) 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    37
qed "r_into_rtrancl";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    38
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    39
(*monotonicity of rtrancl*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    40
goalw Trancl.thy [rtrancl_def] "!!r s. r <= s ==> r^* <= s^*";
1552
6f71b5d46700 Ran expandshort
paulson
parents: 1496
diff changeset
    41
by (REPEAT(ares_tac [lfp_mono,Un_mono,comp_mono,subset_refl] 1));
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    42
qed "rtrancl_mono";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    43
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    44
(** standard induction rule **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    45
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    46
val major::prems = goal Trancl.thy 
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 923
diff changeset
    47
  "[| (a,b) : r^*; \
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 923
diff changeset
    48
\     !!x. P((x,x)); \
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 923
diff changeset
    49
\     !!x y z.[| P((x,y)); (x,y): r^*; (y,z): r |]  ==>  P((x,z)) |] \
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 923
diff changeset
    50
\  ==>  P((a,b))";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    51
by (rtac ([rtrancl_def, rtrancl_fun_mono, major] MRS def_induct) 1);
1128
64b30e3cc6d4 Trancl is now based on Relation which used to be in Integ.
nipkow
parents: 1122
diff changeset
    52
by (fast_tac (rel_cs addIs prems) 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    53
qed "rtrancl_full_induct";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    54
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    55
(*nice induction rule*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    56
val major::prems = goal Trancl.thy
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 923
diff changeset
    57
    "[| (a::'a,b) : r^*;    \
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    58
\       P(a); \
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1301
diff changeset
    59
\       !!y z.[| (a,y) : r^*;  (y,z) : r;  P(y) |] ==> P(z) |]  \
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    60
\     ==> P(b)";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    61
(*by induction on this formula*)
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 923
diff changeset
    62
by (subgoal_tac "! y. (a::'a,b) = (a,y) --> P(y)" 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    63
(*now solve first subgoal: this formula is sufficient*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    64
by (fast_tac HOL_cs 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    65
(*now do the induction*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    66
by (resolve_tac [major RS rtrancl_full_induct] 1);
1128
64b30e3cc6d4 Trancl is now based on Relation which used to be in Integ.
nipkow
parents: 1122
diff changeset
    67
by (fast_tac (rel_cs addIs prems) 1);
64b30e3cc6d4 Trancl is now based on Relation which used to be in Integ.
nipkow
parents: 1122
diff changeset
    68
by (fast_tac (rel_cs addIs prems) 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    69
qed "rtrancl_induct";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    70
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    71
(*transitivity of transitive closure!! -- by induction.*)
1122
20b708827030 renamed trans_rtrancl to rtrancl_trans and modified it by expanding trans.
nipkow
parents: 1121
diff changeset
    72
goal Trancl.thy "!!r. [| (a,b):r^*; (b,c):r^* |] ==> (a,c):r^*";
20b708827030 renamed trans_rtrancl to rtrancl_trans and modified it by expanding trans.
nipkow
parents: 1121
diff changeset
    73
by (eres_inst_tac [("b","c")] rtrancl_induct 1);
1552
6f71b5d46700 Ran expandshort
paulson
parents: 1496
diff changeset
    74
by (ALLGOALS(fast_tac (HOL_cs addIs [rtrancl_into_rtrancl])));
1122
20b708827030 renamed trans_rtrancl to rtrancl_trans and modified it by expanding trans.
nipkow
parents: 1121
diff changeset
    75
qed "rtrancl_trans";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    76
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    77
(*elimination of rtrancl -- by induction on a special formula*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    78
val major::prems = goal Trancl.thy
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1301
diff changeset
    79
    "[| (a::'a,b) : r^*;  (a = b) ==> P;        \
5d7a7e439cec expanded tabs
clasohm
parents: 1301
diff changeset
    80
\       !!y.[| (a,y) : r^*; (y,b) : r |] ==> P  \
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    81
\    |] ==> P";
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 923
diff changeset
    82
by (subgoal_tac "(a::'a) = b  | (? y. (a,y) : r^* & (y,b) : r)" 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    83
by (rtac (major RS rtrancl_induct) 2);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    84
by (fast_tac (set_cs addIs prems) 2);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    85
by (fast_tac (set_cs addIs prems) 2);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    86
by (REPEAT (eresolve_tac ([asm_rl,exE,disjE,conjE]@prems) 1));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    87
qed "rtranclE";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    88
1496
c443b2adaf52 Added a few thms and the new theory RelPow.
nipkow
parents: 1465
diff changeset
    89
goal Trancl.thy "!!R. (y,z):R^* ==> !x. (x,y):R --> (x,z):R^*";
1552
6f71b5d46700 Ran expandshort
paulson
parents: 1496
diff changeset
    90
by (etac rtrancl_induct 1);
6f71b5d46700 Ran expandshort
paulson
parents: 1496
diff changeset
    91
by (fast_tac (HOL_cs addIs [r_into_rtrancl]) 1);
6f71b5d46700 Ran expandshort
paulson
parents: 1496
diff changeset
    92
by (fast_tac (HOL_cs addEs [rtrancl_into_rtrancl]) 1);
1496
c443b2adaf52 Added a few thms and the new theory RelPow.
nipkow
parents: 1465
diff changeset
    93
val lemma = result();
c443b2adaf52 Added a few thms and the new theory RelPow.
nipkow
parents: 1465
diff changeset
    94
c443b2adaf52 Added a few thms and the new theory RelPow.
nipkow
parents: 1465
diff changeset
    95
goal Trancl.thy  "!!R. [| (x,y) : R;  (y,z) : R^* |] ==> (x,z) : R^*";
1552
6f71b5d46700 Ran expandshort
paulson
parents: 1496
diff changeset
    96
by (fast_tac (HOL_cs addDs [lemma]) 1);
1496
c443b2adaf52 Added a few thms and the new theory RelPow.
nipkow
parents: 1465
diff changeset
    97
qed "rtrancl_into_rtrancl2";
c443b2adaf52 Added a few thms and the new theory RelPow.
nipkow
parents: 1465
diff changeset
    98
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    99
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   100
(**** The relation trancl ****)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   101
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   102
(** Conversions between trancl and rtrancl **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   103
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   104
val [major] = goalw Trancl.thy [trancl_def]
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 923
diff changeset
   105
    "(a,b) : r^+ ==> (a,b) : r^*";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   106
by (resolve_tac [major RS compEpair] 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   107
by (REPEAT (ares_tac [rtrancl_into_rtrancl] 1));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   108
qed "trancl_into_rtrancl";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   109
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   110
(*r^+ contains r*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   111
val [prem] = goalw Trancl.thy [trancl_def]
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 923
diff changeset
   112
   "[| (a,b) : r |] ==> (a,b) : r^+";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   113
by (REPEAT (ares_tac [prem,compI,rtrancl_refl] 1));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   114
qed "r_into_trancl";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   115
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   116
(*intro rule by definition: from rtrancl and r*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   117
val prems = goalw Trancl.thy [trancl_def]
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 923
diff changeset
   118
    "[| (a,b) : r^*;  (b,c) : r |]   ==>  (a,c) : r^+";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   119
by (REPEAT (resolve_tac ([compI]@prems) 1));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   120
qed "rtrancl_into_trancl1";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   121
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   122
(*intro rule from r and rtrancl*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   123
val prems = goal Trancl.thy
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 923
diff changeset
   124
    "[| (a,b) : r;  (b,c) : r^* |]   ==>  (a,c) : r^+";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   125
by (resolve_tac (prems RL [rtranclE]) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   126
by (etac subst 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   127
by (resolve_tac (prems RL [r_into_trancl]) 1);
1122
20b708827030 renamed trans_rtrancl to rtrancl_trans and modified it by expanding trans.
nipkow
parents: 1121
diff changeset
   128
by (rtac (rtrancl_trans RS rtrancl_into_trancl1) 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   129
by (REPEAT (ares_tac (prems@[r_into_rtrancl]) 1));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   130
qed "rtrancl_into_trancl2";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   131
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   132
(*elimination of r^+ -- NOT an induction rule*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   133
val major::prems = goal Trancl.thy
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 923
diff changeset
   134
    "[| (a::'a,b) : r^+;  \
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 923
diff changeset
   135
\       (a,b) : r ==> P; \
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1301
diff changeset
   136
\       !!y.[| (a,y) : r^+;  (y,b) : r |] ==> P  \
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   137
\    |] ==> P";
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 923
diff changeset
   138
by (subgoal_tac "(a::'a,b) : r | (? y. (a,y) : r^+  &  (y,b) : r)" 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   139
by (REPEAT (eresolve_tac ([asm_rl,disjE,exE,conjE]@prems) 1));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   140
by (rtac (rewrite_rule [trancl_def] major RS compEpair) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   141
by (etac rtranclE 1);
1128
64b30e3cc6d4 Trancl is now based on Relation which used to be in Integ.
nipkow
parents: 1122
diff changeset
   142
by (fast_tac rel_cs 1);
64b30e3cc6d4 Trancl is now based on Relation which used to be in Integ.
nipkow
parents: 1122
diff changeset
   143
by (fast_tac (rel_cs addSIs [rtrancl_into_trancl1]) 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   144
qed "tranclE";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   145
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   146
(*Transitivity of r^+.
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   147
  Proved by unfolding since it uses transitivity of rtrancl. *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   148
goalw Trancl.thy [trancl_def] "trans(r^+)";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   149
by (rtac transI 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   150
by (REPEAT (etac compEpair 1));
1122
20b708827030 renamed trans_rtrancl to rtrancl_trans and modified it by expanding trans.
nipkow
parents: 1121
diff changeset
   151
by (rtac (rtrancl_into_rtrancl RS (rtrancl_trans RS compI)) 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   152
by (REPEAT (assume_tac 1));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   153
qed "trans_trancl";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   154
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   155
val prems = goal Trancl.thy
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 923
diff changeset
   156
    "[| (a,b) : r;  (b,c) : r^+ |]   ==>  (a,c) : r^+";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   157
by (rtac (r_into_trancl RS (trans_trancl RS transD)) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   158
by (resolve_tac prems 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   159
by (resolve_tac prems 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   160
qed "trancl_into_trancl2";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   161
1130
0df0df1685a8 Added trancl_cs
nipkow
parents: 1128
diff changeset
   162
(** More about r^* **)
1121
485b49694253 Added some lemmas about r^*.
nipkow
parents: 972
diff changeset
   163
485b49694253 Added some lemmas about r^*.
nipkow
parents: 972
diff changeset
   164
goal Trancl.thy "(r^*)^* = r^*";
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1301
diff changeset
   165
by (rtac set_ext 1);
1552
6f71b5d46700 Ran expandshort
paulson
parents: 1496
diff changeset
   166
by (res_inst_tac [("p","x")] PairE 1);
6f71b5d46700 Ran expandshort
paulson
parents: 1496
diff changeset
   167
by (hyp_subst_tac 1);
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1301
diff changeset
   168
by (rtac iffI 1);
5d7a7e439cec expanded tabs
clasohm
parents: 1301
diff changeset
   169
by (etac rtrancl_induct 1);
5d7a7e439cec expanded tabs
clasohm
parents: 1301
diff changeset
   170
by (rtac rtrancl_refl 1);
1552
6f71b5d46700 Ran expandshort
paulson
parents: 1496
diff changeset
   171
by (fast_tac (HOL_cs addEs [rtrancl_trans]) 1);
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1301
diff changeset
   172
by (etac r_into_rtrancl 1);
1121
485b49694253 Added some lemmas about r^*.
nipkow
parents: 972
diff changeset
   173
qed "rtrancl_idemp";
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1130
diff changeset
   174
Addsimps [rtrancl_idemp];
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   175
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1130
diff changeset
   176
goal Trancl.thy "!!R. [| R <= S; S <= R^* |] ==> S^* = R^*";
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1301
diff changeset
   177
by (dtac rtrancl_mono 1);
5d7a7e439cec expanded tabs
clasohm
parents: 1301
diff changeset
   178
by (dtac rtrancl_mono 1);
1552
6f71b5d46700 Ran expandshort
paulson
parents: 1496
diff changeset
   179
by (Asm_full_simp_tac 1);
6f71b5d46700 Ran expandshort
paulson
parents: 1496
diff changeset
   180
by (fast_tac eq_cs 1);
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1130
diff changeset
   181
qed "rtrancl_subset";
42782316d510 Added various thms and tactics.
nipkow
parents: 1130
diff changeset
   182
42782316d510 Added various thms and tactics.
nipkow
parents: 1130
diff changeset
   183
goal Trancl.thy "!!R. (R^* Un S^*)^* = (R Un S)^*";
1552
6f71b5d46700 Ran expandshort
paulson
parents: 1496
diff changeset
   184
by (best_tac (set_cs addIs [rtrancl_subset,r_into_rtrancl,
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1130
diff changeset
   185
                           rtrancl_mono RS subsetD]) 1);
42782316d510 Added various thms and tactics.
nipkow
parents: 1130
diff changeset
   186
qed "trancl_Un_trancl";
42782316d510 Added various thms and tactics.
nipkow
parents: 1130
diff changeset
   187
42782316d510 Added various thms and tactics.
nipkow
parents: 1130
diff changeset
   188
goal Trancl.thy "(R^=)^* = R^*";
1552
6f71b5d46700 Ran expandshort
paulson
parents: 1496
diff changeset
   189
by (fast_tac (rel_cs addIs [rtrancl_refl,rtrancl_subset,r_into_rtrancl]) 1);
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1130
diff changeset
   190
qed "rtrancl_reflcl";
42782316d510 Added various thms and tactics.
nipkow
parents: 1130
diff changeset
   191
Addsimps [rtrancl_reflcl];
1130
0df0df1685a8 Added trancl_cs
nipkow
parents: 1128
diff changeset
   192
0df0df1685a8 Added trancl_cs
nipkow
parents: 1128
diff changeset
   193
goal Trancl.thy "!!r. (x,y) : (converse r)^* ==> (x,y) : converse(r^*)";
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1301
diff changeset
   194
by (rtac converseI 1);
5d7a7e439cec expanded tabs
clasohm
parents: 1301
diff changeset
   195
by (etac rtrancl_induct 1);
5d7a7e439cec expanded tabs
clasohm
parents: 1301
diff changeset
   196
by (rtac rtrancl_refl 1);
1552
6f71b5d46700 Ran expandshort
paulson
parents: 1496
diff changeset
   197
by (fast_tac (rel_cs addIs [r_into_rtrancl,rtrancl_trans]) 1);
1130
0df0df1685a8 Added trancl_cs
nipkow
parents: 1128
diff changeset
   198
qed "rtrancl_converseD";
0df0df1685a8 Added trancl_cs
nipkow
parents: 1128
diff changeset
   199
0df0df1685a8 Added trancl_cs
nipkow
parents: 1128
diff changeset
   200
goal Trancl.thy "!!r. (x,y) : converse(r^*) ==> (x,y) : (converse r)^*";
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1301
diff changeset
   201
by (dtac converseD 1);
5d7a7e439cec expanded tabs
clasohm
parents: 1301
diff changeset
   202
by (etac rtrancl_induct 1);
5d7a7e439cec expanded tabs
clasohm
parents: 1301
diff changeset
   203
by (rtac rtrancl_refl 1);
1552
6f71b5d46700 Ran expandshort
paulson
parents: 1496
diff changeset
   204
by (fast_tac (rel_cs addIs [r_into_rtrancl,rtrancl_trans]) 1);
1130
0df0df1685a8 Added trancl_cs
nipkow
parents: 1128
diff changeset
   205
qed "rtrancl_converseI";
0df0df1685a8 Added trancl_cs
nipkow
parents: 1128
diff changeset
   206
0df0df1685a8 Added trancl_cs
nipkow
parents: 1128
diff changeset
   207
goal Trancl.thy "(converse r)^* = converse(r^*)";
1552
6f71b5d46700 Ran expandshort
paulson
parents: 1496
diff changeset
   208
by (safe_tac (rel_eq_cs addSIs [rtrancl_converseI]));
6f71b5d46700 Ran expandshort
paulson
parents: 1496
diff changeset
   209
by (res_inst_tac [("p","x")] PairE 1);
6f71b5d46700 Ran expandshort
paulson
parents: 1496
diff changeset
   210
by (hyp_subst_tac 1);
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1301
diff changeset
   211
by (etac rtrancl_converseD 1);
1130
0df0df1685a8 Added trancl_cs
nipkow
parents: 1128
diff changeset
   212
qed "rtrancl_converse";
0df0df1685a8 Added trancl_cs
nipkow
parents: 1128
diff changeset
   213
0df0df1685a8 Added trancl_cs
nipkow
parents: 1128
diff changeset
   214
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   215
val major::prems = goal Trancl.thy
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 923
diff changeset
   216
    "[| (a,b) : r^*;  r <= Sigma A (%x.A) |] ==> a=b | a:A";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   217
by (cut_facts_tac prems 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   218
by (rtac (major RS rtrancl_induct) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   219
by (rtac (refl RS disjI1) 1);
1128
64b30e3cc6d4 Trancl is now based on Relation which used to be in Integ.
nipkow
parents: 1122
diff changeset
   220
by (fast_tac (rel_cs addSEs [SigmaE2]) 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   221
qed "trancl_subset_Sigma_lemma";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   222
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   223
goalw Trancl.thy [trancl_def]
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   224
    "!!r. r <= Sigma A (%x.A) ==> trancl(r) <= Sigma A (%x.A)";
1128
64b30e3cc6d4 Trancl is now based on Relation which used to be in Integ.
nipkow
parents: 1122
diff changeset
   225
by (fast_tac (rel_cs addSDs [trancl_subset_Sigma_lemma]) 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   226
qed "trancl_subset_Sigma";
1130
0df0df1685a8 Added trancl_cs
nipkow
parents: 1128
diff changeset
   227
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1130
diff changeset
   228
(* Don't add r_into_rtrancl: it messes up the proofs in Lambda *)
1130
0df0df1685a8 Added trancl_cs
nipkow
parents: 1128
diff changeset
   229
val trancl_cs = rel_cs addIs [rtrancl_refl];