Geck's construction of a Lie algebra associated to a root system #
This file contains an implementation of Geck's construction of a semisimple Lie algebra from a reduced crystallographic root system. It follows Geck quite closely.
Main definitions: #
RootPairing.GeckConstruction.lieAlgebra
: the Geck construction of the Lie algebra associated to a root system with distinguished base.RootPairing.GeckConstruction.cartanSubalgebra
: a distinguished subalgebra corresponding to a Cartan subalgebra of the Geck construction.RootPairing.GeckConstruction.cartanSubalgebra_le_lieAlgebra
: the distinguished subalgebra is contained in the Geck construction.RootPairing.GeckConstruction.isSl2Triple
: a distinguished family ofsl₂
triples contained in the Geck construction.
Alternative approaches #
The are at least three ways to construct a Lie algebra from a root system:
- As a quotient of a free Lie algebra, using the Serre relations
- Directly defining the Lie bracket on $H ⊕ K^∣Φ|$
- The Geck construction
We comment on these as follows:
- This construction takes just a matrix as input. It yields a semisimple Lie algebra iff the
matrix is a Cartan matrix but it is quite a lot of work to prove this. On the other hand, it also
allows construction of Kac-Moody Lie algebras. It has been implemented as
Matrix.ToLieAlgebra
but as of May 2025, almost nothing has been proved about it in Mathlib. - This construction takes a root system with base as input, together with sufficient additional data to determine a collection of extraspecial pairs of roots. The additional data for the extraspecial pairs is required to pin down certain signs when defining the Lie bracket. (These signs can be interpreted as a set-theoretic splitting of Tits's extension of the Weyl group by an elementary 2-group of order $2^l$ where $l$ is the rank.)
- This construction takes a root system with base as input and is implemented here.
There seems to be no known construction of a Lie algebra from a root system without first choosing a base: https://mathoverflow.net/questions/495434/
TODO #
- Lemma stating
LinearIndependent R h
(easy usingRootPairing.Base.cartanMatrix_nondegenerate
). - Lemma stating
⁅e i, f j⁆ = 0
wheni ≠ j
(Lemma 3.5 from Geck). - Instance stating
LieModule.IsIrreducible R (lieAlgebra b) (b.support ⊕ ι → R)
(Lemma 4.2 from Geck). This will immediately yield that the Geck construction is semisimple viaLieAlgebra.hasTrivialRadical_of_isIrreducible_of_isFaithful
. - Instance stating
((cartanSubalgebra b).comap (lieAlgebra b).incl).IsCartanSubalgebra
(included in Lemma 4.6 from Geck).
Part of an sl₂
triple used in Geck's construction of a Lie algebra from a root system.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Part of an sl₂
triple used in Geck's construction of a Lie algebra from a root system.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Part of an sl₂
triple used in Geck's construction of a Lie algebra from a root system.
Equations
- RootPairing.GeckConstruction.h i = Matrix.fromBlocks 0 0 0 (Matrix.diagonal fun (x : ι) => ↑(P.pairingIn ℤ x ↑i))
Instances For
An involutive matrix which can transfer results between RootPairing.GeckConstruction.e
and
RootPairing.GeckConstruction.f
.
Equations
- RootPairing.GeckConstruction.ω b = Matrix.fromBlocks 1 0 0 (Matrix.of fun (i j : ι) => if i = -j then 1 else 0)
Instances For
Geck's construction of the Lie algebra associated to a root system with distinguished base.
Equations
- One or more equations did not get rendered due to their size.
Instances For
A distinguished subalgebra corresponding to a Cartan subalgebra of the Geck construction.
Equations
- RootPairing.GeckConstruction.cartanSubalgebra b = LieSubalgebra.lieSpan R (Matrix (↑b.support ⊕ ι) (↑b.support ⊕ ι) R) (Set.range RootPairing.GeckConstruction.h)
Instances For
Lemma 3.3 (a) from Geck.
Lemma 3.3 (b) from Geck.
Lemma 3.4 from Geck.