GCSE Revision Aid: This resource is designed to support your revision and may contain errors. If you find a discrepancy with your class teaching, your teacher is correct — please let us know at gcserevise@scott.scottrix.co.uk.

A20: Iteration

Higher Only AQAEdexcelOCREduqasCCEA

Find approximate solutions using systematic iteration; use suffix notation in recursive formulae

Fastmail

📋 Key Concepts

Iteration: A method for finding approximate solutions to equations by repeatedly applying a formula.
Recursive formula: Uses previous values to find new values. Written with suffix notation: x₁, x₂, x₃, etc.
General form: xn+1 = f(xn)
Start with x₁ and find x₂, x₃, x₄, ...

📝 Setting Up Iteration

Method:
  1. Rearrange the equation to x = f(x) form
  2. Choose a starting value x₁
  3. Apply the formula repeatedly
  4. Stop when values converge (stop changing)
Example 1

Find an iterative formula for x² - 3x - 5 = 0

Solution:

Rearrange: x² = 3x + 5

x = √(3x + 5)

Iterative formula: xn+1 = √(3xn + 5)

Example 2

Find another iterative formula for x² - 3x - 5 = 0

Solution:

Alternative rearrangement: x² - 3x = 5

x(x - 3) = 5

x = 5x - 3

Iterative formula: xn+1 = 5xn - 3

📝 Applying Iteration

Example 3

Use xn+1 = √(3xn + 5) with x₁ = 4 to find x₂, x₃, x₄, x₅.

Solution:

x₂ = √(3(4) + 5) = √17 = 4.123...

x₃ = √(3(4.123) + 5) = √17.369 = 4.168...

x₄ = √(3(4.168) + 5) = √17.504 = 4.184...

x₅ = √(3(4.184) + 5) = √17.552 = 4.189...

📝 Finding Solutions to Given Accuracy

Example 4

Find a solution to x² - x - 2 = 0 correct to 2 decimal places, using xn+1 = √(xn + 2) with x₁ = 2.

Solution:

x₂ = √(2 + 2) = 2

x₃ = √(2 + 2) = 2

The values converge to x = 2

Check: 2² - 2 - 2 = 0 ✓

Solution: x = 2.00

Example 5

Solve x³ + x = 5 correct to 3 d.p. using xn+1 = 5xn² + 1 with x₁ = 2.

Solution:

x₂ = 54 + 1 = 2.25

x₃ = 55.0625 + 1 = 1.988...

x₄ = 53.953 + 1 = 2.264...

x₅ = 55.124 + 1 = 1.976...

This formula is diverging. Try a different rearrangement.

xn+1 = ³√(5 - xn) with x₁ = 2:

x₂ = ³√(3) = 1.442

x₃ = ³√(3.558) = 1.527

x₄ = ³√(3.473) = 1.514

x₅ = ³√(3.486) = 1.516

x₆ = ³√(3.484) = 1.516

Solution: x = 1.516

📝 Convergence and Divergence

Convergence: Values get closer to the solution (good!).
Divergence: Values get further apart (try a different rearrangement).
Tip: If iteration diverges, try rearranging the equation differently.

❓ Practice Questions

Q1: Rearrange x² + 2x - 4 = 0 into the form x = √(4 - 2x).

Q2: Use xn+1 = 4xn - 2 with x₁ = 1. Find x₂ and x₃.

Q3: Use xn+1 = √(xn + 2) with x₁ = 2. Find x₂, x₃, x₄.

Q4: Find a root of x³ - 2x - 3 = 0 using xn+1 = ³√(2xn + 3), x₁ = 2, to 2 d.p.

Q5: Write down an iterative formula from x = 5 - x³.

Q6: A sequence converges to 1.618. What equation might it be solving?

✅ Answers

  1. x² + 2x = 4 → x² = 4 - 2x → x = √(4 - 2x) (when x > 0)
  2. x₂ = 2, x₃ = 0
  3. x₂ = 2, x₃ = 2, x₄ = 2 (converges)
  4. x ≈ 1.89
  5. xn+1 = 5 - xn³
  6. x² = x + 1 (golden ratio) or similar

🎯 Exam Tips

🧠 Problem-Solving Strategies

Problem-Solving

Rearrange the equation into x = f(x) form. Choose a starting value near the expected root. Use the ANS button on your calculator for accuracy. Keep going until the value stabilises to the required accuracy. If values diverge, try a different rearrangement.
Multi-Step Problem

Find a root of x³ - x - 3 = 0 correct to 3 decimal places. (a) Find an iterative formula. (b) Use x₁ = 1.5 to find x₂, x₃, x₄, x₅. (c) State the root.

Solution:

(a) x³ = x + 3 → x = ³√(x + 3). So xn+1 = ³√(xn + 3)

(b) x₂ = ³√(4.5) = 1.651... x₃ = ³√(4.651) = 1.669... x₄ = ³√(4.669) = 1.671... x₅ = ³√(4.671) = 1.672...

(c) Converging to x = 1.672 (3 d.p.)

⚠️ Common Errors

Watch Out!

1. Wrong: Rounding intermediate values instead of using full calculator display Correct: Use the ANS button to keep full accuracy between iterations

2. Wrong: Stopping too early before values have converged Correct: Continue until consecutive values are the same to the required decimal places

3. Wrong: Assuming all rearrangements will converge Correct: Some rearrangements diverge — if values oscillate wildly, try a different form

✍️ 6-Mark Exam Question

Extended Answer

6 marks: The equation x² + 2x - 5 = 0 has a root between 1 and 2. (a) Show that x = √(5 - 2x) is a rearrangement. (b) Use the iterative formula xn+1 = √(5 - 2xn) with x₁ = 1.5 to find x₂, x₃, x₄, x₅. (c) Find the root correct to 2 decimal places.

(a) x² + 2x - 5 = 0 → x² = 5 - 2x → x = √(5 - 2x) ✓ (positive root between 1 and 2)

(b) x₂ = √(5 - 3) = √2 = 1.414... x₃ = √(5 - 2.828) = √2.172 = 1.474... x₄ = √(5 - 2.948) = √2.052 = 1.433... x₅ = √(5 - 2.866) = √2.134 = 1.461...

(c) Continuing: the values converge to approximately x = 1.45 (2 d.p.)

Mark scheme: (a) 1 mark. (b) 3 marks for iterations (allow small rounding differences). (c) 2 marks for correct root.

📊 AO3: Reason & Interpret

Reasoning and Interpretation

A population is modelled by Pn+1 = 0.8Pn + 100, where Pn is population in year n.

(a) If P₁ = 200, find P₂, P₃, P₄.

(b) What does the 100 represent in context?

(c) The population approaches a stable value. Find this value.

Answers: (a) P₂ = 0.8(200) + 100 = 260. P₃ = 0.8(260) + 100 = 308. P₄ = 0.8(308) + 100 = 346.4. (b) 100 represents annual immigration/new arrivals. (c) When Pn+1 = Pn = P: P = 0.8P + 100 → 0.2P = 100 → P = 500.

📝 Exam Questions by Topic

🎬 Video Resources

Share this page

Ready to ace your GCSE Mathematics exams?

Get the best revision books and guides to boost your grades.