Binary relations
Content created by Fredrik Bakke, Egbert Rijke, Jonathan Prieto-Cubides, Elisabeth Stenholm, Daniel Gratzer, Julian KG, Victor Blanchi, fernabnor, louismntnu and malarbol.
Created on 2022-01-27.
Last modified on 2024-09-28.
module foundation.binary-relations where
Imports
open import foundation.dependent-pair-types open import foundation.equality-dependent-function-types open import foundation.fundamental-theorem-of-identity-types open import foundation.iterated-dependent-product-types open import foundation.subtypes open import foundation.univalence open import foundation.universe-levels open import foundation-core.cartesian-product-types open import foundation-core.empty-types open import foundation-core.equivalences open import foundation-core.identity-types open import foundation-core.negation open import foundation-core.propositions open import foundation-core.torsorial-type-families
Idea
A binary relation on a type A
is a family of types R x y
depending on
two variables x y : A
. In the special case where each R x y
is a
proposition, we say that the relation is
valued in propositions. Thus, we take a general relation to mean a
proof-relevant relation.
Definition
Relations valued in types
Relation : {l1 : Level} (l : Level) (A : UU l1) → UU (l1 ⊔ lsuc l) Relation l A = A → A → UU l total-space-Relation : {l1 l : Level} {A : UU l1} → Relation l A → UU (l1 ⊔ l) total-space-Relation {A = A} R = Σ (A × A) λ (a , a') → R a a'
Relations valued in propositions
Relation-Prop : (l : Level) {l1 : Level} (A : UU l1) → UU (lsuc l ⊔ l1) Relation-Prop l A = A → A → Prop l type-Relation-Prop : {l1 l2 : Level} {A : UU l1} → Relation-Prop l2 A → Relation l2 A type-Relation-Prop R x y = pr1 (R x y) is-prop-type-Relation-Prop : {l1 l2 : Level} {A : UU l1} (R : Relation-Prop l2 A) → (x y : A) → is-prop (type-Relation-Prop R x y) is-prop-type-Relation-Prop R x y = pr2 (R x y) total-space-Relation-Prop : {l : Level} {l1 : Level} {A : UU l1} → Relation-Prop l A → UU (l ⊔ l1) total-space-Relation-Prop {A = A} R = Σ (A × A) λ (a , a') → type-Relation-Prop R a a'
The predicate of being a reflexive relation
A relation R
on a type A
is said to be reflexive if it comes equipped
with a function (x : A) → R x x
.
module _ {l1 l2 : Level} {A : UU l1} (R : Relation l2 A) where is-reflexive : UU (l1 ⊔ l2) is-reflexive = (x : A) → R x x
The predicate of being a reflexive relation valued in propositions
A relation R
on a type A
valued in propositions is said to be reflexive
if its underlying relation is reflexive
module _ {l1 l2 : Level} {A : UU l1} (R : Relation-Prop l2 A) where is-reflexive-Relation-Prop : UU (l1 ⊔ l2) is-reflexive-Relation-Prop = is-reflexive (type-Relation-Prop R) is-prop-is-reflexive-Relation-Prop : is-prop is-reflexive-Relation-Prop is-prop-is-reflexive-Relation-Prop = is-prop-Π (λ x → is-prop-type-Relation-Prop R x x) is-reflexive-prop-Relation-Prop : Prop (l1 ⊔ l2) is-reflexive-prop-Relation-Prop = (is-reflexive-Relation-Prop , is-prop-is-reflexive-Relation-Prop)
The predicate of being a symmetric relation
A relation R
on a type A
is said to be symmetric if it comes equipped
with a function (x y : A) → R x y → R y x
.
module _ {l1 l2 : Level} {A : UU l1} (R : Relation l2 A) where is-symmetric : UU (l1 ⊔ l2) is-symmetric = (x y : A) → R x y → R y x
The predicate of being a symmetric relation valued in propositions
A relation R
on a type A
valued in propositions is said to be symmetric
if its underlying relation is symmetric.
module _ {l1 l2 : Level} {A : UU l1} (R : Relation-Prop l2 A) where is-symmetric-Relation-Prop : UU (l1 ⊔ l2) is-symmetric-Relation-Prop = is-symmetric (type-Relation-Prop R) is-prop-is-symmetric-Relation-Prop : is-prop is-symmetric-Relation-Prop is-prop-is-symmetric-Relation-Prop = is-prop-iterated-Π 3 ( λ x y r → is-prop-type-Relation-Prop R y x) is-symmetric-prop-Relation-Prop : Prop (l1 ⊔ l2) is-symmetric-prop-Relation-Prop = (is-symmetric-Relation-Prop , is-prop-is-symmetric-Relation-Prop)
The predicate of being a transitive relation
A relation R
on a type A
is said to be transitive if it comes equipped
with a function (x y z : A) → R y z → R x y → R x z
.
module _ {l1 l2 : Level} {A : UU l1} (R : Relation l2 A) where is-transitive : UU (l1 ⊔ l2) is-transitive = (x y z : A) → R y z → R x y → R x z
The predicate of being a transitive relation valued in propositions
A relation R
on a type A
valued in propositions is said to be transitive
if its underlying relation is transitive.
module _ {l1 l2 : Level} {A : UU l1} (R : Relation-Prop l2 A) where is-transitive-Relation-Prop : UU (l1 ⊔ l2) is-transitive-Relation-Prop = is-transitive (type-Relation-Prop R) is-prop-is-transitive-Relation-Prop : is-prop is-transitive-Relation-Prop is-prop-is-transitive-Relation-Prop = is-prop-iterated-Π 3 ( λ x y z → is-prop-function-type ( is-prop-function-type (is-prop-type-Relation-Prop R x z)))
The predicate of being an irreflexive relation
A relation R
on a type A
is said to be irreflexive if it comes equipped
with a function (x : A) → ¬ (R x x)
.
module _ {l1 l2 : Level} {A : UU l1} (R : Relation l2 A) where is-irreflexive : UU (l1 ⊔ l2) is-irreflexive = (x : A) → ¬ (R x x)
The predicate of being an asymmetric relation
A relation R
on a type A
is said to be asymmetric if it comes equipped
with a function (x y : A) → R x y → ¬ (R y x)
.
module _ {l1 l2 : Level} {A : UU l1} (R : Relation l2 A) where is-asymmetric : UU (l1 ⊔ l2) is-asymmetric = (x y : A) → R x y → ¬ (R y x)
The predicate of being an antisymmetric relation
A relation R
on a type A
is said to be antisymmetric if it comes
equipped with a function (x y : A) → R x y → R y x → x = y
.
module _ {l1 l2 : Level} {A : UU l1} (R : Relation l2 A) where is-antisymmetric : UU (l1 ⊔ l2) is-antisymmetric = (x y : A) → R x y → R y x → x = y
The predicate of being an antisymmetric relation valued in propositions
A relation R
on a type A
valued in propositions is said to be
antisymmetric if its underlying relation is antisymmetric.
module _ {l1 l2 : Level} {A : UU l1} (R : Relation-Prop l2 A) where is-antisymmetric-Relation-Prop : UU (l1 ⊔ l2) is-antisymmetric-Relation-Prop = is-antisymmetric (type-Relation-Prop R)
Properties
Characterization of equality of binary relations
equiv-Relation : {l1 l2 l3 : Level} {A : UU l1} → Relation l2 A → Relation l3 A → UU (l1 ⊔ l2 ⊔ l3) equiv-Relation {A = A} R S = (x y : A) → R x y ≃ S x y module _ {l1 l2 : Level} {A : UU l1} (R : Relation l2 A) where id-equiv-Relation : equiv-Relation R R id-equiv-Relation x y = id-equiv is-torsorial-equiv-Relation : is-torsorial (equiv-Relation R) is-torsorial-equiv-Relation = is-torsorial-Eq-Π ( λ x → is-torsorial-Eq-Π (λ y → is-torsorial-equiv (R x y))) equiv-eq-Relation : (S : Relation l2 A) → (R = S) → equiv-Relation R S equiv-eq-Relation .R refl = id-equiv-Relation is-equiv-equiv-eq-Relation : (S : Relation l2 A) → is-equiv (equiv-eq-Relation S) is-equiv-equiv-eq-Relation = fundamental-theorem-id is-torsorial-equiv-Relation equiv-eq-Relation extensionality-Relation : (S : Relation l2 A) → (R = S) ≃ equiv-Relation R S pr1 (extensionality-Relation S) = equiv-eq-Relation S pr2 (extensionality-Relation S) = is-equiv-equiv-eq-Relation S eq-equiv-Relation : (S : Relation l2 A) → equiv-Relation R S → (R = S) eq-equiv-Relation S = map-inv-equiv (extensionality-Relation S)
Characterization of equality of prop-valued binary relations
relates-same-elements-Relation-Prop : {l1 l2 l3 : Level} {A : UU l1} (R : Relation-Prop l2 A) (S : Relation-Prop l3 A) → UU (l1 ⊔ l2 ⊔ l3) relates-same-elements-Relation-Prop {A = A} R S = (x : A) → has-same-elements-subtype (R x) (S x) module _ {l1 l2 : Level} {A : UU l1} (R : Relation-Prop l2 A) where refl-relates-same-elements-Relation-Prop : relates-same-elements-Relation-Prop R R refl-relates-same-elements-Relation-Prop x = refl-has-same-elements-subtype (R x) is-torsorial-relates-same-elements-Relation-Prop : is-torsorial (relates-same-elements-Relation-Prop R) is-torsorial-relates-same-elements-Relation-Prop = is-torsorial-Eq-Π (λ x → is-torsorial-has-same-elements-subtype (R x)) relates-same-elements-eq-Relation-Prop : (S : Relation-Prop l2 A) → (R = S) → relates-same-elements-Relation-Prop R S relates-same-elements-eq-Relation-Prop .R refl = refl-relates-same-elements-Relation-Prop is-equiv-relates-same-elements-eq-Relation-Prop : (S : Relation-Prop l2 A) → is-equiv (relates-same-elements-eq-Relation-Prop S) is-equiv-relates-same-elements-eq-Relation-Prop = fundamental-theorem-id is-torsorial-relates-same-elements-Relation-Prop relates-same-elements-eq-Relation-Prop extensionality-Relation-Prop : (S : Relation-Prop l2 A) → (R = S) ≃ relates-same-elements-Relation-Prop R S pr1 (extensionality-Relation-Prop S) = relates-same-elements-eq-Relation-Prop S pr2 (extensionality-Relation-Prop S) = is-equiv-relates-same-elements-eq-Relation-Prop S eq-relates-same-elements-Relation-Prop : (S : Relation-Prop l2 A) → relates-same-elements-Relation-Prop R S → (R = S) eq-relates-same-elements-Relation-Prop S = map-inv-equiv (extensionality-Relation-Prop S)
Asymmetric relations are irreflexive
module _ {l1 l2 : Level} {A : UU l1} (R : Relation l2 A) where is-irreflexive-is-asymmetric : is-asymmetric R → is-irreflexive R is-irreflexive-is-asymmetric H x r = H x x r r
Asymmetric relations are antisymmetric
module _ {l1 l2 : Level} {A : UU l1} (R : Relation l2 A) where is-antisymmetric-is-asymmetric : is-asymmetric R → is-antisymmetric R is-antisymmetric-is-asymmetric H x y r s = ex-falso (H x y r s)
See also
Recent changes
- 2024-09-28. malarbol and Fredrik Bakke. Metric spaces (#1162).
- 2024-04-20. Fredrik Bakke. chore: Remove redundant parentheses in universe level expressions (#1125).
- 2024-04-11. Fredrik Bakke. Strict symmetrizations of binary relations (#1025).
- 2024-01-11. Fredrik Bakke. Make type family implicit for
is-torsorial-Eq-structure
andis-torsorial-Eq-Π
(#995).