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.

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:

  1. Pick a part of the integrand to set as u
  2. Find du by differentiating
  3. Substitute everything in terms of u
  4. Integrate with respect to u
  5. 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:

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²).

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:

  1. Factor the denominator
  2. Set up partial fraction decomposition
  3. Solve for unknown constants
  4. 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:

  1. Can I integrate directly? Check if it's a basic form. If yes, do it and move on.
  2. Is substitution viable? Look for function-derivative pairs. This works about 60% of the time.
  3. Is it a product? If substitution fails and you have multiplication of different function types, try integration by parts.
  4. Are there square roots with quadratics? Trigonometric substitution.
  5. 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

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:

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:

Build the foundation first. These techniques are the toolkit. Everything else is just applying them to different problems.