Summary: This module describes the method of partial fraction expansion, in which a ratio of polynomials can be split into a sum of small polynomials. The Heaviside cover-up method is discussed in detail with examples. Finding a partial fraction expansion in matlab is also discussed.
Note: Your browser may not currently support MathML. See our browser support page for additional details. You can always view the correct math in the PDF version.
Splitting up a ratio of large polynomials into a sum of ratios of small polynomials can be a useful tool, especially for many problems involving Laplace-like transforms. This technique is known as partial fraction expansion. Here's an example of one ratio being split into a sum of three simpler ratios:
There are several methods for expanding a rational function via partial fractions. These include the method of clearing fractions, the Heaviside "cover-up" method, and different combinations of these two. For many cases, the Heaviside "cover-up" method is the easiest, and is therefore the method that we will introduce here. For a more complete discussion, see Signal Processing and Linear Systems by B.P. Lathi, Berkeley-Cambridge Press, 1998, pp-24-33. Some of the material below is based upon this book.
Let's say we have a proper function
The first step is to factor the denominator
where
where
We can easily generalize this to a solution for any one of the unknown coefficients:
This method is called the "cover-up" method because
multiplying both sides by
In this example, we'll work through the partial fraction expansion of the ratio of polynomials introduced above. Before doing a partial fraction expansion, you must make sure that the ratio you are expanding is proper. If it is not, you should do long division to turn it into the sum of a proper fraction and a polynomial. Once this is done, the first step is to factor the denominator of the function:
Now, we set this factored function equal to a sum of smaller fractions, each of which has one of the factored terms for a denominator.
To find the alpha terms, we just cover up the
corresponding denominator terms in
We now have our completed partial fraction expansion:
When the function
Somewhat more special care must be taken to find the partial fraction expansion. The non-repeated terms are expanded as before, but for the repeated root, an extra fraction is added for each instance of the repeated root:
All of the alpha constants can be found using the non-repeated roots method above. Finding the beta coefficients (which are due to the repeated root) has the same Heaviside feel to it, except that this time we will add a twist by using the derivative to eliminate some unwanted terms.
Starting off directly with the cover-up method, we can find
Now that we have "covered up" the
To find the other values of the beta coefficients, we can
take advantage of the derivative. By taking the derivative
of the equation after cover-up (with respect to
Generalizing over this pattern, we can continue to take derivatives to find the other beta terms. The solution for all beta terms is
Matlab can be a useful tool in finding partial fraction
expansions when the ratios become too unwieldy to expand by
hand. It can handle symbolic variables. For example, if
you type syms s,
If you've done this and have then made a function, say diff(int(H)). When you use these
functions together, Matlab gives back residue command. Type help residue in Matlab for details.