This page assumes you know nothing about the notation on the parent topic. We build every symbol from the ground up, in an order where each one only uses things already defined.
n is just an index: it names which reading, counting from 0. So x0 is the first, x1 the second, and so on.
N is the total count of readings.
We start counting at 0, so the last index is N−1, not N. This "off by one" is a lifelong habit in this subject — get comfortable now.
Why the topic needs it: the whole DFT eats a list x0…xN−1 and spits out another list. If you don't picture the input as dots on a timeline, nothing later has a home.
The parent page is full of i, eiθ, and bars over letters. All of it lives in one picture: a point (or arrow) in a flat plane.
The horizontal axis is the real axis, the vertical axis is the imaginary axis.
Look at the red arrow in the figure: its length is r and the angle it makes with the right-pointing axis is θ.
Why the topic needs it: the parent's line "XN−k=Xk for real input" is a mirror-symmetry statement. Without the bar picture it's gibberish; with it, it just says two output arrows are mirror images.
This is the single most important symbol on the whole parent page, so we earn it carefully.
Read the figure slowly:
Every eiθ sits on the circle of radius 1 (the "unit circle"), because cos2θ+sin2θ=1 always.
Increasing θ by a little rotates the red dot a little counter-clockwise.
θ is measured in radians: a full trip around the circle is 2π radians (not 360). So e2πi=e0=1 — you're back where you started.
Why the topic needs it: the "pure rotating waves" the parent talks about are literally eiθ with θ marching forward. Each DFT frequency is one such spinning arrow.
Recall Why is
eiθ a rotation and not just growth?
Ordinary ex (real x) grows. Multiplying the exponent by i turns "grow outward" into "turn sideways", so the value circles instead of escaping. ::: The factor i converts stretching into turning.
Before we go further, meet the two letters the parent formula uses as exponents on ωN:
In the figure (N=8): the red dot is ω8, one step clockwise from 1. The other black dots are its powers ω82,ω83,… — you visit every dot and land back on 1 after N steps, because:
ωNN=(e−2πi/N)N=e−2πi=1.
Two facts the parent leans on, now obvious from the picture. Both need N to be even so that N/2 is a whole number (radix-2 FFT always uses N=2m, which is even):
The first makes the FFT split possible; the second makes the "butterfly" nearly free. Both are pictures of stepping around a circle, nothing more.
Why the topic needs it:ωN is the "frequency dial". The weight ωNnk in the DFT sum says "spin sample n by k notches" — see Roots of Unity for the full geometry.
Why the topic needs it: the DFT Xk=∑n=0N−1xnωNnk (here k is the fixed frequency index from Section 3, and n runs over all N samples) is "for one output k, spin every sample and add them all up". The ∑ is the and add them all up part.
The parent's proof that the basis waves are independent rests on one classic sum.
The magic in the DFT: the ratio r is itself a root of unity, so rN=1, which makes the top rN−1=0. The whole sum collapses to zero. That single line is why different frequencies don't leak into each other — see Geometric Series and Linear Algebra — Orthogonal Bases.
Why the topic needs it: "orthogonal basis" is a fancy way of saying each frequency can be measured on its own without solving a big equation system. The geometric series is the engine that proves it.