PolynomialQ
PolynomialQ(p, x)
return
True
ifp
is a polynomial for the variablex
. ReturnFalse
in all other cases.
PolynomialQ(p, {x, y, ...})
return
True
ifp
is a polynomial for the variablesx, y, ...
defined in the list. ReturnFalse
in all other cases.
See
Examples
>> PolynomialQ(x^2 + 7*x + 6)True
>> PolynomialQ(Cos(x*y), Cos(x*y))True
>> PolynomialQ(2*x^3,x^2)False
Implementation status
- ✅ - full supported