Mathematical Infrastructure
Complex Numbers for Fourier
The minimum complex-number machinery you need to read Fourier-domain pages: the field C, the imaginary unit i, modulus and argument, polar form, Euler's formula, and roots of unity. Not complex analysis, just the grounders.
Prerequisites
Why This Matters
The Fast Fourier Transform, the Fourier Neural Operator, and the spectral theory of operators are all written in the language of complex exponentials. If you don't know what means, the page that tells you the FFT decomposes a sequence into "frequency components" reads as ritual.
This page exists to ground that ritual. It is not complex analysis. There is no Cauchy-Riemann, no contour integration, no residue theorem. The goal is narrower: enough vocabulary and a few identities so that , , and all parse without friction.
The Field
Complex Numbers
The complex numbers are the set of formal expressions with , equipped with addition and multiplication that extend the real-number rules subject to the single relation . Concretely, for and : Here is the real part and is the imaginary part .
The symbol is the imaginary unit. It is defined by the property . Nothing else. It is not a "number you can't see"; it is a formal symbol that, once you adjoin it to with this single rule, gives you a field. That field happens to be algebraically closed: every nonconstant polynomial with complex coefficients has a root in . This is the fundamental theorem of algebra and is why , not , is the natural setting for spectra of matrices.
Modulus and Argument
For :
- The conjugate is .
- The modulus (absolute value) is .
- The argument is the angle such that , defined for .
Identities: , , and .
Geometrically, is with extra structure. The modulus is the Euclidean norm. The argument is the angle from the positive real axis. Multiplication by a complex number rotates by and scales by . This rotation-and-scaling picture is the source of all the geometric intuition you will ever need.
Polar Form and Euler's Formula
The polar form , with and , makes multiplication trivial: . The compact form is Euler's formula.
Euler's Formula
Statement
For every , In particular , and for all .
Intuition
Define . Differentiate: , with . The unique solution to , is , where the complex exponential is defined by its power series. So .
Proof Sketch
The complex exponential is defined by the absolutely convergent series for . Substituting and grouping by parity, the even powers contribute the Taylor series of and the odd powers contribute . This proves termwise.
Why It Matters
Every sinusoid is the real part of a complex exponential: . Linear time-invariant systems acting on sinusoids become diagonal in the basis of complex exponentials, which is the entire reason Fourier methods exist. The eigenfunction property is also why differentiation becomes multiplication in the Fourier domain, the trick the Fourier Neural Operator exploits.
The polar form is then . Multiplication is , division flips the sign of the angle, and powers are (de Moivre).
Roots of Unity
The equation has exactly complex solutions, called the th roots of unity: They lie on the unit circle, evenly spaced. The DFT matrix is built entirely out of these roots: the entry of the DFT is , scaled by in the unitary convention. Every fact about the FFT, and the divide-and-conquer that makes it tractable, comes from the multiplicative structure .
Worked Example: Multiplying Two Complex Numbers
Let and . Then , , and , . By the polar identities and . Direct multiplication gives . Check: , so . The two computations agree, as they must.
Common Confusions
i is not 'sqrt(-1)'
The notation is misleading because the square-root function on the negative reals is not single-valued: both and square to . The correct definition is the rule , treating as a formal symbol. Writing for negative reals leads to contradictions like . The identity holds only when .
The argument is multivalued
For , the angles and for any integer all describe the same point. The convention is the principal value. This matters when you take logarithms () or fractional powers, where branch choices change the answer.
Exercises
Problem
Verify Euler's formula at four checkpoints by direct computation: , , , . State each value of in standard form .
Problem
Show that the roots of unity sum to zero: for .
References
Related Topics
Last reviewed: April 18, 2026
Prerequisites
Foundations this topic depends on.