SERIESSUM function
The SERIESSUM function in Excel calculates the sum of a power series based on the formula:
This is useful in mathematical modeling and calculations involving power series expansions.
Syntax
=SERIESSUM(x, n, m, coefficients)
Parameters
- x (required): The input value for the series (the variable in the equation).
- n (required): The initial power to which the value of
xis raised. - m (required): The step by which the power increases in each term.
- coefficients (required): An array or range of coefficients for each term in the series.
How It Works
- The first term is .
- The second term is .
- The third term is .
- The series continues for all coefficients provided.
Examples
Example 1: Simple Series
To calculate the series:
If , , , and coefficients are in cells A1:A3 (2, 3, 4):
=SERIESSUM(2, 0, 1, A1:A3)
Result: 26
Example 2: Exponential Approximation
To approximate using the series:
If , , , and coefficients are in cells A1:A4:
=SERIESSUM(1, 0, 1, A1:A4)
Result: 2.6667 (approximation for ).
Notes
- Coefficients: Must be provided as an array or range. The length of the array determines how many terms are included in the calculation.
- Numeric Input: The
x,n,m, and coefficients must be numeric. Non-numeric inputs will return#VALUE!. - Practical Use: Often used in Taylor series, Fourier series, or other expansions in mathematics.
Related Functions
SUM: Adds numbers together but does not involve powers.POWER: Calculates a number raised to a specific power.EXP: Calculates , the base of natural logarithms raised to a power.
The SERIESSUM function is powerful for calculations involving polynomial expansions, approximations, and mathematical series.