Syntax
| Parameter | Description |
|---|---|
| x | Parameter of the SERIESSUM function. |
| n | Parameter of the SERIESSUM function. |
| m | Parameter of the SERIESSUM function. |
| coefficients | Parameter of the SERIESSUM function. |
Examples
Polynomial evaluation
=SERIESSUM(2, 0, 1, {3,1,4})
Even powers only
=SERIESSUM(3, 0, 2, {1,1,1})
Coefficients from cells
=SERIESSUM(A1, 0, 1, B1:B5)
Common Errors
All arguments must be numeric. Non-numeric values in x, n, m, or the coefficients array return #VALUE!.
Can occur if the power series computation overflows or produces undefined values.
Tips
Compute sin(x) ≈ x - x³/6 + x⁵/120 using =SERIESSUM(x, 1, 2, {1, -1/6, 1/120}) for a quick approximation.
The coefficient array is the polynomial's coefficients in order. For ax² + bx + c evaluated at x, use =SERIESSUM(x, 0, 1, {c, b, a}).
m=1 for consecutive powers (x⁰, x¹, x²...). m=2 for every other power (x⁰, x², x⁴...). This models even/odd-only series.
Try SERIESSUM in Viztab
Import your data and use SERIESSUM with 370+ other formulas. No signup required.
Open Viztab