What Is The Maclaurin Series?
The Maclaurin Series of a function $f$ is the infinite polynomial whose coefficients are the derivatives of $f$ evaluated at $0$, each divided by a factorial. It represents $f(x)$ near $x = 0$, provided $f$ has derivatives of every order at $0$.
$$f(x)=\sum_{n=0}^{\infty}\frac{f^{(n)}(0)}{n\text{ factorial}},x^{n}=f(0)+f'(0),x+\frac{f''(0)}{2},x^{2}+\frac{f'''(0)}{6},x^{3}+\cdots$$
Here $f^{(n)}(0)$ means the $n$-th derivative of $f$, worked out and then evaluated at $x = 0$. The denominators $2$ and $6$ are $2$ factorial and $3$ factorial. The whole idea is a trade: a function that is hard to compute directly gets swapped for a sum of powers of $x$, which is nothing but multiplication and addition.
Two facts frame everything below:
It is a Taylor series with its centre fixed at zero. The general Taylor series expands a function around any point $x = a$; set $a = 0$ and you get the Maclaurin Series. It is the same machine parked at the origin.
It is only valid where it converges. Each Maclaurin Series has an interval of convergence, a range of $x$ values for which the infinite sum actually equals the function. Outside that range the formula is meaningless.
How Do You Find A Maclaurin Series?
To build the series, differentiate the function again and again, plug in $x = 0$ each time, and drop the results into the formula as coefficients. The cleanest way to see this is to derive the expansion of $e^{x}$ from nothing.
The exponential function is its own derivative, so $f(x)=e^{x}$ gives $f'(x)=e^{x}$, $f''(x)=e^{x}$, and so on forever. Evaluate each at $0$:
$$f(0)=e^{0}=1,\quad f'(0)=1,\quad f''(0)=1,\quad f'''(0)=1,\ \dots$$
Every coefficient is $1$, so the series is:
$$e^{x}=1+x+\frac{x^{2}}{2}+\frac{x^{3}}{6}+\frac{x^{4}}{24}+\cdots=\sum_{n=0}^{\infty}\frac{x^{n}}{n\text{ factorial}}$$
This converges for every real number $x$. Now the same procedure for $\sin x$, where the derivatives cycle. With $f(x)=\sin x$:
$$f(0)=\sin 0=0,\quad f'(0)=\cos 0=1,\quad f''(0)=-\sin 0=0,\quad f'''(0)=-\cos 0=-1$$
The pattern of coefficients is $0, 1, 0, -1, 0, 1, \dots$, so only the odd powers survive and their signs alternate:
$$\sin x = x-\frac{x^{3}}{6}+\frac{x^{5}}{120}-\frac{x^{7}}{5040}+\cdots=\sum_{n=0}^{\infty}\frac{(-1)^{n}}{(2n+1)\text{ factorial}},x^{2n+1}$$
A quick self-check confirms the result: differentiating this series term by term gives $1-\frac{x^{2}}{2}+\frac{x^{4}}{24}-\cdots$, which is exactly the Maclaurin Series for $\cos x$, and $\frac{d}{dx}\sin x = \cos x$ is correct. The series respects the calculus it came from.
What Do The Terms Mean Geometrically?
Each partial sum of a Maclaurin Series is a polynomial that hugs the curve of $f$ near $x = 0$, and every extra term makes the hug tighter over a wider range.
The degree-$1$ piece, $f(0)+f'(0)x$, is the tangent line at $x = 0$. Its slope is the derivative $f'(0)$, so the first two terms are already the familiar linear approximation.
The degree-$2$ piece adds $\frac{f''(0)}{2}x^{2}$, which bends the line to match the curve's concavity.
Higher terms correct the shape further out. The partial sums converge to $f(x)$ on the interval of convergence, and the picture is a stack of polynomials closing in on the true curve.
This is the geometric reading behind the algebra: a derivative is the slope of a tangent, and the Maclaurin Series stacks slope, curvature, and finer bends into one approximating polynomial. For the underlying machinery, see the derivative formula.
What Are The Standard Maclaurin Series Expansions?
A handful of expansions cover most of calculus, and it is worth knowing them the way you know times tables. Each row lists the first terms, the general term, and the interval of convergence.
Table 1: The standard Maclaurin Series expansions with their intervals of convergence.
Function | Maclaurin Series (first terms) | General term | Converges for |
|---|---|---|---|
$e^{x}$ | $1+x+\dfrac{x^{2}}{2}+\dfrac{x^{3}}{6}+\cdots$ | $\dfrac{x^{n}}{n\text{ factorial}}$ | all real $x$ |
$\sin x$ | $x-\dfrac{x^{3}}{6}+\dfrac{x^{5}}{120}-\cdots$ | $\dfrac{(-1)^{n}x^{2n+1}}{(2n+1)\text{ factorial}}$ | all real $x$ |
$\cos x$ | $1-\dfrac{x^{2}}{2}+\dfrac{x^{4}}{24}-\cdots$ | $\dfrac{(-1)^{n}x^{2n}}{(2n)\text{ factorial}}$ | all real $x$ |
$\dfrac{1}{1-x}$ | $1+x+x^{2}+x^{3}+\cdots$ | $x^{n}$ | $-1<x<1$ |
$\ln(1+x)$ | $x-\dfrac{x^{2}}{2}+\dfrac{x^{3}}{3}-\cdots$ | $\dfrac{(-1)^{n-1}x^{n}}{n}$ | $-1<x\le 1$ |
$(1+x)^{k}$ | $1+kx+\dfrac{k(k-1)}{2}x^{2}+\cdots$ | $\dbinom{k}{n}x^{n}$ | $-1<x<1$ |
Three of these deserve a note. The row for $\frac{1}{1-x}$ is just the geometric sequence sum written as a series, which is why it only works for $-1<x<1$. The last row is the general binomial series, and when $k$ is a positive whole number it stops early and becomes the ordinary binomial theorem. The $\ln(1+x)$ row includes its right endpoint $x = 1$ but not its left endpoint, a reminder to always check the ends of the interval.
How Do You Use A Maclaurin Series? (Worked Examples)
Example 1: Approximate $e^{0.5}$ using the first three terms.
Take the $e^{x}$ series and keep the terms up to $x^{2}$, then substitute $x = 0.5$:
$$e^{0.5}\approx 1+0.5+\frac{(0.5)^{2}}{2}=1+0.5+0.125=1.6250$$
The true value is $e^{0.5}=1.6487$ to four decimal places, so three terms already land within $0.0237$. Adding the next term $\frac{(0.5)^{3}}{6}=0.0208$ gives $1.6458$, and the term after that gives $1.6484$. The approximation tightens fast because $0.5$ sits comfortably inside the interval of convergence (all real $x$).
Final answer: $e^{0.5}\approx 1.6250$ with three terms, closing on $1.6487$ as terms are added.
Example 2: Find the Maclaurin Series for $\cos(2x)$.
Rather than differentiate from scratch, substitute $2x$ into the known $\cos$ expansion. Replace every $x$ with $2x$:
$$\cos(2x)=1-\frac{(2x)^{2}}{2}+\frac{(2x)^{4}}{24}-\cdots=1-\frac{4x^{2}}{2}+\frac{16x^{4}}{24}-\cdots$$
Simplify each coefficient carefully, because the power of $2$ rides along with $x$:
$$\cos(2x)=1-2x^{2}+\frac{2}{3}x^{4}-\cdots$$
Final answer: $\cos(2x)=1-2x^{2}+\dfrac{2}{3}x^{4}-\cdots$, valid for all real $x$.
Example 3: Approximate $\ln(1.1)$ and respect the interval.
Write $\ln(1.1)=\ln(1+0.1)$ and use the $\ln(1+x)$ series with $x = 0.1$. Since $0.1$ lies inside $-1<x\le 1$, the series is allowed:
$$\ln(1.1)\approx 0.1-\frac{(0.1)^{2}}{2}+\frac{(0.1)^{3}}{3}=0.1-0.005+0.000333=0.0953$$
The true value is $\ln(1.1)=0.0953$ to four decimal places, so three terms suffice. The same series with $x = 2$ (an attempt at $\ln 3$) would be nonsense, because $2$ is outside the interval of convergence.
Final answer: $\ln(1.1)\approx 0.0953$, and the method fails for $x$ outside $-1<x\le 1$.
Why Does The Maclaurin Series Work?
The formula is not a guess. It is forced by a single demand: build a polynomial whose value and whose every derivative match $f$ exactly at $x = 0$.
Suppose $f(x)=a_{0}+a_{1}x+a_{2}x^{2}+a_{3}x^{3}+\cdots$. Setting $x = 0$ kills every term but the first, so $a_{0}=f(0)$.
Differentiate once, then set $x = 0$. Only the $a_{1}$ term survives, giving $a_{1}=f'(0)$.
Differentiate twice. The $x^{2}$ term brings down a factor of $2$, so $a_{2}=\frac{f''(0)}{2}$. Each further derivative pulls down one more factor, which is exactly where the factorials come from.
So the factorial denominators are not decoration. They are the bookkeeping that undoes the numbers the power rule keeps dropping out front. Matching a function at one point, in value and in every derivative, is enough to pin down a polynomial that follows the curve outward, and that polynomial is the Maclaurin Series.
Who Discovered The Maclaurin Series?
The series carries one name but belongs to several people across three centuries and two continents. It is named for a Scottish prodigy, was written down generally by an Englishman before him, and was found in India long before either.
Two later mathematicians shaped the version taught today:
Brook Taylor (1685 to 1731, England) published the general expansion around any point in 1715, giving us the Taylor series of which the Maclaurin Series is the centred-at-zero case.
Colin Maclaurin (1698 to 1746, Scotland) entered university at eleven and became a professor at nineteen. He used the zero-centred series so heavily in his 1742 work that his name stuck to it, though he credited Taylor plainly.
Where Is The Maclaurin Series Used In The Real World?
The series is the quiet engine that turns hard functions into arithmetic a machine can do.
Calculators and computer chips: the hardware that evaluates $\sin x$, $\cos x$, $e^{x}$, and logarithms leans on truncated series like these, since a processor can only add and multiply.
Physics and engineering: the small-angle approximation $\sin x \approx x$, which is just the first term of the sine series, is what makes the pendulum equation and much of optics solvable by hand.
Statistics: the bell curve depends on $e^{-x^{2}}$, whose integral has no elementary antiderivative. Its Maclaurin Series, $1-x^{2}+\frac{x^{4}}{2}-\cdots$, can be integrated term by term to tabulate probabilities, a job that ordinary integration cannot finish in closed form.
Signal processing and graphics: fast approximations of trig and exponential functions, built from a few series terms, keep audio, video, and animation running in real time.
One formula, an infinite polynomial pinned to a single point, sits under the calculator in your bag and the model that reads your voice. That reach is why the Maclaurin Series is a landmark of first-year calculus.
What Are The Most Common Mistakes With The Maclaurin Series?
These four errors, drawn from documented student-error lists and calculus help threads, account for most lost marks on this topic.
Dropping the factorial denominators.
Where it slips in:
A student writes $e^{x}=1+x+x^{2}+x^{3}+\cdots$, copying the powers but forgetting what divides them.
Don't do this:
Do not treat the Maclaurin Series like a plain geometric series. Only $\frac{1}{1-x}$ has bare powers with no denominators.
The correct way:
Divide the $x^{n}$ term by $n$ factorial: $e^{x}=1+x+\frac{x^{2}}{2}+\frac{x^{3}}{6}+\cdots$. The factorials are what make the series converge.
Losing a sign or swapping sine with cosine.
Where it slips in:
A student gives $\cos x$ odd powers, or writes every term of $\cos x$ as a plus, forgetting the alternating signs.
Don't do this:
Do not mix the two parities. Sine has only odd powers; cosine has only even powers; both alternate in sign.
The correct way:
Anchor each from its value at $0$: $\sin 0 = 0$ forces $\sin x$ to start at $x$, and $\cos 0 = 1$ forces $\cos x$ to start at $1$, then alternate: $\cos x = 1-\frac{x^{2}}{2}+\frac{x^{4}}{24}-\cdots$.
Substituting into a known series without carrying the powers.
Where it slips in:
Building $\cos(2x)$, a student replaces $x$ with $2x$ in the value but writes $1-\frac{2x^{2}}{2}+\cdots$, forgetting that $(2x)^{2}=4x^{2}$.
Don't do this:
Do not substitute only the variable. The exponent acts on the whole replacement, coefficient and all.
The correct way:
Expand the bracket in full: $\frac{(2x)^{2}}{2}=\frac{4x^{2}}{2}=2x^{2}$, so $\cos(2x)=1-2x^{2}+\frac{2}{3}x^{4}-\cdots$.
Using the series outside its interval of convergence.
Where it slips in:
A student uses the $\ln(1+x)$ series to find $\ln 3$ by setting $x = 2$, or the geometric series at $x = 1$, and gets a divergent nonsense sum.
Don't do this:
Do not plug in a value without checking the interval, and do not assume the endpoints are included.
The correct way:
Confirm $x$ lies in the interval first. The $\ln(1+x)$ series needs $-1<x\le 1$, so it handles $\ln 1.5$ but not $\ln 3$; test each endpoint separately, since one may converge while the other diverges.
Practice Problems On The Maclaurin Series
Give the first three nonzero terms unless a problem says otherwise. Answers follow each line.
Write the Maclaurin Series for $e^{x}$.
(Answer: $1+x+\frac{x^{2}}{2}$.)Write the Maclaurin Series for $\sin x$.
(Answer: $x-\frac{x^{3}}{6}+\frac{x^{5}}{120}$.)Find the Maclaurin Series for $\cos(3x)$.
(Answer: substitute $3x$ into $\cos$: $1-\frac{9}{2}x^{2}+\frac{27}{8}x^{4}$.)Approximate $e^{0.1}$ using three terms.
(Answer: $1+0.1+\frac{(0.1)^{2}}{2}=1.1050$; true value $1.1052$.)State the interval of convergence for the series of $\frac{1}{1-x}$.
(Answer: $-1<x<1$.)Find the Maclaurin Series for $\ln(1+x)$ and its interval.
(Answer: $x-\frac{x^{2}}{2}+\frac{x^{3}}{3}$, valid for $-1<x\le 1$.)
Where Should You Go Next After The Maclaurin Series?
The series sits at the meeting point of derivatives, sequences, and algebra, so several doors open naturally from here.
Calculus. Step back to the limits and derivatives the coefficients are built from, and see where series fit in the wider subject.
Sequences. A series is a sum of a sequence, so the language of terms, patterns, and partial sums starts here.
Binomial Theorem. The binomial series is the Maclaurin Series of $(1+x)^{k}$, and the finite theorem is its whole-number case.
If your child is building toward this level, a live Bhanzu trainer teaches series starting from the "why", the idea of matching a curve at a point, in the Bhanzu math classes.
Was this article helpful?
Your feedback helps us write better content
