laplace - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


inttrans

  

laplace

  

Laplace transform

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

laplace(expr, t, s)

Parameters

expr

-

expression, equation, or set of expressions and/or equations to be transformed

t

-

variable expr is transformed with respect to t

s

-

parameter of transform

opt

-

option to run this under (optional)

Description

• 

The laplace function computes the Laplace transform (F(s)) of expr (f(t)) with respect to t, using the definition:

Fs=0ftⅇstⅆt

• 

Expressions involving a wide variety of functions including exponentials, trigonometrics, Bessel functions, error functions, and many others can be transformed.

• 

The laplace function also recognizes derivatives (diff or Diff) and integrals (int or Int).

• 

When transforming expressions like diff(y(t), t, s), laplace will insert the initial values y0, Dy0, etc.  Dy0 is the value of the first derivative at 0; DDy0 is the second derivative at 0, and so on.

• 

Both laplace and invlaplace recognize the Dirac-delta (or unit-impulse) function as Dirac(t) and Heaviside's unit step function as Heaviside(t).

• 

Users can add their own functions to laplace's internal lookup table by using the addtable function.

• 

If the option opt is set to 'NO_INT', then the program will not resort to integration of the original problem if all other methods fail.  This will increase the speed at which the transform will run.

• 

The command with(inttrans,laplace) allows the use of the abbreviated form of this command.

Examples

with(inttrans):

laplace(t^2+sin(t)=y(t), t, s);

(1)

laplace(t^(3/2)-exp(t)+sinh(a*t), t, s);

3π4s521s1+aa2+s2

(2)

laplace(diff(y(t), t$2)-y(t)=sin(a*t), t, s-2);

s22?Dy0s2y0?=as22+a2

(3)

laplace(BesselI(0,a*t), t, s);

1a2+s2

(4)

laplace(Heaviside(t-c)*f(t),t,s);

Heavisidetcft,t,s

(5)

assume(c,positive);

laplace(Heaviside(t-c)*f(t),t,s);

ⅇsc~?

(6)

addtable(laplace,myfunc(t),Myfunc(s),t,s):

laplace(t^3*exp(a*t)*myfunc(4*t),t,w);

D3Myfuncw4a4256

(7)

addtable(laplace,myfunc2(t*a)^n,1/((abs(n)+1)/2)!*Myfunc2(s)+a,t,s,{a,n},
         n::odd):

laplace(myfunc2(4*t)^7,t,w);

Myfunc2w24+4

(8)

Compatibility

• 

The inttrans[laplace] command was updated in Maple 2019.

See Also

dsolve

inttrans

inttrans[addtable]

inttrans[invlaplace]