Florent Hivert
unread,Jan 24, 2013, 7:38:24 AM1/24/13Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to sage-a...@googlegroups.com
Dear all,
I've juste created #13999 which deal with Ideal membership for univariate
polynomial.
sage: R.<x> = PolynomialRing(ZZ)
sage: p, q = 4 + 3*x + x^2, 1 + x^2
sage: I = R.ideal([p, q])
sage: S = R.quotient_ring(I)
sage: S(p) == S(0)
False
I can probably fix the problem when the coefficient ring is a field but I
don't know how to compute when it's a general ring (Hermite normal form,
grobner basis or no known algorithm ???). Does anyone with the necessary
mathematical and technical knowledge is willing to fix the problem, and fixing
by the way the trivial field case ?
Cheers,
Florent