Roots of Unity
An -th root of unity is any complex number satisfying
Because for every integer , taking the -th root gives
There are exactly distinct values (the case wraps back to ), and each one sits on the unit circle at angle from the positive real axis. They are perfectly evenly spaced: neighbouring roots differ in angle by exactly .
Visualising the roots
For the four roots are
at angles , , , and — the four compass points on the unit circle. For the three cube roots sit at , , and .
The primitive -th root of unity is (the case). Every other -th root is a power of :
Why roots of unity matter in quantum mechanics
Two places they appear immediately:
-
Discrete Fourier transform (DFT) and QFT. The quantum Fourier transform maps , where is the primitive -th root of unity. The entire algorithm is built from nothing but these phase factors.
-
Symmetry and selection rules. When a physical system has discrete rotational symmetry by angle , its energy eigenstates carry eigenvalues that are -th roots of unity. Quantum numbers reflect which root labels each state.
A key identity: the sum is zero
For , the sum of all -th roots of unity vanishes:
(The geometric-series formula applies because for .) This orthogonality is the reason Fourier analysis — classical and quantum — works: each frequency component picks out exactly one mode and cancels all others.
Rectangular form of a root
Using Euler's formula , the -th -th root is
For the primitive cube root (, ):
= -\tfrac{1}{2} + i\,\tfrac{\sqrt{3}}{2}.$$ <Callout type="tip"> Every $n$-th root of unity lies on the unit circle, so its modulus is 1 and its square modulus is 1. That means it is always a valid quantum phase factor: multiplying a state by $\omega_k$ cannot change any measurement probability. </Callout> ## Try it This is a numerical exercise — `return` a number. The first non-trivial cube root of unity is $\omega_1 = e^{2\pi i / 3}$. What is its real part? Derive it using $\operatorname{Re}(e^{i\theta}) = \cos\theta$. <RunnableExample />Sign in on the full site to ask questions and join the discussion.