Welcome to the World of Series!
In this chapter of Further Pure Mathematics 2 (FP2), we are going to learn one of the most powerful "magic tricks" in mathematics: how to turn complicated, curvy functions (like \( \sin(x) \) or \( \ln(1+x) \)) into simple, manageable polynomials. This makes complex calculations much easier for computers and engineers to solve!
Why is this important? Imagine trying to calculate \( \sin(0.1) \) without a calculator. It’s hard! But if we turn \( \sin(x) \) into a string of \( x, x^2, x^3 \), the calculation becomes simple addition and multiplication.
Don't worry if this seems tricky at first. We will break it down step-by-step!
Prerequisite Check: Before we start, make sure you are comfortable with basic differentiation (the power rule, product rule, and chain rule) from your P3 and P4 studies.
1. Higher Order Derivatives
To build these series, we need to differentiate functions multiple times. This is called finding higher order derivatives.
The Notation:
First derivative: \( f'(x) \) or \( \frac{dy}{dx} \)
Second derivative: \( f''(x) \) or \( \frac{d^2y}{dx^2} \)
Third derivative: \( f'''(x) \) or \( \frac{d^3y}{dx^3} \)
Anything higher uses a number in brackets: \( f^{(4)}(x) \), \( f^{(5)}(x) \), and so on.
Example: If \( f(x) = x^4 \), then:
\( f'(x) = 4x^3 \)
\( f''(x) = 12x^2 \)
\( f'''(x) = 24x \)
\( f^{(4)}(x) = 24 \)
Key Takeaway: Higher order derivatives are just differentiating the previous answer again!
2. The Maclaurin Series
A Maclaurin Series is a way to represent a function as an infinite sum of terms calculated from the values of its derivatives at zero.
The General Formula:
\( f(x) = f(0) + xf'(0) + \frac{x^2}{2!}f''(0) + \frac{x^3}{3!}f'''(0) + \dots + \frac{x^r}{r!}f^{(r)}(0) + \dots \)
Wait, what is \( r! \)?
That’s factorial notation! \( 3! = 3 \times 2 \times 1 = 6 \). Factors are the "scaling" that keeps our polynomial accurate as it grows.
Step-by-Step: How to derive a Maclaurin Series
1. Write down the function \( f(x) \).
2. Find the 1st, 2nd, 3rd (and sometimes 4th) derivatives.
3. Plug \( x = 0 \) into the function and all its derivatives.
4. Substitute these values into the Maclaurin formula.
Did you know? The Maclaurin series is actually a special version of the Taylor series (which we will see later) where we "center" everything at zero.
3. Standard Maclaurin Series
The Edexcel FP2 syllabus requires you to know how to derive and use several standard series. While some are in the formula booklet, being able to derive them is a common exam question!
The "Must-Know" Series:
1. Exponential: \( e^x = 1 + x + \frac{x^2}{2!} + \frac{x^3}{3!} + \dots \)
2. Sine: \( \sin(x) = x - \frac{x^3}{3!} + \frac{x^5}{5!} - \dots \) (Note: Only odd powers!)
3. Cosine: \( \cos(x) = 1 - \frac{x^2}{2!} + \frac{x^4}{4!} - \dots \) (Note: Only even powers!)
4. Natural Log: \( \ln(1+x) = x - \frac{x^2}{2} + \frac{x^3}{3} - \frac{x^4}{4} + \dots \) (Note: No factorials in the denominator here! This is valid for \( -1 < x \le 1 \)).
Memory Trick:
- \( \sin(x) \) is an odd function, so it only has odd powers of \( x \).
- \( \cos(x) \) is an even function, so it only has even powers of \( x \).
Common Mistake: Forgetting the alternating signs (+, -, +, -) in the trig and log series. Always double-check your signs!
Key Takeaway: You can combine these series! For example, if you need the series for \( e^{2x} \), just replace every \( x \) in the standard \( e^x \) series with \( 2x \).
4. The Taylor Series
Sometimes, approximating a function near \( x=0 \) isn't helpful. If we want to be accurate near a different point, say \( x=3 \), we use a Taylor Series.
The Formula (Expansion in powers of \( (x-a) \)):
\( f(x) = f(a) + (x-a)f'(a) + \frac{(x-a)^2}{2!}f''(a) + \frac{(x-a)^3}{3!}f'''(a) + \dots \)
Analogy: If the Maclaurin series is like a flashlight centered at the origin (0,0), the Taylor series is a flashlight you can move to any point \( a \) to see the function clearly in that area.
Example Task: Expand \( \sin(x) \) in ascending powers of \( (x - \pi) \).
Here, your \( a = \pi \). You would find the derivatives, plug in \( \pi \), and then use the formula with \( (x-\pi) \), \( (x-\pi)^2 \), etc.
Key Takeaway: Taylor series are just a "shifted" version of Maclaurin. If \( a=0 \), it becomes a Maclaurin series!
5. Series Solutions for Differential Equations
One of the coolest uses of Taylor series in FP2 is solving differential equations that are too hard to solve using normal methods.
The Method:
If you are given a differential equation like \( \frac{d^2y}{dx^2} + x\frac{dy}{dx} + y = 0 \) with initial conditions (e.g., \( y=1, \frac{dy}{dx}=0 \) at \( x=0 \)):
1. Find \( y(0) \): Usually given.
2. Find \( y'(0) \): Usually given.
3. Find \( y''(0) \): Rearrange the original differential equation to make \( \frac{d^2y}{dx^2} \) the subject, then plug in your values for \( x, y, \) and \( y' \).
4. Find \( y'''(0) \): Differentiate the entire differential equation with respect to \( x \) (you might need the product rule here!) and then plug in the values you know.
5. Build the Series: Plug your values for \( y(0), y'(0), y''(0) \dots \) into the Maclaurin formula.
Quick Review Box:
- Initial conditions are your starting values.
- Use Implicit Differentiation if \( y \) and \( x \) are mixed together.
- The question usually asks for the expansion up to a specific term, like \( x^3 \) or \( x^4 \).
Top Tips for the Exam
1. Watch the Factorials: In the heat of the exam, many students write \( 3 \) instead of \( 3! \) (which is 6). Always write out the factorial first to avoid silly marks lost!
2. Differentiate Carefully: If you make a mistake in the first derivative, all your subsequent derivatives will be wrong. Slow down and double-check your chain rule.
3. Range of Validity: Remember that some series (like \( \ln(1+x) \)) only work for certain values of \( x \). If \( x \) is too big, the series "explodes" and is no longer useful.
4. Use your Calculator: You can use your calculator to check the value of a derivative at a specific point to see if your manual differentiation is correct.
You've got this! Practice deriving the standard series for \( e^x \), \( \sin(x) \), and \( \cos(x) \) until they become second nature. Good luck!