While solving an ODE using the Laplace transform, I ran into the following problem:
$$f(t) = \mathcal L^{-1}\Bigg( {se^{cs} \over (e^s+e^{-s})(k-s)^2(k+s)^2}\Bigg) \tag 1$$
where $c$ and $k$ are constants. I can't seem to solve this because of the $(e^s+e^{-s})$ term in the denominator. How can I find the inverse Laplace transform of my expression?
With Mathematica help:
$$\mathcal{L}_s^{-1}\left[\frac{s \exp (c s)}{(\exp (s)+\exp (-s)) (k-s)^2 (k+s)^2}\right](t)=\\\sum _{m=0}^{\infty } -\frac{(-1)^m e^{-k (-1+c-2 m+t)} \left(-1+e^{2 k (-1+c-2 m+t)}\right) (1-c+2 m-t) \theta (-1+c-2 m+t)}{4 k}$$
where: $\theta (c-2 m+t-1)$ is the Heaviside theta function.
Mathematica can compute this series,but using
FullSimplifygives long expression withFloorfunction.Mathematica code:
Sum[-(((-1)^m E^(-k (-1 + c - 2 m + t)) (-1 + E^(2 k (-1 + c - 2 m + t))) (1 -c + 2 m - t) HeavisideTheta[-1 + c - 2 m + t])/(4 k)), {m, 0, Infinity}]