We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
series should simplify its terms on a per-term basis:
series
sage: var('x,y') (x, y) sage: ex=1/(1-x*y-x^2) sage: ex.series(x,5) 1 + (y)*x + (y^2 + 1)*x^2 + ((y^2 + 1)*y + y)*x^3 + (((y^2 + 1)*y + y)*y + y^2 + 1)*x^4 + Order(x^5)
Compare with e.g. Pari:
? 1/(1-x*y-x^2) + O(x^5) %1 = 1 + y*x + (y^2 + 1)*x^2 + (y^3 + 2*y)*x^3 + (y^4 + 3*y^2 + 1)*x^4 + O(x^5)
Component: symbolics
Issue created by migration from https://trac.sagemath.org/ticket/16213
The text was updated successfully, but these errors were encountered:
Will be fixed in #17400.
Sorry, something went wrong.
No branches or pull requests
series
should simplify its terms on a per-term basis:Compare with e.g. Pari:
Component: symbolics
Issue created by migration from https://trac.sagemath.org/ticket/16213
The text was updated successfully, but these errors were encountered: