NSum
NSum[f,
i, imin, imax
] gives a numerical approximation to the sum
.
NSum[f,
i, imin, imax, di
] uses a step di in the sum.
NSum can be used for sums with both finite and infinite limits.
NSum[f,
i, ...
,
j, ...
, ... ] can be used to evaluate multidimensional sums.
The following options can be given:
NSum uses either the Euler-Maclaurin (Integrate) or Wynn epsilon (Fit) method.
With the Euler-Maclaurin method, the options AccuracyGoal and PrecisionGoal can be used to specify the accuracy and precision to try and get in the final answer. NSum stops when the error estimates it gets imply that either the accuracy or precision sought has been reached.
You should realize that with sufficiently pathological summands, the algorithms used by NSum can give wrong answers. In most cases, you can test the answer by looking at its sensitivity to changes in the setting of options for NSum.
N[Sum[ ... ]] calls NSum.
See The Mathematica Book on the web: Section 1.6.2, Section 3.9.1 and Section 3.9.4.
Implementation Notes: see Section A.9.4.
See also: NProduct.
Further Examples