9709/23

Mathematics 9709/23October/November 2016

Cambridge AS Level · Pure Mathematics 2 · worked solutions for every part, with the mark scheme

7
questions
50
marks
75
minutes

Topics Logarithmic and Exponential Functions · Integration · Numerical Solution of Equations · Algebra · Differentiation · Trigonometry

Q1Numerical Solution of EquationsFree sample

The sequence of values given by the iterative formula

xn+1=4xn2+2xn3x_{n+1} = \frac{4}{x_n^2} + \frac{2x_n}{3}

with initial value x1=2x_1 = 2, converges to α\alpha.

(i)

Use this iterative formula to find α\alpha correct to 3 decimal places. Give the result of each iteration to 5 decimal places.

3M
DifficultyMedium-Easy
Worked solution

Approach

Starting from the initial value x1=2x_1 = 2, apply the iterative formula repeatedly, recording each result to 5 decimal places, until consecutive iterations agree to the required 3 decimal places.

Working

x1=2x2=422+2(2)3=2.33333x3=4(2.33333)2+2(2.33333)3=2.29024x4=4(2.29024)2+2(2.29024)3=2.28943x5=4(2.28943)2+2(2.28943)3=2.28942x6=4(2.28942)2+2(2.28942)3=2.28942\begin{aligned} x_1 &= 2 \\ x_2 &= \frac{4}{2^2} + \frac{2(2)}{3} = 2.33333 \\ x_3 &= \frac{4}{(2.33333)^2} + \frac{2(2.33333)}{3} = 2.29024 \\ x_4 &= \frac{4}{(2.29024)^2} + \frac{2(2.29024)}{3} = 2.28943 \\ x_5 &= \frac{4}{(2.28943)^2} + \frac{2(2.28943)}{3} = 2.28942 \\ x_6 &= \frac{4}{(2.28942)^2} + \frac{2(2.28942)}{3} = 2.28942 \end{aligned}

Since x5=x6=2.28942x_5 = x_6 = 2.28942, the value lies in the interval (2.2885,2.2895)(2.2885, 2.2895), so correct to 3 decimal places we have α=2.289\alpha = 2.289.

Answer

α=2.289\alpha = 2.289
Final answer

alpha = 2.289

Detailed explanation

Walkthrough

We start with the given initial value x1=2x_1 = 2 and substitute it into the iterative formula xn+1=4xn2+2xn3x_{n+1} = \frac{4}{x_n^2} + \frac{2x_n}{3}. Each step produces a new approximation. The problem asks us to give each result to 5 decimal places, which gives us enough precision to safely round the final answer to 3 decimal places. We keep iterating until two consecutive values agree to the required 3 decimal places. Here x5x_5 and x6x_6 both equal 2.289422.28942, which rounds to 2.2892.289. Since the sequence has clearly converged (two consecutive iterations give the same 5-decimal value), we can confidently state the root to 3 decimal places.

Key Takeaways

This question tests the core idea of an iterative formula: you repeatedly feed the previous output back into the formula to generate a sequence that converges to a root. It also emphasises the importance of maintaining sufficient precision during intermediate steps so the final rounded answer is reliable, and of explicitly showing enough iterations to justify the claimed accuracy.

Common Mistakes

  • Rounding intermediate values to 3 decimal places too early, which can push the final answer off by one unit in the last digit.
  • Making arithmetic slips when squaring or dividing, especially with recurring decimals.
  • Stopping after only one or two iterations without showing that the value has stabilised, which loses the justification mark.

Things to Be Careful About

  • Always give each iteration to 5 decimal places as instructed.
  • The mark scheme requires you to justify accuracy to 3 dp, either by showing consecutive identical values or by demonstrating a sign change in the interval (2.2885,2.2895)(2.2885, 2.2895).
  • Make sure you use the exact formula each time; do not round the formula's coefficients.
Techniques used
apply an iterative formula repeatedlyrecord results to a specified precisionjustify accuracy to a required number of decimal places
(ii)

State an equation that is satisfied by α\alpha, and hence find the exact value of α\alpha.

2M
DifficultyMedium-Easy
Worked solution

Approach

When a sequence converges to a limit α\alpha, both xnx_n and xn+1x_{n+1} tend to α\alpha. Substitute α\alpha for both in the iterative formula to obtain an equation satisfied by α\alpha, then solve that equation exactly.

Working

Since the sequence converges to α\alpha, we have

α=4α2+2α3\alpha = \frac{4}{\alpha^2} + \frac{2\alpha}{3}

Multiply through by α2\alpha^2:

α3=4+2α33\alpha^3 = 4 + \frac{2\alpha^3}{3}

Multiply through by 3:

3α3=12+2α33\alpha^3 = 12 + 2\alpha^3 α3=12\alpha^3 = 12

Hence

α=123\alpha = \sqrt[3]{12}

Answer

α=123or121/3\alpha = \sqrt[3]{12} \quad \text{or} \quad 12^{1/3}
Final answer

alpha = cube root of 12 (or 12^(1/3))

Detailed explanation

Walkthrough

For a converging iterative sequence, the limit α\alpha satisfies the fixed-point equation. This means that as nn becomes very large, both xnx_n and xn+1x_{n+1} become arbitrarily close to α\alpha, so we can replace both with α\alpha in the formula. Doing this gives the equation α=4α2+2α3\alpha = \frac{4}{\alpha^2} + \frac{2\alpha}{3}.

To solve it exactly, we first multiply every term by α2\alpha^2 to clear the fraction, obtaining α3=4+2α33\alpha^3 = 4 + \frac{2\alpha^3}{3}. Next, we multiply through by 3 to remove the remaining fraction, giving 3α3=12+2α33\alpha^3 = 12 + 2\alpha^3. Subtracting 2α32\alpha^3 from both sides yields α3=12\alpha^3 = 12. Finally, taking the cube root gives the exact value α=123\alpha = \sqrt[3]{12}.

Key Takeaways

This part demonstrates the fundamental relationship between an iterative formula and the root it converges to: the limit satisfies the fixed-point equation x=F(x)x = F(x). It also reinforces algebraic manipulation of equations involving fractions and indices, and how to express an exact irrational root.

Common Mistakes

  • Forgetting to replace both xnx_n and xn+1x_{n+1} with α\alpha — a common error is leaving one as a variable.
  • Making algebraic errors when multiplying by α2\alpha^2, such as forgetting to multiply the 2α3\frac{2\alpha}{3} term correctly.
  • Not simplifying the cubic equation fully, or incorrectly taking a square root instead of a cube root.

Things to Be Careful About

  • The equation must be stated clearly before solving; the mark scheme awards a mark for the fixed-point equation itself.
  • Ensure the final answer is given in exact form (123\sqrt[3]{12} or 121/312^{1/3}), not as a decimal approximation.
  • Double-check the algebra: multiplying by α2\alpha^2 and then by 3 must be applied to every term.
Techniques used
take the limit of the iterative formulaform a fixed-point equationsolve the resulting algebraic equation

The rest of this paper

6 more questions
  • Q2Logarithmic and Exponential Functions5M
  • Q3Integration5M
  • Q4Algebra · Logarithmic and Exponential Functions8M
  • Q5Integration8M
  • Q6Differentiation · Logarithmic and Exponential Functions9M
  • Q7Trigonometry10M
Loading the full paper…