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