NOTE: A Newer version of this tutorial may exist. Click here to go to the never version


Taylor Series


Chris Tralie


Last updated 9/19/2010: Fixed an error with the remainder theorem and updated some examples to reflect this change and to make things more clear
  1. Introduction: What's the Point?
  2. Starting with an Infinite Polynomial: A Differential point of View
  3. Some observations about the Taylor Series, and a Quick Example
  4. Error and the Remainder Term
  5. Maclaurin Series
  6. Small Angle Approximation for Sine
  7. A note about choosing a "center"

1. Introduction: What's the Point?

If I gave you the function f(x) = x2 and asked you to evaluate it for some integer x, you could do that on pen and paper. But there are certain functions that are much less obvious to compute. For example, if someone asks you "what's log base 10 of 20?," you won't be able to just bust out a pen and paper and work it out in front of them. So what can you do? Well you know it's between 1 and 2. You could try drawing a log curve on a piece of paper and doing some sort of interpolation guesswork. But can you do better? Well, it turns out you can if you make one very odd conceptual leap. We're going to approximate any function as an infinite polynomial, which is where Taylor Series comes in. Now you might be thinking, "alright, even if we do find this infinite polynomial to represent..say...x1/2, what good is that? I don't want to sit there for all of eternity writing down what the square root of 2 is." Well it is great in theory to have these infinite polynomials, but it is also great in practice, because we can actually use finite approximations of them to find (damn good!) estimates of any function (so you won't have to sit there forever to come up with an answer that's good enough). So without further ado, let me begin to derive them for you....

2. Starting with an Infinite Polynomial: A Differential point of View

Let's start with an arbitrary function f(x). Let's assume that I did manage to find an infinite polynomial that matched f(x) exactly at every point. Define that infinite polynomial, g(x), as follows:

EQ 1: $g(x) = c_0 + c_1(x-a) + c_2(x-a)^2 + c_3(x-a)^3 + c_4(x-a)^4 + ....$

Where c0, c1, c2, etc are the coefficients of each part of the polynomial, and a is some constant (we can say a is the point around which the polynomial is "centered"...more about that later). g(x) is the most general polynomial expressible since the coefficients are expressed as variables. We need to solve for those coefficients if we want g(x) to match up with f(x) exactly. To do this, we note that:

Since f(x) and g(x) represent the same function, all of their derivatives match.

If we're really clever, we can exploit this fact to our advantage. Let's first see if we can solve for c0 in terms of a known value of f(x). To do this, we do a little trick by evaluating both functions at x=a. This will cause all of the terms in the infinite polynomial to drop out except for the very first coefficient, since they will all be a-a (0) raised to some power.

EQ 2: $f(a) = g(a) = c_0 + c_1(a-a) + c_2(a-a)^2 + c_3(a-a)^3 + ... = c_0$

Therefore, c0 = f(a).
Let's now use that fact about derivatives, combined with this trick, to see if we can keep going and figure out some more coefficients. First, start by taking the derivative of both functions, and remember that their derivative functions are equal since the functions themselves are assumed to be equal:

EQ 3: $f '(x) = g '(x) = c_1 + 2c_2(x-a) + 3c_3(x-a)^2 + 4c_4(x-a)^3 + ...$

Now use that trick again and evaluate f'(x) and g'(x) at a. Once again, everything drops out except for c1, leaving:
c1 = f '(a)

Next step, take the second derivative, and evaluate at x=a:

EQ 4: $f''(x) = g''(x) = 2c_2 + (3)(2)c_3(x-a) + (4)(3)c_4(x-a)^2 + ...$

f ''(a) = g''(a) = 2c2
c2 = f ''(a) / 2

Let's go one more step, and perhaps then we can see a pattern beginning to emerge:

EQ 5: $f'''(x) = g'''(x) = (3)(2)c_3 + (4)(3)(2)c_4(x-a) + ....$

f '''(a) = g '''(a) = (3)(2)c_3
c3 = f '''(a) / [(3)(2)]

Now we should begin to see a pattern emerge with the coefficients. Each time we take the derivative of the polynomial function, we simply use the power rule on each one of the polynomial terms, bringing it down one power and bringing the previous power down as a coefficient. This keeps happening until that term gets obliterated, leaving it as a constant. In other words, after taking n derivatives, the term that was originally cnxn is now (cn)n!. When we plug in a into that derivative function, everything gets wiped out except for that constant coefficient (as we can see by those examples above). Therefore, we always have:

fn(a) = (cn)n!
***cn = fn(a) / n!

We now have a general formula for all of the coefficients, leaving us enough information to define the entire infinite polynomial. Here is the formal definition of the Taylor polynomial using the information from above:

EQ 6 (Taylor Series): $\displaystyle\sum_{n=0}^\infty  \frac{f^n(a)}{n!}(x-a)^n$

3. Some observations about the Taylor Series, and a Quick Example

Now that we have this infinite polynomial after doing some roundabout (and not entirely intuitive) tricks, let's see if we can gain some intuition about the polynomial and make some more sense about how it matches up with the original function. Okay first let me make a distinction with terms here; the "Taylor Series" is the entire infinite polynomial for some function. A Taylor Polynomial, on the other hand, is a subset of that polynomial taken out to some finite degree. For example, the function
f(x) = 3*(x-2)3 + (x-2) + 5
could be a "Third Order Taylor Polynomial centered about 2" for some function. When I say "centered about 2," I mean that in equation 6, a=2. When I say the "third order Taylor polynomial," I mean that we've brought the infinite polynomial for some function out only to the third degree, simply leaving out all of the high order terms. Thus, we would not expect this polynomial to match up exactly with the original function anymore, but rather it is an approximation.


So how well does a taylor polynomial of a certain order match a function? Let's start with an example and see what happens. Take the function:

EX 1: $f(x) = 1 + sin(x)$

Let's start with the first order talyor polynomial for f(x), centered about a = 3*PI / 4

\begin{align} 
g(x) &= f(\frac{3\pi}{4}) + f'(\frac{3\pi}{4})(x - \frac{3\pi}{4})\\
&=1 + sin(\frac{3\pi}{4}) + cos(\frac{3\pi}{4})(x - \frac{3\pi}{4})\\
&=1 + \frac{\sqrt{2}}{2} -\frac{\sqrt{2}}{2}*(x - \frac{3\pi}{4})
\end{align}

Here's a graph of that function, matched up with the original



Another name for the first order taylor polynomial is the "linear approximation of a function f(x)". It ends up just being the tangent line at a point! You can see it does a great job really close to the point where we chose to center the Taylor Polynomial, but it starts to do a horrible job when we get just a little outside of that neighborhood. This makes sense, because you would expect the higher order terms to be negligible if (x-a) is small; in other words, if (x-a) << 1, raising it to a higher power makes it even smaller, so we might as well just ignore those terms if we have an x that's close to a. The linear approximation of a function is very useful in science and engineering, and you will probably see it pop up a lot because it simplifies math so much.

Alright, let's see what happens when we compute the second order Taylor Polynomial for this function, centered about a = 3*PI / 4:

\begin{align} 
g(x) &= f(\frac{3\pi}{4}) + f'(\frac{3\pi}{4})(x - \frac{3\pi}{4}) + \frac{1}{2}f''(\frac{3\pi}{4})(x - \frac{3\pi}{4})^2\\
&=1 + sin(\frac{3\pi}{4}) + cos(\frac{3\pi}{4})(x - \frac{3\pi}{4}) - \frac{1}{2}sin(\frac{3\pi}{4})(x - \frac{3\pi}{4})^2\\
&=1 + \frac{\sqrt{2}}{2} -\frac{\sqrt{2}}{2}*(x - \frac{3\pi}{4}) -\frac{\sqrt{2}}{4}*(x - \frac{3\pi}{4})^2
\end{align}

Here's a graph of this



As you can see, this does a better job than the first example; it hugs the function a little bit longer before it starts to shoot off and deviate like crazy. In general, the more terms you take, the better job the Taylor Polynomial does. In the next section, I'll show how to quantify that statement and figure out exactly what the error is when using these approximations.

4. Error and the Remainder Term

Now I'm going to explain how to reason about the accuracy of Taylor Polynomials. This is an important question to answer, since we will need to use them in practice (who has time to fill in an infinite polynomial?). To answer this question, I'm going to use another trick and start doing something that's not very intuitive, but trust me, it will answer this question

As usual, let's start with some function f(x). Take the following definite integral:

\[ \int_a^x f'(t)dt = f(x) - f(a) .\]

Rearrange terms

\[ f(x) = f(a) + \int_a^x f'(t)dt .\]

Now do integration by parts to obtain the integral of f '(t)dt, letting u=f '(t) and dv = dt:

\[ \int_a^x f'(t)dt =  [tf'(t)]_{t = a}^{t = x} - \int_a^x tf''(t)dt .\]


Evaluate the first part of the definite integral

\[ \int_a^x f'(t)dt =  xf'(x) - af'(a) - \int_a^x tf''(t)dt .\]

In the xf '(x) term, plug in the following (this is using the same trick we used right at the beginning when we took the integral of f'(t) from a to x):

\[ \int_a^x f'(t)dt =  x[f'(a) + \int_a^x f''(t)dt ] - af'(a) - \int_a^x tf''(t)dt .\]

\[ \int_a^x f'(t)dt =  xf'(a) - af'(a) + x\int_a^x f''(t)dt - \int_a^x tf''(t)dt .\]

Now combine like terms and plug this back into the original equation for f(x)

\[ f(x) = f(a) +  (x-a)f'(a) + \int_a^x (x - t)f''(t)dt .\]

Okay, now this is starting to look a little bit more like the Taylor Series. Let's take it one step further now:

\[ \int_a^x (x - t)f''(t)dt  = ?.\]

Proceed again via integration by parts, letting u = f''(t) and dv = (x-t)dt. Then v = -(1/2)(x-t)2.

\[ \int_a^x (x - t)f''(t)dt  = [-\frac{1}{2}(x-t)^2f''(t)]_{t = a}^{t = x} - \int_a^x -\frac{1}{2}(x-t)^2 f'''(t)dt.\]

Once again, evaluate the first part of the definite integral

\[ \int_a^x (x - t)f''(t)dt  = -\frac{1}{2}(x-x)^2f''(x) + \frac{1}{2}(x-a)^2f''(a) + \int_a^x \frac{1}{2}(x-t)^2 f'''(t)dt.\]

The (x-x) term will drop out

\[ \int_a^x (x - t)f''(t)dt  = \frac{1}{2}(x-a)^2f''(a) + \int_a^x \frac{1}{2}(x-t)^2 f'''(t)dt.\]

Now plug this back into the original equation for f(x)

\[ f(x) = f(a) + (x-a)f'(a) + \frac{1}{2}(x-a)^2f''(a) + \int_a^x \frac{1}{2}(x-t)^2 f'''(t)dt .\]

And if we broke up that integral at the end again using integration by parts, we would get the following:

\[ f(x) = f(a) + (x-a)f'(a) + \frac{1}{2}(x-a)^2f''(a) + \frac{1}{(3)(2)}(x-a)^3f'''(a) + \int_a^x \frac{1}{(3)(2)}(x-t)^3 f''''(t)dt .\]

Hopefully by now you can see a pattern. When we continue doing integration by parts, we continue to get more terms of the Taylor polynomial for a particular function, plus some definite integral. The difference between f(x) and its nth order Taylor Polynomial is that definite integral, which is the following (I'll call the function Rn(x)):

\[ R_n(x) = \int_a^x \frac{1}{n!}(x-t)^n f^{n+1}(t)dt .\]

This is known as the remainder term, because it gives what's left over after evaluating the nth order Taylor Polynomial for some x. This definite integral evaluates to a number (that's what definite integrals do) for every x (well, when the function is "well-behaved," at least), so we now have an expression for the exact amount of error introduced by using a Taylor approximation!

Usually, you won't be able to say what the integral is exactly, but it's not very hard to figure out an upper bound for the absolute value of the error. Let's start back with that remainder term again, and look at the accumulator function inside of the integral:

$\frac{1}{n!}(x-t)^n f^{n+1}(t)$

If we can find an upper bound on the absolute value of this function, then we can put that upper bound back in the integral and get a constant back. First, we find the absolute maximum that fn+1(t) reaches on the interval [a, x]. I'll call this M. Then we note that on the interval [a, x], (x-t)n is maximized when t = a. Therefore:

$ | \frac{1}{n!}(x-t)^n f^{n+1}(t)| <= \frac{M}{n!}|(x-a)^n|$

which, using the fact that

$|\int f(x)dx| <= \int |f(x)|dx$

implies that

\[ |R_n(x)| <= \int_a^x |\frac{1}{n!}(x-t)^n f^{n+1}(t)|dt <= \int_a^x | \frac{M}{n!}(x-a)^n|dt \]

By the power rule and the fact that M is a constant upper bound of the (n+1)th derivative of f:

\[ \int_a^x | \frac{M}{n!}(x-a)^n|dt = |\frac{M}{(n+1)!}(x-a)^{n+1}| \]

Thus, we can conclude that the absolute value of the remainder is no more than

\[ | \frac{M}{(n+1)!}(x-a)^{n+1} | \]

Let's see an example of this in action:


Ex 2: Take the function f(x) = (x + 1)1/2. Let's center a third order Taylor Polynomial around a = 0, and see how well we can do estimating the sqare root of 2 (plug in x=1).
$f(x) = (x + 1)^{\frac{1}{2}}$f(0) = 1
$f'(x) = \frac{1}{2}(x + 1)^{- \frac{1}{2}}$f '(0) = 0.5
$f''(x) = - \frac{1}{4}(x + 1)^{- \frac{3}{2}}$f ''(0) = -0.25
$f'''(x) = \frac{3}{8}(x + 1)^{- \frac{5}{2}}$f '''(0) = 0.375
The third order taylor polynomial, therefore, is

$g(x) = 1 + 0.5x - \frac{1}{2}(0.25x^2) + \frac{1}{6}(0.375x^3)$

g(1) = 1 + 0.5 - 0.125 + 0.0625 = 1.4375

Now how close is that to the actual square root of 2? Let's look at the formula for the remainder again:

\[ | \frac{M}{(n+1)!}(x-a)^{n+1} | \]

We've taken the 3rd order Taylor approximation, so n=3. We now need to find M, the upper bound of the fourth derivative of (x+1)1/2, which is

$f^4(x) = -\frac{15}{16}(x+1)^{-\frac{7}{2}}$

This is on the interval x = [0,1]. (x+1) raised to a negative power only decreases as the argument x becomes more positive, so the absolute max must occur at x=0. So M = |-15/16*(1)-7/2| = 15/16.

Plugging this all back in, we get that

\[ R_3(x) <= | \frac{(\frac{15}{16})}{4!}(1-0)^4 | = 0.0390625\]

So our estimate of 1.4375 isn't off by more than 0.0391 of the actual square root of two. Not bad for an estimate we did by hand, huh? When I tell my calculator to give me the square root of 2, it gives me 1.414, which is less than 0.0235 of our estimate (which is within our confidence interval of += 0.0391).

Another thing to note about this Taylor Series example is that it produces an alternate series, so taking more terms continues to alternate above and below the actual value of the square root of two, getting closer and closer to that actual value.

5. Maclaurin Series

You'll often hear the term "Maclaurin Series" pop up when people talk about Taylor Series. This is just what we call a Taylor Series that we choose to center around the origin (a = 0):

(Taylor Series): $\displaystyle\sum_{n=0}^\infty  \frac{f^n(a)}{n!}(x-a)^n$

(Maclaurin Series): $\displaystyle\sum_{n=0}^\infty  \frac{f^n(0)}{n!}x^n$

In my opinion, these are actually slightly easier than Taylor Series. I'll finish off this section by deriving the Maclaurin series of a few common funtions (ones you'll probably need to memorize for a test, but that are easy enough to derive if you forget them).

6. Small Angle Approximation for Sine

You may have heard that it is possible to approximate sine of theta as simply theta when theta is small. This is used for such things as the simple pendulum. Well here's a quick proof of that fact using the Maclaurin Series for sine:

\[ sin(\theta) = \theta - \frac{\theta^3}{3!} + \frac{\theta^5}{5!} - \frac{\theta^7}{7!} + ... \approx \theta \]

The higher order terms theta3, theta5, etc. are not large when theta << 1. So it doesn't seem like it would hurt to neglect them when theta is small. But let's be a little more precise. Recall the remainder theorem I discussed in section 4:

\[ R_n(\theta) <= | \frac{M}{(n+1)!}(\theta-a)^{n+1} | \]

One way to look at this is that taking theta to approximate sine is taking the first order Taylor Polynomial (linear approximation), so n=1 in the above formula. And we've taken the Maclaurin series of sin(theta) so a=0. M is the absolute max that the second derivative of sin(x), which is -sin(x). |-sin(x)| never goes above 1, so M=1. Plugging this all into that formula, we get:

\[ R_1(\theta) <= |\frac{1}{2!}\theta^2| = \frac{1}{2}\theta^2 \]

But actually, we can come up with an even tighter bound by remembering that the second order term x2 has a coefficient of zero, so the "linear approximation" of taking theta is really just as good as a quadratic approximation would have been. So we've actually gotten all the accuracy of the quadratic approximation by just taking the linear term. Plugging n=2 back into the formula, we now have:

\[ R_2(\theta) <= |\frac{1}{3!}\theta^3| = \frac{ \theta^3}{6} \]

This bound gives a percent error of 100%*(theta3/6)/theta = (theta2*100/6) percent. When theta = 0.25, the error is no more than 1.04% (very small). When theta = 0.5, this is no more than 4.17% error. Even when theta = 1, the error is no more than 16.7%. This graph below plotting x and sin(x) from 0 to pi/2 shows even more convincing visual evidence for how accurate this approximation is:


7. A note about choosing a "center"

One more quick note and then I think we're done. Something that used to confuse the heck out of me with Taylor Series is choosing what a is in the equation:

$\displaystyle\sum_{n=0}^\infty  \frac{f^n(a)}{n!}(x-a)^n$

Choosing a different a does not "shift" the function horizontally at all. All it does is make the Taylor Polynomials more accurate close to a. Regardless of the a you choose, taking the Taylor Series out to infinity should match up with the original function.



This is an example of how choosing a different a value affects a second order Taylor Polynomial approximation of ex. It simply does a better job closer to where it was chosen, but note that the taylor polynomials don't have to look anything alike.