I got into trouble when I tried to calculate this integral while doing a quantum field theory ( QFT ) problem: $$ \int_{-\infty}^{+\infty} \sin\left(\,{a\cosh\left(\,{x}\,\right)}\right)\,{\rm d}x $$ The value is $\pi\operatorname{J}_{0}\left(\,{a}\,\right)$, where $\operatorname{J}_{n}\left(\,{x}\,\right)$ is the Bessel function of the first kind.
How can I prove it analytically?
NIntegrate[Sin[Cosh[x]], {x, -1000, 1000}, WorkingPrecision -> 30, MaxRecursion -> 20]for: $a=1$ – Mariusz Iwaniuk Sep 19 '22 at 13:23InverseLaplaceTransform[ Integrate[ LaplaceTransform[Sin[a Cosh[x]], a, s], {x, -Infinity, Infinity}, Assumptions -> s > 0], s, a]we have:\[Pi] BesselJ[0, a]. – Mariusz Iwaniuk Sep 19 '22 at 13:27