Summary: (Blank Abstract)
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.
As one goes through life one transforms each hard problem into an easy problem, solves the easy one, and then applies the inverse transform to arrive at the solution of the hard problem.
The Laplace transform is the tool used to take dynamical (hard)
problems to easy (static) problems. It does so by multiplying a
given function, say
>> syms t
>> laplace (exp(t))
ans = 1/(s-1)
>> laplace (t*exp(-t))
ans = 1/(s+1)^2
This transform enjoys many wondrous properties. The two most important of these are:
These two properties are instrumental in turning linear
differential equations into linear algebraic equations. Once the
latter are solved we must then return from the
>> syms s
>> ilaplace(1/(s-1))
ans = exp(t)
>> ilaplace(1/(s+1)^2)
ans = t*exp(-t)
For application of this transform to concrete dynamical systems please visit module of The Matrix Exponential via the Laplace Transform and module of Laplace Example in course ELEC 302.