Currently the code for obtaining the coefficients of a multivariate polynomials returns only a list of coefficients without returning the degrees as well. For example
f(x,y)=10*x^2*y+3*x B=f(x,y).polynomial(SR) print B.coefficients() [10, 3] f(x,y)=10*x^100*y+3*x B=f(x,y).polynomial(SR) print B.coefficients() [10, 3] Is there no way of getting sage to give back the degree's of the corresponding multivariate polynomials as well. That is to return something like [[10,[100,1]],[3,[1,0]]] -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/sage-support URL: http://www.sagemath.org