Centralizers in semigroups, as subsemigroups. #
Main definitions #
Subsemigroup.centralizer
: the centralizer of a subset of a semigroupAddSubsemigroup.centralizer
: the centralizer of a subset of an additive semigroup
We provide Monoid.centralizer
, AddMonoid.centralizer
, Subgroup.centralizer
, and
AddSubgroup.centralizer
in other files.
The centralizer of a subset of a semigroup M
.
Equations
- Subsemigroup.centralizer S = { carrier := S.centralizer, mul_mem' := ⋯ }
Instances For
The centralizer of a subset of an additive semigroup.
Equations
- AddSubsemigroup.centralizer S = { carrier := S.addCentralizer, add_mem' := ⋯ }
Instances For
@[simp]
theorem
Subsemigroup.coe_centralizer
{M : Type u_1}
(S : Set M)
[Semigroup M]
:
↑(centralizer S) = S.centralizer
@[simp]
theorem
AddSubsemigroup.coe_centralizer
{M : Type u_1}
(S : Set M)
[AddSemigroup M]
:
↑(centralizer S) = S.addCentralizer
instance
Subsemigroup.decidableMemCentralizer
{M : Type u_1}
{S : Set M}
[Semigroup M]
(a : M)
[Decidable (∀ b ∈ S, b * a = a * b)]
:
Decidable (a ∈ centralizer S)
Equations
- Subsemigroup.decidableMemCentralizer a = decidable_of_iff' (∀ g ∈ S, g * a = a * g) ⋯
instance
AddSubsemigroup.decidableMemCentralizer
{M : Type u_1}
{S : Set M}
[AddSemigroup M]
(a : M)
[Decidable (∀ b ∈ S, b + a = a + b)]
:
Decidable (a ∈ centralizer S)
Equations
- AddSubsemigroup.decidableMemCentralizer a = decidable_of_iff' (∀ g ∈ S, g + a = a + g) ⋯
theorem
Subsemigroup.center_le_centralizer
{M : Type u_1}
[Semigroup M]
(S : Set M)
:
center M ≤ centralizer S
theorem
AddSubsemigroup.center_le_centralizer
{M : Type u_1}
[AddSemigroup M]
(S : Set M)
:
center M ≤ centralizer S
theorem
Subsemigroup.centralizer_le
{M : Type u_1}
{S T : Set M}
[Semigroup M]
(h : S ⊆ T)
:
centralizer T ≤ centralizer S
theorem
AddSubsemigroup.centralizer_le
{M : Type u_1}
{S T : Set M}
[AddSemigroup M]
(h : S ⊆ T)
:
centralizer T ≤ centralizer S
@[simp]
@[simp]
@[simp]
theorem
Subsemigroup.closure_le_centralizer_centralizer
{M : Type u_1}
[Semigroup M]
(s : Set M)
:
closure s ≤ centralizer ↑(centralizer s)
theorem
AddSubsemigroup.closure_le_centralizer_centralizer
{M : Type u_1}
[AddSemigroup M]
(s : Set M)
:
closure s ≤ centralizer ↑(centralizer s)
@[reducible, inline]
abbrev
Subsemigroup.closureCommSemigroupOfComm
(M : Type u_1)
[Semigroup M]
{s : Set M}
(hcomm : ∀ a ∈ s, ∀ b ∈ s, a * b = b * a)
:
CommSemigroup ↥(closure s)
If all the elements of a set s
commute, then closure s
is a commutative semigroup.
Equations
Instances For
@[reducible, inline]
abbrev
AddSubsemigroup.closureAddCommSemigroupOfComm
(M : Type u_1)
[AddSemigroup M]
{s : Set M}
(hcomm : ∀ a ∈ s, ∀ b ∈ s, a + b = b + a)
:
AddCommSemigroup ↥(closure s)
If all the elements of a set s
commute, then closure s
forms an additive
commutative semigroup.