This problem illustrates the computational savings afforded
This problem illustrates the computational savings afforded by the FFT over that of the discrete Fourier transform (DFT). Suppose we wanted to perform a spectrum analysis on a time-domain sequence whose length is 32768 (215) samples. Estimate the ratio of the number of complex multiplications needed by a 32768-point DFT over the number of complex multiplies needed by a 32768-point FFT.
Solution
complex multiplications needed by a N-point DFT is = N2 = (32768)2 = 1073741824
number of complex multiplies needed by a N-point FFT is = N/2 log2 N
= 32768/2 log2 32768 = 16384 log2 215 = 245760
ratio of the number of complex multiplications needed by a 32768-point DFT over the number of complex multiplies needed by a 32768-point FFT is = 1073741824 / 245760 = 4369.066
