Quick Summary
- What: Partial fraction decomposition (also called partial fractions) splits a complex rational expression into simpler fractions.
- When: The fraction must be proper (numerator degree < denominator degree). If not, do polynomial long division first.
- How: Factor the denominator, write the template, solve for constants, then integrate each piece.
- Why it matters: Required for integrating rational functions in calculus, Laplace transforms, and differential equations.
In This Guide
What Is Partial Fraction Decomposition?
Partial fraction decomposition (also called partial fractions) is a technique for breaking a complicated rational expression \frac{P(x)}{Q(x)} into a sum of simpler fractions. For example, a fraction like \frac{5x-1}{(x+1)(x-2)} can be rewritten as \frac{A}{x+1} + \frac{B}{x-2}, where A and B are constants you solve for.
Students often find this topic challenging — not because any single step is difficult, but because the technique combines several skills at once: factoring polynomials, setting up algebraic equations, and solving systems of equations. If any of those prerequisites has gaps, partial fractions feels harder than it actually is.
This technique appears whenever you need to integrate a rational function in calculus. It also shows up in Laplace transforms, differential equations, and signal processing. Once you learn the method, you can apply it mechanically to any rational expression.
When Can You Use Partial Fractions?
Partial fractions only work on proper rational functions — fractions where the degree of the numerator is strictly less than the degree of the denominator: \deg(P) < \deg(Q).
If the fraction is improper (numerator degree is greater than or equal to denominator degree), you must first perform polynomial long division to extract the polynomial part. Here is a quick example:
Improper Fraction Example
Consider \frac{x^2 + 3}{x + 1}. Since the numerator has degree 2 and the denominator has degree 1, this is improper. Dividing:
The remainder fraction \frac{4}{x+1} is already a simple fraction — no further decomposition is needed. But for more complex remainders, you would apply partial fractions to the proper fraction that results from the division.
Key Rule
Always check: is the degree of the numerator less than the degree of the denominator? If not, long-divide first. Skipping this step is one of the most common mistakes.
Step-by-Step Method for Partial Fraction Decomposition
Follow these five steps for every partial fraction problem:
Make the fraction proper
Compare degrees. If the numerator degree is greater than or equal to the denominator degree, use polynomial long division. Apply partial fractions only to the remaining proper fraction.
Factor the denominator completely
Break the denominator into linear factors and irreducible quadratic factors. This determines the structure of the decomposition.
Write the decomposition template
Each factor in the denominator contributes one or more terms to the template (see the rules below). Write the sum of all terms with unknown constants.
Solve for the constants
Multiply both sides by the denominator to clear fractions, then find each constant by substituting strategic values of x or by comparing coefficients.
Write the final decomposition
Substitute the solved constants back into the template. If you are integrating, each resulting fraction can now be handled with standard integral formulas involving logarithms or arctangent.
Template Rules by Factor Type
Distinct linear factor (ax + b):
Contributes one term: \frac{A}{ax+b}
Repeated linear factor (ax + b)n:
Contributes n terms, one for each power: \frac{A_1}{(ax+b)} + \frac{A_2}{(ax+b)^2} + \cdots + \frac{A_n}{(ax+b)^n}
Irreducible quadratic factor (ax² + bx + c):
Contributes one term with a linear numerator: \frac{Ax+B}{ax^2+bx+c}
Example 1: Distinct Linear Factors
Decompose \frac{5x-1}{(x+1)(x-2)}.
Set up the template
The denominator has two distinct linear factors, so the template is:
Clear the denominator
Multiply both sides by (x+1)(x-2):
Solve by substitution
Set x = -1 to eliminate B:
Set x = 2 to eliminate A:
Final result
Example 2: Repeated Linear Factor
Decompose \frac{3x+5}{(x-1)^2}.
Because (x-1) is repeated (raised to the second power), the template must include one term for each power — not just the highest:
Clear the denominator
Multiply both sides by (x-1)^2:
Solve for B
Set x = 1:
Solve for A
Compare coefficients of x on both sides:
Final result
Example 3: Irreducible Quadratic Factor
Decompose \frac{2x^2+x+1}{(x+1)(x^2+1)}.
The factor x^2+1 cannot be factored further over the real numbers (its discriminant is negative). For an irreducible quadratic, the numerator in the template must be linear — Bx+C, not just a constant:
Clear the denominator
Multiply both sides by (x+1)(x^2+1):
Find A by substitution
Set x = -1 to make the second term vanish:
Find B and C by comparing coefficients
Substitute A = 1 and expand the right side:
Collect like terms:
Matching coefficients of x^2: 1+B = 2, so B = 1.
Matching coefficients of x: B+C = 1, so C = 0.
Final result
Using Partial Fractions to Integrate
The whole point of decomposition in calculus is to make integration of rational functions straightforward. Once you have simple fractions, each one maps to a standard integral formula.
Using the result from Example 1:
Each term is a standard logarithmic integral:
Irreducible quadratic terms produce arctangent integrals instead of logarithms. For example, integrating the result from Example 3 would give A = 1 term as a logarithm and the Bx+C term as a combination of logarithm and arctangent. This is why partial fractions reduce every rational integral to a collection of standard forms involving logarithms and inverse trigonometric functions.
Want to check your understanding?
Our interaction checks test whether you truly understand a concept — not just whether you can repeat a procedure.
Try an interaction checkCommon Mistakes in Partial Fraction Decomposition
These errors appear repeatedly. Knowing them in advance helps you avoid them.
Forgetting to do long division first
If the fraction is improper, applying the partial fraction template directly will give an inconsistent system — the constants will not solve correctly. Always check the degrees before starting.
Wrong template for repeated factors
For a factor like (x-1)^3, students sometimes write only \frac{A}{(x-1)^3} instead of the required three terms: \frac{A}{x-1} + \frac{B}{(x-1)^2} + \frac{C}{(x-1)^3}. Missing the lower-power terms makes the system unsolvable.
Using a constant instead of a linear numerator for quadratics
An irreducible quadratic factor needs Ax+B in the numerator, not just A. A constant numerator does not provide enough unknowns to satisfy the equation.
Arithmetic errors when solving for constants
Sign errors and distribution mistakes are the most frequent source of wrong answers. After solving, substitute your constants back into the original equation and verify with a test value of x.
Practice Problems
Decompose each expression into partial fractions. Try each one before checking your work.
Problem 1 — Distinct linear factors
Decompose \frac{3}{(x+1)(x-3)}
Problem 2 — Repeated factor with distinct factor
Decompose \frac{x+4}{x^2(x-1)}
Problem 3 — Irreducible quadratic factor
Decompose \frac{x^2+2}{(x-1)(x^2+x+1)}
Problem 4 — Improper fraction (long division first)
Decompose \frac{x^3+1}{x^2-4}
Related Guides
Frequently Asked Questions
What is partial fraction decomposition used for?
Partial fraction decomposition is primarily used to integrate rational functions in calculus. It also appears in Laplace transforms, differential equations, signal processing, and control theory. By splitting a complex fraction into simpler pieces, each piece can be integrated or transformed using standard formulas.
When can you not use partial fractions?
You cannot use partial fractions when the expression is not a rational function (a ratio of two polynomials). You also cannot apply the technique directly when the fraction is improper — when the degree of the numerator is greater than or equal to the degree of the denominator. In that case, you must perform polynomial long division first to reduce it to a proper fraction.
Is partial fraction decomposition hard?
The technique follows a clear, repeatable process, so it is not inherently difficult. Most students find the algebra (solving for constants) straightforward once they understand the correct template. The main challenge is choosing the right template for each type of denominator factor — linear, repeated linear, or irreducible quadratic.
Why do we need long division before partial fractions?
Partial fraction decomposition only works on proper fractions where the degree of the numerator is strictly less than the degree of the denominator. If the fraction is improper, the decomposition template does not produce enough equations to solve for the constants. Long division converts an improper fraction into a polynomial plus a proper fraction.
Do all rational functions need partial fractions?
No. Some rational functions can be integrated directly — for example, any fraction whose denominator is a single linear or quadratic factor. Partial fractions are only necessary when the denominator has multiple factors and cannot be integrated as a single standard form.
How do you handle repeated factors in partial fractions?
For a repeated linear factor like (x-a) raised to the power n, you must include one term for every power from 1 to n: A₁/(x-a) + A₂/(x-a)² + ... + Aₙ/(x-a)ⁿ. A common mistake is to write only one term for the highest power.
Why does an irreducible quadratic need a linear numerator?
An irreducible quadratic factor like (ax²+bx+c) has degree 2, so its corresponding partial fraction term must have a numerator of degree at most 1 — that is, Ax+B rather than just a constant A. Using only a constant would not provide enough unknowns to match the original expression.
Related Guides
About Sense of Study
Sense of Study is a concept-first learning platform that helps students build deep understanding in math, physics, chemistry, statistics, and computational thinking. Our approach maps prerequisite relationships between concepts so students master foundations before moving forward — eliminating the gaps that cause confusion later.
With 800+ interconnected concepts and mastery tracking, we help students and parents see exactly where understanding breaks down and how to fix it.
Start Your Concept Mastery Journey
Explore 800+ interconnected concepts with prerequisite maps, mastery tracking, and interaction checks that build real understanding.