Sequences and Series — Diagnostic Tests
Unit Tests
Tests edge cases, boundary conditions, and common misconceptions for sequences and series.
UT-1: Method of Differences — Telescoping Series
Question:
(a) Express r(r+1)1 in partial fractions.
(b) Hence find the sum r=1∑nr(r+1)1.
(c) A student claims that r=1∑nr(r+2)1 telescopes in the same way. Determine whether this is true, and if not, find the correct sum.
[Difficulty: hard. Tests telescoping series with non-adjacent denominators, a common stumbling block.]
Solution:
(a)
r(r+1)1=rA+r+1B
1=A(r+1)+Br⟹A=1,A+B=0⟹B=−1
r(r+1)1=r1−r+11
(b)
∑r=1n(r1−r+11)=(1−21)+(21−31)+⋯+(n1−n+11)=1−n+11=n+1n
(c) The student is incorrect. r(r+2)1 does not telescope the same way because the gap between denominators is 2.
r(r+2)1=21(r1−r+21)
∑r=1nr(r+2)1=21[(1−31)+(21−41)+(31−51)+⋯+(n1−n+21)]
Terms with denominators 3,4,…,n cancel partially. The surviving terms are:
21(1+21−n+11−n+21)=21(23−(n+1)(n+2)2n+3)=43−2(n+1)(n+2)2n+3
UT-2: Binomial Expansion — Non-Integer Power Validity
Question:
(a) Find the binomial expansion of (1+3x)−1/3 up to and including the term in x3.
(b) State the range of values of x for which the expansion is valid.
(c) Use the expansion to find an approximation for 31.031, giving your answer to 5 decimal places.
[Difficulty: hard. Tests binomial expansion with fractional exponent, validity range, and numerical application.]
Solution:
(a) Using (1+x)n=1+nx+2!n(n−1)x2+3!n(n−1)(n−2)x3+⋯ with n=−31 and replacing x with 3x:
(1+3x)−1/3=1+(−31)(3x)+2(−31)(−34)(3x)2+6(−31)(−34)(−37)(3x)3
=1−x+294⋅9x2+6−8128⋅27x3
=1−x+2x2−8128⋅627x3=1−x+2x2−914x3
(b) The expansion is valid when ∣3x∣<1, i.e., ∣x∣<31.
(c) 31.031=(1+0.03)−1/3. Here x=0.03, which satisfies ∣x∣<31.
(1+0.03)−1/3≈1−0.03+2(0.03)2−914(0.03)3
=1−0.03+2(0.0009)−914(0.000027)
=1−0.03+0.0018−0.000042=0.971758
To 5 decimal places: 0.97176.
Integration Tests
Tests synthesis of sequences and series with other topics.
IT-1: Term-by-Term Differentiation of a Series (with Differentiation)
Question:
(a) Differentiate both sides of the identity 1−x1=n=0∑∞xn for ∣x∣<1 with respect to x, and hence find n=1∑∞nxn−1.
(b) Use your result to find the exact value of n=1∑∞2nn.
[Difficulty: hard. Combines infinite series with differentiation to derive new summation formulas.]
Solution:
(a) Differentiating the LHS: dxd(1−x1)=(1−x)21.
Differentiating the RHS term-by-term: dxd(∑n=0∞xn)=∑n=1∞nxn−1.
Therefore:
∑n=1∞nxn−1=(1−x)21for ∣x∣<1
(b) We need n=1∑∞2nn=n=1∑∞n(21)n.
Note that n=1∑∞nxn−1=(1−x)21 with x=21:
∑n=1∞n(21)n−1=(1−21)21=1/41=4
Our target sum is:
∑n=1∞2nn=21∑n=1∞n(21)n−1=21×4=2