-
-
Notifications
You must be signed in to change notification settings - Fork 594
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 symbolic expressions with nonintegral exponents to power series ring #39809
base: develop
Are you sure you want to change the base?
Fix conversion from symbolic expressions with nonintegral exponents to power series ring #39809
Conversation
…mbolic expressions with nonintegral exponents to power series ring
src/sage/rings/power_series_ring.py
Outdated
return self.element_class(self, poly_ring(f), prec, check=check) | ||
try: | ||
func = f.function(sym_var) | ||
except Exception: |
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.
in which situation does this exception happen?
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.
Considering no derivative method or singularity.
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.
what does that mean? Can you add a doctest in which an exception is raised?
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.
I didn't find examples where an exception was raised, so I deleted it. And I added some other doctests (for e^x and sin(x)) in the new commit.
Looks reasonable. There's this issue
Is this caused by this pull request? (or is this underlying bug with conversion to LazyPowerSeriesRing?) |
if f.is_polynomial(sym_var): | ||
poly_ring = self._poly_ring() | ||
return self.element_class(self, poly_ring(f), prec, check=check) | ||
func = f.function(sym_var) # test for exception |
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.
what does this comment mean here (I thought we're not testing for exception here…?)
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.
my fault, I forget to delete it after the testing...
return self.element_class(self, poly_ring(f), prec, check=check) | ||
func = f.function(sym_var) # test for exception | ||
L = LazyPowerSeriesRing(self.base_ring(), self.variable_name()) | ||
series_lazy = L.taylor(func) |
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.
There's another way to get the Taylor expansion
sage: (1/(x+1)).series(x, 10)
1 + (-1)*x + 1*x^2 + (-1)*x^3 + 1*x^4 + (-1)*x^5 + 1*x^6 + (-1)*x^7 + 1*x^8 + (-1)*x^9 + Order(x^10)
Are they equivalent, if not is there any significant difference (e.g. which one is faster?)
Fixes Issue #39736
This pull request addresses the issue where converting a symbolic expression with nonintegral exponents (e.g. sqrt(1+x)) into a power series leads to an error like:
ValueError: exponent must be a rational number
The problem arose because expressions such as (1+x)^(1/2) were being caught by the branch that handles instances already identified as power series, rather than being expanded via a Taylor series. In addition, a NameError was raised due to the missing import of the symbolic ring identifier (SR).
Changes Made:
Added a check to determine if the symbolic expression is not a polynomial (by testing using the series variable).
If the expression isn’t a polynomial, it is now passed through the lazy expansion branch using LazyPowerSeriesRing.taylor, ensuring that nonintegral exponents are properly expanded.
Import Fix:
Added an import for SR (using from sage.all import SR) so that SR.var(self.variable_name()) is defined.
Docstring Update:
Updated the element_constructor docstring with examples showing the new behavior for converting non-polynomial symbolic expressions.
Testing:
📝 Checklist
⌛ Dependencies