Solvable Lie algebras #
Like groups, Lie algebras admit a natural concept of solvability. We define this here via the derived series and prove some related results. We also define the radical of a Lie algebra and prove that it is solvable when the Lie algebra is Noetherian.
Main definitions #
LieAlgebra.derivedSeriesOfIdeal
LieAlgebra.derivedSeries
LieAlgebra.IsSolvable
LieAlgebra.isSolvableAdd
LieAlgebra.radical
LieAlgebra.radicalIsSolvable
LieAlgebra.derivedLengthOfIdeal
LieAlgebra.derivedLength
LieAlgebra.derivedAbelianOfIdeal
Tags #
lie algebra, derived series, derived length, solvable, radical
A generalisation of the derived series of a Lie algebra, whose zeroth term is a specified ideal.
It can be more convenient to work with this generalisation when considering the derived series of an ideal since it provides a type-theoretic expression of the fact that the terms of the ideal's derived series are also ideals of the enclosing algebra.
See also LieIdeal.derivedSeries_eq_derivedSeriesOfIdeal_comap
and
LieIdeal.derivedSeries_eq_derivedSeriesOfIdeal_map
below.
Instances For
The derived series of Lie ideals of a Lie algebra.
Equations
- LieAlgebra.derivedSeries R L k = LieAlgebra.derivedSeriesOfIdeal R L k ⊤
Instances For
A Lie algebra is solvable if its derived series reaches 0 (in a finite number of steps).
- solvable : ∃ (k : ℕ), LieAlgebra.derivedSeries R L k = ⊥
Instances
Equations
- ⋯ = ⋯
Equations
- ⋯ = ⋯
Equations
- ⋯ = ⋯
The (solvable) radical of Lie algebra is the sSup
of all solvable ideals.
Equations
- LieAlgebra.radical R L = sSup {I : LieIdeal R L | LieAlgebra.IsSolvable R ↥I}
Instances For
The radical of a Noetherian Lie algebra is solvable.
Equations
- ⋯ = ⋯
The →
direction of this lemma is actually true without the IsNoetherian
assumption.
Equations
- ⋯ = ⋯
Given a solvable Lie ideal I
with derived series I = D₀ ≥ D₁ ≥ ⋯ ≥ Dₖ = ⊥
, this is the
natural number k
(the number of inclusions).
For a non-solvable ideal, the value is 0.
Equations
- LieAlgebra.derivedLengthOfIdeal R L I = sInf {k : ℕ | LieAlgebra.derivedSeriesOfIdeal R L k I = ⊥}
Instances For
The derived length of a Lie algebra is the derived length of its 'top' Lie ideal.
See also LieAlgebra.derivedLength_eq_derivedLengthOfIdeal
.
Equations
Instances For
Given a solvable Lie ideal I
with derived series I = D₀ ≥ D₁ ≥ ⋯ ≥ Dₖ = ⊥
, this is the
k-1
th term in the derived series (and is therefore an Abelian ideal contained in I
).
For a non-solvable ideal, this is the zero ideal, ⊥
.
Equations
- LieAlgebra.derivedAbelianOfIdeal I = match LieAlgebra.derivedLengthOfIdeal R L I with | 0 => ⊥ | k.succ => LieAlgebra.derivedSeriesOfIdeal R L k I
Instances For
Equations
- LieAlgebra.instUniqueSubtypeMemLieIdealBot = inferInstanceAs (Unique ↥⊥)