| author | nipkow | 
| Tue, 19 Jan 2016 11:46:54 +0100 | |
| changeset 62204 | 7f5579b12b0a | 
| parent 62087 | 44841d07ef1d | 
| child 62343 | 24106dc44def | 
| permissions | -rw-r--r-- | 
| 10358 | 1 | (* Title: HOL/Relation.thy | 
| 46664 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 2 | Author: Lawrence C Paulson, Cambridge University Computer Laboratory; Stefan Berghofer, TU Muenchen | 
| 1128 
64b30e3cc6d4
Trancl is now based on Relation which used to be in Integ.
 nipkow parents: diff
changeset | 3 | *) | 
| 
64b30e3cc6d4
Trancl is now based on Relation which used to be in Integ.
 nipkow parents: diff
changeset | 4 | |
| 60758 | 5 | section \<open>Relations -- as sets of pairs, and binary predicates\<close> | 
| 12905 | 6 | |
| 15131 | 7 | theory Relation | 
| 54555 | 8 | imports Finite_Set | 
| 15131 | 9 | begin | 
| 5978 
fa2c2dd74f8c
moved diag (diagonal relation) from Univ to Relation
 paulson parents: 
5608diff
changeset | 10 | |
| 60758 | 11 | text \<open>A preliminary: classical rules for reasoning on predicates\<close> | 
| 46664 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 12 | |
| 46882 | 13 | declare predicate1I [Pure.intro!, intro!] | 
| 14 | declare predicate1D [Pure.dest, dest] | |
| 46664 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 15 | declare predicate2I [Pure.intro!, intro!] | 
| 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 16 | declare predicate2D [Pure.dest, dest] | 
| 46767 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 17 | declare bot1E [elim!] | 
| 46664 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 18 | declare bot2E [elim!] | 
| 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 19 | declare top1I [intro!] | 
| 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 20 | declare top2I [intro!] | 
| 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 21 | declare inf1I [intro!] | 
| 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 22 | declare inf2I [intro!] | 
| 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 23 | declare inf1E [elim!] | 
| 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 24 | declare inf2E [elim!] | 
| 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 25 | declare sup1I1 [intro?] | 
| 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 26 | declare sup2I1 [intro?] | 
| 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 27 | declare sup1I2 [intro?] | 
| 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 28 | declare sup2I2 [intro?] | 
| 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 29 | declare sup1E [elim!] | 
| 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 30 | declare sup2E [elim!] | 
| 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 31 | declare sup1CI [intro!] | 
| 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 32 | declare sup2CI [intro!] | 
| 56742 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56545diff
changeset | 33 | declare Inf1_I [intro!] | 
| 46664 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 34 | declare INF1_I [intro!] | 
| 56742 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56545diff
changeset | 35 | declare Inf2_I [intro!] | 
| 46664 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 36 | declare INF2_I [intro!] | 
| 56742 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56545diff
changeset | 37 | declare Inf1_D [elim] | 
| 46664 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 38 | declare INF1_D [elim] | 
| 56742 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56545diff
changeset | 39 | declare Inf2_D [elim] | 
| 46664 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 40 | declare INF2_D [elim] | 
| 56742 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56545diff
changeset | 41 | declare Inf1_E [elim] | 
| 46664 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 42 | declare INF1_E [elim] | 
| 56742 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56545diff
changeset | 43 | declare Inf2_E [elim] | 
| 46664 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 44 | declare INF2_E [elim] | 
| 56742 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56545diff
changeset | 45 | declare Sup1_I [intro] | 
| 46664 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 46 | declare SUP1_I [intro] | 
| 56742 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56545diff
changeset | 47 | declare Sup2_I [intro] | 
| 46664 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 48 | declare SUP2_I [intro] | 
| 56742 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56545diff
changeset | 49 | declare Sup1_E [elim!] | 
| 46664 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 50 | declare SUP1_E [elim!] | 
| 56742 
678a52e676b6
more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
 haftmann parents: 
56545diff
changeset | 51 | declare Sup2_E [elim!] | 
| 46664 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 52 | declare SUP2_E [elim!] | 
| 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 53 | |
| 60758 | 54 | subsection \<open>Fundamental\<close> | 
| 46664 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 55 | |
| 60758 | 56 | subsubsection \<open>Relations as sets of pairs\<close> | 
| 46694 | 57 | |
| 58 | type_synonym 'a rel = "('a * 'a) set"
 | |
| 59 | ||
| 61799 | 60 | lemma subrelI: \<comment> \<open>Version of @{thm [source] subsetI} for binary relations\<close>
 | 
| 46694 | 61 | "(\<And>x y. (x, y) \<in> r \<Longrightarrow> (x, y) \<in> s) \<Longrightarrow> r \<subseteq> s" | 
| 62 | by auto | |
| 63 | ||
| 61799 | 64 | lemma lfp_induct2: \<comment> \<open>Version of @{thm [source] lfp_induct} for binary relations\<close>
 | 
| 46694 | 65 | "(a, b) \<in> lfp f \<Longrightarrow> mono f \<Longrightarrow> | 
| 66 |     (\<And>a b. (a, b) \<in> f (lfp f \<inter> {(x, y). P x y}) \<Longrightarrow> P a b) \<Longrightarrow> P a b"
 | |
| 55414 
eab03e9cee8a
renamed '{prod,sum,bool,unit}_case' to 'case_...'
 blanchet parents: 
55096diff
changeset | 67 | using lfp_induct_set [of "(a, b)" f "case_prod P"] by auto | 
| 46694 | 68 | |
| 69 | ||
| 60758 | 70 | subsubsection \<open>Conversions between set and predicate relations\<close> | 
| 46664 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 71 | |
| 46833 | 72 | lemma pred_equals_eq [pred_set_conv]: "(\<lambda>x. x \<in> R) = (\<lambda>x. x \<in> S) \<longleftrightarrow> R = S" | 
| 46664 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 73 | by (simp add: set_eq_iff fun_eq_iff) | 
| 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 74 | |
| 46833 | 75 | lemma pred_equals_eq2 [pred_set_conv]: "(\<lambda>x y. (x, y) \<in> R) = (\<lambda>x y. (x, y) \<in> S) \<longleftrightarrow> R = S" | 
| 46664 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 76 | by (simp add: set_eq_iff fun_eq_iff) | 
| 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 77 | |
| 46833 | 78 | lemma pred_subset_eq [pred_set_conv]: "(\<lambda>x. x \<in> R) \<le> (\<lambda>x. x \<in> S) \<longleftrightarrow> R \<subseteq> S" | 
| 46664 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 79 | by (simp add: subset_iff le_fun_def) | 
| 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 80 | |
| 46833 | 81 | lemma pred_subset_eq2 [pred_set_conv]: "(\<lambda>x y. (x, y) \<in> R) \<le> (\<lambda>x y. (x, y) \<in> S) \<longleftrightarrow> R \<subseteq> S" | 
| 46664 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 82 | by (simp add: subset_iff le_fun_def) | 
| 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 83 | |
| 46883 
eec472dae593
tuned pred_set_conv lemmas. Skipped lemmas changing the lemmas generated by inductive_set
 noschinl parents: 
46882diff
changeset | 84 | lemma bot_empty_eq [pred_set_conv]: "\<bottom> = (\<lambda>x. x \<in> {})"
 | 
| 46689 | 85 | by (auto simp add: fun_eq_iff) | 
| 86 | ||
| 46883 
eec472dae593
tuned pred_set_conv lemmas. Skipped lemmas changing the lemmas generated by inductive_set
 noschinl parents: 
46882diff
changeset | 87 | lemma bot_empty_eq2 [pred_set_conv]: "\<bottom> = (\<lambda>x y. (x, y) \<in> {})"
 | 
| 46664 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 88 | by (auto simp add: fun_eq_iff) | 
| 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 89 | |
| 46883 
eec472dae593
tuned pred_set_conv lemmas. Skipped lemmas changing the lemmas generated by inductive_set
 noschinl parents: 
46882diff
changeset | 90 | lemma top_empty_eq [pred_set_conv]: "\<top> = (\<lambda>x. x \<in> UNIV)" | 
| 
eec472dae593
tuned pred_set_conv lemmas. Skipped lemmas changing the lemmas generated by inductive_set
 noschinl parents: 
46882diff
changeset | 91 | by (auto simp add: fun_eq_iff) | 
| 46689 | 92 | |
| 46883 
eec472dae593
tuned pred_set_conv lemmas. Skipped lemmas changing the lemmas generated by inductive_set
 noschinl parents: 
46882diff
changeset | 93 | lemma top_empty_eq2 [pred_set_conv]: "\<top> = (\<lambda>x y. (x, y) \<in> UNIV)" | 
| 
eec472dae593
tuned pred_set_conv lemmas. Skipped lemmas changing the lemmas generated by inductive_set
 noschinl parents: 
46882diff
changeset | 94 | by (auto simp add: fun_eq_iff) | 
| 46664 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 95 | |
| 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 96 | lemma inf_Int_eq [pred_set_conv]: "(\<lambda>x. x \<in> R) \<sqinter> (\<lambda>x. x \<in> S) = (\<lambda>x. x \<in> R \<inter> S)" | 
| 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 97 | by (simp add: inf_fun_def) | 
| 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 98 | |
| 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 99 | lemma inf_Int_eq2 [pred_set_conv]: "(\<lambda>x y. (x, y) \<in> R) \<sqinter> (\<lambda>x y. (x, y) \<in> S) = (\<lambda>x y. (x, y) \<in> R \<inter> S)" | 
| 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 100 | by (simp add: inf_fun_def) | 
| 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 101 | |
| 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 102 | lemma sup_Un_eq [pred_set_conv]: "(\<lambda>x. x \<in> R) \<squnion> (\<lambda>x. x \<in> S) = (\<lambda>x. x \<in> R \<union> S)" | 
| 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 103 | by (simp add: sup_fun_def) | 
| 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 104 | |
| 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 105 | lemma sup_Un_eq2 [pred_set_conv]: "(\<lambda>x y. (x, y) \<in> R) \<squnion> (\<lambda>x y. (x, y) \<in> S) = (\<lambda>x y. (x, y) \<in> R \<union> S)" | 
| 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 106 | by (simp add: sup_fun_def) | 
| 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 107 | |
| 46981 | 108 | lemma INF_INT_eq [pred_set_conv]: "(\<Sqinter>i\<in>S. (\<lambda>x. x \<in> r i)) = (\<lambda>x. x \<in> (\<Inter>i\<in>S. r i))" | 
| 109 | by (simp add: fun_eq_iff) | |
| 110 | ||
| 111 | lemma INF_INT_eq2 [pred_set_conv]: "(\<Sqinter>i\<in>S. (\<lambda>x y. (x, y) \<in> r i)) = (\<lambda>x y. (x, y) \<in> (\<Inter>i\<in>S. r i))" | |
| 112 | by (simp add: fun_eq_iff) | |
| 113 | ||
| 114 | lemma SUP_UN_eq [pred_set_conv]: "(\<Squnion>i\<in>S. (\<lambda>x. x \<in> r i)) = (\<lambda>x. x \<in> (\<Union>i\<in>S. r i))" | |
| 115 | by (simp add: fun_eq_iff) | |
| 116 | ||
| 117 | lemma SUP_UN_eq2 [pred_set_conv]: "(\<Squnion>i\<in>S. (\<lambda>x y. (x, y) \<in> r i)) = (\<lambda>x y. (x, y) \<in> (\<Union>i\<in>S. r i))" | |
| 118 | by (simp add: fun_eq_iff) | |
| 119 | ||
| 46833 | 120 | lemma Inf_INT_eq [pred_set_conv]: "\<Sqinter>S = (\<lambda>x. x \<in> INTER S Collect)" | 
| 46884 | 121 | by (simp add: fun_eq_iff) | 
| 46833 | 122 | |
| 123 | lemma INF_Int_eq [pred_set_conv]: "(\<Sqinter>i\<in>S. (\<lambda>x. x \<in> i)) = (\<lambda>x. x \<in> \<Inter>S)" | |
| 46884 | 124 | by (simp add: fun_eq_iff) | 
| 46833 | 125 | |
| 55414 
eab03e9cee8a
renamed '{prod,sum,bool,unit}_case' to 'case_...'
 blanchet parents: 
55096diff
changeset | 126 | lemma Inf_INT_eq2 [pred_set_conv]: "\<Sqinter>S = (\<lambda>x y. (x, y) \<in> INTER (case_prod ` S) Collect)" | 
| 46884 | 127 | by (simp add: fun_eq_iff) | 
| 46833 | 128 | |
| 129 | lemma INF_Int_eq2 [pred_set_conv]: "(\<Sqinter>i\<in>S. (\<lambda>x y. (x, y) \<in> i)) = (\<lambda>x y. (x, y) \<in> \<Inter>S)" | |
| 46884 | 130 | by (simp add: fun_eq_iff) | 
| 46833 | 131 | |
| 132 | lemma Sup_SUP_eq [pred_set_conv]: "\<Squnion>S = (\<lambda>x. x \<in> UNION S Collect)" | |
| 46884 | 133 | by (simp add: fun_eq_iff) | 
| 46833 | 134 | |
| 135 | lemma SUP_Sup_eq [pred_set_conv]: "(\<Squnion>i\<in>S. (\<lambda>x. x \<in> i)) = (\<lambda>x. x \<in> \<Union>S)" | |
| 46884 | 136 | by (simp add: fun_eq_iff) | 
| 46833 | 137 | |
| 55414 
eab03e9cee8a
renamed '{prod,sum,bool,unit}_case' to 'case_...'
 blanchet parents: 
55096diff
changeset | 138 | lemma Sup_SUP_eq2 [pred_set_conv]: "\<Squnion>S = (\<lambda>x y. (x, y) \<in> UNION (case_prod ` S) Collect)" | 
| 46884 | 139 | by (simp add: fun_eq_iff) | 
| 46833 | 140 | |
| 141 | lemma SUP_Sup_eq2 [pred_set_conv]: "(\<Squnion>i\<in>S. (\<lambda>x y. (x, y) \<in> i)) = (\<lambda>x y. (x, y) \<in> \<Union>S)" | |
| 46884 | 142 | by (simp add: fun_eq_iff) | 
| 46833 | 143 | |
| 60758 | 144 | subsection \<open>Properties of relations\<close> | 
| 5978 
fa2c2dd74f8c
moved diag (diagonal relation) from Univ to Relation
 paulson parents: 
5608diff
changeset | 145 | |
| 60758 | 146 | subsubsection \<open>Reflexivity\<close> | 
| 10786 | 147 | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 148 | definition refl_on :: "'a set \<Rightarrow> 'a rel \<Rightarrow> bool" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 149 | where | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 150 | "refl_on A r \<longleftrightarrow> r \<subseteq> A \<times> A \<and> (\<forall>x\<in>A. (x, x) \<in> r)" | 
| 6806 
43c081a0858d
new preficates refl, sym [from Integ/Equiv], antisym
 paulson parents: 
5978diff
changeset | 151 | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 152 | abbreviation refl :: "'a rel \<Rightarrow> bool" | 
| 61799 | 153 | where \<comment> \<open>reflexivity over a type\<close> | 
| 45137 | 154 | "refl \<equiv> refl_on UNIV" | 
| 26297 | 155 | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 156 | definition reflp :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> bool"
 | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 157 | where | 
| 47375 
8e6a45f1bf8f
define reflp directly, in the manner of symp and transp
 huffman parents: 
47087diff
changeset | 158 | "reflp r \<longleftrightarrow> (\<forall>x. r x x)" | 
| 46694 | 159 | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 160 | lemma reflp_refl_eq [pred_set_conv]: | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 161 | "reflp (\<lambda>x y. (x, y) \<in> r) \<longleftrightarrow> refl r" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 162 | by (simp add: refl_on_def reflp_def) | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 163 | |
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 164 | lemma refl_onI: "r \<subseteq> A \<times> A ==> (!!x. x : A ==> (x, x) : r) ==> refl_on A r" | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 165 | by (unfold refl_on_def) (iprover intro!: ballI) | 
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 166 | |
| 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 167 | lemma refl_onD: "refl_on A r ==> a : A ==> (a, a) : r" | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 168 | by (unfold refl_on_def) blast | 
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 169 | |
| 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 170 | lemma refl_onD1: "refl_on A r ==> (x, y) : r ==> x : A" | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 171 | by (unfold refl_on_def) blast | 
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 172 | |
| 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 173 | lemma refl_onD2: "refl_on A r ==> (x, y) : r ==> y : A" | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 174 | by (unfold refl_on_def) blast | 
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 175 | |
| 46694 | 176 | lemma reflpI: | 
| 177 | "(\<And>x. r x x) \<Longrightarrow> reflp r" | |
| 178 | by (auto intro: refl_onI simp add: reflp_def) | |
| 179 | ||
| 180 | lemma reflpE: | |
| 181 | assumes "reflp r" | |
| 182 | obtains "r x x" | |
| 183 | using assms by (auto dest: refl_onD simp add: reflp_def) | |
| 184 | ||
| 47937 
70375fa2679d
generate abs_eq, use it as a code equation for total quotients; no_abs_code renamed to no_code; added no_code for quotient_type command
 kuncar parents: 
47436diff
changeset | 185 | lemma reflpD: | 
| 
70375fa2679d
generate abs_eq, use it as a code equation for total quotients; no_abs_code renamed to no_code; added no_code for quotient_type command
 kuncar parents: 
47436diff
changeset | 186 | assumes "reflp r" | 
| 
70375fa2679d
generate abs_eq, use it as a code equation for total quotients; no_abs_code renamed to no_code; added no_code for quotient_type command
 kuncar parents: 
47436diff
changeset | 187 | shows "r x x" | 
| 
70375fa2679d
generate abs_eq, use it as a code equation for total quotients; no_abs_code renamed to no_code; added no_code for quotient_type command
 kuncar parents: 
47436diff
changeset | 188 | using assms by (auto elim: reflpE) | 
| 
70375fa2679d
generate abs_eq, use it as a code equation for total quotients; no_abs_code renamed to no_code; added no_code for quotient_type command
 kuncar parents: 
47436diff
changeset | 189 | |
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 190 | lemma refl_on_Int: "refl_on A r ==> refl_on B s ==> refl_on (A \<inter> B) (r \<inter> s)" | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 191 | by (unfold refl_on_def) blast | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 192 | |
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 193 | lemma reflp_inf: | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 194 | "reflp r \<Longrightarrow> reflp s \<Longrightarrow> reflp (r \<sqinter> s)" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 195 | by (auto intro: reflpI elim: reflpE) | 
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 196 | |
| 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 197 | lemma refl_on_Un: "refl_on A r ==> refl_on B s ==> refl_on (A \<union> B) (r \<union> s)" | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 198 | by (unfold refl_on_def) blast | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 199 | |
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 200 | lemma reflp_sup: | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 201 | "reflp r \<Longrightarrow> reflp s \<Longrightarrow> reflp (r \<squnion> s)" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 202 | by (auto intro: reflpI elim: reflpE) | 
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 203 | |
| 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 204 | lemma refl_on_INTER: | 
| 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 205 | "ALL x:S. refl_on (A x) (r x) ==> refl_on (INTER S A) (INTER S r)" | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 206 | by (unfold refl_on_def) fast | 
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 207 | |
| 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 208 | lemma refl_on_UNION: | 
| 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 209 | "ALL x:S. refl_on (A x) (r x) \<Longrightarrow> refl_on (UNION S A) (UNION S r)" | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 210 | by (unfold refl_on_def) blast | 
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 211 | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 212 | lemma refl_on_empty [simp]: "refl_on {} {}"
 | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 213 | by (simp add:refl_on_def) | 
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 214 | |
| 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 215 | lemma refl_on_def' [nitpick_unfold, code]: | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 216 | "refl_on A r \<longleftrightarrow> (\<forall>(x, y) \<in> r. x \<in> A \<and> y \<in> A) \<and> (\<forall>x \<in> A. (x, x) \<in> r)" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 217 | by (auto intro: refl_onI dest: refl_onD refl_onD1 refl_onD2) | 
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 218 | |
| 60057 | 219 | lemma reflp_equality [simp]: "reflp op =" | 
| 220 | by(simp add: reflp_def) | |
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 221 | |
| 61630 | 222 | lemma reflp_mono: "\<lbrakk> reflp R; \<And>x y. R x y \<longrightarrow> Q x y \<rbrakk> \<Longrightarrow> reflp Q" | 
| 223 | by(auto intro: reflpI dest: reflpD) | |
| 224 | ||
| 60758 | 225 | subsubsection \<open>Irreflexivity\<close> | 
| 6806 
43c081a0858d
new preficates refl, sym [from Integ/Equiv], antisym
 paulson parents: 
5978diff
changeset | 226 | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 227 | definition irrefl :: "'a rel \<Rightarrow> bool" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 228 | where | 
| 56545 | 229 | "irrefl r \<longleftrightarrow> (\<forall>a. (a, a) \<notin> r)" | 
| 230 | ||
| 231 | definition irreflp :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> bool"
 | |
| 232 | where | |
| 233 | "irreflp R \<longleftrightarrow> (\<forall>a. \<not> R a a)" | |
| 234 | ||
| 235 | lemma irreflp_irrefl_eq [pred_set_conv]: | |
| 236 | "irreflp (\<lambda>a b. (a, b) \<in> R) \<longleftrightarrow> irrefl R" | |
| 237 | by (simp add: irrefl_def irreflp_def) | |
| 238 | ||
| 239 | lemma irreflI: | |
| 240 | "(\<And>a. (a, a) \<notin> R) \<Longrightarrow> irrefl R" | |
| 241 | by (simp add: irrefl_def) | |
| 242 | ||
| 243 | lemma irreflpI: | |
| 244 | "(\<And>a. \<not> R a a) \<Longrightarrow> irreflp R" | |
| 245 | by (fact irreflI [to_pred]) | |
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 246 | |
| 46694 | 247 | lemma irrefl_distinct [code]: | 
| 56545 | 248 | "irrefl r \<longleftrightarrow> (\<forall>(a, b) \<in> r. a \<noteq> b)" | 
| 46694 | 249 | by (auto simp add: irrefl_def) | 
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 250 | |
| 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 251 | |
| 60758 | 252 | subsubsection \<open>Asymmetry\<close> | 
| 56545 | 253 | |
| 254 | inductive asym :: "'a rel \<Rightarrow> bool" | |
| 255 | where | |
| 256 | asymI: "irrefl R \<Longrightarrow> (\<And>a b. (a, b) \<in> R \<Longrightarrow> (b, a) \<notin> R) \<Longrightarrow> asym R" | |
| 257 | ||
| 258 | inductive asymp :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> bool"
 | |
| 259 | where | |
| 260 | asympI: "irreflp R \<Longrightarrow> (\<And>a b. R a b \<Longrightarrow> \<not> R b a) \<Longrightarrow> asymp R" | |
| 261 | ||
| 262 | lemma asymp_asym_eq [pred_set_conv]: | |
| 263 | "asymp (\<lambda>a b. (a, b) \<in> R) \<longleftrightarrow> asym R" | |
| 264 | by (auto intro!: asymI asympI elim: asym.cases asymp.cases simp add: irreflp_irrefl_eq) | |
| 265 | ||
| 266 | ||
| 60758 | 267 | subsubsection \<open>Symmetry\<close> | 
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 268 | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 269 | definition sym :: "'a rel \<Rightarrow> bool" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 270 | where | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 271 | "sym r \<longleftrightarrow> (\<forall>x y. (x, y) \<in> r \<longrightarrow> (y, x) \<in> r)" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 272 | |
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 273 | definition symp :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> bool"
 | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 274 | where | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 275 | "symp r \<longleftrightarrow> (\<forall>x y. r x y \<longrightarrow> r y x)" | 
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 276 | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 277 | lemma symp_sym_eq [pred_set_conv]: | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 278 | "symp (\<lambda>x y. (x, y) \<in> r) \<longleftrightarrow> sym r" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 279 | by (simp add: sym_def symp_def) | 
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 280 | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 281 | lemma symI: | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 282 | "(\<And>a b. (a, b) \<in> r \<Longrightarrow> (b, a) \<in> r) \<Longrightarrow> sym r" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 283 | by (unfold sym_def) iprover | 
| 46694 | 284 | |
| 285 | lemma sympI: | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 286 | "(\<And>a b. r a b \<Longrightarrow> r b a) \<Longrightarrow> symp r" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 287 | by (fact symI [to_pred]) | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 288 | |
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 289 | lemma symE: | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 290 | assumes "sym r" and "(b, a) \<in> r" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 291 | obtains "(a, b) \<in> r" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 292 | using assms by (simp add: sym_def) | 
| 46694 | 293 | |
| 294 | lemma sympE: | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 295 | assumes "symp r" and "r b a" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 296 | obtains "r a b" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 297 | using assms by (rule symE [to_pred]) | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 298 | |
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 299 | lemma symD: | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 300 | assumes "sym r" and "(b, a) \<in> r" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 301 | shows "(a, b) \<in> r" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 302 | using assms by (rule symE) | 
| 46694 | 303 | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 304 | lemma sympD: | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 305 | assumes "symp r" and "r b a" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 306 | shows "r a b" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 307 | using assms by (rule symD [to_pred]) | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 308 | |
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 309 | lemma sym_Int: | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 310 | "sym r \<Longrightarrow> sym s \<Longrightarrow> sym (r \<inter> s)" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 311 | by (fast intro: symI elim: symE) | 
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 312 | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 313 | lemma symp_inf: | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 314 | "symp r \<Longrightarrow> symp s \<Longrightarrow> symp (r \<sqinter> s)" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 315 | by (fact sym_Int [to_pred]) | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 316 | |
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 317 | lemma sym_Un: | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 318 | "sym r \<Longrightarrow> sym s \<Longrightarrow> sym (r \<union> s)" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 319 | by (fast intro: symI elim: symE) | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 320 | |
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 321 | lemma symp_sup: | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 322 | "symp r \<Longrightarrow> symp s \<Longrightarrow> symp (r \<squnion> s)" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 323 | by (fact sym_Un [to_pred]) | 
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 324 | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 325 | lemma sym_INTER: | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 326 | "\<forall>x\<in>S. sym (r x) \<Longrightarrow> sym (INTER S r)" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 327 | by (fast intro: symI elim: symE) | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 328 | |
| 46982 | 329 | lemma symp_INF: | 
| 56218 
1c3f1f2431f9
elongated INFI and SUPR, to reduced risk of confusing theorems names in the future while still being consistent with INTER and UNION
 haftmann parents: 
56085diff
changeset | 330 | "\<forall>x\<in>S. symp (r x) \<Longrightarrow> symp (INFIMUM S r)" | 
| 46982 | 331 | by (fact sym_INTER [to_pred]) | 
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 332 | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 333 | lemma sym_UNION: | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 334 | "\<forall>x\<in>S. sym (r x) \<Longrightarrow> sym (UNION S r)" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 335 | by (fast intro: symI elim: symE) | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 336 | |
| 46982 | 337 | lemma symp_SUP: | 
| 56218 
1c3f1f2431f9
elongated INFI and SUPR, to reduced risk of confusing theorems names in the future while still being consistent with INTER and UNION
 haftmann parents: 
56085diff
changeset | 338 | "\<forall>x\<in>S. symp (r x) \<Longrightarrow> symp (SUPREMUM S r)" | 
| 46982 | 339 | by (fact sym_UNION [to_pred]) | 
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 340 | |
| 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 341 | |
| 60758 | 342 | subsubsection \<open>Antisymmetry\<close> | 
| 46694 | 343 | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 344 | definition antisym :: "'a rel \<Rightarrow> bool" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 345 | where | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 346 | "antisym r \<longleftrightarrow> (\<forall>x y. (x, y) \<in> r \<longrightarrow> (y, x) \<in> r \<longrightarrow> x = y)" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 347 | |
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 348 | abbreviation antisymP :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> bool"
 | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 349 | where | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 350 |   "antisymP r \<equiv> antisym {(x, y). r x y}"
 | 
| 46694 | 351 | |
| 352 | lemma antisymI: | |
| 353 | "(!!x y. (x, y) : r ==> (y, x) : r ==> x=y) ==> antisym r" | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 354 | by (unfold antisym_def) iprover | 
| 46694 | 355 | |
| 356 | lemma antisymD: "antisym r ==> (a, b) : r ==> (b, a) : r ==> a = b" | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 357 | by (unfold antisym_def) iprover | 
| 46694 | 358 | |
| 359 | lemma antisym_subset: "r \<subseteq> s ==> antisym s ==> antisym r" | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 360 | by (unfold antisym_def) blast | 
| 46694 | 361 | |
| 362 | lemma antisym_empty [simp]: "antisym {}"
 | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 363 | by (unfold antisym_def) blast | 
| 46694 | 364 | |
| 60057 | 365 | lemma antisymP_equality [simp]: "antisymP op =" | 
| 366 | by(auto intro: antisymI) | |
| 46694 | 367 | |
| 60758 | 368 | subsubsection \<open>Transitivity\<close> | 
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 369 | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 370 | definition trans :: "'a rel \<Rightarrow> bool" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 371 | where | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 372 | "trans r \<longleftrightarrow> (\<forall>x y z. (x, y) \<in> r \<longrightarrow> (y, z) \<in> r \<longrightarrow> (x, z) \<in> r)" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 373 | |
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 374 | definition transp :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> bool"
 | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 375 | where | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 376 | "transp r \<longleftrightarrow> (\<forall>x y z. r x y \<longrightarrow> r y z \<longrightarrow> r x z)" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 377 | |
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 378 | lemma transp_trans_eq [pred_set_conv]: | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 379 | "transp (\<lambda>x y. (x, y) \<in> r) \<longleftrightarrow> trans r" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 380 | by (simp add: trans_def transp_def) | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 381 | |
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 382 | abbreviation transP :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> bool"
 | 
| 61799 | 383 | where \<comment> \<open>FIXME drop\<close> | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 384 |   "transP r \<equiv> trans {(x, y). r x y}"
 | 
| 5978 
fa2c2dd74f8c
moved diag (diagonal relation) from Univ to Relation
 paulson parents: 
5608diff
changeset | 385 | |
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 386 | lemma transI: | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 387 | "(\<And>x y z. (x, y) \<in> r \<Longrightarrow> (y, z) \<in> r \<Longrightarrow> (x, z) \<in> r) \<Longrightarrow> trans r" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 388 | by (unfold trans_def) iprover | 
| 46694 | 389 | |
| 390 | lemma transpI: | |
| 391 | "(\<And>x y z. r x y \<Longrightarrow> r y z \<Longrightarrow> r x z) \<Longrightarrow> transp r" | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 392 | by (fact transI [to_pred]) | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 393 | |
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 394 | lemma transE: | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 395 | assumes "trans r" and "(x, y) \<in> r" and "(y, z) \<in> r" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 396 | obtains "(x, z) \<in> r" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 397 | using assms by (unfold trans_def) iprover | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 398 | |
| 46694 | 399 | lemma transpE: | 
| 400 | assumes "transp r" and "r x y" and "r y z" | |
| 401 | obtains "r x z" | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 402 | using assms by (rule transE [to_pred]) | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 403 | |
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 404 | lemma transD: | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 405 | assumes "trans r" and "(x, y) \<in> r" and "(y, z) \<in> r" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 406 | shows "(x, z) \<in> r" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 407 | using assms by (rule transE) | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 408 | |
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 409 | lemma transpD: | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 410 | assumes "transp r" and "r x y" and "r y z" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 411 | shows "r x z" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 412 | using assms by (rule transD [to_pred]) | 
| 46694 | 413 | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 414 | lemma trans_Int: | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 415 | "trans r \<Longrightarrow> trans s \<Longrightarrow> trans (r \<inter> s)" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 416 | by (fast intro: transI elim: transE) | 
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 417 | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 418 | lemma transp_inf: | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 419 | "transp r \<Longrightarrow> transp s \<Longrightarrow> transp (r \<sqinter> s)" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 420 | by (fact trans_Int [to_pred]) | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 421 | |
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 422 | lemma trans_INTER: | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 423 | "\<forall>x\<in>S. trans (r x) \<Longrightarrow> trans (INTER S r)" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 424 | by (fast intro: transI elim: transD) | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 425 | |
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 426 | (* FIXME thm trans_INTER [to_pred] *) | 
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 427 | |
| 46694 | 428 | lemma trans_join [code]: | 
| 429 | "trans r \<longleftrightarrow> (\<forall>(x, y1) \<in> r. \<forall>(y2, z) \<in> r. y1 = y2 \<longrightarrow> (x, z) \<in> r)" | |
| 430 | by (auto simp add: trans_def) | |
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 431 | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 432 | lemma transp_trans: | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 433 |   "transp r \<longleftrightarrow> trans {(x, y). r x y}"
 | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 434 | by (simp add: trans_def transp_def) | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 435 | |
| 59518 | 436 | lemma transp_equality [simp]: "transp op =" | 
| 437 | by(auto intro: transpI) | |
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 438 | |
| 60758 | 439 | subsubsection \<open>Totality\<close> | 
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 440 | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 441 | definition total_on :: "'a set \<Rightarrow> 'a rel \<Rightarrow> bool" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 442 | where | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 443 | "total_on A r \<longleftrightarrow> (\<forall>x\<in>A. \<forall>y\<in>A. x \<noteq> y \<longrightarrow> (x, y) \<in> r \<or> (y, x) \<in> r)" | 
| 29859 
33bff35f1335
Moved Order_Relation into Library and moved some of it into Relation.
 nipkow parents: 
29609diff
changeset | 444 | |
| 
33bff35f1335
Moved Order_Relation into Library and moved some of it into Relation.
 nipkow parents: 
29609diff
changeset | 445 | abbreviation "total \<equiv> total_on UNIV" | 
| 
33bff35f1335
Moved Order_Relation into Library and moved some of it into Relation.
 nipkow parents: 
29609diff
changeset | 446 | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 447 | lemma total_on_empty [simp]: "total_on {} r"
 | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 448 | by (simp add: total_on_def) | 
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 449 | |
| 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 450 | |
| 60758 | 451 | subsubsection \<open>Single valued relations\<close> | 
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 452 | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 453 | definition single_valued :: "('a \<times> 'b) set \<Rightarrow> bool"
 | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 454 | where | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 455 | "single_valued r \<longleftrightarrow> (\<forall>x y. (x, y) \<in> r \<longrightarrow> (\<forall>z. (x, z) \<in> r \<longrightarrow> y = z))" | 
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 456 | |
| 46694 | 457 | abbreviation single_valuedP :: "('a \<Rightarrow> 'b \<Rightarrow> bool) \<Rightarrow> bool" where
 | 
| 458 |   "single_valuedP r \<equiv> single_valued {(x, y). r x y}"
 | |
| 459 | ||
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 460 | lemma single_valuedI: | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 461 | "ALL x y. (x,y):r --> (ALL z. (x,z):r --> y=z) ==> single_valued r" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 462 | by (unfold single_valued_def) | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 463 | |
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 464 | lemma single_valuedD: | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 465 | "single_valued r ==> (x, y) : r ==> (x, z) : r ==> y = z" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 466 | by (simp add: single_valued_def) | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 467 | |
| 57111 | 468 | lemma single_valued_empty[simp]: "single_valued {}"
 | 
| 52392 | 469 | by(simp add: single_valued_def) | 
| 470 | ||
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 471 | lemma single_valued_subset: | 
| 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 472 | "r \<subseteq> s ==> single_valued s ==> single_valued r" | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 473 | by (unfold single_valued_def) blast | 
| 11136 | 474 | |
| 12905 | 475 | |
| 60758 | 476 | subsection \<open>Relation operations\<close> | 
| 46694 | 477 | |
| 60758 | 478 | subsubsection \<open>The identity relation\<close> | 
| 12905 | 479 | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 480 | definition Id :: "'a rel" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 481 | where | 
| 48253 
4410a709913c
a first guess to avoid the Codegenerator_Test to loop infinitely
 bulwahn parents: 
47937diff
changeset | 482 |   [code del]: "Id = {p. \<exists>x. p = (x, x)}"
 | 
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 483 | |
| 12905 | 484 | lemma IdI [intro]: "(a, a) : Id" | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 485 | by (simp add: Id_def) | 
| 12905 | 486 | |
| 487 | lemma IdE [elim!]: "p : Id ==> (!!x. p = (x, x) ==> P) ==> P" | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 488 | by (unfold Id_def) (iprover elim: CollectE) | 
| 12905 | 489 | |
| 490 | lemma pair_in_Id_conv [iff]: "((a, b) : Id) = (a = b)" | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 491 | by (unfold Id_def) blast | 
| 12905 | 492 | |
| 30198 | 493 | lemma refl_Id: "refl Id" | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 494 | by (simp add: refl_on_def) | 
| 12905 | 495 | |
| 496 | lemma antisym_Id: "antisym Id" | |
| 61799 | 497 | \<comment> \<open>A strange result, since \<open>Id\<close> is also symmetric.\<close> | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 498 | by (simp add: antisym_def) | 
| 12905 | 499 | |
| 19228 | 500 | lemma sym_Id: "sym Id" | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 501 | by (simp add: sym_def) | 
| 19228 | 502 | |
| 12905 | 503 | lemma trans_Id: "trans Id" | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 504 | by (simp add: trans_def) | 
| 12905 | 505 | |
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 506 | lemma single_valued_Id [simp]: "single_valued Id" | 
| 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 507 | by (unfold single_valued_def) blast | 
| 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 508 | |
| 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 509 | lemma irrefl_diff_Id [simp]: "irrefl (r - Id)" | 
| 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 510 | by (simp add:irrefl_def) | 
| 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 511 | |
| 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 512 | lemma trans_diff_Id: "trans r \<Longrightarrow> antisym r \<Longrightarrow> trans (r - Id)" | 
| 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 513 | unfolding antisym_def trans_def by blast | 
| 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 514 | |
| 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 515 | lemma total_on_diff_Id [simp]: "total_on A (r - Id) = total_on A r" | 
| 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 516 | by (simp add: total_on_def) | 
| 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 517 | |
| 62087 
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
 paulson parents: 
61955diff
changeset | 518 | lemma Id_fstsnd_eq: "Id = {x. fst x = snd x}"
 | 
| 
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
 paulson parents: 
61955diff
changeset | 519 | by force | 
| 12905 | 520 | |
| 60758 | 521 | subsubsection \<open>Diagonal: identity over a set\<close> | 
| 12905 | 522 | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 523 | definition Id_on :: "'a set \<Rightarrow> 'a rel" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 524 | where | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 525 |   "Id_on A = (\<Union>x\<in>A. {(x, x)})"
 | 
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 526 | |
| 30198 | 527 | lemma Id_on_empty [simp]: "Id_on {} = {}"
 | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 528 | by (simp add: Id_on_def) | 
| 13812 
91713a1915ee
converting HOL/UNITY to use unconditional fairness
 paulson parents: 
13639diff
changeset | 529 | |
| 30198 | 530 | lemma Id_on_eqI: "a = b ==> a : A ==> (a, b) : Id_on A" | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 531 | by (simp add: Id_on_def) | 
| 12905 | 532 | |
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53680diff
changeset | 533 | lemma Id_onI [intro!]: "a : A ==> (a, a) : Id_on A" | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 534 | by (rule Id_on_eqI) (rule refl) | 
| 12905 | 535 | |
| 30198 | 536 | lemma Id_onE [elim!]: | 
| 537 | "c : Id_on A ==> (!!x. x : A ==> c = (x, x) ==> P) ==> P" | |
| 61799 | 538 | \<comment> \<open>The general elimination rule.\<close> | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 539 | by (unfold Id_on_def) (iprover elim!: UN_E singletonE) | 
| 12905 | 540 | |
| 30198 | 541 | lemma Id_on_iff: "((x, y) : Id_on A) = (x = y & x : A)" | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 542 | by blast | 
| 12905 | 543 | |
| 45967 | 544 | lemma Id_on_def' [nitpick_unfold]: | 
| 44278 
1220ecb81e8f
observe distinction between sets and predicates more properly
 haftmann parents: 
41792diff
changeset | 545 |   "Id_on {x. A x} = Collect (\<lambda>(x, y). x = y \<and> A x)"
 | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 546 | by auto | 
| 40923 
be80c93ac0a2
adding a nice definition of Id_on for quickcheck and nitpick
 bulwahn parents: 
36772diff
changeset | 547 | |
| 30198 | 548 | lemma Id_on_subset_Times: "Id_on A \<subseteq> A \<times> A" | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 549 | by blast | 
| 12905 | 550 | |
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 551 | lemma refl_on_Id_on: "refl_on A (Id_on A)" | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 552 | by (rule refl_onI [OF Id_on_subset_Times Id_onI]) | 
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 553 | |
| 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 554 | lemma antisym_Id_on [simp]: "antisym (Id_on A)" | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 555 | by (unfold antisym_def) blast | 
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 556 | |
| 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 557 | lemma sym_Id_on [simp]: "sym (Id_on A)" | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 558 | by (rule symI) clarify | 
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 559 | |
| 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 560 | lemma trans_Id_on [simp]: "trans (Id_on A)" | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 561 | by (fast intro: transI elim: transD) | 
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 562 | |
| 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 563 | lemma single_valued_Id_on [simp]: "single_valued (Id_on A)" | 
| 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 564 | by (unfold single_valued_def) blast | 
| 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 565 | |
| 12905 | 566 | |
| 60758 | 567 | subsubsection \<open>Composition\<close> | 
| 12905 | 568 | |
| 47433 
07f4bf913230
renamed "rel_comp" to "relcomp" (to be consistent with, e.g., "relpow")
 griff parents: 
47087diff
changeset | 569 | inductive_set relcomp  :: "('a \<times> 'b) set \<Rightarrow> ('b \<times> 'c) set \<Rightarrow> ('a \<times> 'c) set" (infixr "O" 75)
 | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 570 |   for r :: "('a \<times> 'b) set" and s :: "('b \<times> 'c) set"
 | 
| 46694 | 571 | where | 
| 47433 
07f4bf913230
renamed "rel_comp" to "relcomp" (to be consistent with, e.g., "relpow")
 griff parents: 
47087diff
changeset | 572 | relcompI [intro]: "(a, b) \<in> r \<Longrightarrow> (b, c) \<in> s \<Longrightarrow> (a, c) \<in> r O s" | 
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 573 | |
| 47434 
b75ce48a93ee
dropped abbreviation "pred_comp"; introduced infix notation "P OO Q" for "relcompp P Q"
 griff parents: 
47433diff
changeset | 574 | notation relcompp (infixr "OO" 75) | 
| 12905 | 575 | |
| 47434 
b75ce48a93ee
dropped abbreviation "pred_comp"; introduced infix notation "P OO Q" for "relcompp P Q"
 griff parents: 
47433diff
changeset | 576 | lemmas relcomppI = relcompp.intros | 
| 12905 | 577 | |
| 60758 | 578 | text \<open> | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 579 | For historic reasons, the elimination rules are not wholly corresponding. | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 580 | Feel free to consolidate this. | 
| 60758 | 581 | \<close> | 
| 46694 | 582 | |
| 47433 
07f4bf913230
renamed "rel_comp" to "relcomp" (to be consistent with, e.g., "relpow")
 griff parents: 
47087diff
changeset | 583 | inductive_cases relcompEpair: "(a, c) \<in> r O s" | 
| 47434 
b75ce48a93ee
dropped abbreviation "pred_comp"; introduced infix notation "P OO Q" for "relcompp P Q"
 griff parents: 
47433diff
changeset | 584 | inductive_cases relcomppE [elim!]: "(r OO s) a c" | 
| 46694 | 585 | |
| 47433 
07f4bf913230
renamed "rel_comp" to "relcomp" (to be consistent with, e.g., "relpow")
 griff parents: 
47087diff
changeset | 586 | lemma relcompE [elim!]: "xz \<in> r O s \<Longrightarrow> | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 587 | (\<And>x y z. xz = (x, z) \<Longrightarrow> (x, y) \<in> r \<Longrightarrow> (y, z) \<in> s \<Longrightarrow> P) \<Longrightarrow> P" | 
| 47433 
07f4bf913230
renamed "rel_comp" to "relcomp" (to be consistent with, e.g., "relpow")
 griff parents: 
47087diff
changeset | 588 | by (cases xz) (simp, erule relcompEpair, iprover) | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 589 | |
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 590 | lemma R_O_Id [simp]: | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 591 | "R O Id = R" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 592 | by fast | 
| 46694 | 593 | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 594 | lemma Id_O_R [simp]: | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 595 | "Id O R = R" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 596 | by fast | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 597 | |
| 47433 
07f4bf913230
renamed "rel_comp" to "relcomp" (to be consistent with, e.g., "relpow")
 griff parents: 
47087diff
changeset | 598 | lemma relcomp_empty1 [simp]: | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 599 |   "{} O R = {}"
 | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 600 | by blast | 
| 12905 | 601 | |
| 47434 
b75ce48a93ee
dropped abbreviation "pred_comp"; introduced infix notation "P OO Q" for "relcompp P Q"
 griff parents: 
47433diff
changeset | 602 | lemma relcompp_bot1 [simp]: | 
| 46883 
eec472dae593
tuned pred_set_conv lemmas. Skipped lemmas changing the lemmas generated by inductive_set
 noschinl parents: 
46882diff
changeset | 603 | "\<bottom> OO R = \<bottom>" | 
| 47433 
07f4bf913230
renamed "rel_comp" to "relcomp" (to be consistent with, e.g., "relpow")
 griff parents: 
47087diff
changeset | 604 | by (fact relcomp_empty1 [to_pred]) | 
| 12905 | 605 | |
| 47433 
07f4bf913230
renamed "rel_comp" to "relcomp" (to be consistent with, e.g., "relpow")
 griff parents: 
47087diff
changeset | 606 | lemma relcomp_empty2 [simp]: | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 607 |   "R O {} = {}"
 | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 608 | by blast | 
| 12905 | 609 | |
| 47434 
b75ce48a93ee
dropped abbreviation "pred_comp"; introduced infix notation "P OO Q" for "relcompp P Q"
 griff parents: 
47433diff
changeset | 610 | lemma relcompp_bot2 [simp]: | 
| 46883 
eec472dae593
tuned pred_set_conv lemmas. Skipped lemmas changing the lemmas generated by inductive_set
 noschinl parents: 
46882diff
changeset | 611 | "R OO \<bottom> = \<bottom>" | 
| 47433 
07f4bf913230
renamed "rel_comp" to "relcomp" (to be consistent with, e.g., "relpow")
 griff parents: 
47087diff
changeset | 612 | by (fact relcomp_empty2 [to_pred]) | 
| 23185 | 613 | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 614 | lemma O_assoc: | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 615 | "(R O S) O T = R O (S O T)" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 616 | by blast | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 617 | |
| 47434 
b75ce48a93ee
dropped abbreviation "pred_comp"; introduced infix notation "P OO Q" for "relcompp P Q"
 griff parents: 
47433diff
changeset | 618 | lemma relcompp_assoc: | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 619 | "(r OO s) OO t = r OO (s OO t)" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 620 | by (fact O_assoc [to_pred]) | 
| 23185 | 621 | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 622 | lemma trans_O_subset: | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 623 | "trans r \<Longrightarrow> r O r \<subseteq> r" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 624 | by (unfold trans_def) blast | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 625 | |
| 47434 
b75ce48a93ee
dropped abbreviation "pred_comp"; introduced infix notation "P OO Q" for "relcompp P Q"
 griff parents: 
47433diff
changeset | 626 | lemma transp_relcompp_less_eq: | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 627 | "transp r \<Longrightarrow> r OO r \<le> r " | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 628 | by (fact trans_O_subset [to_pred]) | 
| 12905 | 629 | |
| 47433 
07f4bf913230
renamed "rel_comp" to "relcomp" (to be consistent with, e.g., "relpow")
 griff parents: 
47087diff
changeset | 630 | lemma relcomp_mono: | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 631 | "r' \<subseteq> r \<Longrightarrow> s' \<subseteq> s \<Longrightarrow> r' O s' \<subseteq> r O s" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 632 | by blast | 
| 12905 | 633 | |
| 47434 
b75ce48a93ee
dropped abbreviation "pred_comp"; introduced infix notation "P OO Q" for "relcompp P Q"
 griff parents: 
47433diff
changeset | 634 | lemma relcompp_mono: | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 635 | "r' \<le> r \<Longrightarrow> s' \<le> s \<Longrightarrow> r' OO s' \<le> r OO s " | 
| 47433 
07f4bf913230
renamed "rel_comp" to "relcomp" (to be consistent with, e.g., "relpow")
 griff parents: 
47087diff
changeset | 636 | by (fact relcomp_mono [to_pred]) | 
| 12905 | 637 | |
| 47433 
07f4bf913230
renamed "rel_comp" to "relcomp" (to be consistent with, e.g., "relpow")
 griff parents: 
47087diff
changeset | 638 | lemma relcomp_subset_Sigma: | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 639 | "r \<subseteq> A \<times> B \<Longrightarrow> s \<subseteq> B \<times> C \<Longrightarrow> r O s \<subseteq> A \<times> C" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 640 | by blast | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 641 | |
| 47433 
07f4bf913230
renamed "rel_comp" to "relcomp" (to be consistent with, e.g., "relpow")
 griff parents: 
47087diff
changeset | 642 | lemma relcomp_distrib [simp]: | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 643 | "R O (S \<union> T) = (R O S) \<union> (R O T)" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 644 | by auto | 
| 12905 | 645 | |
| 47434 
b75ce48a93ee
dropped abbreviation "pred_comp"; introduced infix notation "P OO Q" for "relcompp P Q"
 griff parents: 
47433diff
changeset | 646 | lemma relcompp_distrib [simp]: | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 647 | "R OO (S \<squnion> T) = R OO S \<squnion> R OO T" | 
| 47433 
07f4bf913230
renamed "rel_comp" to "relcomp" (to be consistent with, e.g., "relpow")
 griff parents: 
47087diff
changeset | 648 | by (fact relcomp_distrib [to_pred]) | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 649 | |
| 47433 
07f4bf913230
renamed "rel_comp" to "relcomp" (to be consistent with, e.g., "relpow")
 griff parents: 
47087diff
changeset | 650 | lemma relcomp_distrib2 [simp]: | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 651 | "(S \<union> T) O R = (S O R) \<union> (T O R)" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 652 | by auto | 
| 28008 
f945f8d9ad4d
added distributivity of relation composition over union [simp]
 krauss parents: 
26297diff
changeset | 653 | |
| 47434 
b75ce48a93ee
dropped abbreviation "pred_comp"; introduced infix notation "P OO Q" for "relcompp P Q"
 griff parents: 
47433diff
changeset | 654 | lemma relcompp_distrib2 [simp]: | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 655 | "(S \<squnion> T) OO R = S OO R \<squnion> T OO R" | 
| 47433 
07f4bf913230
renamed "rel_comp" to "relcomp" (to be consistent with, e.g., "relpow")
 griff parents: 
47087diff
changeset | 656 | by (fact relcomp_distrib2 [to_pred]) | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 657 | |
| 47433 
07f4bf913230
renamed "rel_comp" to "relcomp" (to be consistent with, e.g., "relpow")
 griff parents: 
47087diff
changeset | 658 | lemma relcomp_UNION_distrib: | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 659 | "s O UNION I r = (\<Union>i\<in>I. s O r i) " | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 660 | by auto | 
| 28008 
f945f8d9ad4d
added distributivity of relation composition over union [simp]
 krauss parents: 
26297diff
changeset | 661 | |
| 47433 
07f4bf913230
renamed "rel_comp" to "relcomp" (to be consistent with, e.g., "relpow")
 griff parents: 
47087diff
changeset | 662 | (* FIXME thm relcomp_UNION_distrib [to_pred] *) | 
| 36772 | 663 | |
| 47433 
07f4bf913230
renamed "rel_comp" to "relcomp" (to be consistent with, e.g., "relpow")
 griff parents: 
47087diff
changeset | 664 | lemma relcomp_UNION_distrib2: | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 665 | "UNION I r O s = (\<Union>i\<in>I. r i O s) " | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 666 | by auto | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 667 | |
| 47433 
07f4bf913230
renamed "rel_comp" to "relcomp" (to be consistent with, e.g., "relpow")
 griff parents: 
47087diff
changeset | 668 | (* FIXME thm relcomp_UNION_distrib2 [to_pred] *) | 
| 36772 | 669 | |
| 47433 
07f4bf913230
renamed "rel_comp" to "relcomp" (to be consistent with, e.g., "relpow")
 griff parents: 
47087diff
changeset | 670 | lemma single_valued_relcomp: | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 671 | "single_valued r \<Longrightarrow> single_valued s \<Longrightarrow> single_valued (r O s)" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 672 | by (unfold single_valued_def) blast | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 673 | |
| 47433 
07f4bf913230
renamed "rel_comp" to "relcomp" (to be consistent with, e.g., "relpow")
 griff parents: 
47087diff
changeset | 674 | lemma relcomp_unfold: | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 675 |   "r O s = {(x, z). \<exists>y. (x, y) \<in> r \<and> (y, z) \<in> s}"
 | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 676 | by (auto simp add: set_eq_iff) | 
| 12905 | 677 | |
| 58195 | 678 | lemma relcompp_apply: "(R OO S) a c \<longleftrightarrow> (\<exists>b. R a b \<and> S b c)" | 
| 679 | unfolding relcomp_unfold [to_pred] .. | |
| 680 | ||
| 55083 | 681 | lemma eq_OO: "op= OO R = R" | 
| 682 | by blast | |
| 683 | ||
| 61630 | 684 | lemma OO_eq: "R OO op = = R" | 
| 685 | by blast | |
| 46664 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 686 | |
| 60758 | 687 | subsubsection \<open>Converse\<close> | 
| 12913 | 688 | |
| 61955 
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
 wenzelm parents: 
61799diff
changeset | 689 | inductive_set converse :: "('a \<times> 'b) set \<Rightarrow> ('b \<times> 'a) set"  ("(_\<inverse>)" [1000] 999)
 | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 690 |   for r :: "('a \<times> 'b) set"
 | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 691 | where | 
| 61955 
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
 wenzelm parents: 
61799diff
changeset | 692 | "(a, b) \<in> r \<Longrightarrow> (b, a) \<in> r\<inverse>" | 
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 693 | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 694 | notation | 
| 61955 
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
 wenzelm parents: 
61799diff
changeset | 695 |   conversep  ("(_\<inverse>\<inverse>)" [1000] 1000)
 | 
| 46694 | 696 | |
| 61955 
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
 wenzelm parents: 
61799diff
changeset | 697 | notation (ASCII) | 
| 
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
 wenzelm parents: 
61799diff
changeset | 698 |   converse  ("(_^-1)" [1000] 999) and
 | 
| 
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
 wenzelm parents: 
61799diff
changeset | 699 |   conversep ("(_^--1)" [1000] 1000)
 | 
| 46694 | 700 | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 701 | lemma converseI [sym]: | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 702 | "(a, b) \<in> r \<Longrightarrow> (b, a) \<in> r\<inverse>" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 703 | by (fact converse.intros) | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 704 | |
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 705 | lemma conversepI (* CANDIDATE [sym] *): | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 706 | "r a b \<Longrightarrow> r\<inverse>\<inverse> b a" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 707 | by (fact conversep.intros) | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 708 | |
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 709 | lemma converseD [sym]: | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 710 | "(a, b) \<in> r\<inverse> \<Longrightarrow> (b, a) \<in> r" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 711 | by (erule converse.cases) iprover | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 712 | |
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 713 | lemma conversepD (* CANDIDATE [sym] *): | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 714 | "r\<inverse>\<inverse> b a \<Longrightarrow> r a b" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 715 | by (fact converseD [to_pred]) | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 716 | |
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 717 | lemma converseE [elim!]: | 
| 61799 | 718 | \<comment> \<open>More general than \<open>converseD\<close>, as it ``splits'' the member of the relation.\<close> | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 719 | "yx \<in> r\<inverse> \<Longrightarrow> (\<And>x y. yx = (y, x) \<Longrightarrow> (x, y) \<in> r \<Longrightarrow> P) \<Longrightarrow> P" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 720 | by (cases yx) (simp, erule converse.cases, iprover) | 
| 46694 | 721 | |
| 46882 | 722 | lemmas conversepE [elim!] = conversep.cases | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 723 | |
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 724 | lemma converse_iff [iff]: | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 725 | "(a, b) \<in> r\<inverse> \<longleftrightarrow> (b, a) \<in> r" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 726 | by (auto intro: converseI) | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 727 | |
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 728 | lemma conversep_iff [iff]: | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 729 | "r\<inverse>\<inverse> a b = r b a" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 730 | by (fact converse_iff [to_pred]) | 
| 46694 | 731 | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 732 | lemma converse_converse [simp]: | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 733 | "(r\<inverse>)\<inverse> = r" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 734 | by (simp add: set_eq_iff) | 
| 46694 | 735 | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 736 | lemma conversep_conversep [simp]: | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 737 | "(r\<inverse>\<inverse>)\<inverse>\<inverse> = r" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 738 | by (fact converse_converse [to_pred]) | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 739 | |
| 53680 | 740 | lemma converse_empty[simp]: "{}\<inverse> = {}"
 | 
| 741 | by auto | |
| 742 | ||
| 743 | lemma converse_UNIV[simp]: "UNIV\<inverse> = UNIV" | |
| 744 | by auto | |
| 745 | ||
| 47433 
07f4bf913230
renamed "rel_comp" to "relcomp" (to be consistent with, e.g., "relpow")
 griff parents: 
47087diff
changeset | 746 | lemma converse_relcomp: "(r O s)^-1 = s^-1 O r^-1" | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 747 | by blast | 
| 46694 | 748 | |
| 47434 
b75ce48a93ee
dropped abbreviation "pred_comp"; introduced infix notation "P OO Q" for "relcompp P Q"
 griff parents: 
47433diff
changeset | 749 | lemma converse_relcompp: "(r OO s)^--1 = s^--1 OO r^--1" | 
| 
b75ce48a93ee
dropped abbreviation "pred_comp"; introduced infix notation "P OO Q" for "relcompp P Q"
 griff parents: 
47433diff
changeset | 750 | by (iprover intro: order_antisym conversepI relcomppI | 
| 
b75ce48a93ee
dropped abbreviation "pred_comp"; introduced infix notation "P OO Q" for "relcompp P Q"
 griff parents: 
47433diff
changeset | 751 | elim: relcomppE dest: conversepD) | 
| 46694 | 752 | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 753 | lemma converse_Int: "(r \<inter> s)^-1 = r^-1 \<inter> s^-1" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 754 | by blast | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 755 | |
| 46694 | 756 | lemma converse_meet: "(r \<sqinter> s)^--1 = r^--1 \<sqinter> s^--1" | 
| 757 | by (simp add: inf_fun_def) (iprover intro: conversepI ext dest: conversepD) | |
| 758 | ||
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 759 | lemma converse_Un: "(r \<union> s)^-1 = r^-1 \<union> s^-1" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 760 | by blast | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 761 | |
| 46694 | 762 | lemma converse_join: "(r \<squnion> s)^--1 = r^--1 \<squnion> s^--1" | 
| 763 | by (simp add: sup_fun_def) (iprover intro: conversepI ext dest: conversepD) | |
| 764 | ||
| 19228 | 765 | lemma converse_INTER: "(INTER S r)^-1 = (INT x:S. (r x)^-1)" | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 766 | by fast | 
| 19228 | 767 | |
| 768 | lemma converse_UNION: "(UNION S r)^-1 = (UN x:S. (r x)^-1)" | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 769 | by blast | 
| 19228 | 770 | |
| 52749 | 771 | lemma converse_mono[simp]: "r^-1 \<subseteq> s ^-1 \<longleftrightarrow> r \<subseteq> s" | 
| 772 | by auto | |
| 773 | ||
| 774 | lemma conversep_mono[simp]: "r^--1 \<le> s ^--1 \<longleftrightarrow> r \<le> s" | |
| 775 | by (fact converse_mono[to_pred]) | |
| 776 | ||
| 777 | lemma converse_inject[simp]: "r^-1 = s ^-1 \<longleftrightarrow> r = s" | |
| 52730 | 778 | by auto | 
| 779 | ||
| 52749 | 780 | lemma conversep_inject[simp]: "r^--1 = s ^--1 \<longleftrightarrow> r = s" | 
| 781 | by (fact converse_inject[to_pred]) | |
| 782 | ||
| 783 | lemma converse_subset_swap: "r \<subseteq> s ^-1 = (r ^-1 \<subseteq> s)" | |
| 784 | by auto | |
| 785 | ||
| 786 | lemma conversep_le_swap: "r \<le> s ^--1 = (r ^--1 \<le> s)" | |
| 787 | by (fact converse_subset_swap[to_pred]) | |
| 52730 | 788 | |
| 12905 | 789 | lemma converse_Id [simp]: "Id^-1 = Id" | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 790 | by blast | 
| 12905 | 791 | |
| 30198 | 792 | lemma converse_Id_on [simp]: "(Id_on A)^-1 = Id_on A" | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 793 | by blast | 
| 12905 | 794 | |
| 30198 | 795 | lemma refl_on_converse [simp]: "refl_on A (converse r) = refl_on A r" | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 796 | by (unfold refl_on_def) auto | 
| 12905 | 797 | |
| 19228 | 798 | lemma sym_converse [simp]: "sym (converse r) = sym r" | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 799 | by (unfold sym_def) blast | 
| 19228 | 800 | |
| 801 | lemma antisym_converse [simp]: "antisym (converse r) = antisym r" | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 802 | by (unfold antisym_def) blast | 
| 12905 | 803 | |
| 19228 | 804 | lemma trans_converse [simp]: "trans (converse r) = trans r" | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 805 | by (unfold trans_def) blast | 
| 12905 | 806 | |
| 19228 | 807 | lemma sym_conv_converse_eq: "sym r = (r^-1 = r)" | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 808 | by (unfold sym_def) fast | 
| 19228 | 809 | |
| 810 | lemma sym_Un_converse: "sym (r \<union> r^-1)" | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 811 | by (unfold sym_def) blast | 
| 19228 | 812 | |
| 813 | lemma sym_Int_converse: "sym (r \<inter> r^-1)" | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 814 | by (unfold sym_def) blast | 
| 19228 | 815 | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 816 | lemma total_on_converse [simp]: "total_on A (r^-1) = total_on A r" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 817 | by (auto simp: total_on_def) | 
| 29859 
33bff35f1335
Moved Order_Relation into Library and moved some of it into Relation.
 nipkow parents: 
29609diff
changeset | 818 | |
| 52749 | 819 | lemma finite_converse [iff]: "finite (r^-1) = finite r" | 
| 54611 
31afce809794
set_comprehension_pointfree simproc causes to many surprises if enabled by default
 traytel parents: 
54555diff
changeset | 820 | unfolding converse_def conversep_iff using [[simproc add: finite_Collect]] | 
| 
31afce809794
set_comprehension_pointfree simproc causes to many surprises if enabled by default
 traytel parents: 
54555diff
changeset | 821 | by (auto elim: finite_imageD simp: inj_on_def) | 
| 12913 | 822 | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 823 | lemma conversep_noteq [simp]: "(op \<noteq>)^--1 = op \<noteq>" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 824 | by (auto simp add: fun_eq_iff) | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 825 | |
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 826 | lemma conversep_eq [simp]: "(op =)^--1 = op =" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 827 | by (auto simp add: fun_eq_iff) | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 828 | |
| 53680 | 829 | lemma converse_unfold [code]: | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 830 |   "r\<inverse> = {(y, x). (x, y) \<in> r}"
 | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 831 | by (simp add: set_eq_iff) | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 832 | |
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 833 | |
| 60758 | 834 | subsubsection \<open>Domain, range and field\<close> | 
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 835 | |
| 46767 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 836 | inductive_set Domain :: "('a \<times> 'b) set \<Rightarrow> 'a set"
 | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 837 |   for r :: "('a \<times> 'b) set"
 | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 838 | where | 
| 46767 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 839 | DomainI [intro]: "(a, b) \<in> r \<Longrightarrow> a \<in> Domain r" | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 840 | |
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 841 | abbreviation (input) "DomainP \<equiv> Domainp" | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 842 | |
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 843 | lemmas DomainPI = Domainp.DomainI | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 844 | |
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 845 | inductive_cases DomainE [elim!]: "a \<in> Domain r" | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 846 | inductive_cases DomainpE [elim!]: "Domainp r a" | 
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 847 | |
| 46767 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 848 | inductive_set Range :: "('a \<times> 'b) set \<Rightarrow> 'b set"
 | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 849 |   for r :: "('a \<times> 'b) set"
 | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 850 | where | 
| 46767 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 851 | RangeI [intro]: "(a, b) \<in> r \<Longrightarrow> b \<in> Range r" | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 852 | |
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 853 | abbreviation (input) "RangeP \<equiv> Rangep" | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 854 | |
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 855 | lemmas RangePI = Rangep.RangeI | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 856 | |
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 857 | inductive_cases RangeE [elim!]: "b \<in> Range r" | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 858 | inductive_cases RangepE [elim!]: "Rangep r b" | 
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 859 | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 860 | definition Field :: "'a rel \<Rightarrow> 'a set" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 861 | where | 
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 862 | "Field r = Domain r \<union> Range r" | 
| 12905 | 863 | |
| 46694 | 864 | lemma Domain_fst [code]: | 
| 865 | "Domain r = fst ` r" | |
| 46767 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 866 | by force | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 867 | |
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 868 | lemma Range_snd [code]: | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 869 | "Range r = snd ` r" | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 870 | by force | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 871 | |
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 872 | lemma fst_eq_Domain: "fst ` R = Domain R" | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 873 | by force | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 874 | |
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 875 | lemma snd_eq_Range: "snd ` R = Range R" | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 876 | by force | 
| 46694 | 877 | |
| 62087 
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
 paulson parents: 
61955diff
changeset | 878 | lemma range_fst [simp]: "range fst = UNIV" | 
| 
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
 paulson parents: 
61955diff
changeset | 879 | by (auto simp: fst_eq_Domain) | 
| 
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
 paulson parents: 
61955diff
changeset | 880 | |
| 
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
 paulson parents: 
61955diff
changeset | 881 | lemma range_snd [simp]: "range snd = UNIV" | 
| 
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
 paulson parents: 
61955diff
changeset | 882 | by (auto simp: snd_eq_Range) | 
| 
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
 paulson parents: 
61955diff
changeset | 883 | |
| 46694 | 884 | lemma Domain_empty [simp]: "Domain {} = {}"
 | 
| 46767 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 885 | by auto | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 886 | |
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 887 | lemma Range_empty [simp]: "Range {} = {}"
 | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 888 | by auto | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 889 | |
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 890 | lemma Field_empty [simp]: "Field {} = {}"
 | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 891 | by (simp add: Field_def) | 
| 46694 | 892 | |
| 893 | lemma Domain_empty_iff: "Domain r = {} \<longleftrightarrow> r = {}"
 | |
| 894 | by auto | |
| 895 | ||
| 46767 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 896 | lemma Range_empty_iff: "Range r = {} \<longleftrightarrow> r = {}"
 | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 897 | by auto | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 898 | |
| 46882 | 899 | lemma Domain_insert [simp]: "Domain (insert (a, b) r) = insert a (Domain r)" | 
| 46767 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 900 | by blast | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 901 | |
| 46882 | 902 | lemma Range_insert [simp]: "Range (insert (a, b) r) = insert b (Range r)" | 
| 46767 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 903 | by blast | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 904 | |
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 905 | lemma Field_insert [simp]: "Field (insert (a, b) r) = {a, b} \<union> Field r"
 | 
| 46884 | 906 | by (auto simp add: Field_def) | 
| 46767 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 907 | |
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 908 | lemma Domain_iff: "a \<in> Domain r \<longleftrightarrow> (\<exists>y. (a, y) \<in> r)" | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 909 | by blast | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 910 | |
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 911 | lemma Range_iff: "a \<in> Range r \<longleftrightarrow> (\<exists>y. (y, a) \<in> r)" | 
| 46694 | 912 | by blast | 
| 913 | ||
| 914 | lemma Domain_Id [simp]: "Domain Id = UNIV" | |
| 915 | by blast | |
| 916 | ||
| 46767 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 917 | lemma Range_Id [simp]: "Range Id = UNIV" | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 918 | by blast | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 919 | |
| 46694 | 920 | lemma Domain_Id_on [simp]: "Domain (Id_on A) = A" | 
| 921 | by blast | |
| 922 | ||
| 46767 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 923 | lemma Range_Id_on [simp]: "Range (Id_on A) = A" | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 924 | by blast | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 925 | |
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 926 | lemma Domain_Un_eq: "Domain (A \<union> B) = Domain A \<union> Domain B" | 
| 46694 | 927 | by blast | 
| 928 | ||
| 46767 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 929 | lemma Range_Un_eq: "Range (A \<union> B) = Range A \<union> Range B" | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 930 | by blast | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 931 | |
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 932 | lemma Field_Un [simp]: "Field (r \<union> s) = Field r \<union> Field s" | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 933 | by (auto simp: Field_def) | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 934 | |
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 935 | lemma Domain_Int_subset: "Domain (A \<inter> B) \<subseteq> Domain A \<inter> Domain B" | 
| 46694 | 936 | by blast | 
| 937 | ||
| 46767 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 938 | lemma Range_Int_subset: "Range (A \<inter> B) \<subseteq> Range A \<inter> Range B" | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 939 | by blast | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 940 | |
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 941 | lemma Domain_Diff_subset: "Domain A - Domain B \<subseteq> Domain (A - B)" | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 942 | by blast | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 943 | |
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 944 | lemma Range_Diff_subset: "Range A - Range B \<subseteq> Range (A - B)" | 
| 46694 | 945 | by blast | 
| 946 | ||
| 46767 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 947 | lemma Domain_Union: "Domain (\<Union>S) = (\<Union>A\<in>S. Domain A)" | 
| 46694 | 948 | by blast | 
| 949 | ||
| 46767 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 950 | lemma Range_Union: "Range (\<Union>S) = (\<Union>A\<in>S. Range A)" | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 951 | by blast | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 952 | |
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 953 | lemma Field_Union [simp]: "Field (\<Union>R) = \<Union>(Field ` R)" | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 954 | by (auto simp: Field_def) | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 955 | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 956 | lemma Domain_converse [simp]: "Domain (r\<inverse>) = Range r" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 957 | by auto | 
| 46694 | 958 | |
| 46767 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 959 | lemma Range_converse [simp]: "Range (r\<inverse>) = Domain r" | 
| 46694 | 960 | by blast | 
| 961 | ||
| 46767 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 962 | lemma Field_converse [simp]: "Field (r\<inverse>) = Field r" | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 963 | by (auto simp: Field_def) | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 964 | |
| 61424 
c3658c18b7bc
prod_case as canonical name for product type eliminator
 haftmann parents: 
61169diff
changeset | 965 | lemma Domain_Collect_case_prod [simp]: "Domain {(x, y). P x y} = {x. EX y. P x y}"
 | 
| 46767 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 966 | by auto | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 967 | |
| 61424 
c3658c18b7bc
prod_case as canonical name for product type eliminator
 haftmann parents: 
61169diff
changeset | 968 | lemma Range_Collect_case_prod [simp]: "Range {(x, y). P x y} = {y. EX x. P x y}"
 | 
| 46767 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 969 | by auto | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 970 | |
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 971 | lemma finite_Domain: "finite r \<Longrightarrow> finite (Domain r)" | 
| 46884 | 972 | by (induct set: finite) auto | 
| 46767 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 973 | |
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 974 | lemma finite_Range: "finite r \<Longrightarrow> finite (Range r)" | 
| 46884 | 975 | by (induct set: finite) auto | 
| 46767 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 976 | |
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 977 | lemma finite_Field: "finite r \<Longrightarrow> finite (Field r)" | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 978 | by (simp add: Field_def finite_Domain finite_Range) | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 979 | |
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 980 | lemma Domain_mono: "r \<subseteq> s \<Longrightarrow> Domain r \<subseteq> Domain s" | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 981 | by blast | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 982 | |
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 983 | lemma Range_mono: "r \<subseteq> s \<Longrightarrow> Range r \<subseteq> Range s" | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 984 | by blast | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 985 | |
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 986 | lemma mono_Field: "r \<subseteq> s \<Longrightarrow> Field r \<subseteq> Field s" | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 987 | by (auto simp: Field_def Domain_def Range_def) | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 988 | |
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 989 | lemma Domain_unfold: | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 990 |   "Domain r = {x. \<exists>y. (x, y) \<in> r}"
 | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 991 | by blast | 
| 46694 | 992 | |
| 12905 | 993 | |
| 60758 | 994 | subsubsection \<open>Image of a set under a relation\<close> | 
| 12905 | 995 | |
| 50420 | 996 | definition Image :: "('a \<times> 'b) set \<Rightarrow> 'a set \<Rightarrow> 'b set" (infixr "``" 90)
 | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 997 | where | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 998 |   "r `` s = {y. \<exists>x\<in>s. (x, y) \<in> r}"
 | 
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 999 | |
| 12913 | 1000 | lemma Image_iff: "(b : r``A) = (EX x:A. (x, b) : r)" | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 1001 | by (simp add: Image_def) | 
| 12905 | 1002 | |
| 12913 | 1003 | lemma Image_singleton: "r``{a} = {b. (a, b) : r}"
 | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 1004 | by (simp add: Image_def) | 
| 12905 | 1005 | |
| 12913 | 1006 | lemma Image_singleton_iff [iff]: "(b : r``{a}) = ((a, b) : r)"
 | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 1007 | by (rule Image_iff [THEN trans]) simp | 
| 12905 | 1008 | |
| 54147 
97a8ff4e4ac9
killed most "no_atp", to make Sledgehammer more complete
 blanchet parents: 
53680diff
changeset | 1009 | lemma ImageI [intro]: "(a, b) : r ==> a : A ==> b : r``A" | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 1010 | by (unfold Image_def) blast | 
| 12905 | 1011 | |
| 1012 | lemma ImageE [elim!]: | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 1013 | "b : r `` A ==> (!!x. (x, b) : r ==> x : A ==> P) ==> P" | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 1014 | by (unfold Image_def) (iprover elim!: CollectE bexE) | 
| 12905 | 1015 | |
| 1016 | lemma rev_ImageI: "a : A ==> (a, b) : r ==> b : r `` A" | |
| 61799 | 1017 | \<comment> \<open>This version's more effective when we already have the required \<open>a\<close>\<close> | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 1018 | by blast | 
| 12905 | 1019 | |
| 1020 | lemma Image_empty [simp]: "R``{} = {}"
 | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 1021 | by blast | 
| 12905 | 1022 | |
| 1023 | lemma Image_Id [simp]: "Id `` A = A" | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 1024 | by blast | 
| 12905 | 1025 | |
| 30198 | 1026 | lemma Image_Id_on [simp]: "Id_on A `` B = A \<inter> B" | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 1027 | by blast | 
| 13830 | 1028 | |
| 1029 | lemma Image_Int_subset: "R `` (A \<inter> B) \<subseteq> R `` A \<inter> R `` B" | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 1030 | by blast | 
| 12905 | 1031 | |
| 13830 | 1032 | lemma Image_Int_eq: | 
| 46767 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 1033 | "single_valued (converse R) ==> R `` (A \<inter> B) = R `` A \<inter> R `` B" | 
| 
807a5d219c23
more fundamental pred-to-set conversions for range and domain by means of inductive_set
 haftmann parents: 
46752diff
changeset | 1034 | by (simp add: single_valued_def, blast) | 
| 12905 | 1035 | |
| 13830 | 1036 | lemma Image_Un: "R `` (A \<union> B) = R `` A \<union> R `` B" | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 1037 | by blast | 
| 12905 | 1038 | |
| 13812 
91713a1915ee
converting HOL/UNITY to use unconditional fairness
 paulson parents: 
13639diff
changeset | 1039 | lemma Un_Image: "(R \<union> S) `` A = R `` A \<union> S `` A" | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 1040 | by blast | 
| 13812 
91713a1915ee
converting HOL/UNITY to use unconditional fairness
 paulson parents: 
13639diff
changeset | 1041 | |
| 12913 | 1042 | lemma Image_subset: "r \<subseteq> A \<times> B ==> r``C \<subseteq> B" | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 1043 | by (iprover intro!: subsetI elim!: ImageE dest!: subsetD SigmaD2) | 
| 12905 | 1044 | |
| 13830 | 1045 | lemma Image_eq_UN: "r``B = (\<Union>y\<in> B. r``{y})"
 | 
| 61799 | 1046 | \<comment> \<open>NOT suitable for rewriting\<close> | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 1047 | by blast | 
| 12905 | 1048 | |
| 12913 | 1049 | lemma Image_mono: "r' \<subseteq> r ==> A' \<subseteq> A ==> (r' `` A') \<subseteq> (r `` A)" | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 1050 | by blast | 
| 12905 | 1051 | |
| 13830 | 1052 | lemma Image_UN: "(r `` (UNION A B)) = (\<Union>x\<in>A. r `` (B x))" | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 1053 | by blast | 
| 13830 | 1054 | |
| 54410 
0a578fb7fb73
countability of the image of a reflexive transitive closure
 hoelzl parents: 
54147diff
changeset | 1055 | lemma UN_Image: "(\<Union>i\<in>I. X i) `` S = (\<Union>i\<in>I. X i `` S)" | 
| 
0a578fb7fb73
countability of the image of a reflexive transitive closure
 hoelzl parents: 
54147diff
changeset | 1056 | by auto | 
| 
0a578fb7fb73
countability of the image of a reflexive transitive closure
 hoelzl parents: 
54147diff
changeset | 1057 | |
| 13830 | 1058 | lemma Image_INT_subset: "(r `` INTER A B) \<subseteq> (\<Inter>x\<in>A. r `` (B x))" | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 1059 | by blast | 
| 12905 | 1060 | |
| 60758 | 1061 | text\<open>Converse inclusion requires some assumptions\<close> | 
| 13830 | 1062 | lemma Image_INT_eq: | 
| 1063 |      "[|single_valued (r\<inverse>); A\<noteq>{}|] ==> r `` INTER A B = (\<Inter>x\<in>A. r `` B x)"
 | |
| 1064 | apply (rule equalityI) | |
| 1065 | apply (rule Image_INT_subset) | |
| 1066 | apply (simp add: single_valued_def, blast) | |
| 1067 | done | |
| 12905 | 1068 | |
| 12913 | 1069 | lemma Image_subset_eq: "(r``A \<subseteq> B) = (A \<subseteq> - ((r^-1) `` (-B)))" | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 1070 | by blast | 
| 12905 | 1071 | |
| 61424 
c3658c18b7bc
prod_case as canonical name for product type eliminator
 haftmann parents: 
61169diff
changeset | 1072 | lemma Image_Collect_case_prod [simp]: "{(x, y). P x y} `` A = {y. EX x:A. P x y}"
 | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 1073 | by auto | 
| 12905 | 1074 | |
| 54410 
0a578fb7fb73
countability of the image of a reflexive transitive closure
 hoelzl parents: 
54147diff
changeset | 1075 | lemma Sigma_Image: "(SIGMA x:A. B x) `` X = (\<Union>x\<in>X \<inter> A. B x)" | 
| 
0a578fb7fb73
countability of the image of a reflexive transitive closure
 hoelzl parents: 
54147diff
changeset | 1076 | by auto | 
| 
0a578fb7fb73
countability of the image of a reflexive transitive closure
 hoelzl parents: 
54147diff
changeset | 1077 | |
| 
0a578fb7fb73
countability of the image of a reflexive transitive closure
 hoelzl parents: 
54147diff
changeset | 1078 | lemma relcomp_Image: "(X O Y) `` Z = Y `` (X `` Z)" | 
| 
0a578fb7fb73
countability of the image of a reflexive transitive closure
 hoelzl parents: 
54147diff
changeset | 1079 | by auto | 
| 12905 | 1080 | |
| 60758 | 1081 | subsubsection \<open>Inverse image\<close> | 
| 12905 | 1082 | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 1083 | definition inv_image :: "'b rel \<Rightarrow> ('a \<Rightarrow> 'b) \<Rightarrow> 'a rel"
 | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 1084 | where | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 1085 |   "inv_image r f = {(x, y). (f x, f y) \<in> r}"
 | 
| 46692 
1f8b766224f6
tuned structure; dropped already existing syntax declarations
 haftmann parents: 
46691diff
changeset | 1086 | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 1087 | definition inv_imagep :: "('b \<Rightarrow> 'b \<Rightarrow> bool) \<Rightarrow> ('a \<Rightarrow> 'b) \<Rightarrow> 'a \<Rightarrow> 'a \<Rightarrow> bool"
 | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 1088 | where | 
| 46694 | 1089 | "inv_imagep r f = (\<lambda>x y. r (f x) (f y))" | 
| 1090 | ||
| 1091 | lemma [pred_set_conv]: "inv_imagep (\<lambda>x y. (x, y) \<in> r) f = (\<lambda>x y. (x, y) \<in> inv_image r f)" | |
| 1092 | by (simp add: inv_image_def inv_imagep_def) | |
| 1093 | ||
| 19228 | 1094 | lemma sym_inv_image: "sym r ==> sym (inv_image r f)" | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 1095 | by (unfold sym_def inv_image_def) blast | 
| 19228 | 1096 | |
| 12913 | 1097 | lemma trans_inv_image: "trans r ==> trans (inv_image r f)" | 
| 12905 | 1098 | apply (unfold trans_def inv_image_def) | 
| 1099 | apply (simp (no_asm)) | |
| 1100 | apply blast | |
| 1101 | done | |
| 1102 | ||
| 32463 
3a0a65ca2261
moved lemma Wellfounded.in_inv_image to Relation.thy
 krauss parents: 
32235diff
changeset | 1103 | lemma in_inv_image[simp]: "((x,y) : inv_image r f) = ((f x, f y) : r)" | 
| 
3a0a65ca2261
moved lemma Wellfounded.in_inv_image to Relation.thy
 krauss parents: 
32235diff
changeset | 1104 | by (auto simp:inv_image_def) | 
| 
3a0a65ca2261
moved lemma Wellfounded.in_inv_image to Relation.thy
 krauss parents: 
32235diff
changeset | 1105 | |
| 33218 | 1106 | lemma converse_inv_image[simp]: "(inv_image R f)^-1 = inv_image (R^-1) f" | 
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 1107 | unfolding inv_image_def converse_unfold by auto | 
| 33218 | 1108 | |
| 46664 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 1109 | lemma in_inv_imagep [simp]: "inv_imagep r f x y = r (f x) (f y)" | 
| 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 1110 | by (simp add: inv_imagep_def) | 
| 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 1111 | |
| 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 1112 | |
| 60758 | 1113 | subsubsection \<open>Powerset\<close> | 
| 46664 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 1114 | |
| 46752 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 1115 | definition Powp :: "('a \<Rightarrow> bool) \<Rightarrow> 'a set \<Rightarrow> bool"
 | 
| 
e9e7209eb375
more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
 haftmann parents: 
46696diff
changeset | 1116 | where | 
| 46664 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 1117 | "Powp A = (\<lambda>B. \<forall>x \<in> B. A x)" | 
| 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 1118 | |
| 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 1119 | lemma Powp_Pow_eq [pred_set_conv]: "Powp (\<lambda>x. x \<in> A) = (\<lambda>x. x \<in> Pow A)" | 
| 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 1120 | by (auto simp add: Powp_def fun_eq_iff) | 
| 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 1121 | |
| 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 1122 | lemmas Powp_mono [mono] = Pow_mono [to_pred] | 
| 
1f6c140f9c72
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
 haftmann parents: 
46638diff
changeset | 1123 | |
| 60758 | 1124 | subsubsection \<open>Expressing relation operations via @{const Finite_Set.fold}\<close>
 | 
| 48620 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1125 | |
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1126 | lemma Id_on_fold: | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1127 | assumes "finite A" | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1128 |   shows "Id_on A = Finite_Set.fold (\<lambda>x. Set.insert (Pair x x)) {} A"
 | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1129 | proof - | 
| 61169 | 1130 | interpret comp_fun_commute "\<lambda>x. Set.insert (Pair x x)" by standard auto | 
| 48620 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1131 | show ?thesis using assms unfolding Id_on_def by (induct A) simp_all | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1132 | qed | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1133 | |
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1134 | lemma comp_fun_commute_Image_fold: | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1135 | "comp_fun_commute (\<lambda>(x,y) A. if x \<in> S then Set.insert y A else A)" | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1136 | proof - | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1137 | interpret comp_fun_idem Set.insert | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1138 | by (fact comp_fun_idem_insert) | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1139 | show ?thesis | 
| 61169 | 1140 | by standard (auto simp add: fun_eq_iff comp_fun_commute split:prod.split) | 
| 48620 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1141 | qed | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1142 | |
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1143 | lemma Image_fold: | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1144 | assumes "finite R" | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1145 |   shows "R `` S = Finite_Set.fold (\<lambda>(x,y) A. if x \<in> S then Set.insert y A else A) {} R"
 | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1146 | proof - | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1147 | interpret comp_fun_commute "(\<lambda>(x,y) A. if x \<in> S then Set.insert y A else A)" | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1148 | by (rule comp_fun_commute_Image_fold) | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1149 | have *: "\<And>x F. Set.insert x F `` S = (if fst x \<in> S then Set.insert (snd x) (F `` S) else (F `` S))" | 
| 52749 | 1150 | by (force intro: rev_ImageI) | 
| 48620 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1151 | show ?thesis using assms by (induct R) (auto simp: *) | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1152 | qed | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1153 | |
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1154 | lemma insert_relcomp_union_fold: | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1155 | assumes "finite S" | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1156 |   shows "{x} O S \<union> X = Finite_Set.fold (\<lambda>(w,z) A'. if snd x = w then Set.insert (fst x,z) A' else A') X S"
 | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1157 | proof - | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1158 | interpret comp_fun_commute "\<lambda>(w,z) A'. if snd x = w then Set.insert (fst x,z) A' else A'" | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1159 | proof - | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1160 | interpret comp_fun_idem Set.insert by (fact comp_fun_idem_insert) | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1161 | show "comp_fun_commute (\<lambda>(w,z) A'. if snd x = w then Set.insert (fst x,z) A' else A')" | 
| 61169 | 1162 | by standard (auto simp add: fun_eq_iff split:prod.split) | 
| 48620 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1163 | qed | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1164 |   have *: "{x} O S = {(x', z). x' = fst x \<and> (snd x,z) \<in> S}" by (auto simp: relcomp_unfold intro!: exI)
 | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1165 | show ?thesis unfolding * | 
| 60758 | 1166 | using \<open>finite S\<close> by (induct S) (auto split: prod.split) | 
| 48620 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1167 | qed | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1168 | |
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1169 | lemma insert_relcomp_fold: | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1170 | assumes "finite S" | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1171 | shows "Set.insert x R O S = | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1172 | Finite_Set.fold (\<lambda>(w,z) A'. if snd x = w then Set.insert (fst x,z) A' else A') (R O S) S" | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1173 | proof - | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1174 |   have "Set.insert x R O S = ({x} O S) \<union> (R O S)" by auto
 | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1175 | then show ?thesis by (auto simp: insert_relcomp_union_fold[OF assms]) | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1176 | qed | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1177 | |
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1178 | lemma comp_fun_commute_relcomp_fold: | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1179 | assumes "finite S" | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1180 | shows "comp_fun_commute (\<lambda>(x,y) A. | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1181 | Finite_Set.fold (\<lambda>(w,z) A'. if y = w then Set.insert (x,z) A' else A') A S)" | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1182 | proof - | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1183 | have *: "\<And>a b A. | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1184 |     Finite_Set.fold (\<lambda>(w, z) A'. if b = w then Set.insert (a, z) A' else A') A S = {(a,b)} O S \<union> A"
 | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1185 | by (auto simp: insert_relcomp_union_fold[OF assms] cong: if_cong) | 
| 61169 | 1186 | show ?thesis by standard (auto simp: *) | 
| 48620 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1187 | qed | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1188 | |
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1189 | lemma relcomp_fold: | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1190 | assumes "finite R" | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1191 | assumes "finite S" | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1192 | shows "R O S = Finite_Set.fold | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1193 |     (\<lambda>(x,y) A. Finite_Set.fold (\<lambda>(w,z) A'. if y = w then Set.insert (x,z) A' else A') A S) {} R"
 | 
| 52749 | 1194 | using assms by (induct R) | 
| 1195 | (auto simp: comp_fun_commute.fold_insert comp_fun_commute_relcomp_fold insert_relcomp_fold | |
| 48620 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1196 | cong: if_cong) | 
| 
fc9be489e2fb
more relation operations expressed by Finite_Set.fold
 kuncar parents: 
48253diff
changeset | 1197 | |
| 1128 
64b30e3cc6d4
Trancl is now based on Relation which used to be in Integ.
 nipkow parents: diff
changeset | 1198 | end |