|
| 1 | +/- |
| 2 | +Copyright (c) 2026 Janos Wolosz. All rights reserved. |
| 3 | +Released under Apache 2.0 license as described in the file LICENSE. |
| 4 | +Authors: Janos Wolosz |
| 5 | +-/ |
| 6 | +module |
| 7 | + |
| 8 | +public import Mathlib.Algebra.Algebra.Bilinear |
| 9 | +public import Mathlib.Algebra.Lie.OfAssociative |
| 10 | +public import Mathlib.LinearAlgebra.Semisimple |
| 11 | +public import Mathlib.RingTheory.Nilpotent.Lemmas |
| 12 | + |
| 13 | +/-! |
| 14 | +# Properties of the adjoint action |
| 15 | +
|
| 16 | +Theorems about the adjoint action `LieAlgebra.ad` on associative algebras. |
| 17 | +
|
| 18 | +## Main results |
| 19 | +
|
| 20 | +* `LieAlgebra.commute_ad_of_commute`: commuting elements have commuting adjoints. |
| 21 | +* `LieAlgebra.ad_nilpotent_of_nilpotent`: the adjoint of a nilpotent element is nilpotent. |
| 22 | +* `LieAlgebra.ad_isSemisimple_of_isSemisimple`: the adjoint of a semisimple element is semisimple. |
| 23 | +-/ |
| 24 | + |
| 25 | +@[expose] public section |
| 26 | + |
| 27 | +section CommRing |
| 28 | + |
| 29 | +variable {R A : Type*} [CommRing R] [Ring A] [Algebra R A] |
| 30 | + |
| 31 | +/-- Commuting elements have commuting adjoint actions. -/ |
| 32 | +theorem LieAlgebra.commute_ad_of_commute {a b : A} (h : Commute a b) : |
| 33 | + Commute (LieAlgebra.ad R A a) (LieAlgebra.ad R A b) := by |
| 34 | + rw [Commute, SemiconjBy, ← sub_eq_zero, ← Ring.lie_def, |
| 35 | + ← (LieAlgebra.ad R A).map_lie, Ring.lie_def, sub_eq_zero.mpr h, map_zero] |
| 36 | + |
| 37 | +/-- The adjoint of a nilpotent element is nilpotent. -/ |
| 38 | +theorem LieAlgebra.ad_nilpotent_of_nilpotent {a : A} (h : IsNilpotent a) : |
| 39 | + IsNilpotent (LieAlgebra.ad R A a) := by |
| 40 | + rw [LieAlgebra.ad_eq_lmul_left_sub_lmul_right] |
| 41 | + have hl : IsNilpotent (LinearMap.mulLeft R a) := by rwa [LinearMap.isNilpotent_mulLeft_iff] |
| 42 | + have hr : IsNilpotent (LinearMap.mulRight R a) := by rwa [LinearMap.isNilpotent_mulRight_iff] |
| 43 | + exact (LinearMap.commute_mulLeft_right a a).isNilpotent_sub hl hr |
| 44 | + |
| 45 | +theorem LieSubalgebra.isNilpotent_ad_of_isNilpotent_ad {L : Type*} [LieRing L] [LieAlgebra R L] |
| 46 | + (K : LieSubalgebra R L) {x : K} (h : IsNilpotent (LieAlgebra.ad R L ↑x)) : |
| 47 | + IsNilpotent (LieAlgebra.ad R K x) := by |
| 48 | + obtain ⟨n, hn⟩ := h |
| 49 | + use n |
| 50 | + exact Module.End.submodule_pow_eq_zero_of_pow_eq_zero (K.ad_comp_incl_eq x) hn |
| 51 | + |
| 52 | +theorem LieAlgebra.isNilpotent_ad_of_isNilpotent |
| 53 | + {L : LieSubalgebra R A} {x : L} (h : IsNilpotent (x : A)) : |
| 54 | + IsNilpotent (LieAlgebra.ad R L x) := |
| 55 | + L.isNilpotent_ad_of_isNilpotent_ad <| LieAlgebra.ad_nilpotent_of_nilpotent h |
| 56 | + |
| 57 | +end CommRing |
| 58 | + |
| 59 | +section Field |
| 60 | + |
| 61 | +variable {K V : Type*} [Field K] [PerfectField K] [AddCommGroup V] [Module K V] |
| 62 | +variable [FiniteDimensional K V] |
| 63 | + |
| 64 | +/-- The adjoint of a semisimple element is semisimple. -/ |
| 65 | +theorem LieAlgebra.ad_isSemisimple_of_isSemisimple {a : Module.End K V} (ha : a.IsSemisimple) : |
| 66 | + (LieAlgebra.ad K (Module.End K V) a).IsSemisimple := by |
| 67 | + rw [LieAlgebra.ad_eq_lmul_left_sub_lmul_right] |
| 68 | + have hl : Module.End.IsSemisimple (LinearMap.mulLeft K a) := by |
| 69 | + apply Module.End.isSemisimple_of_squarefree_aeval_eq_zero ha.minpoly_squarefree |
| 70 | + have : Polynomial.aeval (Algebra.lmul K (Module.End K V) a) (minpoly K a) = 0 := by |
| 71 | + rw [Polynomial.aeval_algHom_apply, minpoly.aeval, map_zero] |
| 72 | + simpa using this |
| 73 | + have hr : Module.End.IsSemisimple (LinearMap.mulRight K a) := by |
| 74 | + apply Module.End.isSemisimple_of_squarefree_aeval_eq_zero ha.minpoly_squarefree |
| 75 | + have hrw : LinearMap.mulRight K a = |
| 76 | + (Algebra.lsmul (A := (Module.End K V)ᵐᵒᵖ) K K (Module.End K V)) (.op a) := by |
| 77 | + ext; simp [Algebra.lsmul] |
| 78 | + rw [hrw, Polynomial.aeval_algHom_apply, Polynomial.aeval_op_apply, minpoly.aeval, |
| 79 | + MulOpposite.op_zero, map_zero] |
| 80 | + exact hl.sub_of_commute (LinearMap.commute_mulLeft_right a a) hr |
| 81 | + |
| 82 | +end Field |
0 commit comments