-
-
Notifications
You must be signed in to change notification settings - Fork 661
Implement faithful representations of nilpotent Lie algebras #37724
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement faithful representations of nilpotent Lie algebras #37724
Conversation
src/sage/categories/finite_dimensional_lie_algebras_with_basis.py
Outdated
Show resolved
Hide resolved
45f5575
to
643d320
Compare
Last commit should address all of the comments. |
Documentation preview for this PR (built with commit 643d320; changes) is ready! 🎉 |
@@ -94,6 +97,44 @@ def _test_representation(self, **options): | |||
for v in S: | |||
tester.assertEqual(x.bracket(y) * v, x * (y * v) - y * (x * v)) | |||
|
|||
def representation_matrix(self, elt): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The method of this name in sage.modules.with_basis.representation
has additional keyword arguments, including side
. Should this one too?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, the action is only implemented from the left. So it doesn't make sense to have it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK then
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Otherwise LGTM.
Thank you. |
sagemathgh-37779: Implementing the faithful representation of a generic Lie algebra in positive characteristic <!-- ^ Please provide a concise and informative title. --> <!-- ^ Don't put issue numbers in the title, do this in the PR description below. --> <!-- ^ For example, instead of "Fixes sagemath#12345" use "Introduce new method to calculate 1 + 2". --> <!-- v Describe your changes below in detail. --> <!-- v Why is this change required? What problem does it solve? --> <!-- v If this PR resolves an open issue, please link to it here. For example, "Fixes sagemath#12345". --> This is a very large representation in general, but it is known to be faithful. ### 📝 Checklist <!-- Put an `x` in all the boxes that apply. --> - [x] The title is concise and informative. - [x] The description explains in detail what this PR is about. - [x] I have linked a relevant issue or discussion. - [x] I have created tests covering the changes. - [x] I have updated the documentation accordingly. ### ⌛ Dependencies <!-- List all open PRs that this PR logically depends on. For example, --> <!-- - sagemath#12345: short description why this is a dependency --> <!-- - sagemath#34567: ... --> - sagemath#37724 Builds on this URL: sagemath#37779 Reported by: Travis Scrimshaw Reviewer(s): Matthias Köppe, Travis Scrimshaw
We implement two methods to construct faithful representations of nilpotent Lie algebras. This is a first step towards implementing Ado's theorem.
📝 Checklist
⌛ Dependencies