-
-
Notifications
You must be signed in to change notification settings - Fork 721
Closed
Description
Using sage-4.8
sage: R.<x,y> = PolynomialRing(ZZ)
sage: I = R*[x^2-y, 2*y]
sage: J = R*[x^2+y, 2*y]
I and J are visibly the same ideal, but Sage finds different reduced Groebner bases:
sage: I.groebner_basis()
[x^2 - y, 2*y]
sage: J.groebner_basis()
[x^2 + y, 2*y]
sage: I == J // should say True
False
Depends on #12802
Component: commutative algebra
Keywords: sd40.5, groebner bases, ideals
Reviewer: John Perry
Issue created by migration from https://trac.sagemath.org/ticket/12839