ProCGroups.CompletedGroupAlgebra.AllFiniteFunctoriality.GroupLike

7 Theorems | 1 Definition

This module records the action of the all-finite functorial map on canonical group-like elements.

import
Imported by

Declarations

def completedGroupAlgebraOf (R : Type u) (G : Type v) [CommRing R] [TopologicalSpace R]
    [IsTopologicalRing R] [Group G] [TopologicalSpace G] [IsTopologicalGroup G]
    (g : G) : CompletedGroupAlgebraCarrier R G :=
  toCompletedGroupAlgebra R G (MonoidAlgebra.of R G g)

A group element maps to its image in the completed group algebra.

@[simp]
theorem completedGroupAlgebraProjection_of
    (U : CompletedGroupAlgebraIndex G) (g : G) :
    completedGroupAlgebraProjection R G U (completedGroupAlgebraOf R G g) =
      MonoidAlgebra.single (openNormalSubgroupInClassProj
        (C := ProCGroups.FiniteGroupClass.allFinite) (G := G) U g) 1

Projection of a completed group-like element to a finite quotient stage.

Show Lean proof
@[simp]
theorem completedGroupAlgebraOf_one :
    completedGroupAlgebraOf R G 1 = (1 : CompletedGroupAlgebraCarrier R G)

The completed group-like element attached to \(1\) is the unit.

Show Lean proof
@[simp]
theorem completedGroupAlgebraOf_mul (g h : G) :
    completedGroupAlgebraOf R G (g * h) =
      completedGroupAlgebraOf R G g * completedGroupAlgebraOf R G h

Completed group-like elements multiply according to the group law.

Show Lean proof
theorem continuous_completedGroupAlgebraStageMap_of
    (U : CompletedGroupAlgebraIndex G) :
    letI : TopologicalSpace (CompletedGroupAlgebraStage R G U) :=
      (completedGroupAlgebraSystem R G).topologicalSpace U
    Continuous fun g : G =>
      completedGroupAlgebraStageMap R G U (MonoidAlgebra.of R G g)

The finite-stage group-like map \(G\to R[G/U]\) is continuous.

Show Lean proof
theorem continuous_completedGroupAlgebraOf :
    Continuous (completedGroupAlgebraOf R G)

The completed group-like map \(G \to \widehat{R[G]}\) is continuous.

Show Lean proof
theorem completedGroupAlgebraMap_of
    (φ : G →* H) (hφ : Continuous φ) (g : G) :
    completedGroupAlgebraMap (G := G) (H := H) R φ hφ (completedGroupAlgebraOf R G g) =
      completedGroupAlgebraOf R H (φ g)

The completed functorial map sends the group-like element attached to \(g\) to that of \(\varphi(g)\).

Show Lean proof
@[simp]
theorem completedGroupAlgebraMapAlgHom_of
    (φ : G →* H) (hφ : Continuous φ) (g : G) :
    completedGroupAlgebraMapAlgHom (G := G) (H := H) R φ hφ
        (completedGroupAlgebraOf R G g) =
      completedGroupAlgebraOf R H (φ g)

The algebra-hom completed functorial map sends group-like elements to their images.

Show Lean proof