ProCGroups.FiniteStepSolvableQuotients.Commutators.DerivedSeriesAndQuotients

19 Theorem | 13 Lemma | 3 Definition | 6 Abbreviation | 3 Instance

This module studies derived series and quotients for pro cgroups. Closed-map properties descend to the restriction to a subgroup preimage. If the image of a subgroup is contained in a closed subgroup, then the image of its closure is contained there as well.

import
Imported by

Declarations

lemma restrictPreimage_isClosedMap_of_isClosedMap
    {G : Type u} [TopologicalSpace G] [Group G]
    {Q : Type v} [TopologicalSpace Q] [Group Q]
    (π : G →ₜ* Q) (Q₁ : Subgroup Q)
    (hπ : IsClosedMap π)
    (hQ₁ : IsClosed (Q₁ : Set Q)) :
    IsClosedMap (π.restrictPreimage Q₁)

Closed-map properties descend to the restriction to a subgroup preimage.

Show proof
lemma map_closure_le_of_map_le
    {G : Type u} [TopologicalSpace G] [Group G] [IsTopologicalGroup G]
    {Q : Type v} [TopologicalSpace Q] [Group Q]
    {G₁ : Subgroup G} {Q₁ : Subgroup Q} {f : G →ₜ* Q}
    (h₁ : G₁.map (f : G →* Q) ≤ Q₁)
    (hclosed : IsClosed (Q₁ : Set Q)) :
    (G₁.topologicalClosure).map (f : G →* Q) ≤ Q₁

If the image of a subgroup is contained in a closed subgroup, then the image of its closure is contained there as well.

Show proof
lemma map_closure_le_closure
    {G : Type u} [TopologicalSpace G] [Group G] [IsTopologicalGroup G]
    {Q : Type v} [TopologicalSpace Q] [Group Q] [IsTopologicalGroup Q]
    {G₁ : Subgroup G} {Q₁ : Subgroup Q} (f : G →ₜ* Q)
    (h₁ : G₁.map (f : G →* Q) ≤ Q₁) :
    (G₁.topologicalClosure).map (f : G →* Q) ≤ Q₁.topologicalClosure

The image of a closure is contained in the closure of the image.

Show proof
lemma isClosed_map_of_isClosedMap
    {G : Type u} [TopologicalSpace G] [Group G]
    {H : Type v} [TopologicalSpace H] [Group H]
    (f : G →ₜ* H) (hclosed : IsClosedMap f)
    (K : Subgroup G) (hK : IsClosed (K : Set G)) :
    IsClosed (((K.map (f : G →* H) : Subgroup H) : Set H))

Closed maps send closed subgroups to closed images.

Show proof
lemma ker_map_eq_bot_of_comap_eq
    {G : Type u} [Group G]
    {H : Type v} [Group H]
    {N : Subgroup G} {M : Subgroup H} [N.Normal] [M.Normal]
    (f : G →* H) (h : N ≤ M.comap f) (hcomap : M.comap f = N) :
    (QuotientGroup.map (N := N) (M := M) (f := f) h).ker = ⊥

The kernel of the induced map is trivial under the stated comap equality hypothesis.

Show proof
theorem isMulTorsionFree
    {M : Type u} [Monoid M]
    {N : Type v} [Monoid N]
    (e : M ≃* N) [IsMulTorsionFree M] :
    IsMulTorsionFree N

Multiplicative equivalences transport torsion-freeness.

Show proof
abbrev closedCommutator
    {G : Type u} [TopologicalSpace G] [Group G] [IsTopologicalGroup G]
    (H K : Subgroup G) : Subgroup G :=
  (⁅H, K⁆).topologicalClosure

The closed commutator subgroup of a topological group.

def closedDerivedSeries
    {G : Type u} [TopologicalSpace G] [Group G] [IsTopologicalGroup G]
    (K : Subgroup G) : ℕ → Subgroup G
  | 0 => K
  | n + 1 => closedCommutator (closedDerivedSeries K n) (closedDerivedSeries K n)

The closed derived series starting from a subgroup.

abbrev topDerivedTop
    (G : Type u) [TopologicalSpace G] [Group G] [IsTopologicalGroup G]
    (m : ℕ) : Subgroup G :=
  closedDerivedSeries (G := G) (⊤ : Subgroup G) m

The top-derived subgroup is defined through the corresponding closed commutator construction.

instance topDerivedTop_isClosedInst
    {G : Type u} [TopologicalSpace G] [Group G] [IsTopologicalGroup G]
    {m : ℕ} :
    IsClosed (topDerivedTop G m : Set G) := by
  cases m with
  | zero =>
      change IsClosed ((⊤ : Subgroup G) : Set G)
      exact isClosed_univ
  | succ m =>
      simp only [topDerivedTop, closedDerivedSeries, closedCommutator]
      exact isClosed_closure

The top-derived subgroup is defined through the corresponding closed commutator construction.

instance topDerivedTop_normalInst
    {G : Type u} [TopologicalSpace G] [Group G] [IsTopologicalGroup G]
    {m : ℕ} :
    (topDerivedTop G m).Normal := by
  induction m with
  | zero =>
      simpa [topDerivedTop] using (inferInstance : (⊤ : Subgroup G).Normal)
  | succ m ihm =>
      dsimp [topDerivedTop, closedDerivedSeries, closedCommutator]
      letI : (topDerivedTop G m).Normal := ihm
      exact Subgroup.is_normal_topologicalClosure ⁅topDerivedTop G m, topDerivedTop G m⁆

The top-derived subgroup is defined through the corresponding closed commutator construction.

abbrev MaxSolvQuot
    (G : Type u) [TopologicalSpace G] [Group G] [IsTopologicalGroup G]
    (m : ℕ) : Type u :=
  G ⧸ topDerivedTop G m

The quotient by the mth closed derived subgroup.

abbrev toMaxSolvQuot
    (G : Type u) [TopologicalSpace G] [Group G] [IsTopologicalGroup G]
    (m : ℕ) :
    G →* MaxSolvQuot G m :=
  QuotientGroup.mk' (topDerivedTop G m)

The natural quotient map to the maximal \(m\)-step solvable quotient.

abbrev continuousToMaxSolvQuot
    (G : Type u) [TopologicalSpace G] [Group G] [IsTopologicalGroup G]
    (m : ℕ) :
    G →ₜ* MaxSolvQuot G m :=
  { toMonoidHom := toMaxSolvQuot G m
    continuous_toFun := continuous_quotient_mk' }

The natural quotient map as a continuous homomorphism.

abbrev preimageOpenSubgroup
    {G : Type u} [TopologicalSpace G] [Group G]
    {Q : Type v} [TopologicalSpace Q] [Group Q]
    (f : G →ₜ* Q) (H : OpenSubgroup Q) : OpenSubgroup G :=
  OpenSubgroup.comap (f := (f : G →* Q)) f.continuous H

scoped[ProCGroupsSolvableQuotients] notation "⁅" H "," K "⁆ₜ" =>
  ProCGroups.FiniteStepSolvableQuotients.closedCommutator H K
scoped[ProCGroupsSolvableQuotients] notation G "⟦" m "⟧ₜ" =>
  ProCGroups.FiniteStepSolvableQuotients.topDerivedTop G m
scoped[ProCGroupsSolvableQuotients] notation G "^ₘ" m =>
  ProCGroups.FiniteStepSolvableQuotients.MaxSolvQuot G m

The preimage open subgroup induced by a continuous homomorphism.

@[simp] lemma closedDerivedSeries_zero
    {G : Type u} [TopologicalSpace G] [Group G] [IsTopologicalGroup G]
    (K : Subgroup G) :
    closedDerivedSeries (G := G) K 0 = K

The zeroth closed derived subgroup is the whole topological group.

Show proof
@[simp] lemma closedDerivedSeries_succ
    {G : Type u} [TopologicalSpace G] [Group G] [IsTopologicalGroup G]
    (K : Subgroup G) (n : ℕ) :
    closedDerivedSeries (G := G) K (n + 1) =
      ⁅closedDerivedSeries (G := G) K n, closedDerivedSeries (G := G) K n⁆ₜ

The successor closed derived subgroup is the closed commutator subgroup of the previous derived stage.

Show proof
@[simp] lemma topDerivedTop_zero
    {G : Type u} [TopologicalSpace G] [Group G] [IsTopologicalGroup G] :
    G⟦0⟧ₜ = (⊤ : Subgroup G)

The zeroth term of the ambient closed derived series is the whole ambient group.

Show proof
@[simp] lemma topDerivedTop_succ
    {G : Type u} [TopologicalSpace G] [Group G] [IsTopologicalGroup G]
    (n : ℕ) :
    G⟦n + 1⟧ₜ = ⁅G⟦n⟧ₜ, G⟦n⟧ₜ⁆ₜ

The successor term of the ambient closed derived series is the closed commutator subgroup of the previous term.

Show proof
theorem closedCommutator_map_mono
    {G : Type u} [TopologicalSpace G] [Group G] [IsTopologicalGroup G]
    {Q : Type v} [TopologicalSpace Q] [Group Q] [IsTopologicalGroup Q]
    {G₁ G₂ : Subgroup G} {Q₁ Q₂ : Subgroup Q} {f : G →ₜ* Q}
    (h₁ : G₁.map (f : G →* Q) ≤ Q₁)
    (h₂ : G₂.map (f : G →* Q) ≤ Q₂) :
    (⁅G₁, G₂⁆ₜ).map (f : G →* Q) ≤ ⁅Q₁, Q₂⁆ₜ

Closed commutators map monotonically under continuous homomorphisms.

Show proof
lemma commutator_le_map_closedCommutator
    {G : Type u} [TopologicalSpace G] [Group G] [IsTopologicalGroup G]
    {Q : Type v} [Group Q]
    (φ : G →* Q)
    {G₁ G₂ : Subgroup G} {Q₁ Q₂ : Subgroup Q}
    (h₁ : Q₁ ≤ G₁.map φ) (h₂ : Q₂ ≤ G₂.map φ) :
    ⁅Q₁, Q₂⁆ ≤ (⁅G₁, G₂⁆ₜ).map φ

If target subgroups lie in the corresponding images, then their commutator lies in the image of the source closed commutator.

Show proof
theorem map_closedCommutator_eq_of_map_eq
    {G : Type u} [TopologicalSpace G] [Group G] [IsTopologicalGroup G]
    {Q : Type v} [TopologicalSpace Q] [Group Q] [IsTopologicalGroup Q]
    {G₁ G₂ : Subgroup G} {Q₁ Q₂ : Subgroup Q} {f : G →ₜ* Q}
    (h₁ : G₁.map (f : G →* Q) = Q₁)
    (h₂ : G₂.map (f : G →* Q) = Q₂)
    (hclosed : IsClosed (((⁅G₁, G₂⁆ₜ).map (f : G →* Q) : Subgroup Q) : Set Q)) :
    (⁅G₁, G₂⁆ₜ).map (f : G →* Q) = ⁅Q₁, Q₂⁆ₜ

The map carries the closed commutator subgroup to the corresponding closed commutator subgroup under the stated equality hypothesis.

Show proof
theorem closedCommutator_topologicallyCharacteristic
    {G : Type u} [TopologicalSpace G] [Group G] [IsTopologicalGroup G]
    (G₁ G₂ : Subgroup G)
    (h₁ : G₁.TopologicallyCharacteristic)
    (h₂ : G₂.TopologicallyCharacteristic) :
    (⁅G₁, G₂⁆ₜ).TopologicallyCharacteristic

Closed commutators of topologically characteristic subgroups are again topologically characteristic.

Show proof
@[simp] lemma topDerived_add
    {G : Type u} [TopologicalSpace G] [Group G] [IsTopologicalGroup G]
    (m n : ℕ) :
    closedDerivedSeries (G := G) (G⟦m⟧ₜ) n = G⟦m + n⟧ₜ

Restarting the ambient closed derived series adds indices.

Show proof
theorem topDerivedTop_antitone
    {G : Type u} [TopologicalSpace G] [Group G] [IsTopologicalGroup G] :
    Antitone (topDerivedTop G)

The ambient closed derived series is antitone.

Show proof
instance topDerivedTop_topologicallyCharacteristicInst
    {G : Type u} [TopologicalSpace G] [Group G] [IsTopologicalGroup G]
    {m : ℕ} :
    (topDerivedTop G m).TopologicallyCharacteristic := by
  induction m with
  | zero =>
      refine ⟨?_⟩
      intro e
      simp only [ContinuousMulEquiv.toMulEquiv_eq_coe, MulEquiv.toMonoidHom_eq_coe, topDerivedTop,
  closedDerivedSeries_zero, Subgroup.comap_top]
  | succ m ihm =>
      simpa [topDerivedTop, closedDerivedSeries] using
        closedCommutator_topologicallyCharacteristic
          (G₁ := G⟦m⟧ₜ) (G₂ := G⟦m⟧ₜ) ihm ihm

Every stage of the ambient closed derived series is topologically characteristic.

theorem topDerived_map_le
    {G : Type u} [TopologicalSpace G] [Group G] [IsTopologicalGroup G]
    {Q : Type v} [TopologicalSpace Q] [Group Q] [IsTopologicalGroup Q]
    (f : G →ₜ* Q) (m : ℕ) :
    (G⟦m⟧ₜ).map (f : G →* Q) ≤ Q⟦m⟧ₜ

The closed derived series is monotone under continuous homomorphisms.

Show proof
lemma topDerivedTop_le_comap
    {G : Type u} [TopologicalSpace G] [Group G] [IsTopologicalGroup G]
    {Q : Type v} [TopologicalSpace Q] [Group Q] [IsTopologicalGroup Q]
    (f : G →ₜ* Q) (m : ℕ) :
    G⟦m⟧ₜ ≤ (Q⟦m⟧ₜ).comap (f : G →* Q)

The ambient closed derived series pulls back along continuous homomorphisms.

Show proof
theorem mem_topDerived_one_of_mem_topDerived_of_le
    {G : Type u} [TopologicalSpace G] [Group G] [IsTopologicalGroup G]
    {K : Subgroup G} {m : ℕ} (hm : 1 ≤ m)
    (hK : G⟦m - 1⟧ₜ ≤ K)
    {x : G} (hx : x ∈ G⟦m⟧ₜ) :
    x ∈ closedDerivedSeries (G := G) K 1

A point in the ambient \(m\)-th derived subgroup lies in the first derived subgroup of any larger subgroup containing the \((m-1)\)-st derived term.

Show proof
theorem topDerived_one_map_subtype_eq_of_isClosed_subgroup
    {G : Type u} [TopologicalSpace G] [Group G] [IsTopologicalGroup G]
    {H : Subgroup G} {K : Subgroup H} (hH : IsClosed (H : Set G)) :
    (closedDerivedSeries (G := H) K 1).map H.subtype =
      closedDerivedSeries (G := G) (K.map H.subtype) 1

The first derived subgroup of a closed subgroup maps back to the corresponding subgroup of the ambient group.

Show proof
theorem topDerived_map_eq_of_surj
    {G : Type u} [TopologicalSpace G] [Group G] [IsTopologicalGroup G]
    {H : Type v} [TopologicalSpace H] [Group H] [IsTopologicalGroup H]
    (f : G →ₜ* H) (hf : Function.Surjective f)
    (hclosed_comm :
      ∀ n : ℕ,
        IsClosed (((⁅G⟦n⟧ₜ, G⟦n⟧ₜ⁆ₜ).map (f : G →* H) : Subgroup H) : Set H))
    (n : ℕ) :
    (G⟦n⟧ₜ).map (f : G →* H) = H⟦n⟧ₜ

Surjective maps identify the stagewise closed derived subgroups once the commutator images are closed.

Show proof
theorem closedCommutator_topDerived_map_isClosed_of_compact
    {G H : Type u} [TopologicalSpace G] [Group G] [IsTopologicalGroup G]
    [CompactSpace G] [TopologicalSpace H] [Group H] [T2Space H]
    (f : G →ₜ* H) (n : ℕ) :
    IsClosed
      (((closedCommutator (topDerivedTop G n) (topDerivedTop G n)).map
        (f : G →* H) : Subgroup H) : Set H)

Images of closed commutators of derived terms are closed when the source is compact and the target is Hausdorff.

Show proof
theorem closedDerivedSeries_mono
    {G : Type u} [TopologicalSpace G] [Group G] [IsTopologicalGroup G]
    {K L : Subgroup G} (hKL : K ≤ L) (n : ℕ) :
    closedDerivedSeries (G := G) K n ≤ closedDerivedSeries (G := G) L n

The closed derived series is monotone in the initial subgroup.

Show proof
theorem topDerived_map_subtype_eq_closedDerivedSeries_of_isClosed_subgroup
    {G : Type u} [TopologicalSpace G] [Group G] [IsTopologicalGroup G]
    {H : Subgroup G} (hH : IsClosed (H : Set G)) (n : ℕ) :
    (topDerivedTop H n).map H.subtype =
      closedDerivedSeries (G := G) H n

The internal derived series of a closed subgroup maps to the corresponding ambient derived series.

Show proof
theorem topDerivedTop_le_openSubgroup_pred_map_of_first_le
    {G : Type u} [TopologicalSpace G] [Group G] [IsTopologicalGroup G]
    (H : OpenSubgroup G) {m : ℕ} (hm : 1 ≤ m)
    (hfirst : topDerivedTop G 1 ≤ (H : Subgroup G)) :
    topDerivedTop G m ≤
      (topDerivedTop ↥(H : Subgroup G) (m - 1)).map
        (Subgroup.subtype (H : Subgroup G))

Higher ambient derived terms lie in the corresponding derived term of any open subgroup containing the first derived term.

Show proof
theorem eq_one_of_mem_all_openNormalSubgroup_derived
    {Q : Type u} [TopologicalSpace Q] [Group Q] [IsTopologicalGroup Q]
    [CompactSpace Q] [TotallyDisconnectedSpace Q]
    {m : ℕ} (hm : 3 ≤ m)
    (hQm : topDerivedTop Q m = ⊥)
    {d : Q}
    (hproj :
      ∀ H : OpenNormalSubgroup Q,
        topDerivedTop Q 1 ≤ (H : Subgroup Q) →
        d ∈ (topDerivedTop ↥(H : Subgroup Q) (m - 1)).map
          (Subgroup.subtype (H : Subgroup Q))) :
    d = 1

If a profinite element projects into all open-normal derived lifts and the corresponding ambient derived term is trivial, then the element is trivial.

Show proof
theorem topDerivedTop_one_eq_bot_of_topologicallyGenerates_singleton
    {Q : Type u} [TopologicalSpace Q] [Group Q] [IsTopologicalGroup Q]
    [T2Space Q] (x : Q)
    (hgen : ProCGroups.Generation.TopologicallyGenerates (G := Q) ({x} : Set Q)) :
    topDerivedTop Q 1 = ⊥

Topological cyclic generation forces the first derived term to be trivial.

Show proof
def topMaxSolvQuotMap
    {G : Type u} [TopologicalSpace G] [Group G] [IsTopologicalGroup G]
    {Q : Type v} [TopologicalSpace Q] [Group Q] [IsTopologicalGroup Q]
    (f : G →ₜ* Q) (m : ℕ) :
    (G^ₘ m) →ₜ* (Q^ₘ m) := by
  exact QuotientGroup.mapₜ (G⟦m⟧ₜ) (Q⟦m⟧ₜ) f (topDerivedTop_le_comap (f := f) m)

scoped[ProCGroupsSolvableQuotients] notation f "⟪" m "⟫" =>
  ProCGroups.FiniteStepSolvableQuotients.topMaxSolvQuotMap f m

The induced map on maximal finite-step solvable quotients.

noncomputable def TopologicalGroup.restrictPreimage_topMaxSolvQuot_mulEquiv
    {G : Type u} [TopologicalSpace G] [Group G] [IsTopologicalGroup G]
    {Q : Type v} [TopologicalSpace Q] [Group Q] [IsTopologicalGroup Q]
    {π : G →ₜ* Q} {Q₁ : Subgroup Q} {m : ℕ}
    (hπ : Function.Surjective π)
    (hclosed : IsClosedMap (π.restrictPreimage Q₁))
    (hker :
      (π.restrictPreimage Q₁).kertopDerivedTop ↥(Q₁.comap (π : G →* Q)) m) :
    MaxSolvQuot (Q₁.comap (π : G →* Q)) m ≃* MaxSolvQuot Q₁ m := by
  classical
  let G0 : Type u := Q₁.comap (π : G →* Q)
  let f : G0 →ₜ* Q₁ := π.restrictPreimage Q₁
  have hf : Function.Surjective f := by
    simpa [f, G0] using π.restrictPreimage_surjective hπ Q₁
  have hclosed' : IsClosedMap f := by
    simpa [f, G0] using hclosed
  have hker' : f.toMonoidHom.ker ≤ topDerivedTop G0 m := by
    simpa [f, G0] using hker
  have hclosed_comm :
      ∀ n : ℕ,
        IsClosed (((⁅G0⟦n⟧ₜ, G0⟦n⟧ₜ⁆ₜ).map (f : G0 →* Q₁) : Subgroup Q₁) : Set Q₁) := by
    intro n
    refine
      TopologicalGroup.isClosed_map_of_isClosedMap (f := f) hclosed'
        (K := ⁅G0⟦n⟧ₜ, G0⟦n⟧ₜ⁆ₜ) ?_
    exact Subgroup.isClosed_topologicalClosure (s := ⁅G0⟦n⟧ₜ, G0⟦n⟧ₜ⁆)
  have hmap : (G0⟦m⟧ₜ).map (f : G0 →* Q₁) = Q₁⟦m⟧ₜ :=
    topDerived_map_eq_of_surj (f := f) hf hclosed_comm m
  have hcomap_eq :
      Subgroup.comap (f : G0 →* Q₁) (Q₁⟦m⟧ₜ) = G0⟦m⟧ₜ := by
    exact
      QuotientGroup.comap_eq_of_map_eq_of_ker_le
        (f := (f : G0 →* Q₁)) (N := G0⟦m⟧ₜ) (M := Q₁⟦m⟧ₜ) hmap hker'
  have hsurj :
      Function.Surjective ((f⟪m⟫) : MaxSolvQuot G0 m → MaxSolvQuot Q₁ m) := by
    have hcomp :
        Function.Surjective
          (fun x : G0 =>
            (QuotientGroup.mk : Q₁ → (Q₁ ⧸ Q₁⟦m⟧ₜ)) (f x)) :=
      (QuotientGroup.mk_surjective (s := Q₁⟦m⟧ₜ)).comp hf
    dsimp [topMaxSolvQuotMap, MaxSolvQuot]
    exact
      QuotientGroup.map_surjective_of_surjective
        (N := G0⟦m⟧ₜ)
        (M := Q₁⟦m⟧ₜ)
        (f := (f : G0 →* Q₁))
        (h := topDerivedTop_le_comap (f := f) m)
        hcomp
  have hker_eq_bot : (f⟪m⟫).toMonoidHom.ker = ⊥ := by
    have hker0 :
        (QuotientGroup.map
          (N := G0⟦m⟧ₜ)
          (M := Q₁⟦m⟧ₜ)
          (f := (f : G0 →* Q₁))
          (topDerivedTop_le_comap (f := f) m)).ker = ⊥ := by
      exact
        TopologicalGroup.ker_map_eq_bot_of_comap_eq
          (f := (f : G0 →* Q₁))
          (N := G0⟦m⟧ₜ) (M := Q₁⟦m⟧ₜ)
          (h := topDerivedTop_le_comap (f := f) m)
          hcomap_eq
    dsimp [topMaxSolvQuotMap, MaxSolvQuot, G0, f]
    exact hker0
  have hinj :
      Function.Injective ((f⟪m⟫) : MaxSolvQuot G0 m → MaxSolvQuot Q₁ m) := by
    have hinj0 : Function.Injective (f⟪m⟫).toMonoidHom :=
      (MonoidHom.ker_eq_bot_iff (f := (f⟪m⟫).toMonoidHom)).1 hker_eq_bot
    exact hinj0
  exact MulEquiv.ofBijective (((π.restrictPreimage Q₁)⟪m⟫).toMonoidHom)
    ⟨hinj, hsurj⟩

The induced map on finite-step solvable quotients is an equivalence under surjectivity and the required kernel containment for the subgroup preimage.

lemma continuousToMaxSolvQuot_surjective
    (G : Type u) [TopologicalSpace G] [Group G] [IsTopologicalGroup G]
    (m : ℕ) :
    Function.Surjective (continuousToMaxSolvQuot G m)

The quotient map to the maximal \(m\)-step solvable quotient is surjective.

Show proof
theorem continuousToMaxSolvQuot_eq_one_iff
    {G : Type u} [TopologicalSpace G] [Group G] [IsTopologicalGroup G]
    {m : ℕ} {x : G} :
    continuousToMaxSolvQuot G m x = 1 ↔ x ∈ topDerivedTop G m

The quotient map kills exactly the \(m\)-th closed derived subgroup.

Show proof
theorem continuousToMaxSolvQuot_ker_le_topDerived_one_map_subtype_of_le
    (G : Type u) [TopologicalSpace G] [Group G] [IsTopologicalGroup G]
    {m : ℕ} (hm : 1 ≤ m)
    (H : OpenSubgroup (MaxSolvQuot G m))
    (hH :
      topDerivedTop G (m - 1) ≤
        ((H : Subgroup (MaxSolvQuot G m)).comap
          (continuousToMaxSolvQuot G m : G →* MaxSolvQuot G m))) :
    (continuousToMaxSolvQuot G m : G →* MaxSolvQuot G m).ker ≤
      (topDerivedTop
          ↥((preimageOpenSubgroup (continuousToMaxSolvQuot G m) H : OpenSubgroup G) :
            Subgroup G) 1).map
        (Subgroup.subtype
          ((preimageOpenSubgroup (continuousToMaxSolvQuot G m) H : OpenSubgroup G) :
            Subgroup G))

The kernel of the ambient quotient map lands in the first closed derived subgroup of any preimage open subgroup containing the previous derived term.

Show proof
theorem isMulTorsionFree_maxSolvQuot_one_of_isMulTorsionFree_topologicalAbelianization
    (G : Type u) [TopologicalSpace G] [Group G] [IsTopologicalGroup G]
    (hG : IsMulTorsionFree (TopologicalAbelianization G)) :
    IsMulTorsionFree (MaxSolvQuot G 1)

The first maximal solvable quotient is the topological abelianization.

Show proof
theorem preimageOpenSubgroup_maxSolvQuot_mulEquiv_of_ker_le
    {G : Type u} [TopologicalSpace G] [Group G] [IsTopologicalGroup G]
    {Q : Type v} [TopologicalSpace Q] [Group Q] [IsTopologicalGroup Q]
    (f : G →ₜ* Q) (hf : Function.Surjective f) (H : OpenSubgroup Q)
    (hclosed : IsClosedMap (f.restrictPreimage (H : Subgroup Q)))
    (n : ℕ)
    (hker :
      f.ker ≤
        (topDerivedTop
          ↥((preimageOpenSubgroup f H : OpenSubgroup G) : Subgroup G) n).map
            (Subgroup.subtype
              ((preimageOpenSubgroup f H : OpenSubgroup G) : Subgroup G))) :
    Nonempty
      (MaxSolvQuot ↥((preimageOpenSubgroup f H : OpenSubgroup G) : Subgroup G) n ≃*
        MaxSolvQuot ↥(H : Subgroup Q) n)

The induced map between maximal finite-step solvable quotients of a subgroup preimage and the target subgroup is an isomorphism under the expected kernel bound.

Show proof