| author | haftmann | 
| Tue, 02 Jun 2009 15:53:05 +0200 | |
| changeset 31377 | a48f9ef9de15 | 
| parent 31351 | b8d856545a02 | 
| child 31576 | 525073f7aff6 | 
| permissions | -rw-r--r-- | 
| 10213 | 1 | (* Title: HOL/Transitive_Closure.thy | 
| 2 | Author: Lawrence C Paulson, Cambridge University Computer Laboratory | |
| 3 | Copyright 1992 University of Cambridge | |
| 4 | *) | |
| 5 | ||
| 12691 | 6 | header {* Reflexive and Transitive closure of a relation *}
 | 
| 7 | ||
| 15131 | 8 | theory Transitive_Closure | 
| 22262 | 9 | imports Predicate | 
| 21589 | 10 | uses "~~/src/Provers/trancl.ML" | 
| 15131 | 11 | begin | 
| 12691 | 12 | |
| 13 | text {*
 | |
| 14 |   @{text rtrancl} is reflexive/transitive closure,
 | |
| 15 |   @{text trancl} is transitive closure,
 | |
| 16 |   @{text reflcl} is reflexive closure.
 | |
| 17 | ||
| 18 |   These postfix operators have \emph{maximum priority}, forcing their
 | |
| 19 | operands to be atomic. | |
| 20 | *} | |
| 10213 | 21 | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 22 | inductive_set | 
| 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 23 |   rtrancl :: "('a \<times> 'a) set \<Rightarrow> ('a \<times> 'a) set"   ("(_^*)" [1000] 999)
 | 
| 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 24 |   for r :: "('a \<times> 'a) set"
 | 
| 22262 | 25 | where | 
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 26 | rtrancl_refl [intro!, Pure.intro!, simp]: "(a, a) : r^*" | 
| 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 27 | | rtrancl_into_rtrancl [Pure.intro]: "(a, b) : r^* ==> (b, c) : r ==> (a, c) : r^*" | 
| 11327 
cd2c27a23df1
Transitive closure is now defined via "inductive".
 berghofe parents: 
11115diff
changeset | 28 | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 29 | inductive_set | 
| 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 30 |   trancl :: "('a \<times> 'a) set \<Rightarrow> ('a \<times> 'a) set"  ("(_^+)" [1000] 999)
 | 
| 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 31 |   for r :: "('a \<times> 'a) set"
 | 
| 22262 | 32 | where | 
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 33 | r_into_trancl [intro, Pure.intro]: "(a, b) : r ==> (a, b) : r^+" | 
| 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 34 | | trancl_into_trancl [Pure.intro]: "(a, b) : r^+ ==> (b, c) : r ==> (a, c) : r^+" | 
| 13704 
854501b1e957
Transitive closure is now defined inductively as well.
 berghofe parents: 
12937diff
changeset | 35 | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 36 | notation | 
| 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 37 |   rtranclp  ("(_^**)" [1000] 1000) and
 | 
| 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 38 |   tranclp  ("(_^++)" [1000] 1000)
 | 
| 10213 | 39 | |
| 19656 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19623diff
changeset | 40 | abbreviation | 
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 41 |   reflclp :: "('a => 'a => bool) => 'a => 'a => bool"  ("(_^==)" [1000] 1000) where
 | 
| 22422 
ee19cdb07528
stepping towards uniform lattice theory development in HOL
 haftmann parents: 
22262diff
changeset | 42 | "r^== == sup r op =" | 
| 22262 | 43 | |
| 44 | abbreviation | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 45 |   reflcl :: "('a \<times> 'a) set => ('a \<times> 'a) set"  ("(_^=)" [1000] 999) where
 | 
| 19656 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19623diff
changeset | 46 | "r^= == r \<union> Id" | 
| 10213 | 47 | |
| 21210 | 48 | notation (xsymbols) | 
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 49 |   rtranclp  ("(_\<^sup>*\<^sup>*)" [1000] 1000) and
 | 
| 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 50 |   tranclp  ("(_\<^sup>+\<^sup>+)" [1000] 1000) and
 | 
| 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 51 |   reflclp  ("(_\<^sup>=\<^sup>=)" [1000] 1000) and
 | 
| 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 52 |   rtrancl  ("(_\<^sup>*)" [1000] 999) and
 | 
| 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 53 |   trancl  ("(_\<^sup>+)" [1000] 999) and
 | 
| 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 54 |   reflcl  ("(_\<^sup>=)" [1000] 999)
 | 
| 12691 | 55 | |
| 21210 | 56 | notation (HTML output) | 
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 57 |   rtranclp  ("(_\<^sup>*\<^sup>*)" [1000] 1000) and
 | 
| 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 58 |   tranclp  ("(_\<^sup>+\<^sup>+)" [1000] 1000) and
 | 
| 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 59 |   reflclp  ("(_\<^sup>=\<^sup>=)" [1000] 1000) and
 | 
| 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 60 |   rtrancl  ("(_\<^sup>*)" [1000] 999) and
 | 
| 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 61 |   trancl  ("(_\<^sup>+)" [1000] 999) and
 | 
| 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 62 |   reflcl  ("(_\<^sup>=)" [1000] 999)
 | 
| 14565 | 63 | |
| 12691 | 64 | |
| 26271 | 65 | subsection {* Reflexive closure *}
 | 
| 66 | ||
| 30198 | 67 | lemma refl_reflcl[simp]: "refl(r^=)" | 
| 68 | by(simp add:refl_on_def) | |
| 26271 | 69 | |
| 70 | lemma antisym_reflcl[simp]: "antisym(r^=) = antisym r" | |
| 71 | by(simp add:antisym_def) | |
| 72 | ||
| 73 | lemma trans_reflclI[simp]: "trans r \<Longrightarrow> trans(r^=)" | |
| 74 | unfolding trans_def by blast | |
| 75 | ||
| 76 | ||
| 12691 | 77 | subsection {* Reflexive-transitive closure *}
 | 
| 78 | ||
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 79 | lemma reflcl_set_eq [pred_set_conv]: "(sup (\<lambda>x y. (x, y) \<in> r) op =) = (\<lambda>x y. (x, y) \<in> r Un Id)" | 
| 22262 | 80 | by (simp add: expand_fun_eq) | 
| 81 | ||
| 12691 | 82 | lemma r_into_rtrancl [intro]: "!!p. p \<in> r ==> p \<in> r^*" | 
| 83 |   -- {* @{text rtrancl} of @{text r} contains @{text r} *}
 | |
| 84 | apply (simp only: split_tupled_all) | |
| 85 | apply (erule rtrancl_refl [THEN rtrancl_into_rtrancl]) | |
| 86 | done | |
| 87 | ||
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 88 | lemma r_into_rtranclp [intro]: "r x y ==> r^** x y" | 
| 22262 | 89 |   -- {* @{text rtrancl} of @{text r} contains @{text r} *}
 | 
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 90 | by (erule rtranclp.rtrancl_refl [THEN rtranclp.rtrancl_into_rtrancl]) | 
| 22262 | 91 | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 92 | lemma rtranclp_mono: "r \<le> s ==> r^** \<le> s^**" | 
| 12691 | 93 |   -- {* monotonicity of @{text rtrancl} *}
 | 
| 22262 | 94 | apply (rule predicate2I) | 
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 95 | apply (erule rtranclp.induct) | 
| 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 96 | apply (rule_tac [2] rtranclp.rtrancl_into_rtrancl, blast+) | 
| 12691 | 97 | done | 
| 98 | ||
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 99 | lemmas rtrancl_mono = rtranclp_mono [to_set] | 
| 22262 | 100 | |
| 26179 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 101 | theorem rtranclp_induct [consumes 1, case_names base step, induct set: rtranclp]: | 
| 22262 | 102 | assumes a: "r^** a b" | 
| 103 | and cases: "P a" "!!y z. [| r^** a y; r y z; P y |] ==> P z" | |
| 12937 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 wenzelm parents: 
12823diff
changeset | 104 | shows "P b" | 
| 12691 | 105 | proof - | 
| 106 | from a have "a = a --> P b" | |
| 17589 | 107 | by (induct "%x y. x = a --> P y" a b) (iprover intro: cases)+ | 
| 26179 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 108 | then show ?thesis by iprover | 
| 12691 | 109 | qed | 
| 110 | ||
| 25425 
9191942c4ead
Removed some case_names and consumes attributes that are now no longer
 berghofe parents: 
25295diff
changeset | 111 | lemmas rtrancl_induct [induct set: rtrancl] = rtranclp_induct [to_set] | 
| 22262 | 112 | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 113 | lemmas rtranclp_induct2 = | 
| 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 114 | rtranclp_induct[of _ "(ax,ay)" "(bx,by)", split_rule, | 
| 22262 | 115 | consumes 1, case_names refl step] | 
| 116 | ||
| 14404 
4952c5a92e04
Transitive_Closure: added consumes and case_names attributes
 nipkow parents: 
14398diff
changeset | 117 | lemmas rtrancl_induct2 = | 
| 
4952c5a92e04
Transitive_Closure: added consumes and case_names attributes
 nipkow parents: 
14398diff
changeset | 118 | rtrancl_induct[of "(ax,ay)" "(bx,by)", split_format (complete), | 
| 
4952c5a92e04
Transitive_Closure: added consumes and case_names attributes
 nipkow parents: 
14398diff
changeset | 119 | consumes 1, case_names refl step] | 
| 18372 | 120 | |
| 30198 | 121 | lemma refl_rtrancl: "refl (r^*)" | 
| 122 | by (unfold refl_on_def) fast | |
| 19228 | 123 | |
| 26179 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 124 | text {* Transitivity of transitive closure. *}
 | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 125 | lemma trans_rtrancl: "trans (r^*)" | 
| 12823 | 126 | proof (rule transI) | 
| 127 | fix x y z | |
| 128 | assume "(x, y) \<in> r\<^sup>*" | |
| 129 | assume "(y, z) \<in> r\<^sup>*" | |
| 26179 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 130 | then show "(x, z) \<in> r\<^sup>*" | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 131 | proof induct | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 132 | case base | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 133 | show "(x, y) \<in> r\<^sup>*" by fact | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 134 | next | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 135 | case (step u v) | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 136 | from `(x, u) \<in> r\<^sup>*` and `(u, v) \<in> r` | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 137 | show "(x, v) \<in> r\<^sup>*" .. | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 138 | qed | 
| 12823 | 139 | qed | 
| 12691 | 140 | |
| 141 | lemmas rtrancl_trans = trans_rtrancl [THEN transD, standard] | |
| 142 | ||
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 143 | lemma rtranclp_trans: | 
| 22262 | 144 | assumes xy: "r^** x y" | 
| 145 | and yz: "r^** y z" | |
| 146 | shows "r^** x z" using yz xy | |
| 147 | by induct iprover+ | |
| 148 | ||
| 26174 
9efd4c04eaa4
rtranclE, tranclE: tuned statement, added case_names;
 wenzelm parents: 
25425diff
changeset | 149 | lemma rtranclE [cases set: rtrancl]: | 
| 
9efd4c04eaa4
rtranclE, tranclE: tuned statement, added case_names;
 wenzelm parents: 
25425diff
changeset | 150 | assumes major: "(a::'a, b) : r^*" | 
| 
9efd4c04eaa4
rtranclE, tranclE: tuned statement, added case_names;
 wenzelm parents: 
25425diff
changeset | 151 | obtains | 
| 
9efd4c04eaa4
rtranclE, tranclE: tuned statement, added case_names;
 wenzelm parents: 
25425diff
changeset | 152 | (base) "a = b" | 
| 
9efd4c04eaa4
rtranclE, tranclE: tuned statement, added case_names;
 wenzelm parents: 
25425diff
changeset | 153 | | (step) y where "(a, y) : r^*" and "(y, b) : r" | 
| 12691 | 154 |   -- {* elimination of @{text rtrancl} -- by induction on a special formula *}
 | 
| 18372 | 155 | apply (subgoal_tac "(a::'a) = b | (EX y. (a,y) : r^* & (y,b) : r)") | 
| 156 | apply (rule_tac [2] major [THEN rtrancl_induct]) | |
| 157 | prefer 2 apply blast | |
| 158 | prefer 2 apply blast | |
| 26174 
9efd4c04eaa4
rtranclE, tranclE: tuned statement, added case_names;
 wenzelm parents: 
25425diff
changeset | 159 | apply (erule asm_rl exE disjE conjE base step)+ | 
| 18372 | 160 | done | 
| 12691 | 161 | |
| 22080 
7bf8868ab3e4
induction rules for trancl/rtrancl expressed using subsets
 paulson parents: 
21589diff
changeset | 162 | lemma rtrancl_Int_subset: "[| Id \<subseteq> s; r O (r^* \<inter> s) \<subseteq> s|] ==> r^* \<subseteq> s" | 
| 
7bf8868ab3e4
induction rules for trancl/rtrancl expressed using subsets
 paulson parents: 
21589diff
changeset | 163 | apply (rule subsetI) | 
| 
7bf8868ab3e4
induction rules for trancl/rtrancl expressed using subsets
 paulson parents: 
21589diff
changeset | 164 | apply (rule_tac p="x" in PairE, clarify) | 
| 
7bf8868ab3e4
induction rules for trancl/rtrancl expressed using subsets
 paulson parents: 
21589diff
changeset | 165 | apply (erule rtrancl_induct, auto) | 
| 
7bf8868ab3e4
induction rules for trancl/rtrancl expressed using subsets
 paulson parents: 
21589diff
changeset | 166 | done | 
| 
7bf8868ab3e4
induction rules for trancl/rtrancl expressed using subsets
 paulson parents: 
21589diff
changeset | 167 | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 168 | lemma converse_rtranclp_into_rtranclp: | 
| 22262 | 169 | "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: 
22422diff
changeset | 170 | by (rule rtranclp_trans) iprover+ | 
| 22262 | 171 | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 172 | lemmas converse_rtrancl_into_rtrancl = converse_rtranclp_into_rtranclp [to_set] | 
| 12691 | 173 | |
| 174 | text {*
 | |
| 175 |   \medskip More @{term "r^*"} equations and inclusions.
 | |
| 176 | *} | |
| 177 | ||
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 178 | lemma rtranclp_idemp [simp]: "(r^**)^** = r^**" | 
| 22262 | 179 | apply (auto intro!: order_antisym) | 
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 180 | apply (erule rtranclp_induct) | 
| 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 181 | apply (rule rtranclp.rtrancl_refl) | 
| 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 182 | apply (blast intro: rtranclp_trans) | 
| 12691 | 183 | done | 
| 184 | ||
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 185 | lemmas rtrancl_idemp [simp] = rtranclp_idemp [to_set] | 
| 22262 | 186 | |
| 12691 | 187 | lemma rtrancl_idemp_self_comp [simp]: "R^* O R^* = R^*" | 
| 188 | apply (rule set_ext) | |
| 189 | apply (simp only: split_tupled_all) | |
| 190 | apply (blast intro: rtrancl_trans) | |
| 191 | done | |
| 192 | ||
| 193 | lemma rtrancl_subset_rtrancl: "r \<subseteq> s^* ==> r^* \<subseteq> s^*" | |
| 26179 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 194 | apply (drule rtrancl_mono) | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 195 | apply simp | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 196 | done | 
| 12691 | 197 | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 198 | lemma rtranclp_subset: "R \<le> S ==> S \<le> R^** ==> S^** = R^**" | 
| 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 199 | apply (drule rtranclp_mono) | 
| 26179 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 200 | apply (drule rtranclp_mono) | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 201 | apply simp | 
| 12691 | 202 | done | 
| 203 | ||
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 204 | lemmas rtrancl_subset = rtranclp_subset [to_set] | 
| 22262 | 205 | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 206 | lemma rtranclp_sup_rtranclp: "(sup (R^**) (S^**))^** = (sup R S)^**" | 
| 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 207 | by (blast intro!: rtranclp_subset intro: rtranclp_mono [THEN predicate2D]) | 
| 12691 | 208 | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 209 | lemmas rtrancl_Un_rtrancl = rtranclp_sup_rtranclp [to_set] | 
| 22262 | 210 | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 211 | lemma rtranclp_reflcl [simp]: "(R^==)^** = R^**" | 
| 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 212 | by (blast intro!: rtranclp_subset) | 
| 22262 | 213 | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 214 | lemmas rtrancl_reflcl [simp] = rtranclp_reflcl [to_set] | 
| 12691 | 215 | |
| 216 | lemma rtrancl_r_diff_Id: "(r - Id)^* = r^*" | |
| 217 | apply (rule sym) | |
| 14208 | 218 | apply (rule rtrancl_subset, blast, clarify) | 
| 12691 | 219 | apply (rename_tac a b) | 
| 26179 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 220 | apply (case_tac "a = b") | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 221 | apply blast | 
| 12691 | 222 | apply (blast intro!: r_into_rtrancl) | 
| 223 | done | |
| 224 | ||
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 225 | lemma rtranclp_r_diff_Id: "(inf r op ~=)^** = r^**" | 
| 22262 | 226 | apply (rule sym) | 
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 227 | apply (rule rtranclp_subset) | 
| 26179 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 228 | apply blast+ | 
| 22262 | 229 | done | 
| 230 | ||
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 231 | theorem rtranclp_converseD: | 
| 22262 | 232 | assumes r: "(r^--1)^** x y" | 
| 233 | shows "r^** y x" | |
| 12823 | 234 | proof - | 
| 235 | from r show ?thesis | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 236 | by induct (iprover intro: rtranclp_trans dest!: conversepD)+ | 
| 12823 | 237 | qed | 
| 12691 | 238 | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 239 | lemmas rtrancl_converseD = rtranclp_converseD [to_set] | 
| 22262 | 240 | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 241 | theorem rtranclp_converseI: | 
| 26179 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 242 | assumes "r^** y x" | 
| 22262 | 243 | shows "(r^--1)^** x y" | 
| 26179 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 244 | using assms | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 245 | by induct (iprover intro: rtranclp_trans conversepI)+ | 
| 12691 | 246 | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 247 | lemmas rtrancl_converseI = rtranclp_converseI [to_set] | 
| 22262 | 248 | |
| 12691 | 249 | lemma rtrancl_converse: "(r^-1)^* = (r^*)^-1" | 
| 250 | by (fast dest!: rtrancl_converseD intro!: rtrancl_converseI) | |
| 251 | ||
| 19228 | 252 | lemma sym_rtrancl: "sym r ==> sym (r^*)" | 
| 253 | by (simp only: sym_conv_converse_eq rtrancl_converse [symmetric]) | |
| 254 | ||
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 255 | theorem converse_rtranclp_induct[consumes 1]: | 
| 22262 | 256 | assumes major: "r^** a b" | 
| 257 | and cases: "P b" "!!y z. [| r y z; r^** z b; P z |] ==> P y" | |
| 12937 
0c4fd7529467
clarified syntax of ``long'' statements: fixes/assumes/shows;
 wenzelm parents: 
12823diff
changeset | 258 | shows "P a" | 
| 26179 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 259 | using rtranclp_converseI [OF major] | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 260 | by induct (iprover intro: cases dest!: conversepD rtranclp_converseD)+ | 
| 12691 | 261 | |
| 25425 
9191942c4ead
Removed some case_names and consumes attributes that are now no longer
 berghofe parents: 
25295diff
changeset | 262 | lemmas converse_rtrancl_induct = converse_rtranclp_induct [to_set] | 
| 22262 | 263 | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 264 | lemmas converse_rtranclp_induct2 = | 
| 26179 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 265 | converse_rtranclp_induct [of _ "(ax,ay)" "(bx,by)", split_rule, | 
| 22262 | 266 | consumes 1, case_names refl step] | 
| 267 | ||
| 14404 
4952c5a92e04
Transitive_Closure: added consumes and case_names attributes
 nipkow parents: 
14398diff
changeset | 268 | lemmas converse_rtrancl_induct2 = | 
| 26179 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 269 | converse_rtrancl_induct [of "(ax,ay)" "(bx,by)", split_format (complete), | 
| 14404 
4952c5a92e04
Transitive_Closure: added consumes and case_names attributes
 nipkow parents: 
14398diff
changeset | 270 | consumes 1, case_names refl step] | 
| 12691 | 271 | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 272 | lemma converse_rtranclpE: | 
| 22262 | 273 | assumes major: "r^** x z" | 
| 18372 | 274 | and cases: "x=z ==> P" | 
| 22262 | 275 | "!!y. [| r x y; r^** y z |] ==> P" | 
| 18372 | 276 | shows P | 
| 22262 | 277 | apply (subgoal_tac "x = z | (EX y. r x y & r^** y z)") | 
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 278 | apply (rule_tac [2] major [THEN converse_rtranclp_induct]) | 
| 18372 | 279 | prefer 2 apply iprover | 
| 280 | prefer 2 apply iprover | |
| 281 | apply (erule asm_rl exE disjE conjE cases)+ | |
| 282 | done | |
| 12691 | 283 | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 284 | lemmas converse_rtranclE = converse_rtranclpE [to_set] | 
| 22262 | 285 | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 286 | lemmas converse_rtranclpE2 = converse_rtranclpE [of _ "(xa,xb)" "(za,zb)", split_rule] | 
| 22262 | 287 | |
| 288 | lemmas converse_rtranclE2 = converse_rtranclE [of "(xa,xb)" "(za,zb)", split_rule] | |
| 12691 | 289 | |
| 290 | lemma r_comp_rtrancl_eq: "r O r^* = r^* O r" | |
| 291 | by (blast elim: rtranclE converse_rtranclE | |
| 292 | intro: rtrancl_into_rtrancl converse_rtrancl_into_rtrancl) | |
| 293 | ||
| 20716 
a6686a8e1b68
Changed precedence of "op O" (relation composition) from 60 to 75.
 krauss parents: 
19656diff
changeset | 294 | lemma rtrancl_unfold: "r^* = Id Un r O r^*" | 
| 15551 | 295 | by (auto intro: rtrancl_into_rtrancl elim: rtranclE) | 
| 296 | ||
| 12691 | 297 | |
| 298 | subsection {* Transitive closure *}
 | |
| 10331 | 299 | |
| 13704 
854501b1e957
Transitive closure is now defined inductively as well.
 berghofe parents: 
12937diff
changeset | 300 | lemma trancl_mono: "!!p. p \<in> r^+ ==> r \<subseteq> s ==> p \<in> s^+" | 
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 301 | apply (simp add: split_tupled_all) | 
| 13704 
854501b1e957
Transitive closure is now defined inductively as well.
 berghofe parents: 
12937diff
changeset | 302 | apply (erule trancl.induct) | 
| 26179 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 303 | apply (iprover dest: subsetD)+ | 
| 12691 | 304 | done | 
| 305 | ||
| 13704 
854501b1e957
Transitive closure is now defined inductively as well.
 berghofe parents: 
12937diff
changeset | 306 | lemma r_into_trancl': "!!p. p : r ==> p : r^+" | 
| 
854501b1e957
Transitive closure is now defined inductively as well.
 berghofe parents: 
12937diff
changeset | 307 | by (simp only: split_tupled_all) (erule r_into_trancl) | 
| 
854501b1e957
Transitive closure is now defined inductively as well.
 berghofe parents: 
12937diff
changeset | 308 | |
| 12691 | 309 | text {*
 | 
| 310 |   \medskip Conversions between @{text trancl} and @{text rtrancl}.
 | |
| 311 | *} | |
| 312 | ||
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 313 | lemma tranclp_into_rtranclp: "r^++ a b ==> r^** a b" | 
| 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 314 | by (erule tranclp.induct) iprover+ | 
| 12691 | 315 | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 316 | lemmas trancl_into_rtrancl = tranclp_into_rtranclp [to_set] | 
| 22262 | 317 | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 318 | lemma rtranclp_into_tranclp1: assumes r: "r^** a b" | 
| 22262 | 319 | shows "!!c. r b c ==> r^++ a c" using r | 
| 17589 | 320 | by induct iprover+ | 
| 12691 | 321 | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 322 | lemmas rtrancl_into_trancl1 = rtranclp_into_tranclp1 [to_set] | 
| 22262 | 323 | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 324 | lemma rtranclp_into_tranclp2: "[| r a b; r^** b c |] ==> r^++ a c" | 
| 12691 | 325 |   -- {* intro rule from @{text r} and @{text rtrancl} *}
 | 
| 26179 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 326 | apply (erule rtranclp.cases) | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 327 | apply iprover | 
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 328 | apply (rule rtranclp_trans [THEN rtranclp_into_tranclp1]) | 
| 26179 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 329 | apply (simp | rule r_into_rtranclp)+ | 
| 12691 | 330 | done | 
| 331 | ||
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 332 | lemmas rtrancl_into_trancl2 = rtranclp_into_tranclp2 [to_set] | 
| 22262 | 333 | |
| 26179 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 334 | text {* Nice induction rule for @{text trancl} *}
 | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 335 | lemma tranclp_induct [consumes 1, case_names base step, induct pred: tranclp]: | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 336 | assumes "r^++ a b" | 
| 22262 | 337 | and cases: "!!y. r a y ==> P y" | 
| 338 | "!!y z. r^++ a y ==> r y z ==> P y ==> P z" | |
| 13704 
854501b1e957
Transitive closure is now defined inductively as well.
 berghofe parents: 
12937diff
changeset | 339 | shows "P b" | 
| 12691 | 340 | proof - | 
| 26179 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 341 | from `r^++ a b` have "a = a --> P b" | 
| 17589 | 342 | by (induct "%x y. x = a --> P y" a b) (iprover intro: cases)+ | 
| 26179 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 343 | then show ?thesis by iprover | 
| 12691 | 344 | qed | 
| 345 | ||
| 25425 
9191942c4ead
Removed some case_names and consumes attributes that are now no longer
 berghofe parents: 
25295diff
changeset | 346 | lemmas trancl_induct [induct set: trancl] = tranclp_induct [to_set] | 
| 22262 | 347 | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 348 | lemmas tranclp_induct2 = | 
| 26179 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 349 | tranclp_induct [of _ "(ax,ay)" "(bx,by)", split_rule, | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 350 | consumes 1, case_names base step] | 
| 22262 | 351 | |
| 22172 | 352 | lemmas trancl_induct2 = | 
| 26179 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 353 | trancl_induct [of "(ax,ay)" "(bx,by)", split_format (complete), | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 354 | consumes 1, case_names base step] | 
| 22172 | 355 | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 356 | lemma tranclp_trans_induct: | 
| 22262 | 357 | assumes major: "r^++ x y" | 
| 358 | and cases: "!!x y. r x y ==> P x y" | |
| 359 | "!!x y z. [| r^++ x y; P x y; r^++ y z; P y z |] ==> P x z" | |
| 18372 | 360 | shows "P x y" | 
| 12691 | 361 |   -- {* Another induction rule for trancl, incorporating transitivity *}
 | 
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 362 | by (iprover intro: major [THEN tranclp_induct] cases) | 
| 12691 | 363 | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 364 | lemmas trancl_trans_induct = tranclp_trans_induct [to_set] | 
| 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 365 | |
| 26174 
9efd4c04eaa4
rtranclE, tranclE: tuned statement, added case_names;
 wenzelm parents: 
25425diff
changeset | 366 | lemma tranclE [cases set: trancl]: | 
| 
9efd4c04eaa4
rtranclE, tranclE: tuned statement, added case_names;
 wenzelm parents: 
25425diff
changeset | 367 | assumes "(a, b) : r^+" | 
| 
9efd4c04eaa4
rtranclE, tranclE: tuned statement, added case_names;
 wenzelm parents: 
25425diff
changeset | 368 | obtains | 
| 
9efd4c04eaa4
rtranclE, tranclE: tuned statement, added case_names;
 wenzelm parents: 
25425diff
changeset | 369 | (base) "(a, b) : r" | 
| 
9efd4c04eaa4
rtranclE, tranclE: tuned statement, added case_names;
 wenzelm parents: 
25425diff
changeset | 370 | | (step) c where "(a, c) : r^+" and "(c, b) : r" | 
| 
9efd4c04eaa4
rtranclE, tranclE: tuned statement, added case_names;
 wenzelm parents: 
25425diff
changeset | 371 | using assms by cases simp_all | 
| 10980 | 372 | |
| 22080 
7bf8868ab3e4
induction rules for trancl/rtrancl expressed using subsets
 paulson parents: 
21589diff
changeset | 373 | lemma trancl_Int_subset: "[| r \<subseteq> s; r O (r^+ \<inter> s) \<subseteq> s|] ==> r^+ \<subseteq> s" | 
| 
7bf8868ab3e4
induction rules for trancl/rtrancl expressed using subsets
 paulson parents: 
21589diff
changeset | 374 | apply (rule subsetI) | 
| 26179 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 375 | apply (rule_tac p = x in PairE) | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 376 | apply clarify | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 377 | apply (erule trancl_induct) | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 378 | apply auto | 
| 22080 
7bf8868ab3e4
induction rules for trancl/rtrancl expressed using subsets
 paulson parents: 
21589diff
changeset | 379 | done | 
| 
7bf8868ab3e4
induction rules for trancl/rtrancl expressed using subsets
 paulson parents: 
21589diff
changeset | 380 | |
| 20716 
a6686a8e1b68
Changed precedence of "op O" (relation composition) from 60 to 75.
 krauss parents: 
19656diff
changeset | 381 | lemma trancl_unfold: "r^+ = r Un r O r^+" | 
| 15551 | 382 | by (auto intro: trancl_into_trancl elim: tranclE) | 
| 383 | ||
| 26179 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 384 | text {* Transitivity of @{term "r^+"} *}
 | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 385 | lemma trans_trancl [simp]: "trans (r^+)" | 
| 13704 
854501b1e957
Transitive closure is now defined inductively as well.
 berghofe parents: 
12937diff
changeset | 386 | proof (rule transI) | 
| 
854501b1e957
Transitive closure is now defined inductively as well.
 berghofe parents: 
12937diff
changeset | 387 | fix x y z | 
| 26179 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 388 | assume "(x, y) \<in> r^+" | 
| 13704 
854501b1e957
Transitive closure is now defined inductively as well.
 berghofe parents: 
12937diff
changeset | 389 | assume "(y, z) \<in> r^+" | 
| 26179 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 390 | then show "(x, z) \<in> r^+" | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 391 | proof induct | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 392 | case (base u) | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 393 | from `(x, y) \<in> r^+` and `(y, u) \<in> r` | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 394 | show "(x, u) \<in> r^+" .. | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 395 | next | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 396 | case (step u v) | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 397 | from `(x, u) \<in> r^+` and `(u, v) \<in> r` | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 398 | show "(x, v) \<in> r^+" .. | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 399 | qed | 
| 13704 
854501b1e957
Transitive closure is now defined inductively as well.
 berghofe parents: 
12937diff
changeset | 400 | qed | 
| 12691 | 401 | |
| 402 | lemmas trancl_trans = trans_trancl [THEN transD, standard] | |
| 403 | ||
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 404 | lemma tranclp_trans: | 
| 22262 | 405 | assumes xy: "r^++ x y" | 
| 406 | and yz: "r^++ y z" | |
| 407 | shows "r^++ x z" using yz xy | |
| 408 | by induct iprover+ | |
| 409 | ||
| 26179 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 410 | lemma trancl_id [simp]: "trans r \<Longrightarrow> r^+ = r" | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 411 | apply auto | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 412 | apply (erule trancl_induct) | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 413 | apply assumption | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 414 | apply (unfold trans_def) | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 415 | apply blast | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 416 | done | 
| 19623 | 417 | |
| 26179 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 418 | lemma rtranclp_tranclp_tranclp: | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 419 | assumes "r^** x y" | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 420 | shows "!!z. r^++ y z ==> r^++ x z" using assms | 
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 421 | by induct (iprover intro: tranclp_trans)+ | 
| 12691 | 422 | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 423 | lemmas rtrancl_trancl_trancl = rtranclp_tranclp_tranclp [to_set] | 
| 22262 | 424 | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 425 | lemma tranclp_into_tranclp2: "r a b ==> r^++ b c ==> r^++ a c" | 
| 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 426 | by (erule tranclp_trans [OF tranclp.r_into_trancl]) | 
| 22262 | 427 | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 428 | lemmas trancl_into_trancl2 = tranclp_into_tranclp2 [to_set] | 
| 12691 | 429 | |
| 430 | lemma trancl_insert: | |
| 431 |   "(insert (y, x) r)^+ = r^+ \<union> {(a, b). (a, y) \<in> r^* \<and> (x, b) \<in> r^*}"
 | |
| 432 |   -- {* primitive recursion for @{text trancl} over finite relations *}
 | |
| 433 | apply (rule equalityI) | |
| 434 | apply (rule subsetI) | |
| 435 | apply (simp only: split_tupled_all) | |
| 14208 | 436 | apply (erule trancl_induct, blast) | 
| 12691 | 437 | apply (blast intro: rtrancl_into_trancl1 trancl_into_rtrancl r_into_trancl trancl_trans) | 
| 438 | apply (rule subsetI) | |
| 439 | apply (blast intro: trancl_mono rtrancl_mono | |
| 440 | [THEN [2] rev_subsetD] rtrancl_trancl_trancl rtrancl_into_trancl2) | |
| 441 | done | |
| 442 | ||
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 443 | lemma tranclp_converseI: "(r^++)^--1 x y ==> (r^--1)^++ x y" | 
| 22262 | 444 | apply (drule conversepD) | 
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 445 | apply (erule tranclp_induct) | 
| 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 446 | apply (iprover intro: conversepI tranclp_trans)+ | 
| 12691 | 447 | done | 
| 448 | ||
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 449 | lemmas trancl_converseI = tranclp_converseI [to_set] | 
| 22262 | 450 | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 451 | lemma tranclp_converseD: "(r^--1)^++ x y ==> (r^++)^--1 x y" | 
| 22262 | 452 | apply (rule conversepI) | 
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 453 | apply (erule tranclp_induct) | 
| 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 454 | apply (iprover dest: conversepD intro: tranclp_trans)+ | 
| 13704 
854501b1e957
Transitive closure is now defined inductively as well.
 berghofe parents: 
12937diff
changeset | 455 | done | 
| 12691 | 456 | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 457 | lemmas trancl_converseD = tranclp_converseD [to_set] | 
| 22262 | 458 | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 459 | lemma tranclp_converse: "(r^--1)^++ = (r^++)^--1" | 
| 22262 | 460 | by (fastsimp simp add: expand_fun_eq | 
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 461 | intro!: tranclp_converseI dest!: tranclp_converseD) | 
| 22262 | 462 | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 463 | lemmas trancl_converse = tranclp_converse [to_set] | 
| 12691 | 464 | |
| 19228 | 465 | lemma sym_trancl: "sym r ==> sym (r^+)" | 
| 466 | by (simp only: sym_conv_converse_eq trancl_converse [symmetric]) | |
| 467 | ||
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 468 | lemma converse_tranclp_induct: | 
| 22262 | 469 | assumes major: "r^++ a b" | 
| 470 | and cases: "!!y. r y b ==> P(y)" | |
| 471 | "!!y z.[| r y z; r^++ z b; P(z) |] ==> P(y)" | |
| 18372 | 472 | shows "P a" | 
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 473 | apply (rule tranclp_induct [OF tranclp_converseI, OF conversepI, OF major]) | 
| 18372 | 474 | apply (rule cases) | 
| 22262 | 475 | apply (erule conversepD) | 
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 476 | apply (blast intro: prems dest!: tranclp_converseD conversepD) | 
| 18372 | 477 | done | 
| 12691 | 478 | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 479 | lemmas converse_trancl_induct = converse_tranclp_induct [to_set] | 
| 22262 | 480 | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 481 | lemma tranclpD: "R^++ x y ==> EX z. R x z \<and> R^** z y" | 
| 26179 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 482 | apply (erule converse_tranclp_induct) | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 483 | apply auto | 
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 484 | apply (blast intro: rtranclp_trans) | 
| 12691 | 485 | done | 
| 486 | ||
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 487 | lemmas tranclD = tranclpD [to_set] | 
| 22262 | 488 | |
| 25295 
12985023be5e
tranclD2 (tranclD at the other end) + trancl_power
 kleing parents: 
23743diff
changeset | 489 | lemma tranclD2: | 
| 
12985023be5e
tranclD2 (tranclD at the other end) + trancl_power
 kleing parents: 
23743diff
changeset | 490 | "(x, y) \<in> R\<^sup>+ \<Longrightarrow> \<exists>z. (x, z) \<in> R\<^sup>* \<and> (z, y) \<in> R" | 
| 
12985023be5e
tranclD2 (tranclD at the other end) + trancl_power
 kleing parents: 
23743diff
changeset | 491 | by (blast elim: tranclE intro: trancl_into_rtrancl) | 
| 
12985023be5e
tranclD2 (tranclD at the other end) + trancl_power
 kleing parents: 
23743diff
changeset | 492 | |
| 13867 | 493 | lemma irrefl_tranclI: "r^-1 \<inter> r^* = {} ==> (x, x) \<notin> r^+"
 | 
| 18372 | 494 | by (blast elim: tranclE dest: trancl_into_rtrancl) | 
| 12691 | 495 | |
| 496 | lemma irrefl_trancl_rD: "!!X. ALL x. (x, x) \<notin> r^+ ==> (x, y) \<in> r ==> x \<noteq> y" | |
| 497 | by (blast dest: r_into_trancl) | |
| 498 | ||
| 499 | lemma trancl_subset_Sigma_aux: | |
| 500 | "(a, b) \<in> r^* ==> r \<subseteq> A \<times> A ==> a = b \<or> a \<in> A" | |
| 18372 | 501 | by (induct rule: rtrancl_induct) auto | 
| 12691 | 502 | |
| 503 | lemma trancl_subset_Sigma: "r \<subseteq> A \<times> A ==> r^+ \<subseteq> A \<times> A" | |
| 13704 
854501b1e957
Transitive closure is now defined inductively as well.
 berghofe parents: 
12937diff
changeset | 504 | apply (rule subsetI) | 
| 
854501b1e957
Transitive closure is now defined inductively as well.
 berghofe parents: 
12937diff
changeset | 505 | apply (simp only: split_tupled_all) | 
| 
854501b1e957
Transitive closure is now defined inductively as well.
 berghofe parents: 
12937diff
changeset | 506 | apply (erule tranclE) | 
| 26179 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 507 | apply (blast dest!: trancl_into_rtrancl trancl_subset_Sigma_aux)+ | 
| 12691 | 508 | done | 
| 10996 
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
 nipkow parents: 
10980diff
changeset | 509 | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 510 | lemma reflcl_tranclp [simp]: "(r^++)^== = r^**" | 
| 22262 | 511 | apply (safe intro!: order_antisym) | 
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 512 | apply (erule tranclp_into_rtranclp) | 
| 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 513 | apply (blast elim: rtranclp.cases dest: rtranclp_into_tranclp1) | 
| 11084 | 514 | done | 
| 10996 
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
 nipkow parents: 
10980diff
changeset | 515 | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 516 | lemmas reflcl_trancl [simp] = reflcl_tranclp [to_set] | 
| 22262 | 517 | |
| 11090 | 518 | lemma trancl_reflcl [simp]: "(r^=)^+ = r^*" | 
| 11084 | 519 | apply safe | 
| 14208 | 520 | apply (drule trancl_into_rtrancl, simp) | 
| 521 | apply (erule rtranclE, safe) | |
| 522 | apply (rule r_into_trancl, simp) | |
| 11084 | 523 | apply (rule rtrancl_into_trancl1) | 
| 14208 | 524 | apply (erule rtrancl_reflcl [THEN equalityD2, THEN subsetD], fast) | 
| 11084 | 525 | done | 
| 10996 
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
 nipkow parents: 
10980diff
changeset | 526 | |
| 11090 | 527 | lemma trancl_empty [simp]: "{}^+ = {}"
 | 
| 11084 | 528 | by (auto elim: trancl_induct) | 
| 10996 
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
 nipkow parents: 
10980diff
changeset | 529 | |
| 11090 | 530 | lemma rtrancl_empty [simp]: "{}^* = Id"
 | 
| 11084 | 531 | by (rule subst [OF reflcl_trancl]) simp | 
| 10996 
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
 nipkow parents: 
10980diff
changeset | 532 | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 533 | lemma rtranclpD: "R^** a b ==> a = b \<or> a \<noteq> b \<and> R^++ a b" | 
| 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 534 | by (force simp add: reflcl_tranclp [symmetric] simp del: reflcl_tranclp) | 
| 22262 | 535 | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 536 | lemmas rtranclD = rtranclpD [to_set] | 
| 11084 | 537 | |
| 16514 | 538 | lemma rtrancl_eq_or_trancl: | 
| 539 | "(x,y) \<in> R\<^sup>* = (x=y \<or> x\<noteq>y \<and> (x,y) \<in> R\<^sup>+)" | |
| 540 | by (fast elim: trancl_into_rtrancl dest: rtranclD) | |
| 10996 
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
 nipkow parents: 
10980diff
changeset | 541 | |
| 12691 | 542 | text {* @{text Domain} and @{text Range} *}
 | 
| 10996 
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
 nipkow parents: 
10980diff
changeset | 543 | |
| 11090 | 544 | lemma Domain_rtrancl [simp]: "Domain (R^*) = UNIV" | 
| 11084 | 545 | by blast | 
| 10996 
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
 nipkow parents: 
10980diff
changeset | 546 | |
| 11090 | 547 | lemma Range_rtrancl [simp]: "Range (R^*) = UNIV" | 
| 11084 | 548 | by blast | 
| 10996 
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
 nipkow parents: 
10980diff
changeset | 549 | |
| 11090 | 550 | lemma rtrancl_Un_subset: "(R^* \<union> S^*) \<subseteq> (R Un S)^*" | 
| 11084 | 551 | by (rule rtrancl_Un_rtrancl [THEN subst]) fast | 
| 10996 
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
 nipkow parents: 
10980diff
changeset | 552 | |
| 11090 | 553 | lemma in_rtrancl_UnI: "x \<in> R^* \<or> x \<in> S^* ==> x \<in> (R \<union> S)^*" | 
| 11084 | 554 | by (blast intro: subsetD [OF rtrancl_Un_subset]) | 
| 10996 
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
 nipkow parents: 
10980diff
changeset | 555 | |
| 11090 | 556 | lemma trancl_domain [simp]: "Domain (r^+) = Domain r" | 
| 11084 | 557 | by (unfold Domain_def) (blast dest: tranclD) | 
| 10996 
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
 nipkow parents: 
10980diff
changeset | 558 | |
| 11090 | 559 | lemma trancl_range [simp]: "Range (r^+) = Range r" | 
| 26271 | 560 | unfolding Range_def by(simp add: trancl_converse [symmetric]) | 
| 10996 
74e970389def
Moved some thms from Transitive_ClosureTr.ML to Transitive_Closure.thy
 nipkow parents: 
10980diff
changeset | 561 | |
| 11115 | 562 | lemma Not_Domain_rtrancl: | 
| 12691 | 563 | "x ~: Domain R ==> ((x, y) : R^*) = (x = y)" | 
| 564 | apply auto | |
| 26179 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 565 | apply (erule rev_mp) | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 566 | apply (erule rtrancl_induct) | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 567 | apply auto | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 568 | done | 
| 11327 
cd2c27a23df1
Transitive closure is now defined via "inductive".
 berghofe parents: 
11115diff
changeset | 569 | |
| 29609 | 570 | lemma trancl_subset_Field2: "r^+ <= Field r \<times> Field r" | 
| 571 | apply clarify | |
| 572 | apply (erule trancl_induct) | |
| 573 | apply (auto simp add: Field_def) | |
| 574 | done | |
| 575 | ||
| 576 | lemma finite_trancl: "finite (r^+) = finite r" | |
| 577 | apply auto | |
| 578 | prefer 2 | |
| 579 | apply (rule trancl_subset_Field2 [THEN finite_subset]) | |
| 580 | apply (rule finite_SigmaI) | |
| 581 | prefer 3 | |
| 582 | apply (blast intro: r_into_trancl' finite_subset) | |
| 583 | apply (auto simp add: finite_Field) | |
| 584 | done | |
| 585 | ||
| 12691 | 586 | text {* More about converse @{text rtrancl} and @{text trancl}, should
 | 
| 587 | be merged with main body. *} | |
| 12428 
f3033eed309a
setup [trans] rules for calculational Isar reasoning
 kleing parents: 
11327diff
changeset | 588 | |
| 14337 
e13731554e50
undid split_comp_eq[simp] because it leads to nontermination together with split_def!
 nipkow parents: 
14208diff
changeset | 589 | lemma single_valued_confluent: | 
| 
e13731554e50
undid split_comp_eq[simp] because it leads to nontermination together with split_def!
 nipkow parents: 
14208diff
changeset | 590 | "\<lbrakk> single_valued r; (x,y) \<in> r^*; (x,z) \<in> r^* \<rbrakk> | 
| 
e13731554e50
undid split_comp_eq[simp] because it leads to nontermination together with split_def!
 nipkow parents: 
14208diff
changeset | 591 | \<Longrightarrow> (y,z) \<in> r^* \<or> (z,y) \<in> r^*" | 
| 26179 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 592 | apply (erule rtrancl_induct) | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 593 | apply simp | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 594 | apply (erule disjE) | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 595 | apply (blast elim:converse_rtranclE dest:single_valuedD) | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 596 | apply(blast intro:rtrancl_trans) | 
| 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 597 | done | 
| 14337 
e13731554e50
undid split_comp_eq[simp] because it leads to nontermination together with split_def!
 nipkow parents: 
14208diff
changeset | 598 | |
| 12691 | 599 | lemma r_r_into_trancl: "(a, b) \<in> R ==> (b, c) \<in> R ==> (a, c) \<in> R^+" | 
| 12428 
f3033eed309a
setup [trans] rules for calculational Isar reasoning
 kleing parents: 
11327diff
changeset | 600 | by (fast intro: trancl_trans) | 
| 
f3033eed309a
setup [trans] rules for calculational Isar reasoning
 kleing parents: 
11327diff
changeset | 601 | |
| 
f3033eed309a
setup [trans] rules for calculational Isar reasoning
 kleing parents: 
11327diff
changeset | 602 | lemma trancl_into_trancl [rule_format]: | 
| 12691 | 603 | "(a, b) \<in> r\<^sup>+ ==> (b, c) \<in> r --> (a,c) \<in> r\<^sup>+" | 
| 604 | apply (erule trancl_induct) | |
| 12428 
f3033eed309a
setup [trans] rules for calculational Isar reasoning
 kleing parents: 
11327diff
changeset | 605 | apply (fast intro: r_r_into_trancl) | 
| 
f3033eed309a
setup [trans] rules for calculational Isar reasoning
 kleing parents: 
11327diff
changeset | 606 | apply (fast intro: r_r_into_trancl trancl_trans) | 
| 
f3033eed309a
setup [trans] rules for calculational Isar reasoning
 kleing parents: 
11327diff
changeset | 607 | done | 
| 
f3033eed309a
setup [trans] rules for calculational Isar reasoning
 kleing parents: 
11327diff
changeset | 608 | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 609 | lemma tranclp_rtranclp_tranclp: | 
| 22262 | 610 | "r\<^sup>+\<^sup>+ a b ==> r\<^sup>*\<^sup>* b c ==> r\<^sup>+\<^sup>+ a c" | 
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 611 | apply (drule tranclpD) | 
| 26179 
bc5d582d6cfe
rtranclp_induct, tranclp_induct: added case_names;
 wenzelm parents: 
26174diff
changeset | 612 | apply (elim exE conjE) | 
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 613 | apply (drule rtranclp_trans, assumption) | 
| 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 614 | apply (drule rtranclp_into_tranclp2, assumption, assumption) | 
| 12428 
f3033eed309a
setup [trans] rules for calculational Isar reasoning
 kleing parents: 
11327diff
changeset | 615 | done | 
| 
f3033eed309a
setup [trans] rules for calculational Isar reasoning
 kleing parents: 
11327diff
changeset | 616 | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 617 | lemmas trancl_rtrancl_trancl = tranclp_rtranclp_tranclp [to_set] | 
| 22262 | 618 | |
| 12691 | 619 | lemmas transitive_closure_trans [trans] = | 
| 620 | r_r_into_trancl trancl_trans rtrancl_trans | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 621 | trancl.trancl_into_trancl trancl_into_trancl2 | 
| 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 622 | rtrancl.rtrancl_into_rtrancl converse_rtrancl_into_rtrancl | 
| 12691 | 623 | rtrancl_trancl_trancl trancl_rtrancl_trancl | 
| 12428 
f3033eed309a
setup [trans] rules for calculational Isar reasoning
 kleing parents: 
11327diff
changeset | 624 | |
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 625 | lemmas transitive_closurep_trans' [trans] = | 
| 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 626 | tranclp_trans rtranclp_trans | 
| 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 627 | tranclp.trancl_into_trancl tranclp_into_tranclp2 | 
| 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 628 | rtranclp.rtrancl_into_rtrancl converse_rtranclp_into_rtranclp | 
| 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 629 | rtranclp_tranclp_tranclp tranclp_rtranclp_tranclp | 
| 22262 | 630 | |
| 12428 
f3033eed309a
setup [trans] rules for calculational Isar reasoning
 kleing parents: 
11327diff
changeset | 631 | declare trancl_into_rtrancl [elim] | 
| 11327 
cd2c27a23df1
Transitive closure is now defined via "inductive".
 berghofe parents: 
11115diff
changeset | 632 | |
| 30954 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 633 | subsection {* The power operation on relations *}
 | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 634 | |
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 635 | text {* @{text "R ^^ n = R O ... O R"}, the n-fold composition of @{text R} *}
 | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 636 | |
| 30971 | 637 | overloading | 
| 638 |   relpow == "compow :: nat \<Rightarrow> ('a \<times> 'a) set \<Rightarrow> ('a \<times> 'a) set"
 | |
| 639 | begin | |
| 30954 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 640 | |
| 30971 | 641 | primrec relpow :: "nat \<Rightarrow> ('a \<times> 'a) set \<Rightarrow> ('a \<times> 'a) set" where
 | 
| 642 | "relpow 0 R = Id" | |
| 643 | | "relpow (Suc n) R = R O (R ^^ n)" | |
| 30954 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 644 | |
| 30971 | 645 | end | 
| 30954 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 646 | |
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 647 | lemma rel_pow_1 [simp]: | 
| 30971 | 648 |   fixes R :: "('a \<times> 'a) set"
 | 
| 649 | shows "R ^^ 1 = R" | |
| 30954 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 650 | by simp | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 651 | |
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 652 | lemma rel_pow_0_I: | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 653 | "(x, x) \<in> R ^^ 0" | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 654 | by simp | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 655 | |
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 656 | lemma rel_pow_Suc_I: | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 657 | "(x, y) \<in> R ^^ n \<Longrightarrow> (y, z) \<in> R \<Longrightarrow> (x, z) \<in> R ^^ Suc n" | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 658 | by auto | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 659 | |
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 660 | lemma rel_pow_Suc_I2: | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 661 | "(x, y) \<in> R \<Longrightarrow> (y, z) \<in> R ^^ n \<Longrightarrow> (x, z) \<in> R ^^ Suc n" | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 662 | by (induct n arbitrary: z) (simp, fastsimp) | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 663 | |
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 664 | lemma rel_pow_0_E: | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 665 | "(x, y) \<in> R ^^ 0 \<Longrightarrow> (x = y \<Longrightarrow> P) \<Longrightarrow> P" | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 666 | by simp | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 667 | |
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 668 | lemma rel_pow_Suc_E: | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 669 | "(x, z) \<in> R ^^ Suc n \<Longrightarrow> (\<And>y. (x, y) \<in> R ^^ n \<Longrightarrow> (y, z) \<in> R \<Longrightarrow> P) \<Longrightarrow> P" | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 670 | by auto | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 671 | |
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 672 | lemma rel_pow_E: | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 673 | "(x, z) \<in> R ^^ n \<Longrightarrow> (n = 0 \<Longrightarrow> x = z \<Longrightarrow> P) | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 674 | \<Longrightarrow> (\<And>y m. n = Suc m \<Longrightarrow> (x, y) \<in> R ^^ m \<Longrightarrow> (y, z) \<in> R \<Longrightarrow> P) | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 675 | \<Longrightarrow> P" | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 676 | by (cases n) auto | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 677 | |
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 678 | lemma rel_pow_Suc_D2: | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 679 | "(x, z) \<in> R ^^ Suc n \<Longrightarrow> (\<exists>y. (x, y) \<in> R \<and> (y, z) \<in> R ^^ n)" | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 680 | apply (induct n arbitrary: x z) | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 681 | apply (blast intro: rel_pow_0_I elim: rel_pow_0_E rel_pow_Suc_E) | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 682 | apply (blast intro: rel_pow_Suc_I elim: rel_pow_0_E rel_pow_Suc_E) | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 683 | done | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 684 | |
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 685 | lemma rel_pow_Suc_E2: | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 686 | "(x, z) \<in> R ^^ Suc n \<Longrightarrow> (\<And>y. (x, y) \<in> R \<Longrightarrow> (y, z) \<in> R ^^ n \<Longrightarrow> P) \<Longrightarrow> P" | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 687 | by (blast dest: rel_pow_Suc_D2) | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 688 | |
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 689 | lemma rel_pow_Suc_D2': | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 690 | "\<forall>x y z. (x, y) \<in> R ^^ n \<and> (y, z) \<in> R \<longrightarrow> (\<exists>w. (x, w) \<in> R \<and> (w, z) \<in> R ^^ n)" | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 691 | by (induct n) (simp_all, blast) | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 692 | |
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 693 | lemma rel_pow_E2: | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 694 | "(x, z) \<in> R ^^ n \<Longrightarrow> (n = 0 \<Longrightarrow> x = z \<Longrightarrow> P) | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 695 | \<Longrightarrow> (\<And>y m. n = Suc m \<Longrightarrow> (x, y) \<in> R \<Longrightarrow> (y, z) \<in> R ^^ m \<Longrightarrow> P) | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 696 | \<Longrightarrow> P" | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 697 | apply (cases n, simp) | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 698 | apply (cut_tac n=nat and R=R in rel_pow_Suc_D2', simp, blast) | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 699 | done | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 700 | |
| 31351 | 701 | lemma rel_pow_add: "R ^^ (m+n) = R^^n O R^^m" | 
| 702 | by(induct n) auto | |
| 703 | ||
| 30954 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 704 | lemma rtrancl_imp_UN_rel_pow: | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 705 | assumes "p \<in> R^*" | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 706 | 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: 
30549diff
changeset | 707 | proof (cases p) | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 708 | case (Pair x y) | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 709 | with assms have "(x, y) \<in> R^*" by simp | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 710 | then have "(x, y) \<in> (\<Union>n. R ^^ n)" proof induct | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 711 | case base show ?case by (blast intro: rel_pow_0_I) | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 712 | next | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 713 | case step then show ?case by (blast intro: rel_pow_Suc_I) | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 714 | qed | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 715 | with Pair show ?thesis by simp | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 716 | qed | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 717 | |
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 718 | lemma rel_pow_imp_rtrancl: | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 719 | assumes "p \<in> R ^^ n" | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 720 | shows "p \<in> R^*" | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 721 | proof (cases p) | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 722 | case (Pair x y) | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 723 | with assms have "(x, y) \<in> R ^^ n" by simp | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 724 | then have "(x, y) \<in> R^*" proof (induct n arbitrary: x y) | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 725 | case 0 then show ?case by simp | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 726 | next | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 727 | case Suc then show ?case | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 728 | by (blast elim: rel_pow_Suc_E intro: rtrancl_into_rtrancl) | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 729 | qed | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 730 | with Pair show ?thesis by simp | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 731 | qed | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 732 | |
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 733 | lemma rtrancl_is_UN_rel_pow: | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 734 | "R^* = (\<Union>n. R ^^ n)" | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 735 | by (blast intro: rtrancl_imp_UN_rel_pow rel_pow_imp_rtrancl) | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 736 | |
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 737 | lemma rtrancl_power: | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 738 | "p \<in> R^* \<longleftrightarrow> (\<exists>n. p \<in> R ^^ n)" | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 739 | by (simp add: rtrancl_is_UN_rel_pow) | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 740 | |
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 741 | lemma trancl_power: | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 742 | "p \<in> R^+ \<longleftrightarrow> (\<exists>n > 0. p \<in> R ^^ n)" | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 743 | apply (cases p) | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 744 | apply simp | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 745 | apply (rule iffI) | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 746 | apply (drule tranclD2) | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 747 | apply (clarsimp simp: rtrancl_is_UN_rel_pow) | 
| 30971 | 748 | apply (rule_tac x="Suc n" in exI) | 
| 30954 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 749 | apply (clarsimp simp: rel_comp_def) | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 750 | apply fastsimp | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 751 | apply clarsimp | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 752 | apply (case_tac n, simp) | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 753 | apply clarsimp | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 754 | apply (drule rel_pow_imp_rtrancl) | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 755 | apply (drule rtrancl_into_trancl1) apply auto | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 756 | done | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 757 | |
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 758 | lemma rtrancl_imp_rel_pow: | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 759 | "p \<in> R^* \<Longrightarrow> \<exists>n. p \<in> R ^^ n" | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 760 | by (auto dest: rtrancl_imp_UN_rel_pow) | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 761 | |
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 762 | lemma single_valued_rel_pow: | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 763 |   fixes R :: "('a * 'a) set"
 | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 764 | shows "single_valued R \<Longrightarrow> single_valued (R ^^ n)" | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 765 | apply (induct n arbitrary: R) | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 766 | apply simp_all | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 767 | apply (rule single_valuedI) | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 768 | apply (fast dest: single_valuedD elim: rel_pow_Suc_E) | 
| 
cf50e67bc1d1
power operation on functions in theory Nat; power operation on relations in theory Transitive_Closure
 haftmann parents: 
30549diff
changeset | 769 | done | 
| 15551 | 770 | |
| 15076 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 ballarin parents: 
14565diff
changeset | 771 | subsection {* Setup of transitivity reasoner *}
 | 
| 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 ballarin parents: 
14565diff
changeset | 772 | |
| 26340 | 773 | ML {*
 | 
| 15076 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 ballarin parents: 
14565diff
changeset | 774 | |
| 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 ballarin parents: 
14565diff
changeset | 775 | structure Trancl_Tac = Trancl_Tac_Fun ( | 
| 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 ballarin parents: 
14565diff
changeset | 776 | struct | 
| 26340 | 777 |     val r_into_trancl = @{thm trancl.r_into_trancl};
 | 
| 778 |     val trancl_trans  = @{thm trancl_trans};
 | |
| 779 |     val rtrancl_refl = @{thm rtrancl.rtrancl_refl};
 | |
| 780 |     val r_into_rtrancl = @{thm r_into_rtrancl};
 | |
| 781 |     val trancl_into_rtrancl = @{thm trancl_into_rtrancl};
 | |
| 782 |     val rtrancl_trancl_trancl = @{thm rtrancl_trancl_trancl};
 | |
| 783 |     val trancl_rtrancl_trancl = @{thm trancl_rtrancl_trancl};
 | |
| 784 |     val rtrancl_trans = @{thm rtrancl_trans};
 | |
| 15096 | 785 | |
| 30107 
f3b3b0e3d184
Fixed nonexhaustive match problem in decomp, to make it fail more gracefully
 berghofe parents: 
29609diff
changeset | 786 |   fun decomp (@{const Trueprop} $ t) =
 | 
| 18372 | 787 |     let fun dec (Const ("op :", _) $ (Const ("Pair", _) $ a $ b) $ rel ) =
 | 
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 788 |         let fun decr (Const ("Transitive_Closure.rtrancl", _ ) $ r) = (r,"r*")
 | 
| 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 789 |               | decr (Const ("Transitive_Closure.trancl", _ ) $ r)  = (r,"r+")
 | 
| 18372 | 790 | | decr r = (r,"r"); | 
| 26801 
244184661a09
- Function dec in Trancl_Tac must eta-contract relation before calling
 berghofe parents: 
26340diff
changeset | 791 | val (rel,r) = decr (Envir.beta_eta_contract rel); | 
| 18372 | 792 | in SOME (a,b,rel,r) end | 
| 793 | | dec _ = NONE | |
| 30107 
f3b3b0e3d184
Fixed nonexhaustive match problem in decomp, to make it fail more gracefully
 berghofe parents: 
29609diff
changeset | 794 | in dec t end | 
| 
f3b3b0e3d184
Fixed nonexhaustive match problem in decomp, to make it fail more gracefully
 berghofe parents: 
29609diff
changeset | 795 | | decomp _ = NONE; | 
| 18372 | 796 | |
| 21589 | 797 | end); | 
| 15076 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 ballarin parents: 
14565diff
changeset | 798 | |
| 22262 | 799 | structure Tranclp_Tac = Trancl_Tac_Fun ( | 
| 800 | struct | |
| 26340 | 801 |     val r_into_trancl = @{thm tranclp.r_into_trancl};
 | 
| 802 |     val trancl_trans  = @{thm tranclp_trans};
 | |
| 803 |     val rtrancl_refl = @{thm rtranclp.rtrancl_refl};
 | |
| 804 |     val r_into_rtrancl = @{thm r_into_rtranclp};
 | |
| 805 |     val trancl_into_rtrancl = @{thm tranclp_into_rtranclp};
 | |
| 806 |     val rtrancl_trancl_trancl = @{thm rtranclp_tranclp_tranclp};
 | |
| 807 |     val trancl_rtrancl_trancl = @{thm tranclp_rtranclp_tranclp};
 | |
| 808 |     val rtrancl_trans = @{thm rtranclp_trans};
 | |
| 22262 | 809 | |
| 30107 
f3b3b0e3d184
Fixed nonexhaustive match problem in decomp, to make it fail more gracefully
 berghofe parents: 
29609diff
changeset | 810 |   fun decomp (@{const Trueprop} $ t) =
 | 
| 22262 | 811 | let fun dec (rel $ a $ b) = | 
| 23743 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 812 |         let fun decr (Const ("Transitive_Closure.rtranclp", _ ) $ r) = (r,"r*")
 | 
| 
52fbc991039f
rtrancl and trancl are now defined using inductive_set.
 berghofe parents: 
22422diff
changeset | 813 |               | decr (Const ("Transitive_Closure.tranclp", _ ) $ r)  = (r,"r+")
 | 
| 22262 | 814 | | decr r = (r,"r"); | 
| 815 | val (rel,r) = decr rel; | |
| 26801 
244184661a09
- Function dec in Trancl_Tac must eta-contract relation before calling
 berghofe parents: 
26340diff
changeset | 816 | in SOME (a, b, rel, r) end | 
| 22262 | 817 | | dec _ = NONE | 
| 30107 
f3b3b0e3d184
Fixed nonexhaustive match problem in decomp, to make it fail more gracefully
 berghofe parents: 
29609diff
changeset | 818 | in dec t end | 
| 
f3b3b0e3d184
Fixed nonexhaustive match problem in decomp, to make it fail more gracefully
 berghofe parents: 
29609diff
changeset | 819 | | decomp _ = NONE; | 
| 22262 | 820 | |
| 821 | end); | |
| 26340 | 822 | *} | 
| 22262 | 823 | |
| 26340 | 824 | declaration {* fn _ =>
 | 
| 825 | Simplifier.map_ss (fn ss => ss | |
| 826 | addSolver (mk_solver "Trancl" (fn _ => Trancl_Tac.trancl_tac)) | |
| 827 | addSolver (mk_solver "Rtrancl" (fn _ => Trancl_Tac.rtrancl_tac)) | |
| 828 | addSolver (mk_solver "Tranclp" (fn _ => Tranclp_Tac.trancl_tac)) | |
| 829 | addSolver (mk_solver "Rtranclp" (fn _ => Tranclp_Tac.rtrancl_tac))) | |
| 15076 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 ballarin parents: 
14565diff
changeset | 830 | *} | 
| 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 ballarin parents: 
14565diff
changeset | 831 | |
| 21589 | 832 | (* Optional methods *) | 
| 15076 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 ballarin parents: 
14565diff
changeset | 833 | |
| 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 ballarin parents: 
14565diff
changeset | 834 | method_setup trancl = | 
| 30549 | 835 |   {* Scan.succeed (K (SIMPLE_METHOD' Trancl_Tac.trancl_tac)) *}
 | 
| 18372 | 836 |   {* simple transitivity reasoner *}
 | 
| 15076 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 ballarin parents: 
14565diff
changeset | 837 | method_setup rtrancl = | 
| 30549 | 838 |   {* Scan.succeed (K (SIMPLE_METHOD' Trancl_Tac.rtrancl_tac)) *}
 | 
| 15076 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 ballarin parents: 
14565diff
changeset | 839 |   {* simple transitivity reasoner *}
 | 
| 22262 | 840 | method_setup tranclp = | 
| 30549 | 841 |   {* Scan.succeed (K (SIMPLE_METHOD' Tranclp_Tac.trancl_tac)) *}
 | 
| 22262 | 842 |   {* simple transitivity reasoner (predicate version) *}
 | 
| 843 | method_setup rtranclp = | |
| 30549 | 844 |   {* Scan.succeed (K (SIMPLE_METHOD' Tranclp_Tac.rtrancl_tac)) *}
 | 
| 22262 | 845 |   {* simple transitivity reasoner (predicate version) *}
 | 
| 15076 
4b3d280ef06a
New prover for transitive and reflexive-transitive closure of relations.
 ballarin parents: 
14565diff
changeset | 846 | |
| 10213 | 847 | end |