Show description
Calculus II: Series Cheat Sheet
Calculus II: Series Cheat Sheet
Calculus II: Series Cheat Sheet
Taylor Series Expansion
A Taylor series represents a function as an infinite sum of terms, calculated from the values of the function's derivatives at a single point a.
$$ f(x) = \sum_{n=0}^{\infty} \frac{f^{(n)}(a)}{n!}(x-a)^n $$
Expanded, this looks like:
$$ f(x) = f(a) + \frac{f'(a)}{1!}(x-a) + \frac{f''(a)}{2!}(x-a)^2 + \frac{f'''(a)}{3!}(x-a)^3 + \cdots $$
Here, f(n)(a) is the nth derivative of f evaluated at the point a.
Maclaurin Series
A Maclaurin series is a special case of the Taylor series, centered at a = 0. This is the most common type of power series expansion.
$$ f(x) = \sum_{n=0}^{\infty} \frac{f^{(n)}(0)}{n!}x^n $$
Expanded, this looks like:
$$ f(x) = f(0) + \frac{f'(0)}{1!}x + \frac{f''(0)}{2!}x^2 + \frac{f'''(0)}{3!}x^3 + \cdots $$
Common Maclaurin Series (Your Building Blocks)
Memorizing or having these handy is crucial. Most problems involve manipulating these known series rather than deriving them from scratch.
Function
Series Expansion
Interval of Convergence
$$ \frac{1}{1-x} $$
$$ \sum_{n=0}^{\infty} x^n = 1 + x + x^2 + x^3 + \cdots $$
$$ (-1, 1) $$
$$ e^x $$
$$ \sum_{n=0}^{\infty} \frac{x^n}{n!} = 1 + \frac{x}{1!} + \frac{x^2}{2!} + \frac{x^3}{3!} + \cdots $$
$$ (-\infty, \infty) $$
$$ \sin(x) $$
$$ \sum_{n=0}^{\infty} \frac{(-1)^n x^{2n+1}}{(2n+1)!} = x - \frac{x^3}{3!} + \frac{x^5}{5!} - \cdots $$
$$ (-\infty, \infty) $$
$$ \cos(x) $$
$$ \sum_{n=0}^{\infty} \frac{(-1)^n x^{2n}}{(2n)!} = 1 - \frac{x^2}{2!} + \frac{x^4}{4!} - \cdots $$
$$ (-\infty, \infty) $$
$$ \ln(1+x) $$
$$ \sum_{n=1}^{\infty} \frac{(-1)^{n-1} x^n}{n} = x - \frac{x^2}{2} + \frac{x^3}{3} - \cdots $$
$$ (-1, 1] $$
$$ \arctan(x) $$
$$ \sum_{n=0}^{\infty} \frac{(-1)^n x^{2n+1}}{2n+1} = x - \frac{x^3}{3} + \frac{x^5}{5} - \cdots $$
$$ [-1, 1] $$
$$ (1+x)^k $$ (Binomial Series)
$$ 1 + kx + \frac{k(k-1)}{2!}x^2 + \frac{k(k-1)(k-2)}{3!}x^3 + \cdots $$
$$ (-1, 1) $$
Techniques for Finding New Series
You can use the known series above to find new ones through simple algebraic manipulation.
Substitution: Replace x with another function.
Example: To find the series for e^{-x^3}, substitute u = -x^3 into t…
Calculus II: Series Cheat Sheet
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Calculus II: Series Cheat Sheet</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.9/dist/katex.min.css" xintegrity="sha384-n8MVd4RsNIU0KOVEMVIhbGKLCePo231CVQSHcLesaPSub69TR3YmWFNasQIgyJBy" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/katex@0.16.9/dist/katex.min.js" xintegrity="sha384-XjKyOOlGwcjNTAIQHIpgOno0Hl1YQqzUOEleOLALmuqehneUG+vnGctmUbKyIyuh" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/katex@0.16.9/dist/contrib/auto-render.min.js" xintegrity="sha384-+VBxd3r6XgURycqtZ117nYw44OOcIax56Z4dCRWbxyPt0Koah1uHoK0o4+/RRE05" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Inter', sans-serif;
background-color: #111827;
color: #d1d5db;
}
.container {
max-width: 1000px;
margin: auto;
padding: 2rem;
}
.card {
background-color: #1f2937;
border: 1px solid #374151;
border-radius: 0.75rem;
padding: 1.5rem;
margin-bottom: 2rem;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.card-title {
color: #f9fafb;
font-size: 1.5rem;
font-weight: 600;
border-bottom: 1px solid #4b5563;
padding-bottom: 0.75rem;
margin-bottom: 1rem;
}
.formula {
background-color: #111827;
padding: 1.5rem;
border-radius: 0.5rem;
overflow-x: auto;
font-size: 1.125rem;
margin-top: 1rem;
margin-bottom: 1rem;
}
code {
background-color: #374151;
color: #f3f4f6;
padding: 0.2em 0.4em;
border-radius: 0.25rem;
font-size: 0.9em;
}
table {
width: 100%;
margin-top: 1.5rem;
border-collapse: collapse;
}
th, td {
text-align: left;
padding: 0.75rem 1rem;
border-bottom: 1px solid #374151;
}
th {
color: #d1d5db;
font-weight: 500;
}
tr:last-child td {
border-bottom: none;
}
.katex-display {
margin: 1em 0;
overflow: auto;
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<h1 class="text-4xl font-bold text-white text-center mb-8">Calculus II: Series Cheat Sheet</h1>
<!-- Taylor Series -->
<div class="card">
<h2 class="card-title">Taylor Series Expansion</h2>
<p>A Taylor series represents a function as an infinite sum of terms, calculated from the values of the function's derivatives at a single point <code>a</code>.</p>
<div class="formula">
$$ f(x) = \sum_{n=0}^{\infty} \frac{f^{(n)}(a)}{n!}(x-a)^n $$
</div>
<p>Expanded, this looks like:</p>
<div class="formula">
$$ f(x) = f(a) + \frac{f'(a)}{1!}(x-a) + \frac{f''(a)}{2!}(x-a)^2 + \frac{f'''(a)}{3!}(x-a)^3 + \cdots $$
</div>
<p class="mt-4">Here, <code>f<sup>(n)</sup>(a)</code> is the n<sup>th</sup> derivative of <code>f</code> evaluated at the point <code>a</code>.</p>
</div>
<!-- Maclaurin Series -->
<div class="card">
<h2 class="card-title">Maclaurin Series</h2>
<p>A Maclaurin series is a special case of the Taylor series, centered at <code>a = 0</code>. This is the most common type of power series expansion.</p>
<div class="formula">
$$ f(x) = \sum_{n=0}^{\infty} \frac{f^{(n)}(0)}{n!}x^n $$
</div>
<p>Expanded, this looks like:</p>
<div class="formula">
$$ f(x) = f(0) + \frac{f'(0)}{1!}x + \frac{f''(0)}{2!}x^2 + \frac{f'''(0)}{3!}x^3 + \cdots $$
</div>
</div>
<!-- Common Maclaurin Series -->
<div class="card">
<h2 class="card-title">Common Maclaurin Series (Your Building Blocks)</h2>
<p>Memorizing or having these handy is crucial. Most problems involve manipulating these known series rather than deriving them from scratch.</p>
<div class="overflow-x-auto">
<table>
<thead>
<tr>
<th>Function</th>
<th>Series Expansion</th>
<th>Interval of Convergence</th>
</tr>
</thead>
<tbody>
<tr>
<td>$$ \frac{1}{1-x} $$</td>
<td>$$ \sum_{n=0}^{\infty} x^n = 1 + x + x^2 + x^3 + \cdots $$</td>
<td>$$ (-1, 1) $$</td>
</tr>
<tr>
<td>$$ e^x $$</td>
<td>$$ \sum_{n=0}^{\infty} \frac{x^n}{n!} = 1 + \frac{x}{1!} + \frac{x^2}{2!} + \frac{x^3}{3!} + \cdots $$</td>
<td>$$ (-\infty, \infty) $$</td>
</tr>
<tr>
<td>$$ \sin(x) $$</td>
<td>$$ \sum_{n=0}^{\infty} \frac{(-1)^n x^{2n+1}}{(2n+1)!} = x - \frac{x^3}{3!} + \frac{x^5}{5!} - \cdots $$</td>
<td>$$ (-\infty, \infty) $$</td>
</tr>
<tr>
<td>$$ \cos(x) $$</td>
<td>$$ \sum_{n=0}^{\infty} \frac{(-1)^n x^{2n}}{(2n)!} = 1 - \frac{x^2}{2!} + \frac{x^4}{4!} - \cdots $$</td>
<td>$$ (-\infty, \infty) $$</td>
</tr>
<tr>
<td>$$ \ln(1+x) $$</td>
<td>$$ \sum_{n=1}^{\infty} \frac{(-1)^{n-1} x^n}{n} = x - \frac{x^2}{2} + \frac{x^3}{3} - \cdots $$</td>
<td>$$ (-1, 1] $$</td>
</tr>
<tr>
<td>$$ \arctan(x) $$</td>
<td>$$ \sum_{n=0}^{\infty} \frac{(-1)^n x^{2n+1}}{2n+1} = x - \frac{x^3}{3} + \frac{x^5}{5} - \cdots $$</td>
<td>$$ [-1, 1] $$</td>
</tr>
<tr>
<td>$$ (1+x)^k $$ <br><small>(Binomial Series)</small></td>
<td>$$ 1 + kx + \frac{k(k-1)}{2!}x^2 + \frac{k(k-1)(k-2)}{3!}x^3 + \cdots $$</td>
<td>$$ (-1, 1) $$</td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- Techniques -->
<div class="card">
<h2 class="card-title">Techniques for Finding New Series</h2>
<p>You can use the known series above to find new ones through simple algebraic manipulation.</p>
<ul class="list-disc list-inside space-y-4 mt-4">
<li>
<strong>Substitution:</strong> Replace <code>x</code> with another function.
<p class="text-sm text-gray-400 mt-1 pl-4">Example: To find the series for <code>e^{-x^3}</code>, substitute <code>u = -x^3</code> into the series for <code>e^u</code>.</p>
<div class="formula text-base">
$$ e^{(-x^3)} = 1 + \frac{(-x^3)}{1!} + \frac{(-x^3)^2}{2!} + \cdots = 1 - x^3 + \frac{x^6}{2} - \cdots $$
</div>
</li>
<li>
<strong>Multiplication:</strong> Multiply the entire series by a constant or a power of <code>x</code>.
<p class="text-sm text-gray-400 mt-1 pl-4">Example: To find the series for <code>x^2 \cos(x)</code>, multiply the series for <code>cos(x)</code> by <code>x^2</code>.</p>
<div class="formula text-base">
$$ x^2 \cos(x) = x^2 \left( 1 - \frac{x^2}{2!} + \frac{x^4}{4!} - \cdots \right) = x^2 - \frac{x^4}{2!} + \frac{x^6}{4!} - \cdots $$
</div>
</li>
<li>
<strong>Differentiation & Integration:</strong> You can differentiate or integrate a known series term-by-term.
<p class="text-sm text-gray-400 mt-1 pl-4">Example: The series for <code>\frac{1}{(1-x)^2}</code> is the derivative of the series for <code>\frac{1}{1-x}</code>.</p>
<div class="formula text-base">
$$ \frac{d}{dx} \left( \sum_{n=0}^{\infty} x^n \right) = \sum_{n=1}^{\infty} nx^{n-1} = 1 + 2x + 3x^2 + \cdots $$
</div>
</li>
</ul>
</div>
</div>
<script>
// This script will automatically render all LaTeX on the page.
document.addEventListener("DOMContentLoaded", function() {
renderMathInElement(document.body, {
delimiters: [
{left: '$$', right: '$$', display: true},
{left: '$', right: '$', display: false},
{left: '\\(', right: '\\)', display: false},
{left: '\\[', right: '\\]', display: true}
],
throwOnError : false
});
});
</script>
</body>
</html>