A sequence is an ordered list of numbers a1,a2,a3,… written {an}n=1∞ Or {an}. Each an is called a term of the sequence. A series is the sum of The terms of a sequence: n=1∑∞an.
A sequence converges to a limit L if n→∞liman=L. Otherwise it diverges.
Arithmetic Sequences
Definition
An arithmetic sequence has a constant common differenced between consecutive terms:
an=a1+(n−1)d
Where a1 is the first term and d=an+1−an for all n.
Integrating term by term gives the series for arctanx:
arctanx=x−3x3+5x5−7x7+⋯
Taylor Series
Definition
The Taylor series of f about x=a is:
f(x)=∑n=0∞n!f(n)(a)(x−a)n
This reduces to the Maclaurin series when a=0.
Taylor Polynomial Approximation
The n-th degree Taylor polynomial of f about a is:
Tn(x)=∑k=0nk!f(k)(a)(x−a)k
Lagrange Remainder
The error in approximating f(x) by Tn(x) is bounded by:
∣Rn(x)∣=∣f(x)−Tn(x)∣≤(n+1)!M∣x−a∣n+1
Where M is an upper bound for ∣f(n+1)(t)∣ for all t between a and x.
Example. Approximate e using a 3rd degree Maclaurin polynomial and bound the error.
T3(x)=1+x+2x2+6x3.
T3(0.5)=1+0.5+0.125+0.020833…=1.64583…
True value: e0.5≈1.64872.
For the error bound, ∣f(4)(t)∣=et≤e0.5 for 0≤t≤0.5:
∣R3(0.5)∣≤24e0.5⋅(0.5)4≈241.649⋅0.0625≈0.0043
Actual error: ∣1.64872−1.64583∣≈0.0029Which is within the bound.
Proof by Induction
Structure
Mathematical induction proves a statement P(n) for all integers n≥n0:
Base case: Verify P(n0) is true.
Inductive hypothesis: Assume P(k) is true for some arbitrary k≥n0.
Inductive step: Using the hypothesis, prove P(k+1) is true.
Conclusion: By the principle of mathematical induction, P(n) is true for all n≥n0.
Summation Proofs
Example. Prove that k=1∑nk2=6n(n+1)(2n+1) for all n∈Z+.
Base case (n=1): 61⋅2⋅3=1. True.
Inductive hypothesis: Assume k=1∑jk2=6j(j+1)(2j+1) for some j≥1.
Inductive step:
∑k=1j+1k2=∑k=1jk2+(j+1)2=6j(j+1)(2j+1)+(j+1)2
=6(j+1)[j(2j+1)+6(j+1)]=6(j+1)[2j2+7j+6]
=6(j+1)(j+2)(2j+3)
This is the formula with n=j+1. Hence P(j+1) is true. By induction, the result holds for All n∈Z+.
Divisibility Proofs
Example. Prove that 3n−1 is divisible by 2 for all n∈N.
Base case (n=0): 30−1=0Which is divisible by 2. True.
Inductive hypothesis:3k−1=2m for some m∈Z.
Inductive step:
3k+1−1=3⋅3k−1=3(2m+1)−1=6m+3−1=6m+2=2(3m+1)
This is divisible by 2. By induction, the result holds.
Inequality Proofs
Example. Prove that 2n>n for all n∈Z+.
Base case (n=1): 21=2>1. True.
Inductive hypothesis:2k>k for some k≥1.
Inductive step:
2k+1=2⋅2k>2k≥k+1
(The last inequality holds since k≥1.) Therefore 2k+1>k+1. By induction, 2n>n For all positive integers n.
:::caution Common Pitfall
The inductive step must genuinely use the inductive hypothesis. Proving P(k+1) independently Of P(k) is not a valid induction argument. Always make it explicit where the hypothesis is used.
Additional Worked Examples
Worked Example: Convergence of a Series by Ratio Test
Determine whether n=1∑∞10nn! converges or diverges.
For the error bound on [0,0.2]: ∣f′′′(t)∣=(1+t)32≤2 for 0≤t≤0.2.
∣R2(0.2)∣≤62⋅(0.2)3=62⋅0.008≈0.00267
Actual error: ∣0.1823−0.18∣=0.0023Which is within the bound.
Common Pitfalls
Misidentifying the first term in sigma notation.∑k=0n has n+1 terms, while ∑k=1n has n terms. Confusing the starting index leads to off-by-one errors in sums.
Applying the infinite sum formula when ∣r∣≥1. The formula S∞=1−ra1 is valid only when ∣r∣<1. For ∣r∣≥1 the series diverges and the formula is meaningless.
Computing the wrong term number. The n-th term of a geometric sequence is a1rn−1Not a1rn. Similarly, the n-th term of an arithmetic sequence is a1+(n−1)dNot a1+nd.
Using the ratio test when L=1. The ratio test is inconclusive when L=1. The series ∑n1 diverges and ∑n21 converges, yet both give L=1.
Weak base case in induction. The base case must match the claim. If the statement starts at n=1Proving it for n=0 is not sufficient unless the domain is specified to include 0.
Neglecting the alternating sign in the general binomial expansion. When n is not a positive integer, the series is infinite and the sign of each coefficient depends on the value of n. Substituting x→ax also changes the sign of odd powers when a<0.
Confusing the Lagrange remainder with the actual error. The remainder bound ∣Rn(x)∣≤(n+1)!M∣x−a∣n+1 gives an upper bound, not the exact error. The actual error may be much smaller.
Forgetting convergence conditions for Maclaurin series. Each standard Maclaurin series has a specific radius of convergence. The series for ln(1+x) only converges for −1<x≤1; using it outside this interval gives incorrect results.
Exam-Style Problems
Find the sum of the infinite geometric series 8−4+2−1+⋯ and express the repeating decimal 0.27 as a fraction in lowest terms.
Use the ratio test to determine the convergence of n=1∑∞n!3n.
Find the coefficient of x5 in the expansion of (1+3x)−2.
Prove by induction that k=1∑nk(k+1)1=n+1n for all n∈Z+.
Find the Maclaurin series of 1+x2x up to x7 and state the radius of convergence.
Use a third degree Maclaurin polynomial of cosx to approximate cos(0.3). Bound the error using the Lagrange remainder.
An arithmetic sequence has first term 5 and common difference 3. A geometric sequence has first term 2 and common ratio 2. Find the smallest n for which the n-th term of the geometric sequence exceeds the n-th term of the arithmetic sequence.
Determine whether n=1∑∞n(−1)n converges absolutely, converges conditionally, or diverges.
Cross-References
Differentiation is needed to derive Maclaurin and Taylor series: see Differentiation
Integration connects to term-by-term integration of power series: see Integration
Differential equations use series expansions as solution methods: see Differential Equations
Proof and reasoning techniques including induction: see Proof
Summary
This topic covers the mathematical techniques and concepts related to sequences and series, including key theorems, methods, and problem-solving approaches.
Key concepts include:
arithmetic and geometric sequences
series and sigma notation
recurrence relations
convergence tests
mathematical induction
Regular practice with a variety of question types is essential to build fluency and confidence in applying these mathematical techniques.