#18598: reduce method of polynomial ideals gives incorrect results
------------------------+----------------------------
   Reporter:  lftabera  |            Owner:
       Type:  defect    |           Status:  new
   Priority:  major     |        Milestone:  sage-6.8
  Component:  algebra   |         Keywords:
  Merged in:            |          Authors:
  Reviewers:            |  Report Upstream:  N/A
Work issues:            |           Branch:
     Commit:            |     Dependencies:
   Stopgaps:            |
------------------------+----------------------------
 The following fails

 {{{
 sage:
 
K=PolynomialRing(QQ,'x,y,a0,a1',order=TermOrder('degrevlex',2)+TermOrder('degrevlex',2))
 sage: x,y,a0,a1=K.gens()
 sage: f = x**3+x**2*y
 sage: m = Ideal(x**4,x**2*y,y**2)
 sage: m.reduce(f) == f.reduce(m.groebner_basis())
 False
 sage: m.reduce(f)
 x^3 + x^2*y
 sage: f.reduce(m.groebner_basis())
 x^3
 }}}

 The reduction should be {{{x^3}}}. Singular computes correctly the
 reduction, so the problem is in the Sage library.

--
Ticket URL: <http://trac.sagemath.org/ticket/18598>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica, 
and MATLAB

-- 
You received this message because you are subscribed to the Google Groups 
"sage-trac" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/sage-trac.
For more options, visit https://groups.google.com/d/optout.

Reply via email to