I am trying to calculate the inverse Fourier transform of "1" using two approaches. One using the Integrate option and the other with InverseFourierTransform, so the function looks like the following, with "w" as the frequency.
Integrate[1*Exp[I w t], {w, -Infinity, Infinity}, Assumptions -> {Element[w, Reals], Element[t, Reals]}]
The integral does not converge in this range from -infinity to +infinity. If we use {{w, -1, 1}, then we get sinc function 2sin(t)/t.
And,
InverseFourierTransform [1, w, t]
Gives the desired delta function Sqrt[2 \[Pi]] DiracDelta[t]
Is there a way to obtain Dirac Delta as an answer with the Integrate option?
(Inverse)FourierTransformis designed to compute the continuation of the (inverse) fourier transform of quite general distributions.Integrateis supposed to work only for (improperly) integrable functions... somewhat by definition. Andw |-> 1*Exp[I w t]is just not improperly integrable. – Henrik Schumacher Mar 24 '22 at 22:19Integrate[1*Exp[I w t], {w, -Infinity, Infinity}, Assumptions -> {Element[w, Reals], Element[t, Reals]}]diverges, but the Fourier transform of1is defined in another way (e.g. see the "Tempered distibution" section here and that article). – user64494 Mar 25 '22 at 04:39