InverseLaplace Command
CAS Syntax
- InverseLaplace( <Function> )
-
Returns the inverse Laplace transform of the given function.
InverseLaplace(1/(1+t^2))
returns sin(t).
- InverseLaplace( <Function>, <Variable> )
-
Returns the inverse Laplace transform of the function, with respect to the given variable.
InverseLaplace( exp(- a*b),a)
returns Dirac(a−b)
InverseLaplace( exp(- a*b),b)
returns Dirac(b−a)
See also Laplace command. |