ProCGroups.CrowellExactSequence.Discrete.MainTheorem

2 Theorems | 2 Definitions

This module develops the Crowell--Blanchfield--Lyndon exact sequence and its completed coordinate forms.

import
Imported by

Declarations

def discreteCrowellLinearSequence
    {G : Type} [Group G]
    (psi : MonoidHom G H) (hpsi : Function.Surjective psi) :
    letI := kernelAbelianizationModuleOfSurjective psi hpsi
    FourTermLinearSequence ℤ
      (KernelAbelianizationAdd psi) (DifferentialModule psi) (GroupRing H) ℤ := by
  letI := kernelAbelianizationModuleOfSurjective psi hpsi
  refine FourTermLinearSequence.ofExact
    ((kernelAbelianizationBoundaryLinearOfSurjective
      (H := H) psi hpsi).toAddMonoidHom.toIntLinearMap)
    ((toGroupRing psi).toAddMonoidHom.toIntLinearMap)
    ((augmentation H).toAddMonoidHom.toIntLinearMap) ?_
  rcases Morishita2024.crowellExactSequence_of_surjective (H := H) psi hpsi with
    ⟨hinj, hhead, hmiddle, hsurj⟩
  refine ⟨?_, ?_, ?_, ?_⟩
  · intro x y hxy
    change kernelAbelianizationBoundaryLinearOfSurjective (H := H) psi hpsi x =
      kernelAbelianizationBoundaryLinearOfSurjective (H := H) psi hpsi y at hxy
    exact hinj hxy
  · intro y
    change toGroupRing psi y = 0 ↔
      ∃ x, kernelAbelianizationBoundaryLinearOfSurjective (H := H) psi hpsi x = y
    exact hhead y
  · intro y
    change augmentation H y = 0 ↔ ∃ x, toGroupRing psi x = y
    exact hmiddle y
  · intro z
    rcases hsurj z with ⟨y, hy⟩
    refine ⟨y, ?_⟩
    change augmentation H y = z
    exact hy

The discrete Crowell sequence for a surjective group homomorphism. All three displayed maps are bundled as -linear maps so that the source, group-ring, and augmentation terms live in one canonical FourTermLinearSequence.

@[simp]
theorem discreteCrowellLinearSequence_isExact
    {G : Type} [Group G]
    (psi : MonoidHom G H) (hpsi : Function.Surjective psi) :
    letI := kernelAbelianizationModuleOfSurjective psi hpsi
    (discreteCrowellLinearSequence (H := H) psi hpsi).IsExact

The discrete Crowell exact sequence for a surjective group homomorphism, packaged as the full four-term exact sequence \((\ker \psi)^{\mathrm{ab}} \to A_{\psi} \to \mathbb{Z}[H] \to \mathbb{Z}\).

Show Lean proof
def discreteBlanchfieldLyndonLinearSequence
    (r : Nat) (psi : MonoidHom (FreeGroup (Fin r)) H) (hpsi : Function.Surjective psi) :
    letI := kernelAbelianizationModuleOfSurjective psi hpsi
    FourTermLinearSequence ℤ
      (KernelAbelianizationAdd psi) (Fin r → GroupRing H) (GroupRing H) ℤ := by
  letI := kernelAbelianizationModuleOfSurjective psi hpsi
  refine FourTermLinearSequence.ofExact
    ((FoxCalculus.freeGroupPresentationRelativeDerivativeHeadMap
      (H := H) r psi hpsi).toAddMonoidHom.toIntLinearMap)
    ((FoxCalculus.freeGroupPresentationBlanchfieldLyndonTailMap
      (H := H) r psi).toAddMonoidHom.toIntLinearMap)
    ((augmentation H).toAddMonoidHom.toIntLinearMap) ?_
  rcases
      Morishita2024.freeGroupPresentation_blanchfieldLyndonExactSequence
        (H := H) r psi hpsi with
    ⟨hinj, hhead, hmiddle, hsurj⟩
  refine ⟨?_, ?_, ?_, ?_⟩
  · intro x y hxy
    change
      FoxCalculus.freeGroupPresentationRelativeDerivativeHeadMap
          (H := H) r psi hpsi x =
        FoxCalculus.freeGroupPresentationRelativeDerivativeHeadMap
          (H := H) r psi hpsi y at hxy
    exact hinj hxy
  · intro y
    change
      FoxCalculus.freeGroupPresentationBlanchfieldLyndonTailMap
          (H := H) r psi y = 0 ↔
        ∃ x,
          FoxCalculus.freeGroupPresentationRelativeDerivativeHeadMap
            (H := H) r psi hpsi x = y
    exact hhead y
  · intro y
    change augmentation H y = 0 ↔
      ∃ x,
        FoxCalculus.freeGroupPresentationBlanchfieldLyndonTailMap
          (H := H) r psi x = y
    exact hmiddle y
  · intro z
    rcases hsurj z with ⟨y, hy⟩
    refine ⟨y, ?_⟩
    change augmentation H y = z
    exact hy

The discrete Blanchfield--Lyndon sequence in concrete Fin r coordinates.

@[simp]
theorem discreteBlanchfieldLyndonLinearSequence_isExact
    (r : Nat) (psi : MonoidHom (FreeGroup (Fin r)) H) (hpsi : Function.Surjective psi) :
    letI := kernelAbelianizationModuleOfSurjective psi hpsi
    (discreteBlanchfieldLyndonLinearSequence (H := H) r psi hpsi).IsExact

The discrete Blanchfield--Lyndon coordinate exact sequence for a finite free presentation, packaged as the full four-term exact sequence.

Show Lean proof