~3 min read • Updated Mar 19, 2026
Introduction
Partial fraction decomposition is a fundamental technique in calculus used to integrate rational functions. The idea is simple: rewrite a complicated fraction as a sum of simpler fractions whose integrals are easy to compute.
1. When to Use Partial Fractions
This method applies when the integrand is a rational function:
R(x) = P(x) / Q(x)
where P(x) and Q(x) are polynomials, and:
- The degree of the numerator is less than the degree of the denominator.
If the numerator’s degree is greater or equal, perform polynomial long division first.
2. Types of Partial Fraction Decomposition
Case 1: Distinct Linear Factors
If the denominator factors as:
(x − a)(x − b)(x − c)
Then the decomposition is:
A/(x − a) + B/(x − b) + C/(x − c)
Case 2: Repeated Linear Factors
If the denominator contains (x − a)ⁿ:
A/(x − a) + B/(x − a)² + ... + N/(x − a)ⁿ
Case 3: Irreducible Quadratic Factors
If the denominator contains a quadratic that cannot be factored:
(Ax + B) / (ax² + bx + c)
Case 4: Repeated Quadratic Factors
(Ax + B)/(quadratic) + (Cx + D)/(quadratic)² + ...
3. General Steps for Partial Fraction Decomposition
- Check degrees of numerator and denominator.
- If needed, perform polynomial long division.
- Factor the denominator completely.
- Write the appropriate partial fraction form.
- Solve for the unknown coefficients.
- Integrate each simple fraction.
4. Worked Examples
Example 1: ∫ 1 / (x² − 1) dx
Factor the denominator:
x² − 1 = (x − 1)(x + 1)
Decomposition:
1/(x² − 1) = A/(x − 1) + B/(x + 1)
Solving gives:
A = 1/2 , B = −1/2
Integral:
∫ 1/(x² − 1) dx = (1/2) ln|x − 1| − (1/2) ln|x + 1| + C
Example 2: ∫ (3x + 5) / (x + 1)² dx
Denominator:
(x + 1)²
Decomposition:
(3x + 5)/(x + 1)² = A/(x + 1) + B/(x + 1)²
Solving:
A = 3 , B = 2
Integral:
∫ 3/(x + 1) dx + ∫ 2/(x + 1)² dx
= 3 ln|x + 1| − 2/(x + 1) + C
Example 3: ∫ (2x + 7) / (x² + 4) dx
Denominator is irreducible:
(2x + 7)/(x² + 4)
Split:
2x/(x² + 4) + 7/(x² + 4)
Integrate:
∫ 2x/(x² + 4) dx = ln(x² + 4)
∫ 7/(x² + 4) dx = (7/2) arctan(x/2)
Final answer:
ln(x² + 4) + (7/2) arctan(x/2) + C
5. Key Tips
- If numerator degree ≥ denominator degree → divide first.
- Linear factors → constants in numerator.
- Quadratic factors → linear expressions in numerator.
- Repeated factors → include all powers.
- After decomposition, integration becomes straightforward.
Conclusion
Partial fraction decomposition is an essential tool for integrating rational functions. By breaking a complex fraction into simpler components, it transforms difficult integrals into manageable ones. With practice, recognizing the correct decomposition pattern becomes intuitive and efficient.
Written & researched by Dr. Shahin Siami