🎯 Common Taylor Series and Applications
Essential Maclaurin Series Reference
1. Exponential Function
ex=∑n=0∞n!xn=1+x+2!x2+3!x3+4!x4+⋯
Interval: (−∞,∞)
Radius: R=∞
2. Sine Function
sinx=∑n=0∞(2n+1)!(−1)nx2n+1=x−3!x3+5!x5−7!x7+⋯
Interval: (−∞,∞)
Only odd powers!
3. Cosine Function
cosx=∑n=0∞(2n)!(−1)nx2n=1−2!x2+4!x4−6!x6+⋯
Interval: (−∞,∞)
Only even powers!
4. Geometric Series
1−x1=∑n=0∞xn=1+x+x2+x3+x4+⋯
Interval: (−1,1)
Most versatile for substitutions!
5. Natural Logarithm
ln(1+x)=∑n=1∞n(−1)n−1xn=x−2x2+3x3−4x4+⋯
Interval: (−1,1] (includes 1!)
6. Binomial Series (General)
(1+x)p=1+px+2!p(p−1)x2+3!p(p−1)(p−2)x3+⋯
Interval: (−1,1) when p is not a positive integer
When p is a positive integer, this is a finite polynomial (binomial theorem).
Application 1: Approximating Functions
Example: Approximate sin(0.1) using the first three terms.
sinx≈x−6x3
sin(0.1)≈0.1−6(0.1)3=0.1−60.001
≈0.1−0.000167=0.099833
Actual value: sin(0.1)≈0.0998334...
Very close! ✓
Application 2: Evaluating Limits
Example: Find limx→0x2ex−1−x
Substitute series for ex:
ex=1+x+2!x2+3!x3+⋯
ex−1−x=2!x2+3!x3+4!x4+⋯
x2ex−1−x=x22x2+6x3+24x4+⋯
=21+6x+24x2+⋯
As x→0:
limx→0x2ex−1−x=21
No L'Hôpital's needed!
Application 3: Finding Derivatives at a Point
Example: Find f(10)(0) if f(x)=x2e3x.
Step 1: Find Maclaurin series for f(x)
e3x=∑n=0∞n!(3x)n=1+3x+29x2+627x3+⋯
x2e3x=x2(1+3x+29x2+29x3+⋯)
=x2+3x3+29x4+29x5+⋯
Step 2: General term has form n!f(n)(0)xn
The coefficient of x10 is 10!f(10)(0).
From x2e3x=x2∑n=0∞n!3nxn=∑n=0∞n!3nxn+2
For x10 term: n+2=10, so n=8.
Coefficient: 8!38
10!f(10)(0)=8!38
f(10)(0)=8!38⋅10!=38⋅10⋅9=38⋅90
=6561⋅90=590,490
Application 4: Integrating Non-Elementary Functions
Example: Express ∫01xsinxdx as an infinite series.
Step 1: Write series for sinx
sinx=x−3!x3+5!x5−7!x7+⋯
Step 2: Divide by x
xsinx=1−3!x2+5!x4−7!x6+⋯
Step 3: Integrate from 0 to 1
∫01xsinxdx=∫01(1−6x2+120x4−5040x6+⋯)dx
=[x−18x3+600x5−35280x7+⋯]01
=1−181+6001−352801+⋯
≈0.9461 (using first 4 terms)
Substitution Techniques
Example 5: Find series for 1+x21
Start with: 1−u1=∑n=0∞un
Substitute u=−x2:
1+x21=1−(−x2)1=∑n=0∞(−x2)n
=∑n=0∞(−1)nx2n
=1−x2+x4−x6+x8−⋯
Interval: ∣x∣<1
Example 6: Find series for arctanx
From Example 5: 1+x21=1−x2+x4−x6+⋯
We know: dxd[arctanx]=1+x21
Integrate both sides:
arctanx=∫(1−x2+x4−x6+⋯)dx
=C+x−3x3+5x5−7x7+⋯
At x=0: arctan0=0, so C=0.
arctanx=∑n=0∞2n+1(−1)nx2n+1
=x−3x3+5x5−7x7+⋯
Interval: [−1,1]
Fun Application: Approximating π
From arctanx=x−3x3+5x5−⋯
At x=1: arctan1=4π
4π=1−31+51−71+91−⋯
π=4(1−31+51−71+91−⋯)
(This converges very slowly, but it's a cool formula!)
Differentiation Example
Example 7: Find series for (1−x)21
Method 1: Differentiate 1−x1
dxd[1−x1]=(1−x)21
dxd[∑n=0∞xn]=∑n=1∞nxn−1
(1−x)21=∑n=1∞nxn−1=1+2x+3x2+4x3+⋯
Or reindex: ∑n=0∞(n+1)xn
Multiplying Series
Example 8: Find first 3 terms of exsinx
ex=1+x+2x2+6x3+⋯
sinx=x−6x3+⋯
Multiply:
(1+x+2x2+6x3+⋯)(x−6x3+⋯)
Constant term: None (since sinx starts with x)
x term: 1⋅x=x
x2 term: x⋅x=x2
x3 term: 2x2⋅x+1⋅(−6x3)+x⋅0=2x3−6x3=3x3
exsinx=x+x2+3x3+⋯
⚠️ Common Mistakes
Mistake 1: Wrong Interval After Substitution
For 1+x21 from 1−u1 with u=−x2:
WRONG: Interval is still (−1,1)
RIGHT: Need ∣u∣<1, so ∣−x2∣<1, which means ∣x∣<1 (still (−1,1)!)
But if you substitute u=2x, interval changes!
Mistake 2: Forgetting Integration Constant
When integrating series: ∫∑cnxndx=C+∑n+1cnxn+1
Must find C using initial condition!
Mistake 3: Using Series Outside Interval of Convergence
ln(1+x)=x−2x2+⋯ only for −1<x≤1
WRONG: ln3=2−24+38−⋯ (using x=2)
x=2 is outside the interval!
Mistake 4: Wrong Power After Substitution
For ex2 from ex=∑n!xn:
WRONG: ex2=∑n!x2n
RIGHT: ex2=∑n!(x2)n=∑n!x2n ✓
(In this case same answer, but be careful with the logic!)
📝 Practice Strategy
- Memorize the Big 5: ex,sinx,cosx,1−x1,ln(1+x)
- Know intervals: Most are (−∞,∞) except geometric and log
- Substitution: Replace x with anything, adjust interval
- Term by term operations: Valid within radius of convergence
- For limits: Expand both numerator and denominator
- For integrals: Integrate series term by term
- For derivatives at 0: Find coefficient of xn in series
- Check first 3-4 terms: Usually sufficient for problems