Skip to content

9709 · 2.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.

My calculator can solve these equations. Why do I need to learn this method?

Examinations for this syllabus require you to demonstrate your understanding of the numerical methods themselves. You will get marks for showing the sign change test and for writing down the sequence of iterates. Relying solely on a calculator's solver function will not earn you these marks.

How do I know which rearrangement to use for the iterative formula?

The question will almost always give you the specific rearrangement to use. If you have a choice, you would ideally pick one where the derivative of g(x)g(x) has a magnitude less than 1 near the root, as this guarantees convergence. However, for P2, you are typically guided to the correct formula.

What's the difference between 'show the root lies between 1.5 and 1.6' and 'show the root is 1.5 correct to 1 d.p.'?

To 'show the root lies between 1.5 and 1.6', you test for a sign change using f(1.5)f(1.5) and f(1.6)f(1.6). To 'show the root is 1.5 correct to 1 d.p.', you must test for a sign change on the interval that rounds to 1.5, which is [1.45,1.55][1.45, 1.55]. You would test f(1.45)f(1.45) and f(1.55)f(1.55).

What happens if my iteration gives values that get bigger and bigger or jump around?

This is called divergence. It means the iterative formula you are using will not lead you to the root from your chosen starting point. This can happen if the rearrangement x=g(x)x=g(x) is not suitable. In an exam, this is unlikely unless they are specifically asking you to show that an iteration fails.