Partial Fraction Decomposition
Partial fraction decomposition (PFD) is an essential algebraic technique for integrating rational functions (ratios of polynomials) where the degree of the numerator is less than the degree of the denominator. If the numerator degree is equal to or higher, polynomial long division must be performed first to obtain a proper rational function plus a polynomial.
The core idea is to decompose a complex rational expression into a sum of simpler fractions whose denominators correspond to the factors of the original denominator. These simpler fractions are then much easier to integrate.
Steps for Decomposition:
- Factor the Denominator: Completely factor the denominator into linear factors (ax+b) and irreducible quadratic factors (ax2+bx+c).
- Set Up the Decomposition: Write the original fraction as a sum of partial fractions. Each factor in the denominator dictates the form of the terms:
- Distinct Linear Factor (ax+b): Contributes a term ax+bA.
- Repeated Linear Factor (ax+b)k: Contributes terms ax+bA1+(ax+b)2A2+⋯+(ax+b)kAk.
- Distinct Irreducible Quadratic Factor (ax2+bx+c): Contributes a term ax2+bx+cAx+B.
- Repeated Irreducible Quadratic Factor (ax2+bx+c)k: Contributes terms ax2+bx+cA1x+B1+(ax2+bx+c)2A2x+B2+⋯+(ax2+bx+c)kAkx+Bk.
- Solve for Constants: Multiply both sides of the equation by the original denominator. Expand the right-hand side and collect like terms. Equate the coefficients of corresponding powers of x on both sides to form a system of linear equations. Solve this system for the unknown constants A, B, A1, B1, etc.
Example: Decompose (x−1)(x+2)3x+5.
- Factors are distinct linear: (x−1), (x+2).
- Set up: (x−1)(x+2)3x+5=x−1A+x+2B.
- Multiply both sides by (x−1)(x+2):
3x+5=A(x+2)+B(x−1)
- Solve for A and B:
- Method 1 (Substitution): Choose values for x that eliminate one constant.
- Let x=1: 3(1)+5=A(1+2)+B(0)⟹8=3A⟹A=8/3.
- Let x=−2: 3(−2)+5=A(0)+B(−2−1)⟹−1=−3B⟹B=1/3.
- Method 2 (Equating Coefficients): Expand the right side: Ax+2A+Bx−B=(A+B)x+(2A−B). Set equal to left side:
A+B=3(coefficients of x)
2A−B=5(constant terms)
Solving this system also gives A=8/3, B=1/3.
- Result: (x−1)(x+2)3x+5=x−18/3+x+21/3=3(x−1)8+3(x+2)1.
Integration: After decomposition, integrate each partial fraction term:
∫(x−1)(x+2)3x+5dx=∫3(x−1)8dx+∫3(x+2)1dx=38ln∣x−1∣+31ln∣x+2∣+C
Key Exam Tips:
- Check Degree: Always ensure the numerator degree is less than the denominator degree before decomposing.
- Irreducible Quadratics: Remember numerators for quadratic factors are linear (Ax+B), not constants.
- Repeated Factors: Include terms for every power up to the multiplicity.
- Solving System: Substitution (using roots) is often fastest for linear factors. Equating coefficients is more general and necessary for quadratics/repeated factors. Be meticulous with algebra.
- Integration: After PFD, integrals typically become ∫ax+bAdx=aAln∣ax+b∣ or ∫ax2+bx+cAx+Bdx (often requiring completing the square and substitution).