Calculus III — Sequences & Series
Level 4 Examination (Application)
Time: 60 minutes
Total marks: 50
Instructions: Attempt all questions. Full justification required; state every test/theorem you invoke. No hints are given.
Question 1. (10 marks)
Consider the series
(a) Determine whether the series converges absolutely, converges conditionally, or diverges. Justify each claim with a named test. (7)
(b) The alternating series test gives an error bound for the truncation error. Estimate how many terms are needed so that the partial sum approximates the series' value with error less than . (3)
Question 2. (12 marks)
(a) Find the radius of convergence and the full interval of convergence of You must test both endpoints explicitly. (8)
(b) Let denote the sum of the series in (a) on its interval of convergence. By differentiating term-by-term, express as a closed-form elementary function, stating where the identity is valid. (4)
Question 3. (10 marks)
Evaluate the limit using Maclaurin series. Show the series expansions to sufficient order and justify why higher-order terms may be neglected. (10)
Question 4. (10 marks)
Define the sequence by
(a) Show that for all , and that is monotonically decreasing for . (6)
(b) Deduce that converges and find its limit. (4)
Question 5. (8 marks)
Use Taylor's remainder theorem to approximate using the Maclaurin polynomial of of degree . Then bound the error using the Lagrange remainder, and confirm your numerical bound is consistent with the true error. (8)
Answer keyMark scheme & solutions
Question 1 (10)
(a) Terms: , with .
Absolute convergence? Consider . Limit comparison with : Since diverges (harmonic / -series ), the series does not converge absolutely. (3)
Conditional convergence — Leibniz test. Need and eventually decreasing.
- . (1)
- Let , for , so decreasing for . (2)
Hence by the alternating series test the series converges conditionally. (1)
(b) Leibniz error bound: . Require . For : (too big). For : . ✓ So 20 terms (, using approximation up to term 's bound — i.e. summing through ensures next term ). Accept terms giving bound . (3)
Question 2 (12)
(a) Centre , coefficients . Ratio test on : Converges when . (4)
Interval base: .
Endpoint : diverges (harmonic). (2)
Endpoint : converges (alternating harmonic). (1)
Interval of convergence: . (1)
(b) Differentiate term-by-term (valid on open interval ): Geometric with ratio , : (4)
Question 3 (10)
Expansions: (4)
Numerator: Constant: . : . : . (4)
So numerator , hence Higher-order terms are , so negligible. (2)
Question 4 (10)
(a) By AM–GM (or algebra): for , Since , induction gives hence ; also . So all . (3)
Monotone decreasing: for , Since , difference , so decreasing. (3)
(b) is decreasing and bounded below by ⇒ converges (monotone convergence theorem) to limit . (2) Taking limits: . (2)
Question 5 (8)
Maclaurin: Degree-3 poly at : (3)
Lagrange remainder: , , . (3)
True value ; actual error . ✓ Consistent. (2)
[
{"claim":"Q2 sum f'(x)=1/(5-x) via geometric series", "code":"x=symbols('x'); s=Rational(1,3)*summation((( x-2)/3)**k,(k:=symbols('k',nonnegative=True),0,oo)); result = simplify(s - 1/(5-x))==0"},
{"claim":"Q3 limit equals 11/24", "code":"x=symbols('x'); L=limit((exp(x**2)-cos(x)-Rational(3,2)*x**2)/x**4, x, 0); result = (L==Rational(11,24))"},
{"claim":"Q4 limit satisfies L=sqrt(3)", "code":"L=symbols('L',positive=True); sol=solve(Eq(L, Rational(1,2)*(L+3/L)), L); result = (sqrt(3) in sol)"},
{"claim":"Q5 P3(0.2) approx 0.182667", "code":"val=Rational(2,10)-Rational(2,10)**2/2+Rational(2,10)**3/3; result = abs(float(val)-0.1826667)<1e-5"},
{"claim":"Q5 error bound 0.0004 exceeds true error", "code":"result = abs(0.1826667 - float(log(Rational(12,10)))) < 0.0004"}
]