FoxDifferential.Completed.Residue.FreeGroup.Universal

2 Theorem | 2 Definition

This module proves the universal-property part of the construction. It packages finite-stage data into completed maps and shows the required extension and uniqueness statements.

import
Imported by

Declarations

def residueFreeCrossedDifferentialEquivLinearMap
    (n : ℕ) (ψ : FreeGroup X →* H) :
    {delta : FreeGroup X → ResidueFreeFoxCoordinates n H X //
      IsCrossedDifferential (residueGroupRingScalar n ψ) delta} ≃
      (ResidueDifferentialModule n ψ →ₗ[ResidueGroupRing n H]
        ResidueFreeFoxCoordinates n H X) :=
  residueCrossedDifferentialEquivLinearMap
    (A := ResidueFreeFoxCoordinates n H X) n ψ

Residue crossed differentials on a free group are represented by the corresponding universal residue module.

def residueFreeGroupFoxDerivativeVectorLinearMap
    (n : ℕ) (ψ : FreeGroup X →* H) :
    ResidueDifferentialModule n ψ →ₗ[ResidueGroupRing n H]
      ResidueFreeFoxCoordinates n H X :=
  residueDifferentialModuleLift
    (A := ResidueFreeFoxCoordinates n H X) n ψ
    (residueFreeGroupFoxDerivativeVector n ψ)
    (residueFreeGroupFoxDerivativeVector_isCrossedDifferential n ψ)

The linear map from the residue universal module representing the residue derivative vector.

theorem residueFreeGroupFoxDerivativeVectorLinearMap_universal
    (n : ℕ) (ψ : FreeGroup X →* H) (w : FreeGroup X) :
    residueFreeGroupFoxDerivativeVectorLinearMap n ψ
        (residueUniversalDifferential n ψ w) =
      residueFreeGroupFoxDerivativeVector n ψ w

The representing linear map evaluates on the universal differential as the residue derivative vector.

Show proof
theorem existsUnique_residueFreeGroupFoxDerivativeVectorLinearMap
    (n : ℕ) (ψ : FreeGroup X →* H) :
    ∃! f :
        ResidueDifferentialModule n ψ →ₗ[ResidueGroupRing n H]
          ResidueFreeFoxCoordinates n H X,
      ∀ w : FreeGroup X,
        f (residueUniversalDifferential n ψ w) =
          residueFreeGroupFoxDerivativeVector n ψ w

Existence and uniqueness of the linear map representing the residue derivative vector.

Show proof