No history yet

Integration Techniques

Beyond the Basics

You've mastered the fundamental rules of integration. Now, we'll explore techniques for tackling integrals that don't fit those simple patterns. These methods are like specialized tools. You won't use them for every problem, but when you need them, they are essential for getting the job done.

Integration by Parts

Integration by parts is the product rule for derivatives, but in reverse. It's your go-to method when you need to integrate a product of two functions, like xcos(x)x \cos(x) or x2exx^2 e^x. The core idea is to split the integral into two parts, which we call uu and dvdv. The goal is to choose these parts so the new integral you create is simpler than the one you started with.

udv=uvvdu\int u \, dv = uv - \int v \, du

So, how do you choose which part is uu? A helpful guideline is the acronym LIATE: Logarithmic, Inverse trigonometric, Algebraic, Trigonometric, Exponential. Choose your uu based on whichever function type appears first on this list. This preference usually leads to a simpler integral on the right side of the formula.

Let's try an example: xsin(x)dx\int x \sin(x) \, dx.

  1. Choose u and dv. Following LIATE, xx is algebraic and sin(x)\sin(x) is trigonometric. So we set u=xu = x and dv=sin(x)dxdv = \sin(x) \, dx.
  2. Find du and v. Differentiate uu to get du=dxdu = dx. Integrate dvdv to get v=cos(x)v = -\cos(x).
  3. Plug into the formula. Now we substitute these parts into udv=uvvdu\int u \, dv = uv - \int v \, du.
xsin(x)dx=x(cosx)(cosx)dx\int x \sin(x) \, dx = x(-\cos x) - \int (-\cos x) \, dx

Simplifying gives us xcos(x)+cos(x)dx-x \cos(x) + \int \cos(x) \, dx. The new integral, cos(x)dx\int \cos(x) \, dx, is much easier to solve. The final answer is xcos(x)+sin(x)+C-x \cos(x) + \sin(x) + C.

Trigonometric Integrals

These are integrals containing powers of trigonometric functions, like sin3(x)cos2(x)dx\int \sin^3(x) \cos^2(x) \, dx. The strategy depends on the specific functions and whether their powers are even or odd. The key is to use Pythagorean and half-angle identities to simplify the integrand into something you can solve, often with a simple u-substitution.

Integral TypeStrategy
sinm(x)cosn(x)dx\int \sin^m(x) \cos^n(x) \, dxIf m or n is odd, save one factor of the odd-powered function and use sin2(x)+cos2(x)=1\sin^2(x) + \cos^2(x) = 1 to convert the rest. If both are even, use the half-angle identities: sin2(x)=1cos(2x)2\sin^2(x) = \frac{1-\cos(2x)}{2} and cos2(x)=1+cos(2x)2\cos^2(x) = \frac{1+\cos(2x)}{2}.
tanm(x)secn(x)dx\int \tan^m(x) \sec^n(x) \, dxIf n is even, save a factor of sec2(x)\sec^2(x) and use sec2(x)=1+tan2(x)\sec^2(x) = 1 + \tan^2(x). If m is odd, save a factor of sec(x)tan(x)\sec(x)\tan(x) and use tan2(x)=sec2(x)1\tan^2(x) = \sec^2(x) - 1.

For example, let's solve sin3(x)dx\int \sin^3(x) \, dx. The power of sine is odd, so we save one factor of sin(x)\sin(x).

sin2(x)sin(x)dx=(1cos2x)sin(x)dx\int \sin^2(x) \sin(x) \, dx = \int (1 - \cos^2 x) \sin(x) \, dx

Now the integral is set up perfectly for a u-substitution. If we let u=cos(x)u = \cos(x), then du=sin(x)dxdu = -\sin(x) \, dx. Substituting these in gives (1u2)(du)\int (1 - u^2)(-du), which integrates to u+u33+C-u + \frac{u^3}{3} + C. Substituting back for xx gives us the final answer: cos(x)+cos3(x)3+C-\cos(x) + \frac{\cos^3(x)}{3} + C.

Trigonometric Substitution

When you see integrals containing expressions like a2x2\sqrt{a^2 - x^2}, a2+x2\sqrt{a^2 + x^2}, or x2a2\sqrt{x^2 - a^2}, simple u-substitution won't work. Trigonometric substitution is a clever method that uses trigonometric identities to eliminate the square root. The idea is to substitute xx with a trigonometric function that simplifies the expression inside the radical.

Let's work through an example: 1x24x2dx\int \frac{1}{x^2\sqrt{4-x^2}} \, dx. This contains the form a2x2\sqrt{a^2 - x^2} where a=2a=2. So, we make the substitution x=2sin(θ)x = 2\sin(\theta). This also means dx=2cos(θ)dθdx = 2\cos(\theta) \, d\theta.

1(2sinθ)24(2sinθ)2(2cosθdθ)=2cosθ4sin2θ44sin2θdθ=2cosθ4sin2θ4(1sin2θ)dθ=2cosθ4sin2θ(2cosθ)dθ=141sin2θdθ=14csc2θdθ\begin{aligned} \\ \int &\frac{1}{(2\sin\theta)^2 \sqrt{4-(2\sin\theta)^2}} (2\cos\theta \, d\theta) \\ &= \int \frac{2\cos\theta}{4\sin^2\theta \sqrt{4-4\sin^2\theta}} \, d\theta \\ &= \int \frac{2\cos\theta}{4\sin^2\theta \sqrt{4(1-\sin^2\theta)}} \, d\theta \\ &= \int \frac{2\cos\theta}{4\sin^2\theta (2\cos\theta)} \, d\theta \\ &= \frac{1}{4} \int \frac{1}{\sin^2\theta} \, d\theta = \frac{1}{4} \int \csc^2\theta \, d\theta \\ \end{aligned}

The integral of csc2(θ)\csc^2(\theta) is cot(θ)-\cot(\theta). So our result is 14cot(θ)+C-\frac{1}{4}\cot(\theta) + C. But we're not done, we need to convert back to xx. Looking at the reference triangle for this substitution, we see that cot(θ)=adjacentopposite=4x2x\cot(\theta) = \frac{\text{adjacent}}{\text{opposite}} = \frac{\sqrt{4-x^2}}{x}.

The final answer is 4x24x+C-\frac{\sqrt{4-x^2}}{4x} + C.

Partial Fraction Decomposition

This technique is for integrating rational functions, which are fractions where the numerator and denominator are both polynomials. The idea is to break down a complex rational function into a sum of simpler fractions that are easier to integrate. This is only possible if the degree of the numerator is less than the degree of the denominator. If it's not, you must use polynomial long division first.

The process involves factoring the denominator completely, writing a term for each factor with an unknown numerator (like A, B, C), and then solving for those unknown constants.

Consider the integral 5x3x22x3dx\int \frac{5x-3}{x^2-2x-3} \, dx. First, we factor the denominator: x22x3=(x3)(x+1)x^2-2x-3 = (x-3)(x+1). Now we can decompose the fraction.

5x3(x3)(x+1)=Ax3+Bx+1\frac{5x-3}{(x-3)(x+1)} = \frac{A}{x-3} + \frac{B}{x+1}

To solve for A and B, we multiply both sides by the original denominator, (x3)(x+1)(x-3)(x+1), to clear the fractions. This gives us 5x3=A(x+1)+B(x3)5x-3 = A(x+1) + B(x-3). We can solve for the constants by strategically plugging in values for xx. If we let x=3x=3, the BB term becomes zero, leaving 5(3)3=A(3+1)5(3)-3 = A(3+1), which simplifies to 12=4A12 = 4A, so A=3A=3. If we let x=1x=-1, the AA term becomes zero, leaving 5(1)3=B(13)5(-1)-3 = B(-1-3), which simplifies to 8=4B-8 = -4B, so B=2B=2.

Now we can rewrite our original integral as two much simpler ones.

(3x3+2x+1)dx=3lnx3+2lnx+1+C\int \left( \frac{3}{x-3} + \frac{2}{x+1} \right) dx = 3\ln|x-3| + 2\ln|x+1| + C

These four techniques, from integration by parts to partial fractions, greatly expand the range of integrals you can solve. Mastering them requires practice to recognize which method is best for a given problem.

Ready to test your knowledge?

Quiz Questions 1/5

Which integration technique is most suitable for solving the integral xe2xdx\int x e^{2x} \, dx?

Quiz Questions 2/5

When using integration by parts to evaluate x2ln(x)dx\int x^2 \ln(x) \, dx, what is the best choice for uu?

With these powerful techniques in your toolkit, you're now equipped to handle a much wider variety of integration challenges.