Skip to main content
Library homepage
 

Text Color

Text Size

 

Margin Size

 

Font Type

Enable Dyslexic Font
Mathematics LibreTexts

10.4: The Matrix Exponential via the Laplace Transform

( \newcommand{\kernel}{\mathrm{null}\,}\)

You may recall from the Laplace Transform module that may achieve eat via

eat=L1(1sa)

The natural matrix definition is therefore

eAt=L1((sIA)1)

where I is the n-by-n identity matrix.

Example 10.4.1

The easiest case is the diagonal case, e.g.,

A=(1002)

for then

(sIA)1=(1s1001s2)

and so

eAt=(L1(1s1)00L1(1s2))

Example 10.4.2

As a second example let us suppose

A=(0110)

and compute, in matlab,

>> inv(s*eye(2)-A)  
	
	   ans = [ s/(s^2+1),  1/(s^2+1)]
	         [-1/(s^2+1),  s/(s^2+1)]

	>> ilaplace(ans)

	   ans = [ cos(t),  sin(t)]
	         [-sin(t),  cos(t)]
	       
Example 10.4.3

If

A=(0100)

then

>> inv(s*eye(2)-A)  
	
	   ans = [ 1/s,  1/s^2]
	         [   0,    1/s]

	>> ilaplace(ans)

	   ans = [ 1,  t]
	         [ 0,  1]	       

This page titled 10.4: The Matrix Exponential via the Laplace Transform is shared under a CC BY 1.0 license and was authored, remixed, and/or curated by Steve Cox via source content that was edited to the style and standards of the LibreTexts platform.

Support Center

How can we help?