Integration by Parts is the counterpart to the Product Rule for differentiation. It's used when the integrand is a product of two functions that don't play nicely with substitution. The formula transforms one integral into another that (hopefully) is easier to evaluate.

🎯 In this section you will learn

📌 The Formula

$$ \int u \, dv = uv - \int v \, du $$
Let $u$ and $dv$ be parts of the integrand. Then $du$ and $v$ are derived from them.
💡 How to Choose $u$ and $dv$ (LIATE Rule)

Choose $u$ in this order: Logarithmic, Inverse trigonometric, Algebraic (polynomial), Trigonometric, Exponential.
The function that comes first in LIATE becomes $u$; the rest becomes $dv$.

Example 1Integration by Parts: $x e^x$

Find $\displaystyle \int x e^x \, dx$.

Choose $u$ and $dv$
$u = x$ (algebraic), $dv = e^x dx$ (exponential)
Find $du$ and $v$
$du = dx$, $v = \int e^x dx = e^x$
Apply formula
$\int x e^x dx = x e^x - \int e^x dx = x e^x - e^x + C = e^x(x - 1) + C$
Example 2Integration by Parts: $x \ln x$

Find $\displaystyle \int x \ln x \, dx$.

Choose $u$ and $dv$
$u = \ln x$ (logarithmic), $dv = x dx$ (algebraic)
Find $du$ and $v$
$du = \frac{1}{x} dx$, $v = \frac{x^2}{2}$
Apply formula
$\int x \ln x dx = \frac{x^2}{2} \ln x - \int \frac{x^2}{2} \cdot \frac{1}{x} dx = \frac{x^2}{2} \ln x - \frac{1}{2} \int x dx = \frac{x^2}{2} \ln x - \frac{x^2}{4} + C$
Example 3Integration by Parts: $x \cos x$

Find $\displaystyle \int x \cos x \, dx$.

📌 Repeated Integration by Parts (Tabular Method)

Sometimes you need to apply integration by parts more than once. The tabular method is a systematic way to handle repeated integration by parts.

Example 4Repeated Integration by Parts

Find $\displaystyle \int x^2 e^x \, dx$.

First application
$u = x^2$, $dv = e^x dx$ → $du = 2x dx$, $v = e^x$
$\int x^2 e^x dx = x^2 e^x - \int 2x e^x dx$
Second application
$\int 2x e^x dx = 2(x e^x - e^x) + C = 2x e^x - 2e^x + C$
Combine
$\int x^2 e^x dx = x^2 e^x - 2x e^x + 2e^x + C = e^x(x^2 - 2x + 2) + C$

📌 Integration by Parts for Definite Integrals

$$ \int_a^b u \, dv = [uv]_a^b - \int_a^b v \, du $$
Example 5Definite Integral by Parts

Find $\displaystyle \int_0^1 x e^x \, dx$.

⚠️ Common Mistakes
🔍 Key Takeaways
← Back to Module Page