Integration Techniques- A Comprehensive Guide
What Integration Actually Is (And Why It Matters)
Integration is the mathematical opposite of differentiation. While derivatives give you rates of change, integrals give you accumulated quantities. Area under a curve. Total distance traveled. Accumulated cost. You name it.
If you've spent any time with calculus, you know that differentiation has clear rules you can follow mechanically. Integration doesn't play as nice. There is no universal formula. Every problem requires you to recognize which technique unlocks the solution.
This guide covers the techniques that actually work. No proof-heavy theory. Just the methods you need to solve integrals, when to use each one, and how to apply them.
The Fundamental Integration Rules You Must Know First
Before touching any advanced technique, these basics need to be automatic:
- Power rule: ∫xⁿ dx = (xⁿ⁺¹)/(n+1) + C, where n ≠ -1
- Constant multiple: ∫k·f(x) dx = k·∫f(x) dx
- Sum rule: ∫[f(x) + g(x)] dx = ∫f(x) dx + ∫g(x) dx
- Trigonometric basics: ∫sin(x) dx = -cos(x) + C, ∫cos(x) dx = sin(x) + C
If these aren't reflexes by now, go back and drill them. Everything else builds on this foundation.
u-Substitution: Your First Line of Attack
u-substitution is the integration equivalent of the chain rule. It works when you spot a function and its derivative somewhere in the problem.
When to Use It
Look for a composite function f(g(x)) multiplied by g'(x). If you see that pattern, u-substitution is your move.
How It Works
Set u = the inner function. Take du/dx, solve for du, then substitute everything. Integrate with respect to u. Replace u with the original expression.
Example
∫2x·cos(x²) dx
Let u = x². Then du = 2x dx.
The integral becomes ∫cos(u) du = sin(u) + C = sin(x²) + C
Common Mistakes
- Forgetting to substitute du for the dx term
- Not changing the limits when doing definite integrals
- Picking the wrong u (if your substitution doesn't simplify, try a different part)
Most introductory integrals that aren't trivial use this method. Master it before moving on.
Integration by Parts: When Products Won't Separate
Sometimes you have a product of functions that u-substitution can't crack. Integration by parts handles products where one factor becomes simpler when differentiated and the other becomes simpler when integrated.
The Formula
∫u dv = uv - ∫v du
Pick u and dv strategically. LIATE is a rough guide for choosing u:
- Logarithmic functions
- Inverse trigonometric functions
- Algebraic functions (polynomials)
- Trigonometric functions
- Exponential functions
This order tells you which function to differentiate (u) and which to integrate (dv).
Example
∫x·eˣ dx
Let u = x, dv = eˣ dx
Then du = dx, v = eˣ
∫x·eˣ dx = x·eˣ - ∫eˣ dx = x·eˣ - eˣ + C = eˣ(x - 1) + C
When It Gets Messy: Tabular Integration
For integrals like ∫x²·eˣ dx or ∫x³·sin(x) dx, repeated integration by parts becomes tedious. Tabular integration automates the process.
Create two columns: derivatives of the polynomial (stop at zero) and integrals of the exponential/trig function. Alternate signs and multiply diagonally.
Partial Fractions: Breaking Down Rational Functions
When you have a rational function where the numerator's degree is lower than the denominator's, partial fractions decompose it into simpler fractions.
Step 1: Factor the Denominator
This is where it gets complicated. You need to factor the denominator completely. For real roots, you get linear factors. For repeated roots, you need one term per power.
Step 2: Set Up the Decomposition
- Linear factor (x - a) → A/(x - a)
- Repeated linear factor (x - a)² → A/(x - a) + B/(x - a)²
- Irreducible quadratic (ax² + bx + c) → (Ax + B)/(ax² + bx + c)
Step 3: Solve for Coefficients
Multiply both sides by the common denominator. Either equate coefficients or plug in convenient x-values to solve for A, B, etc.
Example
∫(3x + 1)/(x² - x - 2) dx
Factor: x² - x - 2 = (x - 2)(x + 1)
Set up: (3x + 1)/[(x - 2)(x + 1)] = A/(x - 2) + B/(x + 1)
Solve: 3x + 1 = A(x + 1) + B(x - 2)
Plug x = 2: 7 = 3A → A = 7/3
Plug x = -1: -2 = -3B → B = 2/3
Integral = ∫[7/3(x - 2) + 2/3(x + 1)] dx
Trigonometric Integrals: When Trig Functions Multiply
Products and powers of trig functions require specific strategies based on what you're dealing with.
Powers of Sine and Cosine
One sine or cosine only: Use substitution. ∫sinⁿ(x) dx - if n is odd, strip one sin, convert rest to cos. If n is even, use half-angle identities.
Both sine and cosine: If either has an odd power, the strategy is the same. Strip one factor, convert the rest using sin²x + cos²x = 1.
Powers of Tangent and Secant
∫tanⁿ(x) dx - separate one tan(x)·sec(x) when n is odd. For even powers, convert tan²x = sec²x - 1.
∫secⁿ(x) dx - if n is odd, strip sec(x)·tan(x). If n is even, reduce using integration by parts or the recurrence formula.
The Identity Shortcut
Sometimes the best move is to convert everything to sine and cosine using identities. This doesn't always work, but when it does, it's faster than grinding through cases.
Trigonometric Substitution: Circles and Ellipses
When you see expressions like √(a² - x²), √(a² + x²), or √(x² - a²), trigonometric substitution matches the geometry. These expressions appear in integrals involving circles, ellipses, and hyperbolas.
The Three Cases
- √(a² - x²) → x = a·sin(θ)
- √(a² + x²) → x = a·tan(θ)
- √(x² - a²) → x = a·sec(θ)
After substituting, simplify using trig identities. Your integral becomes a trig integral, which you already know how to handle. Then convert back to x using inverse trig or right triangle geometry.
Example
∫dx/√(9 - x²)
Let x = 3·sin(θ), dx = 3·cos(θ) dθ
Substitute: ∫3·cos(θ) dθ / √(9 - 9·sin²θ) = ∫3·cos(θ) dθ / (3·cos(θ)) = ∫dθ = θ + C
Convert back: θ = arcsin(x/3)
Choosing the Right Technique: A Comparison
| Integral Type | First Try | Backup Method |
|---|---|---|
| Composite function with derivative present | u-Substitution | None |
| Product of unlike functions | Integration by Parts | Tabular (if polynomial involved) |
| Rational function (deg num < deg denom) | Partial Fractions | Long division first if needed |
| Powers of sin/cos/tan/sec | Strip and convert | Half-angle identities |
| √(a² - x²), √(a² + x²), √(x² - a²) | Trig Substitution | None |
Getting Started: A Practical Workflow
Here's how to actually approach an integral when you sit down to solve one:
- Simplify first. Expand products, combine fractions, rewrite negative exponents. The easier the form, the more patterns you'll see.
- Check for obvious patterns. Is there a derivative present? u-substitution. Is it a rational function? Partial fractions. Does it match a trig substitution form?
- Count the functions. One function: try substitution. Two functions multiplied: integration by parts. Product of many trig functions: strip and convert.
- Try something. Sitting and staring doesn't solve problems. Attempt a substitution. If it leads to a dead end, try another approach.
- Verify by differentiating. Take your answer, differentiate it. You should get back to the original integrand. This catches most mistakes.
What to Do When Nothing Works
Some integrals have no elementary antiderivative. e⁻ˣ², sin(x)/x, √(1 + x⁴) — these integrals exist, they have values, but you cannot express them with basic functions.
When you hit this wall:
- Check if the problem expects a numerical answer
- Use a series expansion to approximate
- Accept that some integrals require special functions (error function, sine integral, etc.)
Not every integral has a closed form. Knowing when to stop grinding and try a different approach — or admit the answer involves special functions — is part of being competent at integration.
The Bottom Line
Integration is pattern recognition. You learn techniques, you see problems, you match problems to techniques. That's it. The more problems you work through, the faster the pattern matching becomes.
Start with u-substitution and integration by parts. Get those solid. Then add partial fractions and trig integrals. Trig substitution comes last — it's useful but less common in everyday problems.
Practice. There's no substitute for it.