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

Online Help

All Products    Maple    MapleSim


MmaTranslator[Mma]

  

PolynomialReduce

  

returns a list representing a reduction of a polynomial

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

PolynomialReduce(arguments)

Parameters

arguments

-

Maple translation of the Mathematica command arguments

Description

• 

The PolynomialReduce returns a list representing a reduction of a specified polynomial in terms of a specified list of polynomials.

Examples

withMmaTranslatorMma:

PolynomialReduceax55x3+x2+a,a,x

x5+1,5x2+x,0

(1)

Alternatively, you can use the FromMma command with the evaluate option specified.

withMmaTranslator:

FromMma`PolynomialReduce[a x^5 - 5 x^3 + x^2 + a, {x, a}]`,evaluate

x4a5x2+x,1,0

(2)

See Also

MmaTranslator

MmaTranslator[FromMma]

MmaTranslator[Mma]