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 2 - Complete Study Guide Math
Download Open
Show description 2,369 chars · Math

Calc 2 - Complete Study Guide

Calc 2 - Complete Study Guide




CALC 2 - COMPLETE SURVIVAL GUIDE



Integration by Parts

∫u dv = uv - ∫v du


1. LIATE Priority: Logs → Inverse trig → Algebraic → Trig → Exponential



2. When to Use: Product of two different function types (xe^x, x sin x, x ln x)



3. Sometimes Apply Twice: For x²e^x or x² sin x, use parts twice in a row






Trig Integrals and Substitution


Essential Trig Identities:
sin²x + cos²x = 1

tan²x + 1 = sec²x

1 + cot²x = csc²x

sin²x = (1 - cos 2x)/2

cos²x = (1 + cos 2x)/2




1. Odd Powers of Sine/Cosine: Save one factor, convert rest using sin²x + cos²x = 1



2. Even Powers: Use half-angle formulas to reduce power



3. Trig Substitution Patterns:
√(a² - x²) → x = a sin θ

√(a² + x²) → x = a tan θ

√(x² - a²) → x = a sec θ







Partial Fractions


1. Factor Denominator Completely: Find all linear and irreducible quadratic factors



2. Set Up Fractions:
Linear factor (x - a): A/(x - a)

Repeated linear (x - a)²: A/(x - a) + B/(x - a)²

Irreducible quadratic (x² + bx + c): (Ax + B)/(x² + bx + c)




3. Finding Coefficients:
Method 1: Multiply through and equate coefficients

Method 2: Substitute convenient x-values to solve for constants

Method 3: Cover-up method for simple linear factors







Approximate Integrals

Trapezoidal Rule: T_n = (Δx/2)[f(x₀) + 2f(x₁) + 2f(x₂) + ... + 2f(x_{n-1}) + f(x_n)]

Simpson's Rule: S_n = (Δx/3)[f(x₀) + 4f(x₁) + 2f(x₂) + 4f(x₃) + ... + f(x_n)]


1. Δx = (b - a)/n where n is number of subintervals



2. Simpson's Rule: Requires even number of subintervals, more accurate



3. Error Bounds: Simpson's error goes as (Δx)⁴, Trapezoidal as (Δx)²






Improper Integrals

∫[a to ∞] f(x) dx = lim[t→∞] ∫[a to t] f(x) dx


1. Type 1: Infinite limits - take limit as you approach infinity



2. Type 2: Discontinuous integrand - take limit as you approach discontinuity



3. Convergence vs Divergence:
Converges: Limit exists and is finite

Diverges: Limit is infinite or doesn't exist

Compare with p-integrals: ∫[1 to ∞] 1/x^p converges if p > 1







Areas Between Curves

A = ∫[a to b] |f(x) - g(x)| dx


1. Always Sketch: Determine which function is on top in each interval



2. Find Intersection Points: Solve f(x) = g(x) to find limits of integration



3.…

Calc 2 - Complete Study Guide

19,519 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 2 - Complete Study Guide</title>
    <style>
        body {
            font-family: 'Times New Roman', serif;
            background-color: white;
            margin: 20px;
            line-height: 1.5;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .card {
            border: 5px solid black;
            margin: 20px 0;
            padding: 25px;
            background-color: white;
        }
        
        .topic {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 15px;
            text-transform: uppercase;
            border-bottom: 3px solid black;
            padding-bottom: 8px;
        }
        
        .formula {
            font-size: 17px;
            font-family: 'Times New Roman', serif;
            margin: 10px 0;
            background-color: #f8f8f8;
            padding: 8px;
            border: 2px solid black;
        }
        
        .key-point {
            font-size: 15px;
            margin: 8px 0;
            padding-left: 10px;
        }
        
        .math {
            font-style: italic;
            font-size: 17px;
        }
        
        .must-know {
            background-color: #f0f0f0;
            border: 3px solid black;
            padding: 12px;
            margin: 10px 0;
            font-weight: bold;
        }
        
        .sub-point {
            margin-left: 20px;
            font-size: 14px;
        }
        
        h1 {
            text-align: center;
            border: 8px solid black;
            padding: 25px;
            background-color: white;
            margin-bottom: 30px;
            font-size: 32px;
        }
        
        .critical {
            background-color: #e8e8e8;
            border: 2px solid black;
            padding: 10px;
            margin: 8px 0;
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>CALC 2 - COMPLETE SURVIVAL GUIDE</h1>
        
        <div class="card">
            <div class="topic">Integration by Parts</div>
            <div class="formula math">∫u dv = uv - ∫v du</div>
            <div class="must-know">
                <strong>1. LIATE Priority:</strong> Logs → Inverse trig → Algebraic → Trig → Exponential
            </div>
            <div class="must-know">
                <strong>2. When to Use:</strong> Product of two different function types (xe^x, x sin x, x ln x)
            </div>
            <div class="must-know">
                <strong>3. Sometimes Apply Twice:</strong> For x²e^x or x² sin x, use parts twice in a row
            </div>
        </div>

        <div class="card">
            <div class="topic">Trig Integrals and Substitution</div>
            <div class="critical">
                <strong>Essential Trig Identities:</strong>
                <div class="sub-point">sin²x + cos²x = 1</div>
                <div class="sub-point">tan²x + 1 = sec²x</div>
                <div class="sub-point">1 + cot²x = csc²x</div>
                <div class="sub-point">sin²x = (1 - cos 2x)/2</div>
                <div class="sub-point">cos²x = (1 + cos 2x)/2</div>
            </div>
            <div class="must-know">
                <strong>1. Odd Powers of Sine/Cosine:</strong> Save one factor, convert rest using sin²x + cos²x = 1
            </div>
            <div class="must-know">
                <strong>2. Even Powers:</strong> Use half-angle formulas to reduce power
            </div>
            <div class="must-know">
                <strong>3. Trig Substitution Patterns:</strong>
                <div class="sub-point">√(a² - x²) → x = a sin θ</div>
                <div class="sub-point">√(a² + x²) → x = a tan θ</div>
                <div class="sub-point">√(x² - a²) → x = a sec θ</div>
            </div>
        </div>

        <div class="card">
            <div class="topic">Partial Fractions</div>
            <div class="must-know">
                <strong>1. Factor Denominator Completely:</strong> Find all linear and irreducible quadratic factors
            </div>
            <div class="must-know">
                <strong>2. Set Up Fractions:</strong>
                <div class="sub-point">Linear factor (x - a): A/(x - a)</div>
                <div class="sub-point">Repeated linear (x - a)²: A/(x - a) + B/(x - a)²</div>
                <div class="sub-point">Irreducible quadratic (x² + bx + c): (Ax + B)/(x² + bx + c)</div>
            </div>
            <div class="must-know">
                <strong>3. Finding Coefficients:</strong>
                <div class="sub-point">Method 1: Multiply through and equate coefficients</div>
                <div class="sub-point">Method 2: Substitute convenient x-values to solve for constants</div>
                <div class="sub-point">Method 3: Cover-up method for simple linear factors</div>
            </div>
        </div>

        <div class="card">
            <div class="topic">Approximate Integrals</div>
            <div class="formula">Trapezoidal Rule: T_n = (Δx/2)[f(x₀) + 2f(x₁) + 2f(x₂) + ... + 2f(x_{n-1}) + f(x_n)]</div>
            <div class="formula">Simpson's Rule: S_n = (Δx/3)[f(x₀) + 4f(x₁) + 2f(x₂) + 4f(x₃) + ... + f(x_n)]</div>
            <div class="must-know">
                <strong>1. Δx = (b - a)/n</strong> where n is number of subintervals
            </div>
            <div class="must-know">
                <strong>2. Simpson's Rule:</strong> Requires even number of subintervals, more accurate
            </div>
            <div class="must-know">
                <strong>3. Error Bounds:</strong> Simpson's error goes as (Δx)⁴, Trapezoidal as (Δx)²
            </div>
        </div>

        <div class="card">
            <div class="topic">Improper Integrals</div>
            <div class="formula math">∫[a to ∞] f(x) dx = lim[t→∞] ∫[a to t] f(x) dx</div>
            <div class="must-know">
                <strong>1. Type 1:</strong> Infinite limits - take limit as you approach infinity
            </div>
            <div class="must-know">
                <strong>2. Type 2:</strong> Discontinuous integrand - take limit as you approach discontinuity
            </div>
            <div class="must-know">
                <strong>3. Convergence vs Divergence:</strong>
                <div class="sub-point">Converges: Limit exists and is finite</div>
                <div class="sub-point">Diverges: Limit is infinite or doesn't exist</div>
                <div class="sub-point">Compare with p-integrals: ∫[1 to ∞] 1/x^p converges if p > 1</div>
            </div>
        </div>

        <div class="card">
            <div class="topic">Areas Between Curves</div>
            <div class="formula math">A = ∫[a to b] |f(x) - g(x)| dx</div>
            <div class="must-know">
                <strong>1. Always Sketch:</strong> Determine which function is on top in each interval
            </div>
            <div class="must-know">
                <strong>2. Find Intersection Points:</strong> Solve f(x) = g(x) to find limits of integration
            </div>
            <div class="must-know">
                <strong>3. Split at Crossings:</strong> If curves cross, split into separate integrals
            </div>
        </div>

        <div class="card">
            <div class="topic">Volumes</div>
            <div class="formula">Disk Method: V = π∫[a to b] [R(x)]² dx</div>
            <div class="formula">Washer Method: V = π∫[a to b] [R(x)² - r(x)²] dx</div>
            <div class="must-know">
                <strong>1. Disk Method:</strong> Solid disk, R(x) = radius from axis to curve
            </div>
            <div class="must-know">
                <strong>2. Washer Method:</strong> Hollow center, R(x) = outer radius, r(x) = inner radius
            </div>
            <div class="must-know">
                <strong>3. Choose Integration Variable:</strong> Integrate with respect to variable that makes R(x) simpler
            </div>
        </div>

        <div class="card">
            <div class="topic">Volumes w/ Cylindrical Shells</div>
            <div class="formula math">V = 2π ∫[a to b] r(x) · h(x) dx</div>
            <div class="must-know">
                <strong>1. r(x) = distance from axis of rotation to shell</strong>
            </div>
            <div class="must-know">
                <strong>2. h(x) = height of shell = |f(x) - g(x)|</strong>
            </div>
            <div class="must-know">
                <strong>3. Use When:</strong> Disk/washer method gives complicated setup
            </div>
        </div>

        <div class="card">
            <div class="topic">Arc Length</div>
            <div class="formula math">L = ∫[a to b] √(1 + (dy/dx)²) dx</div>
            <div class="formula math">L = ∫[c to d] √((dx/dy)² + 1) dy</div>
            <div class="must-know">
                <strong>1. Choose the Form:</strong> That makes dy/dx or dx/dy simpler
            </div>
            <div class="must-know">
                <strong>2. Parametric Form:</strong> L = ∫√((dx/dt)² + (dy/dt)²) dt
            </div>
            <div class="must-know">
                <strong>3. Common Mistake:</strong> Don't forget the square root covers the entire expression
            </div>
        </div>

        <div class="card">
            <div class="topic">Applications to Physics & Engineering</div>
            <div class="critical">
                <strong>Work = Force × Distance Applications:</strong>
            </div>
            <div class="must-know">
                <strong>1. Variable Force:</strong> W = ∫F(x) dx where F(x) changes with position
                <div class="sub-point">Spring work: W = ∫₀ᵈ kx dx = ½kd² (Hooke's Law: F = kx)</div>
                <div class="sub-point">Pumping liquid: W = ∫ρg·h(x)·A(x) dx</div>
            </div>
            <div class="must-know">
                <strong>2. Center of Mass:</strong> x̄ = (∫x·ρ(x) dx)/(∫ρ(x) dx)
            </div>
            <div class="must-know">
                <strong>3. Fluid Pressure:</strong> F = ∫ρg·h(y)·w(y) dy
                <div class="sub-point">ρ = density, g = gravity, h(y) = depth, w(y) = width at depth y</div>
            </div>
        </div>

        <div class="card">
            <div class="topic">Sequences</div>
            <div class="must-know">
                <strong>1. Convergence:</strong> lim[n→∞] aₙ = L (finite number) → sequence converges to L
            </div>
            <div class="must-know">
                <strong>2. Divergence:</strong> lim[n→∞] aₙ = ∞, -∞, or doesn't exist → sequence diverges
            </div>
            <div class="must-know">
                <strong>3. Squeeze Theorem:</strong> If aₙ ≤ bₙ ≤ cₙ and lim aₙ = lim cₙ = L, then lim bₙ = L
            </div>
        </div>

        <div class="card">
            <div class="topic">Series</div>
            <div class="critical">
                <strong>Convergence vs Divergence Explained:</strong>
                <div class="sub-point">Series CONVERGES: Partial sums Sₙ approach a finite limit</div>
                <div class="sub-point">Series DIVERGES: Partial sums grow without bound or oscillate</div>
                <div class="sub-point">If Σaₙ converges, then aₙ → 0 (but aₙ → 0 doesn't guarantee convergence!)</div>
            </div>
            <div class="must-know">
                <strong>1. Geometric Series:</strong> Σar^n converges when |r| < 1, sum = a/(1-r)
            </div>
            <div class="must-know">
                <strong>2. p-Series:</strong> Σ(1/n^p) converges when p > 1, diverges when p ≤ 1
            </div>
            <div class="must-know">
                <strong>3. nth Term Test (Divergence Test):</strong>
                <div class="sub-point">If lim[n→∞] aₙ ≠ 0, then Σaₙ DIVERGES</div>
                <div class="sub-point">If lim[n→∞] aₙ = 0, test is INCONCLUSIVE (might converge or diverge)</div>
                <div class="sub-point">This test can ONLY prove divergence, never convergence</div>
            </div>
        </div>

        <div class="card">
            <div class="topic">Other Convergence Tests</div>
            <div class="must-know">
                <strong>1. Ratio Test:</strong> lim[n→∞] |aₙ₊₁/aₙ| = L
                <div class="sub-point">L < 1: converges, L > 1: diverges, L = 1: inconclusive</div>
                <div class="sub-point">Best for series with factorials or exponentials</div>
            </div>
            <div class="must-know">
                <strong>2. Integral Test:</strong> ∫₁^∞ f(x) dx and Σf(n) both converge or both diverge
                <div class="sub-point">Use when f(x) is positive, decreasing, and continuous</div>
            </div>
            <div class="must-know">
                <strong>3. Comparison Tests:</strong>
                <div class="sub-point">Direct: If 0 ≤ aₙ ≤ bₙ and Σbₙ converges, then Σaₙ converges</div>
                <div class="sub-point">Limit: lim[n→∞] aₙ/bₙ = L > 0, then both series have same behavior</div>
            </div>
        </div>

        <div class="card">
            <div class="topic">Power Series</div>
            <div class="formula math">Σcₙ(x - a)^n = c₀ + c₁(x - a) + c₂(x - a)² + ...</div>
            <div class="must-know">
                <strong>1. Radius of Convergence R:</strong> Use ratio test on coefficients
                <div class="sub-point">R = lim[n→∞] |cₙ/cₙ₊₁| or R = 1/lim[n→∞] |cₙ₊₁/cₙ|</div>
            </div>
            <div class="must-know">
                <strong>2. Interval of Convergence:</strong> (a - R, a + R), then check endpoints separately
            </div>
            <div class="must-know">
                <strong>3. Operations:</strong> Can add, multiply, differentiate, integrate term by term within radius
            </div>
        </div>

        <div class="card">
            <div class="topic">Functions as Power Series</div>
            <div class="must-know">
                <strong>1. Geometric Series Pattern:</strong> 1/(1-x) = Σx^n for |x| < 1
            </div>
            <div class="must-know">
                <strong>2. Term-by-Term Operations:</strong> d/dx[Σcₙx^n] = Σncₙx^(n-1)
            </div>
            <div class="must-know">
                <strong>3. Integration:</strong> ∫[Σcₙx^n]dx = Σ[cₙx^(n+1)/(n+1)] + C
            </div>
        </div>

        <div class="card">
            <div class="topic">Taylor and McLaurin Series</div>
            <div class="formula math">f(x) = Σ[f^(n)(a)/n!](x - a)^n</div>
            <div class="critical">
                <strong>Essential McLaurin Series (a = 0):</strong>
                <div class="sub-point">e^x = Σx^n/n! = 1 + x + x²/2! + x³/3! + ...</div>
                <div class="sub-point">sin x = Σ(-1)ⁿx^(2n+1)/(2n+1)! = x - x³/3! + x⁵/5! - ...</div>
                <div class="sub-point">cos x = Σ(-1)ⁿx^(2n)/(2n)! = 1 - x²/2! + x⁴/4! - ...</div>
                <div class="sub-point">1/(1-x) = Σx^n = 1 + x + x² + x³ + ... for |x| < 1</div>
                <div class="sub-point">ln(1+x) = Σ(-1)^(n+1)x^n/n = x - x²/2 + x³/3 - ... for |x| < 1</div>
            </div>
            <div class="must-know">
                <strong>1. Taylor Centered at a:</strong> Use derivatives evaluated at x = a
            </div>
            <div class="must-know">
                <strong>2. Error Estimation:</strong> |Rₙ(x)| ≤ M|x - a|^(n+1)/(n+1)! where |f^(n+1)(c)| ≤ M
            </div>
        </div>

        <div class="card">
            <div class="topic">Parametric Curves</div>
            <div class="formula">x = f(t), y = g(t)</div>
            <div class="must-know">
                <strong>1. Think of t as Time:</strong> Particle traces path as t increases
            </div>
            <div class="must-know">
                <strong>2. Eliminate Parameter:</strong> Solve for t in one equation, substitute into other
            </div>
            <div class="must-know">
                <strong>3. Direction of Motion:</strong> dx/dt and dy/dt tell you horizontal and vertical velocity
            </div>
        </div>

        <div class="card">
            <div class="topic">Calculus with Parametric Curves</div>
            <div class="formula math">dy/dx = (dy/dt)/(dx/dt)</div>
            <div class="formula math">d²y/dx² = d/dx[dy/dx] = [(d²y/dt²)(dx/dt) - (dy/dt)(d²x/dt²)]/(dx/dt)³</div>
            <div class="must-know">
                <strong>1. First Derivative:</strong> Chain rule applied to parametric equations
            </div>
            <div class="must-know">
                <strong>2. Second Derivative:</strong> More complex, use quotient rule carefully
            </div>
            <div class="must-know">
                <strong>3. Arc Length:</strong> L = ∫√((dx/dt)² + (dy/dt)²) dt
            </div>
        </div>

        <div class="card">
            <div class="topic">Polar Coordinates</div>
            <div class="formula">x = r cos θ, y = r sin θ</div>
            <div class="formula">r² = x² + y², tan θ = y/x</div>
            <div class="must-know">
                <strong>1. r = distance from origin, θ = angle from positive x-axis</strong>
            </div>
            <div class="must-know">
                <strong>2. Common Polar Curves:</strong>
                <div class="sub-point">Circle: r = a</div>
                <div class="sub-point">Cardioid: r = a(1 ± cos θ) or r = a(1 ± sin θ)</div>
                <div class="sub-point">Rose: r = a cos(nθ) or r = a sin(nθ)</div>
            </div>
            <div class="must-know">
                <strong>3. Symmetry Tests:</strong> Replace (r,θ) with (-r,θ+π), (r,-θ), (-r,-θ)
            </div>
        </div>

        <div class="card">
            <div class="topic">Areas and Length in Polar Coordinates</div>
            <div class="formula math">Area = (1/2)∫[α to β] r² dθ</div>
            <div class="formula math">Arc Length = ∫[α to β] √(r² + (dr/dθ)²) dθ</div>
            <div class="must-know">
                <strong>1. Area Between Curves:</strong> (1/2)∫[r₁² - r₂²] dθ where r₁ ≥ r₂
            </div>
            <div class="must-know">
                <strong>2. Finding Intersection Points:</strong> Set r₁(θ) = r₂(θ) and solve for θ
            </div>
            <div class="must-know">
                <strong>3. Don't Forget the (1/2):</strong> This factor comes from the area of a sector
            </div>
        </div>
    </div>
</body>
</html>