Partial Fractions

Download as PDF

Ever looked at a giant, messy fraction and wished you could split it into smaller, more manageable pieces? That's precisely what partial fraction decomposition allows you to do. It's a powerful algebraic technique for simplifying complex rational expressions, paving the way for more advanced math.

Partial Fractions — an original Algebra911 reference diagram defining partial fractions and a worked example.
A Beginner's Guide to Partial Fractions

What Are Partial Fractions?

Partial fraction decomposition is a method used in algebra to break down a single, complex rational expression into a sum of simpler, more manageable fractions. Think of it as the reverse of adding fractions. You already know how to take two simple fractions and combine them into one by finding a common denominator.

For instance, if we wanted to add 2x1 and 3x+2, we would do the following:

2x1+3x+2=2(x+2)(x1)(x+2)+3(x1)(x1)(x+2)=2x+4+3x3(x1)(x+2)=5x+1x2+x2

The process of partial fractions takes us in the opposite direction. We start with the complicated fraction, 5x+1x2+x2, and figure out how to break it back down into the simpler 'partial' fractions, 2x1 and 3x+2. This skill is incredibly useful in higher-level mathematics, especially in calculus, where working with the simpler fractions is much easier than dealing with the combined one.

When Can You Use Partial Fractions?

Before you can start breaking down a fraction, you need to make sure it meets two important conditions. If it doesn't, the method won't work correctly.

  1. The fraction must be a proper rational expression. A proper fraction is one where the degree (the highest exponent) of the numerator's polynomial is less than the degree of the denominator's polynomial.
    • Proper: x+5x24 (Degree 1 is less than Degree 2)
    • Improper: x3+2xx24 (Degree 3 is greater than Degree 2)

    If you have an improper fraction, you must first perform polynomial long division. This will give you a polynomial plus a proper fraction, and you can then use partial fractions on the proper fraction part.

  2. The denominator must be factorable. The entire process relies on your ability to factor the polynomial in the denominator into linear factors (like x3) or irreducible quadratic factors (like x2+4). If you can't factor the denominator, you can't use this method.

How Do You Handle Distinct Linear Factors?

This is the most straightforward case and the best place to start. "Distinct linear factors" means that when you factor the denominator, you get a set of unique factors of the form (ax+b), with none of them repeating.

For each distinct linear factor in the denominator, you create one partial fraction with a constant numerator (which we'll call A, B, C, etc.).

If the denominator is (ax+b)(cx+d), the setup is: Aax+b+Bcx+d
Example 1

Decompose the fraction x+8x2+x6.

Step 1: Factor the denominator.
The denominator x2+x6 factors into (x+3)(x2). These are distinct linear factors.

Step 2: Set up the partial fractions.
Since we have two distinct linear factors, we'll need two partial fractions with unknown constants, A and B.

x+8(x+3)(x2)=Ax+3+Bx2

Step 3: Clear the denominators.
Multiply both sides of the equation by the original denominator, (x+3)(x2), to get rid of the fractions.

x+8=A(x2)+B(x+3)

Step 4: Solve for the constants A and B.
The easiest way to solve for A and B is to pick 'convenient' values for x that make one of the terms zero. These values are the roots of the factors.

  • To find B, let's choose x=2. This will make the A(x2) term become zero.
    (2)+8=A(22)+B(2+3)
    10=A(0)+B(5)
    10=5B
    B=2
  • To find A, let's choose x=3. This will make the B(x+3) term become zero.
    (3)+8=A(32)+B(3+3)
    5=A(5)+B(0)
    5=5A
    A=1

Step 5: Write the final answer.
Now that we have A=1 and B=2, we substitute them back into our setup from Step 2.

x+8x2+x6=1x+3+2x2

What About Repeated Linear Factors?

Sometimes when you factor a denominator, you get the same linear factor multiple times, like (x4)2 or (2x+1)3. This is called a repeated linear factor.

For a repeated linear factor (ax+b)n, you must create n partial fractions: one for each power of the factor from 1 up to n.

If the denominator has (ax+b)2, the setup is: Aax+b+B(ax+b)2
Example 2

Decompose the fraction 3x1(x2)2.

Step 1: Identify the factors.
The denominator is already factored as (x2)2. This is the linear factor (x2) repeated twice.

Step 2: Set up the partial fractions.
We need a term for (x2) and a term for (x2)2.

3x1(x2)2=Ax2+B(x2)2

Step 3: Clear the denominators.
Multiply both sides by (x2)2.

3x1=A(x2)+B

Step 4: Solve for the constants A and B.
We can still use the convenient value trick for one of the constants.

  • Let x=2 to find B.
    3(2)1=A(22)+B
    5=A(0)+B
    B=5

Now we have no other convenient values to plug in. To find A, we can substitute B back into the equation and use another method: equating coefficients. First, expand the equation:

3x1=Ax2A+B

Substitute B=5:

3x1=Ax2A+5

Now, look at the terms with x on both sides. The coefficient of x on the left must equal the coefficient of x on the right.

3x=AxA=3

We can double-check this with the constant terms: 1=2A+5. If A=3, then 1=2(3)+5=6+5=1. It works!

Step 5: Write the final answer.
Substitute A=3 and B=5 back into the setup.

3x1(x2)2=3x2+5(x2)2

How Do You Decompose Irreducible Quadratic Factors?

The final common case involves quadratic factors that cannot be factored further using real numbers. These are called irreducible quadratic factors. A common example is x2+1 or x2+x+5. You can test if a quadratic ax2+bx+c is irreducible by checking its discriminant, b24ac. If the discriminant is negative, the quadratic is irreducible.

When you have an irreducible quadratic factor in the denominator, its corresponding partial fraction numerator is not just a constant, but a linear term of the form Ax+B.

If the denominator has (ax2+bx+c), the setup is: Ax+Bax2+bx+c
Example 3

Decompose the fraction 5x2+3x+4(x1)(x2+x+1).

Step 1: Identify the factors.
The denominator is factored into a linear factor (x1) and a quadratic factor (x2+x+1). For x2+x+1, the discriminant is 124(1)(1)=3, which is negative, so it's irreducible.

Step 2: Set up the partial fractions.
The linear factor gets a constant numerator (A), and the irreducible quadratic factor gets a linear numerator (Bx+C).

5x2+3x+4(x1)(x2+x+1)=Ax1+Bx+Cx2+x+1

Step 3: Clear the denominators.
Multiply both sides by (x1)(x2+x+1).

5x2+3x+4=A(x2+x+1)+(Bx+C)(x1)

Step 4: Solve for the constants A, B, and C.
We'll use a combination of methods.

  • First, use the convenient value x=1 to find A.
    5(1)2+3(1)+4=A(12+1+1)+(B(1)+C)(11)
    5+3+4=A(3)+0
    12=3AA=4

Now, substitute A=4 back into the equation and expand everything.

5x2+3x+4=4(x2+x+1)+(Bx2Bx+CxC)5x2+3x+4=4x2+4x+4+Bx2Bx+CxC

Group the terms on the right side by powers of x.

5x2+3x+4=(4+B)x2+(4B+C)x+(4C)

Finally, equate the coefficients from the left and right sides.

  • Coefficients of x2: 5=4+BB=1
  • Constant terms: 4=4CC=0
  • Check with coefficients of x: 3=4B+C. Plugging in our values, 3=41+0, which is 3=3. It's correct!

Step 5: Write the final answer.
Substitute A=4, B=1, and C=0 into the setup.

5x2+3x+4(x1)(x2+x+1)=4x1+(1)x+0x2+x+1=4x1+xx2+x+1

What Are Common Mistakes to Avoid?

Partial fractions can be tricky, and small mistakes can lead to the wrong answer. Here are some common pitfalls to watch out for:

  • Forgetting to factor completely: Always make sure the denominator is factored as much as possible before you start. A factor like x3x needs to be broken down into x(x1)(x+1).
  • Incorrect setup for repeated factors: A common error is to forget a term. For a denominator with (x5)3, you need three fractions: one over (x5), one over (x5)2, and one over (x5)3.
  • Incorrect numerator for quadratic factors: Remember that irreducible quadratic factors get a linear numerator (Ax+B), not just a constant A.
  • Working with an improper fraction: If the degree of the numerator is greater than or equal to the degree of the denominator, you must perform polynomial long division first.
  • Simple algebra errors: Be very careful when expanding brackets and solving the system of equations for your constants. It's easy to make a sign error that throws off the entire result.

Quick Summary: The Four Cases

Here is a handy table to help you remember how to set up the partial fractions for different types of factors in the denominator.

Factor Type in DenominatorExample FactorPartial Fraction Form
Distinct Linear(xa)Axa
Repeated Linear(xa)nA1xa+A2(xa)2++An(xa)n
Irreducible Quadratic(ax2+bx+c)Ax+Bax2+bx+c
Repeated Irreducible Quadratic(ax2+bx+c)nA1x+B1ax2+bx+c++Anx+Bn(ax2+bx+c)n

Frequently Asked Questions

Why is it called 'partial' fractions?

It's called partial fractions because the method involves breaking a single, whole rational expression down into a sum of its simpler, component parts. Each of these simpler fractions is a 'part' of the original.

Do I always have to factor the denominator first?

Yes, absolutely. Factoring the denominator is the essential first step that tells you what kind of factors you have (linear, quadratic, repeated, etc.). This determines how you set up the partial fractions.

What if the degree of the numerator is bigger than the denominator?

If the degree of the numerator is greater than or equal to the degree of the denominator, you have an improper fraction. You must use polynomial long division first. The result will be a polynomial plus a proper fraction, which you can then decompose.

Is there more than one way to solve for the constants A, B, and C?

Yes, the two main methods are substituting 'convenient' values for x (the roots of the factors) and equating the coefficients of like terms. Often, the fastest approach is to use a combination of both methods.

Where is this technique used in higher math?

Partial fraction decomposition is a crucial skill in calculus, where it is used to simplify complex fractions before integrating them. It also appears in differential equations and various areas of engineering and physics.

What does 'irreducible quadratic' mean again?

An irreducible quadratic is a quadratic expression, like x2+9 or x2+x+1, that cannot be factored into two linear terms using only real numbers. You can test this with the discriminant b24ac; if it's negative, the quadratic is irreducible.

Can I use a calculator to do this?

While a calculator can help with solving the systems of equations for A, B, and C, the setup process requires algebraic understanding. Some advanced calculators can perform the entire decomposition, but it's essential to learn the manual process to understand the concepts.