Year 12 Maths Advanced Module 6 ~35 min Lesson 10 of 15

Partial Fractions

How do you integrate a rational function like $\frac{3x + 5}{x^2 + 3x + 2}$? The numerator's degree is less than the denominator's, so polynomial division isn't needed โ€” but the integrand still doesn't match any standard form. The trick is to break the fraction into simpler pieces. Just as $3/8$ can be written as $1/2 - 1/8$, a rational function can be decomposed into a sum of simpler fractions with linear denominators. This technique, called partial fractions, transforms intimidating integrals into a collection of basic logarithmic integrals. It's the bridge that connects polynomial algebra to logarithmic integration.

๐Ÿ”ฌ
Printable worksheet

Download this lesson's worksheet

Use the PDF for classwork, homework or revision.

Think First

We know $\frac{3x + 5}{x^2 + 3x + 2} = \frac{3x + 5}{(x+1)(x+2)}$. If we could write this as $\frac{A}{x+1} + \frac{B}{x+2}$ for some constants $A$ and $B$, how would that make integration easier?

Write your initial thinking in your book
Saved
๐Ÿ“

Formula Reference โ€” This Lesson

Linear factors
$\frac{P(x)}{(x-a)(x-b)} = \frac{A}{x-a} + \frac{B}{x-b}$
Repeated factor
$\frac{P(x)}{(x-a)^2} = \frac{A}{x-a} + \frac{B}{(x-a)^2}$
After decomposition
$\int \frac{A}{x-a} \, dx = A\ln|x-a| + C$
Key insight: Partial fractions decompose a complex rational function into simpler pieces that can be integrated using logarithms. The key step is finding the constants $A$ and $B$ by multiplying through by the denominator and equating coefficients or substituting convenient values of $x$. Always check that the numerator's degree is less than the denominator's before decomposing.
Know

Key Facts

  • Decompose $\frac{P(x)}{(x-a)(x-b)}$ into $\frac{A}{x-a} + \frac{B}{x-b}$
  • Find $A, B$ by equating coefficients
  • Each piece integrates to a logarithm
Understand

Concepts

  • Why decomposition is possible (uniqueness theorem)
  • When polynomial long division is needed first
  • How repeated factors require extra terms
Can Do

Skills

  • Decompose proper rational functions
  • Integrate decomposed fractions
  • Handle repeated linear factors
01The Method

Partial Fraction Decomposition

Step 1 โ€” Factor the denominator completely.

Step 2 โ€” Set up the decomposition. For each distinct linear factor $(x - a)$, include a term $\frac{A}{x - a}$. For a repeated factor $(x - a)^2$, include $\frac{A}{x - a} + \frac{B}{(x - a)^2}$.

Step 3 โ€” Clear fractions. Multiply both sides by the common denominator.

Step 4 โ€” Find the constants. Either substitute convenient values of $x$ or equate coefficients of like powers.

Step 5 โ€” Integrate each term.

Example: Decompose $\frac{3x + 5}{(x+1)(x+2)}$.

3x + 5 = A(x+2) + B(x+1)

Let x = -1: 3(-1) + 5 = A(1) โ†’ A = 2

Let x = -2: 3(-2) + 5 = B(-1) โ†’ B = 1

So: (3x+5)/((x+1)(x+2)) = 2/(x+1) + 1/(x+2)

Integrating:

โˆซ (3x+5)/((x+1)(x+2)) dx = 2ln|x+1| + ln|x+2| + C

Real-World Anchor Chemical Reaction Kinetics. In a consecutive reaction $A \xrightarrow{k_1} B \xrightarrow{k_2} C$, the concentration of intermediate $B$ over time satisfies a differential equation whose solution involves integrating a rational function. For example, $\frac{d[B]}{dt} = k_1[A]_0 e^{-k_1 t} - k_2[B]$, and solving for $[B]$ requires integrating expressions like $\frac{e^{-k_1 t} - e^{-k_2 t}}{k_2 - k_1}$. When the reaction mechanism is more complex, with parallel pathways or reversible steps, the rate equations produce rational functions that must be decomposed using partial fractions before integration. Pharmacokineticists use these models to predict how drug concentrations evolve in the bloodstream after administration โ€” determining optimal dosing schedules for Australian patients. The partial fractions technique transforms what looks like an intractable integral into a sum of exponential decays, each with a clear physical interpretation.

02Repeated Factors

Repeated Linear Factors

When the denominator has a repeated factor like $(x - a)^2$, the decomposition requires two terms:

P(x)/(x-a)^2 = A/(x-a) + B/(x-a)^2

Example: Decompose $\frac{x + 3}{(x - 1)^2}$.

x + 3 = A(x-1) + B

Let x = 1: 1 + 3 = B โ†’ B = 4

Compare x coefficients: 1 = A โ†’ A = 1

So: (x+3)/(x-1)^2 = 1/(x-1) + 4/(x-1)^2

Integrating:

โˆซ = ln|x-1| - 4/(x-1) + C

Note: The second term integrates using the power rule: $\int (x-1)^{-2} \, dx = -(x-1)^{-1} + C$.

Worked Example

GIVEN

Find $\int \frac{2x + 1}{x^2 + x - 2} \, dx$.

FIND

The indefinite integral.

METHOD

Step 1: Factor: x^2 + x - 2 = (x+2)(x-1)
Step 2: (2x+1)/((x+2)(x-1)) = A/(x+2) + B/(x-1)
2x + 1 = A(x-1) + B(x+2)
x = 1: 3 = 3B โ†’ B = 1
x = -2: -3 = -3A โ†’ A = 1
Step 3: โˆซ = โˆซ 1/(x+2) dx + โˆซ 1/(x-1) dx
= ln|x+2| + ln|x-1| + C

ANSWER

$\ln|x+2| + \ln|x-1| + C = \ln|(x+2)(x-1)| + C$.

Try It Now

โ–ผ

Find $\int \frac{5x - 1}{x^2 - x - 2} \, dx$.

Answer:

$x^2 - x - 2 = (x-2)(x+1)$. $\frac{5x-1}{(x-2)(x+1)} = \frac{A}{x-2} + \frac{B}{x+1}$.

$5x - 1 = A(x+1) + B(x-2)$. $x = 2$: $9 = 3A \Rightarrow A = 3$. $x = -1$: $-6 = -3B \Rightarrow B = 2$.

$\int = 3\ln|x-2| + 2\ln|x+1| + C$.

Copy Into Your Books

โ–ผ

Distinct linear

$\frac{P}{(x-a)(x-b)} = \frac{A}{x-a} + \frac{B}{x-b}$

Repeated linear

$\frac{P}{(x-a)^2} = \frac{A}{x-a} + \frac{B}{(x-a)^2}$

Find A, B

Substitute convenient x values

Integrate

$\int \frac{A}{x-a} dx = A\ln|x-a| + C$

AActivities

Activities

Activity 1 โ€” Calculate and Interpret

  1. Decompose $\frac{4}{x^2 - 4}$ and integrate.
  2. Decompose $\frac{x + 2}{x^2 - 2x + 1}$ and integrate.
  3. Find $\int \frac{3x + 7}{x^2 + 5x + 6} \, dx$.

Activity 2 โ€” Analyse and Connect

  1. Why does a repeated factor $(x-a)^2$ need two terms in the decomposition?
  2. What would you do first if the numerator's degree were greater than or equal to the denominator's?
  3. Explain why $\int \frac{1}{x^2 - 1} \, dx = \frac{1}{2}\ln|\frac{x-1}{x+1}| + C$ using partial fractions.
Revisit Your Initial Thinking

Writing $\frac{3x + 5}{(x+1)(x+2)} = \frac{A}{x+1} + \frac{B}{x+2}$ transforms a complex fraction into two simple ones. Each simple fraction integrates to a logarithm: $\int \frac{A}{x+1} \, dx = A\ln|x+1| + C$ and $\int \frac{B}{x+2} \, dx = B\ln|x+2| + C$. Without partial fractions, we would have no standard technique for integrating $\frac{3x+5}{x^2+3x+2}$. The decomposition is possible because any proper rational function with distinct linear factors in the denominator can be uniquely written as a sum of simpler fractions โ€” this is the Fundamental Theorem of Partial Fractions, guaranteed by the algebra of polynomials.

Write your reflection in your book
Saved
MC

Multiple Choice

5 random questions from a replayable lesson bank โ€” feedback shown immediately

๐Ÿ“

Extended Questions

ApplyBand 4

8. Decompose $\frac{2x + 3}{x^2 - x - 6}$ into partial fractions and hence find $\int \frac{2x + 3}{x^2 - x - 6} \, dx$. Show all working. 3 MARKS

Answer in your workbook
ApplyBand 5

9. Decompose $\frac{3x + 1}{(x - 1)^2}$ into partial fractions and integrate. Show all working. 4 MARKS

Answer in your workbook
AnalyseBand 5

10. In pharmacokinetics, the concentration of a drug in the bloodstream can be modelled by a rational function. Explain why partial fractions are essential for solving such models, and describe what each term in the partial fraction decomposition represents physically (e.g., absorption vs elimination). 3 MARKS

Answer in your workbook

Comprehensive Answers

โ–ผ

Activity 1 โ€” Model Answers

1. $\frac{4}{(x-2)(x+2)} = \frac{1}{x-2} - \frac{1}{x+2}$. $\int = \ln|x-2| - \ln|x+2| + C = \ln|\frac{x-2}{x+2}| + C$.

2. $x^2 - 2x + 1 = (x-1)^2$. $\frac{x+2}{(x-1)^2} = \frac{1}{x-1} + \frac{3}{(x-1)^2}$. $\int = \ln|x-1| - \frac{3}{x-1} + C$.

3. $x^2 + 5x + 6 = (x+2)(x+3)$. $\frac{3x+7}{(x+2)(x+3)} = \frac{1}{x+2} + \frac{2}{x+3}$. $\int = \ln|x+2| + 2\ln|x+3| + C$.

Activity 2 โ€” Model Answers

1. Two terms are needed because a single term $\frac{A}{x-a}$ cannot produce the $x^1$ term in the numerator when cleared.

2. Perform polynomial long division first to get a polynomial plus a proper rational function.

3. $\frac{1}{x^2-1} = \frac{1}{2}(\frac{1}{x-1} - \frac{1}{x+1})$. $\int = \frac{1}{2}(\ln|x-1| - \ln|x+1|) + C = \frac{1}{2}\ln|\frac{x-1}{x+1}| + C$.

Short Answer Model Answers

Q8 (3 marks): $x^2 - x - 6 = (x-3)(x+2)$ [0.5]. $\frac{2x+3}{(x-3)(x+2)} = \frac{A}{x-3} + \frac{B}{x+2}$, so $2x+3 = A(x+2) + B(x-3)$ [0.5]. $x = 3$: $9 = 5A \Rightarrow A = 9/5$; $x = -2$: $-1 = -5B \Rightarrow B = 1/5$ [1]. $\int = \frac{9}{5}\ln|x-3| + \frac{1}{5}\ln|x+2| + C$ [1].

Q9 (4 marks): $\frac{3x+1}{(x-1)^2} = \frac{A}{x-1} + \frac{B}{(x-1)^2}$ [1]. $3x+1 = A(x-1) + B$ [0.5]. $x = 1$: $4 = B$ [0.5]. Compare $x$ coefficients: $3 = A$ [0.5]. So $\frac{3}{x-1} + \frac{4}{(x-1)^2}$ [0.5]. $\int = 3\ln|x-1| - \frac{4}{x-1} + C$ [1].

Q10 (3 marks): Drug concentration models often involve rational functions from solving linear differential equations with multiple exponential processes [1]. Partial fractions decompose these into terms like $\frac{A}{s+k_1}$ and $\frac{B}{s+k_2}$ (in Laplace domain) or $\frac{A}{t+\tau_1}$ in time domain [1]. Each term represents a distinct kinetic process: one for drug absorption from the gut, another for elimination by the kidneys, possibly a third for tissue distribution [1].

โšก
Science Jump

Jump Through Partial Fractions!

Climb platforms by decomposing rational functions and integrating the results. Pool: lesson 10.

Mark lesson as complete

Tick when you've finished all activities and checked your answers.