Skip to content
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

Fix conversion from SymbolicSeries to LaurentSeries #39841

Draft
wants to merge 1 commit into
base: develop
Choose a base branch
from

Conversation

user202729
Copy link
Contributor

Fix #39839

📝 Checklist

  • The title is concise and informative.
  • 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

@user202729
Copy link
Contributor Author

user202729 commented Mar 31, 2025

A case where it raises an error with the new code

sage: x = SR.var("x")
....: f = (x^30).series(x, 20); f
Order(x^20)
sage: f.coefficients(x, sparse=True)
[[Order(x^20), 0]]

So another purpose of the overridden method is that it right-pad the coefficient list with zeroes on the right to match the Order. Otherwise some of the things that raise error in the new code does look like a bug.

Copy link

github-actions bot commented Mar 31, 2025

Documentation preview for this PR (built with commit ad3c74f; changes) is ready! 🎉
This preview will update shortly after each push to this PR.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Conversion from formal series to power/LaurentSeriesRing silently truncate negative term
1 participant