Online Algebra Calculator
Many of users do not use powerful Maxima computer algebra system for systematic work, but for ad hoc algebraic calculations – equations, functions, matrixes, etc. only. To do this job, it is not useful to download the whole application from a web site.
Function: ilt (<expr>, <s>, <t>) Computes the inverse Laplace transform of <expr> with respect to <s> and parameter <t>. <expr> must be a ratio of polynomials whose denominator has only linear and quadratic factors. By using the functions laplace and ilt together with the solve or linsolve functions the user can solve a single differential or convolution integral equation or a set of them.
![Ilt Example eq1:x*4+y-2=y;
eq2:x+2=y;
linsolve([eq1,eq2],[x,y]);
ilt(s,s,t);](http://maxima-online.org//plot.html?g=i-1818894026.png&t=img&db=r-1212076568)
(%i1) integrate (sinh(a*x)*f(t-x), x, 0, t) + b*f(t) = t**2;
t
/
[ 2
(%o1) I f(t - x) sinh(a x) dx + b f(t) = t
]
/
0
(%i2) laplace (%, t, s);
a laplace(f(t), t, s) 2
(%o2) b laplace(f(t), t, s) + --------------------- = --
2 2 3
s - a s
(%i3) linsolve ([%], [laplace(f(t), t, s)]);
2 2
2 s - 2 a
(%o3) [laplace(f(t), t, s) = --------------------]
5 2 3
b s + (a - a b) s
(%i4) ilt (rhs (first (%)), s, t);
Is a b (a b - 1) positive, negative, or zero?pos; sqrt(a b (a b - 1)) t 2 cosh(---------------------) 2 b a t
(%o4) - ----------------------------- + -------
3 2 2 a b - 1
a b - 2 a b + a
2 + ------------------ 3 2 2 a b - 2 a b + a
There are also some inexact matches for ilt. Try ?? ilt to see them.
(%o1) true (%i2)