-
-
Notifications
You must be signed in to change notification settings - Fork 482
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 the Schur functors applied to semigroup representations #37830
Conversation
Documentation preview for this PR (built with commit ee80187; changes) is ready! 🎉 |
4767055
to
5cf0111
Compare
5cf0111
to
eac63fb
Compare
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
I am planning to rebase this over #37871 since that reworks the class hierarchy that this code depends on. I am going to try to do that today before going home, but it might have to wait until tomorrow. |
eac63fb
to
b75d1b4
Compare
It went much more smoothly than I thought (which is a good thing). |
rebase again? |
b75d1b4
to
ee80187
Compare
I didn't need to do it locally it seems, but I have done so. |
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.
LGTM.
Thank you. |
…epresentations <!-- ^ 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". --> The Schur functor is an important part of the representation theory of $GL_n$, but it can be defined generically for any representation of a semigroup (well, really for any vector space, but the utility is for representation theory). We provide an implementation, realizing the natural representation structure. To help with examples, we also implement the natural representation of any matrix (semi)group. Along the way, we clean up some stuff with the sign representations. ### 📝 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 and checked the documentation preview. ### ⌛ 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#37871 - Uses the `Subrepresentation` class implemented here. URL: sagemath#37830 Reported by: Travis Scrimshaw Reviewer(s): Matthias Köppe
…epresentations <!-- ^ 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". --> The Schur functor is an important part of the representation theory of $GL_n$, but it can be defined generically for any representation of a semigroup (well, really for any vector space, but the utility is for representation theory). We provide an implementation, realizing the natural representation structure. To help with examples, we also implement the natural representation of any matrix (semi)group. Along the way, we clean up some stuff with the sign representations. ### 📝 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 and checked the documentation preview. ### ⌛ 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#37871 - Uses the `Subrepresentation` class implemented here. URL: sagemath#37830 Reported by: Travis Scrimshaw Reviewer(s): Matthias Köppe
The Schur functor is an important part of the representation theory of$GL_n$ , but it can be defined generically for any representation of a semigroup (well, really for any vector space, but the utility is for representation theory). We provide an implementation, realizing the natural representation structure. To help with examples, we also implement the natural representation of any matrix (semi)group.
Along the way, we clean up some stuff with the sign representations.
📝 Checklist
⌛ Dependencies
Subrepresentation
class implemented here.