mathlib documentation

order.rel_iso

Relation homomorphisms, embeddings, isomorphisms #

This file defines relation homomorphisms, embeddings, isomorphisms and order embeddings and isomorphisms.

Main declarations #

Notation #

@[nolint]
structure rel_hom {α : Type u_5} {β : Type u_6} (r : α → α → Prop) (s : β → β → Prop) :
Type (max u_5 u_6)
  • to_fun : α → β
  • map_rel' : ∀ {a b : α}, r a bs (self.to_fun a) (self.to_fun b)

A relation homomorphism with respect to a given pair of relations r and s is a function f : α → β such that r a b → s (f a) (f b).

Instances for rel_hom
@[class]
structure rel_hom_class (F : Type u_5) {α : out_param (Type u_6)} {β : out_param (Type u_7)} (r : out_param (α → α → Prop)) (s : out_param (β → β → Prop)) :
Type (max u_5 u_6 u_7)
  • to_fun_like : fun_like F α (λ (_x : α), β)
  • map_rel : ∀ (f : F) {a b : α}, r a bs (f a) (f b)

rel_hom_class F r s asserts that F is a type of functions such that all f : F satisfy r a b → s (f a) (f b).

The relations r and s are out_params since figuring them out from a goal is a higher-order matching problem that Lean usually can't do unaided.

Instances of this typeclass
Instances of other typeclasses for rel_hom_class
  • rel_hom_class.has_sizeof_inst
theorem rel_hom_class.map_inf {α : Type u_1} {β : Type u_2} {F : Type u_5} [semilattice_inf α] [linear_order β] [rel_hom_class F has_lt.lt has_lt.lt] (a : F) (m n : β) :
a (m n) = a m a n
theorem rel_hom_class.map_sup {α : Type u_1} {β : Type u_2} {F : Type u_5} [semilattice_sup α] [linear_order β] [rel_hom_class F gt gt] (a : F) (m n : β) :
a (m n) = a m a n
@[protected]
theorem rel_hom_class.is_irrefl {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} {F : Type u_5} [rel_hom_class F r s] (f : F) [is_irrefl β s] :
@[protected]
theorem rel_hom_class.is_asymm {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} {F : Type u_5} [rel_hom_class F r s] (f : F) [is_asymm β s] :
@[protected]
theorem rel_hom_class.acc {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} {F : Type u_5} [rel_hom_class F r s] (f : F) (a : α) :
acc s (f a)acc r a
@[protected]
theorem rel_hom_class.well_founded {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} {F : Type u_5} [rel_hom_class F r s] (f : F) (h : well_founded s) :
@[protected, instance]
def rel_hom.rel_hom_class {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} :
Equations
@[protected, instance]
def rel_hom.has_coe_to_fun {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} :
has_coe_to_fun (r →r s) (λ (_x : r →r s), α → β)

Auxiliary instance if rel_hom_class.to_fun_like.to_has_coe_to_fun isn't found

Equations
@[protected]
theorem rel_hom.map_rel {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : r →r s) {a b : α} :
r a bs (f a) (f b)
@[simp]
theorem rel_hom.coe_fn_mk {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : α → β) (o : ∀ {a b : α}, r a bs (f a) (f b)) :
{to_fun := f, map_rel' := o} = f
@[simp]
theorem rel_hom.coe_fn_to_fun {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : r →r s) :
theorem rel_hom.coe_fn_injective {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} :

The map coe_fn : (r →r s) → (α → β) is injective.

@[ext]
theorem rel_hom.ext {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} ⦃f g : r →r s⦄ (h : ∀ (x : α), f x = g x) :
f = g
theorem rel_hom.ext_iff {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} {f g : r →r s} :
f = g ∀ (x : α), f x = g x
@[simp]
theorem rel_hom.id_apply {α : Type u_1} (r : α → α → Prop) (x : α) :
@[protected, refl]
def rel_hom.id {α : Type u_1} (r : α → α → Prop) :
r →r r

Identity map is a relation homomorphism.

Equations
@[simp]
theorem rel_hom.comp_apply {α : Type u_1} {β : Type u_2} {γ : Type u_3} {r : α → α → Prop} {s : β → β → Prop} {t : γ → γ → Prop} (g : s →r t) (f : r →r s) (x : α) :
(g.comp f) x = g (f x)
@[protected, trans]
def rel_hom.comp {α : Type u_1} {β : Type u_2} {γ : Type u_3} {r : α → α → Prop} {s : β → β → Prop} {t : γ → γ → Prop} (g : s →r t) (f : r →r s) :
r →r t

Composition of two relation homomorphisms is a relation homomorphism.

Equations
@[protected]
def rel_hom.swap {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : r →r s) :

A relation homomorphism is also a relation homomorphism between dual relations.

Equations
def rel_hom.preimage {α : Type u_1} {β : Type u_2} (f : α → β) (s : β → β → Prop) :

A function is a relation homomorphism from the preimage relation of s to s.

Equations
theorem injective_of_increasing {α : Type u_1} {β : Type u_2} (r : α → α → Prop) (s : β → β → Prop) [is_trichotomous α r] [is_irrefl β s] (f : α → β) (hf : ∀ {x y : α}, r x ys (f x) (f y)) :

An increasing function is injective

theorem rel_hom.injective_of_increasing {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} [is_trichotomous α r] [is_irrefl β s] (f : r →r s) :

An increasing function is injective

theorem surjective.well_founded_iff {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} {f : α → β} (hf : function.surjective f) (o : ∀ {a b : α}, r a b s (f a) (f b)) :
structure rel_embedding {α : Type u_5} {β : Type u_6} (r : α → α → Prop) (s : β → β → Prop) :
Type (max u_5 u_6)

A relation embedding with respect to a given pair of relations r and s is an embedding f : α ↪ β such that r a b ↔ s (f a) (f b).

Instances for rel_embedding
def subtype.rel_embedding {X : Type u_1} (r : X → X → Prop) (p : X → Prop) :

The induced relation on a subtype is an embedding under the natural inclusion.

Equations
theorem preimage_equivalence {α : Sort u_1} {β : Sort u_2} (f : α → β) {s : β → β → Prop} (hs : equivalence s) :
def rel_embedding.to_rel_hom {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : r ↪r s) :
r →r s

A relation embedding is also a relation homomorphism

Equations
@[protected, instance]
def rel_embedding.rel_hom.has_coe {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} :
has_coe (r ↪r s) (r →r s)
Equations
@[protected, instance]
def rel_embedding.has_coe_to_fun {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} :
has_coe_to_fun (r ↪r s) (λ (_x : r ↪r s), α → β)
Equations
@[protected, instance]
def rel_embedding.rel_hom_class {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} :
Equations
def rel_embedding.simps.apply {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (h : r ↪r s) :
α → β

See Note [custom simps projection]. We need to specify this projection explicitly in this case, because it is a composition of multiple projections.

Equations
@[simp]
theorem rel_embedding.to_rel_hom_eq_coe {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : r ↪r s) :
@[simp]
theorem rel_embedding.coe_coe_fn {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : r ↪r s) :
theorem rel_embedding.injective {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : r ↪r s) :
@[simp]
theorem rel_embedding.inj {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : r ↪r s) {a b : α} :
f a = f b a = b
theorem rel_embedding.map_rel_iff {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : r ↪r s) {a b : α} :
s (f a) (f b) r a b
@[simp]
theorem rel_embedding.coe_fn_mk {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : α β) (o : ∀ {a b : α}, s (f a) (f b) r a b) :
@[simp]
theorem rel_embedding.coe_fn_to_embedding {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : r ↪r s) :
theorem rel_embedding.coe_fn_injective {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} :

The map coe_fn : (r ↪r s) → (α → β) is injective.

@[ext]
theorem rel_embedding.ext {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} ⦃f g : r ↪r s⦄ (h : ∀ (x : α), f x = g x) :
f = g
theorem rel_embedding.ext_iff {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} {f g : r ↪r s} :
f = g ∀ (x : α), f x = g x
@[simp]
theorem rel_embedding.refl_apply {α : Type u_1} (r : α → α → Prop) (a : α) :
@[protected, refl]
def rel_embedding.refl {α : Type u_1} (r : α → α → Prop) :
r ↪r r

Identity map is a relation embedding.

Equations
@[protected, trans]
def rel_embedding.trans {α : Type u_1} {β : Type u_2} {γ : Type u_3} {r : α → α → Prop} {s : β → β → Prop} {t : γ → γ → Prop} (f : r ↪r s) (g : s ↪r t) :
r ↪r t

Composition of two relation embeddings is a relation embedding.

Equations
@[protected, instance]
def rel_embedding.inhabited {α : Type u_1} (r : α → α → Prop) :
Equations
theorem rel_embedding.trans_apply {α : Type u_1} {β : Type u_2} {γ : Type u_3} {r : α → α → Prop} {s : β → β → Prop} {t : γ → γ → Prop} (f : r ↪r s) (g : s ↪r t) (a : α) :
(f.trans g) a = g (f a)
@[simp]
theorem rel_embedding.coe_trans {α : Type u_1} {β : Type u_2} {γ : Type u_3} {r : α → α → Prop} {s : β → β → Prop} {t : γ → γ → Prop} (f : r ↪r s) (g : s ↪r t) :
(f.trans g) = g f
@[protected]
def rel_embedding.swap {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : r ↪r s) :

A relation embedding is also a relation embedding between dual relations.

Equations
def rel_embedding.preimage {α : Type u_1} {β : Type u_2} (f : α β) (s : β → β → Prop) :

If f is injective, then it is a relation embedding from the preimage relation of s to s.

Equations
theorem rel_embedding.eq_preimage {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : r ↪r s) :
@[protected]
theorem rel_embedding.is_irrefl {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : r ↪r s) [is_irrefl β s] :
@[protected]
theorem rel_embedding.is_refl {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : r ↪r s) [is_refl β s] :
is_refl α r
@[protected]
theorem rel_embedding.is_symm {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : r ↪r s) [is_symm β s] :
is_symm α r
@[protected]
theorem rel_embedding.is_asymm {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : r ↪r s) [is_asymm β s] :
@[protected]
theorem rel_embedding.is_antisymm {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : r ↪r s) [is_antisymm β s] :
@[protected]
theorem rel_embedding.is_trans {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : r ↪r s) [is_trans β s] :
@[protected]
theorem rel_embedding.is_total {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : r ↪r s) [is_total β s] :
@[protected]
theorem rel_embedding.is_preorder {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : r ↪r s) [is_preorder β s] :
@[protected]
theorem rel_embedding.is_partial_order {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : r ↪r s) [is_partial_order β s] :
@[protected]
theorem rel_embedding.is_linear_order {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : r ↪r s) [is_linear_order β s] :
@[protected]
theorem rel_embedding.is_strict_order {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : r ↪r s) [is_strict_order β s] :
@[protected]
theorem rel_embedding.is_trichotomous {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : r ↪r s) [is_trichotomous β s] :
@[protected]
theorem rel_embedding.is_strict_total_order' {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : r ↪r s) [is_strict_total_order' β s] :
@[protected]
theorem rel_embedding.acc {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : r ↪r s) (a : α) :
acc s (f a)acc r a
@[protected]
theorem rel_embedding.well_founded {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : r ↪r s) (h : well_founded s) :
@[protected]
theorem rel_embedding.is_well_order {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : r ↪r s) [is_well_order β s] :
@[simp]
theorem quotient.out_rel_embedding_apply {α : Type u_1} [s : setoid α] {r : α → α → Prop} (H : ∀ (a₁ a₂ b₁ b₂ : α), a₁ b₁a₂ b₂r a₁ a₂ = r b₁ b₂) (ᾰ : quotient s) :
noncomputable def quotient.out_rel_embedding {α : Type u_1} [s : setoid α] {r : α → α → Prop} (H : ∀ (a₁ a₂ b₁ b₂ : α), a₁ b₁a₂ b₂r a₁ a₂ = r b₁ b₂) :

quotient.out as a relation embedding between the lift of a relation and the relation.

Equations
@[simp]
theorem well_founded_lift₂_iff {α : Type u_1} [s : setoid α] {r : α → α → Prop} {H : ∀ (a₁ a₂ b₁ b₂ : α), a₁ b₁a₂ b₂r a₁ a₂ = r b₁ b₂} :

A relation is well founded iff its lift to a quotient is.

theorem well_founded.of_quotient_lift₂ {α : Type u_1} [s : setoid α] {r : α → α → Prop} {H : ∀ (a₁ a₂ b₁ b₂ : α), a₁ b₁a₂ b₂r a₁ a₂ = r b₁ b₂} :

Alias of the forward direction of well_founded_lift₂_iff.

theorem well_founded.quotient_lift₂ {α : Type u_1} [s : setoid α] {r : α → α → Prop} {H : ∀ (a₁ a₂ b₁ b₂ : α), a₁ b₁a₂ b₂r a₁ a₂ = r b₁ b₂} :

Alias of the reverse direction of well_founded_lift₂_iff.

def rel_embedding.of_map_rel_iff {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : α → β) [is_antisymm α r] [is_refl β s] (hf : ∀ (a b : α), s (f a) (f b) r a b) :
r ↪r s

To define an relation embedding from an antisymmetric relation r to a reflexive relation s it suffices to give a function together with a proof that it satisfies s (f a) (f b) ↔ r a b.

Equations
@[simp]
theorem rel_embedding.of_map_rel_iff_coe {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : α → β) [is_antisymm α r] [is_refl β s] (hf : ∀ (a b : α), s (f a) (f b) r a b) :
def rel_embedding.of_monotone {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} [is_trichotomous α r] [is_asymm β s] (f : α → β) (H : ∀ (a b : α), r a bs (f a) (f b)) :
r ↪r s

It suffices to prove f is monotone between strict relations to show it is a relation embedding.

Equations
@[simp]
theorem rel_embedding.of_monotone_coe {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} [is_trichotomous α r] [is_asymm β s] (f : α → β) (H : ∀ (a b : α), r a bs (f a) (f b)) :
def rel_embedding.of_is_empty {α : Type u_1} {β : Type u_2} (r : α → α → Prop) (s : β → β → Prop) [is_empty α] :
r ↪r s

A relation embedding from an empty type.

Equations
@[simp]
theorem rel_embedding.sum_lift_rel_inl_apply {α : Type u_1} {β : Type u_2} (r : α → α → Prop) (s : β → β → Prop) (val : α) :
def rel_embedding.sum_lift_rel_inl {α : Type u_1} {β : Type u_2} (r : α → α → Prop) (s : β → β → Prop) :

sum.inl as a relation embedding into sum.lift_rel r s.

Equations
def rel_embedding.sum_lift_rel_inr {α : Type u_1} {β : Type u_2} (r : α → α → Prop) (s : β → β → Prop) :

sum.inr as a relation embedding into sum.lift_rel r s.

Equations
@[simp]
theorem rel_embedding.sum_lift_rel_inr_apply {α : Type u_1} {β : Type u_2} (r : α → α → Prop) (s : β → β → Prop) (val : β) :
def rel_embedding.sum_lift_rel_map {α : Type u_1} {β : Type u_2} {γ : Type u_3} {δ : Type u_4} {r : α → α → Prop} {s : β → β → Prop} {t : γ → γ → Prop} {u : δ → δ → Prop} (f : r ↪r s) (g : t ↪r u) :

sum.map as a relation embedding between sum.lift_rel relations.

Equations
@[simp]
theorem rel_embedding.sum_lift_rel_map_apply {α : Type u_1} {β : Type u_2} {γ : Type u_3} {δ : Type u_4} {r : α → α → Prop} {s : β → β → Prop} {t : γ → γ → Prop} {u : δ → δ → Prop} (f : r ↪r s) (g : t ↪r u) (ᾰ : α γ) :
@[simp]
theorem rel_embedding.sum_lex_inl_apply {α : Type u_1} {β : Type u_2} (r : α → α → Prop) (s : β → β → Prop) (val : α) :
def rel_embedding.sum_lex_inl {α : Type u_1} {β : Type u_2} (r : α → α → Prop) (s : β → β → Prop) :

sum.inl as a relation embedding into sum.lex r s.

Equations
@[simp]
theorem rel_embedding.sum_lex_inr_apply {α : Type u_1} {β : Type u_2} (r : α → α → Prop) (s : β → β → Prop) (val : β) :
def rel_embedding.sum_lex_inr {α : Type u_1} {β : Type u_2} (r : α → α → Prop) (s : β → β → Prop) :

sum.inr as a relation embedding into sum.lex r s.

Equations
@[simp]
theorem rel_embedding.sum_lex_map_apply {α : Type u_1} {β : Type u_2} {γ : Type u_3} {δ : Type u_4} {r : α → α → Prop} {s : β → β → Prop} {t : γ → γ → Prop} {u : δ → δ → Prop} (f : r ↪r s) (g : t ↪r u) (ᾰ : α γ) :
(f.sum_lex_map g) = sum.map f g
def rel_embedding.sum_lex_map {α : Type u_1} {β : Type u_2} {γ : Type u_3} {δ : Type u_4} {r : α → α → Prop} {s : β → β → Prop} {t : γ → γ → Prop} {u : δ → δ → Prop} (f : r ↪r s) (g : t ↪r u) :

sum.map as a relation embedding between sum.lex relations.

Equations
def rel_embedding.prod_lex_mk_left {α : Type u_1} {β : Type u_2} {r : α → α → Prop} (s : β → β → Prop) {a : α} (h : ¬r a a) :

λ b, prod.mk a b as a relation embedding.

Equations
@[simp]
theorem rel_embedding.prod_lex_mk_left_apply {α : Type u_1} {β : Type u_2} {r : α → α → Prop} (s : β → β → Prop) {a : α} (h : ¬r a a) (snd : β) :
def rel_embedding.prod_lex_mk_right {α : Type u_1} {β : Type u_2} {s : β → β → Prop} (r : α → α → Prop) {b : β} (h : ¬s b b) :

λ a, prod.mk a b as a relation embedding.

Equations
@[simp]
theorem rel_embedding.prod_lex_mk_right_apply {α : Type u_1} {β : Type u_2} {s : β → β → Prop} (r : α → α → Prop) {b : β} (h : ¬s b b) (a : α) :
@[simp]
theorem rel_embedding.prod_lex_map_apply {α : Type u_1} {β : Type u_2} {γ : Type u_3} {δ : Type u_4} {r : α → α → Prop} {s : β → β → Prop} {t : γ → γ → Prop} {u : δ → δ → Prop} (f : r ↪r s) (g : t ↪r u) (x : α × γ) :
def rel_embedding.prod_lex_map {α : Type u_1} {β : Type u_2} {γ : Type u_3} {δ : Type u_4} {r : α → α → Prop} {s : β → β → Prop} {t : γ → γ → Prop} {u : δ → δ → Prop} (f : r ↪r s) (g : t ↪r u) :

prod.map as a relation embedding.

Equations
structure rel_iso {α : Type u_5} {β : Type u_6} (r : α → α → Prop) (s : β → β → Prop) :
Type (max u_5 u_6)

A relation isomorphism is an equivalence that is also a relation embedding.

Instances for rel_iso
def rel_iso.to_rel_embedding {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : r ≃r s) :
r ↪r s

Convert an rel_iso to an rel_embedding. This function is also available as a coercion but often it is easier to write f.to_rel_embedding than to write explicitly r and s in the target type.

Equations
theorem rel_iso.to_equiv_injective {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} :
@[protected, instance]
def rel_iso.rel_embedding.has_coe {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} :
has_coe (r ≃r s) (r ↪r s)
Equations
@[protected, instance]
def rel_iso.has_coe_to_fun {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} :
has_coe_to_fun (r ≃r s) (λ (_x : r ≃r s), α → β)
Equations
@[protected, instance]
def rel_iso.rel_hom_class {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} :
Equations
@[simp]
theorem rel_iso.to_rel_embedding_eq_coe {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : r ≃r s) :
@[simp]
theorem rel_iso.coe_coe_fn {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : r ≃r s) :
theorem rel_iso.map_rel_iff {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : r ≃r s) {a b : α} :
s (f a) (f b) r a b
@[simp]
theorem rel_iso.coe_fn_mk {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : α β) (o : ∀ ⦃a b : α⦄, s (f a) (f b) r a b) :
@[simp]
theorem rel_iso.coe_fn_to_equiv {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : r ≃r s) :
theorem rel_iso.coe_fn_injective {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} :

The map coe_fn : (r ≃r s) → (α → β) is injective. Lean fails to parse function.injective (λ e : r ≃r s, (e : α → β)), so we use a trick to say the same.

@[ext]
theorem rel_iso.ext {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} ⦃f g : r ≃r s⦄ (h : ∀ (x : α), f x = g x) :
f = g
theorem rel_iso.ext_iff {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} {f g : r ≃r s} :
f = g ∀ (x : α), f x = g x
@[protected, symm]
def rel_iso.symm {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : r ≃r s) :
s ≃r r

Inverse map of a relation isomorphism is a relation isomorphism.

Equations
def rel_iso.simps.apply {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (h : r ≃r s) :
α → β

See Note [custom simps projection]. We need to specify this projection explicitly in this case, because it is a composition of multiple projections.

Equations
def rel_iso.simps.symm_apply {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (h : r ≃r s) :
β → α

See Note [custom simps projection].

Equations
@[protected, refl]
def rel_iso.refl {α : Type u_1} (r : α → α → Prop) :
r ≃r r

Identity map is a relation isomorphism.

Equations
@[simp]
theorem rel_iso.refl_apply {α : Type u_1} (r : α → α → Prop) (a : α) :
@[protected, trans]
def rel_iso.trans {α : Type u_1} {β : Type u_2} {γ : Type u_3} {r : α → α → Prop} {s : β → β → Prop} {t : γ → γ → Prop} (f₁ : r ≃r s) (f₂ : s ≃r t) :
r ≃r t

Composition of two relation isomorphisms is a relation isomorphism.

Equations
@[simp]
theorem rel_iso.trans_apply {α : Type u_1} {β : Type u_2} {γ : Type u_3} {r : α → α → Prop} {s : β → β → Prop} {t : γ → γ → Prop} (f₁ : r ≃r s) (f₂ : s ≃r t) (ᾰ : α) :
(f₁.trans f₂) = f₂ (f₁ ᾰ)
@[protected, instance]
def rel_iso.inhabited {α : Type u_1} (r : α → α → Prop) :
Equations
@[simp]
theorem rel_iso.default_def {α : Type u_1} (r : α → α → Prop) :
@[simp]
theorem rel_iso.cast_apply {α β : Type u} {r : α → α → Prop} {s : β → β → Prop} (h₁ : α = β) (h₂ : r == s) (a : α) :
(rel_iso.cast h₁ h₂) a = cast h₁ a
@[simp]
theorem rel_iso.cast_to_equiv {α β : Type u} {r : α → α → Prop} {s : β → β → Prop} (h₁ : α = β) (h₂ : r == s) :
@[protected]
def rel_iso.cast {α β : Type u} {r : α → α → Prop} {s : β → β → Prop} (h₁ : α = β) (h₂ : r == s) :
r ≃r s

A relation isomorphism between equal relations on equal types.

Equations
@[protected, simp]
theorem rel_iso.cast_symm {α β : Type u} {r : α → α → Prop} {s : β → β → Prop} (h₁ : α = β) (h₂ : r == s) :
@[protected, simp]
theorem rel_iso.cast_refl {α : Type u} {r : α → α → Prop} (h₁ : α = α := rfl) (h₂ : r == r := heq.rfl) :
@[protected, simp]
theorem rel_iso.cast_trans {α β γ : Type u} {r : α → α → Prop} {s : β → β → Prop} {t : γ → γ → Prop} (h₁ : α = β) (h₁' : β = γ) (h₂ : r == s) (h₂' : s == t) :
(rel_iso.cast h₁ h₂).trans (rel_iso.cast h₁' h₂') = rel_iso.cast _ _
@[protected]
def rel_iso.swap {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : r ≃r s) :

a relation isomorphism is also a relation isomorphism between dual relations.

Equations
@[simp]
theorem rel_iso.coe_fn_symm_mk {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : α β) (o : ∀ {a b : α}, s (f a) (f b) r a b) :
@[simp]
theorem rel_iso.apply_symm_apply {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (e : r ≃r s) (x : β) :
e ((e.symm) x) = x
@[simp]
theorem rel_iso.symm_apply_apply {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (e : r ≃r s) (x : α) :
(e.symm) (e x) = x
theorem rel_iso.rel_symm_apply {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (e : r ≃r s) {x : α} {y : β} :
r x ((e.symm) y) s (e x) y
theorem rel_iso.symm_apply_rel {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (e : r ≃r s) {x : β} {y : α} :
r ((e.symm) x) y s x (e y)
@[protected]
theorem rel_iso.bijective {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (e : r ≃r s) :
@[protected]
theorem rel_iso.injective {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (e : r ≃r s) :
@[protected]
theorem rel_iso.surjective {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (e : r ≃r s) :
@[simp]
theorem rel_iso.range_eq {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (e : r ≃r s) :
@[simp]
theorem rel_iso.eq_iff_eq {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : r ≃r s) {a b : α} :
f a = f b a = b
@[protected]
def rel_iso.preimage {α : Type u_1} {β : Type u_2} (f : α β) (s : β → β → Prop) :

Any equivalence lifts to a relation isomorphism between s and its preimage.

Equations
@[protected, instance]
def rel_iso.is_well_order.preimage {β : Type u_2} {α : Type u} (r : α → α → Prop) [is_well_order α r] (f : β α) :
@[protected, instance]
def rel_iso.is_well_order.ulift {α : Type u} (r : α → α → Prop) [is_well_order α r] :
@[simp]
theorem rel_iso.of_surjective_apply {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : r ↪r s) (H : function.surjective f) (ᾰ : α) :
noncomputable def rel_iso.of_surjective {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (f : r ↪r s) (H : function.surjective f) :
r ≃r s

A surjective relation embedding is a relation isomorphism.

Equations
def rel_iso.sum_lex_congr {α₁ : Type u_1} {α₂ : Type u_2} {β₁ : Type u_3} {β₂ : Type u_4} {r₁ : α₁ → α₁ → Prop} {r₂ : α₂ → α₂ → Prop} {s₁ : β₁ → β₁ → Prop} {s₂ : β₂ → β₂ → Prop} (e₁ : r₁ ≃r s₁) (e₂ : r₂ ≃r s₂) :
sum.lex r₁ r₂ ≃r sum.lex s₁ s₂

Given relation isomorphisms r₁ ≃r s₁ and r₂ ≃r s₂, construct a relation isomorphism for the lexicographic orders on the sum.

Equations
def rel_iso.prod_lex_congr {α₁ : Type u_1} {α₂ : Type u_2} {β₁ : Type u_3} {β₂ : Type u_4} {r₁ : α₁ → α₁ → Prop} {r₂ : α₂ → α₂ → Prop} {s₁ : β₁ → β₁ → Prop} {s₂ : β₂ → β₂ → Prop} (e₁ : r₁ ≃r s₁) (e₂ : r₂ ≃r s₂) :
prod.lex r₁ r₂ ≃r prod.lex s₁ s₂

Given relation isomorphisms r₁ ≃r s₁ and r₂ ≃r s₂, construct a relation isomorphism for the lexicographic orders on the product.

Equations
@[protected, instance]
def rel_iso.group {α : Type u_1} {r : α → α → Prop} :
group (r ≃r r)
Equations
@[simp]
theorem rel_iso.coe_one {α : Type u_1} {r : α → α → Prop} :
@[simp]
theorem rel_iso.coe_mul {α : Type u_1} {r : α → α → Prop} (e₁ e₂ : r ≃r r) :
(e₁ * e₂) = e₁ e₂
theorem rel_iso.mul_apply {α : Type u_1} {r : α → α → Prop} (e₁ e₂ : r ≃r r) (x : α) :
(e₁ * e₂) x = e₁ (e₂ x)
@[simp]
theorem rel_iso.inv_apply_self {α : Type u_1} {r : α → α → Prop} (e : r ≃r r) (x : α) :
e⁻¹ (e x) = x
@[simp]
theorem rel_iso.apply_inv_self {α : Type u_1} {r : α → α → Prop} (e : r ≃r r) (x : α) :
e (e⁻¹ x) = x
def rel_iso.rel_iso_of_is_empty {α : Type u_1} {β : Type u_2} (r : α → α → Prop) (s : β → β → Prop) [is_empty α] [is_empty β] :
r ≃r s

Two relations on empty types are isomorphic.

Equations
def rel_iso.rel_iso_of_unique_of_irrefl {α : Type u_1} {β : Type u_2} (r : α → α → Prop) (s : β → β → Prop) [is_irrefl α r] [is_irrefl β s] [unique α] [unique β] :
r ≃r s

Two irreflexive relations on a unique type are isomorphic.

Equations
def rel_iso.rel_iso_of_unique_of_refl {α : Type u_1} {β : Type u_2} (r : α → α → Prop) (s : β → β → Prop) [is_refl α r] [is_refl β s] [unique α] [unique β] :
r ≃r s

Two reflexive relations on a unique type are isomorphic.

Equations
def subrel {α : Type u_1} (r : α → α → Prop) (p : set α) :
p → p → Prop

subrel r p is the inherited relation on a subset.

Equations
Instances for subrel
@[simp]
theorem subrel_val {α : Type u_1} (r : α → α → Prop) (p : set α) {a b : p} :
subrel r p a b r a.val b.val
@[protected]
def subrel.rel_embedding {α : Type u_1} (r : α → α → Prop) (p : set α) :
subrel r p ↪r r

The relation embedding from the inherited relation on a subset.

Equations
@[simp]
theorem subrel.rel_embedding_apply {α : Type u_1} (r : α → α → Prop) (p : set α) (a : p) :
@[protected, instance]
def subrel.is_well_order {α : Type u_1} (r : α → α → Prop) [is_well_order α r] (p : set α) :
@[protected, instance]
def subrel.is_refl {α : Type u_1} (r : α → α → Prop) [is_refl α r] (p : set α) :
@[protected, instance]
def subrel.is_symm {α : Type u_1} (r : α → α → Prop) [is_symm α r] (p : set α) :
@[protected, instance]
def subrel.is_trans {α : Type u_1} (r : α → α → Prop) [is_trans α r] (p : set α) :
@[protected, instance]
def subrel.is_irrefl {α : Type u_1} (r : α → α → Prop) [is_irrefl α r] (p : set α) :
def rel_embedding.cod_restrict {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (p : set β) (f : r ↪r s) (H : ∀ (a : α), f a p) :
r ↪r subrel s p

Restrict the codomain of a relation embedding.

Equations
@[simp]
theorem rel_embedding.cod_restrict_apply {α : Type u_1} {β : Type u_2} {r : α → α → Prop} {s : β → β → Prop} (p : set β) (f : r ↪r s) (H : ∀ (a : α), f a p) (a : α) :