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 - Module 3: Infinite Series Math
Download Open
Show description 1,464 chars · Math

Calc II - Module 3: Infinite Series

Calc II - Module 3: Infinite Series















CALCULUS II

Module 3: Infinite Series

This document provides a structured overview of the key concepts, formulas, and theorems for Module 3.






Introduction to Series

[ + ]



An infinite series is the sum of the terms of an infinite sequence $\{a_n\}$.


Sequence: An ordered list of numbers. Ex: $a_n = \frac{1}{n} \rightarrow 1, \frac{1}{2}, \frac{1}{3}, ...$

Series: The sum of that list. Ex: $\sum_{n=1}^{\infty} \frac{1}{n} = 1 + \frac{1}{2} + \frac{1}{3} + ...$


The fundamental question is whether the series converges to a finite sum or diverges.



KEY CONCEPT: Sequence of Partial Sums

The convergence of a series is determined by the limit of its sequence of partial sums, $S_n = \sum_{i=1}^{n} a_i$. If $\lim_{n \to \infty} S_n = S$ (a finite value), the series converges to S.





THEOREM: Geometric Series

A series of the form $\sum_{n=1}^{\infty} ar^{n-1} = a + ar + ar^2 + ...$


Converges if $|r| < 1$. The sum is given by the formula $S = \frac{a}{1-r}$, where 'a' is the first term.

Diverges if $|r| \geq 1$.






THEOREM: The Test for Divergence

If $\lim_{n \to \infty} a_n \neq 0$ or if the limit does not exist, then the series $\sum a_n$ **diverges**.





IMPORTANT NOTE

The converse of the Test for Divergence is false. If $\lim_{n \to \infty} a_n = 0$, the test is inconclusive. The series may converge or diverge.…

Calc II - Module 3: Infinite Series

17,970 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 - Module 3: Infinite Series</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&family=VT323&display=swap" rel="stylesheet">
    
    <!-- MathJax for rendering LaTeX -->
    <script>
    MathJax = {
      tex: {
        inlineMath: [['$', '$'], ['\\(', '\\)']],
        displayMath: [['$$', '$$'], ['\\[', '\\]']],
        processEscapes: true
      },
      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>

    <style>
        :root {
            --bg-color: #1a1a1a;
            --text-color: #e0e0e0;
            --header-color: #00ff00; /* Green */
            --accent-color-1: #ff00ff; /* Magenta */
            --accent-color-2: #00ffff; /* Cyan */
            --border-color: #555;
            --highlight-bg: #333;
            --font-pixel: 'Press Start 2P', cursive;
            --font-body: 'VT323', monospace;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            font-family: var(--font-body);
            font-size: 20px;
            line-height: 1.6;
            padding: 20px;
            max-width: 900px;
            margin: auto;
        }

        h1, h2, h3 {
            font-family: var(--font-pixel);
            color: var(--header-color);
            text-shadow: 2px 2px var(--accent-color-1);
            letter-spacing: 2px;
            margin-bottom: 20px;
        }
        
        h1 { font-size: 2.5rem; text-align: center; }
        h2 { font-size: 1.8rem; margin-top: 40px; color: var(--accent-color-2); }
        h3 { font-size: 1.2rem; color: var(--accent-color-1); text-shadow: none;}

        .main-container {
            border: 4px solid var(--border-color);
            padding: 20px;
            background-color: #252525;
            box-shadow: 0 0 15px rgba(0,255,255,0.3);
            border-radius: 8px;
        }
        
        .module-section {
            border: 2px dashed var(--border-color);
            margin-bottom: 20px;
            padding: 15px;
            border-radius: 8px;
            background-color: var(--highlight-bg);
            transition: all 0.3s ease;
        }
        
        .section-header {
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .section-header h3 {
            margin: 0;
        }

        .section-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out, padding 0.5s ease-out;
            padding: 0 15px;
        }

        .section-content.active {
            padding: 20px 15px 10px;
        }
        
        .formula-box, .pitfall-box, .pro-tip-box {
            border-left: 4px solid;
            padding: 15px;
            margin: 20px 0;
            background-color: rgba(0,0,0,0.2);
            border-radius: 0 8px 8px 0;
        }
        
        .formula-box { border-color: var(--header-color); }
        .pitfall-box { border-color: #ff4136; } /* Red */
        .pro-tip-box { border-color: #00ffff; } /* Cyan */

        .box-title {
            font-family: var(--font-pixel);
            font-size: 1rem;
            margin-top: 0;
            margin-bottom: 10px;
        }
        
        ul {
            list-style-type: none;
            padding-left: 0;
        }
        
        li::before {
            content: '>> ';
            color: var(--header-color);
            font-weight: bold;
        }
        
        code {
            background-color: #444;
            padding: 2px 6px;
            border-radius: 4px;
            font-family: 'VT323', monospace;
        }

        .final-message {
            text-align: center;
            margin-top: 40px;
            padding: 20px;
            border: 2px solid var(--accent-color-1);
            border-radius: 8px;
        }

    </style>
</head>
<body>

    <div class="main-container">
        <h1>CALCULUS II</h1>
        <h2 style="text-align:center; color: var(--accent-color-1);">Module 3: Infinite Series</h2>
        <p style="text-align:center;">This document provides a structured overview of the key concepts, formulas, and theorems for Module 3.</p>

        <div class="module-container">
            <!-- SECTION 1: INTRO TO SERIES -->
            <div class="module-section">
                <div class="section-header" onclick="toggleSection(this)">
                    <h3>Introduction to Series</h3>
                    <span>[ + ]</span>
                </div>
                <div class="section-content">
                    <p>An infinite series is the sum of the terms of an infinite sequence $\{a_n\}$.</p>
                    <ul>
                        <li><strong>Sequence:</strong> An ordered list of numbers. Ex: $a_n = \frac{1}{n} \rightarrow 1, \frac{1}{2}, \frac{1}{3}, ...$</li>
                        <li><strong>Series:</strong> The sum of that list. Ex: $\sum_{n=1}^{\infty} \frac{1}{n} = 1 + \frac{1}{2} + \frac{1}{3} + ...$</li>
                    </ul>
                    <p>The fundamental question is whether the series <strong>converges</strong> to a finite sum or <strong>diverges</strong>.</p>
                    
                    <div class="pro-tip-box">
                        <h4 class="box-title">KEY CONCEPT: Sequence of Partial Sums</h4>
                        <p>The convergence of a series is determined by the limit of its sequence of partial sums, $S_n = \sum_{i=1}^{n} a_i$. If $\lim_{n \to \infty} S_n = S$ (a finite value), the series converges to S.</p>
                    </div>

                    <div class="formula-box">
                        <h4 class="box-title">THEOREM: Geometric Series</h4>
                        <p>A series of the form $\sum_{n=1}^{\infty} ar^{n-1} = a + ar + ar^2 + ...$</p>
                        <ul>
                            <li><strong>Converges</strong> if $|r| < 1$. The sum is given by the formula $S = \frac{a}{1-r}$, where 'a' is the first term.</li>
                            <li><strong>Diverges</strong> if $|r| \geq 1$.</li>
                        </ul>
                    </div>

                    <div class="formula-box">
                        <h4 class="box-title">THEOREM: The Test for Divergence</h4>
                        <p>If $\lim_{n \to \infty} a_n \neq 0$ or if the limit does not exist, then the series $\sum a_n$ **diverges**.</p>
                    </div>

                    <div class="pitfall-box">
                        <h4 class="box-title">IMPORTANT NOTE</h4>
                        <p>The converse of the Test for Divergence is false. If $\lim_{n \to \infty} a_n = 0$, the test is inconclusive. The series may converge or diverge. For example, for the Harmonic Series $\sum \frac{1}{n}$, the terms approach zero, but the series diverges.</p>
                    </div>
                </div>
            </div>

            <!-- SECTION 2: CONVERGENCE TESTS -->
            <div class="module-section">
                <div class="section-header" onclick="toggleSection(this)">
                    <h3>Other Convergence Tests</h3>
                    <span>[ + ]</span>
                </div>
                <div class="section-content">
                    <p>For series where the Test for Divergence is inconclusive, the following tests can determine convergence.</p>
                    
                    <div class="pro-tip-box">
                        <h4 class="box-title">Guidelines for Selecting a Test</h4>
                        <ol>
                            <li>If $a_n = f(n)$ and $\int_1^\infty f(x)dx$ is easily evaluated $\rightarrow$ **Integral Test**.</li>
                            <li>If the series is of the form $\sum \frac{1}{n^p}$ $\rightarrow$ **p-Series Test**.</li>
                            <li>If $a_n$ is a rational or algebraic function of n, compare to a p-series $\rightarrow$ **Comparison or Limit Comparison Test**.</li>
                            <li>If the series terms alternate in sign $\rightarrow$ **Alternating Series Test**.</li>
                            <li>If the series involves factorials or n-th powers $\rightarrow$ **Ratio or Root Test**.</li>
                        </ol>
                    </div>
                    
                    <ul>
                        <li><strong>The Integral Test:</strong> If $f(x)$ is a positive, continuous, and decreasing function for $x \ge 1$ and $a_n=f(n)$, then $\sum a_n$ and $\int_1^\infty f(x)dx$ either both converge or both diverge.</li>
                        <li><strong>The p-Series Test:</strong> The series $\sum \frac{1}{n^p}$ converges if $p > 1$ and diverges if $p \leq 1$.</li>
                        <li><strong>The Direct Comparison Test:</strong> Given $0 \le a_n \le b_n$, if $\sum b_n$ converges, then $\sum a_n$ converges. If $\sum a_n$ diverges, then $\sum b_n$ diverges.</li>
                        <li><strong>The Limit Comparison Test:</strong> If $\lim_{n \to \infty} \frac{a_n}{b_n} = L$ where L is a finite, positive number, then $\sum a_n$ and $\sum b_n$ either both converge or both diverge.</li>
                        <li><strong>The Alternating Series Test:</strong> For $\sum (-1)^n b_n$, if $b_{n+1} \le b_n$ (decreasing) and $\lim_{n \to \infty} b_n = 0$, the series converges.</li>
                        <li><strong>The Ratio Test:</strong> Let $L = \lim_{n \to \infty} |\frac{a_{n+1}}{a_n}|$. If $L<1$, the series is absolutely convergent. If $L>1$, the series is divergent. If $L=1$, the test is inconclusive.</li>
                        <li><strong>The Root Test:</strong> Let $L = \lim_{n \to \infty} \sqrt[n]{|a_n|}$. The conclusions are the same as for the Ratio Test.</li>
                    </ul>

                     <div class="pitfall-box">
                        <h4 class="box-title">IMPORTANT NOTE</h4>
                        <p>For the Ratio and Root tests, a result of $L=1$ is inconclusive. Another test must be applied.</p>
                    </div>
                </div>
            </div>

            <!-- SECTION 3: POWER SERIES -->
            <div class="module-section">
                <div class="section-header" onclick="toggleSection(this)">
                    <h3>Power Series</h3>
                    <span>[ + ]</span>
                </div>
                <div class="section-content">
                    <p>A power series is a series of the form $\sum_{n=0}^{\infty} c_n (x-a)^n$, where $a$ is the center. It can be viewed as a polynomial of infinite degree.</p>
                    
                    <div class="pro-tip-box">
                        <h4 class="box-title">Objective: Find Convergence Set</h4>
                        <p>For any power series, the primary goal is to find its **Radius of Convergence (R)** and **Interval of Convergence (I.O.C.)**.</p>
                        <p><strong>STEP 1:</strong> Apply the Ratio Test to $\sum |c_n (x-a)^n|$ to find the condition on $x$ for which the series converges. This yields the radius R.</p>
                        <p><strong>STEP 2:</strong> The series converges absolutely for $|x-a| < R$. This defines an open interval $(a-R, a+R)$.</p>
                        <p><strong>STEP 3: CRITICAL!</strong> The convergence at the endpoints, $x = a-R$ and $x = a+R$, must be tested separately by substituting these values into the original series and applying an appropriate convergence test from the previous section.</p>
                    </div>
                </div>
            </div>

            <!-- SECTION 4: REPRESENTING FUNCTIONS AS POWER SERIES -->
            <div class="module-section">
                <div class="section-header" onclick="toggleSection(this)">
                    <h3>Representing Functions as Power Series</h3>
                    <span>[ + ]</span>
                </div>
                <div class="section-content">
                    <p>Many functions can be represented by a power series. This can be achieved by manipulating known series, primarily the geometric series.</p>
                    <div class="formula-box">
                        <h4 class="box-title">Fundamental Series</h4>
                        <p>The geometric series formula is the foundation for this topic: $\frac{1}{1-x} = \sum_{n=0}^\infty x^n$, which converges for $|x|<1$.</p>
                        <ul>
                            <li><strong>Substitution:</strong> Functions can be manipulated to fit the form $\frac{a}{1-r}$. For example, to find the series for $\frac{1}{1+x^2}$, rewrite it as $\frac{1}{1-(-x^2)}$ and substitute $-x^2$ for $x$ in the geometric series formula.</li>
                            <li><strong>Differentiation and Integration:</strong> Within its interval of convergence, a power series can be differentiated or integrated term-by-term to produce a new power series representing the derivative or integral of the original function. The radius of convergence remains unchanged, but endpoint convergence may change.</li>
                        </ul>
                    </div>
                </div>
            </div>

            <!-- SECTION 5: TAYLOR AND MACLAURIN SERIES -->
            <div class="module-section">
                <div class="section-header" onclick="toggleSection(this)">
                    <h3>Taylor and Maclaurin Series</h3>
                    <span>[ + ]</span>
                </div>
                <div class="section-content">
                    <p>The Taylor series provides a general method for representing a function as a power series, provided the function has derivatives of all orders.</p>

                    <div class="formula-box">
                        <h4 class="box-title">DEFINITION: Taylor Series</h4>
                        <p>The Taylor series for a function $f(x)$ centered at $x=a$ is defined as:</p>
                        $$ f(x) = \sum_{n=0}^{\infty} \frac{f^{(n)}(a)}{n!} (x-a)^n $$
                        <p>This expands to: $f(a) + f'(a)(x-a) + \frac{f''(a)}{2!}(x-a)^2 + \frac{f'''(a)}{3!}(x-a)^3 + ...$</p>
                        <p>A **Maclaurin Series** is a special case of the Taylor Series, centered at $a=0$.</p>
                    </div>

                    <div class="pro-tip-box">
                        <h4 class="box-title">Common Maclaurin Series Expansions</h4>
                        <p>Committing these essential series to memory is highly efficient for problem-solving.</p>
                        <ul>
                            <li>$e^x = \sum_{n=0}^{\infty} \frac{x^n}{n!} = 1 + x + \frac{x^2}{2!} + \frac{x^3}{3!} + ...$ (R = $\infty$)</li>
                            <li>$\sin(x) = \sum_{n=0}^{\infty} \frac{(-1)^n x^{2n+1}}{(2n+1)!} = x - \frac{x^3}{3!} + \frac{x^5}{5!} - ...$ (R = $\infty$)</li>
                            <li>$\cos(x) = \sum_{n=0}^{\infty} \frac{(-1)^n x^{2n}}{(2n)!} = 1 - \frac{x^2}{2!} + \frac{x^4}{4!} - ...$ (R = $\infty$)</li>
                            <li>$\frac{1}{1-x} = \sum_{n=0}^{\infty} x^n = 1 + x + x^2 + ...$ (R = 1)</li>
                            <li>$\ln(1+x) = \sum_{n=1}^{\infty} \frac{(-1)^{n-1} x^n}{n} = x - \frac{x^2}{2} + \frac{x^3}{3} - ...$ (R = 1)</li>
                        </ul>
                    </div>
                    
                    <div class="pitfall-box">
                        <h4 class="box-title">IMPORTANT NOTE</h4>
                        <p>When applying the Taylor series formula, ensure accuracy in calculating the derivatives $f^{(n)}(a)$ at the center point 'a', and do not omit the $n!$ term in the denominator.</p>
                    </div>

                </div>
            </div>
        </div>

        <div class="final-message">
            <h3>Concluding Remarks</h3>
            <p>A systematic approach is key to mastering this material. Review each section, focusing on understanding the conditions for each theorem and practicing a variety of problems. Consistent effort will lead to success.</p>
        </div>
    </div>

    <script>
        function toggleSection(headerElement) {
            const content = headerElement.nextElementSibling;
            const indicator = headerElement.querySelector('span');
            
            if (content.style.maxHeight && content.style.maxHeight !== '0px') {
                content.style.maxHeight = '0px';
                content.classList.remove('active');
                indicator.textContent = '[ + ]';
            } else {
                // Close all other sections first
                document.querySelectorAll('.section-content').forEach(item => {
                    item.style.maxHeight = '0px';
                    item.classList.remove('active');
                    item.previousElementSibling.querySelector('span').textContent = '[ + ]';
                });

                // Open the clicked section
                content.classList.add('active');
                content.style.maxHeight = content.scrollHeight + "px";
                indicator.textContent = '[ - ]';
            }
        }
    </script>

</body>
</html>