Sequences & Series
Level 2 — Recall & Standard Problems
Time: 30 minutes Total marks: 40
Answer all questions. Use notation for mathematics. Show working where required.
Q1. Define an arithmetic progression. Derive the formula for the sum of the first terms, . (4 marks)
Q2. Find the sum of the infinite geometric series . State the condition under which an infinite GP converges. (4 marks)
Q3. The 4th term of an AP is and the 7th term is . Find the first term, the common difference, and the sum of the first terms. (5 marks)
Q4. If , , are in harmonic progression, define the harmonic mean of and , and show that when is the HM of and . (4 marks)
Q5. State the AM–GM inequality for two positive numbers and prove it. (4 marks)
Q6. Evaluate using standard formulae: (5 marks)
Q7. Evaluate the telescoping sum (4 marks)
Q8. Using the binomial theorem, find the coefficient of in the expansion of . (4 marks)
Q9. Use the binomial theorem for rational index to find an approximate value of correct to four decimal places (retain terms up to the term). (3 marks)
Q10. Prove by mathematical induction that for all positive integers . (3 marks)
Answer keyMark scheme & solutions
Q1. (4 marks)
- Definition: An AP is a sequence in which each term differs from the previous term by a fixed constant (the common difference): (1)
- Write and the reverse . (1)
- Adding termwise, each of the pairs sums to : . (1)
- Hence . (1) (Why: reversing exploits symmetry so pairing gives a constant sum.)
Q2. (4 marks)
- , . (1)
- so the series converges. (1)
- . (1)
- Condition: an infinite GP converges iff (then ). (1)
Q3. (5 marks)
- , . (1)
- Subtract: . (1)
- . (1)
- . (1)
- . (1)
Q4. (4 marks)
- Definition: are in HP if their reciprocals are in AP; is the HM of and . (1)
- AP condition on reciprocals: . (1)
- . (1)
- . (1)
Q5. (4 marks)
- Statement: For , , equality iff . (1)
- Consider . (1)
- Expand: . (1)
- Divide by 2: ; equality when , i.e. . (1)
Q6. (5 marks)
- , . (1)
- . (1)
- ; . (1)
- . (1)
- . (1)
Q7. (4 marks)
- Partial fractions: . (1)
- Sum telescopes: . (1)
- Intermediate terms cancel, leaving . (1)
- . (1)
Q8. (4 marks)
- General term: . (1)
- For , . (1)
- Coefficient . (1)
- . (1)
Q9. (3 marks)
- , with . (1)
- . (1)
- (4 d.p.). (1)
Q10. (3 marks)
- Base: : LHS , RHS . ✓ (1)
- Inductive step: assume . Then . (1)
- This matches the formula with , so by induction it holds for all . (1)
[
{"claim":"Q2 infinite GP sum = 27","code":"a=18; r=Rational(1,3); result = (a/(1-r))==27"},
{"claim":"Q3 S15 = 345","code":"a=2; d=3; n=15; S=n*(2*a+(n-1)*d)/2; result = S==345"},
{"claim":"Q6 sum = 6390","code":"r=symbols('r'); result = summation(2*r**2+3*r+1,(r,1,20))==6390"},
{"claim":"Q7 telescoping sum = n/(n+1)","code":"r,n=symbols('r n',positive=True,integer=True); result = simplify(summation(1/(r*(r+1)),(r,1,n)) - n/(n+1))==0"},
{"claim":"Q8 coefficient of x^5 in (2+x)^8 is 448","code":"x=symbols('x'); result = expand((2+x)**8).coeff(x,5)==448"}
]