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 symbolic expressions with nonintegral exponents to power series ring #39809

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from

Conversation

TinaJin0228
Copy link
Contributor

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:

sage: R.<x> = PowerSeriesRing(QQ, default_prec=7)
sage: f = R(sqrt(1+x))
sage: f
1 + 1/2*x - 1/8*x^2 + 1/16*x^3 - 5/128*x^4 + 7/256*x^5 - 21/1024*x^6 + O(x^7)

📝 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

…mbolic expressions with nonintegral exponents to power series ring
return self.element_class(self, poly_ring(f), prec, check=check)
try:
func = f.function(sym_var)
except Exception:
Copy link
Contributor

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?

Copy link
Contributor Author

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.

Copy link
Contributor

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?

Copy link
Contributor Author

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.

@user202729
Copy link
Contributor

Looks reasonable.

There's this issue


sage: var("x y")
(x, y)
sage: Frac(QQ[y])[[x]](y+1/(x+1))
---------------------------------------------------------------------------
ValueError                                Traceback (most recent call last)
...
AttributeError: 'PolynomialRing_field_with_category' object has no attribute '_SageObject__custom_na
me'

During handling of the above exception, another exception occurred:

TypeError                                 Traceback (most recent call last)
...
TypeError: cannot convert (-1)/1 to an element of Fraction Field of Univariate Polynomial Ring in y 
over Rational Field

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
Copy link
Contributor

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…?)

Copy link
Contributor Author

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)
Copy link
Contributor

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?)

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

Successfully merging this pull request may close these issues.

Conversion from symbolic expression with nonintegral exponent to power series ring errors
2 participants