Show description
MAT 266: Calculus for Engineers II - Study Guide
MAT 266: Calculus for Engineers II - Study Guide
MAT 266: Calculus for Engineers II
A comprehensive outline of key concepts, formulas, and applications.
I. Methods of Integration
Substitution Method (u-Substitution)
Used to reverse the chain rule. Identify an "inner" function $g(x)$ whose derivative $g'(x)$ is also present.
Let $u = g(x)$, then $du = g'(x)dx$.
$$ \int f(g(x))g'(x)dx = \int f(u)du $$
Integration by Parts
Used to reverse the product rule. A common mnemonic to choose $u$ is LIATE (Logarithmic, Inverse Trig, Algebraic, Trigonometric, Exponential).
$$ \int u \, dv = uv - \int v \, du $$
Trigonometric Substitution
Used for integrals containing specific forms of square roots.
For $\sqrt{a^2 - x^2}$, let $x = a\sin\theta$, then $dx = a\cos\theta d\theta$. Identity: $1 - \sin^2\theta = \cos^2\theta$.
For $\sqrt{a^2 + x^2}$, let $x = a\tan\theta$, then $dx = a\sec^2\theta d\theta$. Identity: $1 + \tan^2\theta = \sec^2\theta$.
For $\sqrt{x^2 - a^2}$, let $x = a\sec\theta$, then $dx = a\sec\theta\tan\theta d\theta$. Identity: $\sec^2\theta - 1 = \tan^2\theta$.
Integration by Partial Fractions
Used to integrate rational functions $\frac{P(x)}{Q(x)}$ by decomposing them into simpler, integrable fractions based on the factors of the denominator $Q(x)$.
II. Numerical & Improper Integration
Numerical Integration (Approximation)
For a definite integral $\int_a^b f(x)dx$ with $\Delta x = \frac{b-a}{n}$.
Midpoint Rule: $$ M_n = \Delta x [f(\bar{x}_1) + f(\bar{x}_2) + \dots + f(\bar{x}_n)] $$
Trapezoidal Rule: $$ T_n = \frac{\Delta x}{2} [f(x_0) + 2f(x_1) + \dots + 2f(x_{n-1}) + f(x_n)] $$
Simpson's Rule (n must be even): $$ S_n = \frac{\Delta x}{3} [f(x_0) + 4f(x_1) + 2f(x_2) + \dots + 4f(x_{n-1}) + f(x_n)] $$
Improper Integrals
Integrals over an infinite interval or where the function has an infinite discontinuity.
Type 1 (Infinite Interval): $$ \int_a^\infty f(x)dx = \lim_{t \to \infty} \int_a^t f(x)dx $$
Type 2 (Discontinuity at b): $$ \int_a^b f(x)dx = \lim_{t \to b^-} \int_a^t f(x)dx $$
III.…
MAT 266: Calculus for Engineers II - Study Guide
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MAT 266: Calculus for Engineers II - Study Guide</title>
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
<style>
/* shadcn/ui inspired dark theme */
:root {
--background: 240 10% 3.9%;
--foreground: 0 0% 98%;
--card: 240 10% 3.9%;
--card-foreground: 0 0% 98%;
--popover: 240 10% 3.9%;
--popover-foreground: 0 0% 98%;
--primary: 0 0% 98%;
--primary-foreground: 240 5.9% 10%;
--secondary: 240 3.7% 15.9%;
--secondary-foreground: 0 0% 98%;
--muted: 240 3.7% 15.9%;
--muted-foreground: 240 5% 64.9%;
--accent: 240 3.7% 15.9%;
--accent-foreground: 0 0% 98%;
--destructive: 0 62.8% 30.6%;
--destructive-foreground: 0 0% 98%;
--border: 240 3.7% 15.9%;
--input: 240 3.7% 15.9%;
--ring: 240 4.9% 83.9%;
--radius: 0.5rem;
}
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
line-height: 1.7;
background-color: hsl(var(--background));
color: hsl(var(--foreground));
margin: 0 auto;
padding: 20px;
max-width: 900px;
}
header, footer {
text-align: center;
padding: 20px 0;
border-bottom: 1px solid hsl(var(--border));
}
h1 {
color: hsl(var(--foreground));
font-size: 2.8em;
font-weight: 700;
letter-spacing: -0.05em;
margin-bottom: 0.25em;
}
h2 {
color: hsl(var(--foreground));
font-size: 2em;
font-weight: 600;
border-bottom: 1px solid hsl(var(--border));
padding-bottom: 10px;
margin-top: 50px;
letter-spacing: -0.025em;
}
h3 {
color: hsl(var(--foreground));
font-size: 1.5em;
font-weight: 600;
margin-top: 30px;
}
p, li {
font-size: 1.1em;
color: hsl(var(--muted-foreground));
}
.concept-section {
background-color: hsl(var(--background));
padding: 25px;
margin-top: 25px;
border-radius: var(--radius);
border: 1px solid hsl(var(--border));
}
.formula {
display: block;
background-color: hsl(var(--secondary));
padding: 20px;
margin: 20px 0;
border-radius: var(--radius);
font-size: 1.2em;
overflow-x: auto;
border: 1px solid hsl(var(--border));
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
th, td {
border: 1px solid hsl(var(--border));
padding: 12px 15px;
text-align: left;
}
th {
background-color: hsl(var(--secondary));
color: hsl(var(--foreground));
font-weight: 600;
}
tr {
border-bottom: 1px solid hsl(var(--border));
}
tr:last-child {
border-bottom: 0;
}
td:first-child {
font-family: 'Courier New', Courier, monospace;
font-size: 1.3em;
text-align: center;
}
</style>
</head>
<body>
<header>
<h1>MAT 266: Calculus for Engineers II</h1>
<p>A comprehensive outline of key concepts, formulas, and applications.</p>
</header>
<main>
<h2>I. Methods of Integration</h2>
<div class="concept-section">
<h3>Substitution Method (u-Substitution)</h3>
<p>Used to reverse the chain rule. Identify an "inner" function $g(x)$ whose derivative $g'(x)$ is also present.</p>
<div class="formula">
Let $u = g(x)$, then $du = g'(x)dx$.
$$ \int f(g(x))g'(x)dx = \int f(u)du $$
</div>
<h3>Integration by Parts</h3>
<p>Used to reverse the product rule. A common mnemonic to choose $u$ is LIATE (Logarithmic, Inverse Trig, Algebraic, Trigonometric, Exponential).</p>
<div class="formula">
$$ \int u \, dv = uv - \int v \, du $$
</div>
<h3>Trigonometric Substitution</h3>
<p>Used for integrals containing specific forms of square roots.</p>
<ul>
<li>For $\sqrt{a^2 - x^2}$, let $x = a\sin\theta$, then $dx = a\cos\theta d\theta$. Identity: $1 - \sin^2\theta = \cos^2\theta$.</li>
<li>For $\sqrt{a^2 + x^2}$, let $x = a\tan\theta$, then $dx = a\sec^2\theta d\theta$. Identity: $1 + \tan^2\theta = \sec^2\theta$.</li>
<li>For $\sqrt{x^2 - a^2}$, let $x = a\sec\theta$, then $dx = a\sec\theta\tan\theta d\theta$. Identity: $\sec^2\theta - 1 = \tan^2\theta$.</li>
</ul>
<h3>Integration by Partial Fractions</h3>
<p>Used to integrate rational functions $\frac{P(x)}{Q(x)}$ by decomposing them into simpler, integrable fractions based on the factors of the denominator $Q(x)$.</p>
</div>
<h2>II. Numerical & Improper Integration</h2>
<div class="concept-section">
<h3>Numerical Integration (Approximation)</h3>
<p>For a definite integral $\int_a^b f(x)dx$ with $\Delta x = \frac{b-a}{n}$.</p>
<ul>
<li><b>Midpoint Rule:</b> $$ M_n = \Delta x [f(\bar{x}_1) + f(\bar{x}_2) + \dots + f(\bar{x}_n)] $$</li>
<li><b>Trapezoidal Rule:</b> $$ T_n = \frac{\Delta x}{2} [f(x_0) + 2f(x_1) + \dots + 2f(x_{n-1}) + f(x_n)] $$</li>
<li><b>Simpson's Rule (n must be even):</b> $$ S_n = \frac{\Delta x}{3} [f(x_0) + 4f(x_1) + 2f(x_2) + \dots + 4f(x_{n-1}) + f(x_n)] $$</li>
</ul>
<h3>Improper Integrals</h3>
<p>Integrals over an infinite interval or where the function has an infinite discontinuity.</p>
<ul>
<li><b>Type 1 (Infinite Interval):</b> $$ \int_a^\infty f(x)dx = \lim_{t \to \infty} \int_a^t f(x)dx $$</li>
<li><b>Type 2 (Discontinuity at b):</b> $$ \int_a^b f(x)dx = \lim_{t \to b^-} \int_a^t f(x)dx $$</li>
</ul>
</div>
<h2>III. Applications of Integration</h2>
<div class="concept-section">
<h3>Area Between Curves</h3>
<p>If $f(x) \ge g(x)$ on $[a, b]$:</p>
<div class="formula">
$$ A = \int_a^b [f(x) - g(x)]dx $$
</div>
<h3>Volumes of Solids of Revolution</h3>
<ul>
<li><b>Disk Method (Rotation about x-axis):</b> $$ V = \pi \int_a^b [R(x)]^2 dx $$</li>
<li><b>Washer Method (Rotation about x-axis):</b> $$ V = \pi \int_a^b ([R(x)]^2 - [r(x)]^2) dx $$</li>
<li><b>Cylindrical Shell Method (Rotation about y-axis):</b> $$ V = 2\pi \int_a^b x h(x) dx $$</li>
</ul>
<h3>Arc Length</h3>
<div class="formula">
$$ L = \int_a^b \sqrt{1 + [f'(x)]^2} dx $$
</div>
<h3>Work</h3>
<p>Work done by a variable force $F(x)$ from $x=a$ to $x=b$.</p>
<div class="formula">
$$ W = \int_a^b F(x) dx $$
</div>
<ul>
<li><b>Springs (Hooke's Law):</b> $F(x) = kx$. Work to stretch from $a$ to $b$ is $\int_a^b kx \, dx$.</li>
<li><b>Pumping Liquid:</b> $W = \int_a^b \rho g A(y) D(y) dy$, where $\rho$ is density, $g$ is gravity, $A(y)$ is the area of a slice, and $D(y)$ is the distance it's moved.</li>
</ul>
</div>
<h2>IV. Sequences and Series</h2>
<div class="concept-section">
<h3>Sequences</h3>
<p>A sequence $\{a_n\}$ converges to a limit $L$ if $\lim_{n \to \infty} a_n = L$. Otherwise, it diverges.</p>
<h3>Series</h3>
<p>An infinite series $\sum_{n=1}^\infty a_n$ converges if its sequence of partial sums converges.</p>
<ul>
<li><b>Geometric Series:</b> $\sum_{n=1}^\infty ar^{n-1}$ converges to $\frac{a}{1-r}$ if $|r| < 1$. It diverges if $|r| \ge 1$.</li>
<li><b>Test for Divergence:</b> If $\lim_{n \to \infty} a_n \neq 0$ or the limit does not exist, then the series $\sum a_n$ diverges.</li>
</ul>
</div>
<h2>V. Power, Taylor, and Maclaurin Series</h2>
<div class="concept-section">
<h3>Power Series</h3>
<p>A series of the form $\sum_{n=0}^\infty c_n (x-a)^n$. We find its <b>Radius of Convergence (R)</b> and <b>Interval of Convergence (I)</b>, often using the Ratio Test.</p>
<h3>Taylor and Maclaurin Series</h3>
<p>Representing a function as an infinite polynomial.</p>
<ul>
<li><b>Taylor Series centered at $a$:</b> $$ f(x) = \sum_{n=0}^\infty \frac{f^{(n)}(a)}{n!} (x-a)^n $$</li>
<li><b>Maclaurin Series (centered at $a=0$):</b> $$ f(x) = \sum_{n=0}^\infty \frac{f^{(n)}(0)}{n!} x^n $$</li>
</ul>
<p>You can differentiate and integrate known power series term-by-term to create new series.</p>
</div>
<h2>VI. Parametric & Polar Coordinates</h2>
<div class="concept-section">
<h3>Parametric Equations</h3>
<p>A curve is defined by $x=f(t), y=g(t)$.</p>
<ul>
<li><b>Tangent Line Slope:</b> $$ \frac{dy}{dx} = \frac{dy/dt}{dx/dt} $$</li>
<li><b>Arc Length:</b> $$ L = \int_\alpha^\beta \sqrt{\left(\frac{dx}{dt}\right)^2 + \left(\frac{dy}{dt}\right)^2} dt $$</li>
</ul>
<h3>Polar Coordinates</h3>
<p>Points are defined by $(r, \theta)$. Conversions: $x = r\cos\theta$, $y = r\sin\theta$, and $r^2 = x^2 + y^2$.</p>
<ul>
<li><b>Area enclosed by a polar curve $r=f(\theta)$ from $\theta=\alpha$ to $\theta=\beta$:</b>
<div class="formula">
$$ A = \frac{1}{2} \int_\alpha^\beta [r(\theta)]^2 d\theta $$
</div>
</li>
</ul>
</div>
<h2>Glossary of Mathematical Terms & Symbols</h2>
<div class="concept-section">
<table>
<thead>
<tr>
<th>Symbol</th>
<th>Name / Meaning</th>
<th>Summary & Context</th>
</tr>
</thead>
<tbody>
<tr><td>$\int$</td><td>Integral Sign</td><td>The fundamental symbol for integration, representing an infinite sum of infinitesimally small quantities.</td></tr>
<tr><td>$\int_a^b$</td><td>Definite Integral</td><td>Represents the net area under the curve of a function from point $a$ to point $b$.</td></tr>
<tr><td>$dx$</td><td>Differential</td><td>Represents an infinitesimally small change in the variable $x$. Indicates the variable of integration.</td></tr>
<tr><td>$f'(x)$, $\frac{dy}{dx}$</td><td>Derivative</td><td>Represents the instantaneous rate of change of a function. Crucial for arc length and parametric slope.</td></tr>
<tr><td>$\sum$</td><td>Sigma / Summation</td><td>Represents the sum of a sequence of terms. Used extensively in series and numerical integration.</td></tr>
<tr><td>$\lim_{x \to c}$</td><td>Limit</td><td>Describes the value that a function or sequence "approaches" as the input approaches some value. Essential for improper integrals and sequences/series.</td></tr>
<tr><td>$\infty$</td><td>Infinity</td><td>A concept representing a quantity without bound. Used in limits for improper integrals and convergence of sequences.</td></tr>
<tr><td>$\Delta x$</td><td>Delta x</td><td>Represents a finite change in $x$. In numerical integration, it's the width of each subinterval: $\frac{b-a}{n}$.</td></tr>
<tr><td>$\{a_n\}$</td><td>Sequence</td><td>An ordered list of numbers, e.g., $a_1, a_2, a_3, \dots$. We test sequences for convergence or divergence.</td></tr>
<tr><td>$S_n$</td><td>Partial Sum</td><td>The sum of the first $n$ terms of a series. The limit of $S_n$ as $n \to \infty$ determines the convergence of the series. Also used for Simpson's Rule approximation.</td></tr>
<tr><td>$n!$</td><td>Factorial</td><td>The product of all positive integers up to $n$. Key component of Taylor and Maclaurin series formulas.</td></tr>
<tr><td>$(r, \theta)$</td><td>Polar Coordinates</td><td>A way to define points in a plane using a distance from the origin ($r$) and an angle ($\theta$).</td></tr>
<tr><td>$(\alpha, \beta)$</td><td>Alpha, Beta</td><td>Often used as the start and end angles for integration in polar coordinates, or start and end time in parametric equations.</td></tr>
</tbody>
</table>
</div>
</main>
<footer>
<p>Generated on: <span id="date"></span>. Keep building, Lalo.</p>
<script>
document.getElementById('date').textContent = new Date().toLocaleDateString();
</script>
</footer>
</body>
</html>