9709 · 3.6
Numerical solution of equations — FAQ
Frequently asked questions for 9709 Numerical solution of equations. Direct answers first, then deeper explanation — then practise with marking.
How do I choose a starting value $x_0$ if it's not given?
First, use the change-of-sign rule to find a small interval that contains the root. A good choice for is the midpoint of this interval, . Alternatively, sketch the graph to see which end of the interval looks closer to the root.
Why do we need to rearrange $f(x)=0$ to $x=g(x)$? Can't we just use $f(x)$?
The iterative method works by finding a fixed point, where the input equals the output (). This is graphically where the curve intersects the line . This intersection point is also a root of the original equation . Simply iterating with (e.g., ) doesn't have this property and won't converge to a root of .
What's the difference between a cobweb and a staircase diagram?
Both show how an iteration converges. A staircase diagram happens when , and the approximations approach the root from one side. A cobweb diagram happens when , and the approximations oscillate around the root, spiralling inwards.
Is the Newton-Raphson method always better than the standard iterative method?
Not always. Newton-Raphson usually converges much faster (it has 'quadratic convergence'), but it is more sensitive to the starting value and can fail spectacularly if you start near a turning point. The standard iteration is often more robust, even if it's slower.
My calculator gives an answer straight away. Why do I need to show all the steps?
Examiners are testing your understanding of the numerical process, not just your ability to use a calculator's 'solve' function. Marks are awarded for showing the correct method: stating the formula, showing the values of the first few iterations to sufficient precision, and performing a final sign-change check to justify your rounded answer.