FoxDifferential.RightDerivative.CommutatorFormula

2 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 paperComm {G : Type*} [Group G] (u v : G) : G :=
  u⁻¹ * v⁻¹ * u * v

The paper commutator convention \(u{}^{-1} * v{}^{-1} * u * v\), kept local to Fox calculus so that metabelian applications depend on FoxDifferential, not conversely.

theorem map_conjugated_groupElement (D : RightDerivation G) (u v : G) :
    D (MonoidAlgebra.of ℤ G (v⁻¹ * u * v) : FoxDifferential.GroupRing G) =
      D (MonoidAlgebra.of ℤ G v : FoxDifferential.GroupRing G) *
          (1 - MonoidAlgebra.of ℤ G (v⁻¹ * u * v)) +
        D (MonoidAlgebra.of ℤ G u : FoxDifferential.GroupRing G) *
          MonoidAlgebra.of ℤ G v

The right derivation satisfies the corresponding group-ring formula.

Show proof
theorem map_paperComm_groupElement (D : RightDerivation G) (u v : G) :
    D (MonoidAlgebra.of ℤ G (paperComm u v) : FoxDifferential.GroupRing G) =
      D (MonoidAlgebra.of ℤ G u : FoxDifferential.GroupRing G) *
          (MonoidAlgebra.of ℤ G v - MonoidAlgebra.of ℤ G (paperComm u v)) +
        D (MonoidAlgebra.of ℤ G v : FoxDifferential.GroupRing G) *
          (1 - MonoidAlgebra.of ℤ G (v⁻¹ * u * v))

The right derivation satisfies the corresponding group-ring formula.

Show proof