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 Calc II: Series & Power Series [Stealth Mode] Math
Download Open
Show description 2,142 chars · Math

Calc II: Series & Power Series [Stealth Mode]

Calc II: Series & Power Series [Stealth Mode]











Calculus II Study Guide

Sequences, Series, and Power Series






1. Sequences: The Foundation

A sequence is just an infinite list of numbers, $\{a_n\}$. The main question we ask is: Where are these numbers heading?

A sequence $\{a_n\}$ converges to a limit $L$ if the terms get closer and closer to $L$ as $n$ gets huge.


If $\lim_{n \to \infty} a_n = L$ (and $L$ is a finite number), the sequence converges.

If the limit is $\infty$, $-\infty$, or does not exist, the sequence diverges.







2. Series: The Sum of Terms

A series is what you get when you try to add up all the terms of a sequence: $\sum a_n$. The big question is: Does this infinite sum add up to a finite number?


The Test for Divergence (The First Check!)

This is your first line of defense. It's a quick check to see if a series is obviously divergent.


Take the limit of the terms: $\lim_{n \to \infty} a_n$.

If $\lim_{n \to \infty} a_n \neq 0$, the series $\sum a_n$ DIVERGES.



Important Note: If the limit IS 0, this test tells you NOTHING. The series might converge or it might diverge. You must use another test.







3. The Arsenal: Tests for Convergence

This is your toolbox. Your job is to pick the right tool for the series you're given.



Geometric Series Test

When to use: When you see a number raised to the power of $n$, like $\sum ar^n$.


For a series of the form $\sum ar^n$:

Converges if $|r| < 1$. The sum is $S = \frac{a}{1-r}$ ($a$ = first term).

Diverges if $|r| \ge 1$.








Integral Test

When to use: When $a_n$ can be easily turned into a function $f(x)$ that you can integrate (and is positive, continuous, and decreasing).


The series $\sum a_n$ and the improper integral $\int_{1}^{\infty} f(x) dx$ either both converge or both diverge.






p-Series Test

When to use: A shortcut for series of the form $\sum \frac{1}{n^p}$. This is your most important benchmark for comparison tests!


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

Converges if $p > 1$.

Diverges if $p \le 1$.…

Calc II: Series & Power Series [Stealth Mode]

14,374 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>Calc II: Series & Power Series [Stealth Mode]</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <!-- This script configures MathJax to recognize $...$ for math -->
    <script>
        MathJax = {
            tex: {
                inlineMath: [['$', '$'], ['\\(', '\\)']],
                displayMath: [['$$', '$$'], ['\\[', '\\]']]
            },
            svg: {
                fontCache: 'global'
            }
        };
    </script>
    <script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
    <link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500;700&family=Orbitron:wght@400;700&display=swap" rel="stylesheet">
    <style>
        /* MGS Codec Theme */
        body {
            font-family: 'Roboto Mono', monospace;
            background-color: #0d1117; /* Very dark blue-gray */
            color: #c9d1d9; /* Light gray text */
            background-image: 
                linear-gradient(rgba(20, 30, 48, 0.95), rgba(36, 59, 85, 0.95)),
                url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
        }
        h1, h2, h3 {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            text-shadow: 0 0 5px rgba(59, 130, 246, 0.5);
        }
        .card {
            background-color: rgba(17, 24, 39, 0.8); /* gray-900 with opacity */
            border-radius: 0.5rem; /* Sharper edges */
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
            margin-bottom: 1.5rem;
            padding: 1.5rem;
            border-left: 4px solid;
            backdrop-filter: blur(5px);
            border-top: 1px solid rgba(59, 130, 246, 0.2);
            border-right: 1px solid rgba(59, 130, 246, 0.2);
        }
        .card-blue { border-color: #3b82f6; } /* blue-500 */
        .card-green { border-color: #22c55e; } /* green-500 */
        .card-yellow { border-color: #eab308; } /* yellow-500 */
        .card-red { border-color: #ef4444; } /* red-500 */
        .card-purple { border-color: #8b5cf6; } /* violet-500 */
        
        .formula {
            background-color: #111827; /* gray-900 */
            border: 1px solid #3b82f6; /* blue-500 */
            padding: 1rem;
            border-radius: 0.25rem;
            margin: 1rem 0;
            font-size: 1.1rem;
            overflow-x: auto;
            color: #93c5fd; /* light blue text */
            box-shadow: inset 0 0 10px rgba(59, 130, 246, 0.3);
        }
        .key-point {
            font-weight: 700;
            color: #60a5fa; /* blue-400 */
        }
        .pitfall {
            background-color: rgba(127, 29, 29, 0.3); /* dark red */
            border: 1px solid #f87171; /* red-400 */
            padding: 1rem;
            border-radius: 0.25rem;
            color: #fca5a5; /* red-300 */
        }
        .pitfall strong {
            color: #ef4444; /* red-500 */
        }

        /* MathJax configuration for dark mode */
        mjx-container {
            color: #c9d1d9 !important;
        }
    </style>
</head>
<body class="p-4 md:p-8">

    <div class="max-w-4xl mx-auto">
        <header class="text-center mb-12">
            <h1 class="text-4xl md:text-5xl text-blue-400">Calculus II Study Guide</h1>
            <p class="text-lg text-green-400 mt-2 tracking-widest">Sequences, Series, and Power Series</p>
        </header>

        <!-- Sequences -->
        <div class="card card-blue">
            <h2 class="text-2xl mb-2 text-blue-300">1. Sequences: The Foundation</h2>
            <p class="mb-4">A sequence is just an infinite list of numbers, $\{a_n\}$. The main question we ask is: Where are these numbers heading?</p>
            <p>A sequence $\{a_n\}$ converges to a limit $L$ if the terms get closer and closer to $L$ as $n$ gets huge.</p>
            <div class="formula">
                If $\lim_{n \to \infty} a_n = L$ (and $L$ is a finite number), the sequence <span class="text-green-400 font-bold">converges</span>.
                <br>
                If the limit is $\infty$, $-\infty$, or does not exist, the sequence <span class="text-red-400 font-bold">diverges</span>.
            </div>
        </div>

        <!-- Series Basics & Divergence Test -->
        <div class="card card-blue">
            <h2 class="text-2xl mb-2 text-blue-300">2. Series: The Sum of Terms</h2>
            <p class="mb-4">A series is what you get when you try to add up all the terms of a sequence: $\sum a_n$. The big question is: Does this infinite sum add up to a finite number?</p>
            
            <h3 class="text-xl font-bold mt-4 mb-2 text-blue-400">The Test for Divergence (The First Check!)</h3>
            <p>This is your first line of defense. It's a quick check to see if a series is obviously divergent.</p>
            <div class="formula">
                Take the limit of the terms: $\lim_{n \to \infty} a_n$.
                <br>
                If $\lim_{n \to \infty} a_n \neq 0$, the series $\sum a_n$ <span class="text-red-400 font-bold">DIVERGES</span>.
            </div>
            <div class="pitfall mt-4">
                <strong>Important Note:</strong> If the limit IS 0, this test tells you <span class="font-bold">NOTHING</span>. The series might converge or it might diverge. You must use another test.
            </div>
        </div>

        <!-- The Tests for Convergence -->
        <div class="card card-green">
            <h2 class="text-2xl mb-2 text-green-300">3. The Arsenal: Tests for Convergence</h2>
            <p class="mb-4">This is your toolbox. Your job is to pick the right tool for the series you're given.</p>

            <div class="mb-6">
                <h3 class="text-xl font-bold text-green-400">Geometric Series Test</h3>
                <p><strong>When to use:</strong> When you see a number raised to the power of $n$, like $\sum ar^n$.</p>
                <div class="formula">
                    For a series of the form $\sum ar^n$:
                    <ul>
                        <li><span class="text-green-400 font-bold">Converges</span> if $|r| < 1$. The sum is $S = \frac{a}{1-r}$ ($a$ = first term).</li>
                        <li><span class="text-red-400 font-bold">Diverges</span> if $|r| \ge 1$.</li>
                    </ul>
                </div>
            </div>

            <div class="mb-6">
                <h3 class="text-xl font-bold text-green-400">Integral Test</h3>
                <p><strong>When to use:</strong> When $a_n$ can be easily turned into a function $f(x)$ that you can integrate (and is positive, continuous, and decreasing).</p>
                <div class="formula">
                    The series $\sum a_n$ and the improper integral $\int_{1}^{\infty} f(x) dx$ either both converge or both diverge.
                </div>
            </div>

            <div class="mb-6">
                <h3 class="text-xl font-bold text-green-400">p-Series Test</h3>
                <p><strong>When to use:</strong> A shortcut for series of the form $\sum \frac{1}{n^p}$. This is your most important benchmark for comparison tests!</p>
                <div class="formula">
                     The series $\sum_{n=1}^{\infty} \frac{1}{n^p}$:
                    <ul>
                        <li><span class="text-green-400 font-bold">Converges</span> if $p > 1$.</li>
                        <li><span class="text-red-400 font-bold">Diverges</span> if $p \le 1$. (The case $p=1$ is the Harmonic Series, which always diverges).</li>
                    </ul>
                </div>
            </div>

            <div class="mb-6">
                <h3 class="text-xl font-bold text-green-400">Limit Comparison Test</h3>
                <p><strong>When to use:</strong> For messy-looking rational functions or anything that "looks like" a p-series.</p>
                <div class="formula">
                    <p>Pick a simpler series $\sum b_n$ that looks like $\sum a_n$. Compute the limit: $$L = \lim_{n \to \infty} \frac{a_n}{b_n}$$</p>
                    <p>If $L$ is a finite, positive number, then <span class="key-point">both series do the same thing</span> (both converge or both diverge).</p>
                </div>
            </div>

            <div class="mb-6">
                <h3 class="text-xl font-bold text-green-400">Alternating Series Test</h3>
                <p><strong>When to use:</strong> When you see alternating signs like $(-1)^n$ or $(-1)^{n+1}$.</p>
                <div class="formula">
                    An alternating series $\sum (-1)^n b_n$ <span class="text-green-400 font-bold">converges</span> if BOTH conditions are met:
                    <ol class="list-decimal list-inside ml-4">
                        <li>The terms are decreasing: $b_{n+1} \le b_n$.</li>
                        <li>The limit of the terms is zero: $\lim_{n \to \infty} b_n = 0$.</li>
                    </ol>
                </div>
            </div>

            <div class="mb-6">
                <h3 class="text-xl font-bold text-green-400">Ratio Test</h3>
                <p><strong>When to use:</strong> The best choice for series with <span class="key-point">factorials ($n!$)</span> and <span class="key-point">exponentials ($c^n$)</span>.</p>
                <div class="formula">
                    Compute the limit: $$L = \lim_{n \to \infty} \left| \frac{a_{n+1}}{a_n} \right|$$
                    <ul>
                        <li>If $L < 1$, the series <span class="text-green-400 font-bold">converges absolutely</span>.</li>
                        <li>If $L > 1$, the series <span class="text-red-400 font-bold">diverges</span>.</li>
                        <li>If $L = 1$, the test is <span class="text-yellow-400 font-bold">INCONCLUSIVE</span>. Try another test!</li>
                    </ul>
                </div>
            </div>
        </div>

        <!-- Power Series -->
        <div class="card card-purple">
            <h2 class="text-2xl mb-2 text-purple-300">4. Power Series: Functions as Infinite Polynomials</h2>
            <p class="mb-4">A power series is a series with a variable, $x$. The goal is to find which $x$ values make the series converge.</p>
            <div class="formula">
                A power series centered at $a$: $$\sum_{n=0}^{\infty} c_n (x-a)^n$$
            </div>
            <h3 class="text-xl font-bold mt-4 mb-2 text-purple-400">Finding the Radius & Interval of Convergence</h3>
            <p>This is a 3-step process:</p>
            <ol class="list-decimal list-inside space-y-2">
                <li><span class="key-point">Use the Ratio Test</span>. You'll get an inequality like $|x-a| < R$. This $R$ is the <span class="font-bold">Radius of Convergence</span>.</li>
                <li>The series converges for $x$ in the open interval $(a-R, a+R)$.</li>
                <li><span class="key-point">Test the endpoints!</span> Plug $x = a-R$ and $x = a+R$ into the series and use another test to check for convergence. This gives the final <span class="font-bold">Interval of Convergence</span>.</li>
            </ol>
        </div>

        <!-- Representing Functions -->
        <div class="card card-yellow">
            <h2 class="text-2xl mb-2 text-yellow-300">5. Representing Functions as Power Series</h2>
            <p class="mb-4">We can express common functions as power series. This is an incredibly powerful tool.</p>
            
            <h3 class="text-xl font-bold mt-4 mb-2 text-yellow-400">Key Maclaurin Series to Memorize</h3>
            <div class="formula">1. $\frac{1}{1-x} = \sum_{n=0}^{\infty} x^n = 1 + x + x^2 + \dots$ for $|x| < 1$</div>
            <div class="formula">2. $e^x = \sum_{n=0}^{\infty} \frac{x^n}{n!} = 1 + x + \frac{x^2}{2!} + \dots$ for all $x$</div>
            <div class="formula">3. $\sin(x) = \sum_{n=0}^{\infty} (-1)^n \frac{x^{2n+1}}{(2n+1)!} = x - \frac{x^3}{3!} + \dots$ for all $x$</div>
            <div class="formula">4. $\cos(x) = \sum_{n=0}^{\infty} (-1)^n \frac{x^{2n}}{(2n)!} = 1 - \frac{x^2}{2!} + \dots$ for all $x$</div>
            <div class="formula">5. $\ln(1+x) = \sum_{n=1}^{\infty} (-1)^{n-1} \frac{x^n}{n} = x - \frac{x^2}{2} + \dots$ for $-1 < x \le 1$</div>
        </div>

        <!-- Taylor Series -->
        <div class="card card-yellow">
            <h2 class="text-2xl mb-2 text-yellow-300">6. Taylor and Maclaurin Series: The General Formula</h2>
            <p class="mb-4">If you can't build a series from the list above, you can use the definition. A Maclaurin series is a Taylor series centered at $a=0$.</p>
            <div class="formula">
                The Taylor series for $f(x)$ centered at $a$ is:
                $$f(x) = \sum_{n=0}^{\infty} \frac{f^{(n)}(a)}{n!} (x-a)^n$$
                <p class="mt-2 text-sm">> Compute derivatives of $f(x)$, plug in $a$, find the pattern, and build the series.</p>
            </div>
        </div>
        
        <!-- Final Advice -->
        <div class="card card-red">
            <h2 class="text-2xl mb-2 text-red-300">7. Final Advice & Common Pitfalls</h2>
            <ul class="list-disc list-inside space-y-3">
                <li><strong>Divergence Test is for DIVERGENCE ONLY.</strong> If $\lim a_n = 0$, it tells you nothing.</li>
                <li><strong>Ratio Test is INCONCLUSIVE at L=1.</strong> Don't say the series diverges. You must try another test.</li>
                <li><strong>Check the Endpoints.</strong> Forgetting to check the endpoints of an interval of convergence is a very common mistake.</li>
                <li><strong>Know your p-series.</strong> $\sum 1/n$ diverges. $\sum 1/n^2$ converges. This is your anchor for all comparison tests.</li>
                <li><strong>Hierarchy of Growth:</strong> Factorials grow faster than exponentials, which grow faster than polynomials. This helps predict limits.</li>
            </ul>
        </div>

    </div>

</body>
</html>