The Fourier Transform on the Real Line
Learning objectives
- Write the Fourier transform and the inverse Fourier transform
- Apply the convolution theorem and the time-shift property
- State and use Plancherel's theorem (the continuous analog of Parseval)
- Recognize the Gaussian as the canonical fixed point
What replaces a Fourier series when the function is not periodic but lives on all of ? The discrete index becomes a continuous variable , the sum becomes an integral, and the formulas are nearly identical, with one immensely useful new property. Convolution in space (which describes blurring, smoothing, the action of any linear time-invariant filter) becomes pointwise multiplication in frequency. That single fact, the convolution theorem, is why the Fourier transform is the central tool of signal processing, image analysis, quantum mechanics, and partial differential equations.
Definition and inversion
For a function in (so the integrals exist), define the Fourier transform:
The inverse is symmetric:
(Caveat: different books use different normalisations. The convention here uses in the exponent and no leading factors; some texts put in front of both formulas, others put in front of one. Any consistent choice works; just stick to one.)
The core properties
Linearity: . The Fourier transform is a linear operator on (and extends to other spaces).
Time shift: if , then . Shifting in time multiplies the transform by a phase factor, the magnitude is unchanged.
Modulation: if , then . Multiplying by a complex exponential in time shifts the spectrum, this is how AM radio works.
Scaling: if with , then . Compressing in time stretches in frequency, and vice versa, the uncertainty principle in disguise.
The convolution theorem
Define the convolution of and :
The convolution theorem states:
Convolution (the messy, expensive integral) becomes pointwise multiplication (cheap and parallel) in the frequency domain. That is the whole reason the Fast Fourier Transform exists in production code: you transform, multiply, and inverse-transform, an procedure that would otherwise cost .
Plancherel's theorem
The continuous analog of Parseval:
The Fourier transform preserves the norm, so it extends from to a unitary operator on all of .
- MRI k-space reconstruction: An MR scanner measures the Fourier transform of the spin-density map of the slice being imaged. The acquired raw data live in k-space, and the image is reconstructed by the inverse Fourier transform, this is literally the inversion formula at industrial scale.
- Heisenberg uncertainty principle: If is well-concentrated in , then must be spread out in . The product of the two spreads is bounded below by a constant, the scaling property is the elementary version, and the rigorous statement is the variance inequality .
- Spectral analysis of seismic data: Earthquake records are non-periodic. To estimate the dominant frequencies (and hence subsurface structure), seismologists compute , the power spectrum, via FFT.
- Heat equation on the line: The heat equation on is solved by Fourier transforming in . The PDE becomes the ODE , whose solution is , a Gaussian multiplier in the frequency domain.
Pause and think: The Gaussian satisfies (the standard Gaussian is its own Fourier transform). What is , and what classical integral does it equal?
Try it
- Compute for the rectangular pulse on , zero elsewhere. (Answer: .)
- If , find . What does it represent? (Hint: it equals .)
- Apply the time-shift property to compute the Fourier transform of , where is the standard rectangular pulse from the first exercise.
- If , what is ? (Plancherel.)
- Use the convolution theorem: if and , write down .
A trap to watch for
The most common Fourier-transform error is using the wrong convention. The formulas above use in the forward transform, but many physics books use instead. That switch changes the inversion constant (you pick up a ) and changes the form of Plancherel's constant. Always check the convention printed on page 1 of whatever reference you are using, and never copy formulas between books without verifying their conventions match.
What you now know
You can compute Fourier transforms of basic signals, apply the convolution theorem to convert a hard convolution into easy multiplication, and use Plancherel to track energy across the transform. The next chapter applies all of this Fourier machinery (plus separation-of-variables techniques) to solve the three canonical PDEs: Laplace, heat, and wave.
Mark section complete →
References
- Garrity, T. (2002). All the Mathematics You Missed: But Need to Know for Graduate School. Cambridge University Press, ch. 13.
- Stein, E. M., Shakarchi, R. (2003). Fourier Analysis: An Introduction. Princeton University Press, ch. 5.
- Folland, G. B. (1992). Fourier Analysis and Its Applications. Wadsworth & Brooks/Cole, ch. 7-8.
- Bracewell, R. N. (1999). The Fourier Transform and Its Applications (3rd ed.). McGraw-Hill, ch. 6-9.
- Strichartz, R. S. (2003). A Guide to Distribution Theory and Fourier Transforms. World Scientific, ch. 2.