Integration Techniques- Methods for Solving Calculus Problems
What Integration Actually Is
Integration is the reverse of differentiation. If differentiation gives you the rate of change, integration gives you the accumulated total. That's it. No fancy metaphors needed.
Most calculus students struggle with integration not because it's hard, but because they don't have a toolkit. You can only solve problems when you know which tool to grab. This guide gives you that toolkit.
Basic Integration Rules You Must Know
Before touching any advanced technique, these 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
- Integral of 1/x: ∫(1/x) dx = ln|x| + C
- Integral of eˣ: ∫eˣ dx = eˣ + C
- Integral of sin/cos: ∫sin(x) dx = -cos(x) + C, ∫cos(x) dx = sin(x) + C
If these aren't instant for you, drill them until they are. Everything else builds on this foundation.
U-Substitution: Your First Line of Attack
U-substitution is the integration equivalent of the chain rule. When you see a composite function, try this:
- Identify a "inside" expression you could replace with u
- Calculate du (the derivative times dx)
- Substitute everything into the integral
- Integrate with respect to u
- Substitute x back in
Example
∫2x·cos(x²) dx
Let u = x², then du = 2x dx
The integral becomes: ∫cos(u) du = sin(u) + C = sin(x²) + C
That's the whole thing. Practice this until it's reflex.
Integration by Parts: When Substitution Fails
Use integration by parts when you have a product of two different types of functions (polynomial × trig, polynomial × exponential, etc.).
The formula: ∫u dv = uv - ∫v du
LIATE rule — pick u in this order:
- Logarithmic
- Inverse trig
- Algebraic (polynomials)
- Trigonometric
- Exponential
Example
∫x·eˣ dx
Pick u = x (algebraic), dv = eˣ dx (exponential)
Then du = dx, v = eˣ
∫x·eˣ dx = x·eˣ - ∫eˣ dx = x·eˣ - eˣ + C = eˣ(x - 1) + C
For tougher integrals, you might need to apply integration by parts twice, or use a tabular method.
Partial Fractions: Breaking Down Rational Functions
When you have a rational function (polynomial divided by polynomial), partial fractions break it into simpler pieces.
Case 1: Distinct linear factors
1/[(x-1)(x+2)] = A/(x-1) + B/(x+2)
Solve for A and B by substituting convenient x values or equating coefficients.
Case 2: Repeated linear factors
1/(x-1)² = A/(x-1) + B/(x-1)²
Include terms for each power up to the highest.
Case 3: Quadratic factors
When you can't factor the denominator further, use Ax + B over the quadratic factor.
1/(x²+1) = (Ax + B)/(x²+1)
Match coefficients to find A and B.
Trigonometric Integrals
Integrals with only trig functions follow patterns you can memorize.
Powers of sine and cosine
- If either power is odd, strip off one factor and convert the rest using sin²x + cos²x = 1
- If both powers are even, use half-angle identities: sin²x = (1-cos(2x))/2, cos²x = (1+cos(2x))/2
Powers of tangent and secant
- ∫tanⁿx dx: if n is odd, save one sec(x)tan(x) and convert rest to sec
- ∫secⁿx dx: if n is even, save sec²x and convert rest
Product of sin(mx) and sin(nx)
Use product-to-sum formulas to convert products into sums — those are easier to integrate.
Trigonometric Substitution: When You See Squares
Use trig sub when you see expressions like √(a² - x²), √(a² + x²), or √(x² - a²).
| Expression | Substitution | Identity |
|---|---|---|
| √(a² - x²) | x = a sin(θ) | 1 - sin²θ = cos²θ |
| √(a² + x²) | x = a tan(θ) | 1 + tan²θ = sec²θ |
| √(x² - a²) | x = a sec(θ) | sec²θ - 1 = tan²θ |
Example
∫dx/√(9 - x²)
Let x = 3 sin(θ), dx = 3 cos(θ) dθ
√(9 - x²) = √(9 - 9sin²θ) = 3cos(θ)
Integral becomes: ∫3cos(θ)/(3cos(θ)) dθ = ∫dθ = θ + C
Convert back: θ = arcsin(x/3)
Answer: arcsin(x/3) + C
Improper Integrals: When Limits Go Wrong
Improper integrals have infinite limits or vertical asymptotes. Evaluate them as limits.
Infinite limits
∫₁^∞ f(x) dx = lim(b→∞) ∫₁^b f(x) dx
If the limit exists and is finite, the integral converges. If it doesn't exist or goes to infinity, it diverges.
Discontinuities in the interval
Split the integral at the discontinuity and evaluate as limits from both sides.
How to Actually Solve Integration Problems
Follow this decision process:
- Is it basic? Apply power rule, trig rules, etc. immediately.
- Can you use u-sub? Look for composite functions. Try substituting u = inside expression.
- Is it a product? Integration by parts if u-sub doesn't work.
- Is it a fraction? Try partial fractions if the denominator factors.
- Do you see squares? Trigonometric substitution for expressions with √(a² - x²), etc.
- Are there trig functions only? Use trig integral identities.
If you're stuck after 2-3 minutes, try a different approach. Sometimes the "wrong" substitution leads to the solution.
Common Mistakes That Cost You Points
- Forgetting the +C (constant of integration)
- Not adjusting du when using u-substitution
- Choosing the wrong u in integration by parts (use LIATE)
- Forgetting to convert back to x after trig substitution
- Solving partial fractions algebraically wrong — always check your work
What to Practice
You don't learn integration by reading about it. You learn by doing problems until the patterns click.
Start with basic u-substitutions. Move to integration by parts. Then tackle partial fractions. Trigonometric substitution comes last because it's the most specific.
Work through 20-30 problems of each type. Use the table above to match problems to techniques. Check your answers. When you get stuck, identify where — that's where your gap is.