inttrans
laplace
Laplace transform
Calling Sequence
Parameters
Description
Examples
Compatibility
laplace(expr, t, s)
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)
The laplace function computes the Laplace transform (F(s)) of expr (f(t)) with respect to t, using the definition:
F⁡s=∫0∞f⁡t⁢ⅇ−s⁢tⅆ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 y⁡0, D⁡y⁡0, etc. D⁡y⁡0 is the value of the first derivative at 0; D⁡D⁡y⁡0 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.
with(inttrans):
laplace(t^2+sin(t)=y(t), t, s);
laplace(t^(3/2)-exp(t)+sinh(a*t), t, s);
3⁢π4⁢s52−1s−1+a−a2+s2
laplace(diff(y(t), t$2)-y(t)=sin(a*t), t, s-2);
s−22⁢?−D⁡y⁡0−s−2⁢y⁡0−?=as−22+a2
laplace(BesselI(0,a*t), t, s);
1−a2+s2
laplace(Heaviside(t-c)*f(t),t,s);
ℒ⁡Heaviside⁡t−c⁢f⁡t,t,s
assume(c,positive);
ⅇ−s⁢c~⁢?
addtable(laplace,myfunc(t),Myfunc(s),t,s):
laplace(t^3*exp(a*t)*myfunc(4*t),t,w);
−D3⁡Myfunc⁡w4−a4256
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);
Myfunc2⁡w24+4
The inttrans[laplace] command was updated in Maple 2019.
See Also
dsolve
inttrans[addtable]
inttrans[invlaplace]
Download Help Document