mathlib documentation

logic.function.conjugate

Semiconjugate and commuting maps #

We define the following predicates:

def function.semiconj {α : Type u_1} {β : Type u_2} (f : α → β) (ga : α → α) (gb : β → β) :
Prop

We say that f : α → β semiconjugates ga : α → α to gb : β → β if f ∘ ga = gb ∘ f. We use ∀ x, f (ga x) = gb (f x) as the definition, so given h : function.semiconj f ga gb and a : α, we have h a : f (ga a) = gb (f a) and h.comp_eq : f ∘ ga = gb ∘ f.

Equations
@[protected]
theorem function.semiconj.comp_eq {α : Type u_1} {β : Type u_2} {f : α → β} {ga : α → α} {gb : β → β} (h : function.semiconj f ga gb) :
f ga = gb f
@[protected]
theorem function.semiconj.eq {α : Type u_1} {β : Type u_2} {f : α → β} {ga : α → α} {gb : β → β} (h : function.semiconj f ga gb) (x : α) :
f (ga x) = gb (f x)
theorem function.semiconj.comp_right {α : Type u_1} {β : Type u_2} {f : α → β} {ga ga' : α → α} {gb gb' : β → β} (h : function.semiconj f ga gb) (h' : function.semiconj f ga' gb') :
function.semiconj f (ga ga') (gb gb')
theorem function.semiconj.comp_left {α : Type u_1} {β : Type u_2} {γ : Type u_3} {fab : α → β} {fbc : β → γ} {ga : α → α} {gb : β → β} {gc : γ → γ} (hab : function.semiconj fab ga gb) (hbc : function.semiconj fbc gb gc) :
function.semiconj (fbc fab) ga gc
theorem function.semiconj.id_right {α : Type u_1} {β : Type u_2} {f : α → β} :
theorem function.semiconj.id_left {α : Type u_1} {ga : α → α} :
theorem function.semiconj.inverses_right {α : Type u_1} {β : Type u_2} {f : α → β} {ga ga' : α → α} {gb gb' : β → β} (h : function.semiconj f ga gb) (ha : function.right_inverse ga' ga) (hb : function.left_inverse gb' gb) :
def function.commute {α : Type u_1} (f g : α → α) :
Prop

Two maps f g : α → α commute if f (g x) = g (f x) for all x : α. Given h : function.commute f g and a : α, we have h a : f (g a) = g (f a) and h.comp_eq : f ∘ g = g ∘ f.

Equations
theorem function.semiconj.commute {α : Type u_1} {f g : α → α} (h : function.semiconj f g g) :
theorem function.commute.refl {α : Type u_1} (f : α → α) :
theorem function.commute.symm {α : Type u_1} {f g : α → α} (h : function.commute f g) :
theorem function.commute.comp_right {α : Type u_1} {f g g' : α → α} (h : function.commute f g) (h' : function.commute f g') :
theorem function.commute.comp_left {α : Type u_1} {f f' g : α → α} (h : function.commute f g) (h' : function.commute f' g) :
theorem function.commute.id_right {α : Type u_1} {f : α → α} :
theorem function.commute.id_left {α : Type u_1} {f : α → α} :
def function.semiconj₂ {α : Type u_1} {β : Type u_2} (f : α → β) (ga : α → α → α) (gb : β → β → β) :
Prop

A map f semiconjugates a binary operation ga to a binary operation gb if for all x, y we have f (ga x y) = gb (f x) (f y). E.g., a monoid_hom semiconjugates (*) to (*).

Equations
@[protected]
theorem function.semiconj₂.eq {α : Type u_1} {β : Type u_2} {f : α → β} {ga : α → α → α} {gb : β → β → β} (h : function.semiconj₂ f ga gb) (x y : α) :
f (ga x y) = gb (f x) (f y)
@[protected]
theorem function.semiconj₂.comp_eq {α : Type u_1} {β : Type u_2} {f : α → β} {ga : α → α → α} {gb : β → β → β} (h : function.semiconj₂ f ga gb) :
theorem function.semiconj₂.id_left {α : Type u_1} (op : α → α → α) :
theorem function.semiconj₂.comp {α : Type u_1} {β : Type u_2} {γ : Type u_3} {f : α → β} {ga : α → α → α} {gb : β → β → β} {f' : β → γ} {gc : γ → γ → γ} (hf' : function.semiconj₂ f' gb gc) (hf : function.semiconj₂ f ga gb) :
theorem function.semiconj₂.is_associative_right {α : Type u_1} {β : Type u_2} {f : α → β} {ga : α → α → α} {gb : β → β → β} [is_associative α ga] (h : function.semiconj₂ f ga gb) (h_surj : function.surjective f) :
theorem function.semiconj₂.is_associative_left {α : Type u_1} {β : Type u_2} {f : α → β} {ga : α → α → α} {gb : β → β → β} [is_associative β gb] (h : function.semiconj₂ f ga gb) (h_inj : function.injective f) :
theorem function.semiconj₂.is_idempotent_right {α : Type u_1} {β : Type u_2} {f : α → β} {ga : α → α → α} {gb : β → β → β} [is_idempotent α ga] (h : function.semiconj₂ f ga gb) (h_surj : function.surjective f) :
theorem function.semiconj₂.is_idempotent_left {α : Type u_1} {β : Type u_2} {f : α → β} {ga : α → α → α} {gb : β → β → β} [is_idempotent β gb] (h : function.semiconj₂ f ga gb) (h_inj : function.injective f) :