POLYNOMIAL

The POLYNOMIAL function evaluates a polynomial at a given point.

POLYNOMIAL(x-value, coefficients)

x-value: The input value to the power series. x-value is a number value.

coefficients: The coefficients by which each successive power of x-value is multiplied. The number of coefficients determines the number of terms in the power series. coefficients is a collection containing number values.

Notes

Examples

=POLYNOMIAL(2, 9) returns 9.

=POLYNOMIAL(2, 1) returns 1.

See also
SERIESSUM