Prerequisites
- Basic Integration
- Basic Algebra
- du substitution
Method
Partial Fraction is thinking one fraction as a sums of multiple fractions.
(Especially the ones with factorable denominator)
So it becomes easier to integrate with sums because we can now distribute integral.
\[\begin{gather} \int \frac{f(x)}{g(x)h(x)} \,dx = \int \frac{a}{g(x)} + \frac{b}{h(x)} \,dx \end{gather}\]Plug in values to isolate the variable
\[\begin{gather} a \cdot g(x) + b \cdot h(x) = f(x) \end{gather}\]We can let $x = k$ which makes $g(k) = 0$.
So the equation becomes
\[\begin{gather} a \cdot g(k) + b \cdot h(k) = f(k) \\ \implies a \cdot 0 + b \cdot h(k) = f(k) \end{gather}\]Then we can solve for b since $h(k)$ and $f(k)$ is now evaluated to constant.
We can repeat this to solve a or other variables.
Systems of equation
We can also use systems of equation to solve for a and b.
Then we can solve for a and b.
Integration Example
\[\begin{align} \int \frac{x}{x^2 -4} \,dx &= \int \frac{x}{(x+2)(x-2)} \,dx \\ &= \int \frac{a}{x+2} + \frac{b}{x-2} \,dx \\ \because x &= a(x-2) + b(x+2) \end{align}\]Then plug in values to isolate the variable.
\[\begin{gather} \text{let} \, x=2 \\ x = a(x-2) + b(x+2) \\ 2 = a(2-2) + b(2+2) \\ 2 = a \cdot 0 + b\cdot 4\\ 2= 4b\\ \therefore b=\frac{1}{2}\\ \text{let} \, x= -2 \\ x = a(x-2) + b(x+2) \\ -2 = a(-2-2) + b(-2+2) \\ 2 = a \cdot (-4) + b\cdot 0\\ -2= -4a\\ \therefore a=\frac{1}{2} \end{gather}\]Plug a and b into original equation,
We can also use du substitution to check our work in this example.