Calculus III — Sequences & Series
Level 3 Paper: Production & From-Scratch Derivations
Time limit: 45 minutes
Total marks: 60
Instructions: Show all reasoning. Derivations must be built from scratch — state theorems you invoke. Use / for mathematics.
Question 1 — Geometric series, from scratch [10 marks]
(a) Let . Derive a closed form for (for ) from scratch, then prove that the infinite series converges iff , stating its sum. [6]
(b) Using only the geometric-series result, evaluate . [4]
Question 2 — Integral test & p-series [12 marks]
(a) State and prove the Integral Test: if is positive, continuous and decreasing on with , then and converge or diverge together. Use the comparison of the series with rectangle areas. [7]
(b) Deduce completely for which real the p-series converges. Show the boundary case explicitly. [5]
Question 3 — Telescoping & partial sums [8 marks]
Consider .
(a) Use partial fractions to write the general term, find the partial sum in closed form, and evaluate the series. [6]
(b) State why computing (rather than ) is essential here. [2]
Question 4 — Alternating series, absolute vs conditional [12 marks]
(a) State and prove the Leibniz (Alternating Series) Test, including the error bound . [7]
(b) For , classify as absolutely convergent, conditionally convergent, or divergent, with justification. [3]
(c) How many terms are needed to approximate the sum in (b) to within ? [2]
Question 5 — Maclaurin series, derive from memory [10 marks]
(a) Derive the Maclaurin series of from scratch (via term-by-term integration of a geometric series), and state its interval of convergence. [6]
(b) Using known Maclaurin series, evaluate [4]
Question 6 — Power series & tests [8 marks]
For :
(a) Find the radius and interval of convergence, testing both endpoints. [6]
(b) Name the test you used for and state its key limitation. [2]
Answer keyMark scheme & solutions
Question 1
(a) [6] Write . Multiply by : Subtract: , so Convergence: as , iff ; then . [2] If , (diverges); if , ; if , oscillates — no limit. Hence convergence iff with sum . [2]
(b) [4] [2] Each geometric with first term = ratio:
Question 2
(a) [7] Since decreasing, on : . Integrating over : Summing to : If converges, the partial sums are bounded above and increasing ⇒ series converges. If diverges, forces ⇒ series diverges. Both directions established. [2]
(b) [5] Take , positive/continuous/decreasing for . For , ⇒ diverges by divergence test. So converges iff . [2] Boundary : , so harmonic series diverges. [1]
Question 3
(a) [6] [2] As : [1]
(b) [2] only tells us the divergence test is inconclusive; convergence requires the partial sums to have a limit, which telescoping gives directly. [2]
Question 4
(a) [7] Given , decreasing, , consider . Even partial sums: ⇒ increasing. [2] Odd: ⇒ decreasing. [1] Also , so even sums bounded above, odd below; both monotone-bounded ⇒ converge. Since , common limit . [2] Error: lies between consecutive partial sums, so . [2]
(b) [3] : satisfies Leibniz () ⇒ converges. But diverges (harmonic). Hence conditionally convergent. [3]
(c) [2] Need ⇒ ⇒ . So 99 terms. [2]
Question 5
(a) [6] Start with , . [2] Integrate from to (valid termwise within radius): Interval of convergence: (converges at by Leibniz, diverges at → harmonic). [1]
(b) [4] ; . [2]
Question 6
(a) [6] Ratio test: [2] Converges for ⇒ , interval kernel . [2] Endpoints: : diverges. : converges (Leibniz). Interval . [2]
(b) [2] Ratio test. Limitation: inconclusive when the limit (e.g. at endpoints / p-series), requiring separate analysis. [2]
[
{"claim":"Q1b sum = 3/2","code":"n=symbols('n'); s=summation(Rational(1,2)**n,(n,1,oo))+summation(Rational(1,3)**n,(n,1,oo)); result = (s==Rational(3,2))"},
{"claim":"Q3 telescoping series sum = 3/4","code":"n=symbols('n'); s=summation(1/(n*(n+2)),(n,1,oo)); result = (s==Rational(3,4))"},
{"claim":"Q4c need 99 terms for 1/(N+1)<=0.01","code":"N=99; result = (Rational(1,N+1)<=Rational(1,100)) and (Rational(1,N)>Rational(1,100))"},
{"claim":"Q5b limit equals 1","code":"x=symbols('x'); L=limit((exp(x)-1-x)/(1-cos(x)),x,0); result = (L==1)"},
{"claim":"Q6 radius R=3","code":"x=symbols('x'); r=limit((x/(x+1))*Rational(1,3),x,oo); result = (Rational(1,3)*3==1) and (r==Rational(1,3))"}
]