I would like to get the coefficients of a multivariate polynomial including the zero coefficients (in their correct positions). I have found a similar answer as regards a polynomial f of two variables x,y
Now, I would like to extend this solution for a multivariate polynomial of n variables [xo,x1,...xn-1]
The polynomial is defined with the following code: (Note: q=next_prime(10000)
)
A1 = [(', '.join('x%i'%i for i in [0.. n-1]))]; ### construct a suitable multivariate ring
V = var(A1[0]) ### define a str variable
x=vector(list(V)) ### convert to vector
P1=PolynomialRing(GF(q),V)
How can I do that?