author | blanchet |
Mon, 01 Sep 2014 16:34:40 +0200 | |
changeset 58128 | 43a1ba26a8cb |
parent 57284 | 886ff14f20cc |
child 58889 | 5b7a9633cfa8 |
permissions | -rw-r--r-- |
10213 | 1 |
(* Title: HOL/Transitive_Closure.thy |
2 |
Author: Lawrence C Paulson, Cambridge University Computer Laboratory |
|
3 |
Copyright 1992 University of Cambridge |
|
4 |
*) |
|
5 |
||
12691 | 6 |
header {* Reflexive and Transitive closure of a relation *} |
7 |
||
15131 | 8 |
theory Transitive_Closure |
46664
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents:
46638
diff
changeset
|
9 |
imports Relation |
15131 | 10 |
begin |
12691 | 11 |
|
48891 | 12 |
ML_file "~~/src/Provers/trancl.ML" |
13 |
||
12691 | 14 |
text {* |
15 |
@{text rtrancl} is reflexive/transitive closure, |
|
16 |
@{text trancl} is transitive closure, |
|
17 |
@{text reflcl} is reflexive closure. |
|
18 |
||
19 |
These postfix operators have \emph{maximum priority}, forcing their |
|
20 |
operands to be atomic. |
|
21 |
*} |
|
10213 | 22 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
23 |
inductive_set |
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
24 |
rtrancl :: "('a \<times> 'a) set \<Rightarrow> ('a \<times> 'a) set" ("(_^*)" [1000] 999) |
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
25 |
for r :: "('a \<times> 'a) set" |
22262 | 26 |
where |
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
27 |
rtrancl_refl [intro!, Pure.intro!, simp]: "(a, a) : r^*" |
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
28 |
| rtrancl_into_rtrancl [Pure.intro]: "(a, b) : r^* ==> (b, c) : r ==> (a, c) : r^*" |
11327
cd2c27a23df1
Transitive closure is now defined via "inductive".
berghofe
parents:
11115
diff
changeset
|
29 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
30 |
inductive_set |
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
31 |
trancl :: "('a \<times> 'a) set \<Rightarrow> ('a \<times> 'a) set" ("(_^+)" [1000] 999) |
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
32 |
for r :: "('a \<times> 'a) set" |
22262 | 33 |
where |
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
34 |
r_into_trancl [intro, Pure.intro]: "(a, b) : r ==> (a, b) : r^+" |
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
35 |
| trancl_into_trancl [Pure.intro]: "(a, b) : r^+ ==> (b, c) : r ==> (a, c) : r^+" |
13704
854501b1e957
Transitive closure is now defined inductively as well.
berghofe
parents:
12937
diff
changeset
|
36 |
|
41792
ff3cb0c418b7
renamed "nitpick\_def" to "nitpick_unfold" to reflect its new semantics
blanchet
parents:
39302
diff
changeset
|
37 |
declare rtrancl_def [nitpick_unfold del] |
ff3cb0c418b7
renamed "nitpick\_def" to "nitpick_unfold" to reflect its new semantics
blanchet
parents:
39302
diff
changeset
|
38 |
rtranclp_def [nitpick_unfold del] |
ff3cb0c418b7
renamed "nitpick\_def" to "nitpick_unfold" to reflect its new semantics
blanchet
parents:
39302
diff
changeset
|
39 |
trancl_def [nitpick_unfold del] |
ff3cb0c418b7
renamed "nitpick\_def" to "nitpick_unfold" to reflect its new semantics
blanchet
parents:
39302
diff
changeset
|
40 |
tranclp_def [nitpick_unfold del] |
33878
85102f57b4a8
removed "nitpick_def" attributes from (r)trancl(p), since "Nitpick.thy" overrides these
blanchet
parents:
33656
diff
changeset
|
41 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
42 |
notation |
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
43 |
rtranclp ("(_^**)" [1000] 1000) and |
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
44 |
tranclp ("(_^++)" [1000] 1000) |
10213 | 45 |
|
19656
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents:
19623
diff
changeset
|
46 |
abbreviation |
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
47 |
reflclp :: "('a => 'a => bool) => 'a => 'a => bool" ("(_^==)" [1000] 1000) where |
45137 | 48 |
"r^== \<equiv> sup r op =" |
22262 | 49 |
|
50 |
abbreviation |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
51 |
reflcl :: "('a \<times> 'a) set => ('a \<times> 'a) set" ("(_^=)" [1000] 999) where |
45137 | 52 |
"r^= \<equiv> r \<union> Id" |
10213 | 53 |
|
21210 | 54 |
notation (xsymbols) |
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
55 |
rtranclp ("(_\<^sup>*\<^sup>*)" [1000] 1000) and |
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
56 |
tranclp ("(_\<^sup>+\<^sup>+)" [1000] 1000) and |
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
57 |
reflclp ("(_\<^sup>=\<^sup>=)" [1000] 1000) and |
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
58 |
rtrancl ("(_\<^sup>*)" [1000] 999) and |
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
59 |
trancl ("(_\<^sup>+)" [1000] 999) and |
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
60 |
reflcl ("(_\<^sup>=)" [1000] 999) |
12691 | 61 |
|
21210 | 62 |
notation (HTML output) |
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
63 |
rtranclp ("(_\<^sup>*\<^sup>*)" [1000] 1000) and |
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
64 |
tranclp ("(_\<^sup>+\<^sup>+)" [1000] 1000) and |
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
65 |
reflclp ("(_\<^sup>=\<^sup>=)" [1000] 1000) and |
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
66 |
rtrancl ("(_\<^sup>*)" [1000] 999) and |
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
67 |
trancl ("(_\<^sup>+)" [1000] 999) and |
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
68 |
reflcl ("(_\<^sup>=)" [1000] 999) |
14565 | 69 |
|
12691 | 70 |
|
26271 | 71 |
subsection {* Reflexive closure *} |
72 |
||
30198 | 73 |
lemma refl_reflcl[simp]: "refl(r^=)" |
74 |
by(simp add:refl_on_def) |
|
26271 | 75 |
|
76 |
lemma antisym_reflcl[simp]: "antisym(r^=) = antisym r" |
|
77 |
by(simp add:antisym_def) |
|
78 |
||
79 |
lemma trans_reflclI[simp]: "trans r \<Longrightarrow> trans(r^=)" |
|
80 |
unfolding trans_def by blast |
|
81 |
||
50616 | 82 |
lemma reflclp_idemp [simp]: "(P^==)^== = P^==" |
83 |
by blast |
|
26271 | 84 |
|
12691 | 85 |
subsection {* Reflexive-transitive closure *} |
86 |
||
32883
7cbd93dacef3
inf/sup1/2_iff are mere duplicates of underlying definitions: dropped
haftmann
parents:
32601
diff
changeset
|
87 |
lemma reflcl_set_eq [pred_set_conv]: "(sup (\<lambda>x y. (x, y) \<in> r) op =) = (\<lambda>x y. (x, y) \<in> r \<union> Id)" |
39302
d7728f65b353
renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents:
39198
diff
changeset
|
88 |
by (auto simp add: fun_eq_iff) |
22262 | 89 |
|
57284
886ff14f20cc
r_into_(r)trancl should not be [simp]: helps little and comlicates some AFP proofs
nipkow
parents:
57283
diff
changeset
|
90 |
lemma r_into_rtrancl [intro]: "!!p. p \<in> r ==> p \<in> r^*" |
12691 | 91 |
-- {* @{text rtrancl} of @{text r} contains @{text r} *} |
92 |
apply (simp only: split_tupled_all) |
|
93 |
apply (erule rtrancl_refl [THEN rtrancl_into_rtrancl]) |
|
94 |
done |
|
95 |
||
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
96 |
lemma r_into_rtranclp [intro]: "r x y ==> r^** x y" |
22262 | 97 |
-- {* @{text rtrancl} of @{text r} contains @{text r} *} |
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
98 |
by (erule rtranclp.rtrancl_refl [THEN rtranclp.rtrancl_into_rtrancl]) |
22262 | 99 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
100 |
lemma rtranclp_mono: "r \<le> s ==> r^** \<le> s^**" |
12691 | 101 |
-- {* monotonicity of @{text rtrancl} *} |
22262 | 102 |
apply (rule predicate2I) |
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
103 |
apply (erule rtranclp.induct) |
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
104 |
apply (rule_tac [2] rtranclp.rtrancl_into_rtrancl, blast+) |
12691 | 105 |
done |
106 |
||
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
107 |
lemmas rtrancl_mono = rtranclp_mono [to_set] |
22262 | 108 |
|
26179
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
109 |
theorem rtranclp_induct [consumes 1, case_names base step, induct set: rtranclp]: |
22262 | 110 |
assumes a: "r^** a b" |
111 |
and cases: "P a" "!!y z. [| r^** a y; r y z; P y |] ==> P z" |
|
34909
a799687944af
Tuned some proofs; nicer case names for some of the induction / cases rules.
berghofe
parents:
33878
diff
changeset
|
112 |
shows "P b" using a |
a799687944af
Tuned some proofs; nicer case names for some of the induction / cases rules.
berghofe
parents:
33878
diff
changeset
|
113 |
by (induct x\<equiv>a b) (rule cases)+ |
12691 | 114 |
|
25425
9191942c4ead
Removed some case_names and consumes attributes that are now no longer
berghofe
parents:
25295
diff
changeset
|
115 |
lemmas rtrancl_induct [induct set: rtrancl] = rtranclp_induct [to_set] |
22262 | 116 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
117 |
lemmas rtranclp_induct2 = |
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
118 |
rtranclp_induct[of _ "(ax,ay)" "(bx,by)", split_rule, |
22262 | 119 |
consumes 1, case_names refl step] |
120 |
||
14404
4952c5a92e04
Transitive_Closure: added consumes and case_names attributes
nipkow
parents:
14398
diff
changeset
|
121 |
lemmas rtrancl_induct2 = |
4952c5a92e04
Transitive_Closure: added consumes and case_names attributes
nipkow
parents:
14398
diff
changeset
|
122 |
rtrancl_induct[of "(ax,ay)" "(bx,by)", split_format (complete), |
4952c5a92e04
Transitive_Closure: added consumes and case_names attributes
nipkow
parents:
14398
diff
changeset
|
123 |
consumes 1, case_names refl step] |
18372 | 124 |
|
30198 | 125 |
lemma refl_rtrancl: "refl (r^*)" |
126 |
by (unfold refl_on_def) fast |
|
19228 | 127 |
|
26179
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
128 |
text {* Transitivity of transitive closure. *} |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
129 |
lemma trans_rtrancl: "trans (r^*)" |
12823 | 130 |
proof (rule transI) |
131 |
fix x y z |
|
132 |
assume "(x, y) \<in> r\<^sup>*" |
|
133 |
assume "(y, z) \<in> r\<^sup>*" |
|
26179
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
134 |
then show "(x, z) \<in> r\<^sup>*" |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
135 |
proof induct |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
136 |
case base |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
137 |
show "(x, y) \<in> r\<^sup>*" by fact |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
138 |
next |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
139 |
case (step u v) |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
140 |
from `(x, u) \<in> r\<^sup>*` and `(u, v) \<in> r` |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
141 |
show "(x, v) \<in> r\<^sup>*" .. |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
142 |
qed |
12823 | 143 |
qed |
12691 | 144 |
|
45607 | 145 |
lemmas rtrancl_trans = trans_rtrancl [THEN transD] |
12691 | 146 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
147 |
lemma rtranclp_trans: |
22262 | 148 |
assumes xy: "r^** x y" |
149 |
and yz: "r^** y z" |
|
150 |
shows "r^** x z" using yz xy |
|
151 |
by induct iprover+ |
|
152 |
||
26174
9efd4c04eaa4
rtranclE, tranclE: tuned statement, added case_names;
wenzelm
parents:
25425
diff
changeset
|
153 |
lemma rtranclE [cases set: rtrancl]: |
9efd4c04eaa4
rtranclE, tranclE: tuned statement, added case_names;
wenzelm
parents:
25425
diff
changeset
|
154 |
assumes major: "(a::'a, b) : r^*" |
9efd4c04eaa4
rtranclE, tranclE: tuned statement, added case_names;
wenzelm
parents:
25425
diff
changeset
|
155 |
obtains |
9efd4c04eaa4
rtranclE, tranclE: tuned statement, added case_names;
wenzelm
parents:
25425
diff
changeset
|
156 |
(base) "a = b" |
9efd4c04eaa4
rtranclE, tranclE: tuned statement, added case_names;
wenzelm
parents:
25425
diff
changeset
|
157 |
| (step) y where "(a, y) : r^*" and "(y, b) : r" |
12691 | 158 |
-- {* elimination of @{text rtrancl} -- by induction on a special formula *} |
18372 | 159 |
apply (subgoal_tac "(a::'a) = b | (EX y. (a,y) : r^* & (y,b) : r)") |
160 |
apply (rule_tac [2] major [THEN rtrancl_induct]) |
|
161 |
prefer 2 apply blast |
|
162 |
prefer 2 apply blast |
|
26174
9efd4c04eaa4
rtranclE, tranclE: tuned statement, added case_names;
wenzelm
parents:
25425
diff
changeset
|
163 |
apply (erule asm_rl exE disjE conjE base step)+ |
18372 | 164 |
done |
12691 | 165 |
|
32235
8f9b8d14fc9f
"more standard" argument order of relation composition (op O)
krauss
parents:
32215
diff
changeset
|
166 |
lemma rtrancl_Int_subset: "[| Id \<subseteq> s; (r^* \<inter> s) O r \<subseteq> s|] ==> r^* \<subseteq> s" |
22080
7bf8868ab3e4
induction rules for trancl/rtrancl expressed using subsets
paulson
parents:
21589
diff
changeset
|
167 |
apply (rule subsetI) |
7bf8868ab3e4
induction rules for trancl/rtrancl expressed using subsets
paulson
parents:
21589
diff
changeset
|
168 |
apply (rule_tac p="x" in PairE, clarify) |
7bf8868ab3e4
induction rules for trancl/rtrancl expressed using subsets
paulson
parents:
21589
diff
changeset
|
169 |
apply (erule rtrancl_induct, auto) |
7bf8868ab3e4
induction rules for trancl/rtrancl expressed using subsets
paulson
parents:
21589
diff
changeset
|
170 |
done |
7bf8868ab3e4
induction rules for trancl/rtrancl expressed using subsets
paulson
parents:
21589
diff
changeset
|
171 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
172 |
lemma converse_rtranclp_into_rtranclp: |
22262 | 173 |
"r a b \<Longrightarrow> r\<^sup>*\<^sup>* b c \<Longrightarrow> r\<^sup>*\<^sup>* a c" |
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
174 |
by (rule rtranclp_trans) iprover+ |
22262 | 175 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
176 |
lemmas converse_rtrancl_into_rtrancl = converse_rtranclp_into_rtranclp [to_set] |
12691 | 177 |
|
178 |
text {* |
|
179 |
\medskip More @{term "r^*"} equations and inclusions. |
|
180 |
*} |
|
181 |
||
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
182 |
lemma rtranclp_idemp [simp]: "(r^**)^** = r^**" |
22262 | 183 |
apply (auto intro!: order_antisym) |
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
184 |
apply (erule rtranclp_induct) |
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
185 |
apply (rule rtranclp.rtrancl_refl) |
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
186 |
apply (blast intro: rtranclp_trans) |
12691 | 187 |
done |
188 |
||
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
189 |
lemmas rtrancl_idemp [simp] = rtranclp_idemp [to_set] |
22262 | 190 |
|
12691 | 191 |
lemma rtrancl_idemp_self_comp [simp]: "R^* O R^* = R^*" |
39302
d7728f65b353
renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents:
39198
diff
changeset
|
192 |
apply (rule set_eqI) |
12691 | 193 |
apply (simp only: split_tupled_all) |
194 |
apply (blast intro: rtrancl_trans) |
|
195 |
done |
|
196 |
||
197 |
lemma rtrancl_subset_rtrancl: "r \<subseteq> s^* ==> r^* \<subseteq> s^*" |
|
26179
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
198 |
apply (drule rtrancl_mono) |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
199 |
apply simp |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
200 |
done |
12691 | 201 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
202 |
lemma rtranclp_subset: "R \<le> S ==> S \<le> R^** ==> S^** = R^**" |
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
203 |
apply (drule rtranclp_mono) |
26179
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
204 |
apply (drule rtranclp_mono) |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
205 |
apply simp |
12691 | 206 |
done |
207 |
||
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
208 |
lemmas rtrancl_subset = rtranclp_subset [to_set] |
22262 | 209 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
210 |
lemma rtranclp_sup_rtranclp: "(sup (R^**) (S^**))^** = (sup R S)^**" |
50616 | 211 |
by (blast intro!: rtranclp_subset intro: rtranclp_mono [THEN predicate2D]) |
12691 | 212 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
213 |
lemmas rtrancl_Un_rtrancl = rtranclp_sup_rtranclp [to_set] |
22262 | 214 |
|
50616 | 215 |
lemma rtranclp_reflclp [simp]: "(R^==)^** = R^**" |
216 |
by (blast intro!: rtranclp_subset) |
|
22262 | 217 |
|
50616 | 218 |
lemmas rtrancl_reflcl [simp] = rtranclp_reflclp [to_set] |
12691 | 219 |
|
220 |
lemma rtrancl_r_diff_Id: "(r - Id)^* = r^*" |
|
221 |
apply (rule sym) |
|
14208 | 222 |
apply (rule rtrancl_subset, blast, clarify) |
12691 | 223 |
apply (rename_tac a b) |
26179
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
224 |
apply (case_tac "a = b") |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
225 |
apply blast |
44921 | 226 |
apply blast |
12691 | 227 |
done |
228 |
||
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
229 |
lemma rtranclp_r_diff_Id: "(inf r op ~=)^** = r^**" |
22262 | 230 |
apply (rule sym) |
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
231 |
apply (rule rtranclp_subset) |
26179
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
232 |
apply blast+ |
22262 | 233 |
done |
234 |
||
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
235 |
theorem rtranclp_converseD: |
22262 | 236 |
assumes r: "(r^--1)^** x y" |
237 |
shows "r^** y x" |
|
12823 | 238 |
proof - |
239 |
from r show ?thesis |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
240 |
by induct (iprover intro: rtranclp_trans dest!: conversepD)+ |
12823 | 241 |
qed |
12691 | 242 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
243 |
lemmas rtrancl_converseD = rtranclp_converseD [to_set] |
22262 | 244 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
245 |
theorem rtranclp_converseI: |
26179
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
246 |
assumes "r^** y x" |
22262 | 247 |
shows "(r^--1)^** x y" |
26179
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
248 |
using assms |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
249 |
by induct (iprover intro: rtranclp_trans conversepI)+ |
12691 | 250 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
251 |
lemmas rtrancl_converseI = rtranclp_converseI [to_set] |
22262 | 252 |
|
12691 | 253 |
lemma rtrancl_converse: "(r^-1)^* = (r^*)^-1" |
254 |
by (fast dest!: rtrancl_converseD intro!: rtrancl_converseI) |
|
255 |
||
19228 | 256 |
lemma sym_rtrancl: "sym r ==> sym (r^*)" |
257 |
by (simp only: sym_conv_converse_eq rtrancl_converse [symmetric]) |
|
258 |
||
34909
a799687944af
Tuned some proofs; nicer case names for some of the induction / cases rules.
berghofe
parents:
33878
diff
changeset
|
259 |
theorem converse_rtranclp_induct [consumes 1, case_names base step]: |
22262 | 260 |
assumes major: "r^** a b" |
261 |
and cases: "P b" "!!y z. [| r y z; r^** z b; P z |] ==> P y" |
|
12937
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
wenzelm
parents:
12823
diff
changeset
|
262 |
shows "P a" |
26179
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
263 |
using rtranclp_converseI [OF major] |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
264 |
by induct (iprover intro: cases dest!: conversepD rtranclp_converseD)+ |
12691 | 265 |
|
25425
9191942c4ead
Removed some case_names and consumes attributes that are now no longer
berghofe
parents:
25295
diff
changeset
|
266 |
lemmas converse_rtrancl_induct = converse_rtranclp_induct [to_set] |
22262 | 267 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
268 |
lemmas converse_rtranclp_induct2 = |
26179
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
269 |
converse_rtranclp_induct [of _ "(ax,ay)" "(bx,by)", split_rule, |
22262 | 270 |
consumes 1, case_names refl step] |
271 |
||
14404
4952c5a92e04
Transitive_Closure: added consumes and case_names attributes
nipkow
parents:
14398
diff
changeset
|
272 |
lemmas converse_rtrancl_induct2 = |
26179
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
273 |
converse_rtrancl_induct [of "(ax,ay)" "(bx,by)", split_format (complete), |
14404
4952c5a92e04
Transitive_Closure: added consumes and case_names attributes
nipkow
parents:
14398
diff
changeset
|
274 |
consumes 1, case_names refl step] |
12691 | 275 |
|
34909
a799687944af
Tuned some proofs; nicer case names for some of the induction / cases rules.
berghofe
parents:
33878
diff
changeset
|
276 |
lemma converse_rtranclpE [consumes 1, case_names base step]: |
22262 | 277 |
assumes major: "r^** x z" |
18372 | 278 |
and cases: "x=z ==> P" |
22262 | 279 |
"!!y. [| r x y; r^** y z |] ==> P" |
18372 | 280 |
shows P |
22262 | 281 |
apply (subgoal_tac "x = z | (EX y. r x y & r^** y z)") |
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
282 |
apply (rule_tac [2] major [THEN converse_rtranclp_induct]) |
18372 | 283 |
prefer 2 apply iprover |
284 |
prefer 2 apply iprover |
|
285 |
apply (erule asm_rl exE disjE conjE cases)+ |
|
286 |
done |
|
12691 | 287 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
288 |
lemmas converse_rtranclE = converse_rtranclpE [to_set] |
22262 | 289 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
290 |
lemmas converse_rtranclpE2 = converse_rtranclpE [of _ "(xa,xb)" "(za,zb)", split_rule] |
22262 | 291 |
|
292 |
lemmas converse_rtranclE2 = converse_rtranclE [of "(xa,xb)" "(za,zb)", split_rule] |
|
12691 | 293 |
|
294 |
lemma r_comp_rtrancl_eq: "r O r^* = r^* O r" |
|
295 |
by (blast elim: rtranclE converse_rtranclE |
|
296 |
intro: rtrancl_into_rtrancl converse_rtrancl_into_rtrancl) |
|
297 |
||
32235
8f9b8d14fc9f
"more standard" argument order of relation composition (op O)
krauss
parents:
32215
diff
changeset
|
298 |
lemma rtrancl_unfold: "r^* = Id Un r^* O r" |
15551 | 299 |
by (auto intro: rtrancl_into_rtrancl elim: rtranclE) |
300 |
||
31690 | 301 |
lemma rtrancl_Un_separatorE: |
302 |
"(a,b) : (P \<union> Q)^* \<Longrightarrow> \<forall>x y. (a,x) : P^* \<longrightarrow> (x,y) : Q \<longrightarrow> x=y \<Longrightarrow> (a,b) : P^*" |
|
303 |
apply (induct rule:rtrancl.induct) |
|
304 |
apply blast |
|
305 |
apply (blast intro:rtrancl_trans) |
|
306 |
done |
|
307 |
||
308 |
lemma rtrancl_Un_separator_converseE: |
|
309 |
"(a,b) : (P \<union> Q)^* \<Longrightarrow> \<forall>x y. (x,b) : P^* \<longrightarrow> (y,x) : Q \<longrightarrow> y=x \<Longrightarrow> (a,b) : P^*" |
|
310 |
apply (induct rule:converse_rtrancl_induct) |
|
311 |
apply blast |
|
312 |
apply (blast intro:rtrancl_trans) |
|
313 |
done |
|
314 |
||
34970 | 315 |
lemma Image_closed_trancl: |
316 |
assumes "r `` X \<subseteq> X" shows "r\<^sup>* `` X = X" |
|
317 |
proof - |
|
318 |
from assms have **: "{y. \<exists>x\<in>X. (x, y) \<in> r} \<subseteq> X" by auto |
|
319 |
have "\<And>x y. (y, x) \<in> r\<^sup>* \<Longrightarrow> y \<in> X \<Longrightarrow> x \<in> X" |
|
320 |
proof - |
|
321 |
fix x y |
|
322 |
assume *: "y \<in> X" |
|
323 |
assume "(y, x) \<in> r\<^sup>*" |
|
324 |
then show "x \<in> X" |
|
325 |
proof induct |
|
326 |
case base show ?case by (fact *) |
|
327 |
next |
|
328 |
case step with ** show ?case by auto |
|
329 |
qed |
|
330 |
qed |
|
331 |
then show ?thesis by auto |
|
332 |
qed |
|
333 |
||
12691 | 334 |
|
335 |
subsection {* Transitive closure *} |
|
10331 | 336 |
|
13704
854501b1e957
Transitive closure is now defined inductively as well.
berghofe
parents:
12937
diff
changeset
|
337 |
lemma trancl_mono: "!!p. p \<in> r^+ ==> r \<subseteq> s ==> p \<in> s^+" |
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
338 |
apply (simp add: split_tupled_all) |
13704
854501b1e957
Transitive closure is now defined inductively as well.
berghofe
parents:
12937
diff
changeset
|
339 |
apply (erule trancl.induct) |
26179
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
340 |
apply (iprover dest: subsetD)+ |
12691 | 341 |
done |
342 |
||
57284
886ff14f20cc
r_into_(r)trancl should not be [simp]: helps little and comlicates some AFP proofs
nipkow
parents:
57283
diff
changeset
|
343 |
lemma r_into_trancl': "!!p. p : r ==> p : r^+" |
13704
854501b1e957
Transitive closure is now defined inductively as well.
berghofe
parents:
12937
diff
changeset
|
344 |
by (simp only: split_tupled_all) (erule r_into_trancl) |
854501b1e957
Transitive closure is now defined inductively as well.
berghofe
parents:
12937
diff
changeset
|
345 |
|
12691 | 346 |
text {* |
347 |
\medskip Conversions between @{text trancl} and @{text rtrancl}. |
|
348 |
*} |
|
349 |
||
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
350 |
lemma tranclp_into_rtranclp: "r^++ a b ==> r^** a b" |
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
351 |
by (erule tranclp.induct) iprover+ |
12691 | 352 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
353 |
lemmas trancl_into_rtrancl = tranclp_into_rtranclp [to_set] |
22262 | 354 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
355 |
lemma rtranclp_into_tranclp1: assumes r: "r^** a b" |
22262 | 356 |
shows "!!c. r b c ==> r^++ a c" using r |
17589 | 357 |
by induct iprover+ |
12691 | 358 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
359 |
lemmas rtrancl_into_trancl1 = rtranclp_into_tranclp1 [to_set] |
22262 | 360 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
361 |
lemma rtranclp_into_tranclp2: "[| r a b; r^** b c |] ==> r^++ a c" |
12691 | 362 |
-- {* intro rule from @{text r} and @{text rtrancl} *} |
26179
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
363 |
apply (erule rtranclp.cases) |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
364 |
apply iprover |
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
365 |
apply (rule rtranclp_trans [THEN rtranclp_into_tranclp1]) |
26179
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
366 |
apply (simp | rule r_into_rtranclp)+ |
12691 | 367 |
done |
368 |
||
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
369 |
lemmas rtrancl_into_trancl2 = rtranclp_into_tranclp2 [to_set] |
22262 | 370 |
|
26179
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
371 |
text {* Nice induction rule for @{text trancl} *} |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
372 |
lemma tranclp_induct [consumes 1, case_names base step, induct pred: tranclp]: |
34909
a799687944af
Tuned some proofs; nicer case names for some of the induction / cases rules.
berghofe
parents:
33878
diff
changeset
|
373 |
assumes a: "r^++ a b" |
22262 | 374 |
and cases: "!!y. r a y ==> P y" |
375 |
"!!y z. r^++ a y ==> r y z ==> P y ==> P z" |
|
34909
a799687944af
Tuned some proofs; nicer case names for some of the induction / cases rules.
berghofe
parents:
33878
diff
changeset
|
376 |
shows "P b" using a |
a799687944af
Tuned some proofs; nicer case names for some of the induction / cases rules.
berghofe
parents:
33878
diff
changeset
|
377 |
by (induct x\<equiv>a b) (iprover intro: cases)+ |
12691 | 378 |
|
25425
9191942c4ead
Removed some case_names and consumes attributes that are now no longer
berghofe
parents:
25295
diff
changeset
|
379 |
lemmas trancl_induct [induct set: trancl] = tranclp_induct [to_set] |
22262 | 380 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
381 |
lemmas tranclp_induct2 = |
26179
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
382 |
tranclp_induct [of _ "(ax,ay)" "(bx,by)", split_rule, |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
383 |
consumes 1, case_names base step] |
22262 | 384 |
|
22172 | 385 |
lemmas trancl_induct2 = |
26179
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
386 |
trancl_induct [of "(ax,ay)" "(bx,by)", split_format (complete), |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
387 |
consumes 1, case_names base step] |
22172 | 388 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
389 |
lemma tranclp_trans_induct: |
22262 | 390 |
assumes major: "r^++ x y" |
391 |
and cases: "!!x y. r x y ==> P x y" |
|
392 |
"!!x y z. [| r^++ x y; P x y; r^++ y z; P y z |] ==> P x z" |
|
18372 | 393 |
shows "P x y" |
12691 | 394 |
-- {* Another induction rule for trancl, incorporating transitivity *} |
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
395 |
by (iprover intro: major [THEN tranclp_induct] cases) |
12691 | 396 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
397 |
lemmas trancl_trans_induct = tranclp_trans_induct [to_set] |
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
398 |
|
26174
9efd4c04eaa4
rtranclE, tranclE: tuned statement, added case_names;
wenzelm
parents:
25425
diff
changeset
|
399 |
lemma tranclE [cases set: trancl]: |
9efd4c04eaa4
rtranclE, tranclE: tuned statement, added case_names;
wenzelm
parents:
25425
diff
changeset
|
400 |
assumes "(a, b) : r^+" |
9efd4c04eaa4
rtranclE, tranclE: tuned statement, added case_names;
wenzelm
parents:
25425
diff
changeset
|
401 |
obtains |
9efd4c04eaa4
rtranclE, tranclE: tuned statement, added case_names;
wenzelm
parents:
25425
diff
changeset
|
402 |
(base) "(a, b) : r" |
9efd4c04eaa4
rtranclE, tranclE: tuned statement, added case_names;
wenzelm
parents:
25425
diff
changeset
|
403 |
| (step) c where "(a, c) : r^+" and "(c, b) : r" |
9efd4c04eaa4
rtranclE, tranclE: tuned statement, added case_names;
wenzelm
parents:
25425
diff
changeset
|
404 |
using assms by cases simp_all |
10980 | 405 |
|
32235
8f9b8d14fc9f
"more standard" argument order of relation composition (op O)
krauss
parents:
32215
diff
changeset
|
406 |
lemma trancl_Int_subset: "[| r \<subseteq> s; (r^+ \<inter> s) O r \<subseteq> s|] ==> r^+ \<subseteq> s" |
22080
7bf8868ab3e4
induction rules for trancl/rtrancl expressed using subsets
paulson
parents:
21589
diff
changeset
|
407 |
apply (rule subsetI) |
26179
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
408 |
apply (rule_tac p = x in PairE) |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
409 |
apply clarify |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
410 |
apply (erule trancl_induct) |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
411 |
apply auto |
22080
7bf8868ab3e4
induction rules for trancl/rtrancl expressed using subsets
paulson
parents:
21589
diff
changeset
|
412 |
done |
7bf8868ab3e4
induction rules for trancl/rtrancl expressed using subsets
paulson
parents:
21589
diff
changeset
|
413 |
|
32235
8f9b8d14fc9f
"more standard" argument order of relation composition (op O)
krauss
parents:
32215
diff
changeset
|
414 |
lemma trancl_unfold: "r^+ = r Un r^+ O r" |
15551 | 415 |
by (auto intro: trancl_into_trancl elim: tranclE) |
416 |
||
26179
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
417 |
text {* Transitivity of @{term "r^+"} *} |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
418 |
lemma trans_trancl [simp]: "trans (r^+)" |
13704
854501b1e957
Transitive closure is now defined inductively as well.
berghofe
parents:
12937
diff
changeset
|
419 |
proof (rule transI) |
854501b1e957
Transitive closure is now defined inductively as well.
berghofe
parents:
12937
diff
changeset
|
420 |
fix x y z |
26179
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
421 |
assume "(x, y) \<in> r^+" |
13704
854501b1e957
Transitive closure is now defined inductively as well.
berghofe
parents:
12937
diff
changeset
|
422 |
assume "(y, z) \<in> r^+" |
26179
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
423 |
then show "(x, z) \<in> r^+" |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
424 |
proof induct |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
425 |
case (base u) |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
426 |
from `(x, y) \<in> r^+` and `(y, u) \<in> r` |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
427 |
show "(x, u) \<in> r^+" .. |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
428 |
next |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
429 |
case (step u v) |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
430 |
from `(x, u) \<in> r^+` and `(u, v) \<in> r` |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
431 |
show "(x, v) \<in> r^+" .. |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
432 |
qed |
13704
854501b1e957
Transitive closure is now defined inductively as well.
berghofe
parents:
12937
diff
changeset
|
433 |
qed |
12691 | 434 |
|
45607 | 435 |
lemmas trancl_trans = trans_trancl [THEN transD] |
12691 | 436 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
437 |
lemma tranclp_trans: |
22262 | 438 |
assumes xy: "r^++ x y" |
439 |
and yz: "r^++ y z" |
|
440 |
shows "r^++ x z" using yz xy |
|
441 |
by induct iprover+ |
|
442 |
||
26179
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
443 |
lemma trancl_id [simp]: "trans r \<Longrightarrow> r^+ = r" |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
444 |
apply auto |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
445 |
apply (erule trancl_induct) |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
446 |
apply assumption |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
447 |
apply (unfold trans_def) |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
448 |
apply blast |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
449 |
done |
19623 | 450 |
|
26179
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
451 |
lemma rtranclp_tranclp_tranclp: |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
452 |
assumes "r^** x y" |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
453 |
shows "!!z. r^++ y z ==> r^++ x z" using assms |
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
454 |
by induct (iprover intro: tranclp_trans)+ |
12691 | 455 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
456 |
lemmas rtrancl_trancl_trancl = rtranclp_tranclp_tranclp [to_set] |
22262 | 457 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
458 |
lemma tranclp_into_tranclp2: "r a b ==> r^++ b c ==> r^++ a c" |
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
459 |
by (erule tranclp_trans [OF tranclp.r_into_trancl]) |
22262 | 460 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
461 |
lemmas trancl_into_trancl2 = tranclp_into_tranclp2 [to_set] |
12691 | 462 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
463 |
lemma tranclp_converseI: "(r^++)^--1 x y ==> (r^--1)^++ x y" |
22262 | 464 |
apply (drule conversepD) |
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
465 |
apply (erule tranclp_induct) |
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
466 |
apply (iprover intro: conversepI tranclp_trans)+ |
12691 | 467 |
done |
468 |
||
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
469 |
lemmas trancl_converseI = tranclp_converseI [to_set] |
22262 | 470 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
471 |
lemma tranclp_converseD: "(r^--1)^++ x y ==> (r^++)^--1 x y" |
22262 | 472 |
apply (rule conversepI) |
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
473 |
apply (erule tranclp_induct) |
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
474 |
apply (iprover dest: conversepD intro: tranclp_trans)+ |
13704
854501b1e957
Transitive closure is now defined inductively as well.
berghofe
parents:
12937
diff
changeset
|
475 |
done |
12691 | 476 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
477 |
lemmas trancl_converseD = tranclp_converseD [to_set] |
22262 | 478 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
479 |
lemma tranclp_converse: "(r^--1)^++ = (r^++)^--1" |
44890
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
nipkow
parents:
43596
diff
changeset
|
480 |
by (fastforce simp add: fun_eq_iff |
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
481 |
intro!: tranclp_converseI dest!: tranclp_converseD) |
22262 | 482 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
483 |
lemmas trancl_converse = tranclp_converse [to_set] |
12691 | 484 |
|
19228 | 485 |
lemma sym_trancl: "sym r ==> sym (r^+)" |
486 |
by (simp only: sym_conv_converse_eq trancl_converse [symmetric]) |
|
487 |
||
34909
a799687944af
Tuned some proofs; nicer case names for some of the induction / cases rules.
berghofe
parents:
33878
diff
changeset
|
488 |
lemma converse_tranclp_induct [consumes 1, case_names base step]: |
22262 | 489 |
assumes major: "r^++ a b" |
490 |
and cases: "!!y. r y b ==> P(y)" |
|
491 |
"!!y z.[| r y z; r^++ z b; P(z) |] ==> P(y)" |
|
18372 | 492 |
shows "P a" |
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
493 |
apply (rule tranclp_induct [OF tranclp_converseI, OF conversepI, OF major]) |
18372 | 494 |
apply (rule cases) |
22262 | 495 |
apply (erule conversepD) |
35216 | 496 |
apply (blast intro: assms dest!: tranclp_converseD) |
18372 | 497 |
done |
12691 | 498 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
499 |
lemmas converse_trancl_induct = converse_tranclp_induct [to_set] |
22262 | 500 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
501 |
lemma tranclpD: "R^++ x y ==> EX z. R x z \<and> R^** z y" |
26179
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
502 |
apply (erule converse_tranclp_induct) |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
503 |
apply auto |
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
504 |
apply (blast intro: rtranclp_trans) |
12691 | 505 |
done |
506 |
||
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
507 |
lemmas tranclD = tranclpD [to_set] |
22262 | 508 |
|
31577 | 509 |
lemma converse_tranclpE: |
510 |
assumes major: "tranclp r x z" |
|
511 |
assumes base: "r x z ==> P" |
|
512 |
assumes step: "\<And> y. [| r x y; tranclp r y z |] ==> P" |
|
513 |
shows P |
|
514 |
proof - |
|
515 |
from tranclpD[OF major] |
|
516 |
obtain y where "r x y" and "rtranclp r y z" by iprover |
|
517 |
from this(2) show P |
|
518 |
proof (cases rule: rtranclp.cases) |
|
519 |
case rtrancl_refl |
|
520 |
with `r x y` base show P by iprover |
|
521 |
next |
|
522 |
case rtrancl_into_rtrancl |
|
523 |
from this have "tranclp r y z" |
|
524 |
by (iprover intro: rtranclp_into_tranclp1) |
|
525 |
with `r x y` step show P by iprover |
|
526 |
qed |
|
527 |
qed |
|
528 |
||
529 |
lemmas converse_tranclE = converse_tranclpE [to_set] |
|
530 |
||
25295
12985023be5e
tranclD2 (tranclD at the other end) + trancl_power
kleing
parents:
23743
diff
changeset
|
531 |
lemma tranclD2: |
12985023be5e
tranclD2 (tranclD at the other end) + trancl_power
kleing
parents:
23743
diff
changeset
|
532 |
"(x, y) \<in> R\<^sup>+ \<Longrightarrow> \<exists>z. (x, z) \<in> R\<^sup>* \<and> (z, y) \<in> R" |
12985023be5e
tranclD2 (tranclD at the other end) + trancl_power
kleing
parents:
23743
diff
changeset
|
533 |
by (blast elim: tranclE intro: trancl_into_rtrancl) |
12985023be5e
tranclD2 (tranclD at the other end) + trancl_power
kleing
parents:
23743
diff
changeset
|
534 |
|
13867 | 535 |
lemma irrefl_tranclI: "r^-1 \<inter> r^* = {} ==> (x, x) \<notin> r^+" |
18372 | 536 |
by (blast elim: tranclE dest: trancl_into_rtrancl) |
12691 | 537 |
|
538 |
lemma irrefl_trancl_rD: "!!X. ALL x. (x, x) \<notin> r^+ ==> (x, y) \<in> r ==> x \<noteq> y" |
|
539 |
by (blast dest: r_into_trancl) |
|
540 |
||
541 |
lemma trancl_subset_Sigma_aux: |
|
542 |
"(a, b) \<in> r^* ==> r \<subseteq> A \<times> A ==> a = b \<or> a \<in> A" |
|
18372 | 543 |
by (induct rule: rtrancl_induct) auto |
12691 | 544 |
|
545 |
lemma trancl_subset_Sigma: "r \<subseteq> A \<times> A ==> r^+ \<subseteq> A \<times> A" |
|
13704
854501b1e957
Transitive closure is now defined inductively as well.
berghofe
parents:
12937
diff
changeset
|
546 |
apply (rule subsetI) |
854501b1e957
Transitive closure is now defined inductively as well.
berghofe
parents:
12937
diff
changeset
|
547 |
apply (simp only: split_tupled_all) |
854501b1e957
Transitive closure is now defined inductively as well.
berghofe
parents:
12937
diff
changeset
|
548 |
apply (erule tranclE) |
26179
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
549 |
apply (blast dest!: trancl_into_rtrancl trancl_subset_Sigma_aux)+ |
12691 | 550 |
done |
10996
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
nipkow
parents:
10980
diff
changeset
|
551 |
|
50616 | 552 |
lemma reflclp_tranclp [simp]: "(r^++)^== = r^**" |
22262 | 553 |
apply (safe intro!: order_antisym) |
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
554 |
apply (erule tranclp_into_rtranclp) |
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
555 |
apply (blast elim: rtranclp.cases dest: rtranclp_into_tranclp1) |
11084 | 556 |
done |
10996
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
nipkow
parents:
10980
diff
changeset
|
557 |
|
50616 | 558 |
lemmas reflcl_trancl [simp] = reflclp_tranclp [to_set] |
22262 | 559 |
|
11090 | 560 |
lemma trancl_reflcl [simp]: "(r^=)^+ = r^*" |
11084 | 561 |
apply safe |
14208 | 562 |
apply (drule trancl_into_rtrancl, simp) |
563 |
apply (erule rtranclE, safe) |
|
564 |
apply (rule r_into_trancl, simp) |
|
11084 | 565 |
apply (rule rtrancl_into_trancl1) |
14208 | 566 |
apply (erule rtrancl_reflcl [THEN equalityD2, THEN subsetD], fast) |
11084 | 567 |
done |
10996
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
nipkow
parents:
10980
diff
changeset
|
568 |
|
45140 | 569 |
lemma rtrancl_trancl_reflcl [code]: "r^* = (r^+)^=" |
570 |
by simp |
|
571 |
||
11090 | 572 |
lemma trancl_empty [simp]: "{}^+ = {}" |
11084 | 573 |
by (auto elim: trancl_induct) |
10996
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
nipkow
parents:
10980
diff
changeset
|
574 |
|
11090 | 575 |
lemma rtrancl_empty [simp]: "{}^* = Id" |
11084 | 576 |
by (rule subst [OF reflcl_trancl]) simp |
10996
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
nipkow
parents:
10980
diff
changeset
|
577 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
578 |
lemma rtranclpD: "R^** a b ==> a = b \<or> a \<noteq> b \<and> R^++ a b" |
50616 | 579 |
by (force simp add: reflclp_tranclp [symmetric] simp del: reflclp_tranclp) |
22262 | 580 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
581 |
lemmas rtranclD = rtranclpD [to_set] |
11084 | 582 |
|
16514 | 583 |
lemma rtrancl_eq_or_trancl: |
584 |
"(x,y) \<in> R\<^sup>* = (x=y \<or> x\<noteq>y \<and> (x,y) \<in> R\<^sup>+)" |
|
585 |
by (fast elim: trancl_into_rtrancl dest: rtranclD) |
|
10996
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
nipkow
parents:
10980
diff
changeset
|
586 |
|
33656
fc1af6753233
a few lemmas for point-free reasoning about transitive closure
krauss
parents:
32901
diff
changeset
|
587 |
lemma trancl_unfold_right: "r^+ = r^* O r" |
fc1af6753233
a few lemmas for point-free reasoning about transitive closure
krauss
parents:
32901
diff
changeset
|
588 |
by (auto dest: tranclD2 intro: rtrancl_into_trancl1) |
fc1af6753233
a few lemmas for point-free reasoning about transitive closure
krauss
parents:
32901
diff
changeset
|
589 |
|
fc1af6753233
a few lemmas for point-free reasoning about transitive closure
krauss
parents:
32901
diff
changeset
|
590 |
lemma trancl_unfold_left: "r^+ = r O r^*" |
fc1af6753233
a few lemmas for point-free reasoning about transitive closure
krauss
parents:
32901
diff
changeset
|
591 |
by (auto dest: tranclD intro: rtrancl_into_trancl2) |
fc1af6753233
a few lemmas for point-free reasoning about transitive closure
krauss
parents:
32901
diff
changeset
|
592 |
|
57178 | 593 |
lemma trancl_insert: |
594 |
"(insert (y, x) r)^+ = r^+ \<union> {(a, b). (a, y) \<in> r^* \<and> (x, b) \<in> r^*}" |
|
595 |
-- {* primitive recursion for @{text trancl} over finite relations *} |
|
596 |
apply (rule equalityI) |
|
597 |
apply (rule subsetI) |
|
598 |
apply (simp only: split_tupled_all) |
|
599 |
apply (erule trancl_induct, blast) |
|
600 |
apply (blast intro: rtrancl_into_trancl1 trancl_into_rtrancl trancl_trans) |
|
601 |
apply (rule subsetI) |
|
602 |
apply (blast intro: trancl_mono rtrancl_mono |
|
603 |
[THEN [2] rev_subsetD] rtrancl_trancl_trancl rtrancl_into_trancl2) |
|
604 |
done |
|
605 |
||
606 |
lemma trancl_insert2: |
|
607 |
"(insert (a,b) r)^+ = r^+ \<union> {(x,y). ((x,a) : r^+ \<or> x=a) \<and> ((b,y) \<in> r^+ \<or> y=b)}" |
|
608 |
by(auto simp add: trancl_insert rtrancl_eq_or_trancl) |
|
609 |
||
610 |
lemma rtrancl_insert: |
|
611 |
"(insert (a,b) r)^* = r^* \<union> {(x,y). (x,a) : r^* \<and> (b,y) \<in> r^*}" |
|
612 |
using trancl_insert[of a b r] |
|
613 |
by(simp add: rtrancl_trancl_reflcl del: reflcl_trancl) blast |
|
614 |
||
33656
fc1af6753233
a few lemmas for point-free reasoning about transitive closure
krauss
parents:
32901
diff
changeset
|
615 |
|
fc1af6753233
a few lemmas for point-free reasoning about transitive closure
krauss
parents:
32901
diff
changeset
|
616 |
text {* Simplifying nested closures *} |
fc1af6753233
a few lemmas for point-free reasoning about transitive closure
krauss
parents:
32901
diff
changeset
|
617 |
|
fc1af6753233
a few lemmas for point-free reasoning about transitive closure
krauss
parents:
32901
diff
changeset
|
618 |
lemma rtrancl_trancl_absorb[simp]: "(R^*)^+ = R^*" |
fc1af6753233
a few lemmas for point-free reasoning about transitive closure
krauss
parents:
32901
diff
changeset
|
619 |
by (simp add: trans_rtrancl) |
fc1af6753233
a few lemmas for point-free reasoning about transitive closure
krauss
parents:
32901
diff
changeset
|
620 |
|
fc1af6753233
a few lemmas for point-free reasoning about transitive closure
krauss
parents:
32901
diff
changeset
|
621 |
lemma trancl_rtrancl_absorb[simp]: "(R^+)^* = R^*" |
fc1af6753233
a few lemmas for point-free reasoning about transitive closure
krauss
parents:
32901
diff
changeset
|
622 |
by (subst reflcl_trancl[symmetric]) simp |
fc1af6753233
a few lemmas for point-free reasoning about transitive closure
krauss
parents:
32901
diff
changeset
|
623 |
|
fc1af6753233
a few lemmas for point-free reasoning about transitive closure
krauss
parents:
32901
diff
changeset
|
624 |
lemma rtrancl_reflcl_absorb[simp]: "(R^*)^= = R^*" |
fc1af6753233
a few lemmas for point-free reasoning about transitive closure
krauss
parents:
32901
diff
changeset
|
625 |
by auto |
fc1af6753233
a few lemmas for point-free reasoning about transitive closure
krauss
parents:
32901
diff
changeset
|
626 |
|
fc1af6753233
a few lemmas for point-free reasoning about transitive closure
krauss
parents:
32901
diff
changeset
|
627 |
|
12691 | 628 |
text {* @{text Domain} and @{text Range} *} |
10996
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
nipkow
parents:
10980
diff
changeset
|
629 |
|
11090 | 630 |
lemma Domain_rtrancl [simp]: "Domain (R^*) = UNIV" |
11084 | 631 |
by blast |
10996
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
nipkow
parents:
10980
diff
changeset
|
632 |
|
11090 | 633 |
lemma Range_rtrancl [simp]: "Range (R^*) = UNIV" |
11084 | 634 |
by blast |
10996
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
nipkow
parents:
10980
diff
changeset
|
635 |
|
11090 | 636 |
lemma rtrancl_Un_subset: "(R^* \<union> S^*) \<subseteq> (R Un S)^*" |
11084 | 637 |
by (rule rtrancl_Un_rtrancl [THEN subst]) fast |
10996
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
nipkow
parents:
10980
diff
changeset
|
638 |
|
11090 | 639 |
lemma in_rtrancl_UnI: "x \<in> R^* \<or> x \<in> S^* ==> x \<in> (R \<union> S)^*" |
11084 | 640 |
by (blast intro: subsetD [OF rtrancl_Un_subset]) |
10996
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
nipkow
parents:
10980
diff
changeset
|
641 |
|
11090 | 642 |
lemma trancl_domain [simp]: "Domain (r^+) = Domain r" |
46752
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents:
46664
diff
changeset
|
643 |
by (unfold Domain_unfold) (blast dest: tranclD) |
10996
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
nipkow
parents:
10980
diff
changeset
|
644 |
|
11090 | 645 |
lemma trancl_range [simp]: "Range (r^+) = Range r" |
46752
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents:
46664
diff
changeset
|
646 |
unfolding Domain_converse [symmetric] by (simp add: trancl_converse [symmetric]) |
10996
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
nipkow
parents:
10980
diff
changeset
|
647 |
|
11115 | 648 |
lemma Not_Domain_rtrancl: |
12691 | 649 |
"x ~: Domain R ==> ((x, y) : R^*) = (x = y)" |
650 |
apply auto |
|
26179
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
651 |
apply (erule rev_mp) |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
652 |
apply (erule rtrancl_induct) |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
653 |
apply auto |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
654 |
done |
11327
cd2c27a23df1
Transitive closure is now defined via "inductive".
berghofe
parents:
11115
diff
changeset
|
655 |
|
29609 | 656 |
lemma trancl_subset_Field2: "r^+ <= Field r \<times> Field r" |
657 |
apply clarify |
|
658 |
apply (erule trancl_induct) |
|
659 |
apply (auto simp add: Field_def) |
|
660 |
done |
|
661 |
||
41987 | 662 |
lemma finite_trancl[simp]: "finite (r^+) = finite r" |
29609 | 663 |
apply auto |
664 |
prefer 2 |
|
665 |
apply (rule trancl_subset_Field2 [THEN finite_subset]) |
|
666 |
apply (rule finite_SigmaI) |
|
667 |
prefer 3 |
|
668 |
apply (blast intro: r_into_trancl' finite_subset) |
|
669 |
apply (auto simp add: finite_Field) |
|
670 |
done |
|
671 |
||
12691 | 672 |
text {* More about converse @{text rtrancl} and @{text trancl}, should |
673 |
be merged with main body. *} |
|
12428
f3033eed309a
setup [trans] rules for calculational Isar reasoning
kleing
parents:
11327
diff
changeset
|
674 |
|
14337
e13731554e50
undid split_comp_eq[simp] because it leads to nontermination together with split_def!
nipkow
parents:
14208
diff
changeset
|
675 |
lemma single_valued_confluent: |
e13731554e50
undid split_comp_eq[simp] because it leads to nontermination together with split_def!
nipkow
parents:
14208
diff
changeset
|
676 |
"\<lbrakk> single_valued r; (x,y) \<in> r^*; (x,z) \<in> r^* \<rbrakk> |
e13731554e50
undid split_comp_eq[simp] because it leads to nontermination together with split_def!
nipkow
parents:
14208
diff
changeset
|
677 |
\<Longrightarrow> (y,z) \<in> r^* \<or> (z,y) \<in> r^*" |
26179
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
678 |
apply (erule rtrancl_induct) |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
679 |
apply simp |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
680 |
apply (erule disjE) |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
681 |
apply (blast elim:converse_rtranclE dest:single_valuedD) |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
682 |
apply(blast intro:rtrancl_trans) |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
683 |
done |
14337
e13731554e50
undid split_comp_eq[simp] because it leads to nontermination together with split_def!
nipkow
parents:
14208
diff
changeset
|
684 |
|
12691 | 685 |
lemma r_r_into_trancl: "(a, b) \<in> R ==> (b, c) \<in> R ==> (a, c) \<in> R^+" |
12428
f3033eed309a
setup [trans] rules for calculational Isar reasoning
kleing
parents:
11327
diff
changeset
|
686 |
by (fast intro: trancl_trans) |
f3033eed309a
setup [trans] rules for calculational Isar reasoning
kleing
parents:
11327
diff
changeset
|
687 |
|
f3033eed309a
setup [trans] rules for calculational Isar reasoning
kleing
parents:
11327
diff
changeset
|
688 |
lemma trancl_into_trancl [rule_format]: |
12691 | 689 |
"(a, b) \<in> r\<^sup>+ ==> (b, c) \<in> r --> (a,c) \<in> r\<^sup>+" |
690 |
apply (erule trancl_induct) |
|
12428
f3033eed309a
setup [trans] rules for calculational Isar reasoning
kleing
parents:
11327
diff
changeset
|
691 |
apply (fast intro: r_r_into_trancl) |
f3033eed309a
setup [trans] rules for calculational Isar reasoning
kleing
parents:
11327
diff
changeset
|
692 |
apply (fast intro: r_r_into_trancl trancl_trans) |
f3033eed309a
setup [trans] rules for calculational Isar reasoning
kleing
parents:
11327
diff
changeset
|
693 |
done |
f3033eed309a
setup [trans] rules for calculational Isar reasoning
kleing
parents:
11327
diff
changeset
|
694 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
695 |
lemma tranclp_rtranclp_tranclp: |
22262 | 696 |
"r\<^sup>+\<^sup>+ a b ==> r\<^sup>*\<^sup>* b c ==> r\<^sup>+\<^sup>+ a c" |
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
697 |
apply (drule tranclpD) |
26179
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
698 |
apply (elim exE conjE) |
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
699 |
apply (drule rtranclp_trans, assumption) |
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
700 |
apply (drule rtranclp_into_tranclp2, assumption, assumption) |
12428
f3033eed309a
setup [trans] rules for calculational Isar reasoning
kleing
parents:
11327
diff
changeset
|
701 |
done |
f3033eed309a
setup [trans] rules for calculational Isar reasoning
kleing
parents:
11327
diff
changeset
|
702 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
703 |
lemmas trancl_rtrancl_trancl = tranclp_rtranclp_tranclp [to_set] |
22262 | 704 |
|
12691 | 705 |
lemmas transitive_closure_trans [trans] = |
706 |
r_r_into_trancl trancl_trans rtrancl_trans |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
707 |
trancl.trancl_into_trancl trancl_into_trancl2 |
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
708 |
rtrancl.rtrancl_into_rtrancl converse_rtrancl_into_rtrancl |
12691 | 709 |
rtrancl_trancl_trancl trancl_rtrancl_trancl |
12428
f3033eed309a
setup [trans] rules for calculational Isar reasoning
kleing
parents:
11327
diff
changeset
|
710 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
711 |
lemmas transitive_closurep_trans' [trans] = |
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
712 |
tranclp_trans rtranclp_trans |
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
713 |
tranclp.trancl_into_trancl tranclp_into_tranclp2 |
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
714 |
rtranclp.rtrancl_into_rtrancl converse_rtranclp_into_rtranclp |
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
715 |
rtranclp_tranclp_tranclp tranclp_rtranclp_tranclp |
22262 | 716 |
|
12428
f3033eed309a
setup [trans] rules for calculational Isar reasoning
kleing
parents:
11327
diff
changeset
|
717 |
declare trancl_into_rtrancl [elim] |
11327
cd2c27a23df1
Transitive closure is now defined via "inductive".
berghofe
parents:
11115
diff
changeset
|
718 |
|
30954
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
719 |
subsection {* The power operation on relations *} |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
720 |
|
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
721 |
text {* @{text "R ^^ n = R O ... O R"}, the n-fold composition of @{text R} *} |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
722 |
|
30971 | 723 |
overloading |
724 |
relpow == "compow :: nat \<Rightarrow> ('a \<times> 'a) set \<Rightarrow> ('a \<times> 'a) set" |
|
47202 | 725 |
relpowp == "compow :: nat \<Rightarrow> ('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> ('a \<Rightarrow> 'a \<Rightarrow> bool)" |
30971 | 726 |
begin |
30954
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
727 |
|
55575
a5e33e18fb5c
moved 'primrec' up (for real this time) and removed temporary 'old_primrec'
blanchet
parents:
55534
diff
changeset
|
728 |
primrec relpow :: "nat \<Rightarrow> ('a \<times> 'a) set \<Rightarrow> ('a \<times> 'a) set" where |
30971 | 729 |
"relpow 0 R = Id" |
32235
8f9b8d14fc9f
"more standard" argument order of relation composition (op O)
krauss
parents:
32215
diff
changeset
|
730 |
| "relpow (Suc n) R = (R ^^ n) O R" |
30954
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
731 |
|
55575
a5e33e18fb5c
moved 'primrec' up (for real this time) and removed temporary 'old_primrec'
blanchet
parents:
55534
diff
changeset
|
732 |
primrec relpowp :: "nat \<Rightarrow> ('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> ('a \<Rightarrow> 'a \<Rightarrow> bool)" where |
47202 | 733 |
"relpowp 0 R = HOL.eq" |
734 |
| "relpowp (Suc n) R = (R ^^ n) OO R" |
|
735 |
||
30971 | 736 |
end |
30954
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
737 |
|
47202 | 738 |
lemma relpowp_relpow_eq [pred_set_conv]: |
739 |
fixes R :: "'a rel" |
|
740 |
shows "(\<lambda>x y. (x, y) \<in> R) ^^ n = (\<lambda>x y. (x, y) \<in> R ^^ n)" |
|
47433
07f4bf913230
renamed "rel_comp" to "relcomp" (to be consistent with, e.g., "relpow")
griff
parents:
47202
diff
changeset
|
741 |
by (induct n) (simp_all add: relcompp_relcomp_eq) |
47202 | 742 |
|
46360
5cb81e3fa799
adding code generation for relpow by copying the ideas for code generation of funpow
bulwahn
parents:
46347
diff
changeset
|
743 |
text {* for code generation *} |
5cb81e3fa799
adding code generation for relpow by copying the ideas for code generation of funpow
bulwahn
parents:
46347
diff
changeset
|
744 |
|
5cb81e3fa799
adding code generation for relpow by copying the ideas for code generation of funpow
bulwahn
parents:
46347
diff
changeset
|
745 |
definition relpow :: "nat \<Rightarrow> ('a \<times> 'a) set \<Rightarrow> ('a \<times> 'a) set" where |
5cb81e3fa799
adding code generation for relpow by copying the ideas for code generation of funpow
bulwahn
parents:
46347
diff
changeset
|
746 |
relpow_code_def [code_abbrev]: "relpow = compow" |
5cb81e3fa799
adding code generation for relpow by copying the ideas for code generation of funpow
bulwahn
parents:
46347
diff
changeset
|
747 |
|
47492
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
748 |
definition relpowp :: "nat \<Rightarrow> ('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> ('a \<Rightarrow> 'a \<Rightarrow> bool)" where |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
749 |
relpowp_code_def [code_abbrev]: "relpowp = compow" |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
750 |
|
46360
5cb81e3fa799
adding code generation for relpow by copying the ideas for code generation of funpow
bulwahn
parents:
46347
diff
changeset
|
751 |
lemma [code]: |
5cb81e3fa799
adding code generation for relpow by copying the ideas for code generation of funpow
bulwahn
parents:
46347
diff
changeset
|
752 |
"relpow (Suc n) R = (relpow n R) O R" |
5cb81e3fa799
adding code generation for relpow by copying the ideas for code generation of funpow
bulwahn
parents:
46347
diff
changeset
|
753 |
"relpow 0 R = Id" |
5cb81e3fa799
adding code generation for relpow by copying the ideas for code generation of funpow
bulwahn
parents:
46347
diff
changeset
|
754 |
by (simp_all add: relpow_code_def) |
5cb81e3fa799
adding code generation for relpow by copying the ideas for code generation of funpow
bulwahn
parents:
46347
diff
changeset
|
755 |
|
47492
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
756 |
lemma [code]: |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
757 |
"relpowp (Suc n) R = (R ^^ n) OO R" |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
758 |
"relpowp 0 R = HOL.eq" |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
759 |
by (simp_all add: relpowp_code_def) |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
760 |
|
46360
5cb81e3fa799
adding code generation for relpow by copying the ideas for code generation of funpow
bulwahn
parents:
46347
diff
changeset
|
761 |
hide_const (open) relpow |
47492
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
762 |
hide_const (open) relpowp |
46360
5cb81e3fa799
adding code generation for relpow by copying the ideas for code generation of funpow
bulwahn
parents:
46347
diff
changeset
|
763 |
|
46362 | 764 |
lemma relpow_1 [simp]: |
30971 | 765 |
fixes R :: "('a \<times> 'a) set" |
766 |
shows "R ^^ 1 = R" |
|
30954
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
767 |
by simp |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
768 |
|
47492
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
769 |
lemma relpowp_1 [simp]: |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
770 |
fixes P :: "'a \<Rightarrow> 'a \<Rightarrow> bool" |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
771 |
shows "P ^^ 1 = P" |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
772 |
by (fact relpow_1 [to_pred]) |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
773 |
|
46362 | 774 |
lemma relpow_0_I: |
30954
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
775 |
"(x, x) \<in> R ^^ 0" |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
776 |
by simp |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
777 |
|
47492
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
778 |
lemma relpowp_0_I: |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
779 |
"(P ^^ 0) x x" |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
780 |
by (fact relpow_0_I [to_pred]) |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
781 |
|
46362 | 782 |
lemma relpow_Suc_I: |
30954
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
783 |
"(x, y) \<in> R ^^ n \<Longrightarrow> (y, z) \<in> R \<Longrightarrow> (x, z) \<in> R ^^ Suc n" |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
784 |
by auto |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
785 |
|
47492
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
786 |
lemma relpowp_Suc_I: |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
787 |
"(P ^^ n) x y \<Longrightarrow> P y z \<Longrightarrow> (P ^^ Suc n) x z" |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
788 |
by (fact relpow_Suc_I [to_pred]) |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
789 |
|
46362 | 790 |
lemma relpow_Suc_I2: |
30954
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
791 |
"(x, y) \<in> R \<Longrightarrow> (y, z) \<in> R ^^ n \<Longrightarrow> (x, z) \<in> R ^^ Suc n" |
44890
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
nipkow
parents:
43596
diff
changeset
|
792 |
by (induct n arbitrary: z) (simp, fastforce) |
30954
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
793 |
|
47492
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
794 |
lemma relpowp_Suc_I2: |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
795 |
"P x y \<Longrightarrow> (P ^^ n) y z \<Longrightarrow> (P ^^ Suc n) x z" |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
796 |
by (fact relpow_Suc_I2 [to_pred]) |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
797 |
|
46362 | 798 |
lemma relpow_0_E: |
30954
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
799 |
"(x, y) \<in> R ^^ 0 \<Longrightarrow> (x = y \<Longrightarrow> P) \<Longrightarrow> P" |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
800 |
by simp |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
801 |
|
47492
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
802 |
lemma relpowp_0_E: |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
803 |
"(P ^^ 0) x y \<Longrightarrow> (x = y \<Longrightarrow> Q) \<Longrightarrow> Q" |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
804 |
by (fact relpow_0_E [to_pred]) |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
805 |
|
46362 | 806 |
lemma relpow_Suc_E: |
30954
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
807 |
"(x, z) \<in> R ^^ Suc n \<Longrightarrow> (\<And>y. (x, y) \<in> R ^^ n \<Longrightarrow> (y, z) \<in> R \<Longrightarrow> P) \<Longrightarrow> P" |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
808 |
by auto |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
809 |
|
47492
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
810 |
lemma relpowp_Suc_E: |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
811 |
"(P ^^ Suc n) x z \<Longrightarrow> (\<And>y. (P ^^ n) x y \<Longrightarrow> P y z \<Longrightarrow> Q) \<Longrightarrow> Q" |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
812 |
by (fact relpow_Suc_E [to_pred]) |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
813 |
|
46362 | 814 |
lemma relpow_E: |
30954
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
815 |
"(x, z) \<in> R ^^ n \<Longrightarrow> (n = 0 \<Longrightarrow> x = z \<Longrightarrow> P) |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
816 |
\<Longrightarrow> (\<And>y m. n = Suc m \<Longrightarrow> (x, y) \<in> R ^^ m \<Longrightarrow> (y, z) \<in> R \<Longrightarrow> P) |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
817 |
\<Longrightarrow> P" |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
818 |
by (cases n) auto |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
819 |
|
47492
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
820 |
lemma relpowp_E: |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
821 |
"(P ^^ n) x z \<Longrightarrow> (n = 0 \<Longrightarrow> x = z \<Longrightarrow> Q) |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
822 |
\<Longrightarrow> (\<And>y m. n = Suc m \<Longrightarrow> (P ^^ m) x y \<Longrightarrow> P y z \<Longrightarrow> Q) |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
823 |
\<Longrightarrow> Q" |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
824 |
by (fact relpow_E [to_pred]) |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
825 |
|
46362 | 826 |
lemma relpow_Suc_D2: |
30954
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
827 |
"(x, z) \<in> R ^^ Suc n \<Longrightarrow> (\<exists>y. (x, y) \<in> R \<and> (y, z) \<in> R ^^ n)" |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
828 |
apply (induct n arbitrary: x z) |
46362 | 829 |
apply (blast intro: relpow_0_I elim: relpow_0_E relpow_Suc_E) |
830 |
apply (blast intro: relpow_Suc_I elim: relpow_0_E relpow_Suc_E) |
|
30954
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
831 |
done |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
832 |
|
47492
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
833 |
lemma relpowp_Suc_D2: |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
834 |
"(P ^^ Suc n) x z \<Longrightarrow> \<exists>y. P x y \<and> (P ^^ n) y z" |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
835 |
by (fact relpow_Suc_D2 [to_pred]) |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
836 |
|
46362 | 837 |
lemma relpow_Suc_E2: |
30954
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
838 |
"(x, z) \<in> R ^^ Suc n \<Longrightarrow> (\<And>y. (x, y) \<in> R \<Longrightarrow> (y, z) \<in> R ^^ n \<Longrightarrow> P) \<Longrightarrow> P" |
46362 | 839 |
by (blast dest: relpow_Suc_D2) |
30954
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
840 |
|
47492
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
841 |
lemma relpowp_Suc_E2: |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
842 |
"(P ^^ Suc n) x z \<Longrightarrow> (\<And>y. P x y \<Longrightarrow> (P ^^ n) y z \<Longrightarrow> Q) \<Longrightarrow> Q" |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
843 |
by (fact relpow_Suc_E2 [to_pred]) |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
844 |
|
46362 | 845 |
lemma relpow_Suc_D2': |
30954
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
846 |
"\<forall>x y z. (x, y) \<in> R ^^ n \<and> (y, z) \<in> R \<longrightarrow> (\<exists>w. (x, w) \<in> R \<and> (w, z) \<in> R ^^ n)" |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
847 |
by (induct n) (simp_all, blast) |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
848 |
|
47492
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
849 |
lemma relpowp_Suc_D2': |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
850 |
"\<forall>x y z. (P ^^ n) x y \<and> P y z \<longrightarrow> (\<exists>w. P x w \<and> (P ^^ n) w z)" |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
851 |
by (fact relpow_Suc_D2' [to_pred]) |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
852 |
|
46362 | 853 |
lemma relpow_E2: |
30954
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
854 |
"(x, z) \<in> R ^^ n \<Longrightarrow> (n = 0 \<Longrightarrow> x = z \<Longrightarrow> P) |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
855 |
\<Longrightarrow> (\<And>y m. n = Suc m \<Longrightarrow> (x, y) \<in> R \<Longrightarrow> (y, z) \<in> R ^^ m \<Longrightarrow> P) |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
856 |
\<Longrightarrow> P" |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
857 |
apply (cases n, simp) |
55417
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
blanchet
parents:
54412
diff
changeset
|
858 |
apply (rename_tac nat) |
46362 | 859 |
apply (cut_tac n=nat and R=R in relpow_Suc_D2', simp, blast) |
30954
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
860 |
done |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
861 |
|
47492
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
862 |
lemma relpowp_E2: |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
863 |
"(P ^^ n) x z \<Longrightarrow> (n = 0 \<Longrightarrow> x = z \<Longrightarrow> Q) |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
864 |
\<Longrightarrow> (\<And>y m. n = Suc m \<Longrightarrow> P x y \<Longrightarrow> (P ^^ m) y z \<Longrightarrow> Q) |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
865 |
\<Longrightarrow> Q" |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
866 |
by (fact relpow_E2 [to_pred]) |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
867 |
|
46362 | 868 |
lemma relpow_add: "R ^^ (m+n) = R^^m O R^^n" |
45976 | 869 |
by (induct n) auto |
31351 | 870 |
|
47492
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
871 |
lemma relpowp_add: "P ^^ (m + n) = P ^^ m OO P ^^ n" |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
872 |
by (fact relpow_add [to_pred]) |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
873 |
|
46362 | 874 |
lemma relpow_commute: "R O R ^^ n = R ^^ n O R" |
45976 | 875 |
by (induct n) (simp, simp add: O_assoc [symmetric]) |
31970
ccaadfcf6941
move rel_pow_commute: "R O R ^^ n = R ^^ n O R" to Transitive_Closure
krauss
parents:
31690
diff
changeset
|
876 |
|
47492
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
877 |
lemma relpowp_commute: "P OO P ^^ n = P ^^ n OO P" |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
878 |
by (fact relpow_commute [to_pred]) |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
879 |
|
46362 | 880 |
lemma relpow_empty: |
45153 | 881 |
"0 < n \<Longrightarrow> ({} :: ('a \<times> 'a) set) ^^ n = {}" |
882 |
by (cases n) auto |
|
45116
f947eeef6b6f
adding lemma about rel_pow in Transitive_Closure for executable equation of the (refl) transitive closure
bulwahn
parents:
44921
diff
changeset
|
883 |
|
47492
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
884 |
lemma relpowp_bot: |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
885 |
"0 < n \<Longrightarrow> (\<bottom> :: 'a \<Rightarrow> 'a \<Rightarrow> bool) ^^ n = \<bottom>" |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
886 |
by (fact relpow_empty [to_pred]) |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
887 |
|
46362 | 888 |
lemma rtrancl_imp_UN_relpow: |
30954
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
889 |
assumes "p \<in> R^*" |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
890 |
shows "p \<in> (\<Union>n. R ^^ n)" |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
891 |
proof (cases p) |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
892 |
case (Pair x y) |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
893 |
with assms have "(x, y) \<in> R^*" by simp |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
894 |
then have "(x, y) \<in> (\<Union>n. R ^^ n)" proof induct |
46362 | 895 |
case base show ?case by (blast intro: relpow_0_I) |
30954
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
896 |
next |
46362 | 897 |
case step then show ?case by (blast intro: relpow_Suc_I) |
30954
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
898 |
qed |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
899 |
with Pair show ?thesis by simp |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
900 |
qed |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
901 |
|
47492
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
902 |
lemma rtranclp_imp_Sup_relpowp: |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
903 |
assumes "(P^**) x y" |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
904 |
shows "(\<Squnion>n. P ^^ n) x y" |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
905 |
using assms and rtrancl_imp_UN_relpow [to_pred] by blast |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
906 |
|
46362 | 907 |
lemma relpow_imp_rtrancl: |
30954
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
908 |
assumes "p \<in> R ^^ n" |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
909 |
shows "p \<in> R^*" |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
910 |
proof (cases p) |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
911 |
case (Pair x y) |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
912 |
with assms have "(x, y) \<in> R ^^ n" by simp |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
913 |
then have "(x, y) \<in> R^*" proof (induct n arbitrary: x y) |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
914 |
case 0 then show ?case by simp |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
915 |
next |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
916 |
case Suc then show ?case |
46362 | 917 |
by (blast elim: relpow_Suc_E intro: rtrancl_into_rtrancl) |
30954
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
918 |
qed |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
919 |
with Pair show ?thesis by simp |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
920 |
qed |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
921 |
|
47492
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
922 |
lemma relpowp_imp_rtranclp: |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
923 |
assumes "(P ^^ n) x y" |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
924 |
shows "(P^**) x y" |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
925 |
using assms and relpow_imp_rtrancl [to_pred] by blast |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
926 |
|
46362 | 927 |
lemma rtrancl_is_UN_relpow: |
30954
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
928 |
"R^* = (\<Union>n. R ^^ n)" |
46362 | 929 |
by (blast intro: rtrancl_imp_UN_relpow relpow_imp_rtrancl) |
30954
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
930 |
|
47492
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
931 |
lemma rtranclp_is_Sup_relpowp: |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
932 |
"P^** = (\<Squnion>n. P ^^ n)" |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
933 |
using rtrancl_is_UN_relpow [to_pred, of P] by auto |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
934 |
|
30954
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
935 |
lemma rtrancl_power: |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
936 |
"p \<in> R^* \<longleftrightarrow> (\<exists>n. p \<in> R ^^ n)" |
46362 | 937 |
by (simp add: rtrancl_is_UN_relpow) |
30954
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
938 |
|
47492
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
939 |
lemma rtranclp_power: |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
940 |
"(P^**) x y \<longleftrightarrow> (\<exists>n. (P ^^ n) x y)" |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
941 |
by (simp add: rtranclp_is_Sup_relpowp) |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
942 |
|
30954
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
943 |
lemma trancl_power: |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
944 |
"p \<in> R^+ \<longleftrightarrow> (\<exists>n > 0. p \<in> R ^^ n)" |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
945 |
apply (cases p) |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
946 |
apply simp |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
947 |
apply (rule iffI) |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
948 |
apply (drule tranclD2) |
46362 | 949 |
apply (clarsimp simp: rtrancl_is_UN_relpow) |
30971 | 950 |
apply (rule_tac x="Suc n" in exI) |
47433
07f4bf913230
renamed "rel_comp" to "relcomp" (to be consistent with, e.g., "relpow")
griff
parents:
47202
diff
changeset
|
951 |
apply (clarsimp simp: relcomp_unfold) |
44890
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
nipkow
parents:
43596
diff
changeset
|
952 |
apply fastforce |
30954
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
953 |
apply clarsimp |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
954 |
apply (case_tac n, simp) |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
955 |
apply clarsimp |
46362 | 956 |
apply (drule relpow_imp_rtrancl) |
30954
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
957 |
apply (drule rtrancl_into_trancl1) apply auto |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
958 |
done |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
959 |
|
47492
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
960 |
lemma tranclp_power: |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
961 |
"(P^++) x y \<longleftrightarrow> (\<exists>n > 0. (P ^^ n) x y)" |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
962 |
using trancl_power [to_pred, of P "(x, y)"] by simp |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
963 |
|
46362 | 964 |
lemma rtrancl_imp_relpow: |
30954
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
965 |
"p \<in> R^* \<Longrightarrow> \<exists>n. p \<in> R ^^ n" |
46362 | 966 |
by (auto dest: rtrancl_imp_UN_relpow) |
30954
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
967 |
|
47492
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
968 |
lemma rtranclp_imp_relpowp: |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
969 |
"(P^**) x y \<Longrightarrow> \<exists>n. (P ^^ n) x y" |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
970 |
by (auto dest: rtranclp_imp_Sup_relpowp) |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
971 |
|
41987 | 972 |
text{* By Sternagel/Thiemann: *} |
46362 | 973 |
lemma relpow_fun_conv: |
41987 | 974 |
"((a,b) \<in> R ^^ n) = (\<exists>f. f 0 = a \<and> f n = b \<and> (\<forall>i<n. (f i, f(Suc i)) \<in> R))" |
975 |
proof (induct n arbitrary: b) |
|
976 |
case 0 show ?case by auto |
|
977 |
next |
|
978 |
case (Suc n) |
|
979 |
show ?case |
|
47433
07f4bf913230
renamed "rel_comp" to "relcomp" (to be consistent with, e.g., "relpow")
griff
parents:
47202
diff
changeset
|
980 |
proof (simp add: relcomp_unfold Suc) |
41987 | 981 |
show "(\<exists>y. (\<exists>f. f 0 = a \<and> f n = y \<and> (\<forall>i<n. (f i,f(Suc i)) \<in> R)) \<and> (y,b) \<in> R) |
982 |
= (\<exists>f. f 0 = a \<and> f(Suc n) = b \<and> (\<forall>i<Suc n. (f i, f (Suc i)) \<in> R))" |
|
983 |
(is "?l = ?r") |
|
984 |
proof |
|
985 |
assume ?l |
|
986 |
then obtain c f where 1: "f 0 = a" "f n = c" "\<And>i. i < n \<Longrightarrow> (f i, f (Suc i)) \<in> R" "(c,b) \<in> R" by auto |
|
987 |
let ?g = "\<lambda> m. if m = Suc n then b else f m" |
|
988 |
show ?r by (rule exI[of _ ?g], simp add: 1) |
|
989 |
next |
|
990 |
assume ?r |
|
991 |
then obtain f where 1: "f 0 = a" "b = f (Suc n)" "\<And>i. i < Suc n \<Longrightarrow> (f i, f (Suc i)) \<in> R" by auto |
|
992 |
show ?l by (rule exI[of _ "f n"], rule conjI, rule exI[of _ f], insert 1, auto) |
|
993 |
qed |
|
994 |
qed |
|
995 |
qed |
|
996 |
||
47492
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
997 |
lemma relpowp_fun_conv: |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
998 |
"(P ^^ n) x y \<longleftrightarrow> (\<exists>f. f 0 = x \<and> f n = y \<and> (\<forall>i<n. P (f i) (f (Suc i))))" |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
999 |
by (fact relpow_fun_conv [to_pred]) |
2631a12fb2d1
duplicate "relpow" facts for "relpowp" (to emphasize that both worlds exist and obtain better search results with "find_theorems")
Christian Sternagel
parents:
47433
diff
changeset
|
1000 |
|
46362 | 1001 |
lemma relpow_finite_bounded1: |
41987 | 1002 |
assumes "finite(R :: ('a*'a)set)" and "k>0" |
1003 |
shows "R^^k \<subseteq> (UN n:{n. 0<n & n <= card R}. R^^n)" (is "_ \<subseteq> ?r") |
|
1004 |
proof- |
|
1005 |
{ fix a b k |
|
1006 |
have "(a,b) : R^^(Suc k) \<Longrightarrow> EX n. 0<n & n <= card R & (a,b) : R^^n" |
|
1007 |
proof(induct k arbitrary: b) |
|
1008 |
case 0 |
|
1009 |
hence "R \<noteq> {}" by auto |
|
1010 |
with card_0_eq[OF `finite R`] have "card R >= Suc 0" by auto |
|
1011 |
thus ?case using 0 by force |
|
1012 |
next |
|
1013 |
case (Suc k) |
|
1014 |
then obtain a' where "(a,a') : R^^(Suc k)" and "(a',b) : R" by auto |
|
1015 |
from Suc(1)[OF `(a,a') : R^^(Suc k)`] |
|
1016 |
obtain n where "n \<le> card R" and "(a,a') \<in> R ^^ n" by auto |
|
1017 |
have "(a,b) : R^^(Suc n)" using `(a,a') \<in> R^^n` and `(a',b)\<in> R` by auto |
|
1018 |
{ assume "n < card R" |
|
1019 |
hence ?case using `(a,b): R^^(Suc n)` Suc_leI[OF `n < card R`] by blast |
|
1020 |
} moreover |
|
1021 |
{ assume "n = card R" |
|
46362 | 1022 |
from `(a,b) \<in> R ^^ (Suc n)`[unfolded relpow_fun_conv] |
41987 | 1023 |
obtain f where "f 0 = a" and "f(Suc n) = b" |
1024 |
and steps: "\<And>i. i <= n \<Longrightarrow> (f i, f (Suc i)) \<in> R" by auto |
|
1025 |
let ?p = "%i. (f i, f(Suc i))" |
|
1026 |
let ?N = "{i. i \<le> n}" |
|
1027 |
have "?p ` ?N <= R" using steps by auto |
|
1028 |
from card_mono[OF assms(1) this] |
|
1029 |
have "card(?p ` ?N) <= card R" . |
|
1030 |
also have "\<dots> < card ?N" using `n = card R` by simp |
|
1031 |
finally have "~ inj_on ?p ?N" by(rule pigeonhole) |
|
1032 |
then obtain i j where i: "i <= n" and j: "j <= n" and ij: "i \<noteq> j" and |
|
1033 |
pij: "?p i = ?p j" by(auto simp: inj_on_def) |
|
1034 |
let ?i = "min i j" let ?j = "max i j" |
|
1035 |
have i: "?i <= n" and j: "?j <= n" and pij: "?p ?i = ?p ?j" |
|
1036 |
and ij: "?i < ?j" |
|
1037 |
using i j ij pij unfolding min_def max_def by auto |
|
1038 |
from i j pij ij obtain i j where i: "i<=n" and j: "j<=n" and ij: "i<j" |
|
1039 |
and pij: "?p i = ?p j" by blast |
|
1040 |
let ?g = "\<lambda> l. if l \<le> i then f l else f (l + (j - i))" |
|
1041 |
let ?n = "Suc(n - (j - i))" |
|
46362 | 1042 |
have abl: "(a,b) \<in> R ^^ ?n" unfolding relpow_fun_conv |
41987 | 1043 |
proof (rule exI[of _ ?g], intro conjI impI allI) |
1044 |
show "?g ?n = b" using `f(Suc n) = b` j ij by auto |
|
1045 |
next |
|
1046 |
fix k assume "k < ?n" |
|
1047 |
show "(?g k, ?g (Suc k)) \<in> R" |
|
1048 |
proof (cases "k < i") |
|
1049 |
case True |
|
1050 |
with i have "k <= n" by auto |
|
1051 |
from steps[OF this] show ?thesis using True by simp |
|
1052 |
next |
|
1053 |
case False |
|
1054 |
hence "i \<le> k" by auto |
|
1055 |
show ?thesis |
|
1056 |
proof (cases "k = i") |
|
1057 |
case True |
|
1058 |
thus ?thesis using ij pij steps[OF i] by simp |
|
1059 |
next |
|
1060 |
case False |
|
1061 |
with `i \<le> k` have "i < k" by auto |
|
1062 |
hence small: "k + (j - i) <= n" using `k<?n` by arith |
|
1063 |
show ?thesis using steps[OF small] `i<k` by auto |
|
1064 |
qed |
|
1065 |
qed |
|
1066 |
qed (simp add: `f 0 = a`) |
|
1067 |
moreover have "?n <= n" using i j ij by arith |
|
1068 |
ultimately have ?case using `n = card R` by blast |
|
1069 |
} |
|
1070 |
ultimately show ?case using `n \<le> card R` by force |
|
1071 |
qed |
|
1072 |
} |
|
1073 |
thus ?thesis using gr0_implies_Suc[OF `k>0`] by auto |
|
1074 |
qed |
|
1075 |
||
46362 | 1076 |
lemma relpow_finite_bounded: |
41987 | 1077 |
assumes "finite(R :: ('a*'a)set)" |
1078 |
shows "R^^k \<subseteq> (UN n:{n. n <= card R}. R^^n)" |
|
1079 |
apply(cases k) |
|
1080 |
apply force |
|
46362 | 1081 |
using relpow_finite_bounded1[OF assms, of k] by auto |
41987 | 1082 |
|
46362 | 1083 |
lemma rtrancl_finite_eq_relpow: |
41987 | 1084 |
"finite R \<Longrightarrow> R^* = (UN n : {n. n <= card R}. R^^n)" |
46362 | 1085 |
by(fastforce simp: rtrancl_power dest: relpow_finite_bounded) |
41987 | 1086 |
|
46362 | 1087 |
lemma trancl_finite_eq_relpow: |
41987 | 1088 |
"finite R \<Longrightarrow> R^+ = (UN n : {n. 0 < n & n <= card R}. R^^n)" |
1089 |
apply(auto simp add: trancl_power) |
|
46362 | 1090 |
apply(auto dest: relpow_finite_bounded1) |
41987 | 1091 |
done |
1092 |
||
47433
07f4bf913230
renamed "rel_comp" to "relcomp" (to be consistent with, e.g., "relpow")
griff
parents:
47202
diff
changeset
|
1093 |
lemma finite_relcomp[simp,intro]: |
41987 | 1094 |
assumes "finite R" and "finite S" |
1095 |
shows "finite(R O S)" |
|
1096 |
proof- |
|
1097 |
have "R O S = (UN (x,y) : R. \<Union>((%(u,v). if u=y then {(x,v)} else {}) ` S))" |
|
1098 |
by(force simp add: split_def) |
|
1099 |
thus ?thesis using assms by(clarsimp) |
|
1100 |
qed |
|
1101 |
||
1102 |
lemma finite_relpow[simp,intro]: |
|
1103 |
assumes "finite(R :: ('a*'a)set)" shows "n>0 \<Longrightarrow> finite(R^^n)" |
|
1104 |
apply(induct n) |
|
1105 |
apply simp |
|
1106 |
apply(case_tac n) |
|
1107 |
apply(simp_all add: assms) |
|
1108 |
done |
|
1109 |
||
46362 | 1110 |
lemma single_valued_relpow: |
30954
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
1111 |
fixes R :: "('a * 'a) set" |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
1112 |
shows "single_valued R \<Longrightarrow> single_valued (R ^^ n)" |
41987 | 1113 |
apply (induct n arbitrary: R) |
1114 |
apply simp_all |
|
1115 |
apply (rule single_valuedI) |
|
46362 | 1116 |
apply (fast dest: single_valuedD elim: relpow_Suc_E) |
41987 | 1117 |
done |
15551 | 1118 |
|
45140 | 1119 |
|
1120 |
subsection {* Bounded transitive closure *} |
|
1121 |
||
1122 |
definition ntrancl :: "nat \<Rightarrow> ('a \<times> 'a) set \<Rightarrow> ('a \<times> 'a) set" |
|
1123 |
where |
|
1124 |
"ntrancl n R = (\<Union>i\<in>{i. 0 < i \<and> i \<le> Suc n}. R ^^ i)" |
|
1125 |
||
1126 |
lemma ntrancl_Zero [simp, code]: |
|
1127 |
"ntrancl 0 R = R" |
|
1128 |
proof |
|
1129 |
show "R \<subseteq> ntrancl 0 R" |
|
1130 |
unfolding ntrancl_def by fastforce |
|
1131 |
next |
|
1132 |
{ |
|
1133 |
fix i have "0 < i \<and> i \<le> Suc 0 \<longleftrightarrow> i = 1" by auto |
|
1134 |
} |
|
1135 |
from this show "ntrancl 0 R \<le> R" |
|
1136 |
unfolding ntrancl_def by auto |
|
1137 |
qed |
|
1138 |
||
46347
54870ad19af4
new code equation for ntrancl that allows computation of the transitive closure of sets on infinite types as well
bulwahn
parents:
46127
diff
changeset
|
1139 |
lemma ntrancl_Suc [simp]: |
45140 | 1140 |
"ntrancl (Suc n) R = ntrancl n R O (Id \<union> R)" |
1141 |
proof |
|
1142 |
{ |
|
1143 |
fix a b |
|
1144 |
assume "(a, b) \<in> ntrancl (Suc n) R" |
|
1145 |
from this obtain i where "0 < i" "i \<le> Suc (Suc n)" "(a, b) \<in> R ^^ i" |
|
1146 |
unfolding ntrancl_def by auto |
|
1147 |
have "(a, b) \<in> ntrancl n R O (Id \<union> R)" |
|
1148 |
proof (cases "i = 1") |
|
1149 |
case True |
|
1150 |
from this `(a, b) \<in> R ^^ i` show ?thesis |
|
1151 |
unfolding ntrancl_def by auto |
|
1152 |
next |
|
1153 |
case False |
|
1154 |
from this `0 < i` obtain j where j: "i = Suc j" "0 < j" |
|
1155 |
by (cases i) auto |
|
1156 |
from this `(a, b) \<in> R ^^ i` obtain c where c1: "(a, c) \<in> R ^^ j" and c2:"(c, b) \<in> R" |
|
1157 |
by auto |
|
1158 |
from c1 j `i \<le> Suc (Suc n)` have "(a, c) \<in> ntrancl n R" |
|
1159 |
unfolding ntrancl_def by fastforce |
|
1160 |
from this c2 show ?thesis by fastforce |
|
1161 |
qed |
|
1162 |
} |
|
1163 |
from this show "ntrancl (Suc n) R \<subseteq> ntrancl n R O (Id \<union> R)" |
|
1164 |
by auto |
|
1165 |
next |
|
1166 |
show "ntrancl n R O (Id \<union> R) \<subseteq> ntrancl (Suc n) R" |
|
1167 |
unfolding ntrancl_def by fastforce |
|
1168 |
qed |
|
1169 |
||
46347
54870ad19af4
new code equation for ntrancl that allows computation of the transitive closure of sets on infinite types as well
bulwahn
parents:
46127
diff
changeset
|
1170 |
lemma [code]: |
54870ad19af4
new code equation for ntrancl that allows computation of the transitive closure of sets on infinite types as well
bulwahn
parents:
46127
diff
changeset
|
1171 |
"ntrancl (Suc n) r = (let r' = ntrancl n r in r' Un r' O r)" |
54870ad19af4
new code equation for ntrancl that allows computation of the transitive closure of sets on infinite types as well
bulwahn
parents:
46127
diff
changeset
|
1172 |
unfolding Let_def by auto |
54870ad19af4
new code equation for ntrancl that allows computation of the transitive closure of sets on infinite types as well
bulwahn
parents:
46127
diff
changeset
|
1173 |
|
45141
b2eb87bd541b
avoid very specific code equation for card; corrected spelling
haftmann
parents:
45140
diff
changeset
|
1174 |
lemma finite_trancl_ntranl: |
45140 | 1175 |
"finite R \<Longrightarrow> trancl R = ntrancl (card R - 1) R" |
46362 | 1176 |
by (cases "card R") (auto simp add: trancl_finite_eq_relpow relpow_empty ntrancl_def) |
45140 | 1177 |
|
1178 |
||
45139 | 1179 |
subsection {* Acyclic relations *} |
1180 |
||
1181 |
definition acyclic :: "('a * 'a) set => bool" where |
|
1182 |
"acyclic r \<longleftrightarrow> (!x. (x,x) ~: r^+)" |
|
1183 |
||
1184 |
abbreviation acyclicP :: "('a => 'a => bool) => bool" where |
|
1185 |
"acyclicP r \<equiv> acyclic {(x, y). r x y}" |
|
1186 |
||
46127 | 1187 |
lemma acyclic_irrefl [code]: |
45139 | 1188 |
"acyclic r \<longleftrightarrow> irrefl (r^+)" |
1189 |
by (simp add: acyclic_def irrefl_def) |
|
1190 |
||
1191 |
lemma acyclicI: "ALL x. (x, x) ~: r^+ ==> acyclic r" |
|
1192 |
by (simp add: acyclic_def) |
|
1193 |
||
54412 | 1194 |
lemma (in order) acyclicI_order: |
1195 |
assumes *: "\<And>a b. (a, b) \<in> r \<Longrightarrow> f b < f a" |
|
1196 |
shows "acyclic r" |
|
1197 |
proof - |
|
1198 |
{ fix a b assume "(a, b) \<in> r\<^sup>+" |
|
1199 |
then have "f b < f a" |
|
1200 |
by induct (auto intro: * less_trans) } |
|
1201 |
then show ?thesis |
|
1202 |
by (auto intro!: acyclicI) |
|
1203 |
qed |
|
1204 |
||
45139 | 1205 |
lemma acyclic_insert [iff]: |
1206 |
"acyclic(insert (y,x) r) = (acyclic r & (x,y) ~: r^*)" |
|
1207 |
apply (simp add: acyclic_def trancl_insert) |
|
1208 |
apply (blast intro: rtrancl_trans) |
|
1209 |
done |
|
1210 |
||
1211 |
lemma acyclic_converse [iff]: "acyclic(r^-1) = acyclic r" |
|
1212 |
by (simp add: acyclic_def trancl_converse) |
|
1213 |
||
1214 |
lemmas acyclicP_converse [iff] = acyclic_converse [to_pred] |
|
1215 |
||
1216 |
lemma acyclic_impl_antisym_rtrancl: "acyclic r ==> antisym(r^*)" |
|
1217 |
apply (simp add: acyclic_def antisym_def) |
|
1218 |
apply (blast elim: rtranclE intro: rtrancl_into_trancl1 rtrancl_trancl_trancl) |
|
1219 |
done |
|
1220 |
||
1221 |
(* Other direction: |
|
1222 |
acyclic = no loops |
|
1223 |
antisym = only self loops |
|
1224 |
Goalw [acyclic_def,antisym_def] "antisym( r^* ) ==> acyclic(r - Id) |
|
1225 |
==> antisym( r^* ) = acyclic(r - Id)"; |
|
1226 |
*) |
|
1227 |
||
1228 |
lemma acyclic_subset: "[| acyclic s; r <= s |] ==> acyclic r" |
|
1229 |
apply (simp add: acyclic_def) |
|
1230 |
apply (blast intro: trancl_mono) |
|
1231 |
done |
|
1232 |
||
1233 |
||
15076
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
ballarin
parents:
14565
diff
changeset
|
1234 |
subsection {* Setup of transitivity reasoner *} |
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
ballarin
parents:
14565
diff
changeset
|
1235 |
|
26340 | 1236 |
ML {* |
15076
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
ballarin
parents:
14565
diff
changeset
|
1237 |
|
32215 | 1238 |
structure Trancl_Tac = Trancl_Tac |
1239 |
( |
|
1240 |
val r_into_trancl = @{thm trancl.r_into_trancl}; |
|
1241 |
val trancl_trans = @{thm trancl_trans}; |
|
1242 |
val rtrancl_refl = @{thm rtrancl.rtrancl_refl}; |
|
1243 |
val r_into_rtrancl = @{thm r_into_rtrancl}; |
|
1244 |
val trancl_into_rtrancl = @{thm trancl_into_rtrancl}; |
|
1245 |
val rtrancl_trancl_trancl = @{thm rtrancl_trancl_trancl}; |
|
1246 |
val trancl_rtrancl_trancl = @{thm trancl_rtrancl_trancl}; |
|
1247 |
val rtrancl_trans = @{thm rtrancl_trans}; |
|
15096 | 1248 |
|
30107
f3b3b0e3d184
Fixed nonexhaustive match problem in decomp, to make it fail more gracefully
berghofe
parents:
29609
diff
changeset
|
1249 |
fun decomp (@{const Trueprop} $ t) = |
37677 | 1250 |
let fun dec (Const (@{const_name Set.member}, _) $ (Const (@{const_name Pair}, _) $ a $ b) $ rel ) = |
56257 | 1251 |
let fun decr (Const (@{const_name rtrancl}, _ ) $ r) = (r,"r*") |
1252 |
| decr (Const (@{const_name trancl}, _ ) $ r) = (r,"r+") |
|
18372 | 1253 |
| decr r = (r,"r"); |
26801
244184661a09
- Function dec in Trancl_Tac must eta-contract relation before calling
berghofe
parents:
26340
diff
changeset
|
1254 |
val (rel,r) = decr (Envir.beta_eta_contract rel); |
18372 | 1255 |
in SOME (a,b,rel,r) end |
1256 |
| dec _ = NONE |
|
30107
f3b3b0e3d184
Fixed nonexhaustive match problem in decomp, to make it fail more gracefully
berghofe
parents:
29609
diff
changeset
|
1257 |
in dec t end |
f3b3b0e3d184
Fixed nonexhaustive match problem in decomp, to make it fail more gracefully
berghofe
parents:
29609
diff
changeset
|
1258 |
| decomp _ = NONE; |
32215 | 1259 |
); |
15076
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
ballarin
parents:
14565
diff
changeset
|
1260 |
|
32215 | 1261 |
structure Tranclp_Tac = Trancl_Tac |
1262 |
( |
|
1263 |
val r_into_trancl = @{thm tranclp.r_into_trancl}; |
|
1264 |
val trancl_trans = @{thm tranclp_trans}; |
|
1265 |
val rtrancl_refl = @{thm rtranclp.rtrancl_refl}; |
|
1266 |
val r_into_rtrancl = @{thm r_into_rtranclp}; |
|
1267 |
val trancl_into_rtrancl = @{thm tranclp_into_rtranclp}; |
|
1268 |
val rtrancl_trancl_trancl = @{thm rtranclp_tranclp_tranclp}; |
|
1269 |
val trancl_rtrancl_trancl = @{thm tranclp_rtranclp_tranclp}; |
|
1270 |
val rtrancl_trans = @{thm rtranclp_trans}; |
|
22262 | 1271 |
|
30107
f3b3b0e3d184
Fixed nonexhaustive match problem in decomp, to make it fail more gracefully
berghofe
parents:
29609
diff
changeset
|
1272 |
fun decomp (@{const Trueprop} $ t) = |
22262 | 1273 |
let fun dec (rel $ a $ b) = |
56257 | 1274 |
let fun decr (Const (@{const_name rtranclp}, _ ) $ r) = (r,"r*") |
1275 |
| decr (Const (@{const_name tranclp}, _ ) $ r) = (r,"r+") |
|
22262 | 1276 |
| decr r = (r,"r"); |
1277 |
val (rel,r) = decr rel; |
|
26801
244184661a09
- Function dec in Trancl_Tac must eta-contract relation before calling
berghofe
parents:
26340
diff
changeset
|
1278 |
in SOME (a, b, rel, r) end |
22262 | 1279 |
| dec _ = NONE |
30107
f3b3b0e3d184
Fixed nonexhaustive match problem in decomp, to make it fail more gracefully
berghofe
parents:
29609
diff
changeset
|
1280 |
in dec t end |
f3b3b0e3d184
Fixed nonexhaustive match problem in decomp, to make it fail more gracefully
berghofe
parents:
29609
diff
changeset
|
1281 |
| decomp _ = NONE; |
32215 | 1282 |
); |
26340 | 1283 |
*} |
22262 | 1284 |
|
42795
66fcc9882784
clarified map_simpset versus Simplifier.map_simpset_global;
wenzelm
parents:
41987
diff
changeset
|
1285 |
setup {* |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
50616
diff
changeset
|
1286 |
map_theory_simpset (fn ctxt => ctxt |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
50616
diff
changeset
|
1287 |
addSolver (mk_solver "Trancl" Trancl_Tac.trancl_tac) |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
50616
diff
changeset
|
1288 |
addSolver (mk_solver "Rtrancl" Trancl_Tac.rtrancl_tac) |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
50616
diff
changeset
|
1289 |
addSolver (mk_solver "Tranclp" Tranclp_Tac.trancl_tac) |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
50616
diff
changeset
|
1290 |
addSolver (mk_solver "Rtranclp" Tranclp_Tac.rtrancl_tac)) |
15076
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
ballarin
parents:
14565
diff
changeset
|
1291 |
*} |
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
ballarin
parents:
14565
diff
changeset
|
1292 |
|
32215 | 1293 |
|
1294 |
text {* Optional methods. *} |
|
15076
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
ballarin
parents:
14565
diff
changeset
|
1295 |
|
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
ballarin
parents:
14565
diff
changeset
|
1296 |
method_setup trancl = |
32215 | 1297 |
{* Scan.succeed (SIMPLE_METHOD' o Trancl_Tac.trancl_tac) *} |
18372 | 1298 |
{* simple transitivity reasoner *} |
15076
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
ballarin
parents:
14565
diff
changeset
|
1299 |
method_setup rtrancl = |
32215 | 1300 |
{* Scan.succeed (SIMPLE_METHOD' o Trancl_Tac.rtrancl_tac) *} |
15076
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
ballarin
parents:
14565
diff
changeset
|
1301 |
{* simple transitivity reasoner *} |
22262 | 1302 |
method_setup tranclp = |
32215 | 1303 |
{* Scan.succeed (SIMPLE_METHOD' o Tranclp_Tac.trancl_tac) *} |
22262 | 1304 |
{* simple transitivity reasoner (predicate version) *} |
1305 |
method_setup rtranclp = |
|
32215 | 1306 |
{* Scan.succeed (SIMPLE_METHOD' o Tranclp_Tac.rtrancl_tac) *} |
22262 | 1307 |
{* simple transitivity reasoner (predicate version) *} |
15076
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
ballarin
parents:
14565
diff
changeset
|
1308 |
|
10213 | 1309 |
end |