Skip to content

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 [a,b][a, b] that contains the root. A good choice for x0x_0 is the midpoint of this interval, (a+b)/2(a+b)/2. 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 xn+1=g(xn)x_{n+1} = g(x_n) works by finding a fixed point, where the input equals the output (x=g(x)x = g(x)). This is graphically where the curve y=g(x)y=g(x) intersects the line y=xy=x. This intersection point is also a root of the original equation f(x)=0f(x)=0. Simply iterating with f(x)f(x) (e.g., xn+1=f(xn)x_{n+1} = f(x_n)) doesn't have this property and won't converge to a root of f(x)=0f(x)=0.

What's the difference between a cobweb and a staircase diagram?

Both show how an iteration converges. A staircase diagram happens when 0<g(x)<10 < g'(x) < 1, and the approximations approach the root from one side. A cobweb diagram happens when 1<g(x)<0-1 < g'(x) < 0, 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 x=g(x)x=g(x) 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.