I have the following function to decompose using PFD:
$H(x) = \frac{x^3 + 4x^2 - 11x - 48}{x^3 + 6x^2 + 3x - 10}$
The poles are $1$, $-2$ and $-5$ so I tried to do it this way: finding $a$, $b$ and $c$ such as:
$H(x) = \frac{a}{x-1} + \frac{b}{x+2} + \frac{c}{x+5}$
But it didn't give me a correct result. Doing it that way gives me $(a,b,c) = (-3, 2, -1) $
Is there a specific form of numerator to introduce here? Thanks.