PolynomialQ
PolynomialQ(p, x)return
Trueifpis a polynomial for the variablex. ReturnFalsein all other cases.
PolynomialQ(p, {x, y, ...})return
Trueifpis a polynomial for the variablesx, y, ...defined in the list. ReturnFalsein 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)FalseImplementation status
- ✅ - full supported