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

Online Help

All Products    Maple    MapleSim


Home : Support : Online Help : Mathematics : Algebra : Polynomials : Sylvester Matrix

LinearAlgebra

  

SylvesterMatrix

  

construct the Sylvester Matrix of two polynomials

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

SylvesterMatrix(P, Q, x, cpt, options)

Parameters

P, Q

-

polynomials in x

x

-

(optional) name; the variable in polynomials P and Q

cpt

-

(optional) equation of the form compact=true or false; selects the compact form of the output

options

-

(optional); constructor options for the result object

Description

• 

The SylvesterMatrix(P, Q) function constructs the Sylvester Matrix of polynomials P and Q in the same indeterminate.

• 

The SylvesterMatrix(P, Q, x) function is used when P and Q are multivariate polynomials; the main indeterminate of P and Q can be specified by using the optional parameter x.

• 

If S := SylvesterMatrix(P, Q, x) and n is the sum of the degrees of polynomials P and Q, then S is an n x n Matrix with Sj,j+i=coeffP,x,degPi when i = 0..deg(P), j = 1..deg(Q) and SdegQ+j,j+i=coeffQ,x,degQi when i = 0..deg(Q), j = 1..deg(P).

• 

The determinant of the Sylvester Matrix is equal to resultant(P, Q, x).

• 

If the compact option (cpt) is included in the calling sequence as just the symbol compact or in the form compact=true, then the result is built by using a shape function designed to minimize storage.  If the option is omitted or entered as compact=false, a full rectangular Matrix is constructed.  Generally, if space is not a consideration, the full rectangular form (the default) is more efficient.

  

Note:  If the compact form is selected, any datatype specification in the constructor options is silently ignored.  The datatype of any data retrieved from the constructed Matrix is determined by the data used to build the Matrix.

• 

The constructor options provide additional information (readonly, shape, storage, order, datatype, and attributes) to the Matrix constructor that builds the result. These options may also be provided in the form outputoptions=[...], where [...] represents a Maple list.  If a constructor option is provided in both the calling sequence directly and in an outputoptions option, the latter takes precedence (regardless of the order).

• 

This function is part of the LinearAlgebra package, and so it can be used in the form SylvesterMatrix(..) only after executing the command with(LinearAlgebra). However, it can always be accessed through the long form of the command by using LinearAlgebra[SylvesterMatrix](..).

Examples

withLinearAlgebra:

pa+bx:

qc+dx+ex2:

ASylvesterMatrixp,q,x

Aba00baedc

(1)

DeterminantA

ea2abd+b2c

(2)

resultantp,q,x

ea2abd+b2c

(3)

SylvesterMatrix3x+x2,2x

1−13200020

(4)

See Also

LinearAlgebra[BezoutMatrix]

LinearAlgebra[Determinant]

Matrix