Integration Techniques- A Beginner's Guide
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.
You find the area under a curve. You calculate accumulated quantities. You solve differential equations. These are the real-world reasons you'd ever touch an integral.
Basic Rules You Need First
Before learning techniques, memorize these. They form the foundation everything else builds on.
- Power rule: ∫xⁿ dx = xⁿ⁺¹/(n+1) + C (works for n ≠ -1)
- Constant rule: ∫k dx = kx + C
- Sum rule: ∫(f + g) dx = ∫f dx + ∫g dx
- Constant multiple rule: ∫k·f(x) dx = k·∫f(x) dx
The +C is non-negotiable. You will lose points if you forget it. Every indefinite integral needs that constant of integration.
Core Integration Techniques
1. Direct Integration
Sometimes the function is already in a form you can integrate immediately. No tricks needed.
Example: ∫(3x² + 2x - 5) dx = x³ + x² - 5x + C
This is what you do when the problem is straightforward. Don't overthink it.
2. U-Substitution (Reverse Chain Rule)
This is the most frequently used technique. You substitute to simplify the integrand into something you can handle.
When to use it: You see a function and its derivative present (or close to it).
Steps:
- Pick a part of the integrand to set as u
- Find du by differentiating
- Substitute everything in terms of u
- Integrate with respect to u
- Substitute back to x
Example: ∫2x·cos(x²) dx
Let u = x², then du = 2x dx
The integral becomes ∫cos(u) du = sin(u) + C = sin(x²) + C
3. Integration by Parts
When substitution fails, this often works. It's based on the product rule for differentiation.
Formula: ∫u dv = uv - ∫v du
When to use it: You have a product of functions (polynomial × exponential, polynomial × trig, etc.)
LIATE helps you choose u correctly:
- Logarithmic
- Inverse trigonometric
- Algebraic (polynomials)
- Trigonometric
- Exponential
Pick u from earlier in the list, dv from later.
Example: ∫x·eˣ dx
Set u = x, dv = eˣ dx
Then du = dx, v = eˣ
Result: x·eˣ - ∫eˣ dx = x·eˣ - eˣ + C = eˣ(x - 1) + C
4. Trigonometric Substitution
Use this when you see expressions with √(a² - x²), √(a² + x²), or √(x² - a²).
- √(a² - x²) → x = a·sinθ
- √(a² + x²) → x = a·tanθ
- √(x² - a²) → x = a·secθ
Example: ∫dx/√(9 - x²)
Use x = 3·sinθ, dx = 3·cosθ dθ
Substitute: ∫3·cosθ dθ / √(9 - 9·sin²θ) = ∫3·cosθ dθ / (3·cosθ) = ∫dθ = θ + C
Back-substitute: arcsin(x/3) + C
5. Partial Fractions
Decompose rational functions into simpler fractions. This only works when the degree of the numerator is less than the degree of the denominator.
When to use it: Rational functions where substitution and parts won't help.
Steps:
- Factor the denominator
- Set up partial fraction decomposition
- Solve for unknown constants
- Integrate each term separately
Example: ∫dx/(x² - 5x + 6)
Factor: x² - 5x + 6 = (x-2)(x-3)
Decompose: 1/[(x-2)(x-3)] = A/(x-2) + B/(x-3)
Solve: A(x-3) + B(x-2) = 1 → A = -1, B = 1
Integral: ∫[-1/(x-2) + 1/(x-3)] dx = -ln|x-2| + ln|x-3| + C
Technique Comparison
| Technique | Best Used When | Key Sign |
|---|---|---|
| Direct | Simple polynomials, basic forms | No special pattern needed |
| U-Substitution | Composite functions, chain rule pattern | Function and its derivative present |
| Integration by Parts | Product of different function types | LIATE applicable, parts needed |
| Trig Substitution | Square roots with quadratic expressions | √(a² ± x²) or √(x² - a²) |
| Partial Fractions | Proper rational functions | Polynomial over polynomial, factorable |
Getting Started: A Practical Workflow
When you face an integral, run through this checklist:
- Can I integrate directly? Check if it's a basic form. If yes, do it and move on.
- Is substitution viable? Look for function-derivative pairs. This works about 60% of the time.
- Is it a product? If substitution fails and you have multiplication of different function types, try integration by parts.
- Are there square roots with quadratics? Trigonometric substitution.
- Is it a rational function? Partial fractions if the numerator's degree is lower.
Work through this order. You'll save yourself hours of wasted effort.
Common Mistakes to Avoid
- Forgetting +C on indefinite integrals
- Substituting back too early or too late
- Choosing the wrong u in integration by parts (use LIATE)
- Not checking if partial fraction decomposition applies (numerator must have lower degree)
- Skipping algebra steps and hoping for the best
Definite Integrals: One Extra Step
For definite integrals, you evaluate at the bounds after integrating. Two ways to handle this:
Method 1: Find the antiderivative, then plug in upper and lower limits and subtract.
Method 2: Substitute and change limits simultaneously. This avoids back-substitution.
Example: ∫₀² x² dx
Antiderivative: x³/3
Evaluate: [x³/3]₀² = (8/3) - (0) = 8/3
That's it. No magic. Just plug and subtract.
When to Use Technology
Know when to put the pencil down. Wolfram Alpha and Symbolab solve integrals instantly. They're useful for:
- Checking your work after you've attempted a problem
- Verifying complicated antiderivatives
- Saving time on repetitive practice problems
But if you can't solve integrals by hand, you'll fail exams. Technology is a verification tool, not a replacement for understanding.
What Comes Next
Once you've mastered these techniques, you're ready for:
- Improper integrals
- Integration using tables
- Solving differential equations via integration
- Applications: area, volume, center of mass, probability
Build the foundation first. These techniques are the toolkit. Everything else is just applying them to different problems.