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 II: Series Cheat Sheet Math
Download Open
Show description 2,401 chars · Math

Calculus II: Series Cheat Sheet

Calculus II: Series Cheat Sheet

















Calculus II: Functions as Power Series





The Geometric Series Key

The foundation for representing functions as power series is the formula for the sum of an infinite geometric series.


$$ \sum_{n=0}^{\infty} ar^n = \frac{a}{1-r} $$


This formula is valid only when the series converges, which happens when the absolute value of the common ratio r is less than 1.


$$ |r| < 1 $$


GOAL: Algebraically manipulate a given function `f(x)` until it matches the form `a / (1-r)`. Then, you can directly convert it into a power series.





Example: Basic Conversion

Let's represent `f(x) = 1 / (1 + x)` as a power series.


Step 1: Rewrite the function to match the `a / (1-r)` form. The key is to turn the `+` into a `-`.

$$ f(x) = \frac{1}{1+x} = \frac{1}{1 - (-x)} $$

Step 2: Identify `a` and `r`.

By comparing, we see that a = 1 and r = -x.

Step 3: Write the power series.

$$ \sum_{n=0}^{\infty} (1)(-x)^n = \sum_{n=0}^{\infty} (-1)^n x^n $$

Step 4: Find the Interval and Radius of Convergence (IoC & RoC).

Use the condition `|r| < 1`:

$$ |-x| < 1 \implies |x| < 1 $$

This means the IoC is (-1, 1) and the RoC is R = 1.






Centering at c != 0

To center a series at a value `c`, you need to create an `(x-c)` term.

Example: `f(x) = 1/x` centered at `c = 1`.


Step 1: Introduce `x-1` into the denominator.

$$ f(x) = \frac{1}{x} = \frac{1}{1 + (x-1)} = \frac{1}{1 - (-(x-1))} $$

Step 2: Identify `a` and `r`.

a = 1 and r = -(x-1).

Step 3: Write the series.

$$ \sum_{n=0}^{\infty} (-(x-1))^n = \sum_{n=0}^{\infty} (-1)^n (x-1)^n $$

Step 4: Find IoC.

$$ |-(x-1)| < 1 \implies |x-1| < 1 \implies -1 < x-1 < 1 $$

The IoC is (0, 2) and RoC is R = 1.






Dealing with Constants

If the `a` position isn't 1, factor it out from the denominator.

Example: `f(x) = 1 / (3 - x)` centered at `c = 0`.


Step 1: Factor out the `3` from the denominator to make it a `1`.

$$ f(x) = \frac{1}{3(1 - x/3)} = \frac{1/3}{1 - x/3} $$

Step 2: Identify `a` and `r`.

a = 1/3 and r = x/3.

Step 3: Write and simplify the series.

$$ \sum_{n=0}^{\infty} \frac{1}{3} \left(\frac{x}{3}\right)^n = \sum_{n=0}^{\infty} \frac{x^n}{3 \cdot 3^n} = \sum_{n=0}^{\infty} \frac{x^n}{3^{n+1}} $$

Step 4: Find IoC.

$$ |x/3| < 1 \implies |x| < 3 $$

The IoC is (-3, 3) and RoC…

Calculus II: Series Cheat Sheet

10,711 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 II: Series Cheat Sheet</title>
    
    <!-- Google Fonts for 8-bit style -->
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
    
    <!-- KaTeX for LaTeX math rendering -->
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.9/dist/katex.min.css" xintegrity="sha384-n8MVd4RsNIU0KOVEMMZMZNjzIeS6tdxeHSRWcAPeGMN4gPEaOPPy0GIrL154Bvic" crossorigin="anonymous">
    <script src="https://cdn.jsdelivr.net/npm/katex@0.16.9/dist/katex.min.js" xintegrity="sha384-XjKyOOlGwcjNTAIQHIpgOno0Hl1YQqzUOEleOLALmuqehneUG+vnGctmUb0ZY0l8" 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" onload="renderMathInElement(document.body);"></script>

    <style>
        :root {
            --background-color: #1a1a2e;
            --primary-text: #e0e0e0;
            --header-color: #00ffff; /* Cyan */
            --accent1: #f0f; /* Magenta */
            --accent2: #ff0; /* Yellow */
            --accent3: #0f0; /* Green */
            --border-color: #4a4e69;
            --block-bg: #16213e;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--background-color);
            color: var(--primary-text);
            font-family: 'Press Start 2P', cursive;
            line-height: 1.8;
            padding: 2rem;
            font-size: 12px;
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            gap: 2rem;
        }

        h1, h2 {
            font-family: 'Press Start 2P', cursive;
            color: var(--header-color);
            text-shadow: 3px 3px 0px var(--accent1);
            margin-bottom: 1rem;
            text-align: center;
        }
        
        h1 {
            font-size: 2rem;
        }

        h2 {
            font-size: 1.2rem;
            text-shadow: 2px 2px 0px var(--accent1);
            margin-top: 0;
            border-bottom: 4px solid var(--border-color);
            padding-bottom: 0.5rem;
        }

        .voxel-block {
            background-color: var(--block-bg);
            padding: 1.5rem;
            border: 4px solid var(--border-color);
            box-shadow: 
                inset 0 0 10px rgba(0,0,0,0.5), /* Inner shadow */
                8px 8px 0px var(--border-color); /* 3D block effect */
            transition: all 0.2s ease-in-out;
        }

        .voxel-block:hover {
            transform: translate(-4px, -4px);
            box-shadow: 
                inset 0 0 15px rgba(0,0,0,0.7),
                12px 12px 0px var(--border-color);
        }

        .formula {
            color: var(--accent2);
            background-color: #2c2c54;
            padding: 1rem;
            border-left: 4px solid var(--accent1);
            margin: 1rem 0;
            overflow-x: auto;
        }
        
        .result {
            color: var(--accent3);
        }
        
        .key-term {
            color: var(--accent1);
        }

        .katex-display {
            font-size: 1.1em;
        }
        
        ul {
            list-style-type: ">> ";
            padding-left: 20px;
        }
        
        li {
            padding-left: 10px;
            margin-bottom: 0.5rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            body {
                padding: 1rem;
                font-size: 10px;
            }
            h1 {
                font-size: 1.5rem;
            }
            .voxel-block {
                padding: 1rem;
                box-shadow: 4px 4px 0px var(--border-color);
            }
            .voxel-block:hover {
                transform: none;
                box-shadow: 4px 4px 0px var(--border-color);
            }
        }
    </style>
</head>
<body>

    <div class="container">
        <header>
            <h1>Calculus II: Functions as Power Series</h1>
        </header>

        <div class="voxel-block" id="geometric-series">
            <h2>The Geometric Series Key</h2>
            <p>The foundation for representing functions as power series is the formula for the sum of an infinite geometric series.</p>
            <div class="formula">
                $$ \sum_{n=0}^{\infty} ar^n = \frac{a}{1-r} $$
            </div>
            <p>This formula is valid only when the series <span class="key-term">converges</span>, which happens when the absolute value of the common ratio <span class="key-term">r</span> is less than 1.</p>
            <div class="formula">
                $$ |r| < 1 $$
            </div>
            <p><strong>GOAL:</strong> Algebraically manipulate a given function `f(x)` until it matches the form `a / (1-r)`. Then, you can directly convert it into a power series.</p>
        </div>

        <div class="voxel-block" id="example1">
            <h2>Example: Basic Conversion</h2>
            <p>Let's represent `f(x) = 1 / (1 + x)` as a power series.</p>
            <ul>
                <li><strong>Step 1:</strong> Rewrite the function to match the `a / (1-r)` form. The key is to turn the `+` into a `-`.</li>
                <p>$$ f(x) = \frac{1}{1+x} = \frac{1}{1 - (-x)} $$</p>
                <li><strong>Step 2:</strong> Identify `a` and `r`.</li>
                <p>By comparing, we see that <span class="key-term">a = 1</span> and <span class="key-term">r = -x</span>.</p>
                <li><strong>Step 3:</strong> Write the power series.</li>
                <p class="result">$$ \sum_{n=0}^{\infty} (1)(-x)^n = \sum_{n=0}^{\infty} (-1)^n x^n $$</p>
                <li><strong>Step 4:</strong> Find the Interval and Radius of Convergence (IoC & RoC).</li>
                <p>Use the condition `|r| < 1`:</p>
                <p>$$ |-x| < 1 \implies |x| < 1 $$</p>
                <p>This means the IoC is <span class="result">(-1, 1)</span> and the RoC is <span class="result">R = 1</span>.</p>
            </ul>
        </div>
        
        <div class="voxel-block" id="centering">
            <h2>Centering at c != 0</h2>
            <p>To center a series at a value `c`, you need to create an `(x-c)` term.</p>
            <p><strong>Example:</strong> `f(x) = 1/x` centered at `c = 1`.</p>
             <ul>
                <li><strong>Step 1:</strong> Introduce `x-1` into the denominator.</li>
                <p>$$ f(x) = \frac{1}{x} = \frac{1}{1 + (x-1)} = \frac{1}{1 - (-(x-1))} $$</p>
                <li><strong>Step 2:</strong> Identify `a` and `r`.</li>
                <p><span class="key-term">a = 1</span> and <span class="key-term">r = -(x-1)</span>.</p>
                <li><strong>Step 3:</strong> Write the series.</li>
                <p class="result">$$ \sum_{n=0}^{\infty} (-(x-1))^n = \sum_{n=0}^{\infty} (-1)^n (x-1)^n $$</p>
                <li><strong>Step 4:</strong> Find IoC.</li>
                <p>$$ |-(x-1)| < 1 \implies |x-1| < 1 \implies -1 < x-1 < 1 $$</p>
                <p>The IoC is <span class="result">(0, 2)</span> and RoC is <span class="result">R = 1</span>.</p>
            </ul>
        </div>

        <div class="voxel-block" id="constants">
            <h2>Dealing with Constants</h2>
            <p>If the `a` position isn't 1, factor it out from the denominator.</p>
            <p><strong>Example:</strong> `f(x) = 1 / (3 - x)` centered at `c = 0`.</p>
            <ul>
                <li><strong>Step 1:</strong> Factor out the `3` from the denominator to make it a `1`.</li>
                <p>$$ f(x) = \frac{1}{3(1 - x/3)} = \frac{1/3}{1 - x/3} $$</p>
                <li><strong>Step 2:</strong> Identify `a` and `r`.</li>
                <p><span class="key-term">a = 1/3</span> and <span class="key-term">r = x/3</span>.</p>
                <li><strong>Step 3:</strong> Write and simplify the series.</li>
                <p class="result">$$ \sum_{n=0}^{\infty} \frac{1}{3} \left(\frac{x}{3}\right)^n = \sum_{n=0}^{\infty} \frac{x^n}{3 \cdot 3^n} = \sum_{n=0}^{\infty} \frac{x^n}{3^{n+1}} $$</p>
                <li><strong>Step 4:</strong> Find IoC.</li>
                <p>$$ |x/3| < 1 \implies |x| < 3 $$</p>
                <p>The IoC is <span class="result">(-3, 3)</span> and RoC is <span class="result">R = 3</span>.</p>
            </ul>
        </div>
        
        <div class="voxel-block" id="operations">
            <h2>Operations on Series</h2>
            <p>You can perform operations like multiplication and addition on series.</p>
            
            <h3>Multiplication</h3>
            <p><strong>Example:</strong> `f(x) = x^3 / (x+2)`</p>
            <p>First, find the series for `1/(x+2)`, which is `\sum (-1)^n x^n / 2^(n+1)`. Then, multiply the result by `x^3`.</p>
            <div class="formula">
            $$ x^3 \cdot \sum_{n=0}^{\infty} \frac{(-1)^n x^n}{2^{n+1}} = \sum_{n=0}^{\infty} \frac{(-1)^n x^{n+3}}{2^{n+1}} $$
            </div>
            <p>The IoC is determined by the original series, which for `1/(x+2)` is `(-2, 2)`.</p>

            <h3>Addition (via Partial Fractions)</h3>
            <p><strong>Example:</strong> `f(x) = 3 / (x^2 + x - 2)`</p>
            <p><strong>Step 1:</strong> Decompose the fraction.</p>
            <p>$$ \frac{3}{(x+2)(x-1)} = \frac{-1}{x+2} + \frac{1}{x-1} $$</p>
            <p><strong>Step 2:</strong> Find the power series for each part.</p>
            <p>For `\frac{-1}{x+2}`: $$ \sum_{n=0}^{\infty} \frac{(-1)^{n+1} x^n}{2^{n+1}} \quad \text{IoC: } (-2, 2) $$</p>
            <p>For `\frac{1}{x-1}`: $$ \sum_{n=0}^{\infty} -x^n \quad \text{IoC: } (-1, 1) $$</p>
            <p><strong>Step 3:</strong> Combine the series and find the final IoC.</p>
            <p class="result">$$ \sum_{n=0}^{\infty} \left( \frac{(-1)^{n+1}}{2^{n+1}} - 1 \right) x^n $$</p>
            <p>The final IoC is the <span class="key-term">intersection</span> of the individual intervals. The intersection of `(-2, 2)` and `(-1, 1)` is <span class="result">(-1, 1)</span>.</p>
        </div>

    </div>

</body>
</html>