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

inconsistency with polynomial factor() in Poly vs LaurentPoly #18082

Open
rwst opened this issue Mar 29, 2015 · 0 comments
Open

inconsistency with polynomial factor() in Poly vs LaurentPoly #18082

rwst opened this issue Mar 29, 2015 · 0 comments

Comments

@rwst
Copy link

rwst commented Mar 29, 2015

sage: R.<x> = PolynomialRing(QQ)
sage: (1/(1-x)).factor()
(-1) * (x - 1)^-1
sage: (1-x).factor()
(-1) * (x - 1)

sage: R.<x> = LaurentPolynomialRing(QQ)
sage: (1/(1-x)).factor()
(-1) * (x - 1)^-1
sage: (1-x).factor()
(-1) * (-1 + x)

Component: commutative algebra

Issue created by migration from https://trac.sagemath.org/ticket/18082

@rwst rwst added this to the sage-6.6 milestone Mar 29, 2015
@mkoeppe mkoeppe removed this from the sage-6.6 milestone Dec 29, 2022
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