src/HOL/Trancl.ML
author nipkow
Tue, 30 Apr 1996 17:30:54 +0200
changeset 1706 4e0d5c7f57fa
parent 1642 21db0cf9a1a4
child 1746 f0c6aabc6c02
permissions -rw-r--r--
Added backwards rtrancl_induct and special versions for pairs.
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
1706
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
    71
val prems = goal Trancl.thy
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
    72
 "[| ((a,b),(c,d)) : r^*; P a b; \
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
    73
\    !!x y z u.[| ((a,b),(x,y)) : r^*;  ((x,y),(z,u)) : r;  P x y |] ==> P z u\
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
    74
\ |] ==> P c d";
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
    75
by(res_inst_tac[("R","P")]splitD 1);
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
    76
by(res_inst_tac[("P","split P")]rtrancl_induct 1);
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
    77
brs prems 1;
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
    78
by(Simp_tac 1);
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
    79
brs prems 1;
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
    80
by(split_all_tac 1);
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
    81
by(Asm_full_simp_tac 1);
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
    82
by(REPEAT(ares_tac prems 1));
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
    83
qed "rtrancl_induct2";
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
    84
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    85
(*transitivity of transitive closure!! -- by induction.*)
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
    86
goalw Trancl.thy [trans_def] "trans(r^*)";
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
    87
by (safe_tac HOL_cs);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
    88
by (eres_inst_tac [("b","z")] rtrancl_induct 1);
1552
6f71b5d46700 Ran expandshort
paulson
parents: 1496
diff changeset
    89
by (ALLGOALS(fast_tac (HOL_cs addIs [rtrancl_into_rtrancl])));
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
    90
qed "trans_rtrancl";
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
    91
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
    92
bind_thm ("rtrancl_trans", trans_rtrancl RS transD);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
    93
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    94
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    95
(*elimination of rtrancl -- by induction on a special formula*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    96
val major::prems = goal Trancl.thy
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1301
diff changeset
    97
    "[| (a::'a,b) : r^*;  (a = b) ==> P;        \
5d7a7e439cec expanded tabs
clasohm
parents: 1301
diff changeset
    98
\       !!y.[| (a,y) : r^*; (y,b) : r |] ==> P  \
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    99
\    |] ==> P";
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 923
diff changeset
   100
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
   101
by (rtac (major RS rtrancl_induct) 2);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   102
by (fast_tac (set_cs addIs prems) 2);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   103
by (fast_tac (set_cs addIs prems) 2);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   104
by (REPEAT (eresolve_tac ([asm_rl,exE,disjE,conjE]@prems) 1));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   105
qed "rtranclE";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   106
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   107
bind_thm ("rtrancl_into_rtrancl2", r_into_rtrancl RS rtrancl_trans);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   108
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   109
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   110
(*** More r^* equations and inclusions ***)
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   111
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   112
goal Trancl.thy "(r^*)^* = r^*";
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   113
by (rtac set_ext 1);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   114
by (res_inst_tac [("p","x")] PairE 1);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   115
by (hyp_subst_tac 1);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   116
by (rtac iffI 1);
1552
6f71b5d46700 Ran expandshort
paulson
parents: 1496
diff changeset
   117
by (etac rtrancl_induct 1);
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   118
by (rtac rtrancl_refl 1);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   119
by (fast_tac (HOL_cs addEs [rtrancl_trans]) 1);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   120
by (etac r_into_rtrancl 1);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   121
qed "rtrancl_idemp";
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   122
Addsimps [rtrancl_idemp];
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   123
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   124
goal Trancl.thy "!!r s. r <= s^* ==> r^* <= s^*";
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   125
bd rtrancl_mono 1;
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   126
by (Asm_full_simp_tac 1);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   127
qed "rtrancl_subset_rtrancl";
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   128
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   129
goal Trancl.thy "!!R. [| R <= S; S <= R^* |] ==> S^* = R^*";
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   130
by (dtac rtrancl_mono 1);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   131
by (dtac rtrancl_mono 1);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   132
by (Asm_full_simp_tac 1);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   133
by (fast_tac eq_cs 1);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   134
qed "rtrancl_subset";
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   135
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   136
goal Trancl.thy "!!R. (R^* Un S^*)^* = (R Un S)^*";
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   137
by (best_tac (set_cs addIs [rtrancl_subset,r_into_rtrancl,
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   138
                           rtrancl_mono RS subsetD]) 1);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   139
qed "rtrancl_Un_rtrancl";
1496
c443b2adaf52 Added a few thms and the new theory RelPow.
nipkow
parents: 1465
diff changeset
   140
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   141
goal Trancl.thy "(R^=)^* = R^*";
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   142
by (fast_tac (rel_cs addIs [rtrancl_refl,rtrancl_subset,r_into_rtrancl]) 1);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   143
qed "rtrancl_reflcl";
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   144
Addsimps [rtrancl_reflcl];
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   145
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   146
goal Trancl.thy "!!r. (x,y) : (converse r)^* ==> (x,y) : converse(r^*)";
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   147
by (rtac converseI 1);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   148
by (etac rtrancl_induct 1);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   149
by (rtac rtrancl_refl 1);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   150
by (fast_tac (rel_cs addIs [r_into_rtrancl,rtrancl_trans]) 1);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   151
qed "rtrancl_converseD";
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   152
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   153
goal Trancl.thy "!!r. (x,y) : converse(r^*) ==> (x,y) : (converse r)^*";
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   154
by (dtac converseD 1);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   155
by (etac rtrancl_induct 1);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   156
by (rtac rtrancl_refl 1);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   157
by (fast_tac (rel_cs addIs [r_into_rtrancl,rtrancl_trans]) 1);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   158
qed "rtrancl_converseI";
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   159
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   160
goal Trancl.thy "(converse r)^* = converse(r^*)";
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   161
by (safe_tac (rel_eq_cs addSIs [rtrancl_converseI]));
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   162
by (res_inst_tac [("p","x")] PairE 1);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   163
by (hyp_subst_tac 1);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   164
by (etac rtrancl_converseD 1);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   165
qed "rtrancl_converse";
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   166
1706
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
   167
val major::prems = goal Trancl.thy
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
   168
    "[| (a,b) : r^*; P(b); \
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
   169
\       !!y z.[| (y,z) : r;  (z,b) : r^*;  P(z) |] ==> P(y) |]  \
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
   170
\     ==> P(a)";
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
   171
br ((major RS converseI RS rtrancl_converseI) RS rtrancl_induct) 1;
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
   172
 brs prems 1;
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
   173
by(fast_tac (HOL_cs addIs prems addSEs[converseD]addSDs[rtrancl_converseD])1);
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
   174
qed "converse_rtrancl_induct";
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
   175
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
   176
val prems = goal Trancl.thy
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
   177
 "[| ((a,b),(c,d)) : r^*; P c d; \
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
   178
\    !!x y z u.[| ((x,y),(z,u)) : r;  ((z,u),(c,d)) : r^*;  P z u |] ==> P x y\
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
   179
\ |] ==> P a b";
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
   180
by(res_inst_tac[("R","P")]splitD 1);
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
   181
by(res_inst_tac[("P","split P")]converse_rtrancl_induct 1);
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
   182
brs prems 1;
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
   183
by(Simp_tac 1);
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
   184
brs prems 1;
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
   185
by(split_all_tac 1);
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
   186
by(Asm_full_simp_tac 1);
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
   187
by(REPEAT(ares_tac prems 1));
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
   188
qed "converse_rtrancl_induct2";
1496
c443b2adaf52 Added a few thms and the new theory RelPow.
nipkow
parents: 1465
diff changeset
   189
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   190
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   191
(**** The relation trancl ****)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   192
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   193
(** Conversions between trancl and rtrancl **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   194
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   195
val [major] = goalw Trancl.thy [trancl_def]
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 923
diff changeset
   196
    "(a,b) : r^+ ==> (a,b) : r^*";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   197
by (resolve_tac [major RS compEpair] 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   198
by (REPEAT (ares_tac [rtrancl_into_rtrancl] 1));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   199
qed "trancl_into_rtrancl";
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
(*r^+ contains r*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   202
val [prem] = goalw Trancl.thy [trancl_def]
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 923
diff changeset
   203
   "[| (a,b) : r |] ==> (a,b) : r^+";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   204
by (REPEAT (ares_tac [prem,compI,rtrancl_refl] 1));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   205
qed "r_into_trancl";
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
(*intro rule by definition: from rtrancl and r*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   208
val prems = goalw Trancl.thy [trancl_def]
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 923
diff changeset
   209
    "[| (a,b) : r^*;  (b,c) : r |]   ==>  (a,c) : r^+";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   210
by (REPEAT (resolve_tac ([compI]@prems) 1));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   211
qed "rtrancl_into_trancl1";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   212
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   213
(*intro rule from r and rtrancl*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   214
val prems = goal Trancl.thy
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 923
diff changeset
   215
    "[| (a,b) : r;  (b,c) : r^* |]   ==>  (a,c) : r^+";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   216
by (resolve_tac (prems RL [rtranclE]) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   217
by (etac subst 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   218
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
   219
by (rtac (rtrancl_trans RS rtrancl_into_trancl1) 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   220
by (REPEAT (ares_tac (prems@[r_into_rtrancl]) 1));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   221
qed "rtrancl_into_trancl2";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   222
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   223
(*Nice induction rule for trancl*)
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   224
val major::prems = goal Trancl.thy
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   225
  "[| (a,b) : r^+;                                      \
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   226
\     !!y.  [| (a,y) : r |] ==> P(y);                   \
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   227
\     !!y z.[| (a,y) : r^+;  (y,z) : r;  P(y) |] ==> P(z)       \
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   228
\  |] ==> P(b)";
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   229
by (rtac (rewrite_rule [trancl_def] major  RS  compEpair) 1);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   230
(*by induction on this formula*)
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   231
by (subgoal_tac "ALL z. (y,z) : r --> P(z)" 1);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   232
(*now solve first subgoal: this formula is sufficient*)
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   233
by (fast_tac HOL_cs 1);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   234
by (etac rtrancl_induct 1);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   235
by (ALLGOALS (fast_tac (set_cs addIs (rtrancl_into_trancl1::prems))));
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   236
qed "trancl_induct";
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   237
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   238
(*elimination of r^+ -- NOT an induction rule*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   239
val major::prems = goal Trancl.thy
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 923
diff changeset
   240
    "[| (a::'a,b) : r^+;  \
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 923
diff changeset
   241
\       (a,b) : r ==> P; \
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1301
diff changeset
   242
\       !!y.[| (a,y) : r^+;  (y,b) : r |] ==> P  \
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   243
\    |] ==> P";
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 923
diff changeset
   244
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
   245
by (REPEAT (eresolve_tac ([asm_rl,disjE,exE,conjE]@prems) 1));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   246
by (rtac (rewrite_rule [trancl_def] major RS compEpair) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   247
by (etac rtranclE 1);
1128
64b30e3cc6d4 Trancl is now based on Relation which used to be in Integ.
nipkow
parents: 1122
diff changeset
   248
by (fast_tac rel_cs 1);
64b30e3cc6d4 Trancl is now based on Relation which used to be in Integ.
nipkow
parents: 1122
diff changeset
   249
by (fast_tac (rel_cs addSIs [rtrancl_into_trancl1]) 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   250
qed "tranclE";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   251
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   252
(*Transitivity of r^+.
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   253
  Proved by unfolding since it uses transitivity of rtrancl. *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   254
goalw Trancl.thy [trancl_def] "trans(r^+)";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   255
by (rtac transI 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   256
by (REPEAT (etac compEpair 1));
1122
20b708827030 renamed trans_rtrancl to rtrancl_trans and modified it by expanding trans.
nipkow
parents: 1121
diff changeset
   257
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
   258
by (REPEAT (assume_tac 1));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   259
qed "trans_trancl";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   260
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   261
bind_thm ("trancl_trans", trans_trancl RS transD);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   262
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   263
val prems = goal Trancl.thy
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 923
diff changeset
   264
    "[| (a,b) : r;  (b,c) : r^+ |]   ==>  (a,c) : r^+";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   265
by (rtac (r_into_trancl RS (trans_trancl RS transD)) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   266
by (resolve_tac prems 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   267
by (resolve_tac prems 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   268
qed "trancl_into_trancl2";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   269
1130
0df0df1685a8 Added trancl_cs
nipkow
parents: 1128
diff changeset
   270
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   271
val major::prems = goal Trancl.thy
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   272
    "[| (a,b) : r^*;  r <= A Times A |] ==> a=b | a:A";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   273
by (cut_facts_tac prems 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   274
by (rtac (major RS rtrancl_induct) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   275
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
   276
by (fast_tac (rel_cs addSEs [SigmaE2]) 1);
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   277
val lemma = result();
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   278
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   279
goalw Trancl.thy [trancl_def]
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   280
    "!!r. r <= A Times A ==> r^+ <= A Times A";
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   281
by (fast_tac (rel_cs addSDs [lemma]) 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   282
qed "trancl_subset_Sigma";
1130
0df0df1685a8 Added trancl_cs
nipkow
parents: 1128
diff changeset
   283
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1130
diff changeset
   284
(* Don't add r_into_rtrancl: it messes up the proofs in Lambda *)
1130
0df0df1685a8 Added trancl_cs
nipkow
parents: 1128
diff changeset
   285
val trancl_cs = rel_cs addIs [rtrancl_refl];
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   286
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   287