Numerical solution of equations
Edexcel International A-Level Further MathematicsΒ· 2018 FP1 Specification Issue 3, Section 3.1Β· 25 min read
1. Root Location via Sign Change Testβ βββββ± 10 min
To solve f(x)=0 numerically, you first confirm a root exists in an interval using the sign change test. For a continuous function, opposite signs of f(a) and f(b) prove at least one root lies in the open interval (a, b).
Sign Change Test
For a continuous function f(x), if f(a) < 0 and f(b) > 0 (or vice versa), f(x)=0 has at least one root in (a, b).
Example:
f(x) = xΒ³ - 3x +1, f(1) = -1, f(2) = 3, so root in (1,2)
Show that f(x) = xΒ³ - 3x + 1 has a root in the interval (1, 2).
- 1
Calculate f(1):
- 2
Calculate f(2):
- 3
f(1) is negative, f(2) is positive, and f(x) is a polynomial (continuous for all real x), so a root exists in (1, 2).
Exam tip:
Always explicitly state f(x) is continuous when using the sign change test to secure full marks.
2. Interval Bisection Methodβ β ββββ± 15 min
Interval bisection refines a known root interval by repeatedly splitting it at the midpoint, and retaining the sub-interval that contains the sign change. No formula for this method is provided in the exam, so you must recall the process.
Interval Bisection
Iterative method to narrow a root interval (a, b): calculate midpoint c = (a+b)/2, test f(c). If f(a) and f(c) have opposite signs, keep (a, c); else keep (c, b). Repeat until the interval meets your required accuracy.
Starting with interval (1, 2) for f(x) = xΒ³ - 3x + 1, use interval bisection twice to find a narrower interval containing the root.
- 1
First iteration: calculate midpoint of (1,2):
- 2
Calculate f(1.5):
- 3
f(1.5) is negative, f(2) is positive, so retain interval (1.5, 2).
- 4
Second iteration: calculate midpoint of (1.5,2):
- 5
Calculate f(1.75):
- 6
f(1.5) is negative, f(1.75) is positive, so the refined interval is (1.5, 1.75).
Exam tip:
Write down all intermediate f(x) values explicitly, even if they are simple, to secure method marks if you make an arithmetic error.
3. Linear Interpolation Methodβ β β βββ± 15 min
Linear interpolation (false position method) is faster than bisection: it estimates the root as the x-intercept of a straight line connecting the points (a, f(a)) and (b, f(b)) of the known root interval. No formula for this method is provided in the exam.
Linear Interpolation for Root Finding
For interval (a,b) with opposite sign f(a), f(b), the x-intercept c of the line connecting (a, f(a)) and (b, f(b)) is the next root estimate, derived using similar triangles: \frac{c - a}{b - c} = \frac{|f(a)|}{|f(b)|}.
Use linear interpolation on the interval (1, 2) for f(x) = xΒ³ - 3x + 1 to find an estimate for the root.
- 1
We know f(1) = -1, f(2) = 3. Use similar triangles to relate distances:
- 2
Rearrange to solve for c:
- 3
Check f(1.25): f(1.25) β -0.797, so the refined interval is (1.25, 2).
Exam tip:
Derive the root estimate using similar triangles instead of memorizing the formula to avoid sign errors.
4. Newton-Raphson Processβ β β β ββ± 20 min
β Calculator OK
The Newton-Raphson method is the fastest of the three methods, using the derivative of f(x) to refine iterative root estimates. The formula is provided in your exam formula book, and only P1/P2 differentiation rules are required to compute f'(x).
Newton-Raphson Iteration
Iterative formula to refine a root estimate x_n to x_{n+1}: x_{n+1} = x_n - \frac{f(x_n)}{f'(x_n)}, where f'(x_n) is the first derivative of f(x) evaluated at x_n.
Starting with initial estimate x_0 = 1.5 for f(x) = xΒ³ - 3x + 1, use Newton-Raphson twice to find an estimate for the root, and justify it is accurate to 3 decimal places.
- 1
First compute the derivative of f(x):
- 2
First iteration (x_0 = 1.5):
- 3
- 4
Second iteration (x_1 = 1.5333):
- 5
- 6
Justify accuracy to 3 dp: f(1.5315) β -0.0007, f(1.5325) β 0.0034, sign change confirms root is 1.532 to 3 dp.
Exam tip:
Double-check your derivative calculation before proceeding with iterations, as an incorrect derivative will invalidate all subsequent estimates.
5. Common Pitfalls
Wrong move:
Using the sign change test without stating f(x) is continuous
Why:
Examiners require explicit confirmation of continuity to apply the test; marks are deducted for only stating opposite signs.
Correct move:
Add a line like "f(x) is a polynomial, so continuous for all real x" every time you use the sign change test.
Wrong move:
Rounding intermediate iterative estimates to the required final accuracy early
Why:
Early rounding introduces errors that propagate through subsequent iterations, leading to incorrect final values.
Correct move:
Keep at least 4 decimal places for all intermediate estimates, only round the final answer to the required accuracy.
Wrong move:
Trying to recall pre-written formulas for bisection and linear interpolation
Why:
Many students misremember formulas and lose marks; no formulas for these methods are provided in the exam.
Correct move:
Practice deriving linear interpolation via similar triangles and calculating bisection midpoints from first principles.
Wrong move:
Using FP3 differentiation rules (e.g. hyperbolic, inverse trig) for Newton-Raphson
Why:
Edexcel restricts f(x) to P1/P2 functions, so these derivatives will never appear, and using them is unnecessary.
Correct move:
Only use P1/P2 differentiation rules (power, product, quotient, chain rule for basic trig, exponential, log functions) to compute f'(x).
Wrong move:
Failing to justify final answer accuracy with a sign change test
Why:
Examiners require proof the root falls within the rounding interval, not just a matching iterative estimate.
Correct move:
Test the upper and lower bound of the rounding interval (e.g. x Β± 0.5Γ10^(-n) for n decimal places) to confirm a sign change before stating your final answer.
6. Quick Reference Cheatsheet
Method | Process/Formula | Speed | Required Working |
|---|---|---|---|
Sign Change Test | Check f(a)Β·f(b) < 0, confirm f(x) continuous | N/A | f(a), f(b) values, continuity statement |
Interval Bisection | Midpoint c = (a+b)/2, keep interval with sign change | Slow | All midpoint values, f(c) values, interval after each iteration |
Linear Interpolation | Derive x-intercept via similar triangles | Medium | Similar triangles derivation, c value, f(c) value, new interval |
Newton-Raphson | x_{n+1} = x_n - f(x_n)/f'(x_n) (given in formula book) | Fast | Derivative f'(x), all iterate values, sign change for accuracy justification |
7. Frequently Asked
Do I need to memorize the Newton-Raphson formula?
No, the formula is printed in the official FP1 formula book provided in your exam. You only need to memorize the processes for interval bisection and linear interpolation, as no formulas are provided for these.
How do I justify my answer is correct to 3 decimal places?
Test the lower and upper bound of the rounding interval: for an answer of 1.532, calculate f(1.5315) and f(1.5325). A sign change confirms the root lies within this interval, so it rounds to 1.532 to 3 dp.
Can I use a CAS calculator for this topic?
No, CAS calculators are strictly forbidden for all Edexcel IAL Further Maths papers. Only standard scientific calculators are permitted.
Going deeper
What's Next
Now that you have mastered the three numerical root-finding methods for Edexcel IAL FP1, you are ready to practice full exam-style questions combining these methods with sign change accuracy justification. These questions typically make up 8-12 marks of your 75-mark FP1 paper, so regular timed practice is critical to avoid arithmetic errors and ensure you show all required working for full marks. Next, you can move on to other high-weighted FP1 topics including matrices and complex numbers, and practice past paper topic questions to familiarize yourself with Edexcel's marking expectations. Remember to only use a permitted non-CAS scientific calculator for all practice and your actual exam.
