Show description
Calc 2 Final - Cheat Sheet
Calc 2 Final - Cheat Sheet
Calc 2 Final - The Blueprint
Chapter 9: Parametric & Polar (Focus Here!)
Parametric Calculus
Derivative (Slope): The slope of the tangent line is found by the ratio of the derivatives with respect to \(t\).
\[ \frac{dy}{dx} = \frac{dy/dt}{dx/dt} \]
Horizontal & Vertical Tangents:
Horizontal Tangent: Set the numerator to zero: \( \frac{dy}{dt} = 0 \).
Vertical Tangent: Set the denominator to zero: \( \frac{dx}{dt} = 0 \).
Arc Length (Parametric): Remember this version! It comes from the Pythagorean theorem.
\[ L = \int_{a}^{b} \sqrt{\left(\frac{dx}{dt}\right)^2 + \left(\frac{dy}{dt}\right)^2} \, dt \]
Polar Calculus
Coordinate Conversion:
Polar to Cartesian: \( x = r\cos\theta \), \( y = r\sin\theta \)
Cartesian to Polar: \( r^2 = x^2 + y^2 \), \( \tan\theta = \frac{y}{x} \) (Watch the quadrant!)
Area in Polar Coordinates: This is for the area of "wedges" from the origin.
\[ A = \int_{a}^{b} \frac{1}{2} r^2 \, d\theta \]
Finding Area Limits (a, b): For one "petal" or an "inner loop," find where the curve is at the origin by setting \(r=0\) and solving for \(\theta\).
Arc Length (Polar):
\[ L = \int_{a}^{b} \sqrt{r^2 + \left(\frac{dr}{d\theta}\right)^2} \, d\theta \]
Chapter 8: Series
Nth-Term Test for Divergence: Your first check! If \( \lim_{n\to\infty} a_n \neq 0 \), the series DIVERGES. If the limit is 0, the test is inconclusive.
Geometric Series: \( \sum_{n=0}^{\infty} ar^n \)
Converges if \(|r| < 1\).
Sum Formula: If it converges, the sum is \( S = \frac{a}{1-r} \), where \(a\) is the first term.
Ratio Test: The workhorse for convergence. Compute \( L = \lim_{n\to\infty} \left| \frac{a_{n+1}}{a_n} \right| \).
If \(L < 1\), the series is absolutely convergent.
If \(L > 1\), the series is divergent.
If \(L = 1\), the test is inconclusive.
Taylor Series at \(x=a\): Guaranteed question on a non-zero center!
\[ f(x) = \sum_{n=0}^{\infty} \frac{f^{(n)}(a)}{n!} (x-a)^n \]
Must-Memorize Maclaurin Series (\(a=0\))
\( \frac{1}{1-x} = \sum_{n=0}^{\infty} x^n = 1 + x + x^2 + x^3 + \dots \) for \(|x|
Calc 2 Final - Cheat Sheet
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Calc 2 Final - Cheat Sheet</title>
<!-- KaTeX for rendering math -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.10/dist/katex.min.css" xintegrity="sha384-wcIxkf4k558fYv3eCdIG9KOAPvKll9LsSo4dHTup1mrT5BIJZ-FUa+LsEGHwCPSw" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/katex@0.16.10/dist/katex.min.js" xintegrity="sha384-hIoBPJpTUs74ddyc4bFZSM1gAU6notJRTWeZTE3vrHjSmuFB4fZpU_GTCcgLaiV1" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/katex@0.16.10/dist/contrib/auto-render.min.js" xintegrity="sha384-43gviWU0YVjaDtb/GhzOouOXtZMP/7XUzwPTstBeZFe/+rCMvRwr4yROQP43s0Xk" crossorigin="anonymous"></script>
<!-- Google Font for handwriting 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=Kalam:wght@300;400;700&display=swap" rel="stylesheet">
<style>
/* Basic styles for the page */
body {
font-family: 'Kalam', cursive;
background-color: #e0e0e0; /* A neutral background for the page */
margin: 0;
padding: 2rem;
display: flex;
justify-content: center;
align-items: flex-start;
min-height: 100vh;
}
/* The main paper container */
.paper {
background-color: #fdfaf2; /* Off-white paper color */
width: 100%;
max-width: 800px; /* Standard paper width */
min-height: 1000px;
padding: 40px 40px 40px 80px; /* Top, Right, Bottom, Left (for margin line) */
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
position: relative;
/* Lined paper effect */
background-image: linear-gradient(#d4eaff 1px, transparent 1px);
background-size: 100% 1.8em; /* Line height */
line-height: 1.8em;
font-size: 18px;
color: #333;
}
/* The red margin line on the left */
.paper::before {
content: '';
position: absolute;
top: 0;
left: 55px;
width: 2px;
height: 100%;
background-color: rgba(255, 100, 100, 0.7);
}
/* Hole punches on the left */
.hole {
position: absolute;
left: 20px;
width: 18px;
height: 18px;
background-color: #e0e0e0; /* Same as body background */
border-radius: 50%;
border: 1px solid #ccc;
}
.hole.one { top: 10%; }
.hole.two { top: 50%; }
.hole.three { top: 90%; }
/* Typography */
h1, h2, h3 {
font-family: 'Kalam', cursive;
font-weight: 700;
color: #003366;
margin-top: 1.5em;
margin-bottom: 0.5em;
}
h1 {
text-align: center;
font-size: 2.5em;
margin-top: 0;
margin-bottom: 1em;
color: #000;
}
h2 {
font-size: 1.8em;
border-bottom: 2px solid rgba(0, 51, 102, 0.3);
padding-bottom: 5px;
}
h3 {
font-size: 1.4em;
color: #4a4a4a;
}
strong {
font-weight: 700;
color: #c0392b; /* A subtle red for emphasis */
}
ul {
list-style-type: disc;
padding-left: 25px;
}
li {
margin-bottom: 1em;
}
/* KaTeX styling */
.katex-display {
margin: 1em 0;
font-size: 1.1em !important;
}
.katex {
font-size: 1.1em !important;
}
/* Responsive design */
@media (max-width: 600px) {
body {
padding: 0.5rem;
}
.paper {
padding: 20px 20px 20px 40px;
font-size: 16px;
line-height: 1.7em;
background-size: 100% 1.7em;
}
.paper::before {
left: 25px;
}
.hole {
left: 5px;
width: 14px;
height: 14px;
}
h1 { font-size: 2em; }
h2 { font-size: 1.5em; }
h3 { font-size: 1.2em; }
}
</style>
</head>
<body>
<div class="paper">
<div class="hole one"></div>
<div class="hole two"></div>
<div class="hole three"></div>
<h1>Calc 2 Final - The Blueprint</h1>
<!-- Chapter 9: Parametric & Polar -->
<h2>Chapter 9: Parametric & Polar (Focus Here!)</h2>
<h3>Parametric Calculus</h3>
<ul>
<li><strong>Derivative (Slope):</strong> The slope of the tangent line is found by the ratio of the derivatives with respect to \(t\).
\[ \frac{dy}{dx} = \frac{dy/dt}{dx/dt} \]
</li>
<li><strong>Horizontal & Vertical Tangents:</strong>
<ul>
<li><strong>Horizontal Tangent:</strong> Set the numerator to zero: \( \frac{dy}{dt} = 0 \).</li>
<li><strong>Vertical Tangent:</strong> Set the denominator to zero: \( \frac{dx}{dt} = 0 \).</li>
</ul>
</li>
<li><strong>Arc Length (Parametric):</strong> Remember this version! It comes from the Pythagorean theorem.
\[ L = \int_{a}^{b} \sqrt{\left(\frac{dx}{dt}\right)^2 + \left(\frac{dy}{dt}\right)^2} \, dt \]
</li>
</ul>
<h3>Polar Calculus</h3>
<ul>
<li><strong>Coordinate Conversion:</strong>
<ul>
<li>Polar to Cartesian: \( x = r\cos\theta \), \( y = r\sin\theta \)</li>
<li>Cartesian to Polar: \( r^2 = x^2 + y^2 \), \( \tan\theta = \frac{y}{x} \) (Watch the quadrant!)</li>
</ul>
</li>
<li><strong>Area in Polar Coordinates:</strong> This is for the area of "wedges" from the origin.
\[ A = \int_{a}^{b} \frac{1}{2} r^2 \, d\theta \]
</li>
<li><strong>Finding Area Limits (a, b):</strong> For one "petal" or an "inner loop," find where the curve is at the origin by setting <strong>\(r=0\)</strong> and solving for \(\theta\).</li>
<li><strong>Arc Length (Polar):</strong>
\[ L = \int_{a}^{b} \sqrt{r^2 + \left(\frac{dr}{d\theta}\right)^2} \, d\theta \]
</li>
</ul>
<!-- Chapter 8: Series -->
<h2>Chapter 8: Series</h2>
<ul>
<li><strong>Nth-Term Test for Divergence:</strong> Your first check! If \( \lim_{n\to\infty} a_n \neq 0 \), the series DIVERGES. If the limit is 0, the test is inconclusive.</li>
<li><strong>Geometric Series:</strong> \( \sum_{n=0}^{\infty} ar^n \)
<ul>
<li>Converges if <strong>\(|r| < 1\)</strong>.</li>
<li>Sum Formula: If it converges, the sum is \( S = \frac{a}{1-r} \), where \(a\) is the first term.</li>
</ul>
</li>
<li><strong>Ratio Test:</strong> The workhorse for convergence. Compute \( L = \lim_{n\to\infty} \left| \frac{a_{n+1}}{a_n} \right| \).
<ul>
<li>If \(L < 1\), the series is <strong>absolutely convergent</strong>.</li>
<li>If \(L > 1\), the series is <strong>divergent</strong>.</li>
<li>If \(L = 1\), the test is <strong>inconclusive</strong>.</li>
</ul>
</li>
<li><strong>Taylor Series at \(x=a\):</strong> Guaranteed question on a non-zero center!
\[ f(x) = \sum_{n=0}^{\infty} \frac{f^{(n)}(a)}{n!} (x-a)^n \]
</li>
</ul>
<!-- Maclaurin Series -->
<h2>Must-Memorize Maclaurin Series (\(a=0\))</h2>
<ul>
<li>\( \frac{1}{1-x} = \sum_{n=0}^{\infty} x^n = 1 + x + x^2 + x^3 + \dots \) for \(|x|<1\)</li>
<li>\( e^x = \sum_{n=0}^{\infty} \frac{x^n}{n!} = 1 + \frac{x}{1!} + \frac{x^2}{2!} + \frac{x^3}{3!} + \dots \) for all \(x\)</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!} - \dots \) for all \(x\)</li>
<li>\( \cos(x) = \sum_{n=0}^{\infty} \frac{(-1)^n x^{2n}}{(2n)!} = 1 - \frac{x^2}{2!} + \frac{x^4}{4!} - \dots \) for all \(x\)</li>
<li>\( \ln(1+x) = \sum_{n=0}^{\infty} \frac{(-1)^n x^{n+1}}{n+1} = x - \frac{x^2}{2} + \frac{x^3}{3} - \dots \) for \(|x|<1\)</li>
<li>\( \arctan(x) = \sum_{n=0}^{\infty} \frac{(-1)^n x^{2n+1}}{2n+1} = x - \frac{x^3}{3} + \frac{x^5}{5} - \dots \) for \(|x|\le1\)</li>
</ul>
<!-- Old Material -->
<h2>Old Material Review (Ch 5-7) - Just the Setup!</h2>
<ul>
<li><strong>The ONE Trig Identity:</strong> \( \sin^2(x) + \cos^2(x) = 1 \). (Divide by \(\cos^2x\) to get \( \tan^2(x) + 1 = \sec^2(x) \)).</li>
<li><strong>Area Between Curves:</strong> Sketch it first! \( A = \int_{a}^{b} (y_{top} - y_{bottom}) \, dx \) or \( A = \int_{c}^{d} (x_{right} - x_{left}) \, dy \).</li>
<li><strong>Volume - Washer Method:</strong> Slice is PERPENDICULAR to axis of rotation.
\[ V = \pi \int_{a}^{b} (R_{outer}^2 - r_{inner}^2) \, dx \]
</li>
<li><strong>Volume - Shell Method:</strong> Slice is PARALLEL to axis of rotation.
\[ V = 2\pi \int_{a}^{b} (\text{radius})(\text{height}) \, dx \]
</li>
</ul>
</div>
<script>
// This script waits for the entire page to load before trying to render the math.
// This prevents the "No element provided to render" error.
document.addEventListener("DOMContentLoaded", function() {
renderMathInElement(document.body, {
// KaTeX options
delimiters: [
{left: "$$", right: "$$", display: true},
{left: "\\[", right: "\\]", display: true},
{left: "$", right: "$", display: false},
{left: "\\(", right: "\\)", display: false}
]
});
});
</script>
</body>
</html>