Add support for pseudomorphisms#38650
Merged
vbraun merged 42 commits intosagemath:developfrom Feb 21, 2025
Merged
Conversation
|
Documentation preview for this PR (built with commit 76b71cf; changes) is ready! 🎉 |
5 tasks
kwankyu
reviewed
Nov 18, 2024
Contributor
Author
|
@kryzar Please tell me if you have some comment on this PR. |
kryzar
reviewed
Feb 13, 2025
Contributor
kryzar
left a comment
There was a problem hiding this comment.
Here are some suggestions to enhance the doc:
Co-authored-by: Antoine Leudière <clapped.hesitancy332@anonaddy.me>
Co-authored-by: Antoine Leudière <clapped.hesitancy332@anonaddy.me>
Co-authored-by: Antoine Leudière <clapped.hesitancy332@anonaddy.me>
Co-authored-by: Antoine Leudière <clapped.hesitancy332@anonaddy.me>
Contributor
|
Thanks Xavier! |
kryzar
approved these changes
Feb 14, 2025
Contributor
|
Also, thank you @ymusleh for the original contribution! |
Contributor
Author
|
Great, thanks! |
vbraun
pushed a commit
to vbraun/sage
that referenced
this pull request
Feb 18, 2025
sagemathgh-38650: Add support for pseudomorphisms This PR implements pseudomorphisms. Let $M, M'$ be modules over a ring $R$, $\theta: R \to R$ be a ring homomorphism, and $\delta: R \to R$ be a $\theta$-derivation, which is a map such that $\delta(xy) = \theta(x)\delta(y) + \delta(x)y$. A *pseudomorphism* $f : M \to M$ is an additive map such that $f(\lambda x) = \theta(\lambda)f(x) + \delta(\lambda) x$ for all $\lambda$ and $x$. This PR is based on a former PR by @ymusleh (that I could not find, I don't know why). ### 📝 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. - [ ] 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 URL: sagemath#38650 Reported by: Xavier Caruso Reviewer(s): Antoine Leudière, Kwankyu Lee, Xavier Caruso
Contributor
|
🍾 |
vbraun
pushed a commit
to vbraun/sage
that referenced
this pull request
Mar 19, 2025
sagemathgh-38703: Implementation of Ore modules This PR implements modules over Ore polynomial rings. More precisely, if $A[X;\theta,\partial]$ is a Ore polynomial ring, we propose an implementation of finite free modules $M$ over $A$ equipped with a map $f : M \to M$ such that $f(ax) = \theta(a) f(x) + \partial(a) x$ for all $a \in R$ and $x \in M$. Such a map is called *pseudolinear* and it endows `M` with a structure of module over $A[X;\theta,\partial]$ (the map $f$ corresponding to the multiplication by $X$). This PR includes: - an implementation of the category of Ore modules - an implementation of Ore modules, their submodules and their quotients (with an option to give chosen names to elements in a distinguished basis) - a constructor to create quotients of the form $A[X;\theta,\partial] / A[X;\theta,\partial]P$ - an implementation of morphisms between Ore modules, including methods for computing kernels, cokernels, images and coimages This is the second step (after PR sagemath#38650) towards the implemetation of Anderson motives. ### 📝 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. - [ ] I have linked a relevant issue or discussion. - [ ] I have created tests covering the changes. - [ ] I have updated the documentation and checked the documentation preview. ### ⌛ Dependencies sagemath#38650: pseudomorphisms URL: sagemath#38703 Reported by: Xavier Caruso Reviewer(s): Rubén Muñoz--Bertrand
vbraun
pushed a commit
to vbraun/sage
that referenced
this pull request
Mar 22, 2025
sagemathgh-38703: Implementation of Ore modules This PR implements modules over Ore polynomial rings. More precisely, if $A[X;\theta,\partial]$ is a Ore polynomial ring, we propose an implementation of finite free modules $M$ over $A$ equipped with a map $f : M \to M$ such that $f(ax) = \theta(a) f(x) + \partial(a) x$ for all $a \in R$ and $x \in M$. Such a map is called *pseudolinear* and it endows `M` with a structure of module over $A[X;\theta,\partial]$ (the map $f$ corresponding to the multiplication by $X$). This PR includes: - an implementation of the category of Ore modules - an implementation of Ore modules, their submodules and their quotients (with an option to give chosen names to elements in a distinguished basis) - a constructor to create quotients of the form $A[X;\theta,\partial] / A[X;\theta,\partial]P$ - an implementation of morphisms between Ore modules, including methods for computing kernels, cokernels, images and coimages This is the second step (after PR sagemath#38650) towards the implemetation of Anderson motives. ### 📝 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. - [ ] I have linked a relevant issue or discussion. - [ ] I have created tests covering the changes. - [ ] I have updated the documentation and checked the documentation preview. ### ⌛ Dependencies sagemath#38650: pseudomorphisms URL: sagemath#38703 Reported by: Xavier Caruso Reviewer(s): Rubén Muñoz--Bertrand
2 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR implements pseudomorphisms.
Let$M, M'$ be modules over a ring $R$ , $\theta: R \to R$ be a ring homomorphism, and $\delta: R \to R$ be a $\theta$ -derivation, which is a map such that $\delta(xy) = \theta(x)\delta(y) + \delta(x)y$ .$f : M \to M$ is an additive map such that $f(\lambda x) = \theta(\lambda)f(x) + \delta(\lambda) x$ for all $\lambda$ and $x$ .
A pseudomorphism
This PR is based on a former PR by @ymusleh (that I could not find, I don't know why).
📝 Checklist
⌛ Dependencies