Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 3

LAPLACE TRANSEFORM

1) y = 15

syms t s
y1=15
laplace(y1,t,s)

INVERSE LAPLACE
TRANSFORM
syms s t
y1=15/s
ilaplace(y1,s,t)

y1 =

y1 =

15

15/s

ans =
15/s
2) y = 7t

3) y = e-8t

ans =
15

syms t s
y2=7*t
laplace(y2,t,s)

syms s t
y2=7/s^2
ilaplace(y2,s,t)

y2 =

y2 =

7*t

7/s^2

ans =

ans =

7/s^2

7*t

syms t s
y3=exp(-8*t)
laplace(y3,t,s)

syms s t
y3=1/(s+8)
ilaplace(y3,s,t)

y3 =

y3 =

exp(-8*t)

1/(s+8)

ans =

ans =

1/(s+8)

4) y = sin(5t) syms t s
y4=sin(5*t)
laplace(y4,t,s)

5) y =
cos(5t)

syms s t
y4=5/(s^2+25)
ilaplace(y4,s,t)

y4 =

y4 =

sin(5*t)

5/(s^2+25)

ans =

ans =

5/(s^2+25)

sin(5*t)

syms t s
y5=cos(5*t)
laplace(y5,t,s)

syms t s
y5=s/(s^2+25)
ilaplace (y5,s,t)

y5 =

y5 =

cos(5*t)

s/(s^2+25)

ans =

ans =

s/(s^2+25)

6) y = 8te-2t

exp(-8*t)

cos(5*t)

syms t s
y6=8*t*exp(-2*t)
laplace(y6,t,s)

syms s t
y6=8/(s+2)^2
ilaplace(y6,s,t)

y6 =

y6 =

8*t*exp(-2*t)

8/(s+2)^2

7) y=e2t
sin(2t)

8) y= e2t
cos(2t)

ans =

ans =

8/(s+2)^2

8*t*exp(-2*t)

syms t s
y7=exp(-2*t)*sin(2*t)
laplace(y7,t,s)

syms s t
y7=2/(s^2+4*s+8)
ilaplace(y7,s,t)

y7 =

y7 =

exp(-2*t)*sin(2*t)

2/(s^2+4*s+8)

ans =

ans =

2/(s^2+4*s+8)

exp(-2*t)*sin(2*t)

syms t s
y8=exp(-2*t)*cos(2*t)
laplace(y8,t,s)

syms s t
y8=(s+2)/(s^2+4*s+8)
ilaplace(y8,s,t)

y8 =

y8 =

exp(-2*t)*cos(2*t)

(s+2)/(s^2+4*s+8)

ans =

ans =

(s+2)/(s^2+4*s+8)

exp(-2*t)*cos(2*t)

You might also like