src/HOL/Trancl.ML
author nipkow
Sat, 08 Aug 1998 14:00:56 +0200
changeset 5281 f4d16517b360
parent 5255 e29e77ad7b91
child 5316 7a8975451a89
permissions -rw-r--r--
List now contains some lexicographic orderings.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4764
9b3293646b5d generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents: 4746
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
4764
9b3293646b5d generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents: 4746
diff changeset
     6
For Trancl.thy.  Theorems about the transitive closure of a relation
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 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
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4838
diff changeset
    13
Goal "mono(%s. id Un (r O s))";
923
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*)
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4838
diff changeset
    21
Goal "(a,a) : r^*";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    22
by (stac rtrancl_unfold 1);
2891
d8f254ad1ab9 Calls Blast_tac
paulson
parents: 2031
diff changeset
    23
by (Blast_tac 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
1921
56a77911efe4 Tidied up the proofs
paulson
parents: 1786
diff changeset
    26
Addsimps [rtrancl_refl];
56a77911efe4 Tidied up the proofs
paulson
parents: 1786
diff changeset
    27
AddSIs   [rtrancl_refl];
56a77911efe4 Tidied up the proofs
paulson
parents: 1786
diff changeset
    28
56a77911efe4 Tidied up the proofs
paulson
parents: 1786
diff changeset
    29
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    30
(*Closure under composition with r*)
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5132
diff changeset
    31
Goal "[| (a,b) : r^*;  (b,c) : r |] ==> (a,c) : r^*";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    32
by (stac rtrancl_unfold 1);
2891
d8f254ad1ab9 Calls Blast_tac
paulson
parents: 2031
diff changeset
    33
by (Blast_tac 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    34
qed "rtrancl_into_rtrancl";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    35
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    36
(*rtrancl of r contains r*)
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4838
diff changeset
    37
Goal "!!p. p : r ==> p : r^*";
1552
6f71b5d46700 Ran expandshort
paulson
parents: 1496
diff changeset
    38
by (split_all_tac 1);
1301
42782316d510 Added various thms and tactics.
nipkow
parents: 1130
diff changeset
    39
by (etac (rtrancl_refl RS rtrancl_into_rtrancl) 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    40
qed "r_into_rtrancl";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    41
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    42
(*monotonicity of rtrancl*)
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5132
diff changeset
    43
Goalw [rtrancl_def] "r <= s ==> r^* <= s^*";
1552
6f71b5d46700 Ran expandshort
paulson
parents: 1496
diff changeset
    44
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
    45
qed "rtrancl_mono";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    46
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    47
(** standard induction rule **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    48
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    49
val major::prems = goal Trancl.thy 
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 923
diff changeset
    50
  "[| (a,b) : r^*; \
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 923
diff changeset
    51
\     !!x. P((x,x)); \
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 923
diff changeset
    52
\     !!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
    53
\  ==>  P((a,b))";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    54
by (rtac ([rtrancl_def, rtrancl_fun_mono, major] MRS def_induct) 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3723
diff changeset
    55
by (blast_tac (claset() addIs prems) 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    56
qed "rtrancl_full_induct";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    57
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    58
(*nice induction rule*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    59
val major::prems = goal Trancl.thy
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 923
diff changeset
    60
    "[| (a::'a,b) : r^*;    \
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    61
\       P(a); \
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1301
diff changeset
    62
\       !!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
    63
\     ==> P(b)";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    64
(*by induction on this formula*)
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 923
diff changeset
    65
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
    66
(*now solve first subgoal: this formula is sufficient*)
2891
d8f254ad1ab9 Calls Blast_tac
paulson
parents: 2031
diff changeset
    67
by (Blast_tac 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    68
(*now do the induction*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    69
by (resolve_tac [major RS rtrancl_full_induct] 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3723
diff changeset
    70
by (blast_tac (claset() addIs prems) 1);
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3723
diff changeset
    71
by (blast_tac (claset() addIs prems) 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    72
qed "rtrancl_induct";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    73
5098
48e70d9fe05f Removed structure Prod_Syntax.
berghofe
parents: 5069
diff changeset
    74
bind_thm ("rtrancl_induct2", split_rule
48e70d9fe05f Removed structure Prod_Syntax.
berghofe
parents: 5069
diff changeset
    75
  (read_instantiate [("a","(ax,ay)"), ("b","(bx,by)")] rtrancl_induct));
1706
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
    76
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    77
(*transitivity of transitive closure!! -- by induction.*)
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4838
diff changeset
    78
Goalw [trans_def] "trans(r^*)";
4153
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4089
diff changeset
    79
by Safe_tac;
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
    80
by (eres_inst_tac [("b","z")] rtrancl_induct 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3723
diff changeset
    81
by (ALLGOALS(blast_tac (claset() addIs [rtrancl_into_rtrancl])));
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
    82
qed "trans_rtrancl";
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
    83
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
    84
bind_thm ("rtrancl_trans", trans_rtrancl RS transD);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
    85
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    86
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    87
(*elimination of rtrancl -- by induction on a special formula*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    88
val major::prems = goal Trancl.thy
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1301
diff changeset
    89
    "[| (a::'a,b) : r^*;  (a = b) ==> P;        \
5d7a7e439cec expanded tabs
clasohm
parents: 1301
diff changeset
    90
\       !!y.[| (a,y) : r^*; (y,b) : r |] ==> P  \
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    91
\    |] ==> P";
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 923
diff changeset
    92
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
    93
by (rtac (major RS rtrancl_induct) 2);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3723
diff changeset
    94
by (blast_tac (claset() addIs prems) 2);
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3723
diff changeset
    95
by (blast_tac (claset() addIs prems) 2);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    96
by (REPEAT (eresolve_tac ([asm_rl,exE,disjE,conjE]@prems) 1));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    97
qed "rtranclE";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    98
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
    99
bind_thm ("rtrancl_into_rtrancl2", r_into_rtrancl RS rtrancl_trans);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   100
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   101
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   102
(*** More r^* equations and inclusions ***)
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   103
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4838
diff changeset
   104
Goal "(r^*)^* = r^*";
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   105
by (rtac set_ext 1);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   106
by (res_inst_tac [("p","x")] PairE 1);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   107
by (hyp_subst_tac 1);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   108
by (rtac iffI 1);
1552
6f71b5d46700 Ran expandshort
paulson
parents: 1496
diff changeset
   109
by (etac rtrancl_induct 1);
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   110
by (rtac rtrancl_refl 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3723
diff changeset
   111
by (blast_tac (claset() addIs [rtrancl_trans]) 1);
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   112
by (etac r_into_rtrancl 1);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   113
qed "rtrancl_idemp";
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   114
Addsimps [rtrancl_idemp];
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   115
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4838
diff changeset
   116
Goal "R^* O R^* = R^*";
5132
24f992a25adc isatool expandshort;
wenzelm
parents: 5098
diff changeset
   117
by (rtac set_ext 1);
24f992a25adc isatool expandshort;
wenzelm
parents: 5098
diff changeset
   118
by (split_all_tac 1);
24f992a25adc isatool expandshort;
wenzelm
parents: 5098
diff changeset
   119
by (blast_tac (claset() addIs [rtrancl_trans]) 1);
4830
bd73675adbed Added a few lemmas.
nipkow
parents: 4799
diff changeset
   120
qed "rtrancl_idemp_self_comp";
bd73675adbed Added a few lemmas.
nipkow
parents: 4799
diff changeset
   121
Addsimps [rtrancl_idemp_self_comp];
bd73675adbed Added a few lemmas.
nipkow
parents: 4799
diff changeset
   122
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5132
diff changeset
   123
Goal "r <= s^* ==> r^* <= s^*";
2031
03a843f0f447 Ran expandshort
paulson
parents: 1985
diff changeset
   124
by (dtac rtrancl_mono 1);
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   125
by (Asm_full_simp_tac 1);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   126
qed "rtrancl_subset_rtrancl";
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   127
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5132
diff changeset
   128
Goal "[| R <= S; S <= R^* |] ==> S^* = R^*";
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   129
by (dtac rtrancl_mono 1);
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 (Asm_full_simp_tac 1);
2891
d8f254ad1ab9 Calls Blast_tac
paulson
parents: 2031
diff changeset
   132
by (Blast_tac 1);
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   133
qed "rtrancl_subset";
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   134
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5132
diff changeset
   135
Goal "(R^* Un S^*)^* = (R Un S)^*";
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3723
diff changeset
   136
by (blast_tac (claset() addSIs [rtrancl_subset]
2922
580647a879cf Using Blast_tac
paulson
parents: 2891
diff changeset
   137
                       addIs [r_into_rtrancl, rtrancl_mono RS subsetD]) 1);
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   138
qed "rtrancl_Un_rtrancl";
1496
c443b2adaf52 Added a few thms and the new theory RelPow.
nipkow
parents: 1465
diff changeset
   139
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4838
diff changeset
   140
Goal "(R^=)^* = R^*";
5281
f4d16517b360 List now contains some lexicographic orderings.
nipkow
parents: 5255
diff changeset
   141
by (blast_tac (claset() addSIs [rtrancl_subset] addIs [r_into_rtrancl]) 1);
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   142
qed "rtrancl_reflcl";
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   143
Addsimps [rtrancl_reflcl];
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   144
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5132
diff changeset
   145
Goal "(x,y) : (r^-1)^* ==> (x,y) : (r^*)^-1";
4746
a5dcd7e4a37d inverse -> converse
paulson
parents: 4153
diff changeset
   146
by (rtac converseI 1);
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   147
by (etac rtrancl_induct 1);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   148
by (rtac rtrancl_refl 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3723
diff changeset
   149
by (blast_tac (claset() addIs [r_into_rtrancl,rtrancl_trans]) 1);
4746
a5dcd7e4a37d inverse -> converse
paulson
parents: 4153
diff changeset
   150
qed "rtrancl_converseD";
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   151
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5132
diff changeset
   152
Goal "(x,y) : (r^*)^-1 ==> (x,y) : (r^-1)^*";
4746
a5dcd7e4a37d inverse -> converse
paulson
parents: 4153
diff changeset
   153
by (dtac converseD 1);
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   154
by (etac rtrancl_induct 1);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   155
by (rtac rtrancl_refl 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3723
diff changeset
   156
by (blast_tac (claset() addIs [r_into_rtrancl,rtrancl_trans]) 1);
4746
a5dcd7e4a37d inverse -> converse
paulson
parents: 4153
diff changeset
   157
qed "rtrancl_converseI";
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   158
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4838
diff changeset
   159
Goal "(r^-1)^* = (r^*)^-1";
4838
196100237656 cleanup for split_all_tac as wrapper in claset()
oheimb
parents: 4830
diff changeset
   160
by (safe_tac (claset() addSDs [rtrancl_converseD] addSIs [rtrancl_converseI]));
4746
a5dcd7e4a37d inverse -> converse
paulson
parents: 4153
diff changeset
   161
qed "rtrancl_converse";
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   162
1706
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
   163
val major::prems = goal Trancl.thy
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
   164
    "[| (a,b) : r^*; P(b); \
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
   165
\       !!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
   166
\     ==> P(a)";
4746
a5dcd7e4a37d inverse -> converse
paulson
parents: 4153
diff changeset
   167
by (rtac ((major RS converseI RS rtrancl_converseI) RS rtrancl_induct) 1);
2031
03a843f0f447 Ran expandshort
paulson
parents: 1985
diff changeset
   168
by (resolve_tac prems 1);
4746
a5dcd7e4a37d inverse -> converse
paulson
parents: 4153
diff changeset
   169
by (blast_tac (claset() addIs prems addSDs[rtrancl_converseD])1);
a5dcd7e4a37d inverse -> converse
paulson
parents: 4153
diff changeset
   170
qed "converse_rtrancl_induct";
1706
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
   171
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
   172
val prems = goal Trancl.thy
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
   173
 "[| ((a,b),(c,d)) : r^*; P c d; \
4e0d5c7f57fa Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents: 1642
diff changeset
   174
\    !!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
   175
\ |] ==> P a b";
2031
03a843f0f447 Ran expandshort
paulson
parents: 1985
diff changeset
   176
by (res_inst_tac[("R","P")]splitD 1);
4746
a5dcd7e4a37d inverse -> converse
paulson
parents: 4153
diff changeset
   177
by (res_inst_tac[("P","split P")]converse_rtrancl_induct 1);
2031
03a843f0f447 Ran expandshort
paulson
parents: 1985
diff changeset
   178
by (resolve_tac prems 1);
03a843f0f447 Ran expandshort
paulson
parents: 1985
diff changeset
   179
by (Simp_tac 1);
03a843f0f447 Ran expandshort
paulson
parents: 1985
diff changeset
   180
by (resolve_tac prems 1);
03a843f0f447 Ran expandshort
paulson
parents: 1985
diff changeset
   181
by (split_all_tac 1);
03a843f0f447 Ran expandshort
paulson
parents: 1985
diff changeset
   182
by (Asm_full_simp_tac 1);
03a843f0f447 Ran expandshort
paulson
parents: 1985
diff changeset
   183
by (REPEAT(ares_tac prems 1));
4746
a5dcd7e4a37d inverse -> converse
paulson
parents: 4153
diff changeset
   184
qed "converse_rtrancl_induct2";
1496
c443b2adaf52 Added a few thms and the new theory RelPow.
nipkow
parents: 1465
diff changeset
   185
3413
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 2935
diff changeset
   186
val major::prems = goal Trancl.thy
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 2935
diff changeset
   187
 "[| (x,z):r^*; \
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 2935
diff changeset
   188
\    x=z ==> P; \
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 2935
diff changeset
   189
\    !!y. [| (x,y):r; (y,z):r^* |] ==> P \
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 2935
diff changeset
   190
\ |] ==> P";
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 2935
diff changeset
   191
by (subgoal_tac "x = z  | (? y. (x,y) : r & (y,z) : r^*)" 1);
4746
a5dcd7e4a37d inverse -> converse
paulson
parents: 4153
diff changeset
   192
by (rtac (major RS converse_rtrancl_induct) 2);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3723
diff changeset
   193
by (blast_tac (claset() addIs prems) 2);
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3723
diff changeset
   194
by (blast_tac (claset() addIs prems) 2);
3413
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 2935
diff changeset
   195
by (REPEAT (eresolve_tac ([asm_rl,exE,disjE,conjE]@prems) 1));
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 2935
diff changeset
   196
qed "rtranclE2";
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 2935
diff changeset
   197
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4838
diff changeset
   198
Goal "r O r^* = r^* O r";
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3723
diff changeset
   199
by (blast_tac (claset() addEs [rtranclE, rtranclE2] 
3723
034f0f5ca43f Tidied proof of r_comp_rtrancl_eq
paulson
parents: 3457
diff changeset
   200
	               addIs [rtrancl_into_rtrancl, rtrancl_into_rtrancl2]) 1);
3413
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 2935
diff changeset
   201
qed "r_comp_rtrancl_eq";
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 2935
diff changeset
   202
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   203
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   204
(**** The relation trancl ****)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   205
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5132
diff changeset
   206
Goalw [trancl_def] "[| p:r^+; r <= s |] ==> p:s^+";
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3723
diff changeset
   207
by (blast_tac (claset() addIs [rtrancl_mono RS subsetD]) 1);
3413
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 2935
diff changeset
   208
qed "trancl_mono";
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 2935
diff changeset
   209
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   210
(** Conversions between trancl and rtrancl **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   211
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4838
diff changeset
   212
Goalw [trancl_def]
4764
9b3293646b5d generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents: 4746
diff changeset
   213
    "!!p. p : r^+ ==> p : r^*";
9b3293646b5d generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents: 4746
diff changeset
   214
by (split_all_tac 1);
9b3293646b5d generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents: 4746
diff changeset
   215
by (etac compEpair 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   216
by (REPEAT (ares_tac [rtrancl_into_rtrancl] 1));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   217
qed "trancl_into_rtrancl";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   218
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   219
(*r^+ contains r*)
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4838
diff changeset
   220
Goalw [trancl_def]
4764
9b3293646b5d generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents: 4746
diff changeset
   221
   "!!p. p : r ==> p : r^+";
9b3293646b5d generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents: 4746
diff changeset
   222
by (split_all_tac 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   223
by (REPEAT (ares_tac [prem,compI,rtrancl_refl] 1));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   224
qed "r_into_trancl";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   225
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   226
(*intro rule by definition: from rtrancl and r*)
5255
paulson
parents: 5148
diff changeset
   227
Goalw [trancl_def] "[| (a,b) : r^*;  (b,c) : r |]   ==>  (a,c) : r^+";
paulson
parents: 5148
diff changeset
   228
by Auto_tac;
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   229
qed "rtrancl_into_trancl1";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   230
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   231
(*intro rule from r and rtrancl*)
5255
paulson
parents: 5148
diff changeset
   232
Goal "[| (a,b) : r;  (b,c) : r^* |]   ==>  (a,c) : r^+";
paulson
parents: 5148
diff changeset
   233
by (etac rtranclE 1);
paulson
parents: 5148
diff changeset
   234
by (blast_tac (claset() addIs [r_into_trancl]) 1);
1122
20b708827030 renamed trans_rtrancl to rtrancl_trans and modified it by expanding trans.
nipkow
parents: 1121
diff changeset
   235
by (rtac (rtrancl_trans RS rtrancl_into_trancl1) 1);
5255
paulson
parents: 5148
diff changeset
   236
by (REPEAT (ares_tac [r_into_rtrancl] 1));
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   237
qed "rtrancl_into_trancl2";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   238
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   239
(*Nice induction rule for trancl*)
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   240
val major::prems = goal Trancl.thy
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   241
  "[| (a,b) : r^+;                                      \
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   242
\     !!y.  [| (a,y) : r |] ==> P(y);                   \
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   243
\     !!y z.[| (a,y) : r^+;  (y,z) : r;  P(y) |] ==> P(z)       \
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   244
\  |] ==> P(b)";
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   245
by (rtac (rewrite_rule [trancl_def] major  RS  compEpair) 1);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   246
(*by induction on this formula*)
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   247
by (subgoal_tac "ALL z. (y,z) : r --> P(z)" 1);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   248
(*now solve first subgoal: this formula is sufficient*)
2891
d8f254ad1ab9 Calls Blast_tac
paulson
parents: 2031
diff changeset
   249
by (Blast_tac 1);
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   250
by (etac rtrancl_induct 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3723
diff changeset
   251
by (ALLGOALS (blast_tac (claset() addIs (rtrancl_into_trancl1::prems))));
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   252
qed "trancl_induct";
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   253
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   254
(*elimination of r^+ -- NOT an induction rule*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   255
val major::prems = goal Trancl.thy
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 923
diff changeset
   256
    "[| (a::'a,b) : r^+;  \
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 923
diff changeset
   257
\       (a,b) : r ==> P; \
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1301
diff changeset
   258
\       !!y.[| (a,y) : r^+;  (y,b) : r |] ==> P  \
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   259
\    |] ==> P";
972
e61b058d58d2 changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents: 923
diff changeset
   260
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
   261
by (REPEAT (eresolve_tac ([asm_rl,disjE,exE,conjE]@prems) 1));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   262
by (rtac (rewrite_rule [trancl_def] major RS compEpair) 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   263
by (etac rtranclE 1);
2891
d8f254ad1ab9 Calls Blast_tac
paulson
parents: 2031
diff changeset
   264
by (Blast_tac 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3723
diff changeset
   265
by (blast_tac (claset() addSIs [rtrancl_into_trancl1]) 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   266
qed "tranclE";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   267
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   268
(*Transitivity of r^+.
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   269
  Proved by unfolding since it uses transitivity of rtrancl. *)
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4838
diff changeset
   270
Goalw [trancl_def] "trans(r^+)";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   271
by (rtac transI 1);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   272
by (REPEAT (etac compEpair 1));
1122
20b708827030 renamed trans_rtrancl to rtrancl_trans and modified it by expanding trans.
nipkow
parents: 1121
diff changeset
   273
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
   274
by (REPEAT (assume_tac 1));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   275
qed "trans_trancl";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   276
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   277
bind_thm ("trancl_trans", trans_trancl RS transD);
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   278
5255
paulson
parents: 5148
diff changeset
   279
Goalw [trancl_def] "[| (x,y):r^*; (y,z):r^+ |] ==> (x,z):r^+";
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3723
diff changeset
   280
by (blast_tac (claset() addIs [rtrancl_trans,r_into_rtrancl]) 1);
3413
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 2935
diff changeset
   281
qed "rtrancl_trancl_trancl";
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 2935
diff changeset
   282
5255
paulson
parents: 5148
diff changeset
   283
(* "[| (a,b) : r;  (b,c) : r^+ |]   ==>  (a,c) : r^+" *)
paulson
parents: 5148
diff changeset
   284
bind_thm ("trancl_into_trancl2", [trans_trancl, r_into_trancl] MRS transD);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   285
3413
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 2935
diff changeset
   286
(* primitive recursion for trancl over finite relations: *)
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4838
diff changeset
   287
Goal "(insert (y,x) r)^+ = r^+ Un {(a,b). (a,y):r^* & (x,b):r^*}";
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3439
diff changeset
   288
by (rtac equalityI 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3439
diff changeset
   289
 by (rtac subsetI 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3439
diff changeset
   290
 by (split_all_tac 1);
a8ab7c64817c Ran expandshort
paulson
parents: 3439
diff changeset
   291
 by (etac trancl_induct 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3723
diff changeset
   292
  by (blast_tac (claset() addIs [r_into_trancl]) 1);
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3723
diff changeset
   293
 by (blast_tac (claset() addIs
3413
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 2935
diff changeset
   294
     [rtrancl_into_trancl1,trancl_into_rtrancl,r_into_trancl,trancl_trans]) 1);
3457
a8ab7c64817c Ran expandshort
paulson
parents: 3439
diff changeset
   295
by (rtac subsetI 1);
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3723
diff changeset
   296
by (blast_tac (claset() addIs
3413
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 2935
diff changeset
   297
     [rtrancl_into_trancl2, rtrancl_trancl_trancl,
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 2935
diff changeset
   298
      impOfSubs rtrancl_mono, trancl_mono]) 1);
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 2935
diff changeset
   299
qed "trancl_insert";
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 2935
diff changeset
   300
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4838
diff changeset
   301
Goalw [trancl_def] "(r^-1)^+ = (r^+)^-1";
4746
a5dcd7e4a37d inverse -> converse
paulson
parents: 4153
diff changeset
   302
by (simp_tac (simpset() addsimps [rtrancl_converse,converse_comp]) 1);
4764
9b3293646b5d generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents: 4746
diff changeset
   303
by (simp_tac (simpset() addsimps [rtrancl_converse RS sym,r_comp_rtrancl_eq])1);
4746
a5dcd7e4a37d inverse -> converse
paulson
parents: 4153
diff changeset
   304
qed "trancl_converse";
3413
c1f63cc3a768 Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents: 2935
diff changeset
   305
4764
9b3293646b5d generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents: 4746
diff changeset
   306
val irrefl_tranclI = prove_goal Trancl.thy 
9b3293646b5d generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents: 4746
diff changeset
   307
	"!!r. r^-1 Int r^+ = {} ==> !x. (x, x) ~: r^+" (K [
9b3293646b5d generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents: 4746
diff changeset
   308
	rtac allI 1,
9b3293646b5d generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents: 4746
diff changeset
   309
	subgoal_tac "!y. (x, y) : r^+ --> x~=y" 1,
9b3293646b5d generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents: 4746
diff changeset
   310
	 Fast_tac 1,
9b3293646b5d generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents: 4746
diff changeset
   311
	strip_tac 1,
9b3293646b5d generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents: 4746
diff changeset
   312
	etac trancl_induct 1,
5255
paulson
parents: 5148
diff changeset
   313
	 auto_tac (claset() addEs [equals0E, r_into_trancl], simpset())]);
1130
0df0df1685a8 Added trancl_cs
nipkow
parents: 1128
diff changeset
   314
5255
paulson
parents: 5148
diff changeset
   315
Goal "[| (a,b) : r^*;  r <= A Times A |] ==> a=b | a:A";
paulson
parents: 5148
diff changeset
   316
by (etac rtrancl_induct 1);
paulson
parents: 5148
diff changeset
   317
by Auto_tac;
1642
21db0cf9a1a4 Using new "Times" infix
paulson
parents: 1552
diff changeset
   318
val lemma = result();
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   319
5148
74919e8f221c More tidying and removal of "\!\!... from Goal commands
paulson
parents: 5143
diff changeset
   320
Goalw [trancl_def] "r <= A Times A ==> r^+ <= A Times A";
4089
96fba19bcbe2 isatool fixclasimp;
wenzelm
parents: 3723
diff changeset
   321
by (blast_tac (claset() addSDs [lemma]) 1);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   322
qed "trancl_subset_Sigma";
1130
0df0df1685a8 Added trancl_cs
nipkow
parents: 1128
diff changeset
   323
4764
9b3293646b5d generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents: 4746
diff changeset
   324
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4838
diff changeset
   325
Goal "(r^+)^= = r^*";
4838
196100237656 cleanup for split_all_tac as wrapper in claset()
oheimb
parents: 4830
diff changeset
   326
by Safe_tac;
4764
9b3293646b5d generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents: 4746
diff changeset
   327
by  (etac trancl_into_rtrancl 1);
9b3293646b5d generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents: 4746
diff changeset
   328
by (etac rtranclE 1);
4772
8c7e7eaffbdf split_all_tac now fails if there is nothing to split
oheimb
parents: 4764
diff changeset
   329
by  (Auto_tac );
4764
9b3293646b5d generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents: 4746
diff changeset
   330
by (etac rtrancl_into_trancl1 1);
5132
24f992a25adc isatool expandshort;
wenzelm
parents: 5098
diff changeset
   331
by (assume_tac 1);
4764
9b3293646b5d generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents: 4746
diff changeset
   332
qed "reflcl_trancl";
9b3293646b5d generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents: 4746
diff changeset
   333
Addsimps[reflcl_trancl];
9b3293646b5d generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents: 4746
diff changeset
   334
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4838
diff changeset
   335
Goal "(r^=)^+ = r^*";
4838
196100237656 cleanup for split_all_tac as wrapper in claset()
oheimb
parents: 4830
diff changeset
   336
by Safe_tac;
4764
9b3293646b5d generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents: 4746
diff changeset
   337
by  (dtac trancl_into_rtrancl 1);
9b3293646b5d generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents: 4746
diff changeset
   338
by  (Asm_full_simp_tac 1);
9b3293646b5d generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents: 4746
diff changeset
   339
by (etac rtranclE 1);
9b3293646b5d generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents: 4746
diff changeset
   340
by  Safe_tac;
9b3293646b5d generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents: 4746
diff changeset
   341
by  (rtac r_into_trancl 1);
9b3293646b5d generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents: 4746
diff changeset
   342
by  (Simp_tac 1);
9b3293646b5d generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents: 4746
diff changeset
   343
by (rtac rtrancl_into_trancl1 1);
9b3293646b5d generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents: 4746
diff changeset
   344
by (etac (rtrancl_reflcl RS equalityD2 RS subsetD) 1);
9b3293646b5d generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents: 4746
diff changeset
   345
by (Fast_tac 1);
9b3293646b5d generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents: 4746
diff changeset
   346
qed "trancl_reflcl";
9b3293646b5d generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents: 4746
diff changeset
   347
Addsimps[trancl_reflcl];
9b3293646b5d generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents: 4746
diff changeset
   348
9b3293646b5d generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents: 4746
diff changeset
   349
qed_goal "trancl_empty" Trancl.thy "{}^+ = {}" 
9b3293646b5d generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents: 4746
diff changeset
   350
  (K [auto_tac (claset() addEs [trancl_induct], simpset())]);
9b3293646b5d generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents: 4746
diff changeset
   351
Addsimps[trancl_empty];
9b3293646b5d generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents: 4746
diff changeset
   352
9b3293646b5d generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents: 4746
diff changeset
   353
qed_goal "rtrancl_empty" Trancl.thy "{}^* = id" 
9b3293646b5d generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents: 4746
diff changeset
   354
  (K [rtac (reflcl_trancl RS subst) 1, Simp_tac 1]);
9b3293646b5d generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents: 4746
diff changeset
   355
Addsimps[rtrancl_empty];