Sequences & Series
Level: 3 (From-scratch derivations, code-from-memory, explain-out-loud) Time limit: 45 minutes Total marks: 60
Instructions: Show every step. Where a derivation is requested, start from first principles — do not merely quote a result. "Explain-out-loud" parts require reasoning in words alongside algebra.
Q1. (10 marks) — Derive the sum of an infinite GP + convergence proof.
(a) Starting from the finite sum , derive a closed form for (state the method). (4)
(b) Explain out loud why the infinite sum converges only when , and prove that in that case . (4)
(c) Evaluate . (2)
Q2. (10 marks) — Prove the AM–GM–HM inequality chain for two positives.
For positive reals , prove from scratch that stating the equality condition. Explain out loud where each inequality "comes from." (8) Hence show that for the three means are and confirm the ordering. (2)
Q3. (12 marks) — Σ-formulae and telescoping.
(a) Prove by first principles (using the algebraic identity for ) that (6)
(b) Using telescoping, evaluate and state its limit as . (4)
(c) Evaluate using the formula in (a). (2)
Q4. (10 marks) — Mathematical induction.
Prove by induction that for all integers : Clearly label base case, inductive hypothesis, and inductive step, and explain out loud what the hypothesis is being used for. (10)
Q5. (10 marks) — Binomial general term.
(a) Write the general term of . (3)
(b) Find the term independent of . (4)
(c) Using the binomial series for rational index, find an approximation of to 4 decimal places (keep terms up to the term). (3)
Q6. (8 marks) — Arithmetic–geometric series (from-scratch sum).
Derive, using the "multiply by common ratio and subtract" technique, a closed form for Show all shifting/subtraction steps, then state for . (8)
Answer keyMark scheme & solutions
Q1 (10)
(a) Method: multiply-and-subtract. , . Subtract: . (setup 1, subtraction 2, closed form 1)
(b) As , iff ; for the term does not vanish (diverges or oscillates), so no finite limit. When : (convergence condition explained 2, limit + result 2)
(c) : (2)
Q2 (10)
AM ≥ GM: . Equality iff . (3)
GM ≥ HM: From AM≥GM applied to : , i.e. , invert (both positive): . Equality iff . (4)
Explain: each inequality springs from a perfect-square being non-negative (directly, or applied to reciprocals). (1)
Numeric: : AM ; GM ; HM . Ordering . ✓ (2)
Q3 (12)
(a) Identity: . Sum (telescoping LHS): . , so . Simplify: ... expand carefully: . (identity 1, telescope 2, algebra 3)
(b) . Telescoping sum . Limit . (4)
(c) : (2)
Q4 (10)
Let
Base : LHS ; RHS . ✓ (2)
Hypothesis: assume true: . (2)
Step: This is . ✓ (hypothesis used to replace the sum of first terms — 4)
By induction, true for all . (2)
Q5 (10)
(a) (3)
(b) Independent: . (4)
(c) (3)
Q6 (8)
Subtract: For , : (setup 2, shift 2, subtraction/geometric 2, closed form 1, infinite case 1)
[
{"claim":"Q1c infinite GP sum = 1","code":"a=Rational(3,4); r=Rational(1,4); result = (a/(1-r))==1"},
{"claim":"Q3c sum k^2 to 20 = 2870","code":"result = sum(k**2 for k in range(1,21))==2870"},
{"claim":"Q5b independent term = 489888","code":"from sympy import binomial; result = binomial(9,6)*2**3*(-3)**6==489888"},
{"claim":"Q4 identity holds for n=1..6","code":"result = all(sum(k*2**k for k in range(1,n+1))==(n-1)*2**(n+1)+2 for n in range(1,7))"},
{"claim":"Q6 closed form matches direct sum for r=1/2,n=5","code":"r=Rational(1,2); n=5; lhs=sum(k*r**(k-1) for k in range(1,n+1)); rhs=(1-r**n)/(1-r)**2-n*r**n/(1-r); result = simplify(lhs-rhs)==0"}
]