Mathematica > Mathematics and Algorithms > Calculus > Discrete Calculus >
Mathematica > Mathematics and Algorithms > Discrete Mathematics > Discrete Calculus >

NProduct

NProduct[f, {i, imin, imax}]
gives a numerical approximation to the product f.
NProduct[f, {i, imin, imax, di}]
uses a step di in the product.
  • NProduct can be used for products with both finite and infinite limits.
  • NProduct[f, {i, ...}, {j, ...}, ...] can be used to evaluate multidimensional products.
  • The following options can be given:
AccuracyGoalInfinitynumber of digits of final accuracy sought
EvaluationMonitorNoneexpression to evaluate whenever f is evaluated
MethodAutomaticmethod to use
PrecisionGoalAutomaticnumber of digits of final precision sought
VerifyConvergenceTruewhether to explicitly test for convergence
WorkingPrecisionMachinePrecisionthe precision used in internal computations
  • Possible settings for the Method option include:
"EulerMaclaurin"Euler-Maclaurin summation method
"WynnEpsilon"Wynn epsilon extrapolation 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. NProduct stops when the error estimates it gets imply that either the accuracy or precision sought has been reached.
  • You should realize that in sufficiently pathological cases, the algorithms used by NProduct 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 NProduct.
  • NProduct first localizes the values of all variables, then evaluates f with the variables being symbolic, and then repeatedly evaluates the result numerically.
New in 1
Ask a question about this page  |  Suggest an improvement  |  Leave a message for the team