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.
with⁡MmaTranslatorMma:
PolynomialReduce⁡a⁢x5−5⁢x3+x2+a,a,x
x5+1,−5⁢x2+x,0
Alternatively, you can use the FromMma command with the evaluate option specified.
with⁡MmaTranslator:
FromMma⁡`PolynomialReduce[a x^5 - 5 x^3 + x^2 + a, {x, a}]`,evaluate
x4⁢a−5⁢x2+x,1,0
See Also
MmaTranslator
MmaTranslator[FromMma]
Download Help Document