Theory Relation

Up to index of Isabelle/HOL

theory Relation
imports Finite_Set
(*  Title:      HOL/Relation.thy
Author: Lawrence C Paulson, Cambridge University Computer Laboratory; Stefan Berghofer, TU Muenchen
*)


header {* Relations – as sets of pairs, and binary predicates *}

theory Relation
imports Datatype Finite_Set
begin

text {* A preliminary: classical rules for reasoning on predicates *}

declare predicate1I [Pure.intro!, intro!]
declare predicate1D [Pure.dest, dest]
declare predicate2I [Pure.intro!, intro!]
declare predicate2D [Pure.dest, dest]
declare bot1E [elim!]
declare bot2E [elim!]
declare top1I [intro!]
declare top2I [intro!]
declare inf1I [intro!]
declare inf2I [intro!]
declare inf1E [elim!]
declare inf2E [elim!]
declare sup1I1 [intro?]
declare sup2I1 [intro?]
declare sup1I2 [intro?]
declare sup2I2 [intro?]
declare sup1E [elim!]
declare sup2E [elim!]
declare sup1CI [intro!]
declare sup2CI [intro!]
declare INF1_I [intro!]
declare INF2_I [intro!]
declare INF1_D [elim]
declare INF2_D [elim]
declare INF1_E [elim]
declare INF2_E [elim]
declare SUP1_I [intro]
declare SUP2_I [intro]
declare SUP1_E [elim!]
declare SUP2_E [elim!]

subsection {* Fundamental *}

subsubsection {* Relations as sets of pairs *}

type_synonym 'a rel = "('a * 'a) set"

lemma subrelI: -- {* Version of @{thm [source] subsetI} for binary relations *}
"(!!x y. (x, y) ∈ r ==> (x, y) ∈ s) ==> r ⊆ s"
by auto

lemma lfp_induct2: -- {* Version of @{thm [source] lfp_induct} for binary relations *}
"(a, b) ∈ lfp f ==> mono f ==>
(!!a b. (a, b) ∈ f (lfp f ∩ {(x, y). P x y}) ==> P a b) ==> P a b"

using lfp_induct_set [of "(a, b)" f "prod_case P"] by auto


subsubsection {* Conversions between set and predicate relations *}

lemma pred_equals_eq [pred_set_conv]: "(λx. x ∈ R) = (λx. x ∈ S) <-> R = S"
by (simp add: set_eq_iff fun_eq_iff)

lemma pred_equals_eq2 [pred_set_conv]: "(λx y. (x, y) ∈ R) = (λx y. (x, y) ∈ S) <-> R = S"
by (simp add: set_eq_iff fun_eq_iff)

lemma pred_subset_eq [pred_set_conv]: "(λx. x ∈ R) ≤ (λx. x ∈ S) <-> R ⊆ S"
by (simp add: subset_iff le_fun_def)

lemma pred_subset_eq2 [pred_set_conv]: "(λx y. (x, y) ∈ R) ≤ (λx y. (x, y) ∈ S) <-> R ⊆ S"
by (simp add: subset_iff le_fun_def)

lemma bot_empty_eq [pred_set_conv]: "⊥ = (λx. x ∈ {})"
by (auto simp add: fun_eq_iff)

lemma bot_empty_eq2 [pred_set_conv]: "⊥ = (λx y. (x, y) ∈ {})"
by (auto simp add: fun_eq_iff)

lemma top_empty_eq [pred_set_conv]: "\<top> = (λx. x ∈ UNIV)"
by (auto simp add: fun_eq_iff)

lemma top_empty_eq2 [pred_set_conv]: "\<top> = (λx y. (x, y) ∈ UNIV)"
by (auto simp add: fun_eq_iff)

lemma inf_Int_eq [pred_set_conv]: "(λx. x ∈ R) \<sqinter> (λx. x ∈ S) = (λx. x ∈ R ∩ S)"
by (simp add: inf_fun_def)

lemma inf_Int_eq2 [pred_set_conv]: "(λx y. (x, y) ∈ R) \<sqinter> (λx y. (x, y) ∈ S) = (λx y. (x, y) ∈ R ∩ S)"
by (simp add: inf_fun_def)

lemma sup_Un_eq [pred_set_conv]: "(λx. x ∈ R) \<squnion> (λx. x ∈ S) = (λx. x ∈ R ∪ S)"
by (simp add: sup_fun_def)

lemma sup_Un_eq2 [pred_set_conv]: "(λx y. (x, y) ∈ R) \<squnion> (λx y. (x, y) ∈ S) = (λx y. (x, y) ∈ R ∪ S)"
by (simp add: sup_fun_def)

lemma INF_INT_eq [pred_set_conv]: "(\<Sqinter>i∈S. (λx. x ∈ r i)) = (λx. x ∈ (\<Inter>i∈S. r i))"
by (simp add: fun_eq_iff)

lemma INF_INT_eq2 [pred_set_conv]: "(\<Sqinter>i∈S. (λx y. (x, y) ∈ r i)) = (λx y. (x, y) ∈ (\<Inter>i∈S. r i))"
by (simp add: fun_eq_iff)

lemma SUP_UN_eq [pred_set_conv]: "(\<Squnion>i∈S. (λx. x ∈ r i)) = (λx. x ∈ (\<Union>i∈S. r i))"
by (simp add: fun_eq_iff)

lemma SUP_UN_eq2 [pred_set_conv]: "(\<Squnion>i∈S. (λx y. (x, y) ∈ r i)) = (λx y. (x, y) ∈ (\<Union>i∈S. r i))"
by (simp add: fun_eq_iff)

lemma Inf_INT_eq [pred_set_conv]: "\<Sqinter>S = (λx. x ∈ INTER S Collect)"
by (simp add: fun_eq_iff)

lemma INF_Int_eq [pred_set_conv]: "(\<Sqinter>i∈S. (λx. x ∈ i)) = (λx. x ∈ \<Inter>S)"
by (simp add: fun_eq_iff)

lemma Inf_INT_eq2 [pred_set_conv]: "\<Sqinter>S = (λx y. (x, y) ∈ INTER (prod_case ` S) Collect)"
by (simp add: fun_eq_iff)

lemma INF_Int_eq2 [pred_set_conv]: "(\<Sqinter>i∈S. (λx y. (x, y) ∈ i)) = (λx y. (x, y) ∈ \<Inter>S)"
by (simp add: fun_eq_iff)

lemma Sup_SUP_eq [pred_set_conv]: "\<Squnion>S = (λx. x ∈ UNION S Collect)"
by (simp add: fun_eq_iff)

lemma SUP_Sup_eq [pred_set_conv]: "(\<Squnion>i∈S. (λx. x ∈ i)) = (λx. x ∈ \<Union>S)"
by (simp add: fun_eq_iff)

lemma Sup_SUP_eq2 [pred_set_conv]: "\<Squnion>S = (λx y. (x, y) ∈ UNION (prod_case ` S) Collect)"
by (simp add: fun_eq_iff)

lemma SUP_Sup_eq2 [pred_set_conv]: "(\<Squnion>i∈S. (λx y. (x, y) ∈ i)) = (λx y. (x, y) ∈ \<Union>S)"
by (simp add: fun_eq_iff)


subsection {* Properties of relations *}

subsubsection {* Reflexivity *}

definition refl_on :: "'a set => 'a rel => bool"
where
"refl_on A r <-> r ⊆ A × A ∧ (∀x∈A. (x, x) ∈ r)"

abbreviation refl :: "'a rel => bool"
where -- {* reflexivity over a type *}
"refl ≡ refl_on UNIV"

definition reflp :: "('a => 'a => bool) => bool"
where
"reflp r <-> (∀x. r x x)"

lemma reflp_refl_eq [pred_set_conv]:
"reflp (λx y. (x, y) ∈ r) <-> refl r"
by (simp add: refl_on_def reflp_def)

lemma refl_onI: "r ⊆ A × A ==> (!!x. x : A ==> (x, x) : r) ==> refl_on A r"
by (unfold refl_on_def) (iprover intro!: ballI)

lemma refl_onD: "refl_on A r ==> a : A ==> (a, a) : r"
by (unfold refl_on_def) blast

lemma refl_onD1: "refl_on A r ==> (x, y) : r ==> x : A"
by (unfold refl_on_def) blast

lemma refl_onD2: "refl_on A r ==> (x, y) : r ==> y : A"
by (unfold refl_on_def) blast

lemma reflpI:
"(!!x. r x x) ==> reflp r"
by (auto intro: refl_onI simp add: reflp_def)

lemma reflpE:
assumes "reflp r"
obtains "r x x"
using assms by (auto dest: refl_onD simp add: reflp_def)

lemma reflpD:
assumes "reflp r"
shows "r x x"
using assms by (auto elim: reflpE)

lemma refl_on_Int: "refl_on A r ==> refl_on B s ==> refl_on (A ∩ B) (r ∩ s)"
by (unfold refl_on_def) blast

lemma reflp_inf:
"reflp r ==> reflp s ==> reflp (r \<sqinter> s)"
by (auto intro: reflpI elim: reflpE)

lemma refl_on_Un: "refl_on A r ==> refl_on B s ==> refl_on (A ∪ B) (r ∪ s)"
by (unfold refl_on_def) blast

lemma reflp_sup:
"reflp r ==> reflp s ==> reflp (r \<squnion> s)"
by (auto intro: reflpI elim: reflpE)

lemma refl_on_INTER:
"ALL x:S. refl_on (A x) (r x) ==> refl_on (INTER S A) (INTER S r)"
by (unfold refl_on_def) fast

lemma refl_on_UNION:
"ALL x:S. refl_on (A x) (r x) ==> refl_on (UNION S A) (UNION S r)"
by (unfold refl_on_def) blast

lemma refl_on_empty [simp]: "refl_on {} {}"
by (simp add:refl_on_def)

lemma refl_on_def' [nitpick_unfold, code]:
"refl_on A r <-> (∀(x, y) ∈ r. x ∈ A ∧ y ∈ A) ∧ (∀x ∈ A. (x, x) ∈ r)"
by (auto intro: refl_onI dest: refl_onD refl_onD1 refl_onD2)


subsubsection {* Irreflexivity *}

definition irrefl :: "'a rel => bool"
where
"irrefl r <-> (∀x. (x, x) ∉ r)"

lemma irrefl_distinct [code]:
"irrefl r <-> (∀(x, y) ∈ r. x ≠ y)"
by (auto simp add: irrefl_def)


subsubsection {* Symmetry *}

definition sym :: "'a rel => bool"
where
"sym r <-> (∀x y. (x, y) ∈ r --> (y, x) ∈ r)"

definition symp :: "('a => 'a => bool) => bool"
where
"symp r <-> (∀x y. r x y --> r y x)"

lemma symp_sym_eq [pred_set_conv]:
"symp (λx y. (x, y) ∈ r) <-> sym r"
by (simp add: sym_def symp_def)

lemma symI:
"(!!a b. (a, b) ∈ r ==> (b, a) ∈ r) ==> sym r"
by (unfold sym_def) iprover

lemma sympI:
"(!!a b. r a b ==> r b a) ==> symp r"
by (fact symI [to_pred])

lemma symE:
assumes "sym r" and "(b, a) ∈ r"
obtains "(a, b) ∈ r"
using assms by (simp add: sym_def)

lemma sympE:
assumes "symp r" and "r b a"
obtains "r a b"
using assms by (rule symE [to_pred])

lemma symD:
assumes "sym r" and "(b, a) ∈ r"
shows "(a, b) ∈ r"
using assms by (rule symE)

lemma sympD:
assumes "symp r" and "r b a"
shows "r a b"
using assms by (rule symD [to_pred])

lemma sym_Int:
"sym r ==> sym s ==> sym (r ∩ s)"
by (fast intro: symI elim: symE)

lemma symp_inf:
"symp r ==> symp s ==> symp (r \<sqinter> s)"
by (fact sym_Int [to_pred])

lemma sym_Un:
"sym r ==> sym s ==> sym (r ∪ s)"
by (fast intro: symI elim: symE)

lemma symp_sup:
"symp r ==> symp s ==> symp (r \<squnion> s)"
by (fact sym_Un [to_pred])

lemma sym_INTER:
"∀x∈S. sym (r x) ==> sym (INTER S r)"
by (fast intro: symI elim: symE)

lemma symp_INF:
"∀x∈S. symp (r x) ==> symp (INFI S r)"
by (fact sym_INTER [to_pred])

lemma sym_UNION:
"∀x∈S. sym (r x) ==> sym (UNION S r)"
by (fast intro: symI elim: symE)

lemma symp_SUP:
"∀x∈S. symp (r x) ==> symp (SUPR S r)"
by (fact sym_UNION [to_pred])


subsubsection {* Antisymmetry *}

definition antisym :: "'a rel => bool"
where
"antisym r <-> (∀x y. (x, y) ∈ r --> (y, x) ∈ r --> x = y)"

abbreviation antisymP :: "('a => 'a => bool) => bool"
where
"antisymP r ≡ antisym {(x, y). r x y}"

lemma antisymI:
"(!!x y. (x, y) : r ==> (y, x) : r ==> x=y) ==> antisym r"
by (unfold antisym_def) iprover

lemma antisymD: "antisym r ==> (a, b) : r ==> (b, a) : r ==> a = b"
by (unfold antisym_def) iprover

lemma antisym_subset: "r ⊆ s ==> antisym s ==> antisym r"
by (unfold antisym_def) blast

lemma antisym_empty [simp]: "antisym {}"
by (unfold antisym_def) blast


subsubsection {* Transitivity *}

definition trans :: "'a rel => bool"
where
"trans r <-> (∀x y z. (x, y) ∈ r --> (y, z) ∈ r --> (x, z) ∈ r)"

definition transp :: "('a => 'a => bool) => bool"
where
"transp r <-> (∀x y z. r x y --> r y z --> r x z)"

lemma transp_trans_eq [pred_set_conv]:
"transp (λx y. (x, y) ∈ r) <-> trans r"
by (simp add: trans_def transp_def)

abbreviation transP :: "('a => 'a => bool) => bool"
where -- {* FIXME drop *}
"transP r ≡ trans {(x, y). r x y}"

lemma transI:
"(!!x y z. (x, y) ∈ r ==> (y, z) ∈ r ==> (x, z) ∈ r) ==> trans r"
by (unfold trans_def) iprover

lemma transpI:
"(!!x y z. r x y ==> r y z ==> r x z) ==> transp r"
by (fact transI [to_pred])

lemma transE:
assumes "trans r" and "(x, y) ∈ r" and "(y, z) ∈ r"
obtains "(x, z) ∈ r"
using assms by (unfold trans_def) iprover

lemma transpE:
assumes "transp r" and "r x y" and "r y z"
obtains "r x z"
using assms by (rule transE [to_pred])

lemma transD:
assumes "trans r" and "(x, y) ∈ r" and "(y, z) ∈ r"
shows "(x, z) ∈ r"
using assms by (rule transE)

lemma transpD:
assumes "transp r" and "r x y" and "r y z"
shows "r x z"
using assms by (rule transD [to_pred])

lemma trans_Int:
"trans r ==> trans s ==> trans (r ∩ s)"
by (fast intro: transI elim: transE)

lemma transp_inf:
"transp r ==> transp s ==> transp (r \<sqinter> s)"
by (fact trans_Int [to_pred])

lemma trans_INTER:
"∀x∈S. trans (r x) ==> trans (INTER S r)"
by (fast intro: transI elim: transD)

(* FIXME thm trans_INTER [to_pred] *)

lemma trans_join [code]:
"trans r <-> (∀(x, y1) ∈ r. ∀(y2, z) ∈ r. y1 = y2 --> (x, z) ∈ r)"
by (auto simp add: trans_def)

lemma transp_trans:
"transp r <-> trans {(x, y). r x y}"
by (simp add: trans_def transp_def)


subsubsection {* Totality *}

definition total_on :: "'a set => 'a rel => bool"
where
"total_on A r <-> (∀x∈A. ∀y∈A. x ≠ y --> (x, y) ∈ r ∨ (y, x) ∈ r)"

abbreviation "total ≡ total_on UNIV"

lemma total_on_empty [simp]: "total_on {} r"
by (simp add: total_on_def)


subsubsection {* Single valued relations *}

definition single_valued :: "('a × 'b) set => bool"
where
"single_valued r <-> (∀x y. (x, y) ∈ r --> (∀z. (x, z) ∈ r --> y = z))"

abbreviation single_valuedP :: "('a => 'b => bool) => bool" where
"single_valuedP r ≡ single_valued {(x, y). r x y}"

lemma single_valuedI:
"ALL x y. (x,y):r --> (ALL z. (x,z):r --> y=z) ==> single_valued r"
by (unfold single_valued_def)

lemma single_valuedD:
"single_valued r ==> (x, y) : r ==> (x, z) : r ==> y = z"
by (simp add: single_valued_def)

lemma single_valued_subset:
"r ⊆ s ==> single_valued s ==> single_valued r"
by (unfold single_valued_def) blast


subsection {* Relation operations *}

subsubsection {* The identity relation *}

definition Id :: "'a rel"
where
[code del]: "Id = {p. ∃x. p = (x, x)}"

lemma IdI [intro]: "(a, a) : Id"
by (simp add: Id_def)

lemma IdE [elim!]: "p : Id ==> (!!x. p = (x, x) ==> P) ==> P"
by (unfold Id_def) (iprover elim: CollectE)

lemma pair_in_Id_conv [iff]: "((a, b) : Id) = (a = b)"
by (unfold Id_def) blast

lemma refl_Id: "refl Id"
by (simp add: refl_on_def)

lemma antisym_Id: "antisym Id"
-- {* A strange result, since @{text Id} is also symmetric. *}
by (simp add: antisym_def)

lemma sym_Id: "sym Id"
by (simp add: sym_def)

lemma trans_Id: "trans Id"
by (simp add: trans_def)

lemma single_valued_Id [simp]: "single_valued Id"
by (unfold single_valued_def) blast

lemma irrefl_diff_Id [simp]: "irrefl (r - Id)"
by (simp add:irrefl_def)

lemma trans_diff_Id: "trans r ==> antisym r ==> trans (r - Id)"
unfolding antisym_def trans_def by blast

lemma total_on_diff_Id [simp]: "total_on A (r - Id) = total_on A r"
by (simp add: total_on_def)


subsubsection {* Diagonal: identity over a set *}

definition Id_on :: "'a set => 'a rel"
where
"Id_on A = (\<Union>x∈A. {(x, x)})"

lemma Id_on_empty [simp]: "Id_on {} = {}"
by (simp add: Id_on_def)

lemma Id_on_eqI: "a = b ==> a : A ==> (a, b) : Id_on A"
by (simp add: Id_on_def)

lemma Id_onI [intro!,no_atp]: "a : A ==> (a, a) : Id_on A"
by (rule Id_on_eqI) (rule refl)

lemma Id_onE [elim!]:
"c : Id_on A ==> (!!x. x : A ==> c = (x, x) ==> P) ==> P"
-- {* The general elimination rule. *}
by (unfold Id_on_def) (iprover elim!: UN_E singletonE)

lemma Id_on_iff: "((x, y) : Id_on A) = (x = y & x : A)"
by blast

lemma Id_on_def' [nitpick_unfold]:
"Id_on {x. A x} = Collect (λ(x, y). x = y ∧ A x)"
by auto

lemma Id_on_subset_Times: "Id_on A ⊆ A × A"
by blast

lemma refl_on_Id_on: "refl_on A (Id_on A)"
by (rule refl_onI [OF Id_on_subset_Times Id_onI])

lemma antisym_Id_on [simp]: "antisym (Id_on A)"
by (unfold antisym_def) blast

lemma sym_Id_on [simp]: "sym (Id_on A)"
by (rule symI) clarify

lemma trans_Id_on [simp]: "trans (Id_on A)"
by (fast intro: transI elim: transD)

lemma single_valued_Id_on [simp]: "single_valued (Id_on A)"
by (unfold single_valued_def) blast


subsubsection {* Composition *}

inductive_set relcomp :: "('a × 'b) set => ('b × 'c) set => ('a × 'c) set" (infixr "O" 75)
for r :: "('a × 'b) set" and s :: "('b × 'c) set"
where
relcompI [intro]: "(a, b) ∈ r ==> (b, c) ∈ s ==> (a, c) ∈ r O s"

notation relcompp (infixr "OO" 75)

lemmas relcomppI = relcompp.intros

text {*
For historic reasons, the elimination rules are not wholly corresponding.
Feel free to consolidate this.
*}


inductive_cases relcompEpair: "(a, c) ∈ r O s"
inductive_cases relcomppE [elim!]: "(r OO s) a c"

lemma relcompE [elim!]: "xz ∈ r O s ==>
(!!x y z. xz = (x, z) ==> (x, y) ∈ r ==> (y, z) ∈ s ==> P) ==> P"

by (cases xz) (simp, erule relcompEpair, iprover)

lemma R_O_Id [simp]:
"R O Id = R"
by fast

lemma Id_O_R [simp]:
"Id O R = R"
by fast

lemma relcomp_empty1 [simp]:
"{} O R = {}"
by blast

lemma relcompp_bot1 [simp]:
"⊥ OO R = ⊥"
by (fact relcomp_empty1 [to_pred])

lemma relcomp_empty2 [simp]:
"R O {} = {}"
by blast

lemma relcompp_bot2 [simp]:
"R OO ⊥ = ⊥"
by (fact relcomp_empty2 [to_pred])

lemma O_assoc:
"(R O S) O T = R O (S O T)"
by blast


lemma relcompp_assoc:
"(r OO s) OO t = r OO (s OO t)"
by (fact O_assoc [to_pred])

lemma trans_O_subset:
"trans r ==> r O r ⊆ r"
by (unfold trans_def) blast

lemma transp_relcompp_less_eq:
"transp r ==> r OO r ≤ r "
by (fact trans_O_subset [to_pred])

lemma relcomp_mono:
"r' ⊆ r ==> s' ⊆ s ==> r' O s' ⊆ r O s"
by blast

lemma relcompp_mono:
"r' ≤ r ==> s' ≤ s ==> r' OO s' ≤ r OO s "
by (fact relcomp_mono [to_pred])

lemma relcomp_subset_Sigma:
"r ⊆ A × B ==> s ⊆ B × C ==> r O s ⊆ A × C"
by blast

lemma relcomp_distrib [simp]:
"R O (S ∪ T) = (R O S) ∪ (R O T)"
by auto

lemma relcompp_distrib [simp]:
"R OO (S \<squnion> T) = R OO S \<squnion> R OO T"
by (fact relcomp_distrib [to_pred])

lemma relcomp_distrib2 [simp]:
"(S ∪ T) O R = (S O R) ∪ (T O R)"
by auto

lemma relcompp_distrib2 [simp]:
"(S \<squnion> T) OO R = S OO R \<squnion> T OO R"
by (fact relcomp_distrib2 [to_pred])

lemma relcomp_UNION_distrib:
"s O UNION I r = (\<Union>i∈I. s O r i) "
by auto

(* FIXME thm relcomp_UNION_distrib [to_pred] *)

lemma relcomp_UNION_distrib2:
"UNION I r O s = (\<Union>i∈I. r i O s) "
by auto

(* FIXME thm relcomp_UNION_distrib2 [to_pred] *)

lemma single_valued_relcomp:
"single_valued r ==> single_valued s ==> single_valued (r O s)"
by (unfold single_valued_def) blast

lemma relcomp_unfold:
"r O s = {(x, z). ∃y. (x, y) ∈ r ∧ (y, z) ∈ s}"
by (auto simp add: set_eq_iff)


subsubsection {* Converse *}

inductive_set converse :: "('a × 'b) set => ('b × 'a) set" ("(_^-1)" [1000] 999)
for r :: "('a × 'b) set"
where
"(a, b) ∈ r ==> (b, a) ∈ r^-1"

notation (xsymbols)
converse ("(_¯)" [1000] 999)

notation
conversep ("(_^--1)" [1000] 1000)

notation (xsymbols)
conversep ("(_¯¯)" [1000] 1000)

lemma converseI [sym]:
"(a, b) ∈ r ==> (b, a) ∈ r¯"
by (fact converse.intros)

lemma conversepI (* CANDIDATE [sym] *):
"r a b ==> r¯¯ b a"
by (fact conversep.intros)

lemma converseD [sym]:
"(a, b) ∈ r¯ ==> (b, a) ∈ r"
by (erule converse.cases) iprover

lemma conversepD (* CANDIDATE [sym] *):
"r¯¯ b a ==> r a b"
by (fact converseD [to_pred])

lemma converseE [elim!]:
-- {* More general than @{text converseD}, as it ``splits'' the member of the relation. *}
"yx ∈ r¯ ==> (!!x y. yx = (y, x) ==> (x, y) ∈ r ==> P) ==> P"
by (cases yx) (simp, erule converse.cases, iprover)

lemmas conversepE [elim!] = conversep.cases

lemma converse_iff [iff]:
"(a, b) ∈ r¯ <-> (b, a) ∈ r"
by (auto intro: converseI)

lemma conversep_iff [iff]:
"r¯¯ a b = r b a"
by (fact converse_iff [to_pred])

lemma converse_converse [simp]:
"(r¯)¯ = r"
by (simp add: set_eq_iff)

lemma conversep_conversep [simp]:
"(r¯¯)¯¯ = r"
by (fact converse_converse [to_pred])

lemma converse_relcomp: "(r O s)^-1 = s^-1 O r^-1"
by blast

lemma converse_relcompp: "(r OO s)^--1 = s^--1 OO r^--1"
by (iprover intro: order_antisym conversepI relcomppI
elim: relcomppE dest: conversepD)

lemma converse_Int: "(r ∩ s)^-1 = r^-1 ∩ s^-1"
by blast

lemma converse_meet: "(r \<sqinter> s)^--1 = r^--1 \<sqinter> s^--1"
by (simp add: inf_fun_def) (iprover intro: conversepI ext dest: conversepD)

lemma converse_Un: "(r ∪ s)^-1 = r^-1 ∪ s^-1"
by blast

lemma converse_join: "(r \<squnion> s)^--1 = r^--1 \<squnion> s^--1"
by (simp add: sup_fun_def) (iprover intro: conversepI ext dest: conversepD)

lemma converse_INTER: "(INTER S r)^-1 = (INT x:S. (r x)^-1)"
by fast

lemma converse_UNION: "(UNION S r)^-1 = (UN x:S. (r x)^-1)"
by blast

lemma converse_Id [simp]: "Id^-1 = Id"
by blast

lemma converse_Id_on [simp]: "(Id_on A)^-1 = Id_on A"
by blast

lemma refl_on_converse [simp]: "refl_on A (converse r) = refl_on A r"
by (unfold refl_on_def) auto

lemma sym_converse [simp]: "sym (converse r) = sym r"
by (unfold sym_def) blast

lemma antisym_converse [simp]: "antisym (converse r) = antisym r"
by (unfold antisym_def) blast

lemma trans_converse [simp]: "trans (converse r) = trans r"
by (unfold trans_def) blast

lemma sym_conv_converse_eq: "sym r = (r^-1 = r)"
by (unfold sym_def) fast

lemma sym_Un_converse: "sym (r ∪ r^-1)"
by (unfold sym_def) blast

lemma sym_Int_converse: "sym (r ∩ r^-1)"
by (unfold sym_def) blast

lemma total_on_converse [simp]: "total_on A (r^-1) = total_on A r"
by (auto simp: total_on_def)

lemma finite_converse [iff]: "finite (r^-1) = finite r"
apply (subgoal_tac "r^-1 = (%(x,y). (y,x))`r")
apply simp
apply (rule iffI)
apply (erule finite_imageD [unfolded inj_on_def])
apply (simp split add: split_split)
apply (erule finite_imageI)
apply (simp add: set_eq_iff image_def, auto)
apply (rule bexI)
prefer 2 apply assumption
apply simp
done

lemma conversep_noteq [simp]: "(op ≠)^--1 = op ≠"
by (auto simp add: fun_eq_iff)

lemma conversep_eq [simp]: "(op =)^--1 = op ="
by (auto simp add: fun_eq_iff)

lemma converse_unfold:
"r¯ = {(y, x). (x, y) ∈ r}"
by (simp add: set_eq_iff)


subsubsection {* Domain, range and field *}

inductive_set Domain :: "('a × 'b) set => 'a set"
for r :: "('a × 'b) set"
where
DomainI [intro]: "(a, b) ∈ r ==> a ∈ Domain r"

abbreviation (input) "DomainP ≡ Domainp"

lemmas DomainPI = Domainp.DomainI

inductive_cases DomainE [elim!]: "a ∈ Domain r"
inductive_cases DomainpE [elim!]: "Domainp r a"

inductive_set Range :: "('a × 'b) set => 'b set"
for r :: "('a × 'b) set"
where
RangeI [intro]: "(a, b) ∈ r ==> b ∈ Range r"

abbreviation (input) "RangeP ≡ Rangep"

lemmas RangePI = Rangep.RangeI

inductive_cases RangeE [elim!]: "b ∈ Range r"
inductive_cases RangepE [elim!]: "Rangep r b"

definition Field :: "'a rel => 'a set"
where
"Field r = Domain r ∪ Range r"

lemma Domain_fst [code]:
"Domain r = fst ` r"
by force

lemma Range_snd [code]:
"Range r = snd ` r"
by force

lemma fst_eq_Domain: "fst ` R = Domain R"
by force

lemma snd_eq_Range: "snd ` R = Range R"
by force

lemma Domain_empty [simp]: "Domain {} = {}"
by auto

lemma Range_empty [simp]: "Range {} = {}"
by auto

lemma Field_empty [simp]: "Field {} = {}"
by (simp add: Field_def)

lemma Domain_empty_iff: "Domain r = {} <-> r = {}"
by auto

lemma Range_empty_iff: "Range r = {} <-> r = {}"
by auto

lemma Domain_insert [simp]: "Domain (insert (a, b) r) = insert a (Domain r)"
by blast

lemma Range_insert [simp]: "Range (insert (a, b) r) = insert b (Range r)"
by blast

lemma Field_insert [simp]: "Field (insert (a, b) r) = {a, b} ∪ Field r"
by (auto simp add: Field_def)

lemma Domain_iff: "a ∈ Domain r <-> (∃y. (a, y) ∈ r)"
by blast

lemma Range_iff: "a ∈ Range r <-> (∃y. (y, a) ∈ r)"
by blast

lemma Domain_Id [simp]: "Domain Id = UNIV"
by blast

lemma Range_Id [simp]: "Range Id = UNIV"
by blast

lemma Domain_Id_on [simp]: "Domain (Id_on A) = A"
by blast

lemma Range_Id_on [simp]: "Range (Id_on A) = A"
by blast

lemma Domain_Un_eq: "Domain (A ∪ B) = Domain A ∪ Domain B"
by blast

lemma Range_Un_eq: "Range (A ∪ B) = Range A ∪ Range B"
by blast

lemma Field_Un [simp]: "Field (r ∪ s) = Field r ∪ Field s"
by (auto simp: Field_def)

lemma Domain_Int_subset: "Domain (A ∩ B) ⊆ Domain A ∩ Domain B"
by blast

lemma Range_Int_subset: "Range (A ∩ B) ⊆ Range A ∩ Range B"
by blast

lemma Domain_Diff_subset: "Domain A - Domain B ⊆ Domain (A - B)"
by blast

lemma Range_Diff_subset: "Range A - Range B ⊆ Range (A - B)"
by blast

lemma Domain_Union: "Domain (\<Union>S) = (\<Union>A∈S. Domain A)"
by blast

lemma Range_Union: "Range (\<Union>S) = (\<Union>A∈S. Range A)"
by blast

lemma Field_Union [simp]: "Field (\<Union>R) = \<Union>(Field ` R)"
by (auto simp: Field_def)

lemma Domain_converse [simp]: "Domain (r¯) = Range r"
by auto

lemma Range_converse [simp]: "Range (r¯) = Domain r"
by blast

lemma Field_converse [simp]: "Field (r¯) = Field r"
by (auto simp: Field_def)

lemma Domain_Collect_split [simp]: "Domain {(x, y). P x y} = {x. EX y. P x y}"
by auto

lemma Range_Collect_split [simp]: "Range {(x, y). P x y} = {y. EX x. P x y}"
by auto

lemma finite_Domain: "finite r ==> finite (Domain r)"
by (induct set: finite) auto

lemma finite_Range: "finite r ==> finite (Range r)"
by (induct set: finite) auto

lemma finite_Field: "finite r ==> finite (Field r)"
by (simp add: Field_def finite_Domain finite_Range)

lemma Domain_mono: "r ⊆ s ==> Domain r ⊆ Domain s"
by blast

lemma Range_mono: "r ⊆ s ==> Range r ⊆ Range s"
by blast

lemma mono_Field: "r ⊆ s ==> Field r ⊆ Field s"
by (auto simp: Field_def Domain_def Range_def)

lemma Domain_unfold:
"Domain r = {x. ∃y. (x, y) ∈ r}"
by blast

lemma Domain_dprod [simp]: "Domain (dprod r s) = uprod (Domain r) (Domain s)"
by auto

lemma Domain_dsum [simp]: "Domain (dsum r s) = usum (Domain r) (Domain s)"
by auto


subsubsection {* Image of a set under a relation *}

definition Image :: "('a × 'b) set => 'a set => 'b set" (infixr "``" 90)
where
"r `` s = {y. ∃x∈s. (x, y) ∈ r}"

declare Image_def [no_atp]

lemma Image_iff: "(b : r``A) = (EX x:A. (x, b) : r)"
by (simp add: Image_def)

lemma Image_singleton: "r``{a} = {b. (a, b) : r}"
by (simp add: Image_def)

lemma Image_singleton_iff [iff]: "(b : r``{a}) = ((a, b) : r)"
by (rule Image_iff [THEN trans]) simp

lemma ImageI [intro,no_atp]: "(a, b) : r ==> a : A ==> b : r``A"
by (unfold Image_def) blast

lemma ImageE [elim!]:
"b : r `` A ==> (!!x. (x, b) : r ==> x : A ==> P) ==> P"
by (unfold Image_def) (iprover elim!: CollectE bexE)

lemma rev_ImageI: "a : A ==> (a, b) : r ==> b : r `` A"
-- {* This version's more effective when we already have the required @{text a} *}
by blast

lemma Image_empty [simp]: "R``{} = {}"
by blast

lemma Image_Id [simp]: "Id `` A = A"
by blast

lemma Image_Id_on [simp]: "Id_on A `` B = A ∩ B"
by blast

lemma Image_Int_subset: "R `` (A ∩ B) ⊆ R `` A ∩ R `` B"
by blast

lemma Image_Int_eq:
"single_valued (converse R) ==> R `` (A ∩ B) = R `` A ∩ R `` B"
by (simp add: single_valued_def, blast)

lemma Image_Un: "R `` (A ∪ B) = R `` A ∪ R `` B"
by blast

lemma Un_Image: "(R ∪ S) `` A = R `` A ∪ S `` A"
by blast

lemma Image_subset: "r ⊆ A × B ==> r``C ⊆ B"
by (iprover intro!: subsetI elim!: ImageE dest!: subsetD SigmaD2)

lemma Image_eq_UN: "r``B = (\<Union>y∈ B. r``{y})"
-- {* NOT suitable for rewriting *}
by blast

lemma Image_mono: "r' ⊆ r ==> A' ⊆ A ==> (r' `` A') ⊆ (r `` A)"
by blast

lemma Image_UN: "(r `` (UNION A B)) = (\<Union>x∈A. r `` (B x))"
by blast

lemma Image_INT_subset: "(r `` INTER A B) ⊆ (\<Inter>x∈A. r `` (B x))"
by blast

text{*Converse inclusion requires some assumptions*}
lemma Image_INT_eq:
"[|single_valued (r¯); A≠{}|] ==> r `` INTER A B = (\<Inter>x∈A. r `` B x)"
apply (rule equalityI)
apply (rule Image_INT_subset)
apply (simp add: single_valued_def, blast)
done

lemma Image_subset_eq: "(r``A ⊆ B) = (A ⊆ - ((r^-1) `` (-B)))"
by blast

lemma Image_Collect_split [simp]: "{(x, y). P x y} `` A = {y. EX x:A. P x y}"
by auto


subsubsection {* Inverse image *}

definition inv_image :: "'b rel => ('a => 'b) => 'a rel"
where
"inv_image r f = {(x, y). (f x, f y) ∈ r}"

definition inv_imagep :: "('b => 'b => bool) => ('a => 'b) => 'a => 'a => bool"
where
"inv_imagep r f = (λx y. r (f x) (f y))"

lemma [pred_set_conv]: "inv_imagep (λx y. (x, y) ∈ r) f = (λx y. (x, y) ∈ inv_image r f)"
by (simp add: inv_image_def inv_imagep_def)

lemma sym_inv_image: "sym r ==> sym (inv_image r f)"
by (unfold sym_def inv_image_def) blast

lemma trans_inv_image: "trans r ==> trans (inv_image r f)"
apply (unfold trans_def inv_image_def)
apply (simp (no_asm))
apply blast
done

lemma in_inv_image[simp]: "((x,y) : inv_image r f) = ((f x, f y) : r)"
by (auto simp:inv_image_def)

lemma converse_inv_image[simp]: "(inv_image R f)^-1 = inv_image (R^-1) f"
unfolding inv_image_def converse_unfold by auto

lemma in_inv_imagep [simp]: "inv_imagep r f x y = r (f x) (f y)"
by (simp add: inv_imagep_def)


subsubsection {* Powerset *}

definition Powp :: "('a => bool) => 'a set => bool"
where
"Powp A = (λB. ∀x ∈ B. A x)"

lemma Powp_Pow_eq [pred_set_conv]: "Powp (λx. x ∈ A) = (λx. x ∈ Pow A)"
by (auto simp add: Powp_def fun_eq_iff)

lemmas Powp_mono [mono] = Pow_mono [to_pred]

subsubsection {* Expressing relation operations via @{const Finite_Set.fold} *}

lemma Id_on_fold:
assumes "finite A"
shows "Id_on A = Finite_Set.fold (λx. Set.insert (Pair x x)) {} A"
proof -
interpret comp_fun_commute "λx. Set.insert (Pair x x)" by default auto
show ?thesis using assms unfolding Id_on_def by (induct A) simp_all
qed

lemma comp_fun_commute_Image_fold:
"comp_fun_commute (λ(x,y) A. if x ∈ S then Set.insert y A else A)"
proof -
interpret comp_fun_idem Set.insert
by (fact comp_fun_idem_insert)
show ?thesis
by default (auto simp add: fun_eq_iff comp_fun_commute split:prod.split)
qed

lemma Image_fold:
assumes "finite R"
shows "R `` S = Finite_Set.fold (λ(x,y) A. if x ∈ S then Set.insert y A else A) {} R"
proof -
interpret comp_fun_commute "(λ(x,y) A. if x ∈ S then Set.insert y A else A)"
by (rule comp_fun_commute_Image_fold)
have *: "!!x F. Set.insert x F `` S = (if fst x ∈ S then Set.insert (snd x) (F `` S) else (F `` S))"
by (auto intro: rev_ImageI)
show ?thesis using assms by (induct R) (auto simp: *)
qed

lemma insert_relcomp_union_fold:
assumes "finite S"
shows "{x} O S ∪ X = Finite_Set.fold (λ(w,z) A'. if snd x = w then Set.insert (fst x,z) A' else A') X S"
proof -
interpret comp_fun_commute "λ(w,z) A'. if snd x = w then Set.insert (fst x,z) A' else A'"
proof -
interpret comp_fun_idem Set.insert by (fact comp_fun_idem_insert)
show "comp_fun_commute (λ(w,z) A'. if snd x = w then Set.insert (fst x,z) A' else A')"
by default (auto simp add: fun_eq_iff split:prod.split)
qed
have *: "{x} O S = {(x', z). x' = fst x ∧ (snd x,z) ∈ S}" by (auto simp: relcomp_unfold intro!: exI)
show ?thesis unfolding *
using `finite S` by (induct S) (auto split: prod.split)
qed

lemma insert_relcomp_fold:
assumes "finite S"
shows "Set.insert x R O S =
Finite_Set.fold (λ(w,z) A'. if snd x = w then Set.insert (fst x,z) A' else A') (R O S) S"

proof -
have "Set.insert x R O S = ({x} O S) ∪ (R O S)" by auto
then show ?thesis by (auto simp: insert_relcomp_union_fold[OF assms])
qed

lemma comp_fun_commute_relcomp_fold:
assumes "finite S"
shows "comp_fun_commute (λ(x,y) A.
Finite_Set.fold (λ(w,z) A'. if y = w then Set.insert (x,z) A' else A') A S)"

proof -
have *: "!!a b A.
Finite_Set.fold (λ(w, z) A'. if b = w then Set.insert (a, z) A' else A') A S = {(a,b)} O S ∪ A"

by (auto simp: insert_relcomp_union_fold[OF assms] cong: if_cong)
show ?thesis by default (auto simp: *)
qed

lemma relcomp_fold:
assumes "finite R"
assumes "finite S"
shows "R O S = Finite_Set.fold
(λ(x,y) A. Finite_Set.fold (λ(w,z) A'. if y = w then Set.insert (x,z) A' else A') A S) {} R"

proof -
show ?thesis using assms by (induct R)
(auto simp: comp_fun_commute.fold_insert comp_fun_commute_relcomp_fold insert_relcomp_fold
cong: if_cong)
qed



end