First, before proceeding:
Let's preview at a high level the key ideas:
(To see this, download this audio
and open in a tool like Audacity)
First, let's review \sin(t):
The main goal: express any function f(t) using a linear combination of sine's and cosine's.
Before that, let's first understand frequency and period:
In-Class Exercise 1: Execute Sin.java to plot \sin(t) in [0,2\pi]. Then, change the interval to [0,4\pi] to observe two cycles in this larger interval. You will also need Function.java, and SimplePlotPanel.java.
In-Class Exercise 2: Plot \sin(2\pi n t) with n=1 using Sin2.java. Then change n to 2 and 3.
In-Class Exercise 3: Plot \sin(\frac{2\pi n t}{T}) using Sin3.java. Then change T to try another period. And vary n.
A linear combination:
In-Class Exercise 4: Compile and execute FourierExample.java to observe an unknown "mystery function". You will also need MysteryFunction.class.
In-Class Exercise 5: Add code to FourierExample2.java to compute the Fourier sum as directed. Compile and execute, then view the graphs of the mystery function and the Fourier approximation side by side. Is this a reasonable approximation?
In-Class Exercise 6: Remove the high frequencies in the same program above, that is, set a_i=0 for i\geq 5. This simulates the removal of high-frequency "noise". Does the the resulting function capture the "essence" of the mystery function? What if a_i=0 for i\geq 4? Separately, compile and execute SinSumExample.java to see a linear combination of sine's approximate a square-ish looking wave. Write down the linear combination so that you see it more compactly.
So far, all the variables and coefficients are real numbers.
It turns out to be very convenient to use complex numbers.
Writing the linear combination using complex-number math:
In-Class Exercise 7: Show that this definition of c_n results in the same series f_K(t) \eql \frac{a_0}{2} + \sum_{n=1}^K a_n \sin(\frac{2\pi nt}{T}) + \sum_{n=1}^K b_n \cos(\frac{2\pi nt}{T})
Determining the scalars:
Main ideas in discretization:
An important observation: the number of frequencies are finite (at most N)
In-Class Exercise 8: Why is the last step true?
In-Class Exercise 9: Compile and execute Periodicity.java to see the sine above plotted along with values (as dots) on the integers.
In-Class Exercise 10: Follow the second step in Periodicity.java to see both sine's.
Let's summarize where we are in our reasoning so far:
We'll start with a little re-writing, in a more convenient form:
In-Class Exercise 11: Suppose N=4. Write out the unfolded sum for f_3.
In-Class Exercise 12: What would the theory look like for this extension to linear combinations of numbers? Explore the meaning of span, independence, basis, dimension in this context.
In-Class Exercise 13: Fill in the equation for f_3 above.
In-Class Exercise 14: Write out the elements of {\bf d}_3.
In-Class Exercise 15: What is the fourth column of {\bf D}?
Let's step back for a moment and summarize:
We are now led to some burning questions:
Let's look into some of these questions next.
Recall the inverse-DFT {\bf f} \eql {\bf D} {\bf F} and, for that matter, the DFT itself: {\bf F} \eql {\bf D}^{-1} {\bf f}
We will establish independence in steps:
In-Class Exercise 16: Explain the first step: why is there a negative sign in front of q? Explain the last step.
In-Class Exercise 17: Why is this true? How can we conclude this?
Now let's return to the proof of orthogonality.
Two useful properties of \omega = e^{\frac{2\pi i}{N}}:
In-Class Exercise 18: Show that this is true.
In-Class Exercise 19: Consider the case N=8 and therefore \omega^k = e^{\frac{2\pi ik}{8}}. Plot the complex numbers \omega^0, \omega^1, \omega^2 on the complex plane by examining the angles. Do you see the pattern? Where are the remaining points? Which ones are not equal to 1?
We are left with two questions:
Let's answer the first one:
In-Class Exercise 20: Use the above facts and definitions to show that {\bf D}^H {\bf D} = N{\bf I}.
In-Class Exercise 21: Then use the above result to show that {\bf D}^{-1} = \frac{1}{N} {\bf D}^H.
Lastly, let's point out applications:
In-Class Exercise 22: Download DFTExample.java and: (1) read the code; (2) then compile and execute to "see" the music. You will also need SignalExample.java How many F_0,F_1,\ldots values are printed out? (3) Un-comment the code to print only the significant elements of the spectrum. Which of F_0,F_1,\ldots,F_N are significant?
In-Class Exercise 23: Why is it unsurprising that for a single sine wave, the only non-zero components are imaginary?
In-Class Exercise 24: Download DFTExample2.java, compile and execute. Which of F_0,F_1,\ldots,F_N are significant?
In-Class Exercise 25: Download DFTExample3.java and set the real and imaginary parts of F_5 and F_{59} to zero. Then compile and execute.
In-Class Exercise 26: Can you find a different and interesting example, with a reference (URL) to it?
The Fast Fourier Transform (FFT)
In-Class Exercise 27: What is the computation time (in order notation) for applying the DFT to a signal of size N?
We went through many steps in devising the DFT, some of which can be understandably confusing.
For the purposes of intuition, let's review some key steps:
Let's now aim for some intuition:
Consider generalizing the Discrete Fourier Transform to two dimensions:
In-Class Exercise 28: Compile and execute DemoDFT2D.java. You will also need Clickable2DGrid.java. The top two grids represent the signal's real (left) and imaginary (right) parts. The bottom two grids represent the spectrum.
The meaning of "frequency" in 2D:
What corresponds to removing high-frequencies in the 2D case?
For this section, we will return to the continuous realm, functions, as opposed to discrete values.
Recall how we started describing Bernstein and trignometric polynomials in the broader context of vectors:
Except that we have not described what it means for two functions to be orthogonal.
Why do we care that they are orthogonal?