Skip to content

Commit

Permalink
feat(algebra/lie/semisimple): adjoint action is injective for semisim…
Browse files Browse the repository at this point in the history
…ple Lie algebras (#8698)
  • Loading branch information
ocfnash committed Aug 16, 2021
1 parent c416a48 commit deedf25
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/algebra/lie/abelian.lean
Expand Up @@ -213,7 +213,9 @@ abbreviation center : lie_ideal R L := lie_module.max_triv_submodule R L L

instance : is_lie_abelian (center R L) := infer_instance

lemma center_eq_adjoint_kernel : center R L = lie_module.ker R L L :=
@[simp] lemma ad_ker_eq_self_module_ker : (ad R L).ker = lie_module.ker R L L := rfl

@[simp] lemma self_module_ker_eq_center : lie_module.ker R L L = center R L :=
begin
ext y,
simp only [lie_module.mem_max_triv_submodule, lie_module.mem_ker, ← lie_skew _ y, neg_eq_zero],
Expand Down
3 changes: 3 additions & 0 deletions src/algebra/lie/semisimple.lean
Expand Up @@ -110,4 +110,7 @@ begin
{ intros h, apply h, apply_instance, },
end

lemma ad_ker_eq_bot_of_semisimple [is_semisimple R L] : (ad R L).ker = ⊥ :=
by simp

end lie_algebra

0 comments on commit deedf25

Please sign in to comment.