0

I am asked to find the root of a function, using the midpoint technique. Now I have some definition questions. In one question I am asked to find the root with error $\delta \le 10^{-3}$. In another question I am asked to find a root wit tolerance $\tau≤ 10^{-3}$

What exactly is meant by tolerance?

  • Is this the bisection method? The next bracketing method (constructing midpoints and choosing new sub-intervals) would be rergula falsi and its variants. – Lutz Lehmann Sep 21 '17 at 16:16

1 Answers1

1

The tolerance is the largest acceptable relative error. The tolerance is the parameter fed to the solver, the error is the difference between the exact solution and the computed approximation.

Carl Christian
  • 12,583
  • 1
  • 14
  • 37