CompletedGroupAlgebra.AllFiniteFunctoriality.Comap

4 Theorem | 2 Definition

This module develops the maps induced by continuous homomorphisms. It organizes the relevant quotient pullbacks and finite-stage maps, then proves the compatibility statements needed for the completed construction.

import
Imported by

Declarations

def completedGroupAlgebraComapIndex
    (hG : ProCGroups.IsProfiniteGroup G) (φ : G →* H) (hφ : Continuous φ)
    (V : CompletedGroupAlgebraIndex H) : CompletedGroupAlgebraIndex G :=
  OrderDual.toDual
    ⟨ProCGroups.OpenNormalSubgroup.comap φ hφ ((OrderDual.ofDual V).1 : OpenNormalSubgroup H), by
      letI : CompactSpace G := ProCGroups.IsProfiniteGroup.compactSpace hG
      exact ProCGroups.openNormalSubgroup_finiteQuotient (G := G)
        (ProCGroups.OpenNormalSubgroup.comap φ hφ ((OrderDual.ofDual V).1 : OpenNormalSubgroup H))⟩

The inverse image of an open-finite quotient of \(H\) along a continuous homomorphism \(G\to H\), regarded as an open-finite quotient of the profinite group \(G\). This is the index-level operation underlying Lemma 5.3.5(e)'s functoriality in the group variable.

theorem completedGroupAlgebraComapIndex_subgroup
    (hG : ProCGroups.IsProfiniteGroup G) (φ : G →* H) (hφ : Continuous φ)
    (V : CompletedGroupAlgebraIndex H) :
    (((OrderDual.ofDual (completedGroupAlgebraComapIndex (G := G) hG φ hφ V)).1 :
        OpenNormalSubgroup G) : Subgroup G) =
      (((OrderDual.ofDual V).1 : OpenNormalSubgroup H) : Subgroup H).comap φ

The subgroup underlying the comap index is the subgroup-theoretic comap.

Show proof
theorem completedGroupAlgebraComapIndex_mono
    (hG : ProCGroups.IsProfiniteGroup G) (φ : G →* H) (hφ : Continuous φ)
    {V W : CompletedGroupAlgebraIndex H} (hVW : V ≤ W) :
    completedGroupAlgebraComapIndex (G := G) hG φ hφ V ≤
      completedGroupAlgebraComapIndex (G := G) hG φ hφ W

Comap of all-finite completed-group-algebra indices is monotone.

Show proof
def completedGroupAlgebraComapQuotientMap
    [IsTopologicalGroup H]
    (hG : ProCGroups.IsProfiniteGroup G) (φ : G →* H) (hφ : Continuous φ)
    (V : CompletedGroupAlgebraIndex H) :
    CompletedGroupAlgebraQuotient G (completedGroupAlgebraComapIndex (G := G) hG φ hφ V) →*
      CompletedGroupAlgebraQuotient H V :=
  QuotientGroup.map _ _ φ (by
    intro g hg
    exact hg)

The quotient homomorphism \(G/\varphi^{-1}(V) \to H/V\) induced by a continuous homomorphism \(\varphi: G \to H\).

theorem completedGroupAlgebraComapQuotientMap_mk
    [IsTopologicalGroup H]
    (hG : ProCGroups.IsProfiniteGroup G) (φ : G →* H) (hφ : Continuous φ)
    (V : CompletedGroupAlgebraIndex H) (g : G) :
    completedGroupAlgebraComapQuotientMap (G := G) hG φ hφ V
        (QuotientGroup.mk'
          ((((OrderDual.ofDual (completedGroupAlgebraComapIndex (G := G) hG φ hφ V)).1 :
            OpenNormalSubgroup G) : Subgroup G)) g) =
      QuotientGroup.mk'
        ((((OrderDual.ofDual V).1 : OpenNormalSubgroup H) : Subgroup H)) (φ g)

The quotient map associated with the inverse-image subgroup sends the class of \(g\in G\) to the class of \(\varphi(g)\in H\).

Show proof
theorem completedGroupAlgebraComapQuotientMap_surjective
    [IsTopologicalGroup H]
    (hG : ProCGroups.IsProfiniteGroup G) (φ : G →* H) (hφ : Continuous φ)
    (hφsurj : Function.Surjective φ) (V : CompletedGroupAlgebraIndex H) :
    Function.Surjective (completedGroupAlgebraComapQuotientMap (G := G) hG φ hφ V)

A surjective homomorphism induces a surjective map on the comap quotients.

Show proof