இந்தக் கட்டுப்பாட்டை மாற்றினால் இந்தப் பக்கம் தானாக மாற்றப்படும்

SERIESSUM

The SERIESSUM function computes and returns the sum of a power series. The coefficients are for successive powers of x-value incremented by step-value.

SERIESSUM(x-value, power, step-value, coefficients)

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

power: A number value representing the initial power to which to raise x-value.

step-value: A number value representing the step by which to increase power for each term in the series.

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

  • The SERIESSUM function supports an arbitrary starting point and arbitrary spacing of exponents. If neither of these is required, consider using the POLYNOMIAL function.

  • Higher order terms are expressed last. The coefficients (ai) are for successive powers of x-value. In the following formula, "x" represents x-value, "n" represents power, and "m" represents step-value. The formula used by the SERIESSUM function is: a1 xn + a2 x(n+m) + a3 x(n+2m) + ... + ak x(n + (k-1)m), where k is the number of coefficients.

  • Exponents must be non-negative integers.

Examples

=SERIESSUM(2, 0, 1, 9) returns 9.

=SERIESSUM(2, 0, 1, 1) returns 1.

See alsoPOLYNOMIAL
Morty Proxy This is a proxified and sanitized view of the page, visit original site.
உதவியாக இருந்ததா?
எழுத்தின் அளவு: 250
அதிகபட்ச எழுத்தின் அளவு: 250
உங்கள் கருத்திற்கு நன்றி.
Morty Proxy This is a proxified and sanitized view of the page, visit original site.