Documentation

Mathlib.Algebra.Lie.Basis.Basic

Bases of semisimple Lie algebras #

In this file we define bases of semisimple Lie algebras. Given an indexing type ι, a basis of a Lie algebra consists of a non-degenerate matrix of integers A indexed by ι × ι and generators h i, e i, f i indexed by ι, each forming an sl₂ triple, and satisfying the Chevalley-Serre relations:

This concept appears not to have a name in the informal literature and so we call it simply a basis. With further axioms (constraining the structure constants which appear in products of the form ⁅e i, e j⁆, ⁅f i, f j⁆) one obtains the concept of a Weyl or Chevalley basis. See e.g., [Ser87](Ch. V, §4, §6).

Main definitions / results: #

TODO #

structure LieAlgebra.Basis (ι : Type u_1) {R : Type u_2} {L : Type u_3} [Finite ι] [CommRing R] [LieRing L] [LieAlgebra R L] (H : LieSubalgebra R L) :
Type (max u_1 u_3)

A basis for a semisimple Lie algebra distinguishes a natural Cartan subalgebra and a base for the associated root system.

Instances For
    theorem LieAlgebra.Basis.ext {ι : Type u_1} {R : Type u_2} {L : Type u_3} {inst✝ : Finite ι} {inst✝¹ : CommRing R} {inst✝² : LieRing L} {inst✝³ : LieAlgebra R L} {H : LieSubalgebra R L} {x y : Basis ι H} (A : x.A = y.A) (h : x.h = y.h) (e : x.e = y.e) (f : x.f = y.f) :
    x = y
    theorem LieAlgebra.Basis.ext_iff {ι : Type u_1} {R : Type u_2} {L : Type u_3} {inst✝ : Finite ι} {inst✝¹ : CommRing R} {inst✝² : LieRing L} {inst✝³ : LieAlgebra R L} {H : LieSubalgebra R L} {x y : Basis ι H} :
    x = y x.A = y.A x.h = y.h x.e = y.e x.f = y.f
    @[simp]
    theorem LieAlgebra.Basis.A_diag_eq_two {ι : Type u_1} {R : Type u_2} {L : Type u_3} [Finite ι] [CommRing R] [LieRing L] [LieAlgebra R L] {H : LieSubalgebra R L} (b : Basis ι H) [IsAddTorsionFree L] (i : ι) :
    b.A i i = 2
    theorem LieAlgebra.Basis.coe_cartan_eq_span {ι : Type u_1} {R : Type u_2} {L : Type u_3} [Finite ι] [CommRing R] [LieRing L] [LieAlgebra R L] {H : LieSubalgebra R L} (b : Basis ι H) :
    theorem LieAlgebra.Basis.isLieAbelian_cartan {ι : Type u_1} {R : Type u_2} {L : Type u_3} [Finite ι] [CommRing R] [LieRing L] [LieAlgebra R L] {H : LieSubalgebra R L} (b : Basis ι H) :
    def LieAlgebra.Basis.symm {ι : Type u_1} {R : Type u_2} {L : Type u_3} [Finite ι] [CommRing R] [LieRing L] [LieAlgebra R L] {H : LieSubalgebra R L} (b : Basis ι H) :
    Basis ι H

    A basis has a natural involution obtained by interchanging the roles of e and f and negating h.

    Equations
    • b.symm = { A := b.A, h := -b.h, e := b.f, f := b.e, cartan_eq_lieSpan := , span_ef := , linInd := , nondegen := , sl2 := , lie_h_h := , lie_h_e := , lie_h_f := , lie_e_f_ne := }
    Instances For
      @[simp]
      theorem LieAlgebra.Basis.symm_e {ι : Type u_1} {R : Type u_2} {L : Type u_3} [Finite ι] [CommRing R] [LieRing L] [LieAlgebra R L] {H : LieSubalgebra R L} (b : Basis ι H) :
      b.symm.e = b.f
      @[simp]
      theorem LieAlgebra.Basis.symm_A {ι : Type u_1} {R : Type u_2} {L : Type u_3} [Finite ι] [CommRing R] [LieRing L] [LieAlgebra R L] {H : LieSubalgebra R L} (b : Basis ι H) :
      b.symm.A = b.A
      @[simp]
      theorem LieAlgebra.Basis.symm_f {ι : Type u_1} {R : Type u_2} {L : Type u_3} [Finite ι] [CommRing R] [LieRing L] [LieAlgebra R L] {H : LieSubalgebra R L} (b : Basis ι H) :
      b.symm.f = b.e
      @[simp]
      theorem LieAlgebra.Basis.symm_h {ι : Type u_1} {R : Type u_2} {L : Type u_3} [Finite ι] [CommRing R] [LieRing L] [LieAlgebra R L] {H : LieSubalgebra R L} (b : Basis ι H) :
      b.symm.h = -b.h
      @[simp]
      theorem LieAlgebra.Basis.symm_symm {ι : Type u_1} {R : Type u_2} {L : Type u_3} [Finite ι] [CommRing R] [LieRing L] [LieAlgebra R L] {H : LieSubalgebra R L} (b : Basis ι H) :
      b.symm.symm = b
      def LieAlgebra.Basis.h' {ι : Type u_1} {R : Type u_2} {L : Type u_3} [Finite ι] [CommRing R] [LieRing L] [LieAlgebra R L] {H : LieSubalgebra R L} (b : Basis ι H) (i : ι) :
      H

      As shown in LieAlgebra.Basis.coroot_eq_h' this is a coroot.

      Equations
      Instances For
        @[simp]
        theorem LieAlgebra.Basis.symm_h' {ι : Type u_1} {R : Type u_2} {L : Type u_3} [Finite ι] [CommRing R] [LieRing L] [LieAlgebra R L] {H : LieSubalgebra R L} (b : Basis ι H) (i : ι) :
        b.symm.h' i = -b.h' i
        def LieAlgebra.Basis.borelUpper {ι : Type u_1} {R : Type u_2} {L : Type u_3} [Finite ι] [CommRing R] [LieRing L] [LieAlgebra R L] {H : LieSubalgebra R L} (b : Basis ι H) :
        LieSubmodule R (↥H) L

        The nilpotent part of the "upper" Borel subalgebra associated to a basis.

        Equations
        Instances For
          def LieAlgebra.Basis.borelLower {ι : Type u_1} {R : Type u_2} {L : Type u_3} [Finite ι] [CommRing R] [LieRing L] [LieAlgebra R L] {H : LieSubalgebra R L} (b : Basis ι H) :
          LieSubmodule R (↥H) L

          The nilpotent part of the "lower" Borel subalgebra associated to a basis.

          Equations
          Instances For

            Lemma 4.5 from Geck.

            noncomputable def LieAlgebra.Basis.baseSupp {ι : Type u_1} {R : Type u_2} {L : Type u_3} [Finite ι] [CommRing R] [LieRing L] [LieAlgebra R L] {H : LieSubalgebra R L} (b : Basis ι H) [Fintype ι] (i : ι) :

            These elements constitute a base for the root system of the Lie algebra relative to the associated Cartan subalgebra.

            Equations
            Instances For
              @[simp]
              theorem LieAlgebra.Basis.baseSupp_apply_h' {ι : Type u_1} {R : Type u_2} {L : Type u_3} [Finite ι] [CommRing R] [LieRing L] [LieAlgebra R L] {H : LieSubalgebra R L} (b : Basis ι H) [Fintype ι] (i j : ι) :
              (b.baseSupp i) (b.h' j) = (b.A i j)
              @[simp]
              theorem LieAlgebra.Basis.symm_baseSupp {ι : Type u_1} {R : Type u_2} {L : Type u_3} [Finite ι] [CommRing R] [LieRing L] [LieAlgebra R L] {H : LieSubalgebra R L} (b : Basis ι H) [Fintype ι] :
              theorem LieAlgebra.Basis.linearIndependent_baseSupp {ι : Type u_1} {R : Type u_2} {L : Type u_3} [Finite ι] [CommRing R] [LieRing L] [LieAlgebra R L] {H : LieSubalgebra R L} (b : Basis ι H) [Fintype ι] [IsDomain R] [CharZero R] :
              @[simp]
              theorem LieAlgebra.Basis.baseSupp_apply_smul_e {ι : Type u_1} {R : Type u_2} {L : Type u_3} [Finite ι] [CommRing R] [LieRing L] [LieAlgebra R L] {H : LieSubalgebra R L} (b : Basis ι H) [Fintype ι] (i : ι) (x : H) :
              (b.baseSupp i) x b.e i = x, b.e i
              @[simp]
              theorem LieAlgebra.Basis.baseSupp_apply_smul_f {ι : Type u_1} {R : Type u_2} {L : Type u_3} [Finite ι] [CommRing R] [LieRing L] [LieAlgebra R L] {H : LieSubalgebra R L} (b : Basis ι H) [Fintype ι] (i : ι) (x : H) :
              (b.baseSupp i) x b.f i = -x, b.f i
              theorem LieAlgebra.Basis.borelUpper_le_biSup {ι : Type u_1} {R : Type u_2} {L : Type u_3} [Finite ι] [CommRing R] [LieRing L] [LieAlgebra R L] {H : LieSubalgebra R L} (b : Basis ι H) [Fintype ι] [IsDomain R] [CharZero R] :
              b.borelUpper ⨆ (n : ι), ⨆ (_ : n 0), rootSpace H (∑ i : ι, n i (b.baseSupp i))

              Lemma 4.4 from Geck.

              theorem LieAlgebra.Basis.borelLower_le_biSup {ι : Type u_1} {R : Type u_2} {L : Type u_3} [Finite ι] [CommRing R] [LieRing L] [LieAlgebra R L] {H : LieSubalgebra R L} (b : Basis ι H) [Fintype ι] [IsDomain R] [CharZero R] :
              b.borelLower ⨆ (n : ι), ⨆ (_ : n 0), rootSpace H (∑ i : ι, n i ((-b.baseSupp) i))

              Lemma 4.4 from Geck.

              theorem LieAlgebra.Basis.iSupIndep_rootSpace {ι : Type u_1} {R : Type u_2} {L : Type u_3} [Finite ι] [CommRing R] [LieRing L] [LieAlgebra R L] {H : LieSubalgebra R L} (b : Basis ι H) [Fintype ι] [IsDomain R] [CharZero R] [Module.IsTorsionFree R L] :
              iSupIndep ![rootSpace H 0, ⨆ (n : ι), ⨆ (_ : n 0), rootSpace H (∑ i : ι, n i ((-b.baseSupp) i)), ⨆ (n : ι), ⨆ (_ : n 0), rootSpace H (∑ i : ι, n i (b.baseSupp i))]
              theorem LieAlgebra.Basis.cartan_eq {ι : Type u_1} {R : Type u_2} {L : Type u_3} [Finite ι] [CommRing R] [LieRing L] [LieAlgebra R L] {H : LieSubalgebra R L} (b : Basis ι H) [Fintype ι] [IsDomain R] [CharZero R] [Module.IsTorsionFree R L] :
              theorem LieAlgebra.Basis.borelLower_eq {ι : Type u_1} {R : Type u_2} {L : Type u_3} [Finite ι] [CommRing R] [LieRing L] [LieAlgebra R L] {H : LieSubalgebra R L} (b : Basis ι H) [Fintype ι] [IsDomain R] [CharZero R] [Module.IsTorsionFree R L] :
              b.borelLower = ⨆ (n : ι), ⨆ (_ : n 0), rootSpace H (∑ i : ι, n i ((-b.baseSupp) i))
              theorem LieAlgebra.Basis.borelUpper_eq {ι : Type u_1} {R : Type u_2} {L : Type u_3} [Finite ι] [CommRing R] [LieRing L] [LieAlgebra R L] {H : LieSubalgebra R L} (b : Basis ι H) [Fintype ι] [IsDomain R] [CharZero R] [Module.IsTorsionFree R L] :
              b.borelUpper = ⨆ (n : ι), ⨆ (_ : n 0), rootSpace H (∑ i : ι, n i (b.baseSupp i))
              theorem LieAlgebra.Basis.isCartanSubalgebra {ι : Type u_1} {R : Type u_2} {L : Type u_3} [Finite ι] [CommRing R] [LieRing L] [LieAlgebra R L] {H : LieSubalgebra R L} (b : Basis ι H) [Fintype ι] [IsDomain R] [CharZero R] [Module.IsTorsionFree R L] [IsNoetherian R L] :