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