Skip to content
LAM
Read Home Blog
Make Projects HTML Tools Games
Touch grass Notes Resume Links
Home Blog HTML Projects
Tools Games Notes Resume Links
Back Calculus 2 - Chapter 8 Cheat Sheet Math
Download Open
Show description 1,374 chars · Math

Calculus 2 - Chapter 8 Cheat Sheet

Calculus 2 - Chapter 8 Cheat Sheet










Calculus 2: Chapter 8 Essentials

Sequences, Series, and Power Series





Convergence & Divergence Tests




n-th Term Test for Divergence

If $\lim_{n\to\infty} a_n \neq 0$ or DNE, then $\sum a_n$ diverges.


Pitfall:

If $\lim_{n\to\infty} a_n = 0$, the test is inconclusive. You MUST use another test.







Geometric Series

Form: $\sum_{n=0}^{\infty} ar^n$

$$ \text{Sum} = \frac{a}{1-r} $$


Converges if $|r| < 1$.

Diverges if $|r| \geq 1$.






p-Series

Form: $\sum_{n=1}^{\infty} \frac{1}{n^p}$


Converges if $p > 1$.

Diverges if $p \leq 1$.


(Case $p=1$ is the Harmonic Series).





Ratio Test

Excellent for factorials and $n$-th powers. Compute:

$$ L = \lim_{n\to\infty} \left| \frac{a_{n+1}}{a_n} \right| $$


If $L < 1$, the series converges absolutely.

If $L > 1$ or $L=\infty$, the series diverges.

If $L = 1$, the test is inconclusive.






Alternating Series Test

For $\sum (-1)^n b_n$ with $b_n > 0$.

Converges if both are true:


$b_{n+1} \le b_n$ (decreasing).

$\lim_{n\to\infty} b_n = 0$.









Power Series



Radius & Interval of Convergence

For a series $\sum c_n (x-a)^n$ centered at $a$.


Procedure:


Use the Ratio Test on the series to find an inequality involving $|x-a|$.

Solve for $|x-a| < R$.…

Calculus 2 - Chapter 8 Cheat Sheet

10,996 bytes · HTML source
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Calculus 2 - Chapter 8 Cheat Sheet</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <script>
        MathJax = {
            tex: {
                inlineMath: [['$', '$'], ['\\(', '\\)']],
                displayMath: [['$$', '$$'], ['\\[', '\\]']]
            },
            svg: {
                fontCache: 'global'
            }
        };
    </script>
    <script type="text/javascript" id="MathJax-script" async
        src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-svg.js">
    </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: #030712; /* gray-950 */
            color: #d1d5db; /* gray-300 */
        }
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #111827; /* gray-900 */
        }
        ::-webkit-scrollbar-thumb {
            background: #4b5563; /* gray-600 */
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #6b7280; /* gray-500 */
        }

        .widget {
            background-color: #111827; /* gray-900 */
            border: 1px solid #374151; /* gray-700 */
            border-radius: 0.75rem;
            padding: 1.5rem;
            transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
            display: flex;
            flex-direction: column;
        }
        .widget:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
        }
        .widget-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #f9fafb; /* gray-50 */
            margin-bottom: 1rem;
        }
        .formula {
            background-color: #1f2937; /* gray-800 */
            padding: 1rem;
            border-radius: 0.5rem;
            margin-top: 0.5rem;
            margin-bottom: 1rem;
            font-size: 1.1rem;
            overflow-x: auto;
            border: 1px solid #4b5563; /* gray-600 */
        }
        .key-point {
            border-left: 4px solid #6b7280; /* gray-500 */
            padding-left: 1rem;
            margin-top: 1.5rem;
            background-color: rgba(55, 65, 81, 0.2);
            padding: 0.75rem 1rem;
            border-radius: 0 0.25rem 0.25rem 0;
        }
        .pitfall {
             border-left: 4px solid #9ca3af; /* gray-400 */
             padding-left: 1rem;
             margin-top: 1rem;
             background-color: rgba(107, 114, 128, 0.1);
             padding: 0.75rem 1rem;
             border-radius: 0 0.25rem 0.25rem 0;
        }
        .section-title {
            font-size: 2.25rem;
            font-weight: 700;
            color: #ffffff;
            border-bottom: 2px solid #374151;
            padding-bottom: 0.75rem;
            margin-bottom: 2rem;
            margin-top: 3rem;
        }
    </style>
</head>
<body class="p-4 md:p-8">

    <div class="max-w-7xl mx-auto">
        <header class="text-center mb-12">
            <h1 class="text-4xl md:text-5xl font-bold text-gray-50">Calculus 2: Chapter 8 Essentials</h1>
            <p class="text-lg text-gray-400 mt-2">Sequences, Series, and Power Series</p>
        </header>

        <!-- Convergence & Divergence Tests Section -->
        <h2 class="section-title">Convergence & Divergence Tests</h2>
        <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
            
            <div class="widget">
                <h3 class="widget-title">n-th Term Test for Divergence</h3>
                <p>If $\lim_{n\to\infty} a_n \neq 0$ or DNE, then $\sum a_n$ <strong class="text-gray-100">diverges</strong>.</p>
                <div class="pitfall">
                    <p class="font-semibold text-gray-200">Pitfall:</p>
                    <p>If $\lim_{n\to\infty} a_n = 0$, the test is inconclusive. You MUST use another test.</p>
                </div>
            </div>

            <div class="widget">
                <h3 class="widget-title">Geometric Series</h3>
                <p>Form: $\sum_{n=0}^{\infty} ar^n$</p>
                <div class="formula">$$ \text{Sum} = \frac{a}{1-r} $$</div>
                <ul class="list-disc list-inside pl-2 space-y-1">
                    <li>Converges if $|r| < 1$.</li>
                    <li>Diverges if $|r| \geq 1$.</li>
                </ul>
            </div>

            <div class="widget">
                <h3 class="widget-title">p-Series</h3>
                <p>Form: $\sum_{n=1}^{\infty} \frac{1}{n^p}$</p>
                 <ul class="list-disc list-inside pl-2 space-y-1 mt-4">
                    <li>Converges if $p > 1$.</li>
                    <li>Diverges if $p \leq 1$.</li>
                </ul>
                <p class="text-sm text-gray-400 mt-2">(Case $p=1$ is the Harmonic Series).</p>
            </div>

            <div class="widget lg:col-span-2">
                <h3 class="widget-title">Ratio Test</h3>
                <p>Excellent for factorials and $n$-th powers. Compute:</p>
                <div class="formula">$$ L = \lim_{n\to\infty} \left| \frac{a_{n+1}}{a_n} \right| $$</div>
                 <ul class="list-disc list-inside pl-2 space-y-1">
                    <li>If $L < 1$, the series converges absolutely.</li>
                    <li>If $L > 1$ or $L=\infty$, the series diverges.</li>
                    <li>If $L = 1$, the test is inconclusive.</li>
                </ul>
            </div>

            <div class="widget">
                <h3 class="widget-title">Alternating Series Test</h3>
                <p>For $\sum (-1)^n b_n$ with $b_n > 0$.</p>
                <p class="mt-2">Converges if both are true:</p>
                 <ol class="list-decimal list-inside pl-2 mt-2 space-y-1">
                    <li>$b_{n+1} \le b_n$ (decreasing).</li>
                    <li>$\lim_{n\to\infty} b_n = 0$.</li>
                </ol>
            </div>

        </div>

        <!-- Power Series Section -->
        <h2 class="section-title">Power Series</h2>
        <div class="grid grid-cols-1 md:grid-cols-1 lg:grid-cols-1 gap-6">
            <div class="widget">
                <h3 class="widget-title">Radius & Interval of Convergence</h3>
                <p>For a series $\sum c_n (x-a)^n$ centered at $a$.</p>
                <div class="key-point">
                    <h4 class="font-semibold text-gray-200">Procedure:</h4>
                    <ol class="list-decimal list-inside text-gray-400 space-y-2 mt-2">
                        <li>Use the Ratio Test on the series to find an inequality involving $|x-a|$.</li>
                        <li>Solve for $|x-a| < R$. This $R$ is the radius of convergence.</li>
                        <li>Test the endpoints $x = a-R$ and $x = a+R$ separately by plugging them into the series and using other convergence tests (like p-series or AST).</li>
                        <li>The Interval of Convergence (I.O.C) is the interval from $a-R$ to $a+R$, including any endpoints where the series converges.</li>
                    </ol>
                </div>
            </div>
        </div>

        <!-- Taylor & Maclaurin Series Section -->
        <h2 class="section-title">Taylor & Maclaurin Series</h2>
        <div class="grid grid-cols-1 md:grid-cols-2 gap-6">
            <div class="widget">
                <h3 class="widget-title">Taylor Series (centered at $a$)</h3>
                <div class="formula">$$ f(x) = \sum_{n=0}^{\infty} \frac{f^{(n)}(a)}{n!}(x-a)^n $$</div>
                <p class="text-sm text-gray-400">$ = f(a) + f'(a)(x-a) + \frac{f''(a)}{2!}(x-a)^2 + \dots $</p>
            </div>
            <div class="widget">
                <h3 class="widget-title">Maclaurin Series (Taylor at $a=0$)</h3>
                <div class="formula">$$ f(x) = \sum_{n=0}^{\infty} \frac{f^{(n)}(0)}{n!}x^n $$</div>
                 <p class="text-sm text-gray-400">$ = f(0) + f'(0)x + \frac{f''(0)}{2!}x^2 + \dots $</p>
            </div>
        </div>
        
        <!-- Key Maclaurin Series Section -->
        <h2 class="section-title">Key Maclaurin Series to Memorize</h2>
        <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
            <div class="widget">
                <h3 class="widget-title">Geometric Base</h3>
                <div class="formula">$$ \frac{1}{1-x} = \sum_{n=0}^{\infty} x^n $$</div>
                <p class="text-center text-sm text-gray-500">I.O.C: $(-1, 1)$</p>
            </div>
            <div class="widget">
                <h3 class="widget-title">Exponential</h3>
                <div class="formula">$$ e^x = \sum_{n=0}^{\infty} \frac{x^n}{n!} $$</div>
                <p class="text-center text-sm text-gray-500">I.O.C: $(-\infty, \infty)$</p>
            </div>
            <div class="widget">
                <h3 class="widget-title">Sine</h3>
                <div class="formula">$$ \sin(x) = \sum_{n=0}^{\infty} \frac{(-1)^n x^{2n+1}}{(2n+1)!} $$</div>
                <p class="text-center text-sm text-gray-500">I.O.C: $(-\infty, \infty)$</p>
            </div>
            <div class="widget">
                <h3 class="widget-title">Cosine</h3>
                <div class="formula">$$ \cos(x) = \sum_{n=0}^{\infty} \frac{(-1)^n x^{2n}}{(2n)!} $$</div>
                <p class="text-center text-sm text-gray-500">I.O.C: $(-\infty, \infty)$</p>
            </div>
             <div class="widget">
                <h3 class="widget-title">Natural Log</h3>
                <div class="formula">$$ \ln(1+x) = \sum_{n=1}^{\infty} \frac{(-1)^{n-1} x^n}{n} $$</div>
                <p class="text-center text-sm text-gray-500">I.O.C: $(-1, 1]$</p>
            </div>
            <div class="widget">
                <h3 class="widget-title">Arctangent</h3>
                <div class="formula">$$ \arctan(x) = \sum_{n=0}^{\infty} \frac{(-1)^n x^{2n+1}}{2n+1} $$</div>
                <p class="text-center text-sm text-gray-500">I.O.C: $[-1, 1]$</p>
            </div>
        </div>
        <div class="mt-6">
             <div class="key-point">
                <h3 class="font-semibold text-gray-200">Strategy:</h3>
                <p class="text-gray-400 mt-1">Create new series from these by substituting (e.g., for $e^{2x}$, replace $x$ with $2x$), differentiating, or integrating term-by-term.</p>
            </div>
        </div>

    </div>

</body>
</html>