ArticleslgStudy

computer science

Rader's FFT algorithm

Rader's FFT algorithm is a computer science topic covered in the lgStudy science library. This page brings together a partial reference excerpt, illustrations, worked examples, real-world applications and a short study plan, so you can understand Rader's FFT algorithm rather than just read about it. In short: Rader's algorithm (1968), named for Charles M. Rader of MIT Lincoln Laboratory, is a fast Fourier transform (FFT) algorithm that computes the discrete Fourier transform (DFT) of prime sizes by re-expressing the DFT as a cyclic convolution (the other algorithm for FFTs of prime sizes, Bluestein's algorithm, also works by rewriting the DFT as a convolution).

Rader's FFT algorithm — main illustration
Rader's FFT algorithm — illustration

Key takeaways

  • Rader's FFT algorithm belongs to computer science; place it in that map before memorising details.
  • Learn the definition first, then one example that makes the definition concrete.
  • Connect Rader's FFT algorithm to a quantity you can measure, compute or draw — that is where exam questions come from.
  • Reproduce the core statement of Rader's FFT algorithm from memory before moving on to harder problems.

Reference excerpt

Rader's algorithm (1968), named for Charles M. Rader of MIT Lincoln Laboratory, is a fast Fourier transform (FFT) algorithm that computes the discrete Fourier transform (DFT) of prime sizes by re-expressing the DFT as a cyclic convolution (the other algorithm for FFTs of prime sizes, Bluestein's algorithm, also works by rewriting the DFT as a convolution). Since Rader's algorithm only depends upon the periodicity of the DFT kernel, it is directly applicable to any other transform (of prime order) with a similar property, such as a number-theoretic transform or the discrete Hartley transform. The algorithm can be modified to gain a factor of two savings for the case of DFTs of real data, using a slightly modified re-indexing/permutation to obtain two half-size cyclic convolutions of real data; an alternative adaptation for DFTs of real data uses the discrete Hartley transform. Winograd extended Rader's algorithm to include prime-power DFT sizes p m {\displaystyle p^{m}} , and today Rader's algorithm is sometimes described as a special case of Winograd's FFT algorithm, also called the multiplicative Fourier transform algorithm (Tolimieri et al., 1997), which applies to an even larger class of sizes. However, for composite sizes such as prime powers, the Cooley–Tukey FFT algorithm is much simpler and more practical to implement, so Rader's algorithm is typically only used for large-prime base cases of Cooley–Tukey's recursive decomposition of the DFT.

Algorithm

Begin with the definition of the discrete Fourier transform:

X k = ∑ n = 0 N − 1 x n e − 2 π i N n k k = 0 , … , N − 1. {\displaystyle X_{k}=\sum _{n=0}^{N-1}x_{n}e^{-{\frac {2\pi i}{N}}nk}\qquad k=0,\dots ,N-1.}

If N is a prime number, then the set of non-zero indices n ∈

{ 1 , … , N − 1 } {\displaystyle n\in {}\{1,\dots ,N-1\}} forms a group under multiplication modulo N. One consequence of the number theory of such groups is that there exists a generator of the group (sometimes called a primitive root, which can be found by exhaustive search or slightly better algorithms). This generator is an integer g such that n = g q ( mod N ) {\displaystyle n=g^{q}{\pmod {N}}} for any non-zero index n and for a unique q ∈

{ 0 , … , N − 2 } {\displaystyle q\in {}\{0,\dots ,N-2\}} (forming a bijection from q to non-zero n). Similarly, k = g − p ( mod N ) {\displaystyle k=g^{-p}{\pmod {N}}} for any non-zero index k and for a unique p ∈

{ 0 , … , N − 2 } {\displaystyle p\in {}\{0,\dots ,N-2\}} , where the negative exponent denotes the multiplicative inverse of g p mod N {\displaystyle g^{p}\mod N} . That means that we can rewrite the DFT using these new indices p and q as:

X 0 = ∑ n = 0 N − 1 x n , {\displaystyle X_{0}=\sum _{n=0}^{N-1}x_{n},}

X g − p = x 0 + ∑ q = 0 N − 2 x g q e − 2 π i N g − ( p − q ) p = 0 , … , N − 2. {\displaystyle X_{g^{-p}}=x_{0}+\sum _{q=0}^{N-2}x_{g^{q}}e^{-{\frac {2\pi i}{N}}g^{-(p-q)}}\qquad p=0,\dots ,N-2.}

(Recall that xn and Xk are implicitly periodic in N, and also that e 2 π i = 1 {\displaystyle e^{2\pi i}=1} (Euler's identity). Thus, all indices and exponents are taken modulo N as required by the group arithmetic.) The final summation, above, is precisely a cyclic convolution of the two sequences aq and bq (of length N–1, because q ∈

… excerpt ends here. Continue reading the full article.

Worked examples

Example 1 — a first encounter with Rader's FFT algorithm

Start with the simplest possible case. Write down what Rader's FFT algorithm claims or describes in one sentence, then invent the smallest concrete situation in which that sentence is true. In computer science, the smallest case is usually a single object, a single equation or a single measurement. Check that every symbol or term in your sentence has a meaning in that case.

Example 2 — changing one variable

Take the situation from Example 1 and change exactly one quantity: double it, halve it, or set it to zero. Predict what should happen to Rader's FFT algorithm before you calculate. Comparing your prediction with the result is the fastest way to find out whether you understand the idea or only the words.

Example 3 — an exam-style question

Typical questions about Rader's FFT algorithm ask you to (a) state it precisely, (b) apply it to given data, and (c) explain a limitation. Practise writing all three answers in under five minutes; the third part is what separates a full-mark answer from an average one.

Applications of Rader's FFT algorithm

In research
Rader's FFT algorithm appears in computer science research whenever the underlying quantities have to be modelled precisely. Papers usually cite it as a starting assumption and then explore where it breaks down.
In technology and industry
Engineering practice reuses Rader's FFT algorithm in design rules, simulations and safety margins. Knowing the idea lets you read a specification sheet and understand why the numbers look the way they do.
In the classroom
Rader's FFT algorithm is common in secondary-school and first-year university syllabi. It links to neighbouring topics Fast Fourier transforms, so understanding it makes those chapters shorter.
In everyday life
Look for Rader's FFT algorithm outside the textbook — in sport, cooking, traffic, electronics or the sky above you. An example you found yourself is remembered far longer than one you were given.
Ask Teacher Smith questions about this articleOpens your AI tutor with a question about “Rader's FFT algorithm” →

Affiliate

Preply — study more efficiently by working with a personal tutor. 50% off.

How to study Rader's FFT algorithm in 20 minutes

  1. Read the reference excerpt below once, without taking notes.
  2. Close the page and write down what Rader's FFT algorithm means in your own words.
  3. Compare your version with the excerpt and mark what you missed.
  4. Work through the three examples above with pen and paper.
  5. Explain Rader's FFT algorithm out loud to somebody else — or to Teacher Smith in the lgStudy chat.

Frequently asked questions

What is Rader's FFT algorithm in simple terms?

Rader's algorithm (1968), named for Charles M. Rader of MIT Lincoln Laboratory, is a fast Fourier transform (FFT) algorithm that computes the discrete Fourier transform (DFT) of prime sizes by re-expressing the DFT as a cyclic convolution (the other algorithm for FFTs of prime sizes, Bluestein's al…

Why does Rader's FFT algorithm matter?

Because it connects several computer science ideas at once: it gives you a definition you can apply, a quantity you can calculate, and a way to check whether a result is plausible.

How should I study Rader's FFT algorithm?

Read the excerpt, restate it from memory, then work through the examples and applications listed on this page. The five-step study plan above takes about twenty minutes.

What does this page cover?

It gives you a compact reference excerpt plus original lgStudy explanations, examples, applications and study material on Rader's FFT algorithm.

Tags

  • Fast Fourier transforms

Keep exploring