author | wenzelm |
Fri, 21 May 1999 11:40:15 +0200 | |
changeset 6685 | e33ae2af0d36 |
parent 6162 | 484adda70b65 |
child 6856 | 0364007b4bb3 |
permissions | -rw-r--r-- |
4764
9b3293646b5d
generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents:
4746
diff
changeset
|
1 |
(* Title: HOL/Trancl |
923 | 2 |
ID: $Id$ |
1465 | 3 |
Author: Lawrence C Paulson, Cambridge University Computer Laboratory |
923 | 4 |
Copyright 1992 University of Cambridge |
5 |
||
5316 | 6 |
Theorems about the transitive closure of a relation |
923 | 7 |
*) |
8 |
||
5771 | 9 |
(** The relation rtrancl **) |
923 | 10 |
|
5771 | 11 |
section "^*"; |
923 | 12 |
|
5608 | 13 |
Goal "mono(%s. Id Un (r O s))"; |
923 | 14 |
by (rtac monoI 1); |
15 |
by (REPEAT (ares_tac [monoI, subset_refl, comp_mono, Un_mono] 1)); |
|
16 |
qed "rtrancl_fun_mono"; |
|
17 |
||
18 |
val rtrancl_unfold = rtrancl_fun_mono RS (rtrancl_def RS def_lfp_Tarski); |
|
19 |
||
20 |
(*Reflexivity of rtrancl*) |
|
5069 | 21 |
Goal "(a,a) : r^*"; |
923 | 22 |
by (stac rtrancl_unfold 1); |
2891 | 23 |
by (Blast_tac 1); |
923 | 24 |
qed "rtrancl_refl"; |
25 |
||
1921 | 26 |
Addsimps [rtrancl_refl]; |
27 |
AddSIs [rtrancl_refl]; |
|
28 |
||
29 |
||
923 | 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 | 32 |
by (stac rtrancl_unfold 1); |
2891 | 33 |
by (Blast_tac 1); |
923 | 34 |
qed "rtrancl_into_rtrancl"; |
35 |
||
36 |
(*rtrancl of r contains r*) |
|
5069 | 37 |
Goal "!!p. p : r ==> p : r^*"; |
1552 | 38 |
by (split_all_tac 1); |
1301 | 39 |
by (etac (rtrancl_refl RS rtrancl_into_rtrancl) 1); |
923 | 40 |
qed "r_into_rtrancl"; |
41 |
||
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 | 44 |
by (REPEAT(ares_tac [lfp_mono,Un_mono,comp_mono,subset_refl] 1)); |
923 | 45 |
qed "rtrancl_mono"; |
46 |
||
47 |
(** standard induction rule **) |
|
48 |
||
5316 | 49 |
val major::prems = Goal |
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 | 54 |
by (rtac ([rtrancl_def, rtrancl_fun_mono, major] MRS def_induct) 1); |
4089 | 55 |
by (blast_tac (claset() addIs prems) 1); |
923 | 56 |
qed "rtrancl_full_induct"; |
57 |
||
58 |
(*nice induction rule*) |
|
5316 | 59 |
val major::prems = Goal |
972
e61b058d58d2
changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents:
923
diff
changeset
|
60 |
"[| (a::'a,b) : r^*; \ |
923 | 61 |
\ P(a); \ |
1465 | 62 |
\ !!y z.[| (a,y) : r^*; (y,z) : r; P(y) |] ==> P(z) |] \ |
923 | 63 |
\ ==> P(b)"; |
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 | 66 |
(*now solve first subgoal: this formula is sufficient*) |
2891 | 67 |
by (Blast_tac 1); |
923 | 68 |
(*now do the induction*) |
69 |
by (resolve_tac [major RS rtrancl_full_induct] 1); |
|
4089 | 70 |
by (blast_tac (claset() addIs prems) 1); |
71 |
by (blast_tac (claset() addIs prems) 1); |
|
923 | 72 |
qed "rtrancl_induct"; |
73 |
||
5098 | 74 |
bind_thm ("rtrancl_induct2", split_rule |
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 | 77 |
(*transitivity of transitive closure!! -- by induction.*) |
5069 | 78 |
Goalw [trans_def] "trans(r^*)"; |
4153 | 79 |
by Safe_tac; |
1642 | 80 |
by (eres_inst_tac [("b","z")] rtrancl_induct 1); |
4089 | 81 |
by (ALLGOALS(blast_tac (claset() addIs [rtrancl_into_rtrancl]))); |
1642 | 82 |
qed "trans_rtrancl"; |
83 |
||
84 |
bind_thm ("rtrancl_trans", trans_rtrancl RS transD); |
|
85 |
||
923 | 86 |
|
87 |
(*elimination of rtrancl -- by induction on a special formula*) |
|
5316 | 88 |
val major::prems = Goal |
1465 | 89 |
"[| (a::'a,b) : r^*; (a = b) ==> P; \ |
90 |
\ !!y.[| (a,y) : r^*; (y,b) : r |] ==> P \ |
|
923 | 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 | 93 |
by (rtac (major RS rtrancl_induct) 2); |
4089 | 94 |
by (blast_tac (claset() addIs prems) 2); |
95 |
by (blast_tac (claset() addIs prems) 2); |
|
923 | 96 |
by (REPEAT (eresolve_tac ([asm_rl,exE,disjE,conjE]@prems) 1)); |
97 |
qed "rtranclE"; |
|
98 |
||
1642 | 99 |
bind_thm ("rtrancl_into_rtrancl2", r_into_rtrancl RS rtrancl_trans); |
100 |
||
101 |
||
102 |
(*** More r^* equations and inclusions ***) |
|
103 |
||
5069 | 104 |
Goal "(r^*)^* = r^*"; |
1642 | 105 |
by (rtac set_ext 1); |
106 |
by (res_inst_tac [("p","x")] PairE 1); |
|
107 |
by (hyp_subst_tac 1); |
|
108 |
by (rtac iffI 1); |
|
1552 | 109 |
by (etac rtrancl_induct 1); |
1642 | 110 |
by (rtac rtrancl_refl 1); |
4089 | 111 |
by (blast_tac (claset() addIs [rtrancl_trans]) 1); |
1642 | 112 |
by (etac r_into_rtrancl 1); |
113 |
qed "rtrancl_idemp"; |
|
114 |
Addsimps [rtrancl_idemp]; |
|
115 |
||
5069 | 116 |
Goal "R^* O R^* = R^*"; |
5132 | 117 |
by (rtac set_ext 1); |
118 |
by (split_all_tac 1); |
|
119 |
by (blast_tac (claset() addIs [rtrancl_trans]) 1); |
|
4830 | 120 |
qed "rtrancl_idemp_self_comp"; |
121 |
Addsimps [rtrancl_idemp_self_comp]; |
|
122 |
||
5143
b94cd208f073
Removal of leading "\!\!..." from most Goal commands
paulson
parents:
5132
diff
changeset
|
123 |
Goal "r <= s^* ==> r^* <= s^*"; |
2031 | 124 |
by (dtac rtrancl_mono 1); |
1642 | 125 |
by (Asm_full_simp_tac 1); |
126 |
qed "rtrancl_subset_rtrancl"; |
|
127 |
||
5143
b94cd208f073
Removal of leading "\!\!..." from most Goal commands
paulson
parents:
5132
diff
changeset
|
128 |
Goal "[| R <= S; S <= R^* |] ==> S^* = R^*"; |
1642 | 129 |
by (dtac rtrancl_mono 1); |
130 |
by (dtac rtrancl_mono 1); |
|
131 |
by (Asm_full_simp_tac 1); |
|
2891 | 132 |
by (Blast_tac 1); |
1642 | 133 |
qed "rtrancl_subset"; |
134 |
||
5143
b94cd208f073
Removal of leading "\!\!..." from most Goal commands
paulson
parents:
5132
diff
changeset
|
135 |
Goal "(R^* Un S^*)^* = (R Un S)^*"; |
5479 | 136 |
by (blast_tac (claset() addSIs [rtrancl_subset] |
137 |
addIs [r_into_rtrancl, rtrancl_mono RS subsetD]) 1); |
|
1642 | 138 |
qed "rtrancl_Un_rtrancl"; |
1496 | 139 |
|
5069 | 140 |
Goal "(R^=)^* = R^*"; |
5281 | 141 |
by (blast_tac (claset() addSIs [rtrancl_subset] addIs [r_into_rtrancl]) 1); |
1642 | 142 |
qed "rtrancl_reflcl"; |
143 |
Addsimps [rtrancl_reflcl]; |
|
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 | 146 |
by (rtac converseI 1); |
1642 | 147 |
by (etac rtrancl_induct 1); |
148 |
by (rtac rtrancl_refl 1); |
|
4089 | 149 |
by (blast_tac (claset() addIs [r_into_rtrancl,rtrancl_trans]) 1); |
4746 | 150 |
qed "rtrancl_converseD"; |
1642 | 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 | 153 |
by (dtac converseD 1); |
1642 | 154 |
by (etac rtrancl_induct 1); |
155 |
by (rtac rtrancl_refl 1); |
|
4089 | 156 |
by (blast_tac (claset() addIs [r_into_rtrancl,rtrancl_trans]) 1); |
4746 | 157 |
qed "rtrancl_converseI"; |
1642 | 158 |
|
5069 | 159 |
Goal "(r^-1)^* = (r^*)^-1"; |
4838 | 160 |
by (safe_tac (claset() addSDs [rtrancl_converseD] addSIs [rtrancl_converseI])); |
4746 | 161 |
qed "rtrancl_converse"; |
1642 | 162 |
|
5316 | 163 |
val major::prems = Goal |
1706
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 | 167 |
by (rtac ((major RS converseI RS rtrancl_converseI) RS rtrancl_induct) 1); |
2031 | 168 |
by (resolve_tac prems 1); |
4746 | 169 |
by (blast_tac (claset() addIs prems addSDs[rtrancl_converseD])1); |
170 |
qed "converse_rtrancl_induct"; |
|
1706
4e0d5c7f57fa
Added backwards rtrancl_induct and special versions for pairs.
nipkow
parents:
1642
diff
changeset
|
171 |
|
5347 | 172 |
bind_thm ("converse_rtrancl_induct2", split_rule |
173 |
(read_instantiate [("a","(ax,ay)"),("b","(bx,by)")]converse_rtrancl_induct)); |
|
1496 | 174 |
|
5316 | 175 |
val major::prems = Goal |
3413
c1f63cc3a768
Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents:
2935
diff
changeset
|
176 |
"[| (x,z):r^*; \ |
c1f63cc3a768
Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents:
2935
diff
changeset
|
177 |
\ x=z ==> P; \ |
c1f63cc3a768
Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents:
2935
diff
changeset
|
178 |
\ !!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
|
179 |
\ |] ==> P"; |
c1f63cc3a768
Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents:
2935
diff
changeset
|
180 |
by (subgoal_tac "x = z | (? y. (x,y) : r & (y,z) : r^*)" 1); |
4746 | 181 |
by (rtac (major RS converse_rtrancl_induct) 2); |
4089 | 182 |
by (blast_tac (claset() addIs prems) 2); |
183 |
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
|
184 |
by (REPEAT (eresolve_tac ([asm_rl,exE,disjE,conjE]@prems) 1)); |
5347 | 185 |
qed "converse_rtranclE"; |
186 |
||
187 |
bind_thm ("converse_rtranclE2", split_rule |
|
188 |
(read_instantiate [("x","(xa,xb)"), ("z","(za,zb)")] converse_rtranclE)); |
|
3413
c1f63cc3a768
Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents:
2935
diff
changeset
|
189 |
|
5069 | 190 |
Goal "r O r^* = r^* O r"; |
5347 | 191 |
by (blast_tac (claset() addEs [rtranclE, converse_rtranclE] |
3723 | 192 |
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
|
193 |
qed "r_comp_rtrancl_eq"; |
c1f63cc3a768
Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents:
2935
diff
changeset
|
194 |
|
923 | 195 |
|
196 |
(**** The relation trancl ****) |
|
197 |
||
5771 | 198 |
section "^+"; |
199 |
||
5143
b94cd208f073
Removal of leading "\!\!..." from most Goal commands
paulson
parents:
5132
diff
changeset
|
200 |
Goalw [trancl_def] "[| p:r^+; r <= s |] ==> p:s^+"; |
4089 | 201 |
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
|
202 |
qed "trancl_mono"; |
c1f63cc3a768
Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents:
2935
diff
changeset
|
203 |
|
923 | 204 |
(** Conversions between trancl and rtrancl **) |
205 |
||
5069 | 206 |
Goalw [trancl_def] |
4764
9b3293646b5d
generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents:
4746
diff
changeset
|
207 |
"!!p. p : r^+ ==> p : r^*"; |
9b3293646b5d
generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents:
4746
diff
changeset
|
208 |
by (split_all_tac 1); |
9b3293646b5d
generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents:
4746
diff
changeset
|
209 |
by (etac compEpair 1); |
923 | 210 |
by (REPEAT (ares_tac [rtrancl_into_rtrancl] 1)); |
211 |
qed "trancl_into_rtrancl"; |
|
212 |
||
213 |
(*r^+ contains r*) |
|
5069 | 214 |
Goalw [trancl_def] |
4764
9b3293646b5d
generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents:
4746
diff
changeset
|
215 |
"!!p. p : r ==> p : r^+"; |
9b3293646b5d
generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents:
4746
diff
changeset
|
216 |
by (split_all_tac 1); |
923 | 217 |
by (REPEAT (ares_tac [prem,compI,rtrancl_refl] 1)); |
218 |
qed "r_into_trancl"; |
|
219 |
||
220 |
(*intro rule by definition: from rtrancl and r*) |
|
5255 | 221 |
Goalw [trancl_def] "[| (a,b) : r^*; (b,c) : r |] ==> (a,c) : r^+"; |
222 |
by Auto_tac; |
|
923 | 223 |
qed "rtrancl_into_trancl1"; |
224 |
||
225 |
(*intro rule from r and rtrancl*) |
|
5255 | 226 |
Goal "[| (a,b) : r; (b,c) : r^* |] ==> (a,c) : r^+"; |
227 |
by (etac rtranclE 1); |
|
228 |
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
|
229 |
by (rtac (rtrancl_trans RS rtrancl_into_trancl1) 1); |
5255 | 230 |
by (REPEAT (ares_tac [r_into_rtrancl] 1)); |
923 | 231 |
qed "rtrancl_into_trancl2"; |
232 |
||
1642 | 233 |
(*Nice induction rule for trancl*) |
5316 | 234 |
val major::prems = Goal |
1642 | 235 |
"[| (a,b) : r^+; \ |
236 |
\ !!y. [| (a,y) : r |] ==> P(y); \ |
|
237 |
\ !!y z.[| (a,y) : r^+; (y,z) : r; P(y) |] ==> P(z) \ |
|
238 |
\ |] ==> P(b)"; |
|
239 |
by (rtac (rewrite_rule [trancl_def] major RS compEpair) 1); |
|
240 |
(*by induction on this formula*) |
|
241 |
by (subgoal_tac "ALL z. (y,z) : r --> P(z)" 1); |
|
242 |
(*now solve first subgoal: this formula is sufficient*) |
|
2891 | 243 |
by (Blast_tac 1); |
1642 | 244 |
by (etac rtrancl_induct 1); |
4089 | 245 |
by (ALLGOALS (blast_tac (claset() addIs (rtrancl_into_trancl1::prems)))); |
1642 | 246 |
qed "trancl_induct"; |
247 |
||
923 | 248 |
(*elimination of r^+ -- NOT an induction rule*) |
5316 | 249 |
val major::prems = Goal |
972
e61b058d58d2
changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents:
923
diff
changeset
|
250 |
"[| (a::'a,b) : r^+; \ |
e61b058d58d2
changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents:
923
diff
changeset
|
251 |
\ (a,b) : r ==> P; \ |
1465 | 252 |
\ !!y.[| (a,y) : r^+; (y,b) : r |] ==> P \ |
923 | 253 |
\ |] ==> P"; |
972
e61b058d58d2
changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents:
923
diff
changeset
|
254 |
by (subgoal_tac "(a::'a,b) : r | (? y. (a,y) : r^+ & (y,b) : r)" 1); |
923 | 255 |
by (REPEAT (eresolve_tac ([asm_rl,disjE,exE,conjE]@prems) 1)); |
256 |
by (rtac (rewrite_rule [trancl_def] major RS compEpair) 1); |
|
257 |
by (etac rtranclE 1); |
|
2891 | 258 |
by (Blast_tac 1); |
4089 | 259 |
by (blast_tac (claset() addSIs [rtrancl_into_trancl1]) 1); |
923 | 260 |
qed "tranclE"; |
261 |
||
262 |
(*Transitivity of r^+. |
|
263 |
Proved by unfolding since it uses transitivity of rtrancl. *) |
|
5069 | 264 |
Goalw [trancl_def] "trans(r^+)"; |
923 | 265 |
by (rtac transI 1); |
266 |
by (REPEAT (etac compEpair 1)); |
|
1122
20b708827030
renamed trans_rtrancl to rtrancl_trans and modified it by expanding trans.
nipkow
parents:
1121
diff
changeset
|
267 |
by (rtac (rtrancl_into_rtrancl RS (rtrancl_trans RS compI)) 1); |
923 | 268 |
by (REPEAT (assume_tac 1)); |
269 |
qed "trans_trancl"; |
|
270 |
||
1642 | 271 |
bind_thm ("trancl_trans", trans_trancl RS transD); |
272 |
||
5255 | 273 |
Goalw [trancl_def] "[| (x,y):r^*; (y,z):r^+ |] ==> (x,z):r^+"; |
4089 | 274 |
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
|
275 |
qed "rtrancl_trancl_trancl"; |
c1f63cc3a768
Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents:
2935
diff
changeset
|
276 |
|
5255 | 277 |
(* "[| (a,b) : r; (b,c) : r^+ |] ==> (a,c) : r^+" *) |
278 |
bind_thm ("trancl_into_trancl2", [trans_trancl, r_into_trancl] MRS transD); |
|
923 | 279 |
|
3413
c1f63cc3a768
Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents:
2935
diff
changeset
|
280 |
(* primitive recursion for trancl over finite relations: *) |
5069 | 281 |
Goal "(insert (y,x) r)^+ = r^+ Un {(a,b). (a,y):r^* & (x,b):r^*}"; |
3457 | 282 |
by (rtac equalityI 1); |
283 |
by (rtac subsetI 1); |
|
284 |
by (split_all_tac 1); |
|
285 |
by (etac trancl_induct 1); |
|
4089 | 286 |
by (blast_tac (claset() addIs [r_into_trancl]) 1); |
287 |
by (blast_tac (claset() addIs |
|
3413
c1f63cc3a768
Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents:
2935
diff
changeset
|
288 |
[rtrancl_into_trancl1,trancl_into_rtrancl,r_into_trancl,trancl_trans]) 1); |
3457 | 289 |
by (rtac subsetI 1); |
4089 | 290 |
by (blast_tac (claset() addIs |
3413
c1f63cc3a768
Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents:
2935
diff
changeset
|
291 |
[rtrancl_into_trancl2, rtrancl_trancl_trancl, |
c1f63cc3a768
Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents:
2935
diff
changeset
|
292 |
impOfSubs rtrancl_mono, trancl_mono]) 1); |
c1f63cc3a768
Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents:
2935
diff
changeset
|
293 |
qed "trancl_insert"; |
c1f63cc3a768
Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents:
2935
diff
changeset
|
294 |
|
5069 | 295 |
Goalw [trancl_def] "(r^-1)^+ = (r^+)^-1"; |
4746 | 296 |
by (simp_tac (simpset() addsimps [rtrancl_converse,converse_comp]) 1); |
5451 | 297 |
by (simp_tac (simpset() addsimps [rtrancl_converse RS sym, |
298 |
r_comp_rtrancl_eq]) 1); |
|
4746 | 299 |
qed "trancl_converse"; |
3413
c1f63cc3a768
Finite.ML Finite.thy: Replaced `finite subset of' by mere `finite'.
nipkow
parents:
2935
diff
changeset
|
300 |
|
5771 | 301 |
Goal "(x,y) : (r^+)^-1 ==> (x,y) : (r^-1)^+"; |
302 |
by (asm_full_simp_tac (simpset() addsimps [trancl_converse]) 1); |
|
303 |
qed "trancl_converseI"; |
|
304 |
||
305 |
Goal "(x,y) : (r^-1)^+ ==> (x,y) : (r^+)^-1"; |
|
306 |
by (asm_full_simp_tac (simpset() addsimps [trancl_converse]) 1); |
|
307 |
qed "trancl_converseD"; |
|
308 |
||
309 |
val major::prems = Goal |
|
310 |
"[| (a,b) : r^+; !!y. (y,b) : r ==> P(y); \ |
|
311 |
\ !!y z.[| (y,z) : r; (z,b) : r^+; P(z) |] ==> P(y) |] \ |
|
312 |
\ ==> P(a)"; |
|
313 |
by (rtac ((major RS converseI RS trancl_converseI) RS trancl_induct) 1); |
|
314 |
by (resolve_tac prems 1); |
|
6162 | 315 |
by (etac converseD 1); |
5771 | 316 |
by (blast_tac (claset() addIs prems addSDs [trancl_converseD])1); |
317 |
qed "converse_trancl_induct"; |
|
318 |
||
5451 | 319 |
(*Unused*) |
320 |
qed_goal "irrefl_tranclI" Trancl.thy |
|
321 |
"!!r. r^-1 Int r^+ = {} ==> (x, x) ~: r^+" |
|
322 |
(K [subgoal_tac "!y. (x, y) : r^+ --> x~=y" 1, |
|
323 |
Fast_tac 1, |
|
324 |
strip_tac 1, |
|
325 |
etac trancl_induct 1, |
|
326 |
auto_tac (claset() addIs [r_into_trancl], simpset())]); |
|
1130 | 327 |
|
5255 | 328 |
Goal "[| (a,b) : r^*; r <= A Times A |] ==> a=b | a:A"; |
329 |
by (etac rtrancl_induct 1); |
|
330 |
by Auto_tac; |
|
1642 | 331 |
val lemma = result(); |
923 | 332 |
|
5148
74919e8f221c
More tidying and removal of "\!\!... from Goal commands
paulson
parents:
5143
diff
changeset
|
333 |
Goalw [trancl_def] "r <= A Times A ==> r^+ <= A Times A"; |
4089 | 334 |
by (blast_tac (claset() addSDs [lemma]) 1); |
923 | 335 |
qed "trancl_subset_Sigma"; |
1130 | 336 |
|
4764
9b3293646b5d
generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents:
4746
diff
changeset
|
337 |
|
5069 | 338 |
Goal "(r^+)^= = r^*"; |
4838 | 339 |
by Safe_tac; |
4764
9b3293646b5d
generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents:
4746
diff
changeset
|
340 |
by (etac trancl_into_rtrancl 1); |
9b3293646b5d
generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents:
4746
diff
changeset
|
341 |
by (etac rtranclE 1); |
4772
8c7e7eaffbdf
split_all_tac now fails if there is nothing to split
oheimb
parents:
4764
diff
changeset
|
342 |
by (Auto_tac ); |
4764
9b3293646b5d
generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents:
4746
diff
changeset
|
343 |
by (etac rtrancl_into_trancl1 1); |
5132 | 344 |
by (assume_tac 1); |
4764
9b3293646b5d
generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents:
4746
diff
changeset
|
345 |
qed "reflcl_trancl"; |
9b3293646b5d
generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents:
4746
diff
changeset
|
346 |
Addsimps[reflcl_trancl]; |
9b3293646b5d
generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents:
4746
diff
changeset
|
347 |
|
5069 | 348 |
Goal "(r^=)^+ = r^*"; |
4838 | 349 |
by Safe_tac; |
4764
9b3293646b5d
generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents:
4746
diff
changeset
|
350 |
by (dtac trancl_into_rtrancl 1); |
9b3293646b5d
generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents:
4746
diff
changeset
|
351 |
by (Asm_full_simp_tac 1); |
9b3293646b5d
generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents:
4746
diff
changeset
|
352 |
by (etac rtranclE 1); |
9b3293646b5d
generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents:
4746
diff
changeset
|
353 |
by Safe_tac; |
9b3293646b5d
generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents:
4746
diff
changeset
|
354 |
by (rtac r_into_trancl 1); |
9b3293646b5d
generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents:
4746
diff
changeset
|
355 |
by (Simp_tac 1); |
9b3293646b5d
generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents:
4746
diff
changeset
|
356 |
by (rtac rtrancl_into_trancl1 1); |
9b3293646b5d
generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents:
4746
diff
changeset
|
357 |
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
|
358 |
by (Fast_tac 1); |
9b3293646b5d
generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents:
4746
diff
changeset
|
359 |
qed "trancl_reflcl"; |
9b3293646b5d
generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents:
4746
diff
changeset
|
360 |
Addsimps[trancl_reflcl]; |
9b3293646b5d
generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents:
4746
diff
changeset
|
361 |
|
9b3293646b5d
generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents:
4746
diff
changeset
|
362 |
qed_goal "trancl_empty" Trancl.thy "{}^+ = {}" |
9b3293646b5d
generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents:
4746
diff
changeset
|
363 |
(K [auto_tac (claset() addEs [trancl_induct], simpset())]); |
9b3293646b5d
generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents:
4746
diff
changeset
|
364 |
Addsimps[trancl_empty]; |
9b3293646b5d
generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents:
4746
diff
changeset
|
365 |
|
5608 | 366 |
qed_goal "rtrancl_empty" Trancl.thy "{}^* = Id" |
4764
9b3293646b5d
generalized appearance of trancl_into_rtrancl and r_into_trancl
oheimb
parents:
4746
diff
changeset
|
367 |
(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
|
368 |
Addsimps[rtrancl_empty]; |