MathematicsCore18 min read

Partial Fractions

Taking a single fraction apart again, because the pieces are easier to work with

This topic appears in:

01

Running the addition backwards

Definition

Proper fraction — One in which the degree of the numerator is less than the degree of the denominator. Partial fractions apply only to proper fractions — anything else must be divided out first.

You already know how to combine 2/(x−1) + 3/(x+2) into the single fraction (5x + 1)/[(x−1)(x+2)]. Partial fractions is that process reversed: given the combined fraction, recover the pieces.

It looks like an odd thing to want until you meet integration, where ∫ 2/(x−1) dx is a standard log and ∫ (5x+1)/(x²+x−2) dx is not. Splitting first turns one hard integral into two easy ones, and the same is true for binomial expansions and for inverse Laplace transforms later on.

Check the degrees before you start

For (x² + 1)/(x² − 4) the numerator is not of lower degree, so the fraction is improper. Divide first: it becomes 1 + 5/(x² − 4), and only the remainder fraction gets decomposed. Skipping this step produces equations with no solution and wastes half the question.

02

The four cases, decided by the denominator

The shape of the decomposition is fixed entirely by how the denominator factorises. Write the correct shape down first, before finding a single constant — the marks for the shape are separate from the marks for the values.

Denominator containsContribute
a distinct linear factor (x − a)A / (x − a)
a repeated linear factor (x − a)²A/(x − a) + B/(x − a)²
a repeated factor (x − a)³A/(x−a) + B/(x−a)² + C/(x−a)³
an irreducible quadratic (x² + bx + c)(Ax + B) / (x² + bx + c)

Why a quadratic factor needs Ax + B on top

The numerator must be allowed to be one degree lower than its denominator. Over a linear factor that means a constant; over a quadratic it means a linear expression. Putting a bare constant over a quadratic gives too few unknowns, and the equations then have no solution — which is how you find out you got the shape wrong.

03

Finding the constants: the cover-up shortcut

The standard method is to multiply through by the denominator and compare coefficients. For distinct linear factors there is a much faster route: substitute the value that kills one bracket, and every unknown but one disappears.

Worked example

Express (5x + 1) / [(x − 1)(x + 2)] in partial fractions.

  1. Two distinct linear factors, so the shape is A/(x−1) + B/(x+2).Write the shape before anything else — it is worth a mark on its own.
  2. Multiply through by (x−1)(x+2): 5x + 1 = A(x + 2) + B(x − 1).This identity must hold for every x, which is what lets you choose convenient values.
  3. Put x = 1: 6 = 3A, so A = 2.x = 1 makes the B bracket zero, so B vanishes from the equation entirely.
  4. Put x = −2: −9 = −3B, so B = 3.Now the A bracket is the one that dies.
  5. Answer: 2/(x−1) + 3/(x+2).Check by recombining: 2(x+2) + 3(x−1) = 5x + 1 ✓

2/(x − 1) + 3/(x + 2)

04

When substitution runs out

Convenient substitutions only reach the distinct linear factors. A repeated factor or a quadratic factor leaves constants that no substitution can isolate, and for those you compare coefficients.

The routine: after the substitutions you can do, expand both sides fully, then match the coefficient of each power of x. Matching the highest power and the constant term usually settles the rest in two lines.

Worked example

Express (3x² + 2) / [(x − 1)(x² + 1)] in partial fractions.

  1. x² + 1 has no real factors, so the shape is A/(x−1) + (Bx + C)/(x² + 1).An irreducible quadratic takes a linear numerator.
  2. Multiply up: 3x² + 2 = A(x² + 1) + (Bx + C)(x − 1).
  3. Put x = 1: 5 = 2A, so A = 2.5.The one substitution available, because only one factor is linear.
  4. Compare coefficients: 3 = A + B, so B = 0.5.The x² terms come from A(x²) and from Bx(x).
  5. Compare constants: 2 = A − C, so C = 0.5.Constants come from A(1) and from C(−1).
  6. Answer: 2.5/(x−1) + (0.5x + 0.5)/(x² + 1).Equivalently 5/[2(x−1)] + (x + 1)/[2(x² + 1)].

5/[2(x − 1)] + (x + 1)/[2(x² + 1)]

Each distinct factor of the denominator is a vertical asymptote of the original fraction, and each one becomes a separate term in the decomposition. Choose (x+1)/(x²−4) to see two of them at once.

Before you leave this chapter

  1. Only proper fractions decompose. If the numerator degree is not lower, divide first.
  2. Distinct linear factor → A/(x−a). Repeated → one term per power. Quadratic → (Ax+B) over it.
  3. Write the shape down before finding any constants; the shape carries its own marks.
  4. Substitute the value that kills a bracket to get each constant over a distinct linear factor.
  5. Compare coefficients for anything substitution cannot reach, then recombine to check.
06

Repeated quadratic factors, and a check that always works

The fourth case on the syllabus is a quadratic factor that appears more than once. It follows the same principle as a repeated linear factor: one term for each power, and each numerator one degree below its denominator.

So (x² + 1)² in the denominator contributes (Ax + B)/(x² + 1) + (Cx + D)/(x² + 1)² — four unknowns from one factor. Count your unknowns before you start: the total must equal the degree of the denominator, and if it does not, the shape is wrong.

(x − a)ⁿ contributes A₁/(x−a) + A₂/(x−a)² + … + Aₙ/(x−a)ⁿ(x² + bx + c)ⁿ contributes (A₁x + B₁)/(x²+bx+c) + … + (Aₙx + Bₙ)/(x²+bx+c)ⁿnumber of unknowns = degree of the denominatorthe unknown count is the fastest check that your decomposition has the right shape

Verify by substituting one convenient number

Once you have the constants, do not recombine the whole thing algebraically — it is slow. Instead substitute a single easy value such as x = 0 into both the original fraction and your decomposition. If the two numbers agree, the answer is almost certainly right; if they do not, you have found the error in ten seconds.

Practice questions

6 questions · 20 marks · full working on every one

Try each one on paper first, then open the working. The marks are shown where they are actually awarded, because that is where they are actually lost.

Short questions

3 · 6 marks

Two marks each, in the style of the short-question section of the paper. Answer in two or three lines.

SQ1[2 marks]
Define a proper rational fraction and give one example of an improper one.
Model answer

A proper rational fraction has a numerator of lower degree than its denominator, such as (x + 1)/(x² − 4). (x² + 3)/(x − 1) is improper, because the numerator has the higher degree.

Examiner tip. Compare degrees, not the size of the coefficients. A numerator of 100 over a denominator of x is still proper.

SQ2[2 marks]
Write down, without evaluating the constants, the partial fraction form of 1 / [(x + 3)(x − 2)²].
Model answer

A/(x + 3) + B/(x − 2) + C/(x − 2)².

Examiner tip. A repeated factor contributes one term for each power up to the multiplicity. Writing only C/(x−2)² leaves the system unsolvable.

SQ3[2 marks]
Why does an irreducible quadratic factor take a numerator of the form Ax + B?
Model answer

The numerator over any factor must be permitted to be one degree lower than that factor. A quadratic denominator therefore takes a linear numerator, Ax + B. A single constant would give too few unknowns and the resulting equations would be inconsistent.

Examiner tip. The phrase "one degree lower than the denominator" is the general rule, and it explains all four cases at once.

Solved numericals

2 · 8 marks

Full working, one step per line, with the marks shown where they are awarded.

N1[4 marks]
Resolve (7x − 1) / [(x − 3)(x + 1)] into partial fractions.
Full working
  1. Writes A/(x − 3) + B/(x + 1) and multiplies up to 7x − 1 = A(x + 1) + B(x − 3)correct shape[1]
  2. Substituting x = 3: 20 = 4A, so A = 5x = 3 kills the B term[1]
  3. Substituting x = −1: −8 = −4B, so B = 2[1]
  4. Answer 5/(x − 3) + 2/(x + 1)accept a verification by recombining[1]

5/(x − 3) + 2/(x + 1)

Examiner tip. Recombining as a check takes one line and confirms both constants at once: 5(x+1) + 2(x−3) = 7x − 1 ✓

N2[4 marks]
Resolve (x + 4) / (x − 2)² into partial fractions.
Full working
  1. Shape A/(x − 2) + B/(x − 2)², giving x + 4 = A(x − 2) + Ba repeated factor needs both powers[1]
  2. Substituting x = 2: 6 = B[1]
  3. Comparing coefficients of x: 1 = Ano substitution can isolate A here[1]
  4. Answer 1/(x − 2) + 6/(x − 2)²[1]

1/(x − 2) + 6/(x − 2)²

Examiner tip. With a repeated factor there is only one useful substitution. Expect to compare coefficients for the remaining constants, and say so in your working.

Long questions

1 · 6 marks

Theory and numerical together, as they appear in the long-question section.

LQ1[6 marks]
Consider f(x) = (2x² + 5x + 3) / (x² + 2x + 1).
  1. Explain why f(x) must be divided before decomposing, and carry out the division.
  2. Resolve the remaining proper fraction into partial fractions.
  3. Write down the complete decomposition of f(x).
Mark scheme
  1. Numerator and denominator are both of degree 2, so the fraction is improper and partial fractions do not apply to it directlythe reason must reference the degrees[1]
  2. Dividing: 2x² + 5x + 3 = 2(x² + 2x + 1) + (x + 1), so f(x) = 2 + (x + 1)/(x + 1)²x² + 2x + 1 = (x + 1)²[1]
  3. The remainder simplifies: (x + 1)/(x + 1)² = 1/(x + 1)cancelling one factor, valid for x ≠ −1[1]
  4. So the proper part is already a single partial fraction, 1/(x + 1)accept working through A/(x+1) + B/(x+1)² and finding B = 0[1]
  5. f(x) = 2 + 1/(x + 1)[1]
  6. Valid for x ≠ −1the excluded value must be stated[1]

f(x) = 2 + 1/(x + 1), for x ≠ −1

Examiner tip. Always factorise the denominator before deciding the shape. Here x² + 2x + 1 is a perfect square, which changes the decomposition completely from what two distinct factors would need.