Possible Duplicate:
How does partial fraction decomposition avoid division by zero?
I've got a question about the domain restriction of $s$ when taking the Laplace Transform. I think my question can be best illustrated with an example.
Let's suppose we have $$ \frac{d^2x}{dt} + \frac{dx}{dt} = e^{3t} + e^{7t}\\ \mathcal{L}\left\{\frac{d^2x}{dt} + \frac{dx}{dt}\right\} = \mathcal{L}\{e^{3t} + e^{7t}\} $$ Assuming the initial conditions are zero. $$ s^2Y(s) + sY(s) = \frac{1}{s-3} + \frac{1}{s-7} \,\forall\, s > 7\\ Y(s)s(s + 1) = \frac{1}{s-3} + \frac{1}{s-7}\\ Y(s) = \frac{1}{s(s-3)(s+1)} + \frac{1}{s(s-7)(s+1)}\\ Y(s) = \frac{A}{s} + \frac{B}{s-3} + \frac{C}{s+1} + \frac{D}{s} + \frac{E}{s-7} + \frac{F}{s+1} $$ The reason why I wrote that $s > 7$ is because $s$ must be sufficiently large for the Laplace Transform to converge, and in the case, $s > 7$ to ensure that $e^{7t}$ does infact converge as $t \to \infty$.
Now, let's say that I want to find $A$, $B$ and $C$.
So I'd say $$ 1 \equiv A(s-3)(s+1) + Bs(s+1) + Cs(s-3) $$ Now to find $A$, I'd have to let $s \to 0$; however, above I said $s > 7$ (otherwise the integral wouldn't converge and we wouldn't even be able to get to this stage).
How does this work? Is it even possible to find the partial fraction coefficients given that $s > 7$?
Thank you.
Edit:
This would make sense to me: $$ \frac{d^2x}{dt} + \frac{dx}{dt} = e^{3t} + e^{7t}\\ \mathcal{L}\left\{\frac{d^2x}{dt} + \frac{dx}{dt}\right\} = \mathcal{L}\{e^{3t} + e^{7t}\} $$ Assuming the initial conditions are zero. $$ s_1^2Y(s) + s_1Y(s) = \frac{1}{s_2-3} + \frac{1}{s_3-7} $$ Where $s_1 > 0$, $s_2 > 3$ and $s_3 > 7$.
$$ Y(s)s_1(s_1 + 1) = \frac{1}{s_2-3} + \frac{1}{s_3-7}\\ Y(s) = \frac{1}{s_1(s_2-3)(s_1+1)} + \frac{1}{s_1(s_3-7)(s_1+1)}\\ Y(s) = \frac{A}{s_1} + \frac{B}{s_2-3} + \frac{C}{s_1+1} + \frac{D}{s_1} + \frac{E}{s_3-7} + \frac{F}{s_1+1}\\ \therefore 1 \equiv A(s_2-3)(s_1+1) + Bs_1(s_1+1) + Cs_1(s_2-3) $$ And now, to find $A$, I can let $s_1 \to 0^+$ because $s_1$ is defined for all numbers greater than zero.
This would make sense to me, but I'm not sure if it correct. It seems to me that when we do the Laplace Transform and let $s \to$ some undefined value, it is almost a bit of a fluke that it works out.