0% found this document useful (0 votes)
39 views1 page

Func - Func: Clear Fullsimplify Inverselaplacetransform

This document contains examples of taking the inverse Laplace transform of various functions and solving differential equations using the Laplace transform. It defines an inverse Laplace transform function, lists several functions, applies the inverse Laplace transform to each, and solves three differential equations with the Laplace transform, obtaining solutions for x in each case.

Uploaded by

Kyle Nguyen
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
39 views1 page

Func - Func: Clear Fullsimplify Inverselaplacetransform

This document contains examples of taking the inverse Laplace transform of various functions and solving differential equations using the Laplace transform. It defines an inverse Laplace transform function, lists several functions, applies the inverse Laplace transform to each, and solves three differential equations with the Laplace transform, obtaining solutions for x in each case.

Uploaded by

Kyle Nguyen
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

2.

2
Clear[inverseLaplace]
inverseLaplace[func_] := (FullSimplify @* InverseLaplaceTransform)[func, s, t]
Clear[functionList]
3
3
3
3
1
3
s+4
1
functionList = ,
,
,
,
,
;
,
,
s s + 2 (s + 2)2 s3 2 s2 + 9 s2 + 4 s + 8 s2 + 4 s + 8 (s + 2)2
({#, inverseLaplace /@ #} &[functionList]) // Transpose // Grid[#, Frame All] &
3

s
3

3 -2 t

2+s
3

3 -2 t t

(2+s)2

3 t2

3
s3
1

2 9+s2

3
8+4 s+s2
4+s
8+4 s+s2
1

Sin[3 t]

3 -2 t Cos[t] Sin[t]
-2 t (Cos[2 t] + Sin[2 t])
-2 t t

(2+s)2

2.3
Solve[LaplaceTransform[x [t] + 4 x [t] + 3 x[t] UnitStep[t], t, s] /.
{x[0] 0, x [0] 0, LaplaceTransform[x[t], t, s] x}, x]
1
x

s 3 + 4 s + s2

Solve[LaplaceTransform[x [t] + 2 x [t] + x[t] UnitStep[t], t, s] /.


{x[0] 1, x [0] 1, LaplaceTransform[x[t], t, s] x}, x]
1 + 3 s + s2
x

s (1 + s)2

Solve[LaplaceTransform[x [t] + 2 x [t] + x[t] UnitStep[t], t, s] /.


{x[0] 0, x [0] 0, LaplaceTransform[x[t], t, s] x}, x]
1
x

s (1 + s)2

You might also like