4. Partial Fractions

Linear And Irreducible Quadratic Factors

Partial Fractions: Linear and Irreducible Quadratic Factors

Welcome, students! In this lesson, you will learn one of the most useful ideas in Calculus 2: how to break a complicated rational expression into simpler pieces using partial fractions. This is especially important when the denominator factors into linear terms or irreducible quadratic terms ๐Ÿ“˜. By the end of this lesson, you should be able to explain what these factors are, recognize them in a rational function, and set up the correct partial fraction form for integration.

What Partial Fractions Are and Why They Matter

A rational function is a function written as a ratio of polynomials, such as $\frac{2x+1}{x^2-3x+2}$. In Calculus 2, rational functions often appear in integrals, and some of them are hard to integrate directly. Partial fractions helps by rewriting the expression as a sum of simpler fractions that are easier to handle.

The big idea is this: if the denominator factors nicely, we can split the fraction into pieces that match those factors. Then each piece can be integrated using familiar rules like $\int \frac{1}{x-a} \, dx = \ln|x-a| + C$.

The two factor types in this lesson are:

  • Linear factors, such as $x-a$ or $2x+5$
  • Irreducible quadratic factors, such as $x^2+1$ or $x^2+4x+8$

An irreducible quadratic factor is a quadratic that cannot be factored into real linear factors. In other words, its discriminant $b^2-4ac$ is negative. For example, $x^2+1$ has discriminant $0^2-4(1)(1)=-4$, so it does not factor over the real numbers.

Linear Factors: The Simple Building Blocks

A linear factor is any factor of degree $1$. When the denominator contains a linear factor like $x-a$, the partial fraction piece for it looks like

$$\frac{A}{x-a}$$

where $A$ is a constant.

If the linear factor is not written in simplest form, like $2x+5$, you can still use it directly:

$$\frac{A}{2x+5}$$

However, in practice, many students rewrite the factor with a leading coefficient of $1$ when possible, because it makes algebra cleaner. For example, $2x+5=2\left(x+\frac{5}{2}\right)$, but either form can be used correctly if handled carefully.

Example 1

Decompose

$$\frac{5}{(x-1)(x+3)}$$

Since the denominator has two different linear factors, we write

$$\frac{5}{(x-1)(x+3)}=\frac{A}{x-1}+\frac{B}{x+3}$$

Multiply both sides by $(x-1)(x+3)$:

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

Now choose convenient values of $x$. If $x=1$, then

$$5=4A \quad \Rightarrow \quad A=\frac{5}{4}$$

If $x=-3$, then

$$5=-4B \quad \Rightarrow \quad B=-\frac{5}{4}$$

So the decomposition is

$$\frac{5}{(x-1)(x+3)}=\frac{5/4}{x-1}-\frac{5/4}{x+3}$$

This is much easier to integrate than the original fraction. โœ…

Irreducible Quadratic Factors: When the Denominator Has a Curve

An irreducible quadratic factor is a quadratic factor that cannot be broken into linear factors over the real numbers. Common examples include $x^2+1$, $x^2+4$, and $x^2+4x+8$.

For an irreducible quadratic factor, the partial fraction numerator must be linear, not constant. That means the correct form is

$$\frac{Ax+B}{x^2+px+q}$$

not just $\frac{A}{x^2+px+q}$. Why? Because when you solve for the unknown coefficients, the numerator must be flexible enough to match the polynomial that appears after combining terms.

Example 2

Decompose

$$\frac{x+2}{(x-1)(x^2+4)}$$

Here, $x-1$ is a linear factor, and $x^2+4$ is irreducible because its discriminant is $0^2-4(1)(4)=-16<0$.

So the correct setup is

$$\frac{x+2}{(x-1)(x^2+4)}=\frac{A}{x-1}+\frac{Bx+C}{x^2+4}$$

Multiply by $(x-1)(x^2+4)$:

$$x+2=A(x^2+4)+(Bx+C)(x-1)$$

Expand the right side:

$$x+2=Ax^2+4A+Bx^2-Bx+Cx-C$$

Combine like terms:

$$x+2=(A+B)x^2+(C-B)x+(4A-C)$$

Now match coefficients with the left side $x+2$, which is really

$$0x^2+1x+2$$

So we get the system:

$$A+B=0$$

$$C-B=1$$

$$4A-C=2$$

Solving gives $A=\frac{3}{5}$, $B=-\frac{3}{5}$, and $C=\frac{2}{5}$.

Therefore,

$$\frac{x+2}{(x-1)(x^2+4)}=\frac{3/5}{x-1}+\frac{-\frac{3}{5}x+\frac{2}{5}}{x^2+4}$$

This form is ready for integration because the second term can be split into parts involving $\ln(x^2+4)$ and $\arctan$.

Why the Numerator Must Be Linear for Quadratic Factors

The numerator over an irreducible quadratic must be $Ax+B$ because the derivative of the denominator is linear. This is important in integration. For example, consider

$$\int \frac{2x}{x^2+9} \, dx$$

This works directly because the numerator $2x$ is the derivative of the denominator $x^2+9$. The antiderivative is

$$\ln(x^2+9)+C$$

If the numerator were just a constant, like in

$$\int \frac{1}{x^2+9} \, dx$$

then the result would involve arctangent:

$$\int \frac{1}{x^2+a^2} \, dx=\frac{1}{a}\arctan\left(\frac{x}{a}\right)+C$$

For $a=3$,

$$\int \frac{1}{x^2+9} \, dx=\frac{1}{3}\arctan\left(\frac{x}{3}\right)+C$$

In partial fractions, the $Ax+B$ form makes it possible to separate the integrand into a part that matches the derivative of the quadratic and a part that matches the arctangent pattern.

Example 3

Integrate

$$\int \frac{3x+1}{x^2+1} \, dx$$

Split the fraction:

$$\int \frac{3x}{x^2+1} \, dx + \int \frac{1}{x^2+1} \, dx$$

The first integral is

$$\frac{3}{2}\ln(x^2+1)$$

and the second is

$$\arctan(x)$$

So the answer is

$$\frac{3}{2}\ln(x^2+1)+\arctan(x)+C$$

Setting Up the Correct Partial Fraction Form

When you see a rational function, first factor the denominator completely over the real numbers. Then write the partial fraction form based on the factors.

Use these rules:

  • For each distinct linear factor $x-a$, use $\frac{A}{x-a}$
  • For each irreducible quadratic factor $x^2+px+q$, use $\frac{Ax+B}{x^2+px+q}$
  • If a factor repeats, you include a term for each power, but repeated factors are a separate lesson

Example 4

Set up the partial fraction decomposition for

$$\frac{7x^2+5x-1}{(x+2)(x^2+9)}$$

The denominator has one linear factor and one irreducible quadratic factor. So the correct setup is

$$\frac{7x^2+5x-1}{(x+2)(x^2+9)}=\frac{A}{x+2}+\frac{Bx+C}{x^2+9}$$

This is the setup only; solving for $A$, $B$, and $C$ would be the next step.

A common mistake is to write $\frac{A}{x^2+9}$ instead of $\frac{Bx+C}{x^2+9}$. That misses part of the algebra needed to match the original numerator.

Connecting This Topic to Integration in Calculus 2

Partial fractions is not just algebra for its own sake. It is a tool for integration. Once a rational function is decomposed, each piece usually matches one of a few standard integral forms.

For linear factors, integrals often become logarithms:

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

For irreducible quadratic factors, integrals often become a mix of logarithms and arctangents. A term like $\frac{Ax}{x^2+a^2}$ leads to a logarithm, while a term like $\frac{B}{x^2+a^2}$ leads to arctangent.

This is why recognizing factor types matters. If you can identify the denominator structure quickly, you can choose the correct decomposition form and make the integral much easier to solve. In real-world settings, this kind of algebra shows up in signal processing, control systems, and any situation where rational expressions need to be analyzed or integrated ๐Ÿ“ˆ.

Conclusion

students, the main idea of this lesson is that partial fractions turns a hard rational expression into simpler pieces. Linear factors give constant numerators like $\frac{A}{x-a}$, while irreducible quadratic factors require linear numerators like $\frac{Ax+B}{x^2+px+q}$. These forms are not randomโ€”they are designed to match the algebra and make integration possible.

Understanding these factor types is a key step in Calculus 2 because it prepares you to integrate rational functions efficiently. Once you recognize the factors, you can write the correct decomposition, solve for the constants, and use standard antiderivative formulas to finish the problem.

Study Notes

  • A rational function is a ratio of polynomials, such as $\frac{P(x)}{Q(x)}$.
  • Partial fractions rewrites a rational function as a sum of simpler fractions.
  • A linear factor has degree $1$, such as $x-a$.
  • The partial fraction form for a linear factor is $\frac{A}{x-a}$.
  • An irreducible quadratic factor cannot be factored into real linear factors, such as $x^2+1$.
  • The partial fraction form for an irreducible quadratic factor is $\frac{Ax+B}{x^2+px+q}$.
  • The numerator over an irreducible quadratic must be linear, not constant.
  • To decompose a rational function, factor the denominator completely over the real numbers first.
  • After setting up the decomposition, multiply through by the denominator and solve for the unknown constants.
  • Linear factors often lead to logarithms after integration.
  • Irreducible quadratic factors often lead to logarithms and arctangent integrals.
  • This topic is a foundation for integrating rational functions in Calculus 2.

Practice Quiz

5 questions to test your understanding