Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Difference between AccuracyGoal and PrecisionGoal

What is the difference between AccuracyGoal and PrecisionGoal for NIntegrate function?

like image 843
Max Avatar asked Jan 07 '11 23:01

Max


People also ask

What is Accuracy goal in Mathematica?

AccuracyGoal effectively specifies the absolute error allowed in a numerical procedure.

What is Accuracy goal?

An accuracy goal is one where we are motivated to arrive at the most accurate possible conclusion. These occur when the cost of being inaccurate is high. Unsurprisingly, people invest more effort in achieving accuracy goals, as any deviation costs, and a large deviation may well more.


1 Answers

I think this sentence from the Mma help system is almost enough:

With PrecisionGoal->p and AccuracyGoal->a, Mathematica attempts to make the numerical error in a result of size x be less than (10^-a)+Abs[x] 10^-p.

like image 97
Dr. belisarius Avatar answered Oct 02 '22 18:10

Dr. belisarius