Midterm 1 Review: Integration Techniques and Applications π
Welcome, students! In this lesson, you will review the core ideas that usually appear on a Calculus 2 Midterm 1. The main focus is integration techniques and their applications, which means learning how to choose the right method to evaluate an integral and how to use integrals to solve real-world problems. By the end of this lesson, you should be able to explain the key terminology, apply the major methods, connect the topics to the bigger picture of Calculus 2, and use examples to support your understanding.
What Midterm 1 Usually Covers
Midterm 1 in Calculus 2 often checks whether you can work with the main tools of integration confidently. These tools include $u$-substitution, integration by parts, trigonometric integrals, trigonometric substitution, partial fractions, and applications such as area, volume, and average value. Some courses also include improper integrals if they are taught before the exam. The exact set of topics depends on your class, but the central goal is the same: turn a complicated integral into one you can actually evaluate.
A big idea in this unit is that integration is the reverse process of differentiation, but it is not always a simple undo button. Many integrals require strategy. For example, the integral $\int x\cos(x^2)\,dx$ is not easy to evaluate directly, but the substitution $u=x^2$ makes it manageable. This kind of thinking is what Midterm 1 is designed to test π§
Another important idea is interpretation. An integral is not just a symbol to compute. It can represent total change, accumulated area, mass, distance, or average value depending on the context. That makes integration one of the most useful ideas in calculus.
Core Integration Techniques
$u$-Substitution
$u$-substitution is used when an integral contains a function and its derivative, or something very close to that pattern. The goal is to replace a complicated inside expression with a new variable $u$.
For example, consider
$$\int x\cos(x^2)\,dx.$$
Let $u=x^2$. Then $du=2x\,dx$, so $x\,dx=\tfrac{1}{2}du$. The integral becomes
$$\frac{1}{2}\int \cos(u)\,du=\frac{1}{2}\sin(u)+C=\frac{1}{2}\sin(x^2)+C.$$
A good sign that $u$-substitution may work is the presence of a repeated inner expression such as $x^2$, $3x+1$, or $\sin(x)$. students, always check whether part of the integrand becomes its own derivative after a simple rewrite.
Integration by Parts
Integration by parts is based on the product rule for derivatives. The formula is
$$\int u\,dv=uv-\int v\,du.$$
This method is useful when the integrand is a product of two different types of functions, such as a polynomial times an exponential, a polynomial times a trig function, or a logarithm with another function.
Example:
$$\int x e^x\,dx.$$
Choose $u=x$, so $du=dx$, and choose $dv=e^x\,dx$, so $v=e^x$. Then
$$\int x e^x\,dx=xe^x-\int e^x\,dx=xe^x-e^x+C.$$
Integration by parts often appears with functions like $\ln(x)$ and inverse trig functions too. For instance, $\int \ln(x)\,dx$ is usually done by writing it as $\int \ln(x)\cdot 1\,dx$ and using parts.
Trigonometric Integrals
Trigonometric integrals often involve powers of $\sin(x)$, $\cos(x)$, $\tan(x)$, or $\sec(x)$. The strategy depends on whether the powers are odd or even.
For example, if you see
$$\int \sin^3(x)\cos^2(x)\,dx,$$
you might save one factor of $\sin(x)$ and convert the remaining $\sin^2(x)$ using $\sin^2(x)=1-\cos^2(x)$. Then a substitution like $u=\cos(x)$ can finish the problem.
A common identity used in this topic is
$$\sin^2(x)+\cos^2(x)=1.$$
Other helpful identities include
$$1+\tan^2(x)=\sec^2(x)$$
and
$$1+\cot^2(x)=\csc^2(x).$$
These identities help rewrite integrals into forms that are easier to evaluate.
Trigonometric Substitution
Trigonometric substitution is useful when an integral contains expressions like $\sqrt{a^2-x^2}$, $\sqrt{a^2+x^2}$, or $\sqrt{x^2-a^2}$. The idea is to use a trig identity to simplify the radical.
Common choices are:
- $x=a\sin(\theta)$ for $\sqrt{a^2-x^2}$
- $x=a\tan(\theta)$ for $\sqrt{a^2+x^2}$
- $x=a\sec(\theta)$ for $\sqrt{x^2-a^2}$
Example:
$$\int \frac{dx}{\sqrt{9-x^2}}.$$
Use $x=3\sin(\theta)$, so $dx=3\cos(\theta)\,d\theta$. Then
$$\sqrt{9-x^2}=\sqrt{9-9\sin^2(\theta)}=3\cos(\theta).$$
The integral becomes
$$\int \frac{3\cos(\theta)\,d\theta}{3\cos(\theta)}=\int d\theta=\theta+C.$$
Since $x=3\sin(\theta)$, we get $\theta=\arcsin\left(\frac{x}{3}\right)$. So the answer is
$$\arcsin\left(\frac{x}{3}\right)+C.$$
Partial Fractions
Partial fractions are used for rational functions, which are ratios of polynomials. If the degree of the numerator is less than the degree of the denominator, you may be able to split the fraction into simpler pieces.
Example:
$$\int \frac{1}{x^2-1}\,dx.$$
First factor the denominator:
$$x^2-1=(x-1)(x+1).$$
Then write
$$\frac{1}{x^2-1}=\frac{A}{x-1}+\frac{B}{x+1}.$$
Solving for $A$ and $B$ gives
$$\frac{1}{x^2-1}=\frac{1}{2}\cdot\frac{1}{x-1}-\frac{1}{2}\cdot\frac{1}{x+1}.$$
So
$$\int \frac{1}{x^2-1}\,dx=\frac{1}{2}\ln|x-1|-\frac{1}{2}\ln|x+1|+C.$$
This method can also involve repeated linear factors or irreducible quadratic factors, so careful algebra matters.
Applications of Integration
Integration becomes especially meaningful when you use it to solve applied problems. On Midterm 1, you may need to connect the formula to a situation and not just compute a number.
Area Between Curves
If one function is above another on an interval, the area between them is
$$\int_a^b \big(f(x)-g(x)\big)\,dx,$$
where $f(x)$ is the top curve and $g(x)$ is the bottom curve.
For example, if $f(x)=x$ and $g(x)=x^2$ on $[0,1]$, then
$$\int_0^1 (x-x^2)\,dx=\left[\frac{x^2}{2}-\frac{x^3}{3}\right]_0^1=\frac{1}{2}-\frac{1}{3}=\frac{1}{6}.$$
A key skill is identifying which curve is on top. A graph or a quick test point can help.
Volume by Slicing or Disks/Washers
Volume problems often use the idea of adding up many thin slices. If a region is revolved around an axis, the volume may be found with the disk or washer method.
The basic disk formula is
$$V=\pi\int_a^b [R(x)]^2\,dx,$$
where $R(x)$ is the radius of each circular slice.
If there is a hole, the washer formula is
$$V=\pi\int_a^b \big([R(x)]^2-[r(x)]^2\big)\,dx,$$
where $R(x)$ is the outer radius and $r(x)$ is the inner radius.
These formulas are common because they connect geometry with accumulation. Imagine stacking thin coins to build a solid shape π‘
Average Value of a Function
The average value of $f(x)$ on $[a,b]$ is
$$f_{\text{avg}}=\frac{1}{b-a}\int_a^b f(x)\,dx.$$
This is useful when you want the βtypicalβ value of a quantity over time or over a region. For example, if $f(t)$ is temperature during the day, then the average value tells you the average temperature over that time interval.
Improper Integrals
If your class includes them on Midterm 1, improper integrals arise when an interval is infinite or the integrand becomes unbounded. They are evaluated using limits.
For example,
$$\int_1^\infty \frac{1}{x^2}\,dx=\lim_{b\to\infty}\int_1^b x^{-2}\,dx.$$
Compute:
$$\lim_{b\to\infty}\left[-\frac{1}{x}\right]_1^b=\lim_{b\to\infty}\left(1-\frac{1}{b}\right)=1.$$
This integral converges. In contrast, some improper integrals diverge, meaning they do not approach a finite value.
How to Study for Midterm 1
students, one of the most effective ways to prepare is to practice choosing the method before calculating. Many mistakes happen not because the algebra is impossible, but because the wrong technique was chosen. Ask yourself:
- Is there an inner function and its derivative? Try $u$-substitution.
- Is it a product of unlike functions? Try integration by parts.
- Is it a rational function? Try partial fractions.
- Does it contain square roots of quadratic expressions? Consider trig substitution.
- Is it an application problem? Identify the meaning of the integral first.
It also helps to check answers by differentiating when possible. If you claim that
$$\int x e^x\,dx=xe^x-e^x+C,$$
then differentiate $xe^x-e^x$ to see whether you get $xe^x$ back. This habit catches many errors quickly.
Conclusion
Midterm 1 in Calculus 2 brings together the main integration techniques and their applications. The big challenge is not just computing integrals, but recognizing which method fits each problem and understanding what the integral means. Whether you are simplifying with $u$-substitution, using integration by parts, splitting rational functions, or finding area and volume, the same idea is at work: integration measures accumulation. If you can explain the method, show the steps clearly, and interpret the result, you are building the foundation for the rest of Calculus 2 β
Study Notes
- $u$-substitution is best when an integrand contains a function and a close match to its derivative.
- Integration by parts uses $\int u\,dv=uv-\int v\,du$ and works well for products like $x e^x$ or $\ln(x)$.
- Trigonometric integrals often rely on identities such as $\sin^2(x)+\cos^2(x)=1$ and $1+\tan^2(x)=\sec^2(x)$.
- Trigonometric substitution helps with radicals like $\sqrt{a^2-x^2}$, $\sqrt{a^2+x^2}$, and $\sqrt{x^2-a^2}$.
- Partial fractions break rational functions into simpler pieces before integrating.
- Area between curves uses $\int_a^b (f(x)-g(x))\,dx$ when $f(x)$ is above $g(x)$.
- Volume by disks or washers uses formulas with squared radii inside an integral.
- Average value is $\frac{1}{b-a}\int_a^b f(x)\,dx$.
- Improper integrals are evaluated with limits when an interval is infinite or the function is unbounded.
- On Midterm 1, always identify the method first, then compute carefully, and check work when possible.
