We look at the first class of functions we hope to integrate, rational functions. Rational functions are functions in the form f(x) = P(x)/Q(x) where P(x) and Q(x) are polynomials. By the end of the section, we hope to be able to find the solution to any integral in the form
\int \frac{P(x)}{Q(x)} \,dx
History
The problem of integrating these functions was attempted by both Newton and Leibniz, although no complete algorithm was found. In 1703, Johan Bernoulli published “Acta Eruditorum” which described the method of partial fractions, allowing us to factor a rational function into a finite summand of rational functions with denominators of either linear or quadratic factors. For example, given the integral
\int{{\frac{{3x + 11}}{{{x^2} - x - 6}}\,dx}}
if we apply break up the fraction
\frac{{3x + 11}}{{{x^2} - x - 6}} = \frac{4}{x - 3} - \frac{1}{x + 2}
The solution becomes trivial
\int{{\frac{{3x + 11}}{{{x^2} - x - 6}}\,dx}} = 4\ln |x - 3| - \ln |x + 2| + C.
Finding ways to break up the fractions is known as partial fraction decomposition.
Method
When given an integral in the form
\int \frac{P(X)}{Q(X)} \, dx
Where P(x) and Q(x) are polynomials such that the degree of Q(x) is higher than the degree of P(x). We can decompose the fraction based on the factors of Q(x). There are four cases for the factors of Q(x).
Case I: Distinct linear factors
When Q(x) has distinct linear factors, i.e.
Q(x) = (a_1 x + b_1)(a_2 x + b_2)
We decompose into the following terms
\frac{P(x)}{Q(x)} = \frac{A}{a_1x + b_1} + \frac{B}{a_2x + b_2}
Case 2: Repeated linear factors
When Q(x) has repeated linear factors, i.e.
Q(x) = (a x + b)^k
We decompose into the following terms
\frac{P(x)}{Q(x)} = \frac{A_1}{ax + b} + \frac{A_2}{(ax + b)^2} + \cdots + \frac{A_k}{(a x + b)^k}
Case 3: Distinct quadratic factors
When Q(x) has distinct quadratic factors, i.e.
Q(x) = (a_1 x^2 + b_1x + c_1)(a_2 x^2 + b_2x + c_2)
We decompose into the following terms
\frac{P(x)}{Q(x)} = \frac{A_1x + B_1}{a_1 x^2 + b_1x + c_1} + \frac{A_2x + B_2}{a_2 x^2 + b_2x + c_2}
Case 4: Repeated quadratic factors
When Q(x) has repeated quadratic factors, i.e.
Q(x) = (a x^2 + bx + c)^k
We decompose into the following terms
\frac{P(x)}{Q(x)} = \frac{A_1x + B_1}{a x^2 + bx + c} + \cdots + \frac{A_kx + B_k}{(a x^2 + bx + c)^k}
Note that Q(x) may contain multiple cases to factor. For example
Q(x) = (a_1x+b_1)(a_2x^2 + b_2x + c_2)^2
Will decompose into
\frac{P(x)}{Q(x)} = \frac{A}{a_1x + b_1} + \frac{Bx + C}{a_2 x^2 + b_2x + c_2} + \frac{Dx + E}{(a_2 x^2 + b_2x + c_2)^2}
Next we need a method for finding the value of the constants in the numerator.
Consider the integral from the beginning
\int \frac{3x + 11}{x^2 - x - 6} \,dx
We can now decompose the integrand to obtain
\frac{3x + 11}{x^2 - x - 6} = \frac{A}{x - 3} + \frac{B}{x + 2}
The problem is now finding values for the constants A,B which make the relation true. By cross multiplying the right side of the equation we get
\frac{3x + 11}{x^2 - x - 6} = \frac{A(x + 2) + B(x - 3)}{(x - 3)(x + 2)}
Which simplifies to
3x + 11 = A(x + 2) + B(x - 3).
We can then create a system of equations such that the above expression is always true. This method is long but will always work. The faster method (that isn’t always possible) is to find values of x such that the equation reduces. Using the faster method, we obtain
x = 3 \: : \: 3(3) + 11 = A(3 + 2) + B(3 - 3) \implies A = 4\\
x = -2 \: : \: 3(-2) + 11 = A(-2 + 2) + B(-2 - 3) \implies B = -1
Which gives us our final expression
\frac{3x + 11}{x^2 - x - 6} = \frac{4}{x - 3} - \frac{1}{x + 2}
Which as shown above, makes the integral trivial to solve.
\int{{\frac{{3x + 11}}{{{x^2} - x - 6}}\,dx}} = 4\ln |x - 3| - \ln |x + 2| + C.
Problems
These problems are very tedious, and I opted not to include too many as distinct linear factors are the most common use of partial fractions.
Integrals involving distinct linear factors
Evaluate the following integral
\int \frac{1}{(x-1)(x-2)} \, dx
Evaluate the following integral
\int \frac{1}{(x+a)(x+b)} \, dx
Evaluate the following integral
\int \frac{x-9}{(x+5)(x-2)} \, dx
Evaluate the following integral
\int \frac{x+c}{(x+a)(x+b)} \, dx
Integrals involving repeated linear factors
Evaluate the following integral
\int \frac{x^2 - x + 1}{(x+1)^3} \, dx
Evaluate the following integral
\int \frac{x + 7}{x^2(x+2)} \, dx
Integrals involving distinct quadratic factors
Evaluate the following integral
\int \frac{x^3 + x^2 + 2x + 1}{(x^2 + 1)(x^2 + 2)} \, dx
We can break up the integral as it contains distinct quadratic factors.
\frac{x^3 + x^2 + 2x + 1}{(x^2 + 1)(x^2 + 2)} = \frac{Ax + B}{x^2 + 1} + \frac{Cx + D}{x^2 + 2}
Cross multiplying
x^3 + x^2 + 2x + 1 = (Ax + B)(x^2 + 2) + (Cx + D)(x^2 + 1)
Gives us the following system of equations
\begin{array}{ll}
x^3 & = (A + C)x^3\\
x^2 & = (B + D)x^2\\
2x & = (2A + C)x \\
1 & = (2B + D)
\end{array}
Solving the system yields
\begin{array}{ll}
A = 1 & B = 0\\
C = 0 & D = 1
\end{array}
This solves our decomposition. We now have to integrate
\int \frac{x}{x^2 + 1} + \frac{1}{x^2 + 2} \, dx
The first term can be solved by the substitution u = x^2, and the second term can be evaluated with an \arctan x. This gives us
\int \frac{x^3 + x^2 + 2x + 1}{(x^2 + 1)(x^2 + 2)} \, dx = \frac{1}{2}\ln |x^2 + 1| + \frac{1}{\sqrt{2}} \arctan \left( \frac{x}{\sqrt{2}} \right) + C
Integrals involving repeated quadratic factors
Evaluate the following integral
\int \frac{x^3 + 10x^2 + 3x + 36}{(x - 1)(x^2 + 4)^2} \, dx