CompletedGroupAlgebra.UniversalProperty.OpenSubmoduleQuotient

3 Theorem | 1 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

theorem completedGroupAlgebra_existsUnique_lift_to_openSubmoduleQuotient
    (hG : ProCGroups.IsProfiniteGroup G)
    (N : Type (max u v)) [AddCommGroup N] [TopologicalSpace N] [Module R N]
    (hN : IsProfiniteModule R N) (f : G → N) (hf : Continuous f)
    (W : Submodule R N) (hW : IsOpen (W : Set N)) :
    ∃! F : Carrier R G →L[R] N ⧸ W,
      ∀ g : G, F (completedGroupAlgebraOf R G g) = Submodule.mkQ W (f g)

The quotient-target form of the existence step in Lemma 5.3.5(d): after quotienting a profinite target module by an open submodule, the prescribed continuous map from \(G\) extends uniquely from \(\widehat{R[G]}\).

Show proof
def completedGroupAlgebraLiftToOpenSubmoduleQuotient
    (hG : ProCGroups.IsProfiniteGroup G)
    (N : Type (max u v)) [AddCommGroup N] [TopologicalSpace N] [Module R N]
    (hN : IsProfiniteModule R N) (f : G → N) (hf : Continuous f)
    (W : Submodule R N) (hW : IsOpen (W : Set N)) :
    Carrier R G →L[R] N ⧸ W :=
  Classical.choose
    (completedGroupAlgebra_existsUnique_lift_to_openSubmoduleQuotient
      (R := R) (G := G) hG N hN f hf W hW)

The chosen quotient-valued extension attached to an open submodule of a profinite target.

theorem completedGroupAlgebraLiftToOpenSubmoduleQuotient_apply_of
    (hG : ProCGroups.IsProfiniteGroup G)
    (N : Type (max u v)) [AddCommGroup N] [TopologicalSpace N] [Module R N]
    (hN : IsProfiniteModule R N) (f : G → N) (hf : Continuous f)
    (W : Submodule R N) (hW : IsOpen (W : Set N)) (g : G) :
    completedGroupAlgebraLiftToOpenSubmoduleQuotient
        (R := R) (G := G) hG N hN f hf W hW
        (completedGroupAlgebraOf R G g) =
      Submodule.mkQ W (f g)

The quotient-valued lift has the prescribed value on completed group-like elements.

Show proof
theorem completedGroupAlgebraLiftToOpenSubmoduleQuotient_factor
    (hG : ProCGroups.IsProfiniteGroup G)
    (N : Type (max u v)) [AddCommGroup N] [TopologicalSpace N] [Module R N]
    (hN : IsProfiniteModule R N) (f : G → N) (hf : Continuous f)
    {W V : Submodule R N} (hWV : W ≤ V)
    (hW : IsOpen (W : Set N)) (hV : IsOpen (V : Set N))
    (x : Carrier R G) :
    Submodule.factor hWV
        (completedGroupAlgebraLiftToOpenSubmoduleQuotient
          (R := R) (G := G) hG N hN f hf W hW x) =
      completedGroupAlgebraLiftToOpenSubmoduleQuotient
        (R := R) (G := G) hG N hN f hf V hV x

The quotient-valued extensions are compatible with refinement of open submodules.

Show proof