<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://fweb.wallawalla.edu/class-wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Greg</id>
	<title>Class Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://fweb.wallawalla.edu/class-wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Greg"/>
	<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php/Special:Contributions/Greg"/>
	<updated>2026-04-05T18:03:54Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.0</generator>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=CD_Player&amp;diff=3798</id>
		<title>CD Player</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=CD_Player&amp;diff=3798"/>
		<updated>2005-11-08T19:27:29Z</updated>

		<summary type="html">&lt;p&gt;Greg: /* Signal in Time and Frequency */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;	A CD is a digitally recorded sound wave. The CD has a whole bunch of numbers on it.  These numbers represent the magnitude of the sound wave at certain points in time.  If your sound was a sine wave for example and you looked at it graphically you would see a smooth wave going up and down.  A CD of this wave would just be the magnitude, or height, of that wave every so often.&lt;br /&gt;
	The basic idea in turning these numbers into a sound wave you can here is to run them through a digital to analog converter.  The D-to-A will read in a value then output and hold a corresponding voltage until it gets the next value, then it will output and hold that voltage until the next one, etc.  The end result will be a stair step representation of the original wave.&lt;br /&gt;
&lt;br /&gt;
	You can then run this through a low pass filter to smooth it out a little and then out to a speaker.  While this would work your signal would be substantially distorted due to its conversion to and then from a digital signal. We will look at a few different ways to compensate for this. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Signal in Time and Frequency=====&lt;br /&gt;
&lt;br /&gt;
	To get a better idea of why the signal becomes distorted and how to correct it, it helps to look at the signal in the time and the frequency domain.  To represent the sampled signal in the time domain we will show a string of impulse functions whose area represents the magnitude of the signal at that point.  While there is actually no impulse function physically in the system it is a useful mathematical construct to look at what is happening in the frequency domain.&lt;br /&gt;
&lt;br /&gt;
[[Image:barnsasample.jpg|Sampling a signal]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Figure 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:barnsaDA.jpg|Digital to analog conversion]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Figure 2&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
	This shows the progression of your signal both in the time and frequency domains, as it is sampled (figure 1), and then ran through the D-to-A converter (figure 2). You will notice that the frequency representation of the stair step wave does not look like the original signal. It is too tall in the middle and drops off too fast of the edges; it also has too many high frequency (both positive and negative) components that aren&#039;t wanted.  These high frequencies components need to be filtered off (which we stated above, the equivalent of smoothing out the stair step function in time) but you would still have to problem of the signal being too tall in the middle and dropping off too fast.  In addition in order to filter out the high frequency parts and leave your signal unchanged you need a low pass filter with a very very sharp edge.  This is a high precision and very spendy component that we would like to eliminate the need for.&lt;br /&gt;
We have two basic problems, the distorted signal, and the need to filter out the high frequency components.  To fix this we need to run the signal through some sort of filter that will both pre-distort the signal (increase its wanted high frequency components) and flatten out the unwanted high frequency components that are very close to the signal.  This leads us into oversampling.&lt;br /&gt;
&lt;br /&gt;
==Over Sampling==&lt;br /&gt;
	The basic idea behind oversampling is to run the signal through an interpolation filter that will effectively double (or triple, or quadruple, etc) the number of points in the time signal.  Suppose that there is a signal:&lt;br /&gt;
&lt;br /&gt;
0 @ t=0&lt;br /&gt;
&lt;br /&gt;
4 @ t=T&lt;br /&gt;
&lt;br /&gt;
8 @ t=2T&lt;br /&gt;
&lt;br /&gt;
	The filter would guess at what the signal would be at 1/2T and 3/2T so the signal would become something like:&lt;br /&gt;
&lt;br /&gt;
0 @ t=0&lt;br /&gt;
&lt;br /&gt;
2 @ t=1/2T&lt;br /&gt;
&lt;br /&gt;
4 @ t=T&lt;br /&gt;
&lt;br /&gt;
6 @ t=3/2T&lt;br /&gt;
&lt;br /&gt;
8 @ t=T&lt;br /&gt;
&lt;br /&gt;
	This is a very simple case, in actuality the filter would take a preset linear combination of the data points before and after to determine what the inserted value should be.  Mathematically this is a convolution of the signal from the CD with a function of the form:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; f(t) = \sum_{l= -\infty}^ \infty h( \frac{l T}{2} ) \delta (t- \frac{l T}{2} ) &amp;lt;/math&amp;gt;.  &lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	To see why this solves the problems stated above we need to look at the frequency domain.  In the frequency domain we needed to filter out the unwanted higher frequencies to get our original signal back.  To make this easier it would be nice to eliminate the frequencies that are really close to the signal you are trying to keep, and at the same time we wanted to pre-emphasize the high frequencies of our signal.  This would mean multiplying them in frequency by a domain by a filtering function as shown below.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Barnsapredistort.jpg|Oversampling]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
	Multiplication in the frequency domain corresponds to a convolution in the time domain, and the function that we used above in the frequency domain corresponds to a string of impulses in time.  Convolving by these impulses in time is the over sampling described above.&lt;br /&gt;
	This makes since because we have effectively doubled the frequency in the time domain which will space things out in the frequency domain and that is exactly what we see.  The next logical question is, well that is nice but how do I actually do this on a computer.  One way is with a Finite Impulse Response Filter of [[FIR Filter]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Principle author of this page:  [[User:Barnsa|Sam Barnes]]&lt;/div&gt;</summary>
		<author><name>Greg</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=CD_Player&amp;diff=1229</id>
		<title>CD Player</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=CD_Player&amp;diff=1229"/>
		<updated>2005-11-08T19:27:21Z</updated>

		<summary type="html">&lt;p&gt;Greg: /* Signal in Time and Frequency */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;	A CD is a digitally recorded sound wave. The CD has a whole bunch of numbers on it.  These numbers represent the magnitude of the sound wave at certain points in time.  If your sound was a sine wave for example and you looked at it graphically you would see a smooth wave going up and down.  A CD of this wave would just be the magnitude, or height, of that wave every so often.&lt;br /&gt;
	The basic idea in turning these numbers into a sound wave you can here is to run them through a digital to analog converter.  The D-to-A will read in a value then output and hold a corresponding voltage until it gets the next value, then it will output and hold that voltage until the next one, etc.  The end result will be a stair step representation of the original wave.&lt;br /&gt;
&lt;br /&gt;
	You can then run this through a low pass filter to smooth it out a little and then out to a speaker.  While this would work your signal would be substantially distorted due to its conversion to and then from a digital signal. We will look at a few different ways to compensate for this. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Signal in Time and Frequency=====&lt;br /&gt;
&lt;br /&gt;
	To get a better idea of why the signal becomes distorted and how to correct it, it helps to look at the signal in the time and the frequency domain.  To represent the sampled signal in the time domain we will show a string of impulse functions whose area represents the magnitude of the signal at that point.  While there is actually no impulse function physically in the system it is a useful mathematical construct to look at what is happening in the frequency domain.&lt;br /&gt;
&lt;br /&gt;
[[Image:barnsasample.jpg|Sampling a signal]]greg&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Figure 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:barnsaDA.jpg|Digital to analog conversion]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Figure 2&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
	This shows the progression of your signal both in the time and frequency domains, as it is sampled (figure 1), and then ran through the D-to-A converter (figure 2). You will notice that the frequency representation of the stair step wave does not look like the original signal. It is too tall in the middle and drops off too fast of the edges; it also has too many high frequency (both positive and negative) components that aren&#039;t wanted.  These high frequencies components need to be filtered off (which we stated above, the equivalent of smoothing out the stair step function in time) but you would still have to problem of the signal being too tall in the middle and dropping off too fast.  In addition in order to filter out the high frequency parts and leave your signal unchanged you need a low pass filter with a very very sharp edge.  This is a high precision and very spendy component that we would like to eliminate the need for.&lt;br /&gt;
We have two basic problems, the distorted signal, and the need to filter out the high frequency components.  To fix this we need to run the signal through some sort of filter that will both pre-distort the signal (increase its wanted high frequency components) and flatten out the unwanted high frequency components that are very close to the signal.  This leads us into oversampling.&lt;br /&gt;
&lt;br /&gt;
==Over Sampling==&lt;br /&gt;
	The basic idea behind oversampling is to run the signal through an interpolation filter that will effectively double (or triple, or quadruple, etc) the number of points in the time signal.  Suppose that there is a signal:&lt;br /&gt;
&lt;br /&gt;
0 @ t=0&lt;br /&gt;
&lt;br /&gt;
4 @ t=T&lt;br /&gt;
&lt;br /&gt;
8 @ t=2T&lt;br /&gt;
&lt;br /&gt;
	The filter would guess at what the signal would be at 1/2T and 3/2T so the signal would become something like:&lt;br /&gt;
&lt;br /&gt;
0 @ t=0&lt;br /&gt;
&lt;br /&gt;
2 @ t=1/2T&lt;br /&gt;
&lt;br /&gt;
4 @ t=T&lt;br /&gt;
&lt;br /&gt;
6 @ t=3/2T&lt;br /&gt;
&lt;br /&gt;
8 @ t=T&lt;br /&gt;
&lt;br /&gt;
	This is a very simple case, in actuality the filter would take a preset linear combination of the data points before and after to determine what the inserted value should be.  Mathematically this is a convolution of the signal from the CD with a function of the form:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; f(t) = \sum_{l= -\infty}^ \infty h( \frac{l T}{2} ) \delta (t- \frac{l T}{2} ) &amp;lt;/math&amp;gt;.  &lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	To see why this solves the problems stated above we need to look at the frequency domain.  In the frequency domain we needed to filter out the unwanted higher frequencies to get our original signal back.  To make this easier it would be nice to eliminate the frequencies that are really close to the signal you are trying to keep, and at the same time we wanted to pre-emphasize the high frequencies of our signal.  This would mean multiplying them in frequency by a domain by a filtering function as shown below.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Barnsapredistort.jpg|Oversampling]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
	Multiplication in the frequency domain corresponds to a convolution in the time domain, and the function that we used above in the frequency domain corresponds to a string of impulses in time.  Convolving by these impulses in time is the over sampling described above.&lt;br /&gt;
	This makes since because we have effectively doubled the frequency in the time domain which will space things out in the frequency domain and that is exactly what we see.  The next logical question is, well that is nice but how do I actually do this on a computer.  One way is with a Finite Impulse Response Filter of [[FIR Filter]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Principle author of this page:  [[User:Barnsa|Sam Barnes]]&lt;/div&gt;</summary>
		<author><name>Greg</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Sampling&amp;diff=2518</id>
		<title>Sampling</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Sampling&amp;diff=2518"/>
		<updated>2005-11-08T19:24:00Z</updated>

		<summary type="html">&lt;p&gt;Greg: /* Sampling Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
In this chapter we will look at sampling and how it affects signal processing.  Sampling is the process of taking a continuous stream of data with infinite points of resolution and getting that data into a form that can be stored in a finite data set.&lt;br /&gt;
&lt;br /&gt;
==Sampling Overview==&lt;br /&gt;
Imagine that we have a song that is being played in a studio.  We would like to record the song and store it on a computer in form that will allow the song to be played back to sound as much like the original as possible.  However, the song being played has an infinite set of points when it is played.  We must throw out much of this data and yet keep enough to reconstruct the song.  This is where sampling comes in.  By taking evenly spaced out samples of the data stream, we can later reconstruct the stream of data.  The sampler converts the continuous time signal x(t) into a discrete-time sequence x(n) by taking the values of x(t) at integer multiples of the sampling perioud, T.  Typically, discrete signals are formed by periodically sampling a continuous time signal using the form:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; \bold x(n) = x_a(n*T_s) &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Signals_Sampling.JPG]]&lt;br /&gt;
&lt;br /&gt;
There are, however, a few things that we need to keep in mind when trying to sample signals with many frequencies in them.  When we sample data, we want to be able to sample enough data to get a correct reconstruction (this is discussed further below), but we don’t want to sample too much data that our sets become unmanageable.&lt;br /&gt;
&lt;br /&gt;
==Sampling Theory==&lt;br /&gt;
According to Sampling Theory, you must sample fast enough that you eliminate all possible aliases that can occur from sampling.  Aliasing is what happens when you sample a signal that can later be reconstructed with two possible frequencies.  This can be seen by the picture shown below.  Another example of this can be seen in older western movies when watching the spoked wheels of a stagecoach rotate backward at a slow rate.  This happens when each frame of film is taken at a slightly faster rate than that of the rotating wheel.  In order to sample fast enough to eliminate all possible aliases, you must sample at a rate greater than twice the maximum frequency found in the signal to be sampled.  &lt;br /&gt;
&lt;br /&gt;
[[Image:Sampling_pic1.JPG]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Going back to our example of audio, we know that humans can hear from about 20 Hz up to about 20,000 Hz.  Therefore we know that we want to make sure that we sample fast enough that we will get this entire frequency spectrum.  In order to do this, we apply the principle   where F is our highest frequency and T is our sampling rate to get a value of T = 40,000 Hz.  This is also known as the Nyquist Theorem.  This explains why audio that is recorded onto a CD is sampled at a rate of 44,100 Hz (they sample slightly higher than necessary for a 20 KHz max frequency).  &lt;br /&gt;
Something to note here is the fact that even though we want to sample our signal for frequencies between 20 and 20,000 Hz, most signals have many more frequencies in them due to white noise.  In order to make sure that only the desired frequency is sampled you can run your signal through a pre-filter (sometimes called an anti-aliasing filter).  This guarantees that the sampled data system receives analog signals having a frequency spectrum no greater than those frequencies allowed by the filter.&lt;br /&gt;
&lt;br /&gt;
To see how the sampled data is reconstructed, refer to my section on how a [[User:santsh|CD Player]] works.&lt;br /&gt;
&lt;br /&gt;
==Sampling Process==&lt;br /&gt;
&lt;br /&gt;
In order to see how the sampling process works, imagine a periodic sequence of impulses,&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; s_a(t) = \sum_{n=-\infty}^\infty \delta(t-nT_s) &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now multiply your signal by the impulses to form the sampled signal&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; x_s(t) = x_a(t) * s_a(t) = \sum_{n=-\infty}^\infty x_a(nT_s)*\delta(t-nT_s) &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After which the sampled signal is converted into a discrete-time signal by mapping the impulses that are spaced in time by &amp;lt;math&amp;gt; T_s &amp;lt;/math&amp;gt; into a sequence x(n) where the sample values are indexed by the integer variable n:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; \bold x(n) = x_a(nT_s) &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Principle author of this page:  [[User:santsh|Shawn Santana]]&lt;/div&gt;</summary>
		<author><name>Greg</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Sampling&amp;diff=1226</id>
		<title>Sampling</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Sampling&amp;diff=1226"/>
		<updated>2005-11-08T19:23:50Z</updated>

		<summary type="html">&lt;p&gt;Greg: /* Sampling Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
In this chapter we will look at sampling and how it affects signal processing.  Sampling is the process of taking a continuous stream of data with infinite points of resolution and getting that data into a form that can be stored in a finite data set.&lt;br /&gt;
&lt;br /&gt;
==Sampling Overview==&lt;br /&gt;
Imagine that we have a song that is being played in a studio.  We would like to record the song and store it on a computer in form that will allow the song to be played back to sound as much like the original as possible.  However, the song being played has an infinite set of points when it is played.  We must throw out much of this data and yet keep enough to reconstruct the song.  This is where sampling comes in.  By taking evenly spaced out samples of the data stream, we can later reconstruct the stream of data.  The sampler converts the continuous time signal x(t) into a discrete-time sequence x(n) by taking the values of x(t) at integer multiples of the sampling perioud, T.  Typically, discrete signals are formed by periodically sampling a continuous time signal using the form:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; \bold x(n) = x_a(n*T_s) &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Signals_Sampling.JPG]]greg&lt;br /&gt;
&lt;br /&gt;
There are, however, a few things that we need to keep in mind when trying to sample signals with many frequencies in them.  When we sample data, we want to be able to sample enough data to get a correct reconstruction (this is discussed further below), but we don’t want to sample too much data that our sets become unmanageable.&lt;br /&gt;
&lt;br /&gt;
==Sampling Theory==&lt;br /&gt;
According to Sampling Theory, you must sample fast enough that you eliminate all possible aliases that can occur from sampling.  Aliasing is what happens when you sample a signal that can later be reconstructed with two possible frequencies.  This can be seen by the picture shown below.  Another example of this can be seen in older western movies when watching the spoked wheels of a stagecoach rotate backward at a slow rate.  This happens when each frame of film is taken at a slightly faster rate than that of the rotating wheel.  In order to sample fast enough to eliminate all possible aliases, you must sample at a rate greater than twice the maximum frequency found in the signal to be sampled.  &lt;br /&gt;
&lt;br /&gt;
[[Image:Sampling_pic1.JPG]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Going back to our example of audio, we know that humans can hear from about 20 Hz up to about 20,000 Hz.  Therefore we know that we want to make sure that we sample fast enough that we will get this entire frequency spectrum.  In order to do this, we apply the principle   where F is our highest frequency and T is our sampling rate to get a value of T = 40,000 Hz.  This is also known as the Nyquist Theorem.  This explains why audio that is recorded onto a CD is sampled at a rate of 44,100 Hz (they sample slightly higher than necessary for a 20 KHz max frequency).  &lt;br /&gt;
Something to note here is the fact that even though we want to sample our signal for frequencies between 20 and 20,000 Hz, most signals have many more frequencies in them due to white noise.  In order to make sure that only the desired frequency is sampled you can run your signal through a pre-filter (sometimes called an anti-aliasing filter).  This guarantees that the sampled data system receives analog signals having a frequency spectrum no greater than those frequencies allowed by the filter.&lt;br /&gt;
&lt;br /&gt;
To see how the sampled data is reconstructed, refer to my section on how a [[User:santsh|CD Player]] works.&lt;br /&gt;
&lt;br /&gt;
==Sampling Process==&lt;br /&gt;
&lt;br /&gt;
In order to see how the sampling process works, imagine a periodic sequence of impulses,&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; s_a(t) = \sum_{n=-\infty}^\infty \delta(t-nT_s) &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now multiply your signal by the impulses to form the sampled signal&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; x_s(t) = x_a(t) * s_a(t) = \sum_{n=-\infty}^\infty x_a(nT_s)*\delta(t-nT_s) &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After which the sampled signal is converted into a discrete-time signal by mapping the impulses that are spaced in time by &amp;lt;math&amp;gt; T_s &amp;lt;/math&amp;gt; into a sequence x(n) where the sample values are indexed by the integer variable n:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; \bold x(n) = x_a(nT_s) &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Principle author of this page:  [[User:santsh|Shawn Santana]]&lt;/div&gt;</summary>
		<author><name>Greg</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Fourier_series_-_by_Ray_Betz&amp;diff=1230</id>
		<title>Fourier series - by Ray Betz</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Fourier_series_-_by_Ray_Betz&amp;diff=1230"/>
		<updated>2005-11-08T19:23:15Z</updated>

		<summary type="html">&lt;p&gt;Greg: /* Linear Systems */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Fourier Series==&lt;br /&gt;
If &lt;br /&gt;
# &amp;lt;math&amp;gt; x(t) = x(t + T)&amp;lt;/math&amp;gt;&lt;br /&gt;
# Dirichlet conditions are satisfied&lt;br /&gt;
then we can write&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; \bold x(t) = \sum_{k=-\infty}^\infty \alpha_k e^ \frac {j 2 \pi k t}{T}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
The above equation is called the complex fourier series. Given &amp;lt;math&amp;gt;x(t)&amp;lt;/math&amp;gt;, we may determine &amp;lt;math&amp;gt; \alpha_k &amp;lt;/math&amp;gt; by taking the [[inner product]] of &amp;lt;math&amp;gt;\alpha_k&amp;lt;/math&amp;gt; with &amp;lt;math&amp;gt;x(t)&amp;lt;/math&amp;gt;.&lt;br /&gt;
Let us assume a solution for &amp;lt;math&amp;gt;\alpha_k&amp;lt;/math&amp;gt; of the form &amp;lt;math&amp;gt;e^ \frac {j 2 \pi n t}{T}&amp;lt;/math&amp;gt;. Now we take the inner product of &amp;lt;math&amp;gt;\alpha_k&amp;lt;/math&amp;gt; with &amp;lt;math&amp;gt;x(t)&amp;lt;/math&amp;gt; over the interval of one period, &amp;lt;math&amp;gt; T &amp;lt;/math&amp;gt;.&lt;br /&gt;
&amp;lt;math&amp;gt; &amp;lt;\alpha_k|x(t)&amp;gt; = &amp;lt;e^ \frac {j 2 \pi n t}{T}|\sum_{k=-\infty}^\infty \alpha_k e^ \frac {j 2 \pi k t}{T}&amp;gt; &amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;= \int_{-\frac{T}{2}}^\frac{T}{2} x(t)e^ \frac {-j 2 \pi n t}{T} dt &amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;= \int_{-\frac{T}{2}}^\frac{T}{2} \sum_{k=-\infty}^\infty \alpha_k e^ \frac {j 2 \pi k t}{T}e^ \frac {-j 2 \pi n t}{T} dt &amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;= \sum_{k=-\infty}^\infty \alpha_k \int_{-\frac{T}{2}}^\frac{T}{2}  e^ \frac {j 2 \pi (k-n) t}{T} dt &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If &amp;lt;math&amp;gt;k=n&amp;lt;/math&amp;gt; then,&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; \int_{-\frac{T}{2}}^\frac{T}{2}  e^ \frac {j 2 \pi (k-n) t}{T} dt = \int_{-\frac{T}{2}}^\frac{T}{2}  1 dt = T&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If &amp;lt;math&amp;gt;k \ne n &amp;lt;/math&amp;gt; then,&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; \int_{-\frac{T}{2}}^\frac{T}{2}  e^ \frac {j 2 \pi (k-n) t}{T} dt = 0 &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We can simplify the above two conclusion into one equation. (What is the [[delta function]] below?)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; \sum_{k=-\infty}^\infty \alpha_k \int_{-\frac{T}{2}}^\frac{T}{2}  e^ \frac {j 2 \pi (k-n) t}{T} dt = \sum_{k=-\infty}^\infty T \delta_{k,n} \alpha_k = T \alpha_n &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
So, we conclude&lt;br /&gt;
&amp;lt;math&amp;gt;\alpha_n = \frac{1}{T}\int_{-\frac{T}{2}}^\frac{T}{2} x(t) e^ \frac {-j 2 \pi n t}{T} dt &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Orthogonal Functions==&lt;br /&gt;
&lt;br /&gt;
The function &amp;lt;math&amp;gt; y_n(t) &amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt; y_m(t) &amp;lt;/math&amp;gt; are orthogonal on &amp;lt;math&amp;gt; (a,b) &amp;lt;/math&amp;gt; if and only if &amp;lt;math&amp;gt; &amp;lt;y_n(t)|y_m(t)&amp;gt; = \int_{a}^{b} y_n^*(t)y_m(t) dt = 0   &amp;lt;/math&amp;gt;.  &lt;br /&gt;
&lt;br /&gt;
The set of functions are orthonormal if and only if &amp;lt;math&amp;gt; &amp;lt;y_n(t)|y_m(t)&amp;gt; = \int_{a}^{b} y_n^*(t)y_m(t) dt = \delta_{m,n}  &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Linear Systems==&lt;br /&gt;
&lt;br /&gt;
Let us say we have a linear time invarient system, where &amp;lt;math&amp;gt; x(t) &amp;lt;/math&amp;gt; is the input and &amp;lt;math&amp;gt; y(t) &amp;lt;/math&amp;gt; is the output.  What outputs do we get as we put different inputs into this system?  &lt;br /&gt;
[[Image:Linear_System.JPG]]&lt;br /&gt;
&lt;br /&gt;
If we put in an impulse response, &amp;lt;math&amp;gt; \delta(t)&amp;lt;/math&amp;gt;, then we get out &amp;lt;math&amp;gt;h(t)&amp;lt;/math&amp;gt;. What would happen if we put a time delayed impulse signal, &amp;lt;math&amp;gt; \delta(t-u)&amp;lt;/math&amp;gt;, into the system?  The output response would be a time delayed &amp;lt;math&amp;gt;h(t)&amp;lt;/math&amp;gt;, or &amp;lt;math&amp;gt;h(t-u)&amp;lt;/math&amp;gt;, because the system is time invarient. So, no matter when we put in our signal the response would come out the same (just time delayed).  &lt;br /&gt;
&lt;br /&gt;
What if we now multiplied our impulse by a coefficient?  Since our system is linear, the proportionality property applies.  If we put &amp;lt;math&amp;gt; x(u)\delta(t-u)&amp;lt;/math&amp;gt; into our system then we should get out &amp;lt;math&amp;gt;x(u)h(t-u)&amp;lt;/math&amp;gt;.  &lt;br /&gt;
&lt;br /&gt;
By the superposition property(because we have a linear system) we may put into the system the integral of &amp;lt;math&amp;gt; x(u)\delta(t-u)&amp;lt;/math&amp;gt; and we would get out &amp;lt;math&amp;gt; \int_{-\infty}^\infty x(u)h(t-u) du&amp;lt;/math&amp;gt;.  What would we get if we put &amp;lt;math&amp;gt; e^{j 2 \pi f t} &amp;lt;/math&amp;gt; into our system?  We could find out by plugging &amp;lt;math&amp;gt; e^{j 2 \pi f t} &amp;lt;/math&amp;gt; in for &amp;lt;math&amp;gt; x(u) &amp;lt;/math&amp;gt; in the integral that we just found the output for above.  If we do a change of variables (&amp;lt;math&amp;gt; v = t-u &amp;lt;/math&amp;gt;, and &amp;lt;math&amp;gt; dv = -du &amp;lt;/math&amp;gt;) we get &amp;lt;math&amp;gt; \int_{-\infty}^\infty x(u)h(t-u) du = \int_{-\infty}^\infty e^{j 2 \pi f t} h(t-u) du = -\int_{\infty}^{-\infty} e^{j 2 \pi f (t-v)} h(v) dv = e^{j 2 \pi f t} \int_{-\infty}^\infty h(v)e^{-j 2 \pi f v} dv&amp;lt;/math&amp;gt;. By pulling &amp;lt;math&amp;gt; e^{j 2 \pi f t} &amp;lt;/math&amp;gt; out of the integral and calling the remaining integral &amp;lt;math&amp;gt; B_k &amp;lt;/math&amp;gt; we get &amp;lt;math&amp;gt; e^{j 2 \pi f t} B_k&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;width:600px; height:100px&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| &#039;&#039;&#039;INPUT&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;OUTPUT&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;REASON&#039;&#039;&#039;&lt;br /&gt;
|-  &lt;br /&gt;
| &amp;lt;math&amp;gt; \delta(t)&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;h(t)&amp;lt;/math&amp;gt; &lt;br /&gt;
| Given&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;math&amp;gt; \delta(t-u)&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;h(t-u)&amp;lt;/math&amp;gt; &lt;br /&gt;
| Time Invarient&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;math&amp;gt; x(u)\delta(t-u)&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;x(u)h(t-u)&amp;lt;/math&amp;gt; &lt;br /&gt;
| Proportionality&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;math&amp;gt; \int_{-\infty}^\infty x(u)\delta(t-u) du&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt; \int_{-\infty}^\infty x(u)h(t-u) du&amp;lt;/math&amp;gt;&lt;br /&gt;
|Superposition&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;math&amp;gt; \int_{-\infty}^\infty e^{j 2 \pi f t} h(t-u) du&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt; e^{j 2 \pi f t} \int_{-\infty}^\infty e^{j 2 \pi v t} h(v) dv&amp;lt;/math&amp;gt;&lt;br /&gt;
|Superposition&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;math&amp;gt; e^{j 2 \pi f t} &amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt; e^{j 2 \pi f t} B_k&amp;lt;/math&amp;gt;&lt;br /&gt;
|Superposition (from above)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Fourier Series (indepth)==&lt;br /&gt;
&lt;br /&gt;
I would like to take a closer look at &amp;lt;math&amp;gt; \alpha_k &amp;lt;/math&amp;gt; in the Fourier Series.  Hopefully this will provide a better understanding of &amp;lt;math&amp;gt; \alpha_k &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
We will seperate x(t) into three parts; where &amp;lt;math&amp;gt; \alpha_k &amp;lt;/math&amp;gt; is negative, zero, and positive.  &lt;br /&gt;
&amp;lt;math&amp;gt; \bold x(t) = \sum_{k=-\infty}^\infty \alpha_k e^ \frac {j 2 \pi k t}{T} = \sum_{k=-\infty}^{-1} \alpha_k e^ \frac {j 2 \pi k t}{T} + \alpha_0 + \sum_{k=1}^\infty \alpha_k e^ \frac {j 2 \pi k t}{T}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now, by substituting &amp;lt;math&amp;gt; n = -k &amp;lt;/math&amp;gt; into the summation where &amp;lt;math&amp;gt; k &amp;lt;/math&amp;gt; is negative and substituting &amp;lt;math&amp;gt; n = k &amp;lt;/math&amp;gt; into the summation where &amp;lt;math&amp;gt; k &amp;lt;/math&amp;gt; is positive we get:&lt;br /&gt;
&amp;lt;math&amp;gt; \sum_{n=1}^{\infty} \alpha_{-n} e^ \frac {-j 2 \pi n t}{T} + \alpha_0 + \sum_{n=1}^\infty \alpha_n e^ \frac {j 2 \pi n t}{T} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Recall that &amp;lt;math&amp;gt;\alpha_n = \frac{1}{T}\int_{-\frac{T}{2}}^\frac{T}{2} x(u) e^ \frac {-j 2 \pi n t}{T} dt &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If &amp;lt;math&amp;gt; x(t) &amp;lt;/math&amp;gt; is real, then &amp;lt;math&amp;gt; \alpha_n^* = \alpha_{-n} &amp;lt;/math&amp;gt;. Let us assume that &amp;lt;math&amp;gt; x(t) &amp;lt;/math&amp;gt; is real.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; x(t) = \alpha_0 +\sum_{n=1}^\infty (\alpha_n e^ \frac {j 2 \pi n t}{T} + \alpha_n^* e^ \frac {-j 2 \pi n t}{T}) &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Recall that &amp;lt;math&amp;gt; y + y^* = 2Re(y) &amp;lt;/math&amp;gt; [[Here is further clarification on this property]]&lt;br /&gt;
&lt;br /&gt;
So, we may write:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; x(t) = \alpha_0 +\sum_{n=1}^\infty 2Re(\alpha_n e^ \frac {j 2 \pi n t}{T}) &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Fourier Transform==&lt;br /&gt;
&lt;br /&gt;
Fourier transforms emerge because we want to be able to make Fourier expressions of non-periodic functions.  We can take the limit of those non-periodic functions to get a fourier expression for the function.  &lt;br /&gt;
&lt;br /&gt;
Remember that:&lt;br /&gt;
&amp;lt;math&amp;gt;x(t)=x(t+T)= \sum_{k=-\infty}^\infty \alpha_k e^ \frac {j 2 \pi k t}{T} = \sum_{k=-\infty}^\infty 1/T \int_{-\frac{T}{2}}^\frac{T}{2} x(u)e^ \frac {-j 2 \pi k u }{T} du e^ \frac {j 2 \pi k t}{T} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
So, &lt;br /&gt;
&amp;lt;math&amp;gt; \lim_{x \to \infty}x(t)= \int_{-\infty}^\infty (\int_{-\infty}^\infty  x(u) e^{-j 2 \pi f u} du) e^{j 2 \pi f t} df&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
From the above limit we define &amp;lt;math&amp;gt; x(t)&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt; X(f) &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; x(t) = \mathcal{F}^{-1}[X(f)] = \int_{-\infty}^\infty  X(f) e^ {j 2 \pi f t} df&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; X(f) = \mathcal{F}[x(t)] = \int_{-\infty}^\infty  x(t) e^ {j 2 \pi f t} dt&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We can take the derivitive of &amp;lt;math&amp;gt; x(t) &amp;lt;/math&amp;gt; and then put in terms of the reverse fourier transform.  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; \frac{dx}{dt} = \int_{-\infty}^\infty  j 2 \pi f X(f) e^ {j 2 \pi f t} df = \mathcal{F}^{-1}[j 2 \pi f X(f)]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
What happens if we just shift the time of &amp;lt;math&amp;gt; x(t) &amp;lt;/math&amp;gt;?  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; x(t-t_0) = \int_{-\infty}^\infty X(f) e^{j 2 \pi f(t-t_0)} df = \int_{-\infty}^\infty e^{-j 2 \pi f t_0} X(f) e^{j 2 \pi f t} df = \mathcal{F}^{-1}[e^{-j 2 \pi f t_0} X(f)] &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the same way, if we shift the frequency we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; X(f-f_0) = \int_{-\infty}^\infty x(t) e^{j 2 \pi (f-f_0)t} dt = \int_{-\infty}^\infty e^{-j 2 \pi t f_0} x(t) e^{j 2 \pi f t} df = \mathcal{F} [e^{-j 2 \pi t f_0} x(t)] &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
What would be the Fourier transform of &amp;lt;math&amp;gt; cos(2 /pi f_0 t) x(t) &amp;lt;/math&amp;gt;?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;&lt;br /&gt;
==CD Player==&lt;br /&gt;
&lt;br /&gt;
Below is a diagram of how the information on a CD player is read and processed.  As you can see the information on the CD is processed by the D/A converter and then sent through a low pass filter and on to the speaker.  If you were recording sound, the sound would be captured through a microphone. Then, it should be sent through a low pass filter and onto the A/D converter and then it is ready to be put on the CD.  Recording signals is essentially the reverse of the operation pictured below.&lt;br /&gt;
&lt;br /&gt;
[[Image:CDsystem.jpg]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;In Time Domain:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Let&#039;s start with a signal &amp;lt;math&amp;gt; h(t) &amp;lt;/math&amp;gt;, as shown below. In this signal there is an infinite amount of information.  Obviously, we can&#039;t hold it all in a computer, but we could take samples every &amp;lt;math&amp;gt; T &amp;lt;/math&amp;gt;.  Lets do that by multiplying &amp;lt;math&amp;gt; h(t) &amp;lt;/math&amp;gt; by &amp;lt;math&amp;gt; \sum_{n=-\infty}^\infty  \delta (t-nT) &amp;lt;/math&amp;gt;. Since the magnetude of our delta function is one, we get a series of delta functions that record the value of &amp;lt;math&amp;gt; h(t) &amp;lt;/math&amp;gt; at intervals of &amp;lt;math&amp;gt; T &amp;lt;/math&amp;gt;. This gives us a result that looks like: &amp;lt;math&amp;gt; h(t)\sum_{n=-\infty}^\infty  \delta (t-nT) = \sum_{n=-\infty}^\infty x(nt) \delta (t-nT)&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;In Frequency Domain:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
In the frequency domain we start with &amp;lt;math&amp;gt; H(f) &amp;lt;/math&amp;gt;.  Now we are in frequency, so we must convolve instead of multiply like we did in the time domain.  We would have to convolve &amp;lt;math&amp;gt; H(f) &amp;lt;/math&amp;gt; with &amp;lt;math&amp;gt; \mathcal{F}[ \sum_{n=-\infty}^\infty  \delta (t-nT) ]&amp;lt;/math&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
Aside:&amp;lt;math&amp;gt; \mathcal{F}[ \sum_{n=-\infty}^\infty  \delta (t-nT) ] = \int_{-\infty}^\infty \sum_{n=-\infty}^\infty \delta (t-nT) e^{j 2 \pi f t} dt = \sum_{n=-\infty}^\infty \int_{-\infty}^\infty \delta (t-nT) e^{j 2 \pi f t} dt = \sum_{n=-\infty}^\infty e^{j 2 \pi f n T}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This result looks it could be a fourier series. We would like to get our result in terms of delta functions.  As shown below, the periodic delta functions could be represented as a fourier series with coefficients &amp;lt;math&amp;gt; \alpha_m &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; \sum_{n=-\infty}^\infty  \delta (t-nT) = \sum_{m=-\infty}^\infty \alpha_m e^ {j 2 \pi m t} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now we can solve for &amp;lt;math&amp;gt; \alpha_m &amp;lt;/math&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; \alpha_m =  \frac {1}{T} \int_{\frac{-T}{2}}^{\frac{T}{2}}  \sum_{n=-\infty}^\infty   \delta (t-nT)  \frac {j 2 \pi m t}{T} dt =  \frac {1}{T} \int_{\frac{-T}{2}}^{\frac{-T}{2}} \delta (t) \frac {j 2 \pi m t}{T} dt =  \frac {1}{T} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Since the only delta function within the integration limits is the delta function at &amp;lt;math&amp;gt; t=0 &amp;lt;/math&amp;gt;, we can take out the summation and just leave one delta function.  Then, evaluating the integral at &amp;lt;math&amp;gt; t=0 &amp;lt;/math&amp;gt; we get &amp;lt;math&amp;gt; \frac{1}{T} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; \sum_{n=-\infty}^\infty  \delta (t-nT) = \sum_{n=-\infty}^\infty \frac {1}{T} e^ \frac {j 2 \pi k t}{T} &amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; \mathcal{F} \sum_{n=-\infty}^\infty  \delta (t-nT) = \mathcal{F} \sum_{n=-\infty}^\infty \frac {1}{T} e^ \frac {j 2 \pi k t}{T} = \sum_{n=-\infty}^\infty \frac {1}{T} \int_{-\infty}^\infty e^ \frac {j 2 \pi k t}{T} e^ {-j 2 \pi f t} dt= \frac {1}{T} \sum_{n=-\infty}^\infty \int_{-\infty}^\infty  e^ {-j 2 \pi (f-\frac{m}{T} t} dt&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:barnsasample.jpg|Picture uploaded by Sam Barnes]]&lt;br /&gt;
&lt;br /&gt;
[[Image:barnsaDA.jpg|Picture uploaded by Sam Barnes]]&lt;/div&gt;</summary>
		<author><name>Greg</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Fourier_series_-_by_Ray_Betz&amp;diff=1224</id>
		<title>Fourier series - by Ray Betz</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Fourier_series_-_by_Ray_Betz&amp;diff=1224"/>
		<updated>2005-11-08T19:23:05Z</updated>

		<summary type="html">&lt;p&gt;Greg: /* Linear Systems */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Fourier Series==&lt;br /&gt;
If &lt;br /&gt;
# &amp;lt;math&amp;gt; x(t) = x(t + T)&amp;lt;/math&amp;gt;&lt;br /&gt;
# Dirichlet conditions are satisfied&lt;br /&gt;
then we can write&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; \bold x(t) = \sum_{k=-\infty}^\infty \alpha_k e^ \frac {j 2 \pi k t}{T}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
The above equation is called the complex fourier series. Given &amp;lt;math&amp;gt;x(t)&amp;lt;/math&amp;gt;, we may determine &amp;lt;math&amp;gt; \alpha_k &amp;lt;/math&amp;gt; by taking the [[inner product]] of &amp;lt;math&amp;gt;\alpha_k&amp;lt;/math&amp;gt; with &amp;lt;math&amp;gt;x(t)&amp;lt;/math&amp;gt;.&lt;br /&gt;
Let us assume a solution for &amp;lt;math&amp;gt;\alpha_k&amp;lt;/math&amp;gt; of the form &amp;lt;math&amp;gt;e^ \frac {j 2 \pi n t}{T}&amp;lt;/math&amp;gt;. Now we take the inner product of &amp;lt;math&amp;gt;\alpha_k&amp;lt;/math&amp;gt; with &amp;lt;math&amp;gt;x(t)&amp;lt;/math&amp;gt; over the interval of one period, &amp;lt;math&amp;gt; T &amp;lt;/math&amp;gt;.&lt;br /&gt;
&amp;lt;math&amp;gt; &amp;lt;\alpha_k|x(t)&amp;gt; = &amp;lt;e^ \frac {j 2 \pi n t}{T}|\sum_{k=-\infty}^\infty \alpha_k e^ \frac {j 2 \pi k t}{T}&amp;gt; &amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;= \int_{-\frac{T}{2}}^\frac{T}{2} x(t)e^ \frac {-j 2 \pi n t}{T} dt &amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;= \int_{-\frac{T}{2}}^\frac{T}{2} \sum_{k=-\infty}^\infty \alpha_k e^ \frac {j 2 \pi k t}{T}e^ \frac {-j 2 \pi n t}{T} dt &amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;= \sum_{k=-\infty}^\infty \alpha_k \int_{-\frac{T}{2}}^\frac{T}{2}  e^ \frac {j 2 \pi (k-n) t}{T} dt &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If &amp;lt;math&amp;gt;k=n&amp;lt;/math&amp;gt; then,&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; \int_{-\frac{T}{2}}^\frac{T}{2}  e^ \frac {j 2 \pi (k-n) t}{T} dt = \int_{-\frac{T}{2}}^\frac{T}{2}  1 dt = T&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If &amp;lt;math&amp;gt;k \ne n &amp;lt;/math&amp;gt; then,&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; \int_{-\frac{T}{2}}^\frac{T}{2}  e^ \frac {j 2 \pi (k-n) t}{T} dt = 0 &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We can simplify the above two conclusion into one equation. (What is the [[delta function]] below?)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; \sum_{k=-\infty}^\infty \alpha_k \int_{-\frac{T}{2}}^\frac{T}{2}  e^ \frac {j 2 \pi (k-n) t}{T} dt = \sum_{k=-\infty}^\infty T \delta_{k,n} \alpha_k = T \alpha_n &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
So, we conclude&lt;br /&gt;
&amp;lt;math&amp;gt;\alpha_n = \frac{1}{T}\int_{-\frac{T}{2}}^\frac{T}{2} x(t) e^ \frac {-j 2 \pi n t}{T} dt &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Orthogonal Functions==&lt;br /&gt;
&lt;br /&gt;
The function &amp;lt;math&amp;gt; y_n(t) &amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt; y_m(t) &amp;lt;/math&amp;gt; are orthogonal on &amp;lt;math&amp;gt; (a,b) &amp;lt;/math&amp;gt; if and only if &amp;lt;math&amp;gt; &amp;lt;y_n(t)|y_m(t)&amp;gt; = \int_{a}^{b} y_n^*(t)y_m(t) dt = 0   &amp;lt;/math&amp;gt;.  &lt;br /&gt;
&lt;br /&gt;
The set of functions are orthonormal if and only if &amp;lt;math&amp;gt; &amp;lt;y_n(t)|y_m(t)&amp;gt; = \int_{a}^{b} y_n^*(t)y_m(t) dt = \delta_{m,n}  &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Linear Systems==&lt;br /&gt;
&lt;br /&gt;
Let us say we have a linear time invarient system, where &amp;lt;math&amp;gt; x(t) &amp;lt;/math&amp;gt; is the input and &amp;lt;math&amp;gt; y(t) &amp;lt;/math&amp;gt; is the output.  What outputs do we get as we put different inputs into this system?  &lt;br /&gt;
[[Image:Linear_System.JPG]]sdflkjjlkfsdljkfsdljk&lt;br /&gt;
&lt;br /&gt;
If we put in an impulse response, &amp;lt;math&amp;gt; \delta(t)&amp;lt;/math&amp;gt;, then we get out &amp;lt;math&amp;gt;h(t)&amp;lt;/math&amp;gt;. What would happen if we put a time delayed impulse signal, &amp;lt;math&amp;gt; \delta(t-u)&amp;lt;/math&amp;gt;, into the system?  The output response would be a time delayed &amp;lt;math&amp;gt;h(t)&amp;lt;/math&amp;gt;, or &amp;lt;math&amp;gt;h(t-u)&amp;lt;/math&amp;gt;, because the system is time invarient. So, no matter when we put in our signal the response would come out the same (just time delayed).  &lt;br /&gt;
&lt;br /&gt;
What if we now multiplied our impulse by a coefficient?  Since our system is linear, the proportionality property applies.  If we put &amp;lt;math&amp;gt; x(u)\delta(t-u)&amp;lt;/math&amp;gt; into our system then we should get out &amp;lt;math&amp;gt;x(u)h(t-u)&amp;lt;/math&amp;gt;.  &lt;br /&gt;
&lt;br /&gt;
By the superposition property(because we have a linear system) we may put into the system the integral of &amp;lt;math&amp;gt; x(u)\delta(t-u)&amp;lt;/math&amp;gt; and we would get out &amp;lt;math&amp;gt; \int_{-\infty}^\infty x(u)h(t-u) du&amp;lt;/math&amp;gt;.  What would we get if we put &amp;lt;math&amp;gt; e^{j 2 \pi f t} &amp;lt;/math&amp;gt; into our system?  We could find out by plugging &amp;lt;math&amp;gt; e^{j 2 \pi f t} &amp;lt;/math&amp;gt; in for &amp;lt;math&amp;gt; x(u) &amp;lt;/math&amp;gt; in the integral that we just found the output for above.  If we do a change of variables (&amp;lt;math&amp;gt; v = t-u &amp;lt;/math&amp;gt;, and &amp;lt;math&amp;gt; dv = -du &amp;lt;/math&amp;gt;) we get &amp;lt;math&amp;gt; \int_{-\infty}^\infty x(u)h(t-u) du = \int_{-\infty}^\infty e^{j 2 \pi f t} h(t-u) du = -\int_{\infty}^{-\infty} e^{j 2 \pi f (t-v)} h(v) dv = e^{j 2 \pi f t} \int_{-\infty}^\infty h(v)e^{-j 2 \pi f v} dv&amp;lt;/math&amp;gt;. By pulling &amp;lt;math&amp;gt; e^{j 2 \pi f t} &amp;lt;/math&amp;gt; out of the integral and calling the remaining integral &amp;lt;math&amp;gt; B_k &amp;lt;/math&amp;gt; we get &amp;lt;math&amp;gt; e^{j 2 \pi f t} B_k&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;width:600px; height:100px&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
| &#039;&#039;&#039;INPUT&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;OUTPUT&#039;&#039;&#039;&lt;br /&gt;
| &#039;&#039;&#039;REASON&#039;&#039;&#039;&lt;br /&gt;
|-  &lt;br /&gt;
| &amp;lt;math&amp;gt; \delta(t)&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;h(t)&amp;lt;/math&amp;gt; &lt;br /&gt;
| Given&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;math&amp;gt; \delta(t-u)&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;h(t-u)&amp;lt;/math&amp;gt; &lt;br /&gt;
| Time Invarient&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;math&amp;gt; x(u)\delta(t-u)&amp;lt;/math&amp;gt;&lt;br /&gt;
| &amp;lt;math&amp;gt;x(u)h(t-u)&amp;lt;/math&amp;gt; &lt;br /&gt;
| Proportionality&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;math&amp;gt; \int_{-\infty}^\infty x(u)\delta(t-u) du&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt; \int_{-\infty}^\infty x(u)h(t-u) du&amp;lt;/math&amp;gt;&lt;br /&gt;
|Superposition&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;math&amp;gt; \int_{-\infty}^\infty e^{j 2 \pi f t} h(t-u) du&amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt; e^{j 2 \pi f t} \int_{-\infty}^\infty e^{j 2 \pi v t} h(v) dv&amp;lt;/math&amp;gt;&lt;br /&gt;
|Superposition&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;math&amp;gt; e^{j 2 \pi f t} &amp;lt;/math&amp;gt;&lt;br /&gt;
|&amp;lt;math&amp;gt; e^{j 2 \pi f t} B_k&amp;lt;/math&amp;gt;&lt;br /&gt;
|Superposition (from above)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Fourier Series (indepth)==&lt;br /&gt;
&lt;br /&gt;
I would like to take a closer look at &amp;lt;math&amp;gt; \alpha_k &amp;lt;/math&amp;gt; in the Fourier Series.  Hopefully this will provide a better understanding of &amp;lt;math&amp;gt; \alpha_k &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
We will seperate x(t) into three parts; where &amp;lt;math&amp;gt; \alpha_k &amp;lt;/math&amp;gt; is negative, zero, and positive.  &lt;br /&gt;
&amp;lt;math&amp;gt; \bold x(t) = \sum_{k=-\infty}^\infty \alpha_k e^ \frac {j 2 \pi k t}{T} = \sum_{k=-\infty}^{-1} \alpha_k e^ \frac {j 2 \pi k t}{T} + \alpha_0 + \sum_{k=1}^\infty \alpha_k e^ \frac {j 2 \pi k t}{T}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now, by substituting &amp;lt;math&amp;gt; n = -k &amp;lt;/math&amp;gt; into the summation where &amp;lt;math&amp;gt; k &amp;lt;/math&amp;gt; is negative and substituting &amp;lt;math&amp;gt; n = k &amp;lt;/math&amp;gt; into the summation where &amp;lt;math&amp;gt; k &amp;lt;/math&amp;gt; is positive we get:&lt;br /&gt;
&amp;lt;math&amp;gt; \sum_{n=1}^{\infty} \alpha_{-n} e^ \frac {-j 2 \pi n t}{T} + \alpha_0 + \sum_{n=1}^\infty \alpha_n e^ \frac {j 2 \pi n t}{T} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Recall that &amp;lt;math&amp;gt;\alpha_n = \frac{1}{T}\int_{-\frac{T}{2}}^\frac{T}{2} x(u) e^ \frac {-j 2 \pi n t}{T} dt &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If &amp;lt;math&amp;gt; x(t) &amp;lt;/math&amp;gt; is real, then &amp;lt;math&amp;gt; \alpha_n^* = \alpha_{-n} &amp;lt;/math&amp;gt;. Let us assume that &amp;lt;math&amp;gt; x(t) &amp;lt;/math&amp;gt; is real.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; x(t) = \alpha_0 +\sum_{n=1}^\infty (\alpha_n e^ \frac {j 2 \pi n t}{T} + \alpha_n^* e^ \frac {-j 2 \pi n t}{T}) &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Recall that &amp;lt;math&amp;gt; y + y^* = 2Re(y) &amp;lt;/math&amp;gt; [[Here is further clarification on this property]]&lt;br /&gt;
&lt;br /&gt;
So, we may write:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; x(t) = \alpha_0 +\sum_{n=1}^\infty 2Re(\alpha_n e^ \frac {j 2 \pi n t}{T}) &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Fourier Transform==&lt;br /&gt;
&lt;br /&gt;
Fourier transforms emerge because we want to be able to make Fourier expressions of non-periodic functions.  We can take the limit of those non-periodic functions to get a fourier expression for the function.  &lt;br /&gt;
&lt;br /&gt;
Remember that:&lt;br /&gt;
&amp;lt;math&amp;gt;x(t)=x(t+T)= \sum_{k=-\infty}^\infty \alpha_k e^ \frac {j 2 \pi k t}{T} = \sum_{k=-\infty}^\infty 1/T \int_{-\frac{T}{2}}^\frac{T}{2} x(u)e^ \frac {-j 2 \pi k u }{T} du e^ \frac {j 2 \pi k t}{T} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
So, &lt;br /&gt;
&amp;lt;math&amp;gt; \lim_{x \to \infty}x(t)= \int_{-\infty}^\infty (\int_{-\infty}^\infty  x(u) e^{-j 2 \pi f u} du) e^{j 2 \pi f t} df&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
From the above limit we define &amp;lt;math&amp;gt; x(t)&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt; X(f) &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; x(t) = \mathcal{F}^{-1}[X(f)] = \int_{-\infty}^\infty  X(f) e^ {j 2 \pi f t} df&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; X(f) = \mathcal{F}[x(t)] = \int_{-\infty}^\infty  x(t) e^ {j 2 \pi f t} dt&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We can take the derivitive of &amp;lt;math&amp;gt; x(t) &amp;lt;/math&amp;gt; and then put in terms of the reverse fourier transform.  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; \frac{dx}{dt} = \int_{-\infty}^\infty  j 2 \pi f X(f) e^ {j 2 \pi f t} df = \mathcal{F}^{-1}[j 2 \pi f X(f)]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
What happens if we just shift the time of &amp;lt;math&amp;gt; x(t) &amp;lt;/math&amp;gt;?  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; x(t-t_0) = \int_{-\infty}^\infty X(f) e^{j 2 \pi f(t-t_0)} df = \int_{-\infty}^\infty e^{-j 2 \pi f t_0} X(f) e^{j 2 \pi f t} df = \mathcal{F}^{-1}[e^{-j 2 \pi f t_0} X(f)] &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the same way, if we shift the frequency we get:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; X(f-f_0) = \int_{-\infty}^\infty x(t) e^{j 2 \pi (f-f_0)t} dt = \int_{-\infty}^\infty e^{-j 2 \pi t f_0} x(t) e^{j 2 \pi f t} df = \mathcal{F} [e^{-j 2 \pi t f_0} x(t)] &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
What would be the Fourier transform of &amp;lt;math&amp;gt; cos(2 /pi f_0 t) x(t) &amp;lt;/math&amp;gt;?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;&lt;br /&gt;
==CD Player==&lt;br /&gt;
&lt;br /&gt;
Below is a diagram of how the information on a CD player is read and processed.  As you can see the information on the CD is processed by the D/A converter and then sent through a low pass filter and on to the speaker.  If you were recording sound, the sound would be captured through a microphone. Then, it should be sent through a low pass filter and onto the A/D converter and then it is ready to be put on the CD.  Recording signals is essentially the reverse of the operation pictured below.&lt;br /&gt;
&lt;br /&gt;
[[Image:CDsystem.jpg]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;In Time Domain:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Let&#039;s start with a signal &amp;lt;math&amp;gt; h(t) &amp;lt;/math&amp;gt;, as shown below. In this signal there is an infinite amount of information.  Obviously, we can&#039;t hold it all in a computer, but we could take samples every &amp;lt;math&amp;gt; T &amp;lt;/math&amp;gt;.  Lets do that by multiplying &amp;lt;math&amp;gt; h(t) &amp;lt;/math&amp;gt; by &amp;lt;math&amp;gt; \sum_{n=-\infty}^\infty  \delta (t-nT) &amp;lt;/math&amp;gt;. Since the magnetude of our delta function is one, we get a series of delta functions that record the value of &amp;lt;math&amp;gt; h(t) &amp;lt;/math&amp;gt; at intervals of &amp;lt;math&amp;gt; T &amp;lt;/math&amp;gt;. This gives us a result that looks like: &amp;lt;math&amp;gt; h(t)\sum_{n=-\infty}^\infty  \delta (t-nT) = \sum_{n=-\infty}^\infty x(nt) \delta (t-nT)&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;In Frequency Domain:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
In the frequency domain we start with &amp;lt;math&amp;gt; H(f) &amp;lt;/math&amp;gt;.  Now we are in frequency, so we must convolve instead of multiply like we did in the time domain.  We would have to convolve &amp;lt;math&amp;gt; H(f) &amp;lt;/math&amp;gt; with &amp;lt;math&amp;gt; \mathcal{F}[ \sum_{n=-\infty}^\infty  \delta (t-nT) ]&amp;lt;/math&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
Aside:&amp;lt;math&amp;gt; \mathcal{F}[ \sum_{n=-\infty}^\infty  \delta (t-nT) ] = \int_{-\infty}^\infty \sum_{n=-\infty}^\infty \delta (t-nT) e^{j 2 \pi f t} dt = \sum_{n=-\infty}^\infty \int_{-\infty}^\infty \delta (t-nT) e^{j 2 \pi f t} dt = \sum_{n=-\infty}^\infty e^{j 2 \pi f n T}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This result looks it could be a fourier series. We would like to get our result in terms of delta functions.  As shown below, the periodic delta functions could be represented as a fourier series with coefficients &amp;lt;math&amp;gt; \alpha_m &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; \sum_{n=-\infty}^\infty  \delta (t-nT) = \sum_{m=-\infty}^\infty \alpha_m e^ {j 2 \pi m t} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now we can solve for &amp;lt;math&amp;gt; \alpha_m &amp;lt;/math&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; \alpha_m =  \frac {1}{T} \int_{\frac{-T}{2}}^{\frac{T}{2}}  \sum_{n=-\infty}^\infty   \delta (t-nT)  \frac {j 2 \pi m t}{T} dt =  \frac {1}{T} \int_{\frac{-T}{2}}^{\frac{-T}{2}} \delta (t) \frac {j 2 \pi m t}{T} dt =  \frac {1}{T} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Since the only delta function within the integration limits is the delta function at &amp;lt;math&amp;gt; t=0 &amp;lt;/math&amp;gt;, we can take out the summation and just leave one delta function.  Then, evaluating the integral at &amp;lt;math&amp;gt; t=0 &amp;lt;/math&amp;gt; we get &amp;lt;math&amp;gt; \frac{1}{T} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; \sum_{n=-\infty}^\infty  \delta (t-nT) = \sum_{n=-\infty}^\infty \frac {1}{T} e^ \frac {j 2 \pi k t}{T} &amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; \mathcal{F} \sum_{n=-\infty}^\infty  \delta (t-nT) = \mathcal{F} \sum_{n=-\infty}^\infty \frac {1}{T} e^ \frac {j 2 \pi k t}{T} = \sum_{n=-\infty}^\infty \frac {1}{T} \int_{-\infty}^\infty e^ \frac {j 2 \pi k t}{T} e^ {-j 2 \pi f t} dt= \frac {1}{T} \sum_{n=-\infty}^\infty \int_{-\infty}^\infty  e^ {-j 2 \pi (f-\frac{m}{T} t} dt&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:barnsasample.jpg|Picture uploaded by Sam Barnes]]&lt;br /&gt;
&lt;br /&gt;
[[Image:barnsaDA.jpg|Picture uploaded by Sam Barnes]]&lt;/div&gt;</summary>
		<author><name>Greg</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=User:Wonoje&amp;diff=1246</id>
		<title>User:Wonoje</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=User:Wonoje&amp;diff=1246"/>
		<updated>2005-11-08T19:21:25Z</updated>

		<summary type="html">&lt;p&gt;Greg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Jeffrey Wonoprabowo==&lt;br /&gt;
Making a page about myself is the first assignment for the class; although it isn&#039;t  exactly the easiest thing to do as I never know what to write for these things.&lt;br /&gt;
&lt;br /&gt;
This is my fourth and final year at Walla Walla College. When I first came my concentration was in computer engineering. However, towards the end of my second year, I switched to Bioengineering and am currently applying to medical schools.&lt;br /&gt;
&lt;br /&gt;
At this point I am very sad because I cannot tell you how a CD player works... All I can do is write about myself. So below you&#039;ll find a modified picture of the one I put up on my hall in Meske; and the only reason I put one up is cause the RAs were asked to do so... I did not just put up a poster of myself up for fun.&lt;br /&gt;
&lt;br /&gt;
[[Image:JeffSS.jpg]]&lt;/div&gt;</summary>
		<author><name>Greg</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=User:Wonoje&amp;diff=1222</id>
		<title>User:Wonoje</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=User:Wonoje&amp;diff=1222"/>
		<updated>2005-11-08T19:21:10Z</updated>

		<summary type="html">&lt;p&gt;Greg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Jeffrey Wonoprabowo==&lt;br /&gt;
Making a page about myself is the first assignment for the class; although it isn&#039;t  exactly the easiest thing to do as I never know what to write for these things.&lt;br /&gt;
&lt;br /&gt;
This is my fourth and final year at Walla Walla College. When I first came my concentration was in computer engineering. However, towards the end of my second year, I switched to Bioengineering and am currently applying to medical schools.&lt;br /&gt;
&lt;br /&gt;
At this point I am very sad because I cannot tell you how a CD player works... All I can do is write about myself. So below you&#039;ll find a modified picture of the one I put up on my hall in Meske; and the only reason I put one up is cause the RAs were asked to do so... I did not just put up a poster of myself up for fun.&lt;br /&gt;
&lt;br /&gt;
[[Image:JeffSS.jpg]]&lt;br /&gt;
[[Image:na.jpg]]&lt;/div&gt;</summary>
		<author><name>Greg</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=User:Greg&amp;diff=4063</id>
		<title>User:Greg</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=User:Greg&amp;diff=4063"/>
		<updated>2005-11-08T19:09:08Z</updated>

		<summary type="html">&lt;p&gt;Greg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Greg.jpg]]&lt;/div&gt;</summary>
		<author><name>Greg</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=File:Greg.jpg&amp;diff=4062</id>
		<title>File:Greg.jpg</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=File:Greg.jpg&amp;diff=4062"/>
		<updated>2005-11-08T18:58:30Z</updated>

		<summary type="html">&lt;p&gt;Greg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Greg</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=File:Greg.jpg&amp;diff=1220</id>
		<title>File:Greg.jpg</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=File:Greg.jpg&amp;diff=1220"/>
		<updated>2005-11-08T18:56:01Z</updated>

		<summary type="html">&lt;p&gt;Greg: My picture&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;My picture&lt;/div&gt;</summary>
		<author><name>Greg</name></author>
	</entry>
</feed>