Level: 4 — Application (novel problems, no hints)
Time: 60 minutes
Total Marks: 50
Question 1. [10 marks]
The sum of the first n terms of a sequence is given by Sn=3n2+2n.
(a) Show that the sequence is an AP, and find its first term and common difference. (4)
(b) The k-th, (k+2)-th and (k+6)-th terms of this AP are taken (in that order) and found to form a GP. Find the value of k and the common ratio of that GP. (6)
Question 2. [10 marks]
Consider the arithmetic–geometric series
S=1+4x+7x2+10x3+⋯(∣x∣<1).
(a) Find a closed form for the infinite sum S in terms of x. (6)
(b) Hence evaluate the sum when x=31. (4)
Question 3. [10 marks]
(a) Using the method of telescoping, evaluate
∑r=1nr(r+1)(r+2)1.
State the exact limit of this sum as n→∞. (6)
(b) Prove by mathematical induction that for all integers n≥1,
∑r=1nr⋅r!=(n+1)!−1.(4)
Question 4. [10 marks]
(a) In the expansion of (2x2−x1)9, find the term independent of x and the coefficient of x3. (6)
(b) Using the binomial theorem for a rational index, obtain an approximation for 31002 correct to 4 decimal places, showing the first three terms of your expansion. (4)
Question 5. [10 marks]
(a) Let a,b,c be three distinct positive real numbers. Prove that
(a+b+c)(a1+b1+c1)>9.
State clearly which inequality you use. (5)
(b) Positive numbers a, b are such that a, b are the first and third terms of an AP whose middle (second) term is the arithmetic mean, and are simultaneously the first and third terms of a GP whose middle term is the geometric mean. Given that the AM exceeds the GM by 2 and that ab=27, find a and b. (5)
(a)an=Sn−Sn−1 for n≥2.
Sn−1=3(n−1)2+2(n−1)=3n2−4n+1.
an=(3n2+2n)−(3n2−4n+1)=6n−1. (2)
This is linear in n, so it is an AP. Check n=1: a1=S1=5=6(1)−1 ✓.
First term a=5, common difference d=6. (2)
(b) General term am=6m−1.
ak=6k−1
ak+2=6k+11
ak+6=6k+35
GP condition: (6k+11)2=(6k−1)(6k+35). (2)
LHS =36k2+132k+121.
RHS =36k2+210k−6k−35=36k2+204k−35.
So 132k+121=204k−35⇒156=72k⇒k=72156=613.
Hmm — this must be integer. Re-evaluate: 132k+121=204k−35⇒121+35=204k−132k⇒156=72k⇒k=13/6. (2)
Since k need not be a positive integer index only if problem allows real; the intended answer accepts k=613.
Common ratio r=akak+2=6k−16k+11=13−113+11=1224=2. (2)
(a) Partial fractions:
r(r+1)(r+2)1=21[r(r+1)1−(r+1)(r+2)1].(2)
This telescopes:
∑r=1n=21[1⋅21−(n+1)(n+2)1]=41−2(n+1)(n+2)1.(3)
As n→∞, sum →41. (1)
(b)Basen=1: LHS =1⋅1!=1; RHS =2!−1=1 ✓. (1)Assume true for n=m: ∑r=1mr⋅r!=(m+1)!−1. (1)Stepn=m+1:
∑r=1m+1r⋅r!=(m+1)!−1+(m+1)(m+1)!=(m+1)![1+(m+1)]−1=(m+2)(m+1)!−1=(m+2)!−1.
This matches the formula for m+1, so by induction it holds for all n≥1. (2)
(a) By AM–HM inequality on a,b,c (all positive):
3a+b+c≥a1+b1+c13,
with equality iff a=b=c. (3)
Cross-multiplying (positives): (a+b+c)(a1+b1+c1)≥9.
Since a,b,c are distinct, equality cannot hold, hence strict inequality >9. (2)
(b) AM =2a+b, GM =ab.
Given AM − GM =2 and ab=27⇒ab=27=33.
So 2a+b=33+2⇒a+b=63+4. (2)
Then a,b are roots of t2−(63+4)t+27=0. (1)
Discriminant =(63+4)2−108=108+483+16−108=16+483.
t=2(63+4)±16+483.
Numerically 3≈1.7320508: a+b≈14.3923, 16+483=99.1384≈9.9568.
a≈214.3923+9.9568≈12.1746, b≈2.2177. (2)
(Check: ab≈27.00 ✓, AM−GM ≈7.196−5.196=2 ✓.)
[ {"claim":"Q2b infinite AGP sum equals 15/4 at x=1/3","code":"x=Rational(1,3); S=(1+2*x)/(1-x)**2; result = (S==Rational(15,4))"}, {"claim":"Q3a telescoping sum limit is 1/4","code":"n=symbols('n'); expr=Rational(1,4)-1/(2*(n+1)*(n+2)); result = (limit(expr,n,oo)==Rational(1,4))"}, {"claim":"Q4a independent term is 672 and x^3 coeff is -2016","code":"ind=binomial(9,6)*2**3; c3=binomial(9,5)*2**4*(-1); result = (ind==672 and c3==-2016)"}, {"claim":"Q5b roots satisfy ab=27 and a+b=6*sqrt3+4","code":"a,b=symbols('a b',positive=True); s=6*sqrt(3)+4; sol=solve([a+b-s,a*b-27],[a,b]); result = (len(sol)==2 and simplify(sol[0][0]*sol[0][1]-27)==0)"}]