FoxDifferential.RightDerivative.IntegerPower

1 Theorem | 1 Definition

This module develops Fox differentials and completed Fox coordinates for free, profinite, and pro-\(C\) group constructions.

import
Imported by

Declarations

def signedGeomSeries {G : Type*} [Group G] (g : G) : ℤ → FoxDifferential.GroupRing G
  | Int.ofNat n => geomSeries g n
  | Int.negSucc n => -(MonoidAlgebra.of ℤ G g⁻¹ * geomSeries g⁻¹ (n + 1))

The signed geometric series gives the right Fox derivative of an integer power.

theorem map_zpow_groupElement (D : RightDerivation G) (g : G) :
    ∀ n : ℤ,
      D (MonoidAlgebra.of ℤ G (g ^ n) : FoxDifferential.GroupRing G) =
        D (MonoidAlgebra.of ℤ G g : FoxDifferential.GroupRing G) * signedGeomSeries g n
  | Int.ofNat n => by
      simpa [signedGeomSeries] using D.map_pow_groupElement g n
  | Int.negSucc n => by
      have hpow

The right derivation satisfies the corresponding group-ring formula.

Show proof