Documentation

Mathlib.GroupTheory.Subsemigroup.Center

Centers of semigroups, as subsemigroups. #

Main definitions #

We provide Submonoid.center, AddSubmonoid.center, Subgroup.center, AddSubgroup.center, Subsemiring.center, and Subring.center in other files.

References #

Set.center as a Subsemigroup. #

def Subsemigroup.center (M : Type u_1) [Mul M] :

The center of a semigroup M is the set of elements that commute with everything in M

Instances For

    The center of an additive semigroup M is the set of elements that commute with everything in M

    Instances For
      @[implicit_reducible]
      instance Subsemigroup.center.commSemigroup {M : Type u_1} [Mul M] :

      The center of a magma is commutative and associative.

      @[implicit_reducible]

      The center of an additive magma is commutative and associative.

      theorem Subsemigroup.mem_center_iff {M : Type u_1} [Semigroup M] {z : M} :
      z ∈ center M ↔ βˆ€ (g : M), g * z = z * g
      theorem AddSubsemigroup.mem_center_iff {M : Type u_1} [AddSemigroup M] {z : M} :
      z ∈ center M ↔ βˆ€ (g : M), g + z = z + g
      @[implicit_reducible]
      instance Subsemigroup.decidableMemCenter {M : Type u_1} [Semigroup M] (a : M) [Decidable (βˆ€ (b : M), b * a = a * b)] :
      Decidable (a ∈ center M)
      @[implicit_reducible]
      instance AddSubsemigroup.decidableMemCenter {M : Type u_1} [AddSemigroup M] (a : M) [Decidable (βˆ€ (b : M), b + a = a + b)] :
      Decidable (a ∈ center M)