CoefficientList - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


PolynomialTools

  

CoefficientVector

  

return a Vector of coefficients from a polynomial

  

CoefficientList

  

return a list of coefficients from a polynomial

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

CoefficientVector(p, vars, vectoropts, orderopts)

CoefficientList(p, vars, orderopts)

Parameters

p

-

polynom(anything, vars)

vars

-

name,list of main variable(s)

vectoropt

-

(optional) a sequence of Vector constructor options; see Vector

orderopts

-

(optional) equation of the form termorder=reverse or termorder=forward

Description

• 

The CoefficientVector(p, vars) calling sequence returns a Vector of coefficients from a polynomial p in vars.

• 

The CoefficientList(p, x) calling sequence returns a list of coefficients from a polynomial p in vars.

• 

If the term order is not specified or termorder=forward, for p=a0+a1x+...+anxn, the k-th element of the Vector or list returned corresponds to ak1.

• 

These commands now support polynomials in many variables. For polynomials with more the one variable, the terms are sorted in total degree order, with terms of the same total degree sorted lexically.

• 

If termorder=reverse is specified, then the coefficients will be stored in the reverse of the above order. That is, the leading coefficient will be stored first.

• 

These commands are useful because the Maple command coeff is of linear complexity in the degree of the polynomial. Thus, a naive implementation of CoefficientVector would be of quadratic complexity. The actual implementation is of linear complexity.  In fact, for CoefficientVector, if sparse storage is specified as an option, the complexity is linear in the actual number of terms.

• 

The inverse commands are FromCoefficientVector and FromCoefficientList.

Examples

withPolynomialTools:

p113x+x5

px513x+1

(1)

CoefficientVectorp,x

1−130001

(2)

CoefficientVectorp,x,termorder=reverse

1000−131

(3)

CoefficientListexpandp2,x

1,−26,169,0,0,2,−26,0,0,0,1

(4)

CoefficientVector1+5x1000000000,x,storage=sparse

CoefficientVector1+5x1000000000,x,storage=sparse,termorder=reverse

• 

For the zero polynomial, the CoefficientVector command returns a zero-dimensional Vector and the CoefficientList command returns an empty list.

CoefficientVector0,x

(5)

CoefficientList0.,x

(6)
• 

Non-expanded polynomials will also work but since collect will be called on them, this could be inefficient.

qx1x25x2x:

CoefficientListq,x

0,−25,51,−27,1

(7)
• 

The coefficients of the polynomial do not have to be numbers.

CoefficientListy3y2x+y2x2+x3,x

y3,y2,y2,1

(8)

CoefficientListy3y2x+y2x2+x3,x,y

0,0,0,−2,0,0,1,1,−1,1

(9)

Compatibility

• 

The PolynomialTools[CoefficientVector] and PolynomialTools[CoefficientList] commands were updated in Maple 2021.

• 

The p parameter was updated in Maple 2021.

See Also

coeff

coeffs

expand

FromCoefficientList

PolynomialTools

Vector