Study Guide

Numerical methods

CIE A-Level MathematicsΒ· 15 min read

1. Locating Roots by Sign Changeβ˜…β˜…β˜†β˜†β˜†β± 15 min

If a function is continuous on the closed interval , and and have opposite signs, then there is at least one root of in the open interval . This is the foundation of all numerical root finding.

πŸ“˜ Definition

Root of an equation

A value such that , also called a zero of the function .

πŸ“ Worked Example

Show that has a root between and .

  1. 1

    Define the function for the equation:

  2. 2
    f(x)=exβˆ’3x2f(x) = e^x - 3x^2
  3. 3

    Evaluate at the endpoints of the interval:

  4. 4
    f(3)=e3βˆ’3(3)2β‰ˆ20.0855βˆ’27=βˆ’6.9145<0f(3) = e^3 - 3(3)^2 \approx 20.0855 - 27 = -6.9145 < 0
  5. 5
    f(4)=e4βˆ’3(4)2β‰ˆ54.598βˆ’48=6.598>0f(4) = e^4 - 3(4)^2 \approx 54.598 - 48 = 6.598 > 0
  6. 6

    is continuous for all real , as a combination of exponential and polynomial functions. Since and have opposite signs, there is at least one root in .

Exam tip:

Always explicitly state that the function is continuous when justifying a root in an interval, CIE allocates one mark for this step.

2. Fixed Point Iterationβ˜…β˜…β˜…β˜†β˜†β± 20 min

To find an approximate value for a root, we rearrange into the form . Starting from an initial guess , we generate a sequence of approximations using the recurrence relation .

πŸ“˜ Definition

Convergence Condition

If (where is the fixed point), the iteration will converge to for starting values close enough to . If , the iteration will diverge.

πŸ“ Worked Example

Find the root of between 0 and 1, correct to 2 decimal places, starting from .

  1. 1

    Rearrange the equation into form:

  2. 2
    x3+1=3xβ€…β€ŠβŸΉβ€…β€Šx=x3+13,g(x)=x3+13x^3 + 1 = 3x \implies x = \frac{x^3 + 1}{3}, \quad g(x) = \frac{x^3 + 1}{3}
  3. 3

    Check convergence: , so for , , so iteration converges.

  4. 4

    Generate the sequence of approximations:

  5. 5
    x1=(0.5)3+13=0.375x_1 = \frac{(0.5)^3 + 1}{3} = 0.375
  6. 6
    x2=(0.375)3+13β‰ˆ0.35095x_2 = \frac{(0.375)^3 + 1}{3} \approx 0.35095
  7. 7
    x3β‰ˆ0.34774,x4β‰ˆ0.34730x_3 \approx 0.34774, \quad x_4 \approx 0.34730
  8. 8

    Both and round to 0.35 to 2 decimal places, so the root is approximately 0.35.

Exam tip:

Always show two successive iterations that round to the same value to confirm your accuracy is correct.

3. Newton-Raphson Methodβ˜…β˜…β˜…β˜†β˜†β± 20 min

The Newton-Raphson method is a fast, tangent-based iterative method that uses differentiation to improve approximations. It is one of the most commonly tested methods in CIE P3 exams.

πŸ“˜ Definition

Newton-Raphson Iteration

A method to find successive approximations for a root of , given by the formula:

xn+1=xnβˆ’f(xn)fβ€²(xn)x_{n+1} = x_n - \frac{f(x_n)}{f'(x_n)}
πŸ“ Worked Example

Find the positive root of correct to 3 decimal places, starting from .

  1. 1

    We have , so . Substitute into the Newton-Raphson formula:

  2. 2
    xn+1=xnβˆ’xn2βˆ’52xn=xn2+52xnx_{n+1} = x_n - \frac{x_n^2 - 5}{2x_n} = \frac{x_n^2 + 5}{2x_n}
  3. 3

    First iteration with :

  4. 4
    x1=22+52(2)=2.25x_1 = \frac{2^2 + 5}{2(2)} = 2.25
  5. 5

    Second iteration:

  6. 6
    x2=(2.25)2+52(2.25)β‰ˆ2.23611x_2 = \frac{(2.25)^2 + 5}{2(2.25)} \approx 2.23611
  7. 7

    Third iteration:

  8. 8
    x3β‰ˆ2.23607x_3 \approx 2.23607
  9. 9

    Both and round to 2.236 to 3 decimal places, so the root is approximately 2.236.

Exam tip:

If you are asked to use Newton-Raphson, always write the full formula before substituting values to get full method marks.

4. Bisection Methodβ˜…β˜…β˜†β˜†β˜†β± 15 min

The bisection method is a simple iterative method based on the sign change principle. It is slower than other methods but guaranteed to converge if a root exists in the initial interval.

πŸ“ Worked Example

Find the root of between 3 and 4, correct to 1 decimal place.

  1. 1

    We know , . Find the midpoint of the interval and check the sign of at the midpoint:

  2. 2
    f(3.5)β‰ˆβˆ’3.635<0β€…β€ŠβŸΉβ€…β€Šroot in (3.5,4)f(3.5) \approx -3.635 < 0 \implies \text{root in } (3.5, 4)
  3. 3
    f(3.75)β‰ˆ0.3325>0β€…β€ŠβŸΉβ€…β€Šroot in (3.5,3.75)f(3.75) \approx 0.3325 > 0 \implies \text{root in } (3.5, 3.75)
  4. 4
    f(3.625)β‰ˆβˆ’1.75<0β€…β€ŠβŸΉβ€…β€Šroot in (3.625,3.75)f(3.625) \approx -1.75 < 0 \implies \text{root in } (3.625, 3.75)
  5. 5
    f(3.6875)β‰ˆβˆ’0.73<0β€…β€ŠβŸΉβ€…β€Šroot in (3.6875,3.75)f(3.6875) \approx -0.73 < 0 \implies \text{root in } (3.6875, 3.75)
  6. 6

    All values in round to 3.7 to 1 decimal place, so the root is approximately 3.7.

Exam tip:

Record the sign of f(x) at each midpoint to avoid mixing up which interval to keep next.

5. Common Pitfalls

Wrong move:

Forgetting to state the function is continuous when justifying a root in an interval

Why:

CIE explicitly allocates one mark for this statement, which is often lost

Correct move:

Always add the line 'f(x) is continuous on [a, b]' after calculating f(a) and f(b)

Wrong move:

Stopping after one iteration when asked for a given accuracy

Why:

Examiners require you to confirm your approximation is correct to the required accuracy

Correct move:

Calculate at least two successive approximations that round to the same value

Wrong move:

Claiming no root exists when there is no sign change in an interval

Why:

Tangent roots and pairs of roots do not produce a sign change but still exist

Correct move:

Only use sign change to confirm a root exists, never to confirm a root does not exist

Wrong move:

Using Newton-Raphson when is very close to zero

Why:

This causes near division by zero, leading to a divergent or incorrect iteration

Correct move:

Change your starting approximation or use the bisection method instead

6. Quick Reference Cheatsheet

Method

Key Rule

Convergence

Accuracy Check

Sign Change

f(a)f(b) < 0 + continuous = root in (a,b)

N/A (location)

Check interval bounds round to same value

Fixed Point Iteration

, converges if

Linear

Two iterations round to same value

Newton-Raphson

Quadratic (fast)

Two iterations round to same value

Bisection

Halve interval, keep subinterval with sign change

Linear (slow, guaranteed)

Check interval bounds round to same value

7. Frequently Asked

Do I need to prove convergence in CIE exams?

Most questions only ask you to locate a root or apply an iterative method. You only need to check if explicitly asked, but it is good practice to mention it.

When this came up on past exams

AI-estimated based on syllabus patterns β€” cross-check with official past papers for accuracy. Use only as revision-focus signals.

  • 2022 Β· 12

    10 mark root finding question

  • 2023 Β· 13

    Newton-Raphson method question

  • 2021 Β· 22

    Iterative convergence check

Going deeper

What's Next

Numerical methods are the foundation for solving real-world problems in engineering, data science and physics, where most equations cannot be solved algebraically. The iterative principles you learned here for root finding extend directly to numerical integration, differential equations and other advanced numerical techniques. This subtopic relies heavily on differentiation, so revisiting that topic will help you master harder numerical problems that appear in CIE P3 exams.