This method converts ideals and lists into marked polynomial lists. The output is a MarkedPolynomialList. The input can be given as an Ideal or List of polynomials.
i1 : QQ[x,y]; |
i2 : I = ideal(x^2 + y^2, x*y + y^2 + y^3); o2 : Ideal of QQ[x..y] |
i3 : MPLConverter(I) o3 = {(x^2) + y^2, (y^3) + x*y+y^2} o3 : MarkedPolynomialList |
i4 : QQ[x,y]; |
i5 : MPLConverter{x^2 + y^2, x*y + y^2 + y^3} o5 = {(x^2) + y^2, (y^3) + x*y+y^2} o5 : MarkedPolynomialList |
The object MPLConverter is a method function with options.