author | wenzelm |
Fri, 29 Nov 2024 17:40:15 +0100 | |
changeset 81507 | 08574da77b4a |
parent 81282 | fa3d678ea1f4 |
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 |
77695
93531ba2c784
reversed import dependency between Relation and Finite_Set; and move theorems around
desharna
parents:
76751
diff
changeset
|
9 |
imports Finite_Set |
67723 | 10 |
abbrevs "^*" = "\<^sup>*" "\<^sup>*\<^sup>*" |
11 |
and "^+" = "\<^sup>+" "\<^sup>+\<^sup>+" |
|
12 |
and "^=" = "\<^sup>=" "\<^sup>=\<^sup>=" |
|
15131 | 13 |
begin |
12691 | 14 |
|
69605 | 15 |
ML_file \<open>~~/src/Provers/trancl.ML\<close> |
48891 | 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 |
|
80934 | 29 |
inductive_set rtrancl :: "('a \<times> 'a) set \<Rightarrow> ('a \<times> 'a) set" (\<open>(\<open>notation=\<open>postfix *\<close>\<close>_\<^sup>*)\<close> [1000] 999) |
61955
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 |
|
80934 | 35 |
inductive_set trancl :: "('a \<times> 'a) set \<Rightarrow> ('a \<times> 'a) set" (\<open>(\<open>notation=\<open>postfix +\<close>\<close>_\<^sup>+)\<close> [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 |
80934 | 42 |
rtranclp (\<open>(\<open>notation=\<open>postfix **\<close>\<close>_\<^sup>*\<^sup>*)\<close> [1000] 1000) and |
43 |
tranclp (\<open>(\<open>notation=\<open>postfix ++\<close>\<close>_\<^sup>+\<^sup>+)\<close> [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 |
|
80934 | 53 |
abbreviation reflcl :: "('a \<times> 'a) set \<Rightarrow> ('a \<times> 'a) set" (\<open>(\<open>notation=\<open>postfix =\<close>\<close>_\<^sup>=)\<close> [1000] 999) |
61955
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 |
|
80934 | 56 |
abbreviation reflclp :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> 'a \<Rightarrow> 'a \<Rightarrow> bool" (\<open>(\<open>notation=\<open>postfix ==\<close>\<close>_\<^sup>=\<^sup>=)\<close> [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) |
80934 | 60 |
rtrancl (\<open>(\<open>notation=\<open>postfix *\<close>\<close>_^*)\<close> [1000] 999) and |
61 |
trancl (\<open>(\<open>notation=\<open>postfix +\<close>\<close>_^+)\<close> [1000] 999) and |
|
62 |
reflcl (\<open>(\<open>notation=\<open>postfix =\<close>\<close>_^=)\<close> [1000] 999) and |
|
63 |
rtranclp (\<open>(\<open>notation=\<open>postfix **\<close>\<close>_^**)\<close> [1000] 1000) and |
|
64 |
tranclp (\<open>(\<open>notation=\<open>postfix ++\<close>\<close>_^++)\<close> [1000] 1000) and |
|
65 |
reflclp (\<open>(\<open>notation=\<open>postfix ==\<close>\<close>_^==)\<close> [1000] 1000) |
|
12691 | 66 |
|
81116
0fb1e2dd4122
first-class support for "unbundle no foobar_syntax" -- avoid redundant "bundle no_foobar_syntax" definitions;
wenzelm
parents:
81094
diff
changeset
|
67 |
bundle rtrancl_syntax |
81094 | 68 |
begin |
81116
0fb1e2dd4122
first-class support for "unbundle no foobar_syntax" -- avoid redundant "bundle no_foobar_syntax" definitions;
wenzelm
parents:
81094
diff
changeset
|
69 |
notation |
81094 | 70 |
rtrancl (\<open>(\<open>notation=\<open>postfix *\<close>\<close>_\<^sup>*)\<close> [1000] 999) and |
71 |
rtranclp (\<open>(\<open>notation=\<open>postfix **\<close>\<close>_\<^sup>*\<^sup>*)\<close> [1000] 1000) |
|
81116
0fb1e2dd4122
first-class support for "unbundle no foobar_syntax" -- avoid redundant "bundle no_foobar_syntax" definitions;
wenzelm
parents:
81094
diff
changeset
|
72 |
notation (ASCII) |
81094 | 73 |
rtrancl (\<open>(\<open>notation=\<open>postfix *\<close>\<close>_^*)\<close> [1000] 999) and |
74 |
rtranclp (\<open>(\<open>notation=\<open>postfix **\<close>\<close>_^**)\<close> [1000] 1000) |
|
75 |
end |
|
76 |
||
81116
0fb1e2dd4122
first-class support for "unbundle no foobar_syntax" -- avoid redundant "bundle no_foobar_syntax" definitions;
wenzelm
parents:
81094
diff
changeset
|
77 |
bundle trancl_syntax |
81094 | 78 |
begin |
81116
0fb1e2dd4122
first-class support for "unbundle no foobar_syntax" -- avoid redundant "bundle no_foobar_syntax" definitions;
wenzelm
parents:
81094
diff
changeset
|
79 |
notation |
81094 | 80 |
trancl (\<open>(\<open>notation=\<open>postfix +\<close>\<close>_\<^sup>+)\<close> [1000] 999) and |
81 |
tranclp (\<open>(\<open>notation=\<open>postfix ++\<close>\<close>_\<^sup>+\<^sup>+)\<close> [1000] 1000) |
|
81116
0fb1e2dd4122
first-class support for "unbundle no foobar_syntax" -- avoid redundant "bundle no_foobar_syntax" definitions;
wenzelm
parents:
81094
diff
changeset
|
82 |
notation (ASCII) |
81094 | 83 |
trancl (\<open>(\<open>notation=\<open>postfix +\<close>\<close>_^+)\<close> [1000] 999) and |
84 |
tranclp (\<open>(\<open>notation=\<open>postfix ++\<close>\<close>_^++)\<close> [1000] 1000) |
|
85 |
end |
|
86 |
||
81116
0fb1e2dd4122
first-class support for "unbundle no foobar_syntax" -- avoid redundant "bundle no_foobar_syntax" definitions;
wenzelm
parents:
81094
diff
changeset
|
87 |
bundle reflcl_syntax |
81094 | 88 |
begin |
81116
0fb1e2dd4122
first-class support for "unbundle no foobar_syntax" -- avoid redundant "bundle no_foobar_syntax" definitions;
wenzelm
parents:
81094
diff
changeset
|
89 |
notation |
81094 | 90 |
reflcl (\<open>(\<open>notation=\<open>postfix =\<close>\<close>_\<^sup>=)\<close> [1000] 999) and |
91 |
reflclp (\<open>(\<open>notation=\<open>postfix ==\<close>\<close>_\<^sup>=\<^sup>=)\<close> [1000] 1000) |
|
81116
0fb1e2dd4122
first-class support for "unbundle no foobar_syntax" -- avoid redundant "bundle no_foobar_syntax" definitions;
wenzelm
parents:
81094
diff
changeset
|
92 |
notation (ASCII) |
81094 | 93 |
reflcl (\<open>(\<open>notation=\<open>postfix =\<close>\<close>_^=)\<close> [1000] 999) and |
94 |
reflclp (\<open>(\<open>notation=\<open>postfix ==\<close>\<close>_^==)\<close> [1000] 1000) |
|
95 |
end |
|
96 |
||
12691 | 97 |
|
60758 | 98 |
subsection \<open>Reflexive closure\<close> |
26271 | 99 |
|
76638 | 100 |
lemma reflcl_set_eq [pred_set_conv]: "(sup (\<lambda>x y. (x, y) \<in> r) (=)) = (\<lambda>x y. (x, y) \<in> r \<union> Id)" |
101 |
by (auto simp: fun_eq_iff) |
|
102 |
||
63404 | 103 |
lemma refl_reflcl[simp]: "refl (r\<^sup>=)" |
104 |
by (simp add: refl_on_def) |
|
26271 | 105 |
|
76496 | 106 |
lemma reflp_on_reflclp[simp]: "reflp_on A R\<^sup>=\<^sup>=" |
107 |
by (simp add: reflp_on_def) |
|
108 |
||
76638 | 109 |
lemma antisym_on_reflcl[simp]: "antisym_on A (r\<^sup>=) \<longleftrightarrow> antisym_on A r" |
110 |
by (simp add: antisym_on_def) |
|
111 |
||
79940
5e85ea359563
renamed lemma antisymp_on_reflcp to antisymp_on_reflclp
desharna
parents:
79939
diff
changeset
|
112 |
lemma antisymp_on_reflclp[simp]: "antisymp_on A R\<^sup>=\<^sup>= \<longleftrightarrow> antisymp_on A R" |
76638 | 113 |
by (rule antisym_on_reflcl[to_pred]) |
26271 | 114 |
|
76751 | 115 |
lemma trans_on_reflcl[simp]: "trans_on A r \<Longrightarrow> trans_on A (r\<^sup>=)" |
116 |
by (auto intro: trans_onI dest: trans_onD) |
|
26271 | 117 |
|
76750 | 118 |
lemma transp_on_reflclp[simp]: "transp_on A R \<Longrightarrow> transp_on A R\<^sup>=\<^sup>=" |
76751 | 119 |
by (rule trans_on_reflcl[to_pred]) |
76498 | 120 |
|
79937
d26c53bc6ce1
added lemmas antisym_on_reflcl_if_asym_on and antisymp_on_reflclp_if_asymp_on
desharna
parents:
79806
diff
changeset
|
121 |
lemma antisymp_on_reflclp_if_asymp_on: |
d26c53bc6ce1
added lemmas antisym_on_reflcl_if_asym_on and antisymp_on_reflclp_if_asymp_on
desharna
parents:
79806
diff
changeset
|
122 |
assumes "asymp_on A R" |
d26c53bc6ce1
added lemmas antisym_on_reflcl_if_asym_on and antisymp_on_reflclp_if_asymp_on
desharna
parents:
79806
diff
changeset
|
123 |
shows "antisymp_on A R\<^sup>=\<^sup>=" |
79940
5e85ea359563
renamed lemma antisymp_on_reflcp to antisymp_on_reflclp
desharna
parents:
79939
diff
changeset
|
124 |
unfolding antisymp_on_reflclp |
79939 | 125 |
using antisymp_on_if_asymp_on[OF \<open>asymp_on A R\<close>] . |
79937
d26c53bc6ce1
added lemmas antisym_on_reflcl_if_asym_on and antisymp_on_reflclp_if_asymp_on
desharna
parents:
79806
diff
changeset
|
126 |
|
d26c53bc6ce1
added lemmas antisym_on_reflcl_if_asym_on and antisymp_on_reflclp_if_asymp_on
desharna
parents:
79806
diff
changeset
|
127 |
lemma antisym_on_reflcl_if_asym_on: "asym_on A R \<Longrightarrow> antisym_on A (R\<^sup>=)" |
d26c53bc6ce1
added lemmas antisym_on_reflcl_if_asym_on and antisymp_on_reflclp_if_asymp_on
desharna
parents:
79806
diff
changeset
|
128 |
using antisymp_on_reflclp_if_asymp_on[to_set] . |
d26c53bc6ce1
added lemmas antisym_on_reflcl_if_asym_on and antisymp_on_reflclp_if_asymp_on
desharna
parents:
79806
diff
changeset
|
129 |
|
63404 | 130 |
lemma reflclp_idemp [simp]: "(P\<^sup>=\<^sup>=)\<^sup>=\<^sup>= = P\<^sup>=\<^sup>=" |
131 |
by blast |
|
132 |
||
76497 | 133 |
lemma reflclp_ident_if_reflp[simp]: "reflp R \<Longrightarrow> R\<^sup>=\<^sup>= = R" |
134 |
by (auto dest: reflpD) |
|
135 |
||
79806
ba8fb71587ae
added lemmas reflclp_(less|greater)_eq[simp], rtranclp_(less|greater)_eq[simp], and tranclp_(less|greater|less_eq|greater_eq)[simp]
desharna
parents:
79773
diff
changeset
|
136 |
text \<open>The following are special cases of @{thm [source] reflclp_ident_if_reflp}, |
ba8fb71587ae
added lemmas reflclp_(less|greater)_eq[simp], rtranclp_(less|greater)_eq[simp], and tranclp_(less|greater|less_eq|greater_eq)[simp]
desharna
parents:
79773
diff
changeset
|
137 |
but they appear duplicated in multiple, independent theories, which causes name clashes.\<close> |
ba8fb71587ae
added lemmas reflclp_(less|greater)_eq[simp], rtranclp_(less|greater)_eq[simp], and tranclp_(less|greater|less_eq|greater_eq)[simp]
desharna
parents:
79773
diff
changeset
|
138 |
|
ba8fb71587ae
added lemmas reflclp_(less|greater)_eq[simp], rtranclp_(less|greater)_eq[simp], and tranclp_(less|greater|less_eq|greater_eq)[simp]
desharna
parents:
79773
diff
changeset
|
139 |
lemma (in preorder) reflclp_less_eq[simp]: "(\<le>)\<^sup>=\<^sup>= = (\<le>)" |
ba8fb71587ae
added lemmas reflclp_(less|greater)_eq[simp], rtranclp_(less|greater)_eq[simp], and tranclp_(less|greater|less_eq|greater_eq)[simp]
desharna
parents:
79773
diff
changeset
|
140 |
using reflp_on_le by (simp only: reflclp_ident_if_reflp) |
ba8fb71587ae
added lemmas reflclp_(less|greater)_eq[simp], rtranclp_(less|greater)_eq[simp], and tranclp_(less|greater|less_eq|greater_eq)[simp]
desharna
parents:
79773
diff
changeset
|
141 |
|
ba8fb71587ae
added lemmas reflclp_(less|greater)_eq[simp], rtranclp_(less|greater)_eq[simp], and tranclp_(less|greater|less_eq|greater_eq)[simp]
desharna
parents:
79773
diff
changeset
|
142 |
lemma (in preorder) reflclp_greater_eq[simp]: "(\<ge>)\<^sup>=\<^sup>= = (\<ge>)" |
ba8fb71587ae
added lemmas reflclp_(less|greater)_eq[simp], rtranclp_(less|greater)_eq[simp], and tranclp_(less|greater|less_eq|greater_eq)[simp]
desharna
parents:
79773
diff
changeset
|
143 |
using reflp_on_ge by (simp only: reflclp_ident_if_reflp) |
ba8fb71587ae
added lemmas reflclp_(less|greater)_eq[simp], rtranclp_(less|greater)_eq[simp], and tranclp_(less|greater|less_eq|greater_eq)[simp]
desharna
parents:
79773
diff
changeset
|
144 |
|
79938 | 145 |
lemma order_reflclp_if_transp_and_asymp: |
146 |
assumes "transp R" and "asymp R" |
|
147 |
shows "class.order R\<^sup>=\<^sup>= R" |
|
148 |
proof unfold_locales |
|
149 |
show "\<And>x y. R x y = (R\<^sup>=\<^sup>= x y \<and> \<not> R\<^sup>=\<^sup>= y x)" |
|
150 |
using \<open>asymp R\<close> asympD by fastforce |
|
151 |
next |
|
152 |
show "\<And>x. R\<^sup>=\<^sup>= x x" |
|
153 |
by simp |
|
154 |
next |
|
155 |
show "\<And>x y z. R\<^sup>=\<^sup>= x y \<Longrightarrow> R\<^sup>=\<^sup>= y z \<Longrightarrow> R\<^sup>=\<^sup>= x z" |
|
156 |
using transp_on_reflclp[OF \<open>transp R\<close>, THEN transpD] . |
|
157 |
next |
|
158 |
show "\<And>x y. R\<^sup>=\<^sup>= x y \<Longrightarrow> R\<^sup>=\<^sup>= y x \<Longrightarrow> x = y" |
|
159 |
using antisymp_on_reflclp_if_asymp_on[OF \<open>asymp R\<close>, THEN antisympD] . |
|
160 |
qed |
|
161 |
||
26271 | 162 |
|
60758 | 163 |
subsection \<open>Reflexive-transitive closure\<close> |
12691 | 164 |
|
63404 | 165 |
lemma r_into_rtrancl [intro]: "\<And>p. p \<in> r \<Longrightarrow> p \<in> r\<^sup>*" |
61799 | 166 |
\<comment> \<open>\<open>rtrancl\<close> of \<open>r\<close> contains \<open>r\<close>\<close> |
71627 | 167 |
by (simp add: split_tupled_all rtrancl_refl [THEN rtrancl_into_rtrancl]) |
12691 | 168 |
|
63404 | 169 |
lemma r_into_rtranclp [intro]: "r x y \<Longrightarrow> r\<^sup>*\<^sup>* x y" |
61799 | 170 |
\<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
|
171 |
by (erule rtranclp.rtrancl_refl [THEN rtranclp.rtrancl_into_rtrancl]) |
22262 | 172 |
|
63404 | 173 |
lemma rtranclp_mono: "r \<le> s \<Longrightarrow> r\<^sup>*\<^sup>* \<le> s\<^sup>*\<^sup>*" |
61799 | 174 |
\<comment> \<open>monotonicity of \<open>rtrancl\<close>\<close> |
71627 | 175 |
proof (rule predicate2I) |
176 |
show "s\<^sup>*\<^sup>* x y" if "r \<le> s" "r\<^sup>*\<^sup>* x y" for x y |
|
177 |
using \<open>r\<^sup>*\<^sup>* x y\<close> \<open>r \<le> s\<close> |
|
178 |
by (induction rule: rtranclp.induct) (blast intro: rtranclp.rtrancl_into_rtrancl)+ |
|
179 |
qed |
|
12691 | 180 |
|
63404 | 181 |
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 | 182 |
using rtranclp_mono[of x y] by auto |
183 |
||
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
184 |
lemmas rtrancl_mono = rtranclp_mono [to_set] |
22262 | 185 |
|
26179
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
186 |
theorem rtranclp_induct [consumes 1, case_names base step, induct set: rtranclp]: |
63404 | 187 |
assumes a: "r\<^sup>*\<^sup>* a b" |
188 |
and cases: "P a" "\<And>y z. r\<^sup>*\<^sup>* a y \<Longrightarrow> r y z \<Longrightarrow> P y \<Longrightarrow> P z" |
|
189 |
shows "P b" |
|
190 |
using a by (induct x\<equiv>a b) (rule cases)+ |
|
12691 | 191 |
|
25425
9191942c4ead
Removed some case_names and consumes attributes that are now no longer
berghofe
parents:
25295
diff
changeset
|
192 |
lemmas rtrancl_induct [induct set: rtrancl] = rtranclp_induct [to_set] |
22262 | 193 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
194 |
lemmas rtranclp_induct2 = |
63404 | 195 |
rtranclp_induct[of _ "(ax,ay)" "(bx,by)", split_rule, consumes 1, case_names refl step] |
22262 | 196 |
|
14404
4952c5a92e04
Transitive_Closure: added consumes and case_names attributes
nipkow
parents:
14398
diff
changeset
|
197 |
lemmas rtrancl_induct2 = |
63404 | 198 |
rtrancl_induct[of "(ax,ay)" "(bx,by)", split_format (complete), consumes 1, case_names refl step] |
18372 | 199 |
|
63404 | 200 |
lemma refl_rtrancl: "refl (r\<^sup>*)" |
201 |
unfolding refl_on_def by fast |
|
19228 | 202 |
|
60758 | 203 |
text \<open>Transitivity of transitive closure.\<close> |
63404 | 204 |
lemma trans_rtrancl: "trans (r\<^sup>*)" |
12823 | 205 |
proof (rule transI) |
206 |
fix x y z |
|
207 |
assume "(x, y) \<in> r\<^sup>*" |
|
208 |
assume "(y, z) \<in> r\<^sup>*" |
|
26179
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
209 |
then show "(x, z) \<in> r\<^sup>*" |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
210 |
proof induct |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
211 |
case base |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
212 |
show "(x, y) \<in> r\<^sup>*" by fact |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
213 |
next |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
214 |
case (step u v) |
60758 | 215 |
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
|
216 |
show "(x, v) \<in> r\<^sup>*" .. |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
217 |
qed |
12823 | 218 |
qed |
12691 | 219 |
|
45607 | 220 |
lemmas rtrancl_trans = trans_rtrancl [THEN transD] |
12691 | 221 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
222 |
lemma rtranclp_trans: |
63404 | 223 |
assumes "r\<^sup>*\<^sup>* x y" |
224 |
and "r\<^sup>*\<^sup>* y z" |
|
225 |
shows "r\<^sup>*\<^sup>* x z" |
|
226 |
using assms(2,1) by induct iprover+ |
|
22262 | 227 |
|
26174
9efd4c04eaa4
rtranclE, tranclE: tuned statement, added case_names;
wenzelm
parents:
25425
diff
changeset
|
228 |
lemma rtranclE [cases set: rtrancl]: |
63404 | 229 |
fixes a b :: 'a |
230 |
assumes major: "(a, b) \<in> r\<^sup>*" |
|
26174
9efd4c04eaa4
rtranclE, tranclE: tuned statement, added case_names;
wenzelm
parents:
25425
diff
changeset
|
231 |
obtains |
9efd4c04eaa4
rtranclE, tranclE: tuned statement, added case_names;
wenzelm
parents:
25425
diff
changeset
|
232 |
(base) "a = b" |
63404 | 233 |
| (step) y where "(a, y) \<in> r\<^sup>*" and "(y, b) \<in> r" |
61799 | 234 |
\<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
|
235 |
proof - |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
236 |
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
|
237 |
by (rule major [THEN rtrancl_induct]) blast+ |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
238 |
then show ?thesis |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
239 |
by (auto intro: base step) |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
240 |
qed |
12691 | 241 |
|
63404 | 242 |
lemma rtrancl_Int_subset: "Id \<subseteq> s \<Longrightarrow> (r\<^sup>* \<inter> s) O r \<subseteq> s \<Longrightarrow> r\<^sup>* \<subseteq> s" |
71627 | 243 |
by (fastforce elim: rtrancl_induct) |
22080
7bf8868ab3e4
induction rules for trancl/rtrancl expressed using subsets
paulson
parents:
21589
diff
changeset
|
244 |
|
63404 | 245 |
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
|
246 |
by (rule rtranclp_trans) iprover+ |
22262 | 247 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
248 |
lemmas converse_rtrancl_into_rtrancl = converse_rtranclp_into_rtranclp [to_set] |
12691 | 249 |
|
69593 | 250 |
text \<open>\<^medskip> More \<^term>\<open>r\<^sup>*\<close> equations and inclusions.\<close> |
12691 | 251 |
|
63404 | 252 |
lemma rtranclp_idemp [simp]: "(r\<^sup>*\<^sup>*)\<^sup>*\<^sup>* = r\<^sup>*\<^sup>*" |
71627 | 253 |
proof - |
254 |
have "r\<^sup>*\<^sup>*\<^sup>*\<^sup>* x y \<Longrightarrow> r\<^sup>*\<^sup>* x y" for x y |
|
255 |
by (induction rule: rtranclp_induct) (blast intro: rtranclp_trans)+ |
|
256 |
then show ?thesis |
|
257 |
by (auto intro!: order_antisym) |
|
258 |
qed |
|
12691 | 259 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
260 |
lemmas rtrancl_idemp [simp] = rtranclp_idemp [to_set] |
22262 | 261 |
|
63404 | 262 |
lemma rtrancl_idemp_self_comp [simp]: "R\<^sup>* O R\<^sup>* = R\<^sup>*" |
71627 | 263 |
by (force intro: rtrancl_trans) |
12691 | 264 |
|
63404 | 265 |
lemma rtrancl_subset_rtrancl: "r \<subseteq> s\<^sup>* \<Longrightarrow> r\<^sup>* \<subseteq> s\<^sup>*" |
71627 | 266 |
by (drule rtrancl_mono, simp) |
12691 | 267 |
|
63404 | 268 |
lemma rtranclp_subset: "R \<le> S \<Longrightarrow> S \<le> R\<^sup>*\<^sup>* \<Longrightarrow> S\<^sup>*\<^sup>* = R\<^sup>*\<^sup>*" |
71627 | 269 |
by (fastforce dest: rtranclp_mono) |
12691 | 270 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
271 |
lemmas rtrancl_subset = rtranclp_subset [to_set] |
22262 | 272 |
|
63404 | 273 |
lemma rtranclp_sup_rtranclp: "(sup (R\<^sup>*\<^sup>*) (S\<^sup>*\<^sup>*))\<^sup>*\<^sup>* = (sup R S)\<^sup>*\<^sup>*" |
274 |
by (blast intro!: rtranclp_subset intro: rtranclp_mono [THEN predicate2D]) |
|
12691 | 275 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
276 |
lemmas rtrancl_Un_rtrancl = rtranclp_sup_rtranclp [to_set] |
22262 | 277 |
|
63404 | 278 |
lemma rtranclp_reflclp [simp]: "(R\<^sup>=\<^sup>=)\<^sup>*\<^sup>* = R\<^sup>*\<^sup>*" |
279 |
by (blast intro!: rtranclp_subset) |
|
22262 | 280 |
|
50616 | 281 |
lemmas rtrancl_reflcl [simp] = rtranclp_reflclp [to_set] |
12691 | 282 |
|
63404 | 283 |
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
|
284 |
by (rule rtrancl_subset [symmetric]) auto |
12691 | 285 |
|
67399 | 286 |
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
|
287 |
by (rule rtranclp_subset [symmetric]) auto |
22262 | 288 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
289 |
theorem rtranclp_converseD: |
63404 | 290 |
assumes "(r\<inverse>\<inverse>)\<^sup>*\<^sup>* x y" |
291 |
shows "r\<^sup>*\<^sup>* y x" |
|
292 |
using assms by induct (iprover intro: rtranclp_trans dest!: conversepD)+ |
|
12691 | 293 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
294 |
lemmas rtrancl_converseD = rtranclp_converseD [to_set] |
22262 | 295 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
296 |
theorem rtranclp_converseI: |
63404 | 297 |
assumes "r\<^sup>*\<^sup>* y x" |
298 |
shows "(r\<inverse>\<inverse>)\<^sup>*\<^sup>* x y" |
|
299 |
using assms by induct (iprover intro: rtranclp_trans conversepI)+ |
|
12691 | 300 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
301 |
lemmas rtrancl_converseI = rtranclp_converseI [to_set] |
22262 | 302 |
|
67613 | 303 |
lemma rtrancl_converse: "(r\<inverse>)\<^sup>* = (r\<^sup>*)\<inverse>" |
12691 | 304 |
by (fast dest!: rtrancl_converseD intro!: rtrancl_converseI) |
305 |
||
63404 | 306 |
lemma sym_rtrancl: "sym r \<Longrightarrow> sym (r\<^sup>*)" |
19228 | 307 |
by (simp only: sym_conv_converse_eq rtrancl_converse [symmetric]) |
308 |
||
34909
a799687944af
Tuned some proofs; nicer case names for some of the induction / cases rules.
berghofe
parents:
33878
diff
changeset
|
309 |
theorem converse_rtranclp_induct [consumes 1, case_names base step]: |
63404 | 310 |
assumes major: "r\<^sup>*\<^sup>* a b" |
311 |
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
|
312 |
shows "P a" |
26179
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
313 |
using rtranclp_converseI [OF major] |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
314 |
by induct (iprover intro: cases dest!: conversepD rtranclp_converseD)+ |
12691 | 315 |
|
25425
9191942c4ead
Removed some case_names and consumes attributes that are now no longer
berghofe
parents:
25295
diff
changeset
|
316 |
lemmas converse_rtrancl_induct = converse_rtranclp_induct [to_set] |
22262 | 317 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
318 |
lemmas converse_rtranclp_induct2 = |
63612 | 319 |
converse_rtranclp_induct [of _ "(ax, ay)" "(bx, by)", split_rule, consumes 1, case_names refl step] |
22262 | 320 |
|
14404
4952c5a92e04
Transitive_Closure: added consumes and case_names attributes
nipkow
parents:
14398
diff
changeset
|
321 |
lemmas converse_rtrancl_induct2 = |
63612 | 322 |
converse_rtrancl_induct [of "(ax, ay)" "(bx, by)", split_format (complete), |
63404 | 323 |
consumes 1, case_names refl step] |
12691 | 324 |
|
34909
a799687944af
Tuned some proofs; nicer case names for some of the induction / cases rules.
berghofe
parents:
33878
diff
changeset
|
325 |
lemma converse_rtranclpE [consumes 1, case_names base step]: |
63404 | 326 |
assumes major: "r\<^sup>*\<^sup>* x z" |
327 |
and cases: "x = z \<Longrightarrow> P" "\<And>y. r x y \<Longrightarrow> r\<^sup>*\<^sup>* y z \<Longrightarrow> P" |
|
18372 | 328 |
shows P |
68618
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
329 |
proof - |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
330 |
have "x = z \<or> (\<exists>y. r x y \<and> r\<^sup>*\<^sup>* y z)" |
75669
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
75652
diff
changeset
|
331 |
by (rule major [THEN converse_rtranclp_induct]) iprover+ |
68618
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
332 |
then show ?thesis |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
333 |
by (auto intro: cases) |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
334 |
qed |
12691 | 335 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
336 |
lemmas converse_rtranclE = converse_rtranclpE [to_set] |
22262 | 337 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
338 |
lemmas converse_rtranclpE2 = converse_rtranclpE [of _ "(xa,xb)" "(za,zb)", split_rule] |
22262 | 339 |
|
340 |
lemmas converse_rtranclE2 = converse_rtranclE [of "(xa,xb)" "(za,zb)", split_rule] |
|
12691 | 341 |
|
63404 | 342 |
lemma r_comp_rtrancl_eq: "r O r\<^sup>* = r\<^sup>* O r" |
12691 | 343 |
by (blast elim: rtranclE converse_rtranclE |
63612 | 344 |
intro: rtrancl_into_rtrancl converse_rtrancl_into_rtrancl) |
12691 | 345 |
|
63404 | 346 |
lemma rtrancl_unfold: "r\<^sup>* = Id \<union> r\<^sup>* O r" |
15551 | 347 |
by (auto intro: rtrancl_into_rtrancl elim: rtranclE) |
348 |
||
31690 | 349 |
lemma rtrancl_Un_separatorE: |
63404 | 350 |
"(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 | 351 |
proof (induct rule: rtrancl.induct) |
352 |
case rtrancl_refl |
|
353 |
then show ?case by blast |
|
354 |
next |
|
355 |
case rtrancl_into_rtrancl |
|
356 |
then show ?case by (blast intro: rtrancl_trans) |
|
357 |
qed |
|
31690 | 358 |
|
359 |
lemma rtrancl_Un_separator_converseE: |
|
63404 | 360 |
"(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 | 361 |
proof (induct rule: converse_rtrancl_induct) |
362 |
case base |
|
363 |
then show ?case by blast |
|
364 |
next |
|
365 |
case step |
|
366 |
then show ?case by (blast intro: rtrancl_trans) |
|
367 |
qed |
|
31690 | 368 |
|
34970 | 369 |
lemma Image_closed_trancl: |
63404 | 370 |
assumes "r `` X \<subseteq> X" |
371 |
shows "r\<^sup>* `` X = X" |
|
34970 | 372 |
proof - |
63404 | 373 |
from assms have **: "{y. \<exists>x\<in>X. (x, y) \<in> r} \<subseteq> X" |
374 |
by auto |
|
375 |
have "x \<in> X" if 1: "(y, x) \<in> r\<^sup>*" and 2: "y \<in> X" for x y |
|
34970 | 376 |
proof - |
63404 | 377 |
from 1 show "x \<in> X" |
34970 | 378 |
proof induct |
63404 | 379 |
case base |
380 |
show ?case by (fact 2) |
|
34970 | 381 |
next |
63404 | 382 |
case step |
383 |
with ** show ?case by auto |
|
34970 | 384 |
qed |
385 |
qed |
|
386 |
then show ?thesis by auto |
|
387 |
qed |
|
388 |
||
79773
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
389 |
lemma rtranclp_ident_if_reflp_and_transp: |
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
390 |
assumes "reflp R" and "transp R" |
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
391 |
shows "R\<^sup>*\<^sup>* = R" |
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
392 |
proof (intro ext iffI) |
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
393 |
fix x y |
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
394 |
show "R\<^sup>*\<^sup>* x y \<Longrightarrow> R x y" |
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
395 |
proof (induction y rule: rtranclp_induct) |
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
396 |
case base |
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
397 |
show ?case |
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
398 |
using \<open>reflp R\<close>[THEN reflpD] . |
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
399 |
next |
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
400 |
case (step y z) |
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
401 |
thus ?case |
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
402 |
using \<open>transp R\<close>[THEN transpD, of x y z] by simp |
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
403 |
qed |
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
404 |
next |
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
405 |
fix x y |
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
406 |
show "R x y \<Longrightarrow> R\<^sup>*\<^sup>* x y" |
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
407 |
using r_into_rtranclp . |
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
408 |
qed |
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
409 |
|
79806
ba8fb71587ae
added lemmas reflclp_(less|greater)_eq[simp], rtranclp_(less|greater)_eq[simp], and tranclp_(less|greater|less_eq|greater_eq)[simp]
desharna
parents:
79773
diff
changeset
|
410 |
text \<open>The following are special cases of @{thm [source] rtranclp_ident_if_reflp_and_transp}, |
ba8fb71587ae
added lemmas reflclp_(less|greater)_eq[simp], rtranclp_(less|greater)_eq[simp], and tranclp_(less|greater|less_eq|greater_eq)[simp]
desharna
parents:
79773
diff
changeset
|
411 |
but they appear duplicated in multiple, independent theories, which causes name clashes.\<close> |
ba8fb71587ae
added lemmas reflclp_(less|greater)_eq[simp], rtranclp_(less|greater)_eq[simp], and tranclp_(less|greater|less_eq|greater_eq)[simp]
desharna
parents:
79773
diff
changeset
|
412 |
|
ba8fb71587ae
added lemmas reflclp_(less|greater)_eq[simp], rtranclp_(less|greater)_eq[simp], and tranclp_(less|greater|less_eq|greater_eq)[simp]
desharna
parents:
79773
diff
changeset
|
413 |
lemma (in preorder) rtranclp_less_eq[simp]: "(\<le>)\<^sup>*\<^sup>* = (\<le>)" |
ba8fb71587ae
added lemmas reflclp_(less|greater)_eq[simp], rtranclp_(less|greater)_eq[simp], and tranclp_(less|greater|less_eq|greater_eq)[simp]
desharna
parents:
79773
diff
changeset
|
414 |
using reflp_on_le transp_on_le by (simp only: rtranclp_ident_if_reflp_and_transp) |
ba8fb71587ae
added lemmas reflclp_(less|greater)_eq[simp], rtranclp_(less|greater)_eq[simp], and tranclp_(less|greater|less_eq|greater_eq)[simp]
desharna
parents:
79773
diff
changeset
|
415 |
|
ba8fb71587ae
added lemmas reflclp_(less|greater)_eq[simp], rtranclp_(less|greater)_eq[simp], and tranclp_(less|greater|less_eq|greater_eq)[simp]
desharna
parents:
79773
diff
changeset
|
416 |
lemma (in preorder) rtranclp_greater_eq[simp]: "(\<ge>)\<^sup>*\<^sup>* = (\<ge>)" |
ba8fb71587ae
added lemmas reflclp_(less|greater)_eq[simp], rtranclp_(less|greater)_eq[simp], and tranclp_(less|greater|less_eq|greater_eq)[simp]
desharna
parents:
79773
diff
changeset
|
417 |
using reflp_on_ge transp_on_ge by (simp only: rtranclp_ident_if_reflp_and_transp) |
ba8fb71587ae
added lemmas reflclp_(less|greater)_eq[simp], rtranclp_(less|greater)_eq[simp], and tranclp_(less|greater|less_eq|greater_eq)[simp]
desharna
parents:
79773
diff
changeset
|
418 |
|
12691 | 419 |
|
60758 | 420 |
subsection \<open>Transitive closure\<close> |
10331 | 421 |
|
75652
c4a1088d0081
added lemmas total_on_trancl and totalp_on_tranclp
desharna
parents:
74375
diff
changeset
|
422 |
lemma totalp_on_tranclp: "totalp_on A R \<Longrightarrow> totalp_on A (tranclp R)" |
c4a1088d0081
added lemmas total_on_trancl and totalp_on_tranclp
desharna
parents:
74375
diff
changeset
|
423 |
by (auto intro: totalp_onI dest: totalp_onD) |
c4a1088d0081
added lemmas total_on_trancl and totalp_on_tranclp
desharna
parents:
74375
diff
changeset
|
424 |
|
c4a1088d0081
added lemmas total_on_trancl and totalp_on_tranclp
desharna
parents:
74375
diff
changeset
|
425 |
lemma total_on_trancl: "total_on A r \<Longrightarrow> total_on A (trancl r)" |
c4a1088d0081
added lemmas total_on_trancl and totalp_on_tranclp
desharna
parents:
74375
diff
changeset
|
426 |
by (rule totalp_on_tranclp[to_set]) |
c4a1088d0081
added lemmas total_on_trancl and totalp_on_tranclp
desharna
parents:
74375
diff
changeset
|
427 |
|
71627 | 428 |
lemma trancl_mono: |
429 |
assumes "p \<in> r\<^sup>+" "r \<subseteq> s" |
|
430 |
shows "p \<in> s\<^sup>+" |
|
431 |
proof - |
|
432 |
have "\<lbrakk>(a, b) \<in> r\<^sup>+; r \<subseteq> s\<rbrakk> \<Longrightarrow> (a, b) \<in> s\<^sup>+" for a b |
|
433 |
by (induction rule: trancl.induct) (iprover dest: subsetD)+ |
|
434 |
with assms show ?thesis |
|
435 |
by (cases p) force |
|
436 |
qed |
|
12691 | 437 |
|
63404 | 438 |
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
|
439 |
by (simp only: split_tupled_all) (erule r_into_trancl) |
854501b1e957
Transitive closure is now defined inductively as well.
berghofe
parents:
12937
diff
changeset
|
440 |
|
63404 | 441 |
text \<open>\<^medskip> Conversions between \<open>trancl\<close> and \<open>rtrancl\<close>.\<close> |
12691 | 442 |
|
63404 | 443 |
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
|
444 |
by (erule tranclp.induct) iprover+ |
12691 | 445 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
446 |
lemmas trancl_into_rtrancl = tranclp_into_rtranclp [to_set] |
22262 | 447 |
|
63404 | 448 |
lemma rtranclp_into_tranclp1: |
449 |
assumes "r\<^sup>*\<^sup>* a b" |
|
450 |
shows "r b c \<Longrightarrow> r\<^sup>+\<^sup>+ a c" |
|
451 |
using assms by (induct arbitrary: c) iprover+ |
|
12691 | 452 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
453 |
lemmas rtrancl_into_trancl1 = rtranclp_into_tranclp1 [to_set] |
22262 | 454 |
|
71627 | 455 |
lemma rtranclp_into_tranclp2: |
456 |
assumes "r a b" "r\<^sup>*\<^sup>* b c" shows "r\<^sup>+\<^sup>+ a c" |
|
61799 | 457 |
\<comment> \<open>intro rule from \<open>r\<close> and \<open>rtrancl\<close>\<close> |
71627 | 458 |
using \<open>r\<^sup>*\<^sup>* b c\<close> |
459 |
proof (cases rule: rtranclp.cases) |
|
460 |
case rtrancl_refl |
|
461 |
with assms show ?thesis |
|
462 |
by iprover |
|
463 |
next |
|
464 |
case rtrancl_into_rtrancl |
|
465 |
with assms show ?thesis |
|
466 |
by (auto intro: rtranclp_trans [THEN rtranclp_into_tranclp1]) |
|
467 |
qed |
|
12691 | 468 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
469 |
lemmas rtrancl_into_trancl2 = rtranclp_into_tranclp2 [to_set] |
22262 | 470 |
|
61799 | 471 |
text \<open>Nice induction rule for \<open>trancl\<close>\<close> |
26179
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
472 |
lemma tranclp_induct [consumes 1, case_names base step, induct pred: tranclp]: |
63404 | 473 |
assumes a: "r\<^sup>+\<^sup>+ a b" |
474 |
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" |
|
475 |
shows "P b" |
|
476 |
using a by (induct x\<equiv>a b) (iprover intro: cases)+ |
|
12691 | 477 |
|
25425
9191942c4ead
Removed some case_names and consumes attributes that are now no longer
berghofe
parents:
25295
diff
changeset
|
478 |
lemmas trancl_induct [induct set: trancl] = tranclp_induct [to_set] |
22262 | 479 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
480 |
lemmas tranclp_induct2 = |
63612 | 481 |
tranclp_induct [of _ "(ax, ay)" "(bx, by)", split_rule, consumes 1, case_names base step] |
22262 | 482 |
|
22172 | 483 |
lemmas trancl_induct2 = |
63612 | 484 |
trancl_induct [of "(ax, ay)" "(bx, by)", split_format (complete), |
26179
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
485 |
consumes 1, case_names base step] |
22172 | 486 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
487 |
lemma tranclp_trans_induct: |
63404 | 488 |
assumes major: "r\<^sup>+\<^sup>+ x y" |
489 |
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 | 490 |
shows "P x y" |
61799 | 491 |
\<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
|
492 |
by (iprover intro: major [THEN tranclp_induct] cases) |
12691 | 493 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
494 |
lemmas trancl_trans_induct = tranclp_trans_induct [to_set] |
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
495 |
|
26174
9efd4c04eaa4
rtranclE, tranclE: tuned statement, added case_names;
wenzelm
parents:
25425
diff
changeset
|
496 |
lemma tranclE [cases set: trancl]: |
63404 | 497 |
assumes "(a, b) \<in> r\<^sup>+" |
26174
9efd4c04eaa4
rtranclE, tranclE: tuned statement, added case_names;
wenzelm
parents:
25425
diff
changeset
|
498 |
obtains |
63404 | 499 |
(base) "(a, b) \<in> r" |
500 |
| (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
|
501 |
using assms by cases simp_all |
10980 | 502 |
|
63404 | 503 |
lemma trancl_Int_subset: "r \<subseteq> s \<Longrightarrow> (r\<^sup>+ \<inter> s) O r \<subseteq> s \<Longrightarrow> r\<^sup>+ \<subseteq> s" |
71627 | 504 |
by (fastforce simp add: elim: trancl_induct) |
22080
7bf8868ab3e4
induction rules for trancl/rtrancl expressed using subsets
paulson
parents:
21589
diff
changeset
|
505 |
|
63404 | 506 |
lemma trancl_unfold: "r\<^sup>+ = r \<union> r\<^sup>+ O r" |
15551 | 507 |
by (auto intro: trancl_into_trancl elim: tranclE) |
508 |
||
69593 | 509 |
text \<open>Transitivity of \<^term>\<open>r\<^sup>+\<close>\<close> |
63404 | 510 |
lemma trans_trancl [simp]: "trans (r\<^sup>+)" |
13704
854501b1e957
Transitive closure is now defined inductively as well.
berghofe
parents:
12937
diff
changeset
|
511 |
proof (rule transI) |
854501b1e957
Transitive closure is now defined inductively as well.
berghofe
parents:
12937
diff
changeset
|
512 |
fix x y z |
63404 | 513 |
assume "(x, y) \<in> r\<^sup>+" |
514 |
assume "(y, z) \<in> r\<^sup>+" |
|
515 |
then show "(x, z) \<in> r\<^sup>+" |
|
26179
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
516 |
proof induct |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
517 |
case (base u) |
63404 | 518 |
from \<open>(x, y) \<in> r\<^sup>+\<close> and \<open>(y, u) \<in> r\<close> |
519 |
show "(x, u) \<in> r\<^sup>+" .. |
|
26179
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
520 |
next |
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
521 |
case (step u v) |
63404 | 522 |
from \<open>(x, u) \<in> r\<^sup>+\<close> and \<open>(u, v) \<in> r\<close> |
523 |
show "(x, v) \<in> r\<^sup>+" .. |
|
26179
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
524 |
qed |
13704
854501b1e957
Transitive closure is now defined inductively as well.
berghofe
parents:
12937
diff
changeset
|
525 |
qed |
12691 | 526 |
|
45607 | 527 |
lemmas trancl_trans = trans_trancl [THEN transD] |
12691 | 528 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
529 |
lemma tranclp_trans: |
63404 | 530 |
assumes "r\<^sup>+\<^sup>+ x y" |
531 |
and "r\<^sup>+\<^sup>+ y z" |
|
532 |
shows "r\<^sup>+\<^sup>+ x z" |
|
533 |
using assms(2,1) by induct iprover+ |
|
22262 | 534 |
|
63404 | 535 |
lemma trancl_id [simp]: "trans r \<Longrightarrow> r\<^sup>+ = r" |
71627 | 536 |
unfolding trans_def by (fastforce simp add: elim: trancl_induct) |
19623 | 537 |
|
26179
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
wenzelm
parents:
26174
diff
changeset
|
538 |
lemma rtranclp_tranclp_tranclp: |
63404 | 539 |
assumes "r\<^sup>*\<^sup>* x y" |
540 |
shows "\<And>z. r\<^sup>+\<^sup>+ y z \<Longrightarrow> r\<^sup>+\<^sup>+ x z" |
|
541 |
using assms by induct (iprover intro: tranclp_trans)+ |
|
12691 | 542 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
543 |
lemmas rtrancl_trancl_trancl = rtranclp_tranclp_tranclp [to_set] |
22262 | 544 |
|
63404 | 545 |
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
|
546 |
by (erule tranclp_trans [OF tranclp.r_into_trancl]) |
22262 | 547 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
548 |
lemmas trancl_into_trancl2 = tranclp_into_tranclp2 [to_set] |
12691 | 549 |
|
71627 | 550 |
lemma tranclp_converseI: |
551 |
assumes "(r\<^sup>+\<^sup>+)\<inverse>\<inverse> x y" shows "(r\<inverse>\<inverse>)\<^sup>+\<^sup>+ x y" |
|
552 |
using conversepD [OF assms] |
|
553 |
proof (induction rule: tranclp_induct) |
|
554 |
case (base y) |
|
555 |
then show ?case |
|
556 |
by (iprover intro: conversepI) |
|
557 |
next |
|
558 |
case (step y z) |
|
559 |
then show ?case |
|
560 |
by (iprover intro: conversepI tranclp_trans) |
|
561 |
qed |
|
12691 | 562 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
563 |
lemmas trancl_converseI = tranclp_converseI [to_set] |
22262 | 564 |
|
71627 | 565 |
lemma tranclp_converseD: |
566 |
assumes "(r\<inverse>\<inverse>)\<^sup>+\<^sup>+ x y" shows "(r\<^sup>+\<^sup>+)\<inverse>\<inverse> x y" |
|
567 |
proof - |
|
568 |
have "r\<^sup>+\<^sup>+ y x" |
|
569 |
using assms |
|
570 |
by (induction rule: tranclp_induct) (iprover dest: conversepD intro: tranclp_trans)+ |
|
571 |
then show ?thesis |
|
572 |
by (rule conversepI) |
|
573 |
qed |
|
12691 | 574 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
575 |
lemmas trancl_converseD = tranclp_converseD [to_set] |
22262 | 576 |
|
63404 | 577 |
lemma tranclp_converse: "(r\<inverse>\<inverse>)\<^sup>+\<^sup>+ = (r\<^sup>+\<^sup>+)\<inverse>\<inverse>" |
578 |
by (fastforce simp add: fun_eq_iff intro!: tranclp_converseI dest!: tranclp_converseD) |
|
22262 | 579 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
580 |
lemmas trancl_converse = tranclp_converse [to_set] |
12691 | 581 |
|
63404 | 582 |
lemma sym_trancl: "sym r \<Longrightarrow> sym (r\<^sup>+)" |
19228 | 583 |
by (simp only: sym_conv_converse_eq trancl_converse [symmetric]) |
584 |
||
34909
a799687944af
Tuned some proofs; nicer case names for some of the induction / cases rules.
berghofe
parents:
33878
diff
changeset
|
585 |
lemma converse_tranclp_induct [consumes 1, case_names base step]: |
63404 | 586 |
assumes major: "r\<^sup>+\<^sup>+ a b" |
587 |
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 | 588 |
shows "P a" |
71627 | 589 |
proof - |
590 |
have "r\<inverse>\<inverse>\<^sup>+\<^sup>+ b a" |
|
591 |
by (intro tranclp_converseI conversepI major) |
|
592 |
then show ?thesis |
|
593 |
by (induction rule: tranclp_induct) (blast intro: cases dest: tranclp_converseD)+ |
|
594 |
qed |
|
12691 | 595 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
596 |
lemmas converse_trancl_induct = converse_tranclp_induct [to_set] |
22262 | 597 |
|
63404 | 598 |
lemma tranclpD: "R\<^sup>+\<^sup>+ x y \<Longrightarrow> \<exists>z. R x z \<and> R\<^sup>*\<^sup>* z y" |
71627 | 599 |
proof (induction rule: converse_tranclp_induct) |
600 |
case (step u v) |
|
601 |
then show ?case |
|
602 |
by (blast intro: rtranclp_trans) |
|
603 |
qed auto |
|
12691 | 604 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
605 |
lemmas tranclD = tranclpD [to_set] |
22262 | 606 |
|
31577 | 607 |
lemma converse_tranclpE: |
608 |
assumes major: "tranclp r x z" |
|
63404 | 609 |
and base: "r x z \<Longrightarrow> P" |
63612 | 610 |
and step: "\<And>y. r x y \<Longrightarrow> tranclp r y z \<Longrightarrow> P" |
31577 | 611 |
shows P |
612 |
proof - |
|
63404 | 613 |
from tranclpD [OF major] obtain y where "r x y" and "rtranclp r y z" |
614 |
by iprover |
|
31577 | 615 |
from this(2) show P |
616 |
proof (cases rule: rtranclp.cases) |
|
617 |
case rtrancl_refl |
|
63404 | 618 |
with \<open>r x y\<close> base show P |
619 |
by iprover |
|
31577 | 620 |
next |
621 |
case rtrancl_into_rtrancl |
|
71627 | 622 |
then have "tranclp r y z" |
31577 | 623 |
by (iprover intro: rtranclp_into_tranclp1) |
63404 | 624 |
with \<open>r x y\<close> step show P |
625 |
by iprover |
|
31577 | 626 |
qed |
627 |
qed |
|
628 |
||
629 |
lemmas converse_tranclE = converse_tranclpE [to_set] |
|
630 |
||
63404 | 631 |
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
|
632 |
by (blast elim: tranclE intro: trancl_into_rtrancl) |
12985023be5e
tranclD2 (tranclD at the other end) + trancl_power
kleing
parents:
23743
diff
changeset
|
633 |
|
63404 | 634 |
lemma irrefl_tranclI: "r\<inverse> \<inter> r\<^sup>* = {} \<Longrightarrow> (x, x) \<notin> r\<^sup>+" |
18372 | 635 |
by (blast elim: tranclE dest: trancl_into_rtrancl) |
12691 | 636 |
|
63404 | 637 |
lemma irrefl_trancl_rD: "\<forall>x. (x, x) \<notin> r\<^sup>+ \<Longrightarrow> (x, y) \<in> r \<Longrightarrow> x \<noteq> y" |
12691 | 638 |
by (blast dest: r_into_trancl) |
639 |
||
63404 | 640 |
lemma trancl_subset_Sigma_aux: "(a, b) \<in> r\<^sup>* \<Longrightarrow> r \<subseteq> A \<times> A \<Longrightarrow> a = b \<or> a \<in> A" |
18372 | 641 |
by (induct rule: rtrancl_induct) auto |
12691 | 642 |
|
71627 | 643 |
lemma trancl_subset_Sigma: |
644 |
assumes "r \<subseteq> A \<times> A" shows "r\<^sup>+ \<subseteq> A \<times> A" |
|
645 |
proof (rule trancl_Int_subset [OF assms]) |
|
646 |
show "(r\<^sup>+ \<inter> A \<times> A) O r \<subseteq> A \<times> A" |
|
647 |
using assms by auto |
|
648 |
qed |
|
10996
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
nipkow
parents:
10980
diff
changeset
|
649 |
|
63404 | 650 |
lemma reflclp_tranclp [simp]: "(r\<^sup>+\<^sup>+)\<^sup>=\<^sup>= = r\<^sup>*\<^sup>*" |
71627 | 651 |
by (fast elim: rtranclp.cases tranclp_into_rtranclp dest: rtranclp_into_tranclp1) |
10996
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
nipkow
parents:
10980
diff
changeset
|
652 |
|
50616 | 653 |
lemmas reflcl_trancl [simp] = reflclp_tranclp [to_set] |
22262 | 654 |
|
63404 | 655 |
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
|
656 |
proof - |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
657 |
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
|
658 |
by (force dest: trancl_into_rtrancl) |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
659 |
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
|
660 |
using that |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
661 |
proof (cases a b rule: rtranclE) |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
662 |
case step |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
663 |
show ?thesis |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
664 |
by (rule rtrancl_into_trancl1) (use step in auto) |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
665 |
qed auto |
71393
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
666 |
ultimately show ?thesis |
68618
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
667 |
by auto |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
668 |
qed |
10996
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
nipkow
parents:
10980
diff
changeset
|
669 |
|
63404 | 670 |
lemma rtrancl_trancl_reflcl [code]: "r\<^sup>* = (r\<^sup>+)\<^sup>=" |
45140 | 671 |
by simp |
672 |
||
63404 | 673 |
lemma trancl_empty [simp]: "{}\<^sup>+ = {}" |
11084 | 674 |
by (auto elim: trancl_induct) |
10996
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
nipkow
parents:
10980
diff
changeset
|
675 |
|
63404 | 676 |
lemma rtrancl_empty [simp]: "{}\<^sup>* = Id" |
11084 | 677 |
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
|
678 |
|
63404 | 679 |
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
|
680 |
by (force simp: reflclp_tranclp [symmetric] simp del: reflclp_tranclp) |
22262 | 681 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
682 |
lemmas rtranclD = rtranclpD [to_set] |
11084 | 683 |
|
63404 | 684 |
lemma rtrancl_eq_or_trancl: "(x,y) \<in> R\<^sup>* \<longleftrightarrow> x = y \<or> x \<noteq> y \<and> (x, y) \<in> R\<^sup>+" |
16514 | 685 |
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
|
686 |
|
63404 | 687 |
lemma trancl_unfold_right: "r\<^sup>+ = r\<^sup>* O r" |
688 |
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
|
689 |
|
63404 | 690 |
lemma trancl_unfold_left: "r\<^sup>+ = r O r\<^sup>*" |
691 |
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
|
692 |
|
81282 | 693 |
lemma tranclp_unfold_left: "r^++ = r OO r^**" |
694 |
by (auto intro!: ext dest: tranclpD intro: rtranclp_into_tranclp2) |
|
695 |
||
63404 | 696 |
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 | 697 |
\<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
|
698 |
proof - |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
699 |
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
|
700 |
(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
|
701 |
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
|
702 |
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
|
703 |
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
|
704 |
rtrancl_trancl_trancl rtrancl_into_trancl2) |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
705 |
ultimately show ?thesis |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
706 |
by auto |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
707 |
qed |
57178 | 708 |
|
709 |
lemma trancl_insert2: |
|
63404 | 710 |
"(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
|
711 |
by (auto simp: trancl_insert rtrancl_eq_or_trancl) |
57178 | 712 |
|
63404 | 713 |
lemma rtrancl_insert: "(insert (a,b) r)\<^sup>* = r\<^sup>* \<union> {(x, y). (x, a) \<in> r\<^sup>* \<and> (b, y) \<in> r\<^sup>*}" |
714 |
using trancl_insert[of a b r] |
|
715 |
by (simp add: rtrancl_trancl_reflcl del: reflcl_trancl) blast |
|
57178 | 716 |
|
33656
fc1af6753233
a few lemmas for point-free reasoning about transitive closure
krauss
parents:
32901
diff
changeset
|
717 |
|
60758 | 718 |
text \<open>Simplifying nested closures\<close> |
33656
fc1af6753233
a few lemmas for point-free reasoning about transitive closure
krauss
parents:
32901
diff
changeset
|
719 |
|
63404 | 720 |
lemma rtrancl_trancl_absorb[simp]: "(R\<^sup>*)\<^sup>+ = R\<^sup>*" |
721 |
by (simp add: trans_rtrancl) |
|
33656
fc1af6753233
a few lemmas for point-free reasoning about transitive closure
krauss
parents:
32901
diff
changeset
|
722 |
|
63404 | 723 |
lemma trancl_rtrancl_absorb[simp]: "(R\<^sup>+)\<^sup>* = R\<^sup>*" |
724 |
by (subst reflcl_trancl[symmetric]) simp |
|
33656
fc1af6753233
a few lemmas for point-free reasoning about transitive closure
krauss
parents:
32901
diff
changeset
|
725 |
|
63404 | 726 |
lemma rtrancl_reflcl_absorb[simp]: "(R\<^sup>*)\<^sup>= = R\<^sup>*" |
727 |
by auto |
|
33656
fc1af6753233
a few lemmas for point-free reasoning about transitive closure
krauss
parents:
32901
diff
changeset
|
728 |
|
fc1af6753233
a few lemmas for point-free reasoning about transitive closure
krauss
parents:
32901
diff
changeset
|
729 |
|
61799 | 730 |
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
|
731 |
|
63404 | 732 |
lemma Domain_rtrancl [simp]: "Domain (R\<^sup>*) = UNIV" |
11084 | 733 |
by blast |
10996
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
nipkow
parents:
10980
diff
changeset
|
734 |
|
63404 | 735 |
lemma Range_rtrancl [simp]: "Range (R\<^sup>*) = UNIV" |
11084 | 736 |
by blast |
10996
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
nipkow
parents:
10980
diff
changeset
|
737 |
|
63404 | 738 |
lemma rtrancl_Un_subset: "(R\<^sup>* \<union> S\<^sup>*) \<subseteq> (R \<union> S)\<^sup>*" |
11084 | 739 |
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
|
740 |
|
63404 | 741 |
lemma in_rtrancl_UnI: "x \<in> R\<^sup>* \<or> x \<in> S\<^sup>* \<Longrightarrow> x \<in> (R \<union> S)\<^sup>*" |
11084 | 742 |
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
|
743 |
|
63404 | 744 |
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
|
745 |
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
|
746 |
|
63404 | 747 |
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
|
748 |
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
|
749 |
|
71393
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
750 |
lemma Not_Domain_rtrancl: |
68618
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
751 |
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
|
752 |
proof - |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
753 |
have "(x, y) \<in> R\<^sup>* \<Longrightarrow> x = y" |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
754 |
by (erule rtrancl_induct) (use assms in auto) |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
755 |
then show ?thesis |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
756 |
by auto |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
757 |
qed |
11327
cd2c27a23df1
Transitive closure is now defined via "inductive".
berghofe
parents:
11115
diff
changeset
|
758 |
|
63404 | 759 |
lemma trancl_subset_Field2: "r\<^sup>+ \<subseteq> Field r \<times> Field r" |
71627 | 760 |
by (rule trancl_Int_subset) (auto simp: Field_def) |
29609 | 761 |
|
63404 | 762 |
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
|
763 |
proof |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
764 |
show "finite (r\<^sup>+) \<Longrightarrow> finite r" |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
765 |
by (blast intro: r_into_trancl' finite_subset) |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
766 |
show "finite r \<Longrightarrow> finite (r\<^sup>+)" |
71627 | 767 |
by (auto simp: finite_Field trancl_subset_Field2 [THEN finite_subset]) |
68618
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
768 |
qed |
29609 | 769 |
|
68456 | 770 |
lemma finite_rtrancl_Image[simp]: assumes "finite R" "finite A" shows "finite (R\<^sup>* `` A)" |
68455 | 771 |
proof (rule ccontr) |
772 |
assume "infinite (R\<^sup>* `` A)" |
|
773 |
with assms show False |
|
774 |
by(simp add: rtrancl_trancl_reflcl Un_Image del: reflcl_trancl) |
|
775 |
qed |
|
776 |
||
61799 | 777 |
text \<open>More about converse \<open>rtrancl\<close> and \<open>trancl\<close>, should |
60758 | 778 |
be merged with main body.\<close> |
12428
f3033eed309a
setup [trans] rules for calculational Isar reasoning
kleing
parents:
11327
diff
changeset
|
779 |
|
14337
e13731554e50
undid split_comp_eq[simp] because it leads to nontermination together with split_def!
nipkow
parents:
14208
diff
changeset
|
780 |
lemma single_valued_confluent: |
68618
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
781 |
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
|
782 |
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
|
783 |
using xy |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
784 |
proof (induction rule: rtrancl_induct) |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
785 |
case base |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
786 |
show ?case |
71393
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
787 |
by (simp add: assms) |
68618
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
788 |
next |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
789 |
case (step y z) |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
790 |
with xz \<open>single_valued r\<close> show ?case |
71627 | 791 |
by (auto elim: converse_rtranclE dest: single_valuedD intro: rtrancl_trans) |
68618
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
792 |
qed |
14337
e13731554e50
undid split_comp_eq[simp] because it leads to nontermination together with split_def!
nipkow
parents:
14208
diff
changeset
|
793 |
|
63404 | 794 |
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
|
795 |
by (fast intro: trancl_trans) |
f3033eed309a
setup [trans] rules for calculational Isar reasoning
kleing
parents:
11327
diff
changeset
|
796 |
|
63404 | 797 |
lemma trancl_into_trancl: "(a, b) \<in> r\<^sup>+ \<Longrightarrow> (b, c) \<in> r \<Longrightarrow> (a, c) \<in> r\<^sup>+" |
63612 | 798 |
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
|
799 |
|
71627 | 800 |
lemma tranclp_rtranclp_tranclp: |
801 |
assumes "r\<^sup>+\<^sup>+ a b" "r\<^sup>*\<^sup>* b c" shows "r\<^sup>+\<^sup>+ a c" |
|
802 |
proof - |
|
803 |
obtain z where "r a z" "r\<^sup>*\<^sup>* z c" |
|
804 |
using assms by (iprover dest: tranclpD rtranclp_trans) |
|
805 |
then show ?thesis |
|
806 |
by (blast dest: rtranclp_into_tranclp2) |
|
807 |
qed |
|
12428
f3033eed309a
setup [trans] rules for calculational Isar reasoning
kleing
parents:
11327
diff
changeset
|
808 |
|
71393
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
809 |
lemma rtranclp_conversep: "r\<inverse>\<inverse>\<^sup>*\<^sup>* = r\<^sup>*\<^sup>*\<inverse>\<inverse>" |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
810 |
by(auto simp add: fun_eq_iff intro: rtranclp_converseI rtranclp_converseD) |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
811 |
|
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
812 |
lemmas symp_rtranclp = sym_rtrancl[to_pred] |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
813 |
|
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
814 |
lemmas symp_conv_conversep_eq = sym_conv_converse_eq[to_pred] |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
815 |
|
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
816 |
lemmas rtranclp_tranclp_absorb [simp] = rtrancl_trancl_absorb[to_pred] |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
817 |
lemmas tranclp_rtranclp_absorb [simp] = trancl_rtrancl_absorb[to_pred] |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
818 |
lemmas rtranclp_reflclp_absorb [simp] = rtrancl_reflcl_absorb[to_pred] |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
819 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
820 |
lemmas trancl_rtrancl_trancl = tranclp_rtranclp_tranclp [to_set] |
22262 | 821 |
|
12691 | 822 |
lemmas transitive_closure_trans [trans] = |
823 |
r_r_into_trancl trancl_trans rtrancl_trans |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
824 |
trancl.trancl_into_trancl trancl_into_trancl2 |
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
825 |
rtrancl.rtrancl_into_rtrancl converse_rtrancl_into_rtrancl |
12691 | 826 |
rtrancl_trancl_trancl trancl_rtrancl_trancl |
12428
f3033eed309a
setup [trans] rules for calculational Isar reasoning
kleing
parents:
11327
diff
changeset
|
827 |
|
23743
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
828 |
lemmas transitive_closurep_trans' [trans] = |
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
829 |
tranclp_trans rtranclp_trans |
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
830 |
tranclp.trancl_into_trancl tranclp_into_tranclp2 |
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
831 |
rtranclp.rtrancl_into_rtrancl converse_rtranclp_into_rtranclp |
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
berghofe
parents:
22422
diff
changeset
|
832 |
rtranclp_tranclp_tranclp tranclp_rtranclp_tranclp |
22262 | 833 |
|
12428
f3033eed309a
setup [trans] rules for calculational Isar reasoning
kleing
parents:
11327
diff
changeset
|
834 |
declare trancl_into_rtrancl [elim] |
11327
cd2c27a23df1
Transitive closure is now defined via "inductive".
berghofe
parents:
11115
diff
changeset
|
835 |
|
79773
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
836 |
lemma tranclp_ident_if_transp: |
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
837 |
assumes "transp R" |
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
838 |
shows "R\<^sup>+\<^sup>+ = R" |
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
839 |
proof (intro ext iffI) |
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
840 |
fix x y |
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
841 |
show "R\<^sup>+\<^sup>+ x y \<Longrightarrow> R x y" |
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
842 |
proof (induction y rule: tranclp_induct) |
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
843 |
case (base y) |
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
844 |
thus ?case |
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
845 |
by simp |
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
846 |
next |
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
847 |
case (step y z) |
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
848 |
thus ?case |
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
849 |
using \<open>transp R\<close>[THEN transpD, of x y z] by simp |
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
850 |
qed |
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
851 |
next |
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
852 |
fix x y |
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
853 |
show "R x y \<Longrightarrow> R\<^sup>+\<^sup>+ x y" |
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
854 |
using tranclp.r_into_trancl . |
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
855 |
qed |
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
856 |
|
79806
ba8fb71587ae
added lemmas reflclp_(less|greater)_eq[simp], rtranclp_(less|greater)_eq[simp], and tranclp_(less|greater|less_eq|greater_eq)[simp]
desharna
parents:
79773
diff
changeset
|
857 |
text \<open>The following are special cases of @{thm [source] tranclp_ident_if_transp}, |
ba8fb71587ae
added lemmas reflclp_(less|greater)_eq[simp], rtranclp_(less|greater)_eq[simp], and tranclp_(less|greater|less_eq|greater_eq)[simp]
desharna
parents:
79773
diff
changeset
|
858 |
but they appear duplicated in multiple, independent theories, which causes name clashes.\<close> |
ba8fb71587ae
added lemmas reflclp_(less|greater)_eq[simp], rtranclp_(less|greater)_eq[simp], and tranclp_(less|greater|less_eq|greater_eq)[simp]
desharna
parents:
79773
diff
changeset
|
859 |
|
ba8fb71587ae
added lemmas reflclp_(less|greater)_eq[simp], rtranclp_(less|greater)_eq[simp], and tranclp_(less|greater|less_eq|greater_eq)[simp]
desharna
parents:
79773
diff
changeset
|
860 |
lemma (in preorder) tranclp_less[simp]: "(<)\<^sup>+\<^sup>+ = (<)" |
ba8fb71587ae
added lemmas reflclp_(less|greater)_eq[simp], rtranclp_(less|greater)_eq[simp], and tranclp_(less|greater|less_eq|greater_eq)[simp]
desharna
parents:
79773
diff
changeset
|
861 |
using transp_on_less by (simp only: tranclp_ident_if_transp) |
ba8fb71587ae
added lemmas reflclp_(less|greater)_eq[simp], rtranclp_(less|greater)_eq[simp], and tranclp_(less|greater|less_eq|greater_eq)[simp]
desharna
parents:
79773
diff
changeset
|
862 |
|
ba8fb71587ae
added lemmas reflclp_(less|greater)_eq[simp], rtranclp_(less|greater)_eq[simp], and tranclp_(less|greater|less_eq|greater_eq)[simp]
desharna
parents:
79773
diff
changeset
|
863 |
lemma (in preorder) tranclp_less_eq[simp]: "(\<le>)\<^sup>+\<^sup>+ = (\<le>)" |
ba8fb71587ae
added lemmas reflclp_(less|greater)_eq[simp], rtranclp_(less|greater)_eq[simp], and tranclp_(less|greater|less_eq|greater_eq)[simp]
desharna
parents:
79773
diff
changeset
|
864 |
using transp_on_le by (simp only: tranclp_ident_if_transp) |
ba8fb71587ae
added lemmas reflclp_(less|greater)_eq[simp], rtranclp_(less|greater)_eq[simp], and tranclp_(less|greater|less_eq|greater_eq)[simp]
desharna
parents:
79773
diff
changeset
|
865 |
|
ba8fb71587ae
added lemmas reflclp_(less|greater)_eq[simp], rtranclp_(less|greater)_eq[simp], and tranclp_(less|greater|less_eq|greater_eq)[simp]
desharna
parents:
79773
diff
changeset
|
866 |
lemma (in preorder) tranclp_greater[simp]: "(>)\<^sup>+\<^sup>+ = (>)" |
ba8fb71587ae
added lemmas reflclp_(less|greater)_eq[simp], rtranclp_(less|greater)_eq[simp], and tranclp_(less|greater|less_eq|greater_eq)[simp]
desharna
parents:
79773
diff
changeset
|
867 |
using transp_on_greater by (simp only: tranclp_ident_if_transp) |
ba8fb71587ae
added lemmas reflclp_(less|greater)_eq[simp], rtranclp_(less|greater)_eq[simp], and tranclp_(less|greater|less_eq|greater_eq)[simp]
desharna
parents:
79773
diff
changeset
|
868 |
|
ba8fb71587ae
added lemmas reflclp_(less|greater)_eq[simp], rtranclp_(less|greater)_eq[simp], and tranclp_(less|greater|less_eq|greater_eq)[simp]
desharna
parents:
79773
diff
changeset
|
869 |
lemma (in preorder) tranclp_greater_eq[simp]: "(\<ge>)\<^sup>+\<^sup>+ = (\<ge>)" |
ba8fb71587ae
added lemmas reflclp_(less|greater)_eq[simp], rtranclp_(less|greater)_eq[simp], and tranclp_(less|greater|less_eq|greater_eq)[simp]
desharna
parents:
79773
diff
changeset
|
870 |
using transp_on_ge by (simp only: tranclp_ident_if_transp) |
79773
0e8620af9c91
added lemmas rtranclp_ident_if_reflp_and_transp and tranclp_ident_if_transp
desharna
parents:
79668
diff
changeset
|
871 |
|
71393
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
872 |
subsection \<open>Symmetric closure\<close> |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
873 |
|
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
874 |
definition symclp :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> 'a \<Rightarrow> 'a \<Rightarrow> bool" |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
875 |
where "symclp r x y \<longleftrightarrow> r x y \<or> r y x" |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
876 |
|
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
877 |
lemma symclpI [simp, intro?]: |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
878 |
shows symclpI1: "r x y \<Longrightarrow> symclp r x y" |
71627 | 879 |
and symclpI2: "r y x \<Longrightarrow> symclp r x y" |
880 |
by(simp_all add: symclp_def) |
|
71393
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
881 |
|
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
882 |
lemma symclpE [consumes 1, cases pred]: |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
883 |
assumes "symclp r x y" |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
884 |
obtains (base) "r x y" | (sym) "r y x" |
71627 | 885 |
using assms by(auto simp add: symclp_def) |
71393
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
886 |
|
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
887 |
lemma symclp_pointfree: "symclp r = sup r r\<inverse>\<inverse>" |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
888 |
by(auto simp add: symclp_def fun_eq_iff) |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
889 |
|
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
890 |
lemma symclp_greater: "r \<le> symclp r" |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
891 |
by(simp add: symclp_pointfree) |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
892 |
|
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
893 |
lemma symclp_conversep [simp]: "symclp r\<inverse>\<inverse> = symclp r" |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
894 |
by(simp add: symclp_pointfree sup.commute) |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
895 |
|
76675 | 896 |
lemma symp_on_symclp [simp]: "symp_on A (symclp R)" |
897 |
by(auto simp add: symp_on_def elim: symclpE intro: symclpI) |
|
71393
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
898 |
|
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
899 |
lemma symp_symclp_eq: "symp r \<Longrightarrow> symclp r = r" |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
900 |
by(simp add: symclp_pointfree symp_conv_conversep_eq) |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
901 |
|
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
902 |
lemma symp_rtranclp_symclp [simp]: "symp (symclp r)\<^sup>*\<^sup>*" |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
903 |
by(simp add: symp_rtranclp) |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
904 |
|
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
905 |
lemma rtranclp_symclp_sym [sym]: "(symclp r)\<^sup>*\<^sup>* x y \<Longrightarrow> (symclp r)\<^sup>*\<^sup>* y x" |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
906 |
by(rule sympD[OF symp_rtranclp_symclp]) |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
907 |
|
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
908 |
lemma symclp_idem [simp]: "symclp (symclp r) = symclp r" |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
909 |
by(simp add: symclp_pointfree sup_commute converse_join) |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
910 |
|
76495
a718547c3493
strengthened lemma reflp_rtranclp and renamed to reflp_on_rtranclp
desharna
parents:
75669
diff
changeset
|
911 |
lemma reflp_on_rtranclp [simp]: "reflp_on A R\<^sup>*\<^sup>*" |
a718547c3493
strengthened lemma reflp_rtranclp and renamed to reflp_on_rtranclp
desharna
parents:
75669
diff
changeset
|
912 |
by (simp add: reflp_on_def) |
a718547c3493
strengthened lemma reflp_rtranclp and renamed to reflp_on_rtranclp
desharna
parents:
75669
diff
changeset
|
913 |
|
63404 | 914 |
|
60758 | 915 |
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
|
916 |
|
63404 | 917 |
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
|
918 |
|
30971 | 919 |
overloading |
63404 | 920 |
relpow \<equiv> "compow :: nat \<Rightarrow> ('a \<times> 'a) set \<Rightarrow> ('a \<times> 'a) set" |
921 |
relpowp \<equiv> "compow :: nat \<Rightarrow> ('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> ('a \<Rightarrow> 'a \<Rightarrow> bool)" |
|
30971 | 922 |
begin |
30954
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
923 |
|
63404 | 924 |
primrec relpow :: "nat \<Rightarrow> ('a \<times> 'a) set \<Rightarrow> ('a \<times> 'a) set" |
63612 | 925 |
where |
926 |
"relpow 0 R = Id" |
|
927 |
| "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
|
928 |
|
63404 | 929 |
primrec relpowp :: "nat \<Rightarrow> ('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> ('a \<Rightarrow> 'a \<Rightarrow> bool)" |
63612 | 930 |
where |
931 |
"relpowp 0 R = HOL.eq" |
|
932 |
| "relpowp (Suc n) R = (R ^^ n) OO R" |
|
47202 | 933 |
|
30971 | 934 |
end |
30954
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
935 |
|
81282 | 936 |
lemmas relpowp_Suc_right = relpowp.simps(2) |
937 |
||
47202 | 938 |
lemma relpowp_relpow_eq [pred_set_conv]: |
63404 | 939 |
"(\<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
|
940 |
by (induct n) (simp_all add: relcompp_relcomp_eq) |
47202 | 941 |
|
63404 | 942 |
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
|
943 |
|
63404 | 944 |
definition relpow :: "nat \<Rightarrow> ('a \<times> 'a) set \<Rightarrow> ('a \<times> 'a) set" |
945 |
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
|
946 |
|
63404 | 947 |
definition relpowp :: "nat \<Rightarrow> ('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> ('a \<Rightarrow> 'a \<Rightarrow> bool)" |
948 |
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
|
949 |
|
46360
5cb81e3fa799
adding code generation for relpow by copying the ideas for code generation of funpow
bulwahn
parents:
46347
diff
changeset
|
950 |
lemma [code]: |
5cb81e3fa799
adding code generation for relpow by copying the ideas for code generation of funpow
bulwahn
parents:
46347
diff
changeset
|
951 |
"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
|
952 |
"relpow 0 R = Id" |
5cb81e3fa799
adding code generation for relpow by copying the ideas for code generation of funpow
bulwahn
parents:
46347
diff
changeset
|
953 |
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
|
954 |
|
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
|
955 |
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
|
956 |
"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
|
957 |
"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
|
958 |
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
|
959 |
|
46360
5cb81e3fa799
adding code generation for relpow by copying the ideas for code generation of funpow
bulwahn
parents:
46347
diff
changeset
|
960 |
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
|
961 |
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
|
962 |
|
63612 | 963 |
lemma relpow_1 [simp]: "R ^^ 1 = R" |
964 |
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
|
965 |
by simp |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
966 |
|
63612 | 967 |
lemma relpowp_1 [simp]: "P ^^ 1 = P" |
968 |
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
|
969 |
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
|
970 |
|
81282 | 971 |
lemma relpowp_Suc_0 [simp]: "P ^^ (Suc 0) = P" |
972 |
for P :: "'a \<Rightarrow> 'a \<Rightarrow> bool" |
|
973 |
by (auto) |
|
974 |
||
63404 | 975 |
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
|
976 |
by simp |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
977 |
|
63404 | 978 |
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
|
979 |
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
|
980 |
|
63404 | 981 |
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
|
982 |
by auto |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
983 |
|
81282 | 984 |
lemma relpowp_Suc_I[trans]: "(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
|
985 |
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
|
986 |
|
63404 | 987 |
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
|
988 |
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
|
989 |
|
81282 | 990 |
lemma relpowp_Suc_I2[trans]: "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
|
991 |
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
|
992 |
|
63404 | 993 |
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
|
994 |
by simp |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
995 |
|
63404 | 996 |
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
|
997 |
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
|
998 |
|
63404 | 999 |
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
|
1000 |
by auto |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
1001 |
|
63404 | 1002 |
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
|
1003 |
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
|
1004 |
|
46362 | 1005 |
lemma relpow_E: |
63612 | 1006 |
"(x, z) \<in> R ^^ n \<Longrightarrow> |
1007 |
(n = 0 \<Longrightarrow> x = z \<Longrightarrow> P) \<Longrightarrow> |
|
1008 |
(\<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
|
1009 |
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
|
1010 |
|
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
|
1011 |
lemma relpowp_E: |
63612 | 1012 |
"(P ^^ n) x z \<Longrightarrow> |
1013 |
(n = 0 \<Longrightarrow> x = z \<Longrightarrow> Q) \<Longrightarrow> |
|
1014 |
(\<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
|
1015 |
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
|
1016 |
|
63404 | 1017 |
lemma relpow_Suc_D2: "(x, z) \<in> R ^^ Suc n \<Longrightarrow> (\<exists>y. (x, y) \<in> R \<and> (y, z) \<in> R ^^ n)" |
63612 | 1018 |
by (induct n arbitrary: x z) |
1019 |
(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
|
1020 |
|
63404 | 1021 |
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
|
1022 |
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
|
1023 |
|
63404 | 1024 |
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 | 1025 |
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
|
1026 |
|
63404 | 1027 |
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
|
1028 |
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
|
1029 |
|
63404 | 1030 |
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
|
1031 |
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
|
1032 |
|
63404 | 1033 |
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
|
1034 |
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
|
1035 |
|
46362 | 1036 |
lemma relpow_E2: |
68618
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
1037 |
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
|
1038 |
"\<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
|
1039 |
shows "P" |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
1040 |
proof (cases n) |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
1041 |
case 0 |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
1042 |
with assms show ?thesis |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
1043 |
by simp |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
1044 |
next |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
1045 |
case (Suc m) |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
1046 |
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
|
1047 |
by force |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
1048 |
qed |
30954
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
1049 |
|
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
|
1050 |
lemma relpowp_E2: |
63612 | 1051 |
"(P ^^ n) x z \<Longrightarrow> |
1052 |
(n = 0 \<Longrightarrow> x = z \<Longrightarrow> Q) \<Longrightarrow> |
|
1053 |
(\<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
|
1054 |
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
|
1055 |
|
79611
97612262718a
added lemmas relpow_trans[trans] and relpowp_trans[trans]
desharna
parents:
77695
diff
changeset
|
1056 |
lemma relpowp_trans[trans]: "(R ^^ i) x y \<Longrightarrow> (R ^^ j) y z \<Longrightarrow> (R ^^ (i + j)) x z" |
97612262718a
added lemmas relpow_trans[trans] and relpowp_trans[trans]
desharna
parents:
77695
diff
changeset
|
1057 |
proof (induction i arbitrary: x) |
97612262718a
added lemmas relpow_trans[trans] and relpowp_trans[trans]
desharna
parents:
77695
diff
changeset
|
1058 |
case 0 |
97612262718a
added lemmas relpow_trans[trans] and relpowp_trans[trans]
desharna
parents:
77695
diff
changeset
|
1059 |
thus ?case by simp |
97612262718a
added lemmas relpow_trans[trans] and relpowp_trans[trans]
desharna
parents:
77695
diff
changeset
|
1060 |
next |
97612262718a
added lemmas relpow_trans[trans] and relpowp_trans[trans]
desharna
parents:
77695
diff
changeset
|
1061 |
case (Suc i) |
97612262718a
added lemmas relpow_trans[trans] and relpowp_trans[trans]
desharna
parents:
77695
diff
changeset
|
1062 |
obtain x' where "R x x'" and "(R ^^ i) x' y" |
97612262718a
added lemmas relpow_trans[trans] and relpowp_trans[trans]
desharna
parents:
77695
diff
changeset
|
1063 |
using \<open>(R ^^ Suc i) x y\<close>[THEN relpowp_Suc_D2] by auto |
97612262718a
added lemmas relpow_trans[trans] and relpowp_trans[trans]
desharna
parents:
77695
diff
changeset
|
1064 |
|
97612262718a
added lemmas relpow_trans[trans] and relpowp_trans[trans]
desharna
parents:
77695
diff
changeset
|
1065 |
show "(R ^^ (Suc i + j)) x z" |
97612262718a
added lemmas relpow_trans[trans] and relpowp_trans[trans]
desharna
parents:
77695
diff
changeset
|
1066 |
unfolding add_Suc |
97612262718a
added lemmas relpow_trans[trans] and relpowp_trans[trans]
desharna
parents:
77695
diff
changeset
|
1067 |
proof (rule relpowp_Suc_I2) |
97612262718a
added lemmas relpow_trans[trans] and relpowp_trans[trans]
desharna
parents:
77695
diff
changeset
|
1068 |
show "R x x'" |
97612262718a
added lemmas relpow_trans[trans] and relpowp_trans[trans]
desharna
parents:
77695
diff
changeset
|
1069 |
using \<open>R x x'\<close> . |
97612262718a
added lemmas relpow_trans[trans] and relpowp_trans[trans]
desharna
parents:
77695
diff
changeset
|
1070 |
next |
97612262718a
added lemmas relpow_trans[trans] and relpowp_trans[trans]
desharna
parents:
77695
diff
changeset
|
1071 |
show "(R ^^ (i + j)) x' z" |
97612262718a
added lemmas relpow_trans[trans] and relpowp_trans[trans]
desharna
parents:
77695
diff
changeset
|
1072 |
using Suc.IH[OF \<open>(R ^^ i) x' y\<close> \<open>(R ^^ j) y z\<close>] . |
97612262718a
added lemmas relpow_trans[trans] and relpowp_trans[trans]
desharna
parents:
77695
diff
changeset
|
1073 |
qed |
97612262718a
added lemmas relpow_trans[trans] and relpowp_trans[trans]
desharna
parents:
77695
diff
changeset
|
1074 |
qed |
97612262718a
added lemmas relpow_trans[trans] and relpowp_trans[trans]
desharna
parents:
77695
diff
changeset
|
1075 |
|
81282 | 1076 |
lemma relpowp_mono: |
1077 |
fixes x y :: 'a |
|
1078 |
shows "(\<And>x y. R x y \<Longrightarrow> S x y) \<Longrightarrow> (R ^^ n) x y \<Longrightarrow> (S ^^ n) x y" |
|
1079 |
by (induction n arbitrary: y) auto |
|
1080 |
||
79611
97612262718a
added lemmas relpow_trans[trans] and relpowp_trans[trans]
desharna
parents:
77695
diff
changeset
|
1081 |
lemma relpow_trans[trans]: "(x, y) \<in> R ^^ i \<Longrightarrow> (y, z) \<in> R ^^ j \<Longrightarrow> (x, z) \<in> R ^^ (i + j)" |
97612262718a
added lemmas relpow_trans[trans] and relpowp_trans[trans]
desharna
parents:
77695
diff
changeset
|
1082 |
using relpowp_trans[to_set] . |
97612262718a
added lemmas relpow_trans[trans] and relpowp_trans[trans]
desharna
parents:
77695
diff
changeset
|
1083 |
|
79668
9f36a31fe7ae
added lemmas relpowp_left_unique and relpow_left_unique
desharna
parents:
79667
diff
changeset
|
1084 |
lemma relpowp_left_unique: |
9f36a31fe7ae
added lemmas relpowp_left_unique and relpow_left_unique
desharna
parents:
79667
diff
changeset
|
1085 |
fixes R :: "'a \<Rightarrow> 'a \<Rightarrow> bool" and n :: nat and x y z :: 'a |
9f36a31fe7ae
added lemmas relpowp_left_unique and relpow_left_unique
desharna
parents:
79667
diff
changeset
|
1086 |
assumes lunique: "\<And>x y z. R x z \<Longrightarrow> R y z \<Longrightarrow> x = y" |
9f36a31fe7ae
added lemmas relpowp_left_unique and relpow_left_unique
desharna
parents:
79667
diff
changeset
|
1087 |
shows "(R ^^ n) x z \<Longrightarrow> (R ^^ n) y z \<Longrightarrow> x = y" |
9f36a31fe7ae
added lemmas relpowp_left_unique and relpow_left_unique
desharna
parents:
79667
diff
changeset
|
1088 |
proof (induction n arbitrary: x y z) |
9f36a31fe7ae
added lemmas relpowp_left_unique and relpow_left_unique
desharna
parents:
79667
diff
changeset
|
1089 |
case 0 |
9f36a31fe7ae
added lemmas relpowp_left_unique and relpow_left_unique
desharna
parents:
79667
diff
changeset
|
1090 |
thus ?case |
9f36a31fe7ae
added lemmas relpowp_left_unique and relpow_left_unique
desharna
parents:
79667
diff
changeset
|
1091 |
by simp |
9f36a31fe7ae
added lemmas relpowp_left_unique and relpow_left_unique
desharna
parents:
79667
diff
changeset
|
1092 |
next |
9f36a31fe7ae
added lemmas relpowp_left_unique and relpow_left_unique
desharna
parents:
79667
diff
changeset
|
1093 |
case (Suc n') |
9f36a31fe7ae
added lemmas relpowp_left_unique and relpow_left_unique
desharna
parents:
79667
diff
changeset
|
1094 |
then obtain x' y' :: 'a where |
9f36a31fe7ae
added lemmas relpowp_left_unique and relpow_left_unique
desharna
parents:
79667
diff
changeset
|
1095 |
"(R ^^ n') x x'" and "R x' z" and |
9f36a31fe7ae
added lemmas relpowp_left_unique and relpow_left_unique
desharna
parents:
79667
diff
changeset
|
1096 |
"(R ^^ n') y y'" and "R y' z" |
9f36a31fe7ae
added lemmas relpowp_left_unique and relpow_left_unique
desharna
parents:
79667
diff
changeset
|
1097 |
by auto |
9f36a31fe7ae
added lemmas relpowp_left_unique and relpow_left_unique
desharna
parents:
79667
diff
changeset
|
1098 |
|
9f36a31fe7ae
added lemmas relpowp_left_unique and relpow_left_unique
desharna
parents:
79667
diff
changeset
|
1099 |
have "x' = y'" |
9f36a31fe7ae
added lemmas relpowp_left_unique and relpow_left_unique
desharna
parents:
79667
diff
changeset
|
1100 |
using lunique[OF \<open>R x' z\<close> \<open>R y' z\<close>] . |
9f36a31fe7ae
added lemmas relpowp_left_unique and relpow_left_unique
desharna
parents:
79667
diff
changeset
|
1101 |
|
9f36a31fe7ae
added lemmas relpowp_left_unique and relpow_left_unique
desharna
parents:
79667
diff
changeset
|
1102 |
show "x = y" |
9f36a31fe7ae
added lemmas relpowp_left_unique and relpow_left_unique
desharna
parents:
79667
diff
changeset
|
1103 |
proof (rule Suc.IH) |
9f36a31fe7ae
added lemmas relpowp_left_unique and relpow_left_unique
desharna
parents:
79667
diff
changeset
|
1104 |
show "(R ^^ n') x x'" |
9f36a31fe7ae
added lemmas relpowp_left_unique and relpow_left_unique
desharna
parents:
79667
diff
changeset
|
1105 |
using \<open>(R ^^ n') x x'\<close> . |
9f36a31fe7ae
added lemmas relpowp_left_unique and relpow_left_unique
desharna
parents:
79667
diff
changeset
|
1106 |
next |
9f36a31fe7ae
added lemmas relpowp_left_unique and relpow_left_unique
desharna
parents:
79667
diff
changeset
|
1107 |
show "(R ^^ n') y x'" |
9f36a31fe7ae
added lemmas relpowp_left_unique and relpow_left_unique
desharna
parents:
79667
diff
changeset
|
1108 |
using \<open>(R ^^ n') y y'\<close> |
9f36a31fe7ae
added lemmas relpowp_left_unique and relpow_left_unique
desharna
parents:
79667
diff
changeset
|
1109 |
unfolding \<open>x' = y'\<close> . |
9f36a31fe7ae
added lemmas relpowp_left_unique and relpow_left_unique
desharna
parents:
79667
diff
changeset
|
1110 |
qed |
9f36a31fe7ae
added lemmas relpowp_left_unique and relpow_left_unique
desharna
parents:
79667
diff
changeset
|
1111 |
qed |
9f36a31fe7ae
added lemmas relpowp_left_unique and relpow_left_unique
desharna
parents:
79667
diff
changeset
|
1112 |
|
9f36a31fe7ae
added lemmas relpowp_left_unique and relpow_left_unique
desharna
parents:
79667
diff
changeset
|
1113 |
lemma relpow_left_unique: |
9f36a31fe7ae
added lemmas relpowp_left_unique and relpow_left_unique
desharna
parents:
79667
diff
changeset
|
1114 |
fixes R :: "('a \<times> 'a) set" and n :: nat and x y z :: 'a |
9f36a31fe7ae
added lemmas relpowp_left_unique and relpow_left_unique
desharna
parents:
79667
diff
changeset
|
1115 |
shows "(\<And>x y z. (x, z) \<in> R \<Longrightarrow> (y, z) \<in> R \<Longrightarrow> x = y) \<Longrightarrow> |
9f36a31fe7ae
added lemmas relpowp_left_unique and relpow_left_unique
desharna
parents:
79667
diff
changeset
|
1116 |
(x, z) \<in> R ^^ n \<Longrightarrow> (y, z) \<in> R ^^ n \<Longrightarrow> x = y" |
9f36a31fe7ae
added lemmas relpowp_left_unique and relpow_left_unique
desharna
parents:
79667
diff
changeset
|
1117 |
using relpowp_left_unique[to_set] . |
9f36a31fe7ae
added lemmas relpowp_left_unique and relpow_left_unique
desharna
parents:
79667
diff
changeset
|
1118 |
|
79667
d4c077078497
added lemmas relpowp_right_unique and relpow_right_unique
desharna
parents:
79611
diff
changeset
|
1119 |
lemma relpowp_right_unique: |
d4c077078497
added lemmas relpowp_right_unique and relpow_right_unique
desharna
parents:
79611
diff
changeset
|
1120 |
fixes R :: "'a \<Rightarrow> 'a \<Rightarrow> bool" and n :: nat and x y z :: 'a |
d4c077078497
added lemmas relpowp_right_unique and relpow_right_unique
desharna
parents:
79611
diff
changeset
|
1121 |
assumes runique: "\<And>x y z. R x y \<Longrightarrow> R x z \<Longrightarrow> y = z" |
d4c077078497
added lemmas relpowp_right_unique and relpow_right_unique
desharna
parents:
79611
diff
changeset
|
1122 |
shows "(R ^^ n) x y \<Longrightarrow> (R ^^ n) x z \<Longrightarrow> y = z" |
d4c077078497
added lemmas relpowp_right_unique and relpow_right_unique
desharna
parents:
79611
diff
changeset
|
1123 |
proof (induction n arbitrary: x y z) |
d4c077078497
added lemmas relpowp_right_unique and relpow_right_unique
desharna
parents:
79611
diff
changeset
|
1124 |
case 0 |
d4c077078497
added lemmas relpowp_right_unique and relpow_right_unique
desharna
parents:
79611
diff
changeset
|
1125 |
thus ?case |
d4c077078497
added lemmas relpowp_right_unique and relpow_right_unique
desharna
parents:
79611
diff
changeset
|
1126 |
by simp |
d4c077078497
added lemmas relpowp_right_unique and relpow_right_unique
desharna
parents:
79611
diff
changeset
|
1127 |
next |
d4c077078497
added lemmas relpowp_right_unique and relpow_right_unique
desharna
parents:
79611
diff
changeset
|
1128 |
case (Suc n') |
d4c077078497
added lemmas relpowp_right_unique and relpow_right_unique
desharna
parents:
79611
diff
changeset
|
1129 |
then obtain x' :: 'a where |
d4c077078497
added lemmas relpowp_right_unique and relpow_right_unique
desharna
parents:
79611
diff
changeset
|
1130 |
"(R ^^ n') x x'" and "R x' y" and "R x' z" |
d4c077078497
added lemmas relpowp_right_unique and relpow_right_unique
desharna
parents:
79611
diff
changeset
|
1131 |
by auto |
d4c077078497
added lemmas relpowp_right_unique and relpow_right_unique
desharna
parents:
79611
diff
changeset
|
1132 |
thus "y = z" |
d4c077078497
added lemmas relpowp_right_unique and relpow_right_unique
desharna
parents:
79611
diff
changeset
|
1133 |
using runique by simp |
d4c077078497
added lemmas relpowp_right_unique and relpow_right_unique
desharna
parents:
79611
diff
changeset
|
1134 |
qed |
d4c077078497
added lemmas relpowp_right_unique and relpow_right_unique
desharna
parents:
79611
diff
changeset
|
1135 |
|
d4c077078497
added lemmas relpowp_right_unique and relpow_right_unique
desharna
parents:
79611
diff
changeset
|
1136 |
lemma relpow_right_unique: |
d4c077078497
added lemmas relpowp_right_unique and relpow_right_unique
desharna
parents:
79611
diff
changeset
|
1137 |
fixes R :: "('a \<times> 'a) set" and n :: nat and x y z :: 'a |
d4c077078497
added lemmas relpowp_right_unique and relpow_right_unique
desharna
parents:
79611
diff
changeset
|
1138 |
shows "(\<And>x y z. (x, y) \<in> R \<Longrightarrow> (x, z) \<in> R \<Longrightarrow> y = z) \<Longrightarrow> |
d4c077078497
added lemmas relpowp_right_unique and relpow_right_unique
desharna
parents:
79611
diff
changeset
|
1139 |
(x, y) \<in> (R ^^ n) \<Longrightarrow> (x, z) \<in> (R ^^ n) \<Longrightarrow> y = z" |
d4c077078497
added lemmas relpowp_right_unique and relpow_right_unique
desharna
parents:
79611
diff
changeset
|
1140 |
using relpowp_right_unique[to_set] . |
d4c077078497
added lemmas relpowp_right_unique and relpow_right_unique
desharna
parents:
79611
diff
changeset
|
1141 |
|
63404 | 1142 |
lemma relpow_add: "R ^^ (m + n) = R^^m O R^^n" |
45976 | 1143 |
by (induct n) auto |
31351 | 1144 |
|
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
|
1145 |
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
|
1146 |
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
|
1147 |
|
46362 | 1148 |
lemma relpow_commute: "R O R ^^ n = R ^^ n O R" |
63404 | 1149 |
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
|
1150 |
|
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
|
1151 |
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
|
1152 |
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
|
1153 |
|
81282 | 1154 |
lemma relpowp_Suc_left: "R ^^ Suc n = R OO (R ^^ n)" |
1155 |
by (simp add: relpowp_commute) |
|
1156 |
||
63404 | 1157 |
lemma relpow_empty: "0 < n \<Longrightarrow> ({} :: ('a \<times> 'a) set) ^^ n = {}" |
45153 | 1158 |
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
|
1159 |
|
63404 | 1160 |
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
|
1161 |
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
|
1162 |
|
46362 | 1163 |
lemma rtrancl_imp_UN_relpow: |
63404 | 1164 |
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
|
1165 |
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
|
1166 |
proof (cases p) |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
1167 |
case (Pair x y) |
63404 | 1168 |
with assms have "(x, y) \<in> R\<^sup>*" by simp |
63612 | 1169 |
then have "(x, y) \<in> (\<Union>n. R ^^ n)" |
1170 |
proof induct |
|
63404 | 1171 |
case base |
1172 |
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
|
1173 |
next |
63404 | 1174 |
case step |
1175 |
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
|
1176 |
qed |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
1177 |
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
|
1178 |
qed |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
1179 |
|
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
|
1180 |
lemma rtranclp_imp_Sup_relpowp: |
63404 | 1181 |
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
|
1182 |
shows "(\<Squnion>n. P ^^ n) x y" |
61424
c3658c18b7bc
prod_case as canonical name for product type eliminator
haftmann
parents:
61378
diff
changeset
|
1183 |
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
|
1184 |
|
46362 | 1185 |
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
|
1186 |
assumes "p \<in> R ^^ n" |
63404 | 1187 |
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
|
1188 |
proof (cases p) |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
1189 |
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
|
1190 |
with assms have "(x, y) \<in> R ^^ n" by simp |
63612 | 1191 |
then have "(x, y) \<in> R\<^sup>*" |
1192 |
proof (induct n arbitrary: x y) |
|
63404 | 1193 |
case 0 |
1194 |
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
|
1195 |
next |
63404 | 1196 |
case Suc |
1197 |
then show ?case |
|
46362 | 1198 |
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
|
1199 |
qed |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
1200 |
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
|
1201 |
qed |
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
1202 |
|
63404 | 1203 |
lemma relpowp_imp_rtranclp: "(P ^^ n) x y \<Longrightarrow> (P\<^sup>*\<^sup>*) x y" |
1204 |
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
|
1205 |
|
63404 | 1206 |
lemma rtrancl_is_UN_relpow: "R\<^sup>* = (\<Union>n. R ^^ n)" |
46362 | 1207 |
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
|
1208 |
|
63404 | 1209 |
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
|
1210 |
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
|
1211 |
|
63404 | 1212 |
lemma rtrancl_power: "p \<in> R\<^sup>* \<longleftrightarrow> (\<exists>n. p \<in> R ^^ n)" |
46362 | 1213 |
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
|
1214 |
|
63404 | 1215 |
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
|
1216 |
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
|
1217 |
|
63404 | 1218 |
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
|
1219 |
proof - |
71627 | 1220 |
have "(a, b) \<in> R\<^sup>+ \<longleftrightarrow> (\<exists>n>0. (a, b) \<in> R ^^ n)" for a b |
68618
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
1221 |
proof safe |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
1222 |
show "(a, b) \<in> R\<^sup>+ \<Longrightarrow> \<exists>n>0. (a, b) \<in> R ^^ n" |
71627 | 1223 |
by (fastforce simp: rtrancl_is_UN_relpow relcomp_unfold dest: tranclD2) |
68618
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
1224 |
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
|
1225 |
proof (cases n) |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
1226 |
case (Suc m) |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
1227 |
with that show ?thesis |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
1228 |
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
|
1229 |
qed (use that in auto) |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
1230 |
qed |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
1231 |
then show ?thesis |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
1232 |
by (cases p) auto |
3db8520941a4
de-applying (mostly Set_Interval)
paulson <lp15@cam.ac.uk>
parents:
68456
diff
changeset
|
1233 |
qed |
30954
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
haftmann
parents:
30549
diff
changeset
|
1234 |
|
63404 | 1235 |
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
|
1236 |
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
|
1237 |
|
63404 | 1238 |
lemma rtrancl_imp_relpow: "p \<in> R\<^sup>* \<Longrightarrow> \<exists>n. p \<in> R ^^ n" |
46362 | 1239 |
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
|
1240 |
|
63404 | 1241 |
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
|
1242 |
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
|
1243 |
|
63404 | 1244 |
text \<open>By Sternagel/Thiemann:\<close> |
1245 |
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 | 1246 |
proof (induct n arbitrary: b) |
63404 | 1247 |
case 0 |
1248 |
show ?case by auto |
|
41987 | 1249 |
next |
1250 |
case (Suc n) |
|
1251 |
show ?case |
|
75669
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
75652
diff
changeset
|
1252 |
proof - |
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
75652
diff
changeset
|
1253 |
have "(\<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> |
63404 | 1254 |
(\<exists>f. f 0 = a \<and> f(Suc n) = b \<and> (\<forall>i<Suc n. (f i, f (Suc i)) \<in> R))" |
75669
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
75652
diff
changeset
|
1255 |
(is "?l \<longleftrightarrow> ?r") |
41987 | 1256 |
proof |
1257 |
assume ?l |
|
63404 | 1258 |
then obtain c f |
1259 |
where 1: "f 0 = a" "f n = c" "\<And>i. i < n \<Longrightarrow> (f i, f (Suc i)) \<in> R" "(c,b) \<in> R" |
|
1260 |
by auto |
|
41987 | 1261 |
let ?g = "\<lambda> m. if m = Suc n then b else f m" |
63404 | 1262 |
show ?r by (rule exI[of _ ?g]) (simp add: 1) |
41987 | 1263 |
next |
1264 |
assume ?r |
|
63404 | 1265 |
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" |
1266 |
by auto |
|
75669
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
75652
diff
changeset
|
1267 |
show ?l by (rule exI[of _ "f n"], rule conjI, rule exI[of _ f], auto simp add: 1) |
41987 | 1268 |
qed |
75669
43f5dfb7fa35
tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents:
75652
diff
changeset
|
1269 |
then show ?thesis by (simp add: relcomp_unfold Suc) |
41987 | 1270 |
qed |
1271 |
qed |
|
1272 |
||
63404 | 1273 |
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
|
1274 |
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
|
1275 |
|
46362 | 1276 |
lemma relpow_finite_bounded1: |
63404 | 1277 |
fixes R :: "('a \<times> 'a) set" |
1278 |
assumes "finite R" and "k > 0" |
|
63612 | 1279 |
shows "R^^k \<subseteq> (\<Union>n\<in>{n. 0 < n \<and> n \<le> card R}. R^^n)" |
1280 |
(is "_ \<subseteq> ?r") |
|
63404 | 1281 |
proof - |
1282 |
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 |
|
1283 |
proof (induct k arbitrary: b) |
|
1284 |
case 0 |
|
1285 |
then have "R \<noteq> {}" by auto |
|
1286 |
with card_0_eq[OF \<open>finite R\<close>] have "card R \<ge> Suc 0" by auto |
|
1287 |
then show ?case using 0 by force |
|
1288 |
next |
|
1289 |
case (Suc k) |
|
1290 |
then obtain a' where "(a, a') \<in> R^^(Suc k)" and "(a', b) \<in> R" |
|
1291 |
by auto |
|
1292 |
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" |
|
1293 |
by auto |
|
1294 |
have "(a, b) \<in> R^^(Suc n)" |
|
1295 |
using \<open>(a, a') \<in> R^^n\<close> and \<open>(a', b)\<in> R\<close> by auto |
|
1296 |
from \<open>n \<le> card R\<close> consider "n < card R" | "n = card R" by force |
|
1297 |
then show ?case |
|
1298 |
proof cases |
|
1299 |
case 1 |
|
1300 |
then show ?thesis |
|
1301 |
using \<open>(a, b) \<in> R^^(Suc n)\<close> Suc_leI[OF \<open>n < card R\<close>] by blast |
|
41987 | 1302 |
next |
63404 | 1303 |
case 2 |
1304 |
from \<open>(a, b) \<in> R ^^ (Suc n)\<close> [unfolded relpow_fun_conv] |
|
1305 |
obtain f where "f 0 = a" and "f (Suc n) = b" |
|
1306 |
and steps: "\<And>i. i \<le> n \<Longrightarrow> (f i, f (Suc i)) \<in> R" by auto |
|
1307 |
let ?p = "\<lambda>i. (f i, f(Suc i))" |
|
1308 |
let ?N = "{i. i \<le> n}" |
|
1309 |
have "?p ` ?N \<subseteq> R" |
|
1310 |
using steps by auto |
|
1311 |
from card_mono[OF assms(1) this] have "card (?p ` ?N) \<le> card R" . |
|
1312 |
also have "\<dots> < card ?N" |
|
1313 |
using \<open>n = card R\<close> by simp |
|
1314 |
finally have "\<not> inj_on ?p ?N" |
|
1315 |
by (rule pigeonhole) |
|
1316 |
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" |
|
1317 |
by (auto simp: inj_on_def) |
|
1318 |
let ?i = "min i j" |
|
1319 |
let ?j = "max i j" |
|
1320 |
have i: "?i \<le> n" and j: "?j \<le> n" and pij: "?p ?i = ?p ?j" and ij: "?i < ?j" |
|
1321 |
using i j ij pij unfolding min_def max_def by auto |
|
1322 |
from i j pij ij obtain i j where i: "i \<le> n" and j: "j \<le> n" and ij: "i < j" |
|
1323 |
and pij: "?p i = ?p j" |
|
1324 |
by blast |
|
1325 |
let ?g = "\<lambda>l. if l \<le> i then f l else f (l + (j - i))" |
|
1326 |
let ?n = "Suc (n - (j - i))" |
|
1327 |
have abl: "(a, b) \<in> R ^^ ?n" |
|
1328 |
unfolding relpow_fun_conv |
|
1329 |
proof (rule exI[of _ ?g], intro conjI impI allI) |
|
1330 |
show "?g ?n = b" |
|
1331 |
using \<open>f(Suc n) = b\<close> j ij by auto |
|
1332 |
next |
|
1333 |
fix k |
|
1334 |
assume "k < ?n" |
|
1335 |
show "(?g k, ?g (Suc k)) \<in> R" |
|
1336 |
proof (cases "k < i") |
|
1337 |
case True |
|
1338 |
with i have "k \<le> n" |
|
1339 |
by auto |
|
1340 |
from steps[OF this] show ?thesis |
|
1341 |
using True by simp |
|
41987 | 1342 |
next |
63404 | 1343 |
case False |
1344 |
then have "i \<le> k" by auto |
|
1345 |
show ?thesis |
|
1346 |
proof (cases "k = i") |
|
41987 | 1347 |
case True |
63404 | 1348 |
then show ?thesis |
1349 |
using ij pij steps[OF i] by simp |
|
41987 | 1350 |
next |
1351 |
case False |
|
63404 | 1352 |
with \<open>i \<le> k\<close> have "i < k" by auto |
1353 |
then have small: "k + (j - i) \<le> n" |
|
1354 |
using \<open>k<?n\<close> by arith |
|
41987 | 1355 |
show ?thesis |
63404 | 1356 |
using steps[OF small] \<open>i<k\<close> by auto |
41987 | 1357 |
qed |
63404 | 1358 |
qed |
1359 |
qed (simp add: \<open>f 0 = a\<close>) |
|
1360 |
moreover have "?n \<le> n" |
|
1361 |
using i j ij by arith |
|
1362 |
ultimately show ?thesis |
|
1363 |
using \<open>n = card R\<close> by blast |
|
41987 | 1364 |
qed |
63404 | 1365 |
qed |
1366 |
then show ?thesis |
|
1367 |
using gr0_implies_Suc[OF \<open>k > 0\<close>] by auto |
|
41987 | 1368 |
qed |
1369 |
||
46362 | 1370 |
lemma relpow_finite_bounded: |
63404 | 1371 |
fixes R :: "('a \<times> 'a) set" |
1372 |
assumes "finite R" |
|
69276 | 1373 |
shows "R^^k \<subseteq> (\<Union>n\<in>{n. n \<le> card R}. R^^n)" |
71627 | 1374 |
proof (cases k) |
1375 |
case (Suc k') |
|
1376 |
then show ?thesis |
|
1377 |
using relpow_finite_bounded1[OF assms, of k] by auto |
|
1378 |
qed force |
|
41987 | 1379 |
|
63404 | 1380 |
lemma rtrancl_finite_eq_relpow: "finite R \<Longrightarrow> R\<^sup>* = (\<Union>n\<in>{n. n \<le> card R}. R^^n)" |
1381 |
by (fastforce simp: rtrancl_power dest: relpow_finite_bounded) |
|
41987 | 1382 |
|
71627 | 1383 |
lemma trancl_finite_eq_relpow: |
1384 |
assumes "finite R" shows "R\<^sup>+ = (\<Union>n\<in>{n. 0 < n \<and> n \<le> card R}. R^^n)" |
|
1385 |
proof - |
|
1386 |
have "\<And>a b n. \<lbrakk>0 < n; (a, b) \<in> R ^^ n\<rbrakk> \<Longrightarrow> \<exists>x>0. x \<le> card R \<and> (a, b) \<in> R ^^ x" |
|
1387 |
using assms by (auto dest: relpow_finite_bounded1) |
|
1388 |
then show ?thesis |
|
1389 |
by (auto simp: trancl_power) |
|
1390 |
qed |
|
41987 | 1391 |
|
47433
07f4bf913230
renamed "rel_comp" to "relcomp" (to be consistent with, e.g., "relpow")
griff
parents:
47202
diff
changeset
|
1392 |
lemma finite_relcomp[simp,intro]: |
63404 | 1393 |
assumes "finite R" and "finite S" |
1394 |
shows "finite (R O S)" |
|
41987 | 1395 |
proof- |
62343
24106dc44def
prefer abbreviations for compound operators INFIMUM and SUPREMUM
haftmann
parents:
62093
diff
changeset
|
1396 |
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
|
1397 |
by (force simp: split_def image_constant_conv split: if_splits) |
63404 | 1398 |
then show ?thesis |
1399 |
using assms by clarsimp |
|
41987 | 1400 |
qed |
1401 |
||
63404 | 1402 |
lemma finite_relpow [simp, intro]: |
1403 |
fixes R :: "('a \<times> 'a) set" |
|
1404 |
assumes "finite R" |
|
1405 |
shows "n > 0 \<Longrightarrow> finite (R^^n)" |
|
63612 | 1406 |
proof (induct n) |
1407 |
case 0 |
|
1408 |
then show ?case by simp |
|
1409 |
next |
|
1410 |
case (Suc n) |
|
1411 |
then show ?case by (cases n) (use assms in simp_all) |
|
1412 |
qed |
|
41987 | 1413 |
|
46362 | 1414 |
lemma single_valued_relpow: |
63404 | 1415 |
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
|
1416 |
shows "single_valued R \<Longrightarrow> single_valued (R ^^ n)" |
63612 | 1417 |
proof (induct n arbitrary: R) |
1418 |
case 0 |
|
1419 |
then show ?case by simp |
|
1420 |
next |
|
1421 |
case (Suc n) |
|
1422 |
show ?case |
|
1423 |
by (rule single_valuedI) |
|
1424 |
(use Suc in \<open>fast dest: single_valuedD elim: relpow_Suc_E\<close>) |
|
1425 |
qed |
|
15551 | 1426 |
|
45140 | 1427 |
|
60758 | 1428 |
subsection \<open>Bounded transitive closure\<close> |
45140 | 1429 |
|
1430 |
definition ntrancl :: "nat \<Rightarrow> ('a \<times> 'a) set \<Rightarrow> ('a \<times> 'a) set" |
|
63404 | 1431 |
where "ntrancl n R = (\<Union>i\<in>{i. 0 < i \<and> i \<le> Suc n}. R ^^ i)" |
45140 | 1432 |
|
63404 | 1433 |
lemma ntrancl_Zero [simp, code]: "ntrancl 0 R = R" |
45140 | 1434 |
proof |
1435 |
show "R \<subseteq> ntrancl 0 R" |
|
1436 |
unfolding ntrancl_def by fastforce |
|
63404 | 1437 |
have "0 < i \<and> i \<le> Suc 0 \<longleftrightarrow> i = 1" for i |
1438 |
by auto |
|
1439 |
then show "ntrancl 0 R \<le> R" |
|
45140 | 1440 |
unfolding ntrancl_def by auto |
1441 |
qed |
|
1442 |
||
63404 | 1443 |
lemma ntrancl_Suc [simp]: "ntrancl (Suc n) R = ntrancl n R O (Id \<union> R)" |
45140 | 1444 |
proof |
63612 | 1445 |
have "(a, b) \<in> ntrancl n R O (Id \<union> R)" if "(a, b) \<in> ntrancl (Suc n) R" for a b |
1446 |
proof - |
|
1447 |
from that obtain i where "0 < i" "i \<le> Suc (Suc n)" "(a, b) \<in> R ^^ i" |
|
45140 | 1448 |
unfolding ntrancl_def by auto |
63612 | 1449 |
show ?thesis |
45140 | 1450 |
proof (cases "i = 1") |
1451 |
case True |
|
71627 | 1452 |
with \<open>(a, b) \<in> R ^^ i\<close> show ?thesis |
63612 | 1453 |
by (auto simp: ntrancl_def) |
45140 | 1454 |
next |
1455 |
case False |
|
63612 | 1456 |
with \<open>0 < i\<close> obtain j where j: "i = Suc j" "0 < j" |
45140 | 1457 |
by (cases i) auto |
63612 | 1458 |
with \<open>(a, b) \<in> R ^^ i\<close> obtain c where c1: "(a, c) \<in> R ^^ j" and c2: "(c, b) \<in> R" |
45140 | 1459 |
by auto |
60758 | 1460 |
from c1 j \<open>i \<le> Suc (Suc n)\<close> have "(a, c) \<in> ntrancl n R" |
63612 | 1461 |
by (fastforce simp: ntrancl_def) |
1462 |
with c2 show ?thesis by fastforce |
|
45140 | 1463 |
qed |
63612 | 1464 |
qed |
63404 | 1465 |
then show "ntrancl (Suc n) R \<subseteq> ntrancl n R O (Id \<union> R)" |
45140 | 1466 |
by auto |
1467 |
show "ntrancl n R O (Id \<union> R) \<subseteq> ntrancl (Suc n) R" |
|
63612 | 1468 |
by (fastforce simp: ntrancl_def) |
45140 | 1469 |
qed |
1470 |
||
63404 | 1471 |
lemma [code]: "ntrancl (Suc n) r = (let r' = ntrancl n r in r' \<union> r' O r)" |
1472 |
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
|
1473 |
|
63404 | 1474 |
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
|
1475 |
by (cases "card R") (auto simp: trancl_finite_eq_relpow relpow_empty ntrancl_def) |
45140 | 1476 |
|
1477 |
||
60758 | 1478 |
subsection \<open>Acyclic relations\<close> |
45139 | 1479 |
|
63404 | 1480 |
definition acyclic :: "('a \<times> 'a) set \<Rightarrow> bool" |
1481 |
where "acyclic r \<longleftrightarrow> (\<forall>x. (x,x) \<notin> r\<^sup>+)" |
|
45139 | 1482 |
|
63404 | 1483 |
abbreviation acyclicP :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> bool" |
1484 |
where "acyclicP r \<equiv> acyclic {(x, y). r x y}" |
|
45139 | 1485 |
|
63404 | 1486 |
lemma acyclic_irrefl [code]: "acyclic r \<longleftrightarrow> irrefl (r\<^sup>+)" |
45139 | 1487 |
by (simp add: acyclic_def irrefl_def) |
1488 |
||
63404 | 1489 |
lemma acyclicI: "\<forall>x. (x, x) \<notin> r\<^sup>+ \<Longrightarrow> acyclic r" |
45139 | 1490 |
by (simp add: acyclic_def) |
1491 |
||
70749
5d06b7bb9d22
More type class generalisations. Note that linorder_antisym_conv1 and linorder_antisym_conv2 no longer exist.
paulson <lp15@cam.ac.uk>
parents:
69605
diff
changeset
|
1492 |
lemma (in preorder) acyclicI_order: |
54412 | 1493 |
assumes *: "\<And>a b. (a, b) \<in> r \<Longrightarrow> f b < f a" |
1494 |
shows "acyclic r" |
|
1495 |
proof - |
|
63404 | 1496 |
have "f b < f a" if "(a, b) \<in> r\<^sup>+" for a b |
1497 |
using that by induct (auto intro: * less_trans) |
|
54412 | 1498 |
then show ?thesis |
1499 |
by (auto intro!: acyclicI) |
|
1500 |
qed |
|
1501 |
||
63404 | 1502 |
lemma acyclic_insert [iff]: "acyclic (insert (y, x) r) \<longleftrightarrow> acyclic r \<and> (x, y) \<notin> r\<^sup>*" |
63612 | 1503 |
by (simp add: acyclic_def trancl_insert) (blast intro: rtrancl_trans) |
45139 | 1504 |
|
63404 | 1505 |
lemma acyclic_converse [iff]: "acyclic (r\<inverse>) \<longleftrightarrow> acyclic r" |
1506 |
by (simp add: acyclic_def trancl_converse) |
|
45139 | 1507 |
|
1508 |
lemmas acyclicP_converse [iff] = acyclic_converse [to_pred] |
|
1509 |
||
63404 | 1510 |
lemma acyclic_impl_antisym_rtrancl: "acyclic r \<Longrightarrow> antisym (r\<^sup>*)" |
63612 | 1511 |
by (simp add: acyclic_def antisym_def) |
1512 |
(blast elim: rtranclE intro: rtrancl_into_trancl1 rtrancl_trancl_trancl) |
|
45139 | 1513 |
|
1514 |
(* Other direction: |
|
1515 |
acyclic = no loops |
|
1516 |
antisym = only self loops |
|
63404 | 1517 |
Goalw [acyclic_def,antisym_def] "antisym( r\<^sup>* ) \<Longrightarrow> acyclic(r - Id) |
1518 |
\<Longrightarrow> antisym( r\<^sup>* ) = acyclic(r - Id)"; |
|
45139 | 1519 |
*) |
1520 |
||
63404 | 1521 |
lemma acyclic_subset: "acyclic s \<Longrightarrow> r \<subseteq> s \<Longrightarrow> acyclic r" |
1522 |
unfolding acyclic_def by (blast intro: trancl_mono) |
|
45139 | 1523 |
|
1524 |
||
60758 | 1525 |
subsection \<open>Setup of transitivity reasoner\<close> |
15076
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
ballarin
parents:
14565
diff
changeset
|
1526 |
|
60758 | 1527 |
ML \<open> |
32215 | 1528 |
structure Trancl_Tac = Trancl_Tac |
1529 |
( |
|
1530 |
val r_into_trancl = @{thm trancl.r_into_trancl}; |
|
1531 |
val trancl_trans = @{thm trancl_trans}; |
|
1532 |
val rtrancl_refl = @{thm rtrancl.rtrancl_refl}; |
|
1533 |
val r_into_rtrancl = @{thm r_into_rtrancl}; |
|
1534 |
val trancl_into_rtrancl = @{thm trancl_into_rtrancl}; |
|
1535 |
val rtrancl_trancl_trancl = @{thm rtrancl_trancl_trancl}; |
|
1536 |
val trancl_rtrancl_trancl = @{thm trancl_rtrancl_trancl}; |
|
1537 |
val rtrancl_trans = @{thm rtrancl_trans}; |
|
15096 | 1538 |
|
74345 | 1539 |
fun decomp \<^Const_>\<open>Trueprop for t\<close> = |
63404 | 1540 |
let |
74375 | 1541 |
fun dec \<^Const_>\<open>Set.member _ for \<^Const_>\<open>Pair _ _ for a b\<close> rel\<close> = |
63404 | 1542 |
let |
74345 | 1543 |
fun decr \<^Const_>\<open>rtrancl _ for r\<close> = (r,"r*") |
1544 |
| decr \<^Const_>\<open>trancl _ for r\<close> = (r,"r+") |
|
63404 | 1545 |
| decr r = (r,"r"); |
1546 |
val (rel,r) = decr (Envir.beta_eta_contract rel); |
|
1547 |
in SOME (a,b,rel,r) end |
|
1548 |
| dec _ = NONE |
|
1549 |
in dec t end |
|
30107
f3b3b0e3d184
Fixed nonexhaustive match problem in decomp, to make it fail more gracefully
berghofe
parents:
29609
diff
changeset
|
1550 |
| decomp _ = NONE; |
32215 | 1551 |
); |
15076
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
ballarin
parents:
14565
diff
changeset
|
1552 |
|
32215 | 1553 |
structure Tranclp_Tac = Trancl_Tac |
1554 |
( |
|
1555 |
val r_into_trancl = @{thm tranclp.r_into_trancl}; |
|
1556 |
val trancl_trans = @{thm tranclp_trans}; |
|
1557 |
val rtrancl_refl = @{thm rtranclp.rtrancl_refl}; |
|
1558 |
val r_into_rtrancl = @{thm r_into_rtranclp}; |
|
1559 |
val trancl_into_rtrancl = @{thm tranclp_into_rtranclp}; |
|
1560 |
val rtrancl_trancl_trancl = @{thm rtranclp_tranclp_tranclp}; |
|
1561 |
val trancl_rtrancl_trancl = @{thm tranclp_rtranclp_tranclp}; |
|
1562 |
val rtrancl_trans = @{thm rtranclp_trans}; |
|
22262 | 1563 |
|
74345 | 1564 |
fun decomp \<^Const_>\<open>Trueprop for t\<close> = |
63404 | 1565 |
let |
1566 |
fun dec (rel $ a $ b) = |
|
1567 |
let |
|
74345 | 1568 |
fun decr \<^Const_>\<open>rtranclp _ for r\<close> = (r,"r*") |
1569 |
| decr \<^Const_>\<open>tranclp _ for r\<close> = (r,"r+") |
|
63404 | 1570 |
| decr r = (r,"r"); |
1571 |
val (rel,r) = decr rel; |
|
1572 |
in SOME (a, b, rel, r) end |
|
1573 |
| dec _ = NONE |
|
1574 |
in dec t end |
|
30107
f3b3b0e3d184
Fixed nonexhaustive match problem in decomp, to make it fail more gracefully
berghofe
parents:
29609
diff
changeset
|
1575 |
| decomp _ = NONE; |
32215 | 1576 |
); |
60758 | 1577 |
\<close> |
22262 | 1578 |
|
60758 | 1579 |
setup \<open> |
51717
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
50616
diff
changeset
|
1580 |
map_theory_simpset (fn ctxt => ctxt |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
50616
diff
changeset
|
1581 |
addSolver (mk_solver "Trancl" Trancl_Tac.trancl_tac) |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
50616
diff
changeset
|
1582 |
addSolver (mk_solver "Rtrancl" Trancl_Tac.rtrancl_tac) |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
50616
diff
changeset
|
1583 |
addSolver (mk_solver "Tranclp" Tranclp_Tac.trancl_tac) |
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents:
50616
diff
changeset
|
1584 |
addSolver (mk_solver "Rtranclp" Tranclp_Tac.rtrancl_tac)) |
60758 | 1585 |
\<close> |
15076
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
ballarin
parents:
14565
diff
changeset
|
1586 |
|
71393
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
1587 |
lemma transp_rtranclp [simp]: "transp R\<^sup>*\<^sup>*" |
fce780f9c9c6
new examples of BNF lifting across quotients using a new theory of confluence,
traytel
parents:
70749
diff
changeset
|
1588 |
by(auto simp add: transp_def) |
32215 | 1589 |
|
60758 | 1590 |
text \<open>Optional methods.\<close> |
15076
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
ballarin
parents:
14565
diff
changeset
|
1591 |
|
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
ballarin
parents:
14565
diff
changeset
|
1592 |
method_setup trancl = |
60758 | 1593 |
\<open>Scan.succeed (SIMPLE_METHOD' o Trancl_Tac.trancl_tac)\<close> |
1594 |
\<open>simple transitivity reasoner\<close> |
|
15076
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
ballarin
parents:
14565
diff
changeset
|
1595 |
method_setup rtrancl = |
60758 | 1596 |
\<open>Scan.succeed (SIMPLE_METHOD' o Trancl_Tac.rtrancl_tac)\<close> |
1597 |
\<open>simple transitivity reasoner\<close> |
|
22262 | 1598 |
method_setup tranclp = |
60758 | 1599 |
\<open>Scan.succeed (SIMPLE_METHOD' o Tranclp_Tac.trancl_tac)\<close> |
1600 |
\<open>simple transitivity reasoner (predicate version)\<close> |
|
22262 | 1601 |
method_setup rtranclp = |
60758 | 1602 |
\<open>Scan.succeed (SIMPLE_METHOD' o Tranclp_Tac.rtrancl_tac)\<close> |
1603 |
\<open>simple transitivity reasoner (predicate version)\<close> |
|
15076
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
ballarin
parents:
14565
diff
changeset
|
1604 |
|
10213 | 1605 |
end |