Skip to main content

Questions tagged [integral-transforms]

Questions about transforms of functions by means of integration, such as Fourier transforms and Laplace transforms. Many integral transforms can be inverted by means of another integral transform.

Filter by
Sorted by
Tagged with
2 votes
1 answer
90 views

Although there is a ready-made code for the inverse Laplace transform in Mathematica, I want to manually write the code to define the inverse Laplace transform so I can modify it. This is my attempt: <...
ahmed's user avatar
  • 109
1 vote
0 answers
127 views

I found one related question here, but I am looking for other possible solutions for this DiracDelta function in the Fourier transform. ...
Spin's user avatar
  • 125
1 vote
0 answers
107 views

It does not work for me even on the simplest elementary functions. BilateralLaplaceTransform[Sin[t], t, x] ...
Anixx's user avatar
  • 3,862
4 votes
2 answers
504 views

Solve, via Laplace transforms \begin{align} w_{tt}&=w_{xx}\\ w(0,t)&=g(t), \lim_{x \rightarrow \infty}w(x,t)=0, \: x,t\geq 0\\ w(x,0)&=0=w_t(x,0) \end{align} where $w$ is the ...
Athanasios Paraskevopoulos's user avatar
9 votes
1 answer
224 views

I'm having unexpected difference applying inverse Mellin transform after a simple algebraic rearrangement (1/(-1 + 2 s) vs ...
Yaroslav Bulatov's user avatar
2 votes
1 answer
127 views

Do not know if this was asked before. Why in V 14.1 this works ClearAll[a, s]; InverseLaplaceTransform[Exp[a*s], s, t, Assumptions -> a > 0]; % /. a -> 1 ...
Nasser's user avatar
  • 156k
2 votes
1 answer
188 views

I want to calculate numerically the inverse Laplace transform by the "Piessens" method of a complicated function given in terms of a numerical integral. However errors occur for functions ...
NessunDorma's user avatar
1 vote
2 answers
142 views

I am trying to solve the following integral using Mathematica $\int_{0}^1 dz \int_{0}^{1} dz' \exp(-k|z-z'|)\cos[\pi p z] \cos[\pi q z]$, with $p,q\in \mathbb{Z}$. To do so, I am doing the following: <...
sined's user avatar
  • 595
2 votes
1 answer
193 views

I'm facing an error when trying to solve a simple Laplace-transformed PDE with one basic boundary condition, followed by applying the InverseLaplaceTransform. The ...
Ali Alabdrabulrasul's user avatar
6 votes
1 answer
282 views

Bug introduced in 14.0, persisting through 14.3. I am trying to convert my boundary condition to its Laplace transform as in this picture: I have tried to do so using the following code: ...
Ali Alabdrabulrasul's user avatar
2 votes
1 answer
284 views

I am trying to derive the inverse Laplace transform of the following Laplace transform: $$ \mathcal{L}(d, \sigma; t) = \left(\sec \left(\frac{\pi d}{2}\right) \left(\left(\sigma ^4 t^2-1\right)^{-d/2}...
DysonSphere's user avatar
4 votes
0 answers
220 views

What's wrong in this LaplaceTransform? ...
Igor Kotelnikov's user avatar
0 votes
2 answers
176 views

I observe some strange behaviour of Mathematica when pulling functions into the integrator. I know that Mathematica's capabilities are limited when computing Stieltje or Lebesgue Integrals. But even ...
oyy's user avatar
  • 187
1 vote
2 answers
193 views

I started to use Mathematica just recently and tried to do the following simple integral: The result I get from Integrate[1/(Exp[x]+1),x] is ...
Tommy's user avatar
  • 71
3 votes
2 answers
170 views

Initially, I was trying to invert the following expression: $$ \frac{e^{-a\sqrt s}}{s-c} $$ and got the following result: ...
KNVCSG's user avatar
  • 31
1 vote
1 answer
194 views

I want to solve the following partial integro-differential equation for $\delta(x,t)$: $$ 1-B \cdot \frac{\partial \delta(x, t)}{\partial t}=\frac{1}{\pi} \int_{-1}^1 \frac{\partial \delta(s, t)}{\...
Rui's user avatar
  • 11
0 votes
1 answer
160 views

While trying to evaluate the Laplace transform below $$I = \int_{0}^{\infty}e^{-st}B(\frac{1}{2}-it,\frac{3}{2}+it)\mathrm{d}t,$$ invoking ...
user avatar
3 votes
3 answers
311 views

Consider the following Laplace transform: $$\mathcal{L}\{\dfrac{\sin{2x}}{x}\}$$ To calculate it, I'd write LaplaceTransform[Sin[2 x] / x, x, p] into both Wolfram ...
Mehrshad Khansarian's user avatar
3 votes
1 answer
134 views

I want to solve the IVP Laplace transform for the following: $$y''-2y'+y=3e^t$$ with $$y(0)=1, \; y'(0)=1.$$ How would I input this in Wolfram Language? I've tried a bunch of different things and ...
JasonF's user avatar
  • 33
1 vote
1 answer
107 views

By default, it appears that Mathematica won't use the convolution theorem to write an inverse Laplace transform in the form of a convolution of two functions. For example, ...
Matt's user avatar
  • 455
4 votes
1 answer
190 views

Consider the following integral: $$\int_0^1 Z_n^m(r)\ J_m(\rho r) r dr$$. The solution of this should contain a single Bessel function: $$(-1)^{(m-n)/2}\ J_{n+1} (\rho)/\rho$$ (see https://www.osti....
AstronomyGeek's user avatar
1 vote
0 answers
131 views

How can I code any type of integral transform with its inverse integral transform in Mathematica which gives the correct results and properties? Below is the example for Elzaki transform: ...
Kishor Kshirsagar's user avatar
5 votes
1 answer
147 views

I am trying to solve the linear Schrödinger equation with the Fourier transform. I have difficulty making the corresponding graph when I solve the problem numerically. Can you explain to me what is my ...
Athanasios Paraskevopoulos's user avatar
1 vote
1 answer
169 views

I came across one such integral in my calculations, for which there is no analytical solution. But it exists numerical solution, so how can I derive analytical solution of this integral from numerical ...
little star's user avatar
3 votes
2 answers
264 views

I am trying to numerically integrate the following double integral in Mathematica for different values of t. ...
HadamardN2's user avatar
0 votes
1 answer
170 views

I am solving a system of first-order equations using matrix operations and the Laplace Transform. I begin with the matrix equation that represents the solution to my system, like this: $$ \underline{\...
villaa's user avatar
  • 201
8 votes
4 answers
789 views

Any tips how to massage the following to get computed by Mathematica for $p>1$? I suspect the result should be expressible in terms of exponential integral ...
Yaroslav Bulatov's user avatar
5 votes
1 answer
149 views

I am trying to compute the following double integral int2[n_] := NIntegrate[ n^2 * u * BesselJ[0, u]^n * r^2 * BesselJ[0, n*r*u], {r, 0, 1}, {u, 0, Infinity}] for ...
epsilone's user avatar
  • 153
1 vote
2 answers
101 views

I have to use InverseFourierSinTransForm in Mathematika for the function u[ω,t] but infortunately it does not work.It gives back the same! I tried it without the assumptions but it does not work again!...
george's user avatar
  • 43
2 votes
1 answer
177 views

Parseval's theorem (in one dimension) is a fundamental result in the theory of Fourier transforms. If $f(t) \Leftrightarrow F(\omega )$ are Fourier transform pairs and $t$ (time) and $\omega$ (...
David G. Stork's user avatar
1 vote
1 answer
199 views

I am trying to evaluate the expression FourierTransform[[m (a^2 - t^2 - I g t)]^-1, t, ω] in Mathematica. It gives me the error message that "Syntax: "[m(...
Solidification's user avatar
0 votes
1 answer
104 views

I have to solve an Integral of the following type ...
Sourav Das's user avatar
2 votes
0 answers
88 views

I'm looking to compute the following quantity for $A$ where $A$ is a convergent positive definite $d\times d$ diagonal + rank1 matrix (DPR1). $$f(s)=\operatorname{Tr}(A^s)$$ Earlier answer answer by ...
Yaroslav Bulatov's user avatar
0 votes
1 answer
88 views

I have a plot which suffers from poor numeric accuracy, any tips on how I can improve the quality of this plot? ...
Yaroslav Bulatov's user avatar
1 vote
0 answers
105 views

Computing inverse of Laplace transform numerically in Mathematica seems very slow and requires $k$ calls for $k$ points. Is there a faster way to do it for a set of $k$ points, ie $k\approx 1000$? <...
Yaroslav Bulatov's user avatar
1 vote
0 answers
103 views

When executing in 13.2 on Windows 10, the command FourierTransform[DiracDelta@Cos[x], x, s] results in ...
user64494's user avatar
0 votes
0 answers
67 views

I would like to do a Hilbert transformation in Mathematica on a function. However, it does not seem to give a right result. The Hilbert transform is given by So I did : ...
Superunknown's user avatar
5 votes
1 answer
403 views

Let us consider in 13.2 on Windows 10 FourierTransform[1/Sinh[x]^2, x, k] -((2 + k \[Pi] Coth[(k \[Pi])/2])/Sqrt[2 \[Pi]]) ...
user64494's user avatar
6 votes
1 answer
680 views

I am trying to calculate the Laplace Transformation of the following function: $$f(x) = \theta(t+1)-\theta(t-1)$$ where $\theta(t)$ is the Heaviside step function defined as: $${\displaystyle \theta(x)...
Konstantinos Zafeiris's user avatar
8 votes
1 answer
394 views

Let us consider in version 13.1 on Windows 10 r = Integrate[1/(x - a)/Sqrt[1 - x^2], {x, -1, 1}, Assumptions -> a \[Element] Reals] ...
user64494's user avatar
0 votes
0 answers
124 views

I have code: A = 1; ω0 = 5*10^6; τ0 = 3*10^-3*Sqrt[2/Log[2]]/(5.85*10^3); s0[t_] = A*E^(-t^2/τ0^2)*Cos[ω0*t]; Phi[ω_] = LaplaceTransform[s0[t], t, ω] The last ...
Cpp Nosavvier's user avatar
2 votes
0 answers
92 views

Let us consider in version 13.1 on Windows 10 ClearAll["Global`*"]; a = InverseLaplaceTransform[s*Log[(s - 1)/(s + 1)], s, x] ...
user64494's user avatar
4 votes
1 answer
279 views

I have a general question. I want to know what algorithm (The name of this numerical method) is already used to calculate a numerical Inverse Laplace in Mathematica. I used the function ...
Ali AlCapone's user avatar
2 votes
1 answer
82 views

I tried to validate this function from 0 to 50 but it takes very long time, is there a faster way to validate this function for t from 0 to 50 and add them in a list? ...
Ali AlCapone's user avatar
1 vote
0 answers
266 views

I can't even get an inverse Laplace for this expression numerically in mathematica, is there a way to inverse this equation below? I have also tried to use fixt talbot package for a numerical ...
Ali AlCapone's user avatar
0 votes
2 answers
219 views

I want to find the inverse triple Laplace transform of $L^{-1}_{x_{3}} L^{-1}_{x_{2}} L^{-1}_{x_{1}} \left[ \frac{-1}{s^2_{1} + s^2_{2} + s^2_{3}} \right]$. I did \begin{align*} L^{-1}_{x_{3}} L^{-1}...
Abdulhameed Qahtan Abbood Alta's user avatar
0 votes
1 answer
203 views

I am trying to Fourier transform an expression containing an integral like this: FourierTransform[Integrate[f[v]*Cos[w[v]*t],{v,-v_0,v_0}],t,k] where ...
raeel's user avatar
  • 1
2 votes
0 answers
64 views

I'd like to clean up the result I obtained from an inverse Laplace transform: First of all, I'd like to replace the square root expressions in the hyperbolic function arguments (part encircled in ...
Hans's user avatar
  • 21
0 votes
0 answers
192 views

I am wondering how to implement the Radon transform, the 3D Radon transform, that is, given a 'density' function $f: \mathbb{R}^3\to \mathbb{R}$ The Radon transform of $f$ is $$Rf(s,w)= \int_{x\cdot w=...
NotaChoice's user avatar

1
2 3 4 5