Documentation

Mathlib.GroupTheory.Subgroup.Centralizer

Centralizers of subgroups #

def Subgroup.centralizer {G : Type u_1} [Group G] (s : Set G) :

The centralizer of s is the subgroup of g : G commuting with every h : s.

Equations
Instances For
    def AddSubgroup.centralizer {G : Type u_1} [AddGroup G] (s : Set G) :

    The centralizer of s is the additive subgroup of g : G commuting with every h : s.

    Equations
    Instances For
      theorem Subgroup.mem_centralizer_iff {G : Type u_1} [Group G] {g : G} {s : Set G} :
      g ∈ centralizer s ↔ ∀ h ∈ s, h * g = g * h
      theorem AddSubgroup.mem_centralizer_iff {G : Type u_1} [AddGroup G] {g : G} {s : Set G} :
      g ∈ centralizer s ↔ ∀ h ∈ s, h + g = g + h
      theorem Subgroup.mem_centralizer_iff_commutator_eq_one {G : Type u_1} [Group G] {g : G} {s : Set G} :
      g ∈ centralizer s ↔ ∀ h ∈ s, ⁅h, g⁆ = 1
      theorem AddSubgroup.mem_centralizer_iff_addCommutator_eq_zero {G : Type u_1} [AddGroup G] {g : G} {s : Set G} :
      g ∈ centralizer s ↔ ∀ h ∈ s, ⁅h, g⁆ = 0
      theorem Subgroup.mem_centralizer_iff_commutator_eq_one' {G : Type u_1} [Group G] {g : G} {s : Set G} :
      g ∈ centralizer s ↔ ∀ h ∈ s, ⁅g, h⁆ = 1
      theorem AddSubgroup.mem_centralizer_iff_addCommutator_eq_zero' {G : Type u_1} [AddGroup G] {g : G} {s : Set G} :
      g ∈ centralizer s ↔ ∀ h ∈ s, ⁅g, h⁆ = 0
      theorem Subgroup.mem_centralizer_singleton_iff {G : Type u_1} [Group G] {g k : G} :
      k ∈ centralizer {g} ↔ k * g = g * k
      theorem Subgroup.le_centralizer_iff {G : Type u_1} [Group G] {H K : Subgroup G} :
      theorem Subgroup.centralizer_le {G : Type u_1} [Group G] {s t : Set G} (h : s ⊆ t) :
      theorem AddSubgroup.centralizer_le {G : Type u_1} [AddGroup G] {s t : Set G} (h : s ⊆ t) :
      @[simp]
      theorem Subgroup.centralizer_eq_top_iff_subset {G : Type u_1} [Group G] {s : Set G} :
      centralizer s = ⊤ ↔ s ⊆ ↑(center G)
      @[simp]
      theorem AddSubgroup.centralizer_eq_top_iff_subset {G : Type u_1} [AddGroup G] {s : Set G} :
      centralizer s = ⊤ ↔ s ⊆ ↑(center G)
      @[simp]
      theorem Subgroup.map_centralizer_le_centralizer_image {G : Type u_1} {G' : Type u_2} [Group G] [Group G'] (s : Set G) (f : G →* G') :
      theorem AddSubgroup.map_centralizer_le_centralizer_image {G : Type u_1} {G' : Type u_2} [AddGroup G] [AddGroup G'] (s : Set G) (f : G →+ G') :
      instance Subgroup.normal_centralizer {G : Type u_1} [Group G] {H : Subgroup G} [H.Normal] :
      theorem Subgroup.le_centralizer {G : Type u_1} [Group G] (H : Subgroup G) [h : IsMulCommutative ↥H] :
      theorem Subgroup.centralizer_eq_iInf {G : Type u_1} [Group G] (s : Set G) :
      centralizer s = ⨅ g ∈ s, centralizer {g}
      theorem AddSubgroup.centralizer_eq_iInf {G : Type u_1} [AddGroup G] (s : Set G) :
      centralizer s = ⨅ g ∈ s, centralizer {g}
      theorem Subgroup.center_eq_iInf {G : Type u_1} [Group G] {s : Set G} (hs : closure s = ⊤) :
      center G = ⨅ g ∈ s, centralizer {g}
      theorem AddSubgroup.center_eq_iInf {G : Type u_1} [AddGroup G] {s : Set G} (hs : closure s = ⊤) :
      center G = ⨅ g ∈ s, centralizer {g}
      theorem Subgroup.center_eq_infi' {G : Type u_1} [Group G] {s : Set G} (hs : closure s = ⊤) :
      center G = ⨅ (g : ↑s), centralizer {↑g}
      theorem AddSubgroup.center_eq_infi' {G : Type u_1} [AddGroup G] {s : Set G} (hs : closure s = ⊤) :
      center G = ⨅ (g : ↑s), centralizer {↑g}
      theorem Subgroup.isMulCommutative_closure {G : Type u_1} [Group G] {k : Set G} (hcomm : ∀ x ∈ k, ∀ y ∈ k, x * y = y * x) :

      If all the elements of a set s commute, then closure s is a commutative group.

      theorem AddSubgroup.isAddCommutative_closure {G : Type u_1} [AddGroup G] {k : Set G} (hcomm : ∀ x ∈ k, ∀ y ∈ k, x + y = y + x) :

      If all the elements of a set s commute, then closure s is an additive commutative group.

      @[reducible, inline, deprecated Subgroup.isMulCommutative_closure (since := "2026-03-10")]
      abbrev Subgroup.closureCommGroupOfComm {G : Type u_1} [Group G] {k : Set G} (hcomm : ∀ x ∈ k, ∀ y ∈ k, x * y = y * x) :

      If all the elements of a set s commute, then closure s is a commutative group.

      Equations
      Instances For
        @[reducible, inline, deprecated AddSubgroup.isAddCommutative_closure (since := "2026-03-10")]
        abbrev AddSubgroup.closureAddCommGroupOfComm {G : Type u_1} [AddGroup G] {k : Set G} (hcomm : ∀ x ∈ k, ∀ y ∈ k, x + y = y + x) :

        If all the elements of a set s commute, then closure s is an additive commutative group.

        Equations
        Instances For
          instance Subgroup.instIsMulCommutative_closure {G : Type u_1} [Group G] {S : Type u_3} [SetLike S G] [MulMemClass S G] (s : S) [IsMulCommutative ↥s] :
          @[instance_reducible]

          The conjugation action of N(H) on H.

          Equations
          @[simp]
          theorem Subgroup.smul_coe {G : Type u_1} [Group G] (H : Subgroup G) (g : ↥(normalizer ↑H)) (h : ↥H) :
          ↑(SMul.smul g h) = ↑g * ↑h * ↑g⁻¹
          def Subgroup.normalizerMonoidHom {G : Type u_1} [Group G] (H : Subgroup G) :
          ↥(normalizer ↑H) →* MulAut ↥H

          The homomorphism N(H) → Aut(H) with kernel C(H).

          Equations
          Instances For
            @[simp]
            theorem Subgroup.normalizerMonoidHom_apply_symm_apply_coe {G : Type u_1} [Group G] (H : Subgroup G) (x : ↥(normalizer ↑H)) (a✝ : ↥H) :
            ↑((MulEquiv.symm (H.normalizerMonoidHom x)) a✝) = (↑x)⁻¹ * ↑a✝ * ↑x
            @[simp]
            theorem Subgroup.normalizerMonoidHom_apply_apply_coe {G : Type u_1} [Group G] (H : Subgroup G) (x : ↥(normalizer ↑H)) (a✝ : ↥H) :
            ↑((H.normalizerMonoidHom x) a✝) = ↑x * ↑a✝ * (↑x)⁻¹