Which of the following is the general form of a power series centered at \(c\)?
Easy
✗ Wrong — Here's why
The general form is \(\sum_{n=0}^{\infty} a_n(x-c)^n\) where \(c\) is the center. Option A is the special case \(c=0\) (centered at origin). Option C is a specific series (\(e^x\) without the center shift). Option D is not a power series at all — the power of \(x\) never changes.
02
The power series \(\displaystyle\sum_{n=0}^{\infty} 3^n(x-2)^n\) is centered at which value?
Easy
✗ Wrong — Here's why
The center \(c\) is the value subtracted from \(x\) inside the parentheses. Here \((x - 2)^n\) means \(c = 2\). The coefficient \(3^n\) is just \(a_n\) — it doesn't affect the center. Common trap: confusing coefficients with the center!
Chapter 2 — Radius of Convergence
The most tested topic. Use the Ratio Test to find \(R\), then check endpoints manually.
🔑
Quick Memory Keys
Ratio Test: compute \(L = \lim_{n\to\infty}\left|\frac{a_{n+1}}{a_n}\right|\). Then \(R = 1/L\). If \(L = 0\), then \(R = \infty\). If \(L = \infty\), then \(R = 0\).
R = 1/LRATIO-TEST firstCHECK endpoints separatelyROOT-TEST alternative
03
Find the radius of convergence of \(\displaystyle\sum_{n=0}^{\infty} \frac{x^n}{n!}\).
Easy
✗ Wrong — Here's why
Apply Ratio Test: \(\left|\frac{x^{n+1}/(n+1)!}{x^n/n!}\right| = \left|\frac{x}{n+1}\right| \to 0\) as \(n \to \infty\), for ANY fixed \(x\). Since \(L = 0 < 1\) always, the series converges for all \(x\). Therefore \(R = \infty\). (This is \(e^x\)!)
04
What is the radius of convergence of \(\displaystyle\sum_{n=1}^{\infty} n!\, x^n\)?
Medium
✗ Wrong — Here's why
Ratio Test: \(\left|\frac{(n+1)!\,x^{n+1}}{n!\,x^n}\right| = (n+1)|x| \to \infty\) for any \(x \neq 0\). Since \(L = \infty > 1\) for all \(x \neq 0\), the series only converges at \(x = 0\). So \(R = 0\). Key insight: factorials in the numerator make \(R = 0\); factorials in the denominator make \(R = \infty\).
05
Find the radius of convergence of \(\displaystyle\sum_{n=1}^{\infty} \frac{(x-3)^n}{n \cdot 4^n}\).
Medium
✗ Wrong — Here's why
With \(a_n = \frac{1}{n \cdot 4^n}\): Ratio Test gives \(\frac{a_{n+1}}{a_n} = \frac{n}{n+1} \cdot \frac{1}{4} \to \frac{1}{4}\). So \(L = \frac{|x-3|}{4}\), converging when \(|x-3| < 4\). The radius is \(R = 4\). The center \(c=3\) does NOT affect the radius!
06
⚠️ Common mistake! If \(\displaystyle\sum_{n=0}^{\infty} a_n x^n\) has radius of convergence \(R = 5\), what is the radius of convergence of \(\displaystyle\sum_{n=0}^{\infty} a_n x^{2n}\)?
Tricky
✗ Wrong — Here's why
Let \(u = x^2\). The series \(\sum a_n x^{2n} = \sum a_n u^n\) converges when \(|u| < 5\), i.e., \(|x^2| < 5\), i.e., \(|x| < \sqrt{5}\). So the new radius is \(R = \sqrt{5}\).
Rule: replacing \(x^n\) with \(x^{2n}\) takes the square root of the radius.
Chapter 3 — Interval of Convergence
After finding \(R\), always test both endpoints \(x = c \pm R\) individually.
🔑
Quick Memory Keys
Step 1: find \(R\). Step 2: open interval \((c-R,\, c+R)\). Step 3: plug in each endpoint — if converges, include it with \([\,]\), otherwise exclude with \((\,)\).
FIND-R → OPEN-interval → TEST-endpointsAlternating → often convergesp-series test at endpoints
07
Find the interval of convergence of \(\displaystyle\sum_{n=1}^{\infty} \frac{x^n}{n}\).
Medium
✗ Wrong — Here's why
Ratio Test → \(R = 1\). Open interval: \((-1, 1)\).
• At \(x = 1\): \(\sum \frac{1}{n}\) = harmonic series → diverges. • At \(x = -1\): \(\sum \frac{(-1)^n}{n}\) = alternating harmonic → converges (AST).
So include \(-1\) but not \(1\): interval is \([-1,\, 1)\).
08
What is the interval of convergence of \(\displaystyle\sum_{n=0}^{\infty} \frac{(x+1)^n}{3^n}\)?
⚠️ Common mistake! For \(\displaystyle\sum_{n=1}^{\infty} \frac{(-1)^n x^n}{n^2}\), which endpoint behavior is correct?
Tricky
✗ Wrong — Here's why
The series is \(\sum \frac{(-1)^n x^n}{n^2}\). At both endpoints \(|x|=1\), the absolute values give \(\sum \frac{1}{n^2}\), which is a convergent \(p\)-series (\(p=2>1\)). So both endpoints converge absolutely, giving interval \([-1, 1]\). Beware: the \((-1)^n\) in the coefficient is a red herring at endpoints — absolute convergence covers both.
Chapter 4 — Classic Power Series Representations
Memorize these — they are the building blocks of everything else.
🔑
Quick Memory Keys — The Big Four
e^x = Σ xⁿ/n!sin x = Σ (-1)ⁿx^(2n+1)/(2n+1)!cos x = Σ (-1)ⁿx^(2n)/(2n)!1/(1-x) = Σ xⁿ |x|<1
10
Which power series represents \(\dfrac{1}{1+x}\) for \(|x| < 1\)?
Easy
✗ Wrong — Here's why
Replace \(x\) with \(-x\) in \(\frac{1}{1-x} = \sum x^n\): we get \(\frac{1}{1+x} = \sum (-x)^n = \sum (-1)^n x^n\). Option A is \(\frac{1}{1-x}\). Option C is \(\sum x^{2n} = \frac{1}{1-x^2}\). Option D starts at \(n=1\) and skips the constant term.
11
The Maclaurin series for \(\cos x\) begins with which terms?
Easy
✗ Wrong — Here's why
Cosine has only even powers: \(\cos x = \sum_{n=0}^\infty \frac{(-1)^n x^{2n}}{(2n)!} = 1 - \frac{x^2}{2!} + \frac{x^4}{4!} - \cdots\). Option A is \(\sin x\) (odd powers). Option C is \(e^x\) (all terms positive). Option D is \(e^{-x}\) (alternating all powers).
Chapter 5 — Differentiation & Integration of Power Series
Term-by-term operations preserve the radius, but may change endpoints.
🔑
Quick Memory Keys
Differentiate or integrate term-by-term. Radius \(R\) stays the same — but always re-check the endpoints of the new series!
SAME-R after diff/intRECHECK endpoints alwaysIntegrate → +C don't forget
12
If \(f(x) = \displaystyle\sum_{n=0}^{\infty} \frac{x^{n+1}}{n+1}\), what is \(f'(x)\)?
Easy
✗ Wrong — Here's why
Differentiate term-by-term: \(\frac{d}{dx}\left[\frac{x^{n+1}}{n+1}\right] = x^n\). So \(f'(x) = \sum_{n=0}^{\infty} x^n = \frac{1}{1-x}\). Option B has a division by \(n\), which is wrong for \(n=0\). Option C starts at \(n=1\), missing the constant term. Option D would come from differentiating \(x^n\), not \(\frac{x^{n+1}}{n+1}\).
13
Using the series for \(\dfrac{1}{1-x}\), find the power series for \(\ln(1+x)\) by integration.
Medium
✗ Wrong — Here's why
\(\frac{1}{1+x} = \sum (-1)^n x^n\). Integrate: \(\ln(1+x) = \sum_{n=0}^\infty \frac{(-1)^n x^{n+1}}{n+1}\). Re-indexing with \(m = n+1\): \(= \sum_{m=1}^\infty \frac{(-1)^{m-1} x^m}{m} = \sum_{n=1}^\infty \frac{(-1)^{n+1} x^n}{n}\). Options B and C and D are equivalent forms — D and C are both correct! A is missing the alternating sign (that would be \(-\ln(1-x)\)).
14
⚠️ Common mistake! After differentiating \(\sum_{n=0}^{\infty} a_n(x-c)^n\) term-by-term, which statement is TRUE?
Tricky
✗ Wrong — Here's why
The theorem states: term-by-term differentiation preserves the radius \(R\) exactly. However, convergence at the endpoints \(x = c \pm R\) must be re-examined for the new differentiated series. Example: \(\sum \frac{x^n}{n}\) converges at \(x=-1\), but after differentiating to \(\sum x^{n-1}\), neither endpoint converges.
Chapter 6 — Taylor & Maclaurin Series
Compute coefficients from derivatives: \(a_n = \dfrac{f^{(n)}(c)}{n!}\)
🔑
Quick Memory Keys
Taylor at \(c\): plug derivatives of \(f\) at \(c\) into the formula. Maclaurin = Taylor at \(c=0\). The coefficient of \((x-c)^n\) is always \(f^{(n)}(c)/n!\).
COEFFICIENT = f⁽ⁿ⁾(c) ÷ n!Maclaurin = Taylor at 0PATTERN-SPOT odd/even terms
15
The coefficient of \(x^3\) in the Maclaurin series of \(f(x) = e^{2x}\) is:
Medium
✗ Wrong — Here's why
Method 1 (substitute): \(e^{2x} = \sum \frac{(2x)^n}{n!} = \sum \frac{2^n x^n}{n!}\). For \(n=3\): coefficient \(= \frac{2^3}{3!} = \frac{8}{6} = \frac{4}{3}\). Options A and B miss the factor of \(2^3\). Option D equals \(\frac{4}{3}\) too — but \(\frac{8}{6}\) is the unsimplified form; C is the simplified correct answer \(\frac{4}{3}\).
16
Find the third-degree Taylor polynomial of \(f(x) = \sin x\) centered at \(x = 0\).
Easy
✗ Wrong — Here's why
For \(\sin x\), only odd-power terms appear: \(\sin x = x - \frac{x^3}{3!} + \frac{x^5}{5!} - \cdots\). The third-degree polynomial keeps up to \(x^3\): \(T_3(x) = x - \frac{x^3}{6}\). Option A has an \(x^2\) term — that belongs to \(\cos x\). Option C is the second-degree Taylor of \(\cos x\). Option D has the wrong sign.
Chapter 7 — Applications & Advanced Problems
Approximation, limits, integrals, and error bounds using power series.
🔑
Quick Memory Keys
Power series can compute difficult limits (use L'Hôpital's idea via expansion), integrate non-elementary functions, and approximate values with Taylor remainder bound.
LIMIT via expansionINTEGRATE term-by-termERROR ≤ first omitted term (AST)SUBSTITUTE cleverly
17
Using power series, evaluate \(\displaystyle\lim_{x \to 0} \frac{\sin x - x}{x^3}\).
Medium
✗ Wrong — Here's why
Substitute \(\sin x = x - \frac{x^3}{6} + O(x^5)\):
Check: \(\sin x\) has factorials in denominator. \(\tanh^{-1} x\) has no alternating sign. \(\ln(1+x)\) has linear powers only.
19
⚠️ Hard trap! Approximate \(\displaystyle\int_0^{0.1} e^{-x^2}\,dx\) using the first two nonzero terms of the Maclaurin series. Which answer is closest?
Hard
✗ Wrong — Here's why
\(e^{-x^2} = 1 - x^2 + \frac{x^4}{2} - \cdots\). Using first two terms: \(\int_0^{0.1}(1-x^2)\,dx = \left[x - \frac{x^3}{3}\right]_0^{0.1} = 0.1 - \frac{0.001}{3} \approx 0.1 - 0.000\overline{3} \approx 0.09967\).
The exact value is ≈ 0.09983 (three terms gives this). Option A ignores the \(x^2\) correction entirely.
20
⚠️ Ultimate challenge! If \(\displaystyle f(x) = \sum_{n=0}^{\infty} (-1)^n \frac{x^{2n}}{(2n)!}\), which closed-form function does \(f(x)\) equal?
Hard
✗ Wrong — Here's why
The series \(\sum_{n=0}^\infty \frac{(-1)^n x^{2n}}{(2n)!} = 1 - \frac{x^2}{2!} + \frac{x^4}{4!} - \cdots\) is exactly the Maclaurin series of \(\cos x\).
Compare: \(\cosh x = \sum \frac{x^{2n}}{(2n)!}\) — same structure but NO alternating sign. \(\sin x\) uses odd powers \(x^{2n+1}\). \(e^{-x} = \sum \frac{(-x)^n}{n!}\) alternates all powers, not just even ones.