Calculus III — Sequences & Series
Level 2 — Recall & Standard Problems
Time limit: 30 minutes
Total marks: 40
Q1. State the definition of convergence of a sequence to a limit . Then determine whether the sequence converges, and give its limit. (4 marks)
Q2. Use the Squeeze Theorem to evaluate . State clearly the bounding sequences. (4 marks)
Q3. State the convergence condition for a geometric series . Hence find the sum of (4 marks)
Q4. Evaluate the telescoping series by first finding a partial-fraction decomposition and the partial sum . (5 marks)
Q5. State the Divergence Test. Use it to show that diverges. (4 marks)
Q6. State the -series result. Determine (with brief justification) whether each of the following converges: (a) , (b) . (4 marks)
Q7. Use the Ratio Test to determine whether converges. (5 marks)
Q8. State the Alternating Series (Leibniz) Test. Use it to show that converges. State whether the convergence is absolute or conditional. (5 marks)
Q9. Write down the Maclaurin series of and use it to write the first four terms of the series for . (5 marks)
Answer keyMark scheme & solutions
Q1. (4 marks) Definition: if for every there exists such that for all . (2) Divide numerator and denominator by : (1) Converges to (highest powers dominate). (1)
Q2. (4 marks) Since : . (2) Both bounds as . (1) By Squeeze Theorem, . (1)
Q3. (4 marks) Converges iff , with sum . (2) Here : first term , . (1) Sum (1)
Q4. (5 marks) . (2) Partial sum (telescoping). (2) , so sum . (1)
Q5. (4 marks) Divergence Test: if (or doesn't exist), diverges. (2) . (1) Hence the series diverges. (1)
Q6. (4 marks) -series converges iff . (2) (a) → converges. (1) (b) → diverges. (1)
Q7. (5 marks) . Ratio: . (3) . (1) Since , the series converges (absolutely). (1)
Q8. (5 marks) Leibniz Test: if , is decreasing, and , then converges. (2) Here : positive, decreasing, . (2) So the series converges. Since (harmonic) diverges, convergence is conditional. (1)
Q9. (5 marks) (2) Substitute : (3) First four terms: .
[
{"claim":"Limit of (3n^2+1)/(2n^2+5) is 3/2","code":"n=symbols('n',positive=True); result = limit((3*n**2+1)/(2*n**2+5), n, oo)==Rational(3,2)"},
{"claim":"Sum of 2/3^n from 1 to inf equals 1","code":"n=symbols('n',positive=True); result = summation(2/3**n,(n,1,oo))==1"},
{"claim":"Telescoping sum 1/(n(n+1)) from 1 to inf equals 1","code":"n=symbols('n',positive=True); result = summation(1/(n*(n+1)),(n,1,oo))==1"},
{"claim":"Ratio test limit for 2^n/n! is 0","code":"n=symbols('n',positive=True); result = limit((2/(n+1)),n,oo)==0"},
{"claim":"Sum of 2^n/n! from 0 to inf equals e^2 (converges)","code":"n=symbols('n',nonnegative=True); result = summation(2**n/factorial(n),(n,0,oo))==exp(2)"}
]