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

SR.series should simplify its terms #16213

Closed
rwst opened this issue Apr 23, 2014 · 1 comment
Closed

SR.series should simplify its terms #16213

rwst opened this issue Apr 23, 2014 · 1 comment

Comments

@rwst
Copy link

rwst commented Apr 23, 2014

series should simplify its terms on a per-term basis:

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

@rwst rwst added this to the sage-6.2 milestone Apr 23, 2014
@sagetrac-vbraun-spam sagetrac-vbraun-spam mannequin modified the milestones: sage-6.2, sage-6.3 May 6, 2014
@sagetrac-vbraun-spam sagetrac-vbraun-spam mannequin modified the milestones: sage-6.3, sage-6.4 Aug 10, 2014
@rwst
Copy link
Author

rwst commented Jan 22, 2015

comment:3

Will be fixed in #17400.

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

No branches or pull requests

2 participants