Skip to main content

Knowledge Base

Derivation of the DFT

The theory and the praxis

The Discrete Fourier transform is defined as:

image50

It is derived from the continuous version of the Fourier series:

image51

It is not easy to see from the formulas what they mean.

The story of sines

Where do sines come from? We did saw the circle drawing the sine, but... Most of the math before the 20th century was based or derived from or for physics.

If you bump an object and observe its response, it is very likely that the response or shaking will be sine like. Because the sine has been observed in nature, it is why the sine is called a natural function and the frequency of the sine is called the natural frequency. Looking from the practical point of view, it is very nice that man was able to find such a good mathematical model for that motion, namely the sine.

But most objects do not respond with only one sine frequency. This is where the Fourier transform can be used. Fourier offered a method to detect which frequencies of sines were present in the actual response of the object. His method can extract the frequency, phase and amplitude of individual sines (tones).

What about if the system does not have a sine function as its natural function? There was a lot of heat burned on that subject in the previous century. The conclusion was the following: It may be so, but with a sum of a sufficiently large number of different sines (the Fourier series) it is possible to approximate any desirable function.

Finding the shapes

The Fourier found a way to model a complicated signal with a sum of sines. In this sum each sine has a different frequency, its own amplitude and also its own phase. Let us try the same. In computer vision there is a widely accepted approach for finding the shapes in the picture called Hough transform. The idea is simple. If we search for a straight line, that line has a mathematical form of: y = kx + n. We have two parameters: k and n. Now we form pairs of all possible values of k and n, draw the line and count the number of pixels that support that hypothesis. We save the intermediate results and at the end we apply a threshold to the results keeping only those pairs of parameters k and n that had a sufficiently large support.

If we can search for straight lines, why couldn't we search for sines in the same way? The sines have three parameters. The function is

FFT

The parameters are: A, f and phi. This approach works well, if we have only one sine that has to be found. If we have to find a function that is actually a sum of sines, the approach has to be modified. Here is where the Fouriers "magic" comes in. For such a difficult problem he found such an elegant solution.

The orthogonality

One fundament of Linear algebra is orthogonality. Example:

Series 1: 1, 0, 0
Series 2: 0, 1, 0

If we multiply these series value by value and sum the results we get:

1*0 + 0*1 +0*0 = 0

If the result of a dot product is zero, then the two series are considered orthogonal. The operation is called the scalar or dot product. And now the trick number 1:

Series(sin(1)) × Series(sin(2)) = 0

The scalar product between two sines that have different argument is zero. True? Yes, but only if the series are infinite. The following picture reveals the problem:

figure1

It shows the value of the scalar product of a sine of frequency 13Hz and amplitude 1 with all other frequencies within the visible range. The function that we see is called sinc and is defined as:

sinc(wx) = sin(wx)/x

This is the fundament of the so called Gibbs phenomena. It took a long time in the past to find the formula for that function. That did not help much though. The fact that there si some response also at frequencies, which are not present, is still a problem today. Please note however that the amplitude is exactly 1 at the correct frequency and that at not present frequencies (amplitude zero) there is also some response. Sometimes positive, sometimes negative.

One might argue that we should select the sine that offers the strongest correlation to the points, but we do not have that option, because we would like to estimate the amplitude at all the frequencies. The idea of the strongest correlation was used for the derivation of the Wigner-Ville time-frequency distributions. That approach obviously works well only, if there is a limited number of frequencies present and they are not closely spaced.


And now let's suppose this: Series(sin(1)  + sin(2) + sin(3)). This series looks like this:

figure2 TimeSignal

And if we would like to extract the information of sin(1), we can apply the scalar product. We multiply this series with the sine of our interest:

Series(sin(1))*Series(sin1(1)    +   sin(2)   +    sin(3)) = 

Series(sin(1))* Series(sin(1))    +    Series(sin(1))* Series(sin(2))   +   Series(sin(1))* Series(sin(3)) =

The second and the third parts are zero (in the infinity), because the arguments of the sines are different and therefore the two series are orthogonal and the scalar product is zero. Therefore:

Series(sin(1))*Series(sin1(1) + sin(2) + sin(3))  =  Series(sin(1))*Series(sin(1)) <> 0

This is how DFT extracts information about the frequency of the sines. If the applied series (sin(1)) has amplitude 1, then the resulting amplitude is exactly the amplitude of the sine searched for.  The extraction of amplitude is the second trick. Normally we would have to generate sines of all possible phases, frequencies and amplitudes to find the right one. We now generate only all possible frequencies and get the also the information of amplitude! For this works only, if the sines are in-phase or aligned. (start at zero for example ). Example of phase aligned sines: (the red one is searched for and the black one is fitted):

figure3 TimeSignal

If the sines were not phase aligned, this would not work!

The amplitude and the phase

So far we have been looking only at the frequency. The sines have two more parameters: amplitude and phase. A very neat trick (number 3) has been used to extract those two parameters efficiently. Phase alignment can be achieved by using a pair of fitting functions: sin and cos. These two functions have a neat property:

sin2(x) + cos2(x)=1

and secondly, they are shifted by 90 degrees. Meaning: If we miss the sine, for which we search, with the fitting sine by 90 degrees, we hit exactly on the peak with the cosine function. And in between we still have the property: sin2(x) + cos2(x)=1.  This formula is calculating the amplitude of a vector whose projections on the real and imaginary axis are known. All we have to do is:

  • multiply the time series with sines of all the possible frequencies, phase = 0 and Amplitude 1  (we get the real part of the frequency spectrum) and
  • Multiply the time series with cosines of all the possible frequencies, phase = 0 and Amplitude = 1. (We get the imaginary part of the frequency spectrum.)

And here is where the Eulers notation comes in: e = cos(ω) +sin(ω). The first part is the real part and second part is the imaginary one. And the DFT can be written as:

image59

X[k] is of course complex and containes amplitudes at frequencies k and there is also no reason why x[n] couldn't be complex to. x[n] is the series that we analyze. And the argument: (2π / N- kn only controls the frequency of the sine and cosine. And finally we can write:

image50

Calculate the amplitude as: image61, where f is the frequency for which we calculate the amplitude.

And the phase is calculated as: image62

The FFT

Physically nothing new. "Just" improvement of the calculation speed. When we generate individual frequencies of sine and cosine to be dot-product-ed with the time series, there is a substantial amount of redundancy in the generation of these tones. Because sine and cosine are periodic functions, specific results are repeating. It turnes out, that the number of repetitions is so high, that only log2(n) *n of evaluations actually need to be computed from the initial estimate of n*n needed by DFT. The rest can be reused. How? Lets take a sine, that has only one period within the window. Here we have no repetitions. But as soon as we take a sine that has two periods, the second period can be just copied over. The more periods we need, the higher can be the amount of copying. When this copying is accounted for, then the DFT becomes FFT. Additionally, both DFT and FFT are much faster, if we employ the circular tone generator, which calls sin math function only once, but can generates a tone of that frequency of any length by using only simple multiplication and addition. This alone results in both algorithms being at least 10x faster from the vanilla version. Here is an example of the "fast" tone generator:

y[0]=a * x[1] + b * y[1] - c * y[2];

The generator works like an IIR filter and reuses the previously generated values.

Conclusion

The two main principles used in the derivation of the DFT are:

  • Orthogonality of sines. (and cosines). Allows the extraction of a single sine from a sum of sines. The concept is widely used in linear algebra.
  • The pair of sine and cosine. Computationally very efficient. Instead of fitting a large number of sines with different phase for each frequency, we fit only one sine and one cosine per frequency. If this concept wouldn't be known, there would be no DFT. Because of it, the accuracy of amplitude and phase estimation is way better than anybody could ever dream off with only a fraction of computational complexity.

It is clear now why Discrete Laplace transform could cause problems. We should fit the following function:

figure4 TimeSignal

The nice rules of DFT fall down and the number of parameters that we would need to control becomes very large. We only had to fit all the possible frequencies with DFT, but now at least one more parameter is required: attenuation. And we are already at computational complexity of at least O(n^3).

            We can also start doubting the sines again. It has been done. The alternative is called Wavelets. Wavelets are also orthogonal functions. They are used in much the same way as sines. Unfortunately, wavelets are far from being natural. It is thought that this is their strength, but lack of physical interpretation is not a plus (not in physics anyway). Wavelets are not based so much on physics, like the DFT is.