MmaTranslator[Mma]
PolynomialReduce
returns a list representing a reduction of a polynomial
Calling Sequence
Parameters
Description
Examples
PolynomialReduce(arguments)
arguments
-
Maple translation of the Mathematica command arguments
The PolynomialReduce returns a list representing a reduction of a specified polynomial in terms of a specified list of polynomials.
withMmaTranslatorMma:
PolynomialReduceax5−5x3+x2+a,a,x
x5+1,−5x2+x,0
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
x4a−5x2+x,1,0
See Also
MmaTranslator
MmaTranslator[FromMma]
Download Help Document