Partial Fraction Integration- Calculus Technique
What Partial Fraction Decomposition Actually Is
Partial fraction integration is a technique for breaking down complicated rational functions into simpler fractions that you can actually integrate. Instead of staring at something like (3x+5)/(x²-4) and feeling lost, you rewrite it as a sum of fractions with denominators that are easier to handle.
This method works when you have a polynomial divided by a polynomial—specifically when the degree of the numerator is less than the degree of the denominator
. If that's not the case, you do polynomial long division first, then apply partial fractions to the remainder.When You Should Use This Technique
You'll need partial fractions when integrating rational functions that don't have obvious antiderivatives. Things like:
- Rational functions with irreducible quadratic denominators
- Products of linear factors raised to powers
- Improper rational functions
Most calculus textbooks throw this at you after the integration unit. It's a necessary evil for handling integrals that look ugly otherwise.
The Four Cases You Need to Know
Partial fraction decomposition changes based on what your denominator looks like. Here's the breakdown:
Case 1: Distinct Linear Factors
Your denominator factors into linear terms with no repeats. Example: (x+1)/(x-1)(x+3)
You set up fractions with unknown numerators over each factor:
(x+1)/(x-1)(x+3) = A/(x-1) + B/(x+3)
Case 2: Repeated Linear Factors
Your denominator has repeated linear factors like (x-2)³. You need a fraction for each power:
A/(x-2) + B/(x-2)² + C/(x-2)³
Case 3: Irreducible Quadratic Factors
When you can't factor the quadratic, the numerator stays linear: Ax + B over the quadratic.
(x²+1)/(x)(x²+4) = A/x + (Bx+C)/(x²+4)
Case 4: Mixed Case
Your denominator has a bit of everything. You handle each piece according to its type.
Quick Comparison Table
| Denominator Type | Setup Pattern | Example |
|---|---|---|
| Distinct linear factors | A/(factor) + B/(factor) | 1/[(x)(x+1)] |
| Repeated linear factors | A/(factor) + B/(factor)² + ... | 1/(x+1)³ |
| Irreducible quadratic | Ax+B over quadratic | 1/(x²+1) |
| Mixed | Combine patterns above | x²/[(x)(x²+1)(x-1)²] |
How To Actually Do It
Step 1: Check Degree
If the numerator's degree is greater than or equal to the denominator's degree, do polynomial long division first. Only proceed when numerator degree < denominator degree.
Step 2: Factor the Denominator
Break down the denominator completely. Find all linear and quadratic factors.
Step 3: Set Up the Decomposition
Write the decomposition based on the factors you found. Use variables A, B, C, etc. for unknown numerators.
Step 4: Multiply Both Sides by the Common Denominator
This eliminates all fractions. You get a polynomial equation.
Step 5: Solve for the Constants
You can use two methods:
- Equating coefficients: Expand everything and match coefficients of like terms
- Substitution: Plug in convenient x values to solve directly
Both work. Substitution is usually faster for simple cases. Coefficient matching is more reliable when things get messy.
Step 6: Integrate Each Piece
Now you have fractions you can integrate individually. Linear denominators give you ln|x|. Repeated linear factors give you negative reciprocals. Quadratics give you arctan or ln combinations.
Example Walkthrough
Let's integrate ∫(2x+1)/(x²+x)dx
Step 1: Denominator is x(x+1), so degree check passes.
Step 2: Factor: x(x+1)
Step 3: Set up: (2x+1)/[x(x+1)] = A/x + B/(x+1)
Step 4: Multiply: 2x+1 = A(x+1) + Bx
Step 5: Expand: 2x+1 = Ax + A + Bx = (A+B)x + A
Match coefficients: A+B = 2, A = 1. So A=1, B=1.
Step 6: Integral = ∫1/x dx + ∫1/(x+1) dx = ln|x| + ln|x+1| + C
Done.
Common Mistakes That Will Cost You Points
- Forgetting to do long division when the fraction is improper
- Not setting up enough terms for repeated factors
- Solving for constants incorrectly—always double-check your algebra
- Forgetting the +C
- Making arithmetic errors when expanding (2x+1) = A(x+1) + Bx
Why This Matters
Partial fraction decomposition isn't just busywork. It shows up in Laplace transforms, signal processing, and engineering courses. If you're going further in math, engineering, or physics, you'll see this again.
The technique is mechanical once you understand the pattern. Factor, set up, multiply, solve, integrate. That's it.