Cyclic triple sums #
Cyclic triple sums are meant as auxiliary tools for proving properties like Jacobi identities and Lie algebra 2-cocycle conditions.
Main definitions #
cyclicTripleSum
: An auxiliary function given by ⟨x,y,z⟩ ↦ φ(x,β(y,z)) + φ(y,β(z,x)) + φ(z,β(x,y)) where φ and β are two-variable functions on a set V with values in sets W and V, respectively.cyclicTripleSumHom
: A trilinear function given by ⟨x,y,z⟩ ↦ φ(x,β(y,z)) + φ(y,β(z,x)) + φ(z,β(x,y)) where φ and β are bilinear functions on V with values in sets W and V, respectively. This function can be used in calculations towards the Jacobi identity in Lie algebras and the Lie algebra 2-cocycle condition.
Main statements #
A number of easy but convenient auxiliary properties towards trilinearity
of cyclicTripleSumHom β φ
(which is mathematically trivial but should not be repeated
too often in Lean) are proven for the cyclic triple sums:
cyclicTripleSum_map_add_of_bilin
: If the functions φ and β are bilinear, then the cyclic triple sum is additive in its last variable. Additivity in the first and second variable are similarly obtained (the results immediately after).cyclicTripleSum_map_smul_of_bilin
: If the functions φ and β are bilinear, then the cyclic triple sum respects scalar multiplication in its last variable. Scalar multiplication in the first and second variable are similarly obtained (the results immediately after).
Tags #
Jacobi identity, Lie algebra 2-cocycle condition
Cyclic triple sums as tools for Jacobi identities and 2-cocycle conditions #
An auxiliary function for proofs of Jacobi identities etc.
Given functions β : V × V → V and φ : V × V → W where W has additive structure,
cyclicTripleSum β φ
is the function of three variables on V defined by:
⟨x,y,z⟩ ↦ φ(x,β(y,z)) + φ(y,β(z,x)) + φ(z,β(x,y)).
Equations
- VirasoroProject.cyclicTripleSum β φ x y z = φ x (β y z) + φ y (β z x) + φ z (β x y)
Instances For
"Coerce" a bilinear map into a biadditive map.
Equations
Instances For
An auxiliary trilinear map for proofs of Jacobi identities.
Given bilinear functions β : V × V → V and φ : V × V → W, cyclicTripleSumHom β φ
is the
trilinear function on V defined by: ⟨x,y,z⟩ ↦ φ(x,β(y,z)) + φ(y,β(z,x)) + φ(z,β(x,y)).
Equations
- One or more equations did not get rendered due to their size.