Skip to content Skip to navigation

Connexions

You are here: Home » Content » Deriving the Fast Fourier Transform

Navigation

Content Actions

  • Download module PDF
  • Add to ...
    Add the module to:
    • My Favorites
    • A lens
    • An external social bookmarking service
    • My Favorites (What is 'My Favorites'?)
      'My Favorites' is a special kind of lens which you can use to bookmark modules and collections directly in Connexions. 'My Favorites' can only be seen by you, and collections saved in 'My Favorites' can remember the last module you were on. You need a Connexions account to use 'My Favorites'.
    • A lens (What is a lens?)

      Definition of a lens

      Lenses

      A lens is a custom view of Connexions content. You can think of it as a fancy kind of list that will let you see Connexions through the eyes of organizations and people you trust.

      What is in a lens?

      Lens makers point to Connexions materials (modules and collections), creating a guide that includes their own comments and descriptive tags about the content.

      Who can create a lens?

      Any individual Connexions member, a community, or a respected organization.

    • External bookmarks
  • E-mail the author

Lenses

What is a lens?

Definition of a lens

Lenses

A lens is a custom view of Connexions content. You can think of it as a fancy kind of list that will let you see Connexions through the eyes of organizations and people you trust.

What is in a lens?

Lens makers point to Connexions materials (modules and collections), creating a guide that includes their own comments and descriptive tags about the content.

Who can create a lens?

Any individual Connexions member, a community, or a respected organization.

This content is ...

In these lenses

  • richb's DSP

    This module is included inLens: richb's DSP resources
    By: Richard BaraniukAs a part of collection:"Signals and Systems"

    Comments:

    "My introduction to signal processing course at Rice University."

    Click the "richb's DSP" link to see all content selected in this lens.

Recently Viewed

This feature requires Javascript to be enabled.

Tags

(What is a tag?)

These tags come from the endorsement, affiliation, and other lenses that include this content.

Deriving the Fast Fourier Transform

Module by: Don Johnson

Summary: Using the Cooley-Tukey algorithm to derive fast transforms.

To derive the FFT, we assume that the signal's duration is a power of two: N=2l N 2 l . Consider what happens to the even-numbered and odd-numbered elements of the sequence in the DFT calculation.

Sk=s0+s2-2π2kN++sN-2-2πN-2kN+s1-2πkN+s3-2π2+1kN++sN-1-2πN-2+1kN=s0+s2-2πkN2++sN-2-2πN2-1kN2+s1+s3-2πkN2++sN-1-2πN2-1kN2-2πkN S k s 0 s 2 2 2 k N s N 2 2 N 2 k N s 1 2 k N s 3 2 2 1 k N s N 1 2 N 2 1 k N s 0 s 2 2 k N 2 s N 2 2 N 2 1 k N 2 s 1 s 3 2 k N 2 s N 1 2 N 2 1 k N 2 2 k N (1)

Each term in square brackets has the form of a N2 N 2 -length DFT. The first one is a DFT of the even-numbered elements, and the second of the odd-numbered elements. The first DFT is combined with the second multiplied by the complex exponential -2πkN 2 k N . The half-length transforms are each evaluated at frequency indices k0N-1 k 0 N 1 . Normally, the number of frequency indices in a DFT calculation range between zero and the transform length minus one. The computational advantage of the FFT comes from recognizing the periodic nature of the discrete Fourier transform. The FFT simply reuses the computations made in the half-length transforms and combines them through additions and the multiplication by -2πkN 2 k N , which is not periodic over N2 N 2 , to rewrite the length-N DFT. Figure 1 illustrates this decomposition. As it stands, we now compute two length- N2 N 2 transforms (complexity 2ON24 2 O N 2 4 ), multiply one of them by the complex exponential (complexity ON O N ), and add the results (complexity ON O N ). At this point, the total complexity is still dominated by the half-length DFT calculations, but the proportionality coefficient has been reduced.

Now for the fun. Because N=2l N 2 l , each of the half-length transforms can be reduced to two quarter-length transforms, each of these to two eighth-length ones, etc. This decomposition continues until we are left with length-2 transforms. This transform is quite simple, involving only additions. Thus, the first stage of the FFT has N2 N 2 length-2 transforms (see the bottom part of Figure 1). Pairs of these transforms are combined by adding one to the other multiplied by a complex exponential. Each pair requires 4 additions and 4 multiplications, giving a total number of computations equaling 8N4=N2 8 N 4 N 2 . This number of computations does not change from stage to stage. Because the number of stages, the number of times the length can be divided by two, equals log2N 2 N , the complexity of the FFT is ONlogN O N N .

Figure 1: The initial decomposition of a length-8 DFT into the terms using even- and odd-indexed inputs marks the first phase of developing the FFT algorithm. When these half-length transforms are successively decomposed, we are left with the diagram shown in the bottom panel that depicts the length-8 FFT computation.
Length-8 DFT decomposition
Subfigure 1.1
Length-8 DFT decomposition, Subfigure 1.1 (sys9.png)
Subfigure 1.2
Length-8 DFT decomposition, Subfigure 1.2 (sys11.png)

Doing an example will make computational savings more obvious. Let's look at the details of a length-8 DFT. As shown on Figure 1, we first decompose the DFT into two length-4 DFTs, with the outputs added and subtracted together in pairs. Considering Figure 1 as the frequency index goes from 0 through 7, we recycle values from the length-4 DFTs into the final calculation because of the periodicity of the DFT output. Examining how pairs of outputs are collected together, we create the basic computational element known as a butterfly (Figure 2).

Figure 2: The basic computational element of the fast Fourier transform is the butterfly. It takes two complex numbers, represented by a and b, and forms the quantities shown. Each butterfly requires one complex multiplication and two complex additions.
Butterfly
Butterfly (sys10.png)

By considering together the computations involving common output frequencies from the two half-length DFTs, we see that the two complex multiplies are related to each other, and we can reduce our computational work even further. By further decomposing the length-4 DFTs into two length-2 DFTs and combining their outputs, we arrive at the diagram summarizing the length-8 fast Fourier transform (Figure 1). Although most of the complex multiplies are quite simple (multiplying by -π means negating real and imaginary parts), let's count those for purposes of evaluating the complexity as full complex multiplies. We have N2=4 N 2 4 complex multiplies and 2N=16 2 N 16 additions for each stage and log2N=3 2 N 3 stages, making the number of basic computations 3N2log2N 3 N 2 2 N as predicted.

Exercise 1

Note that the ordering of the input sequence in the two parts of Figure 1 aren't quite the same. Why not? How is the ordering determined?

Solution 1

The upper panel has not used the FFT algorithm to compute the length-4 DFTs while the lower one has. The ordering is determined by the algorithm.

Other "fast" algorithms were discovered, all of which make use of how many common factors the transform length N has. In number theory, the number of prime factors a given integer has measures how composite it is. The numbers 16 and 81 are highly composite (equaling 24 2 4 and 34 3 4 respectively), the number 18 is less so ( 2132 2 1 3 2 ), and 17 not at all (it's prime). In over thirty years of Fourier transform algorithm development, the original Cooley-Tukey algorithm is far and away the most frequently used. It is so computationally efficient that power-of-two transform lengths are frequently used regardless of what the actual length of the data.

Comments, questions, feedback, criticisms?

Send feedback