At a basic level, the inverse Laplace transform doesn’t need to be computed by hand. We can consult a table of transforms and work backwards. By definition it’s given by:
As with the forward transform, the inverse transform is linear:
In MATLAB, we can use ilaplace(exp)
.1
Computations
For simple -domain expressions, we don’t need to compute the inverse Laplace transform by hand. In particular, for rational functions, we can perform partial fraction decomposition to get our function in a form that can be converted with .
Oftentimes, it’s easier and faster to use the definition to compute the transform, especially for more difficult functions. In other cases, PFD doesn’t reduce the function enough for the simple method. In this case, we use Cauchy’s residue theorem to get a variant of the definition, where we can instead compute the residues:
where are the poles of the function.
Also: don’t forget to include the unit step function, since the Laplace transform is only defined for non-negative values of . Note also that the residue method doesn’t properly account for time shifts of the unit step, so we must take extra care to apply the transform property prior to applying residue theorem.
Proof
By theorem, suppose is continuous and for some , i.e., is of exponential type . Then we can define for , more precisely:
is well defined and analytic for .
Then we say:
This integral converges if . Moreover, one can show it is differentiable there:
toimprove wtf is this We should think about as a complex plane, which we’ll sometimes call . In particular, it lives in the complex plane anywhere the real part is greater than . It’s analytic there.
By theorem, suppose (as in the previous theorem) is exponential and of exponential type , then we can recover by integrating on a vertical line from . Then:
where .
The formula is obtained as followed. Let be the closed contour of the vertical line and a semicircle towards the right. Apply Cauchy’s integral formula to , which we’ve seen is analytic inside if . Then:
From the intuitive understanding of the integral formula as a sum of many functions that look like:
Something converges. Lost around minute 25 of this lecture by Prof Nachman.
Footnotes
-
”MATLAB has a powerful inverse Laplace transform engine.” - Prof Najm ↩