Integration Methods- Essential Techniques for Calculus

What Integration Actually Is (And Why It Matters)

Integration is the reverse of differentiation. While derivatives give you rates of change, integrals give you accumulated quantities. Think area under a curve, total distance from velocity, or the original function before you took a derivative.

If differentiation breaks functions down, integration builds them back up. That's it. That's the whole concept.

The Basic Antiderivative

Before you learn any technique, you need the power rule for integration:

∫xⁿ dx = xⁿ⁺¹/(n+1) + C

This works for any exponent except n = -1, which gives you the natural logarithm instead:

∫x⁻¹ dx = ln|x| + C

You also need to memorize the standard integrals. No shortcuts here.

Commit these to memory or you'll struggle with every technique that follows.

U-Substitution: The Workhorse Method

U-substitution is integration's version of the chain rule. When you see a composite function, this is usually your first move.

How It Works

You substitute a part of the integrand with u, then convert the entire integral into u-terms. After integrating, you substitute back.

Example: ∫2x·cos(x²) dx

Let u = x², so du = 2x dx

The integral becomes ∫cos(u) du = sin(u) + C

Substitute back: sin(x²) + C

When to Use It

Most students overuse this. It doesn't work on everything. Know when to stop trying.

Integration by Parts: For Products

When u-substitution fails on products, you use integration by parts. It's the inverse of the product rule.

The formula: ∫u dv = uv - ∫v du

The LIATE Rule

Choosing u correctly matters. Use this priority order:

  1. Logarithmic functions (ln x)
  2. Inverse trig functions (arctan x)
  3. Algebraic functions (x², x³)
  4. Trigonometric functions (sin x, cos x)
  5. Exponential functions (eˣ)

Pick u from the leftmost category that appears in your integrand.

Example

∫x·eˣ dx

Both are candidates, but algebraic beats exponential. 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

Sometimes you need to apply parts twice. Sometimes you solve for the integral algebraically when it appears on both sides. Watch for patterns.

Partial Fractions: For Rational Functions

When you have a rational function (polynomial divided by polynomial), partial fractions break it into simpler pieces you can integrate.

Requirements

Types of Decomposition

Linear factors: For distinct linear factors, set up separate fractions with unknown constants.

Example: 1/(x² - 5x + 6) = 1/((x-2)(x-3)) = A/(x-2) + B/(x-3)

Solve for A and B: A(x-3) + B(x-2) = 1

Let x = 3: A(0) + B(1) = 1 → B = 1

Let x = 2: A(-1) + B(0) = 1 → A = -1

So: -1/(x-2) + 1/(x-3)

Repeated factors: Include terms for each power up to the repetition.

Quadratic factors: Linear numerator over irreducible quadratic.

Trigonometric Substitution

When you see square roots of quadratic expressions, trig substitution often works. Match the pattern to the substitution:

Pattern 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²θ

After substituting, integrate in terms of θ, then convert back using right triangles.

Example

∫dx/√(9 - x²)

Match √(a² - x²) with a = 3. Let x = 3 sin θ, so dx = 3 cos θ dθ

√(9 - 9sin²θ) = √(9cos²θ) = 3|cos θ|

For appropriate intervals, cos θ is positive: 3cos θ

Integral becomes: ∫(3cos θ dθ)/(3cos θ) = ∫dθ = θ + C

Convert back: θ = arcsin(x/3)

Answer: arcsin(x/3) + C

Numerical Integration Methods

Sometimes you can't find an antiderivative. That's fine. Use numerical methods.

Trapezoidal Rule

Approximate area under curve using trapezoids:

∫f(x)dx ≈ (Δx/2)[f(x₀) + 2f(x₁) + 2f(x₂) + ... + 2f(xₙ₋₁) + f(xₙ)]

More trapezoids = better accuracy.

Simpson's Rule

Uses parabolic arcs instead of straight lines. More accurate for smooth functions:

∫f(x)dx ≈ (Δx/3)[f(x₀) + 4f(x₁) + 2f(x₂) + 4f(x₃) + ... + 4f(xₙ₋₁) + f(xₙ)]

Requires an even number of intervals.

Which to Use?

Quick Reference: Which Method to Try

Integrand Type Try This First
Simple polynomial Power rule
Composite function U-substitution
Product of different function types Integration by parts
Rational function Partial fractions
Square root of quadratic Trig substitution
No elementary antiderivative Numerical method

Getting Started: A Practical Approach

When you face an integral, work through this checklist:

  1. Simplify first. Expand, combine fractions, rewrite using identities.
  2. Look for obvious substitutions. Is something and its derivative present?
  3. Categorize the structure. Product? Rational function? Root of polynomial?
  4. Apply the matching technique. If it doesn't work, try another.
  5. Check your answer. Differentiate your result. You should get the original integrand.

Most integrals you'll encounter follow predictable patterns. Practice recognizing them.

Common Mistakes to Avoid

The Bottom Line

Integration methods are tools. You learn what each does, then you match it to the problem in front of you. There's no magic here—just pattern recognition and practice.

Start with u-substitution and integration by parts. Those two handle most problems. Add partial fractions and trig substitution for harder integrals. Learn numerical methods for the cases where symbolic integration doesn't exist or isn't worth the effort.

Do enough problems and you'll stop thinking about which method to use. It becomes automatic.