CP-1 Proof — revision question pack

1 specification points · notes, questions, answers and worked methods

Checked against Edexcel 9FM0 section CP-1. Review basis: the qualification registry sourced from the Pearson Edexcel Level 3 Advanced GCE in Further Mathematics (9FM0) specification; registry verification recorded 17 July 2026.

How this checking works

CP-1.1 · Construct proofs using mathematical induction. Contexts include sums of series, divisibility and powers of matrices.

Explanation

  • Mathematical induction proves a statement P(n)P(n) for every integer from a stated starting value. First verify the base case.
  • Then assume P(k)P(k) is true for an arbitrary permitted integer kk; this is the induction hypothesis. Use that hypothesis to derive P(k+1)P(k+1), rather than assuming the next case.
  • For a series, add the term with index k+1k+1; for divisibility, expose the required integer factor; for a matrix power, multiply the assumed expression for AkA^k by AA.
  • The conclusion must state that the base case and inductive implication together prove P(n)P(n) for all integers in the stated range.
  • Checking several cases alone is not a proof.
The four linked stages of a proof by mathematical induction.

Worked example

Prove by mathematical induction that 52n15^{2n}-1 is divisible by 2424 for every positive integer nn.

  1. 1.For n=1n=1, 521=245^2-1=24, so the base case is divisible by 2424.
  2. 2.Assume 52k1=24m5^{2k}-1=24m for some positive integer kk and some integer mm.
  3. 3.52(k+1)1=25(52k1)+245^{2(k+1)}-1=25\left(5^{2k}-1\right)+24.
  4. 4.Substitution gives 52(k+1)1=24(25m+1)5^{2(k+1)}-1=24(25m+1), which is divisible by 2424 because 25m+125m+1 is an integer.
  5. 5.Therefore 52n15^{2n}-1 is divisible by 2424 for every positive integer nn.

Answer: The base case holds and P(k)P(k+1)P(k)\Rightarrow P(k+1), so the divisibility result follows by mathematical induction.

Common mistakes

  • Don't fall into the trap of assuming the statement for k+1k+1, which makes the inductive step circular.
  • Don't fall into the trap of writing only that the result is a multiple of 2424 without expressing the remaining factor as an integer.
  • Don't fall into the trap of checking several numerical values and treating those examples as a proof for all positive integers.

Exam tip

A proof-by-induction response must show the base case, use the named induction hypothesis in the k+1k+1 case, and finish with a quantified conclusion.

Tier 1 · Easy

  1. 1.

    Prove by mathematical induction that 1+3+5++(2n1)=n21+3+5+\cdots+(2n-1)=n^2 for every positive integer nn.

    (4)

    (Total for Question 1 is 4 marks)

  2. 2.

    Prove by mathematical induction that r=1n1r(r+1)=nn+1\displaystyle\sum_{r=1}^{n}\frac{1}{r(r+1)}=\frac{n}{n+1} for every positive integer nn.

    (5)

    (Total for Question 2 is 5 marks)

Tier 2 · Standard

  1. 1.

    Prove by mathematical induction that 8n18^n-1 is divisible by 77 for every positive integer nn.

    (5)

    (Total for Question 1 is 5 marks)

  2. 2.

    Prove by mathematical induction that n3+5nn^3+5n is divisible by 66 for every positive integer nn.

    (6)

    (Total for Question 2 is 6 marks)

  3. 3.

    For positive integers nn, use mathematical induction to prove that r=1nr2r=(n1)2n+1+2\displaystyle\sum_{r=1}^{n}r2^r=(n-1)2^{n+1}+2.

    (6)

    (Total for Question 3 is 6 marks)

Tier 3 · Hard

  1. 1.

    Let A=(2102)A=\begin{pmatrix}2&1\\0&2\end{pmatrix}. Prove by mathematical induction that An=(2nn2n102n)A^n=\begin{pmatrix}2^n&n2^{n-1}\\0&2^n\end{pmatrix} for every positive integer nn.

    (6)

    (Total for Question 1 is 6 marks)

  2. 2.

    Let A=(0112)A=\begin{pmatrix}0&-1\\1&2\end{pmatrix}. Prove by mathematical induction that An=(1nnnn+1)A^n=\begin{pmatrix}1-n&-n\\n&n+1\end{pmatrix} for every positive integer nn.

    (6)

    (Total for Question 2 is 6 marks)

  3. 3.

    A sequence satisfies u1=5u_1=5 and un+1=λun+μu_{n+1}=\lambda u_n+\mu for n1n\geq1, where λ\lambda and μ\mu are real constants. Given that u2=13u_2=13 and u3=29u_3=29, find the value of λ\lambda and the value of μ\mu. Prove by mathematical induction that un=2n+23u_n=2^{n+2}-3 for every positive integer nn.

    (7)

    (Total for Question 3 is 7 marks)

  4. 4.

    A sequence is defined by u1=5u_1=5, u2=13u_2=13 and un+2=5un+16unu_{n+2}=5u_{n+1}-6u_n for n1n\geq1. Prove by mathematical induction that un=2n+3nu_n=2^n+3^n for every positive integer nn.

    (7)

    (Total for Question 4 is 7 marks)

  5. 5.

    The Fibonacci sequence is defined by F1=1F_1=1, F2=1F_2=1 and Fn+2=Fn+1+FnF_{n+2}=F_{n+1}+F_n for n1n\geq1. Let A=(1110)A=\begin{pmatrix}1&1\\1&0\end{pmatrix}. Prove by mathematical induction that An=(Fn+1FnFnFn1)A^n=\begin{pmatrix}F_{n+1}&F_n\\F_n&F_{n-1}\end{pmatrix} for every integer n2n\geq2. Hence find the least value of nn for which the top-left entry of AnA^n is greater than 20002000.

    (8)

    (Total for Question 5 is 8 marks)

Answer key

Answers begin on a new printed page so the question pack can be completed without the solutions alongside it.

CP-1.1 · Construct proofs using mathematical induction. Contexts include sums of series, divisibility and powers of matrices.

Tier 1 · Easy

Mark scheme for CP-1.1 Tier 1 · Easy
QuestionSchemeMarks
1
  • Base case: when n=1n=1, both sides equal 11.
  • Assume 1+3++(2k1)=k21+3+\cdots+(2k-1)=k^2 for some positive integer kk.
  • Then 1+3++(2k1)+(2k+1)=k2+2k+1=(k+1)21+3+\cdots+(2k-1)+(2k+1)=k^2+2k+1=(k+1)^2.
  • Therefore the result holds for every positive integer nn by induction.
4
(4 marks)4
Notes
Verify n=1n=1. For the inductive step, the next odd number is 2(k+1)1=2k+12(k+1)-1=2k+1. Add it to the assumed sum: k2+(2k+1)=(k+1)2k^2+(2k+1)=(k+1)^2, which is exactly the required form for n=k+1n=k+1. Complete the induction conclusion.
2
  • For n=1n=1, the left side is 1/(12)=1/21/(1\cdot2)=1/2, which equals the right side.
  • Assume r=1k1r(r+1)=kk+1\displaystyle\sum_{r=1}^{k}\frac{1}{r(r+1)}=\frac{k}{k+1} for an arbitrary positive integer kk.
  • r=1k+11r(r+1)=kk+1+1(k+1)(k+2)\displaystyle\sum_{r=1}^{k+1}\frac{1}{r(r+1)}=\frac{k}{k+1}+\frac{1}{(k+1)(k+2)}.
  • Combining the fractions gives k(k+2)+1(k+1)(k+2)=(k+1)2(k+1)(k+2)=k+1k+2\dfrac{k(k+2)+1}{(k+1)(k+2)}=\dfrac{(k+1)^2}{(k+1)(k+2)}=\dfrac{k+1}{k+2}.
  • Therefore the identity holds for every positive integer nn by mathematical induction.
5
(5 marks)5
Notes
Verify the base case n=1n=1. Assume the identity at n=kn=k, then append the term with index k+1k+1. The induction hypothesis gives k/(k+1)+1/((k+1)(k+2))k/(k+1)+1/((k+1)(k+2)). Its numerator is k(k+2)+1=(k+1)2k(k+2)+1=(k+1)^2, so the sum simplifies to (k+1)/(k+2)(k+1)/(k+2), which is the required form at k+1k+1. The base case and inductive implication complete the proof.

Tier 2 · Standard

Mark scheme for CP-1.1 Tier 2 · Standard
QuestionSchemeMarks
1
  • Base case: 811=78^1-1=7, which is divisible by 77.
  • Assume 8k1=7m8^k-1=7m for some integer mm.
  • 8k+11=8(8k1)+7=7(8m+1)8^{k+1}-1=8(8^k-1)+7=7(8m+1).
  • Since 8m+18m+1 is an integer, 8k+118^{k+1}-1 is divisible by 77.
  • Therefore the result holds for every positive integer nn by induction.
5
(5 marks)5
Notes
After the base case, express the hypothesis as 8k1=7m8^k-1=7m with mZm\in\mathbb Z. Rewrite the next case so the hypothesis appears: 8k+11=8(8k1)+78^{k+1}-1=8(8^k-1)+7. Substitution gives 7(8m+1)7(8m+1), an integer multiple of 77, so the inductive step and conclusion follow.
2
  • For n=1n=1, n3+5n=1+5=6n^3+5n=1+5=6, which is divisible by 66.
  • Assume k3+5k=6mk^3+5k=6m for an arbitrary positive integer kk and some integer mm.
  • (k+1)3+5(k+1)=k3+5k+3k(k+1)+6(k+1)^3+5(k+1)=k^3+5k+3k(k+1)+6.
  • Since k(k+1)k(k+1) is even, write k(k+1)=2qk(k+1)=2q for an integer qq.
  • The next expression is 6m+6q+6=6(m+q+1)6m+6q+6=6(m+q+1), so it is divisible by 66.
  • Therefore n3+5nn^3+5n is divisible by 66 for every positive integer nn.
6
(6 marks)6
Notes
The domain begins at 11, so verify 13+5(1)=61^3+5(1)=6. Write the induction hypothesis as k3+5k=6mk^3+5k=6m. The difference between the next expression and the assumed one is 3k2+3k+6=3k(k+1)+63k^2+3k+6=3k(k+1)+6. Consecutive integers have an even product, so write k(k+1)=2qk(k+1)=2q with qZq\in\mathbb Z. The next expression is then 6m+6q+66m+6q+6, an integer multiple of 66, completing the induction step and quantified conclusion.
3
  • For n=1n=1, the left side is 22 and the right side is (11)22+2=2(1-1)2^2+2=2.
  • For an arbitrary positive integer kk, assume (k1)2k+1+2=r=1kr2r(k-1)2^{k+1}+2=\displaystyle\sum_{r=1}^{k}r2^r.
  • r=1k+1r2r=2k+1[(k1)+(k+1)]+2\displaystyle\sum_{r=1}^{k+1}r2^r=2^{k+1}[(k-1)+(k+1)]+2.
  • The bracket is 2k2k, so the sum is 2k2k+1+22k\cdot2^{k+1}+2.
  • This is k2k+2+2=((k+1)1)2(k+1)+1+2k\cdot2^{k+2}+2=((k+1)-1)2^{(k+1)+1}+2.
  • The verified base case and inductive implication establish the formula for all positive integers nn.
6
(6 marks)6
Notes
Verify the formula at n=1n=1. Assume it at n=kn=k, then append the term (k+1)2k+1(k+1)2^{k+1}. The two coefficients of 2k+12^{k+1} add to (k1)+(k+1)=2k(k-1)+(k+1)=2k, so the new sum is k2k+2+2k\cdot2^{k+2}+2, exactly the claimed expression with k+1k+1 in place of nn.

Tier 3 · Hard

Mark scheme for CP-1.1 Tier 3 · Hard
QuestionSchemeMarks
1
  • Base case: the stated formula gives A1=(2102)A^1=\begin{pmatrix}2&1\\0&2\end{pmatrix}.
  • Assume Ak=(2kk2k102k)A^k=\begin{pmatrix}2^k&k2^{k-1}\\0&2^k\end{pmatrix}.
  • Ak+1=AkA=(2k+12k+k2k02k+1)A^{k+1}=A^kA=\begin{pmatrix}2^{k+1}&2^k+k2^k\\0&2^{k+1}\end{pmatrix}.
  • The upper-right entry is (k+1)2k(k+1)2^k, so this is the required formula with k+1k+1 in place of nn.
  • Therefore the result holds for every positive integer nn by induction.
6
(6 marks)6
Notes
Check n=1n=1, including the upper-right entry 120=11\cdot2^0=1. Assume the formula for AkA^k and multiply on the right by AA. The upper-right entry is 2k1+k2k12=(k+1)2k2^k\cdot1+k2^{k-1}\cdot2=(k+1)2^k; the diagonal entries are 2k+12^{k+1}. This matches the target at k+1k+1, completing the proof.
2
  • For n=1n=1, the proposed matrix is (0112)=A\begin{pmatrix}0&-1\\1&2\end{pmatrix}=A.
  • Assume Ak=(1kkkk+1)A^k=\begin{pmatrix}1-k&-k\\k&k+1\end{pmatrix} for an arbitrary positive integer kk.
  • Ak+1=AkA=(1kkkk+1)(0112)A^{k+1}=A^kA=\begin{pmatrix}1-k&-k\\k&k+1\end{pmatrix}\begin{pmatrix}0&-1\\1&2\end{pmatrix}.
  • Multiplication gives Ak+1=(k(k+1)k+1k+2)A^{k+1}=\begin{pmatrix}-k&-(k+1)\\k+1&k+2\end{pmatrix}.
  • This is the stated form with k+1k+1 in place of nn.
  • Therefore the formula holds for every positive integer nn by mathematical induction.
6
(6 marks)6
Notes
Check the base case entry by entry. For the inductive step, multiply AkA^k by AA, so Ak+1=AkAA^{k+1}=A^kA. Multiplication gives entries k-k, (k+1)-(k+1), k+1k+1 and k+2k+2, exactly 1(k+1)1-(k+1), (k+1)-(k+1), k+1k+1 and (k+1)+1(k+1)+1. Thus the induction hypothesis produces the required next power, and the quantified conclusion follows.
3
  • 5λ+μ=135\lambda+\mu=13 and 13λ+μ=2913\lambda+\mu=29.
  • Solving the simultaneous equations gives λ=2\lambda=2 and μ=3\mu=3.
  • For n=1n=1, 21+23=5=u12^{1+2}-3=5=u_1.
  • Assume uk=2k+23u_k=2^{k+2}-3 for an arbitrary positive integer kk.
  • Using the recurrence, uk+1=2(2k+23)+3u_{k+1}=2(2^{k+2}-3)+3.
  • Simplifying gives uk+1=2k+33=2(k+1)+23u_{k+1}=2^{k+3}-3=2^{(k+1)+2}-3.
  • The base case and the implication P(k)P(k+1)P(k)\Rightarrow P(k+1) establish un=2n+23u_n=2^{n+2}-3 for all positive integers nn.
7
(7 marks)7
Notes
The two supplied recurrence steps give simultaneous equations whose difference is 8λ=168\lambda=16, hence λ=2\lambda=2 and μ=3\mu=3. Check the base case. Under the induction hypothesis, substitute the claimed uku_k into uk+1=2uk+3u_{k+1}=2u_k+3, simplify the exponential and constant terms separately, and match the result to the formula at k+1k+1.
4
  • For n=1n=1, 21+31=5=u12^1+3^1=5=u_1.
  • For n=2n=2, 22+32=13=u22^2+3^2=13=u_2.
  • For an arbitrary positive integer kk, assume uk=2k+3ku_k=2^k+3^k and uk+1=2k+1+3k+1u_{k+1}=2^{k+1}+3^{k+1}.
  • uk+2=5(2k+1+3k+1)6(2k+3k)u_{k+2}=5(2^{k+1}+3^{k+1})-6(2^k+3^k).
  • The powers of 22 simplify to 5(2k+1)6(2k)=2k+25(2^{k+1})-6(2^k)=2^{k+2}.
  • The powers of 33 simplify to 5(3k+1)6(3k)=3k+25(3^{k+1})-6(3^k)=3^{k+2}, so uk+2=2k+2+3k+2u_{k+2}=2^{k+2}+3^{k+2}.
  • The two base cases and the inductive implication prove the formula for every positive integer nn.
7
(7 marks)7
Notes
A second-order recurrence needs two base cases and a two-term induction hypothesis. Substitute the claimed forms for uku_k and uk+1u_{k+1} into the recurrence. Factoring 2k2^k and 3k3^k separately produces 2k+22^{k+2} and 3k+23^{k+2}, which is the required expression for the next term.
5
  • For n=2n=2, A2=(2111)=(F3F2F2F1)A^2=\begin{pmatrix}2&1\\1&1\end{pmatrix}=\begin{pmatrix}F_3&F_2\\F_2&F_1\end{pmatrix}.
  • Assume Ak=(Fk+1FkFkFk1)A^k=\begin{pmatrix}F_{k+1}&F_k\\F_k&F_{k-1}\end{pmatrix} for an arbitrary integer k2k\geq2.
  • Ak+1=AkA=(Fk+1+FkFk+1Fk+Fk1Fk)A^{k+1}=A^kA=\begin{pmatrix}F_{k+1}+F_k&F_{k+1}\\F_k+F_{k-1}&F_k\end{pmatrix}.
  • Using the Fibonacci recurrence, this is (Fk+2Fk+1Fk+1Fk)\begin{pmatrix}F_{k+2}&F_{k+1}\\F_{k+1}&F_k\end{pmatrix}.
  • The base case and inductive implication prove the stated matrix formula for every integer n2n\geq2.
  • The top-left entry of AnA^n is Fn+1F_{n+1}.
  • F17=1597F_{17}=1597 and F18=2584F_{18}=2584.
  • The Fibonacci sequence is increasing from F2F_2 onwards, so the least value is n=17n=17.
8
(8 marks)8
Notes
Verify the matrix identity at n=2n=2. Multiply the assumed expression for AkA^k on the right by AA and use the Fibonacci recurrence in both rows to obtain the required expression for Ak+1A^{k+1}. The proved top-left entry is Fn+1F_{n+1}; compare the consecutive values F17F_{17} and F18F_{18} and use monotonicity to justify the least index.