<?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=John.hawkins</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=John.hawkins"/>
	<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php/Special:Contributions/John.hawkins"/>
	<updated>2026-05-18T12:22:00Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.0</generator>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Derivative_Operator_Picture_Code&amp;diff=8901</id>
		<title>Derivative Operator Picture Code</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Derivative_Operator_Picture_Code&amp;diff=8901"/>
		<updated>2010-02-05T06:19:08Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: Main Content&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The figure in [[Derivative Matrix for a Function Vector]] was generated with the following code:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;matlab&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
%                                                                           &lt;br /&gt;
&lt;br /&gt;
%  _-_,,       ,,                _-_-                   ,,                  &lt;br /&gt;
&lt;br /&gt;
% (  //        ||                  /,        _   ;      ||    &#039;             &lt;br /&gt;
&lt;br /&gt;
%   _||   /&#039;\\ ||/\\ \\/\\         || __    &amp;lt; \, \\/\/\ ||/\ \\ \\/\\  _-_, &lt;br /&gt;
&lt;br /&gt;
%   _||  || || || || || ||        ~||-  -   /-|| || | | ||_&amp;lt; || || || ||_.  &lt;br /&gt;
&lt;br /&gt;
%    ||  || || || || || ||         ||===|| (( || || | | || | || || ||  ~ || &lt;br /&gt;
&lt;br /&gt;
% -__-,  \\,/  \\ |/ \\ \\        ( \_, |   \/\\ \\/\\/ \\,\ \\ \\ \\ ,-_-  &lt;br /&gt;
&lt;br /&gt;
%                _/                     `                                   &lt;br /&gt;
&lt;br /&gt;
%  &lt;br /&gt;
&lt;br /&gt;
% John Hawkins&lt;br /&gt;
&lt;br /&gt;
% LNA&lt;br /&gt;
&lt;br /&gt;
% Derivative Matrix Example&lt;br /&gt;
&lt;br /&gt;
% 2 Feb 2010&lt;br /&gt;
&lt;br /&gt;
function DerivativeExample&lt;br /&gt;
&lt;br /&gt;
x=linspace(0,4*pi,500)&#039;;&lt;br /&gt;
&lt;br /&gt;
y=sin(x);&lt;br /&gt;
&lt;br /&gt;
dydx=cos(x);&lt;br /&gt;
&lt;br /&gt;
h.fig=figure(&#039;color&#039;,&#039;w&#039;,&#039;units&#039;,&#039;normalized&#039;,&#039;position&#039;,[.2 .2 .6 .6]);&lt;br /&gt;
&lt;br /&gt;
plot(x,y,&#039;color&#039;,[.8 .8 .8]);&lt;br /&gt;
&lt;br /&gt;
hold on;&lt;br /&gt;
&lt;br /&gt;
plot(x,dydx,&#039;color&#039;,[.8 .8 .8]);&lt;br /&gt;
&lt;br /&gt;
numStartPoints=10;&lt;br /&gt;
&lt;br /&gt;
x=linspace(0,4*pi,numStartPoints)&#039;;&lt;br /&gt;
&lt;br /&gt;
y=sin(x);&lt;br /&gt;
&lt;br /&gt;
dydx=DERIV(x,y);&lt;br /&gt;
&lt;br /&gt;
h.y=plot(x,y,&#039;b.&#039;);&lt;br /&gt;
&lt;br /&gt;
h.construct=plot(0,0,&#039;r&#039;);&lt;br /&gt;
&lt;br /&gt;
h.dydx=plot(0,0,&#039;r.&#039;);&lt;br /&gt;
&lt;br /&gt;
legend([h.y,h.construct,h.dydx],&#039;y&#039;,&#039;Construction Line&#039;,&#039;dy/dx&#039;);&lt;br /&gt;
&lt;br /&gt;
xlabel(&#039;x&#039;); ylabel(&#039;y&#039;);&lt;br /&gt;
&lt;br /&gt;
axis equal;&lt;br /&gt;
&lt;br /&gt;
title(&#039;Taking the Derivative of a Finite Function Vector for y=sin x&#039;,...&lt;br /&gt;
&lt;br /&gt;
    &#039;fontname&#039;,&#039;times&#039;,&#039;fontsize&#039;,20);&lt;br /&gt;
&lt;br /&gt;
set([h.construct,h.dydx],&#039;visible&#039;,&#039;off&#039;);&lt;br /&gt;
&lt;br /&gt;
fig = getframe(h.fig);&lt;br /&gt;
&lt;br /&gt;
[im,map] = rgb2ind(fig.cdata,256,&#039;nodither&#039;);&lt;br /&gt;
&lt;br /&gt;
set(h.construct,&#039;visible&#039;,&#039;on&#039;,&#039;xdata&#039;,x([1,2]),&#039;ydata&#039;,y([1,2]));&lt;br /&gt;
&lt;br /&gt;
im=CAPTUREFIG(im,map,h);&lt;br /&gt;
&lt;br /&gt;
set(h.dydx,&#039;visible&#039;,&#039;on&#039;,&#039;xdata&#039;,x(1),&#039;ydata&#039;,dydx(1));&lt;br /&gt;
&lt;br /&gt;
im=CAPTUREFIG(im,map,h);&lt;br /&gt;
&lt;br /&gt;
for n=2:numStartPoints-1&lt;br /&gt;
&lt;br /&gt;
    set(h.construct,&#039;xdata&#039;,x([n-1,n+1]),&#039;ydata&#039;,y([n-1,n+1]));&lt;br /&gt;
&lt;br /&gt;
    im=CAPTUREFIG(im,map,h);&lt;br /&gt;
&lt;br /&gt;
    set(h.dydx,&#039;xdata&#039;,x(1:n),&#039;ydata&#039;,dydx(1:n));&lt;br /&gt;
&lt;br /&gt;
    im=CAPTUREFIG(im,map,h);&lt;br /&gt;
&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
set(h.construct,&#039;xdata&#039;,x([numStartPoints-1,numStartPoints]),...&lt;br /&gt;
&lt;br /&gt;
    &#039;ydata&#039;,y([numStartPoints-1,numStartPoints]));&lt;br /&gt;
&lt;br /&gt;
im=CAPTUREFIG(im,map,h);&lt;br /&gt;
&lt;br /&gt;
set(h.dydx,&#039;xdata&#039;,x,&#039;ydata&#039;,dydx);&lt;br /&gt;
&lt;br /&gt;
im=CAPTUREFIG(im,map,h);&lt;br /&gt;
&lt;br /&gt;
set(h.construct,&#039;visible&#039;,&#039;off&#039;);&lt;br /&gt;
&lt;br /&gt;
im=CAPTUREFIG(im,map,h);&lt;br /&gt;
&lt;br /&gt;
for k=1:5&lt;br /&gt;
&lt;br /&gt;
    im=CAPTUREFIG(im,map,h);&lt;br /&gt;
&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
for n=[15 20 30 50 100 200 500]&lt;br /&gt;
&lt;br /&gt;
    x=linspace(0,4*pi,n)&#039;;&lt;br /&gt;
&lt;br /&gt;
    y=sin(x);&lt;br /&gt;
&lt;br /&gt;
    dydx=DERIV(x,y);&lt;br /&gt;
&lt;br /&gt;
    set(h.y,&#039;xdata&#039;,x,&#039;ydata&#039;,y);&lt;br /&gt;
&lt;br /&gt;
    set(h.dydx,&#039;xdata&#039;,x,&#039;ydata&#039;,dydx);&lt;br /&gt;
&lt;br /&gt;
    im=CAPTUREFIG(im,map,h);&lt;br /&gt;
&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
for k=1:5&lt;br /&gt;
&lt;br /&gt;
    im=CAPTUREFIG(im,map,h);&lt;br /&gt;
&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
imwrite(im,map,&#039;Derivative.gif&#039;,&#039;DelayTime&#039;,.5,&#039;LoopCount&#039;,inf)&lt;br /&gt;
&lt;br /&gt;
function dydx=DERIV(x,y)&lt;br /&gt;
&lt;br /&gt;
num=numel(y);&lt;br /&gt;
&lt;br /&gt;
deltax=x(2)-x(1);&lt;br /&gt;
&lt;br /&gt;
operator=zeros(num);&lt;br /&gt;
&lt;br /&gt;
operator(1,1)=-2;&lt;br /&gt;
&lt;br /&gt;
operator(1,2)=2;&lt;br /&gt;
&lt;br /&gt;
for k=2:num-1&lt;br /&gt;
&lt;br /&gt;
    operator(k,k+1)=1;&lt;br /&gt;
&lt;br /&gt;
    operator(k,k-1)=-1;&lt;br /&gt;
&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
operator(num,num-1)=-2;&lt;br /&gt;
&lt;br /&gt;
operator(num,num)=2;&lt;br /&gt;
&lt;br /&gt;
operator=operator/(2*deltax);&lt;br /&gt;
&lt;br /&gt;
dydx=operator*y;&lt;br /&gt;
&lt;br /&gt;
function im=CAPTUREFIG(im,map,h)&lt;br /&gt;
&lt;br /&gt;
fig = getframe(h.fig);&lt;br /&gt;
&lt;br /&gt;
im(:,:,1,size(im,4)+1) = rgb2ind(fig.cdata,map,&#039;nodither&#039;);&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Derivative_Matrix_for_a_Function_Vector&amp;diff=8900</id>
		<title>Derivative Matrix for a Function Vector</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Derivative_Matrix_for_a_Function_Vector&amp;diff=8900"/>
		<updated>2010-02-05T06:18:57Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: Moving code to its own page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Author==&lt;br /&gt;
&lt;br /&gt;
John Hawkins&lt;br /&gt;
&lt;br /&gt;
==Problem==&lt;br /&gt;
&lt;br /&gt;
The following problem statement is that proposed by Prof. Frohne on the main class page:&lt;br /&gt;
&lt;br /&gt;
#  Explore how a linear operator, like for example &amp;lt;math&amp;gt;d \over dt&amp;lt;/math&amp;gt; can be represented as some kind of a matrix multiply (with perhaps an infinite number of dimensions). &lt;br /&gt;
&lt;br /&gt;
==Solution==&lt;br /&gt;
&lt;br /&gt;
The solution presented here is limited to presenting a matrix representation of the operator &amp;lt;math&amp;gt;d / dx&amp;lt;/math&amp;gt;.  &lt;br /&gt;
&lt;br /&gt;
First, let us consider the finite case.  Let &amp;lt;math&amp;gt;x&amp;lt;/math&amp;gt; be the independent variable with &amp;lt;math&amp;gt;n&amp;lt;/math&amp;gt; components and let the components of &amp;lt;math&amp;gt;x&amp;lt;/math&amp;gt; be defined such that &amp;lt;math&amp;gt;x_{m+1}=x_m+\Delta x&amp;lt;/math&amp;gt; for all &amp;lt;math&amp;gt;m&amp;lt;n&amp;lt;/math&amp;gt; and for some constant &amp;lt;math&amp;gt;\Delta x&amp;lt;/math&amp;gt;.  Also let &amp;lt;math&amp;gt;y=f(x)&amp;lt;/math&amp;gt;.  We wish to find the slope of the function at &amp;lt;math&amp;gt;y(x_m)&amp;lt;/math&amp;gt; for any &amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt;.  To do this for the finite case, we will approximate the slope at a point &amp;lt;math&amp;gt;y(x_m)&amp;lt;/math&amp;gt; as being the slope of the line between the two points &amp;lt;math&amp;gt;y(x_{m-1})&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;y(x_{m+1})&amp;lt;/math&amp;gt; given that &amp;lt;math&amp;gt;1&amp;lt;m&amp;lt;n&amp;lt;/math&amp;gt;.  For the case when &amp;lt;math&amp;gt;m=1&amp;lt;/math&amp;gt; or &amp;lt;math&amp;gt;m=n&amp;lt;/math&amp;gt;, we approximate &amp;lt;math&amp;gt;dy/dx&amp;lt;/math&amp;gt; as the slope the lines between &amp;lt;math&amp;gt;y(x_1)&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;y(x_n)&amp;lt;/math&amp;gt; respectively.  These approximations are accomplished by the following matrix:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
\frac{d}{dx} = \dfrac{1}{2(\Delta x)}\begin{bmatrix}&lt;br /&gt;
&lt;br /&gt;
-2&amp;amp;2&amp;amp;0&amp;amp;0&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;\\&lt;br /&gt;
&lt;br /&gt;
-1&amp;amp;0&amp;amp;1&amp;amp;0&amp;amp;&amp;amp;&amp;amp;\cdots&amp;amp;&amp;amp;\\&lt;br /&gt;
&lt;br /&gt;
0&amp;amp;-1&amp;amp;0&amp;amp;1&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;\\&lt;br /&gt;
&lt;br /&gt;
\\&lt;br /&gt;
&lt;br /&gt;
&amp;amp;&amp;amp;&amp;amp;&amp;amp;\ddots&amp;amp;&amp;amp;&amp;amp;&amp;amp;\\&lt;br /&gt;
&lt;br /&gt;
\\&lt;br /&gt;
&lt;br /&gt;
&amp;amp;\vdots&amp;amp;&amp;amp;&amp;amp;&amp;amp;-1&amp;amp;0&amp;amp;1&amp;amp;0\\&lt;br /&gt;
&lt;br /&gt;
&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;0&amp;amp;-1&amp;amp;0&amp;amp;1\\&lt;br /&gt;
&lt;br /&gt;
&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;0&amp;amp;0&amp;amp;-2&amp;amp;2&lt;br /&gt;
&lt;br /&gt;
\end{bmatrix}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/math&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note that we need to divide by &amp;lt;math&amp;gt;1/2(\Delta x)&amp;lt;/math&amp;gt; because the distance between &amp;lt;math&amp;gt;x_{m-1}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{m+1}&amp;lt;/math&amp;gt; is &amp;lt;math&amp;gt;2\Delta x&amp;lt;/math&amp;gt;.  Similarly, the nonzero entries in the first and last rows are 2 to cancel out the 2 in the denominator.  Using this matrix, we find that&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
\left(\frac{d}{dx}\right)y=\dfrac{1}{2(\Delta x)}\begin{bmatrix}&lt;br /&gt;
&lt;br /&gt;
-2&amp;amp;2&amp;amp;0&amp;amp;0&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;\\&lt;br /&gt;
&lt;br /&gt;
-1&amp;amp;0&amp;amp;1&amp;amp;0&amp;amp;&amp;amp;&amp;amp;\cdots&amp;amp;&amp;amp;\\&lt;br /&gt;
&lt;br /&gt;
0&amp;amp;-1&amp;amp;0&amp;amp;1&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;\\&lt;br /&gt;
&lt;br /&gt;
\\&lt;br /&gt;
&lt;br /&gt;
&amp;amp;&amp;amp;&amp;amp;&amp;amp;\ddots&amp;amp;&amp;amp;&amp;amp;&amp;amp;\\&lt;br /&gt;
&lt;br /&gt;
\\&lt;br /&gt;
&lt;br /&gt;
&amp;amp;\vdots&amp;amp;&amp;amp;&amp;amp;&amp;amp;-1&amp;amp;0&amp;amp;1&amp;amp;0\\&lt;br /&gt;
&lt;br /&gt;
&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;0&amp;amp;-1&amp;amp;0&amp;amp;1\\&lt;br /&gt;
&lt;br /&gt;
&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;0&amp;amp;0&amp;amp;-2&amp;amp;2&lt;br /&gt;
&lt;br /&gt;
\end{bmatrix}&lt;br /&gt;
\begin{bmatrix}y(x_1)\\y(x_2)\\y(x_3)\\ \\ \vdots \\ \\ y(x_{n-2})\\y(x_{n-1})\\y(x_n)\end{bmatrix}&lt;br /&gt;
=&lt;br /&gt;
&lt;br /&gt;
\begin{bmatrix}&lt;br /&gt;
&lt;br /&gt;
\left[y(x_2)-y(x_1)\right]/\Delta x\\&lt;br /&gt;
&lt;br /&gt;
\left[y(x_3)-y(x_1)\right]/2(\Delta x)\\&lt;br /&gt;
&lt;br /&gt;
\left[y(x_4)-y(x_2)\right]/2(\Delta x)\\&lt;br /&gt;
&lt;br /&gt;
\\&lt;br /&gt;
&lt;br /&gt;
\vdots \\&lt;br /&gt;
&lt;br /&gt;
\\&lt;br /&gt;
&lt;br /&gt;
\left[y(x_{n-1})-y(x_{n-3})\right]/2(\Delta x)\\&lt;br /&gt;
&lt;br /&gt;
\left[y(x_n)-y(x_{n-2})\right]/2(\Delta x)\\&lt;br /&gt;
&lt;br /&gt;
\left[y(x_n)-y(x_{n-1})\right]/\Delta x&lt;br /&gt;
&lt;br /&gt;
\end{bmatrix}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/math&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
which corresponds with the slopes we wished to obtain.&lt;br /&gt;
&lt;br /&gt;
==Solution Picture==&lt;br /&gt;
&lt;br /&gt;
The figure below was created to demonstrate how the above matrix works.  First, 10 points of the function are displayed.  Then for each point the line between the two adjacent points is drawn and the slope of that line is shown to be &amp;lt;math&amp;gt;dy/dx&amp;lt;/math&amp;gt; for the original point, calculated using the matrix shown above.  After this has been done in the case of 10 points, the function and derivative vectors are shown for 15, 20, 30, 50, 100, 200, and 500 points.  One can easily imagine the limiting case.  The code used to develop this image can be found [[Derivative Operator Picture Code|here]].&lt;br /&gt;
&lt;br /&gt;
[[Image:Derivative.gif]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Reviewed By==&lt;br /&gt;
&lt;br /&gt;
==Read By==&lt;br /&gt;
&lt;br /&gt;
==Comments==&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Problem_5_Exam_1&amp;diff=8898</id>
		<title>Problem 5 Exam 1</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Problem_5_Exam_1&amp;diff=8898"/>
		<updated>2010-02-05T06:11:17Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==General Problem Statement==&lt;br /&gt;
Set up and solve a simple spring mass problem that models a car&#039;s shock absorber system.&lt;br /&gt;
&lt;br /&gt;
==Designed Problem Statement==&lt;br /&gt;
&lt;br /&gt;
A car of mass (&amp;lt;math&amp;gt; m \ &amp;lt;/math&amp;gt;) 1000 kg rests on a shock absorber that has a damper coefficient (&amp;lt;math&amp;gt; \beta \ &amp;lt;/math&amp;gt;) of 2,000 N&amp;lt;math&amp;gt;\cdot&amp;lt;/math&amp;gt;s/m and a spring coefficient (&amp;lt;math&amp;gt; k \ &amp;lt;/math&amp;gt;) of 400,000 N/m. A tree lands on the car, delivering a force of &amp;lt;math&amp;gt;f_t&amp;lt;/math&amp;gt; to the car and consequently the shock absorber.&lt;br /&gt;
&lt;br /&gt;
Find the transfer function of the shock absorber and create the Bode plot of it.&lt;br /&gt;
&lt;br /&gt;
[[Image:SD_FBD.jpg|thumb|800px|right|The shock absorber in its uncompressed state and compressed state.]]&lt;br /&gt;
&lt;br /&gt;
==Equations==&lt;br /&gt;
&lt;br /&gt;
The force of the tree and the force of the car&#039;s weight due to gravity can be combined into one equation. &amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; f(t) = f_t + mg \ &amp;lt;/math&amp;gt; &amp;lt;br&amp;gt; &amp;lt;br&amp;gt;&lt;br /&gt;
The damping force of the damper in the shock absorber has an equation similar to a spring. &amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; f_D = \beta \frac {dy} {dt} &amp;lt;/math&amp;gt; &amp;lt;br&amp;gt; &amp;lt;br&amp;gt;&lt;br /&gt;
The spring on the shock absorber has the following equation to define its reactive force against the tree and car. &amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; f_s = ky(t) \ &amp;lt;/math&amp;gt; &amp;lt;br&amp;gt; &amp;lt;br&amp;gt; &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Doing the sum of the forces in the y-direction gives us the following equation: &amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; \Sigma F_y = f(t) - f_D - f_s = ma_y \ &amp;lt;/math&amp;gt; &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The acceleration in the y-direction can be substituted out as &amp;lt;math&amp;gt; \frac {d^2y} {dt^2} &amp;lt;/math&amp;gt;. And we can then substitute in the remaining definitions of two of the three force variables in the summation equation above. The resulting force of the tree falling on the car and the car&#039;s weight need not be substituted in. This will give us the equation here: &amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; \Sigma F_y = f(t) - \beta \frac {dy} {dt} - ky(t) = m\frac {d^2y} {dt^2} \ &amp;lt;/math&amp;gt; &amp;lt;br&amp;gt; &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now that we have this equation, we can take the Laplace transform of it: &amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; \mathcal{L} \left\{\Sigma F_y = f(t) - \beta \frac {dy} {dt} - ky(t) = m\frac {d^2y} {dt^2} \right\} &amp;lt;/math&amp;gt; &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We can now progress through and take the Laplace of each of the terms to find the output function &amp;lt;math&amp;gt;Y(s) \ &amp;lt;/math&amp;gt;. &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; F(s) - \beta (sY(s) - y(0)) - kY(s) = m(s^2Y(s) - sy(0) - y&#039;(0)) \ &amp;lt;/math&amp;gt; &amp;lt;br&amp;gt; &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Since this was a second order differential equation before we took the Laplace Transform of it, we need two initial conditions. For this example, we can say that: &amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; y(0) = y&#039;(0) = 0 \ &amp;lt;/math&amp;gt; &amp;lt;br&amp;gt; &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Using these initial conditions, we can simplify the transformed equation. &amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; F(s) - \beta (sY(s)) - kY(s) = m(s^2Y(s)) \ &amp;lt;/math&amp;gt; &amp;lt;br&amp;gt; &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Next we can move the terms around so that we solve for &amp;lt;math&amp;gt;Y(s) \ &amp;lt;/math&amp;gt;, our output function. &amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; Y(s) = \frac {F(s)} {ms^2 + \beta s + k} = \frac {\frac {F(s)} {m}} {s^2 + \frac {\beta s} {m} + \frac {k} {m}} \ &amp;lt;/math&amp;gt; &amp;lt;br&amp;gt; &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Since our output function is: &amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; Y(s) = \frac {\frac {F(s)} {m}} {s^2 + \frac {\beta s} {m} + \frac {k} {m}} \ &amp;lt;/math&amp;gt; &amp;lt;br&amp;gt; &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We can now plug it into the transfer function equation, which is written as: &amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; H(s) = \frac {Y(s)} {F(s)} \ &amp;lt;/math&amp;gt; The input function is &amp;lt;math&amp;gt; F(s) \ &amp;lt;/math&amp;gt;, which is the Laplaced version of &amp;lt;math&amp;gt; f(t) \ &amp;lt;/math&amp;gt;, because it includes the force of the tree falling on the car, which is the factor that disturbs the system. &amp;lt;br&amp;gt; &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Plugging in our output function into the transfer function equation, we get the following: &amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; H(s) = \frac {\frac {\frac {F(s)} {m}} {s^2 + \frac {\beta s} {m} + \frac {k} {m}}} {F(s)} \ &amp;lt;/math&amp;gt; &amp;lt;br&amp;gt; &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This can simplify to: &amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; H(s) = \frac {\frac {1} {m}} {s^2 + \frac {\beta s} {m} + \frac {k} {m}} \ &amp;lt;/math&amp;gt; &amp;lt;br&amp;gt; &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Plugging in the given values for &amp;lt;math&amp;gt; m \ &amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt; \beta \ &amp;lt;/math&amp;gt;, and &amp;lt;math&amp;gt; k \ &amp;lt;/math&amp;gt;, the simplified transfer function becomes: &amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; H(s) = \frac {\frac {1} {1000}} {s^2 + \frac {2000s} {1000} + \frac {400000} {1000}} \ &amp;lt;/math&amp;gt; &amp;lt;br&amp;gt; &amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt; H(s) = \frac {\frac {1} {1000}} {s^2 + 2s + 400} \ &amp;lt;/math&amp;gt; &amp;lt;br&amp;gt; &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This final transfer function generates the MATLAB-created figure below are the final solutions.&lt;br /&gt;
&lt;br /&gt;
[[Image:Bode_Plot_2.JPG|thumb|560px|center|The Bode plot of the transfer function.]] &amp;lt;br \&amp;gt; &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Author==&lt;br /&gt;
Brian Roath&lt;br /&gt;
&lt;br /&gt;
==Read By==&lt;br /&gt;
John Hawkins&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Derivative_Matrix_for_a_Function_Vector&amp;diff=8865</id>
		<title>Derivative Matrix for a Function Vector</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Derivative_Matrix_for_a_Function_Vector&amp;diff=8865"/>
		<updated>2010-02-03T06:04:32Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: Added final equation.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Author==&lt;br /&gt;
&lt;br /&gt;
John Hawkins&lt;br /&gt;
&lt;br /&gt;
==Problem==&lt;br /&gt;
&lt;br /&gt;
The following problem statement is that proposed by Prof. Frohne on the main class page:&lt;br /&gt;
&lt;br /&gt;
#  Explore how a linear operator, like for example &amp;lt;math&amp;gt;d \over dt&amp;lt;/math&amp;gt; can be represented as some kind of a matrix multiply (with perhaps an infinite number of dimensions). &lt;br /&gt;
&lt;br /&gt;
==Solution==&lt;br /&gt;
&lt;br /&gt;
The solution presented here is limited to presenting a matrix representation of the operator &amp;lt;math&amp;gt;d / dx&amp;lt;/math&amp;gt;.  &lt;br /&gt;
&lt;br /&gt;
First, let us consider the finite case.  Let &amp;lt;math&amp;gt;x&amp;lt;/math&amp;gt; be the independent variable with &amp;lt;math&amp;gt;n&amp;lt;/math&amp;gt; components and let the components of &amp;lt;math&amp;gt;x&amp;lt;/math&amp;gt; be defined such that &amp;lt;math&amp;gt;x_{m+1}=x_m+\Delta x&amp;lt;/math&amp;gt; for all &amp;lt;math&amp;gt;m&amp;lt;n&amp;lt;/math&amp;gt; and for some constant &amp;lt;math&amp;gt;\Delta x&amp;lt;/math&amp;gt;.  Also let &amp;lt;math&amp;gt;y=f(x)&amp;lt;/math&amp;gt;.  We wish to find the slope of the function at &amp;lt;math&amp;gt;y(x_m)&amp;lt;/math&amp;gt; for any &amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt;.  To do this for the finite case, we will approximate the slope at a point &amp;lt;math&amp;gt;y(x_m)&amp;lt;/math&amp;gt; as being the slope of the line between the two points &amp;lt;math&amp;gt;y(x_{m-1})&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;y(x_{m+1})&amp;lt;/math&amp;gt; given that &amp;lt;math&amp;gt;1&amp;lt;m&amp;lt;n&amp;lt;/math&amp;gt;.  For the case when &amp;lt;math&amp;gt;m=1&amp;lt;/math&amp;gt; or &amp;lt;math&amp;gt;m=n&amp;lt;/math&amp;gt;, we approximate &amp;lt;math&amp;gt;dy/dx&amp;lt;/math&amp;gt; as the slope the lines between &amp;lt;math&amp;gt;y(x_1)&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;y(x_n)&amp;lt;/math&amp;gt; respectively.  These approximations are accomplished by the following matrix:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
\frac{d}{dx} = \dfrac{1}{2(\Delta x)}\begin{bmatrix}&lt;br /&gt;
&lt;br /&gt;
-2&amp;amp;2&amp;amp;0&amp;amp;0&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;\\&lt;br /&gt;
&lt;br /&gt;
-1&amp;amp;0&amp;amp;1&amp;amp;0&amp;amp;&amp;amp;&amp;amp;\cdots&amp;amp;&amp;amp;\\&lt;br /&gt;
&lt;br /&gt;
0&amp;amp;-1&amp;amp;0&amp;amp;1&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;\\&lt;br /&gt;
&lt;br /&gt;
\\&lt;br /&gt;
&lt;br /&gt;
&amp;amp;&amp;amp;&amp;amp;&amp;amp;\ddots&amp;amp;&amp;amp;&amp;amp;&amp;amp;\\&lt;br /&gt;
&lt;br /&gt;
\\&lt;br /&gt;
&lt;br /&gt;
&amp;amp;\vdots&amp;amp;&amp;amp;&amp;amp;&amp;amp;-1&amp;amp;0&amp;amp;1&amp;amp;0\\&lt;br /&gt;
&lt;br /&gt;
&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;0&amp;amp;-1&amp;amp;0&amp;amp;1\\&lt;br /&gt;
&lt;br /&gt;
&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;0&amp;amp;0&amp;amp;-2&amp;amp;2&lt;br /&gt;
&lt;br /&gt;
\end{bmatrix}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/math&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note that we need to divide by &amp;lt;math&amp;gt;1/2(\Delta x)&amp;lt;/math&amp;gt; because the distance between &amp;lt;math&amp;gt;x_{m-1}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{m+1}&amp;lt;/math&amp;gt; is &amp;lt;math&amp;gt;2\Delta x&amp;lt;/math&amp;gt;.  Similarly, the nonzero entries in the first and last rows are 2 to cancel out the 2 in the denominator.  Using this matrix, we find that&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
\left(\frac{d}{dx}\right)y=\dfrac{1}{2(\Delta x)}\begin{bmatrix}&lt;br /&gt;
&lt;br /&gt;
-2&amp;amp;2&amp;amp;0&amp;amp;0&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;\\&lt;br /&gt;
&lt;br /&gt;
-1&amp;amp;0&amp;amp;1&amp;amp;0&amp;amp;&amp;amp;&amp;amp;\cdots&amp;amp;&amp;amp;\\&lt;br /&gt;
&lt;br /&gt;
0&amp;amp;-1&amp;amp;0&amp;amp;1&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;\\&lt;br /&gt;
&lt;br /&gt;
\\&lt;br /&gt;
&lt;br /&gt;
&amp;amp;&amp;amp;&amp;amp;&amp;amp;\ddots&amp;amp;&amp;amp;&amp;amp;&amp;amp;\\&lt;br /&gt;
&lt;br /&gt;
\\&lt;br /&gt;
&lt;br /&gt;
&amp;amp;\vdots&amp;amp;&amp;amp;&amp;amp;&amp;amp;-1&amp;amp;0&amp;amp;1&amp;amp;0\\&lt;br /&gt;
&lt;br /&gt;
&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;0&amp;amp;-1&amp;amp;0&amp;amp;1\\&lt;br /&gt;
&lt;br /&gt;
&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;0&amp;amp;0&amp;amp;-2&amp;amp;2&lt;br /&gt;
&lt;br /&gt;
\end{bmatrix}&lt;br /&gt;
\begin{bmatrix}y(x_1)\\y(x_2)\\y(x_3)\\ \\ \vdots \\ \\ y(x_{n-2})\\y(x_{n-1})\\y(x_n)\end{bmatrix}&lt;br /&gt;
=&lt;br /&gt;
&lt;br /&gt;
\begin{bmatrix}&lt;br /&gt;
&lt;br /&gt;
\left[y(x_2)-y(x_1)\right]/\Delta x\\&lt;br /&gt;
&lt;br /&gt;
\left[y(x_3)-y(x_1)\right]/2(\Delta x)\\&lt;br /&gt;
&lt;br /&gt;
\left[y(x_4)-y(x_2)\right]/2(\Delta x)\\&lt;br /&gt;
&lt;br /&gt;
\\&lt;br /&gt;
&lt;br /&gt;
\vdots \\&lt;br /&gt;
&lt;br /&gt;
\\&lt;br /&gt;
&lt;br /&gt;
\left[y(x_{n-1})-y(x_{n-3})\right]/2(\Delta x)\\&lt;br /&gt;
&lt;br /&gt;
\left[y(x_n)-y(x_{n-2})\right]/2(\Delta x)\\&lt;br /&gt;
&lt;br /&gt;
\left[y(x_n)-y(x_{n-1})\right]/\Delta x&lt;br /&gt;
&lt;br /&gt;
\end{bmatrix}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/math&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
which corresponds with the slopes we wished to obtain.&lt;br /&gt;
&lt;br /&gt;
==Solution Picture==&lt;br /&gt;
&lt;br /&gt;
The figure below was created to demonstrate how the above matrix works.  First, 10 points of the function are displayed.  Then for each point the line between the two adjacent points is drawn and the slope of that line is shown to be &amp;lt;math&amp;gt;dy/dx&amp;lt;/math&amp;gt; for the original point, calculated using the matrix shown above.  After this has been done in the case of 10 points, the function and derivative vectors are shown for 15, 20, 30, 50, 100, 200, and 500 points.&lt;br /&gt;
&lt;br /&gt;
[[Image:Derivative.gif]]&lt;br /&gt;
&lt;br /&gt;
==Code==&lt;br /&gt;
&lt;br /&gt;
The figure above was generated with the following code:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;matlab&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
%                                                                           &lt;br /&gt;
&lt;br /&gt;
%  _-_,,       ,,                _-_-                   ,,                  &lt;br /&gt;
&lt;br /&gt;
% (  //        ||                  /,        _   ;      ||    &#039;             &lt;br /&gt;
&lt;br /&gt;
%   _||   /&#039;\\ ||/\\ \\/\\         || __    &amp;lt; \, \\/\/\ ||/\ \\ \\/\\  _-_, &lt;br /&gt;
&lt;br /&gt;
%   _||  || || || || || ||        ~||-  -   /-|| || | | ||_&amp;lt; || || || ||_.  &lt;br /&gt;
&lt;br /&gt;
%    ||  || || || || || ||         ||===|| (( || || | | || | || || ||  ~ || &lt;br /&gt;
&lt;br /&gt;
% -__-,  \\,/  \\ |/ \\ \\        ( \_, |   \/\\ \\/\\/ \\,\ \\ \\ \\ ,-_-  &lt;br /&gt;
&lt;br /&gt;
%                _/                     `                                   &lt;br /&gt;
&lt;br /&gt;
%  &lt;br /&gt;
&lt;br /&gt;
% John Hawkins&lt;br /&gt;
&lt;br /&gt;
% LNA&lt;br /&gt;
&lt;br /&gt;
% Derivative Matrix Example&lt;br /&gt;
&lt;br /&gt;
% 2 Feb 2010&lt;br /&gt;
&lt;br /&gt;
function DerivativeExample&lt;br /&gt;
&lt;br /&gt;
x=linspace(0,4*pi,500)&#039;;&lt;br /&gt;
&lt;br /&gt;
y=sin(x);&lt;br /&gt;
&lt;br /&gt;
dydx=cos(x);&lt;br /&gt;
&lt;br /&gt;
h.fig=figure(&#039;color&#039;,&#039;w&#039;,&#039;units&#039;,&#039;normalized&#039;,&#039;position&#039;,[.2 .2 .6 .6]);&lt;br /&gt;
&lt;br /&gt;
plot(x,y,&#039;color&#039;,[.8 .8 .8]);&lt;br /&gt;
&lt;br /&gt;
hold on;&lt;br /&gt;
&lt;br /&gt;
plot(x,dydx,&#039;color&#039;,[.8 .8 .8]);&lt;br /&gt;
&lt;br /&gt;
numStartPoints=10;&lt;br /&gt;
&lt;br /&gt;
x=linspace(0,4*pi,numStartPoints)&#039;;&lt;br /&gt;
&lt;br /&gt;
y=sin(x);&lt;br /&gt;
&lt;br /&gt;
dydx=DERIV(x,y);&lt;br /&gt;
&lt;br /&gt;
h.y=plot(x,y,&#039;b.&#039;);&lt;br /&gt;
&lt;br /&gt;
h.construct=plot(0,0,&#039;r&#039;);&lt;br /&gt;
&lt;br /&gt;
h.dydx=plot(0,0,&#039;r.&#039;);&lt;br /&gt;
&lt;br /&gt;
legend([h.y,h.construct,h.dydx],&#039;y&#039;,&#039;Construction Line&#039;,&#039;dy/dx&#039;);&lt;br /&gt;
&lt;br /&gt;
xlabel(&#039;x&#039;); ylabel(&#039;y&#039;);&lt;br /&gt;
&lt;br /&gt;
axis equal;&lt;br /&gt;
&lt;br /&gt;
title(&#039;Taking the Derivative of a Finite Function Vector for y=sin x&#039;,...&lt;br /&gt;
&lt;br /&gt;
    &#039;fontname&#039;,&#039;times&#039;,&#039;fontsize&#039;,20);&lt;br /&gt;
&lt;br /&gt;
set([h.construct,h.dydx],&#039;visible&#039;,&#039;off&#039;);&lt;br /&gt;
&lt;br /&gt;
fig = getframe(h.fig);&lt;br /&gt;
&lt;br /&gt;
[im,map] = rgb2ind(fig.cdata,256,&#039;nodither&#039;);&lt;br /&gt;
&lt;br /&gt;
set(h.construct,&#039;visible&#039;,&#039;on&#039;,&#039;xdata&#039;,x([1,2]),&#039;ydata&#039;,y([1,2]));&lt;br /&gt;
&lt;br /&gt;
im=CAPTUREFIG(im,map,h);&lt;br /&gt;
&lt;br /&gt;
set(h.dydx,&#039;visible&#039;,&#039;on&#039;,&#039;xdata&#039;,x(1),&#039;ydata&#039;,dydx(1));&lt;br /&gt;
&lt;br /&gt;
im=CAPTUREFIG(im,map,h);&lt;br /&gt;
&lt;br /&gt;
for n=2:numStartPoints-1&lt;br /&gt;
&lt;br /&gt;
    set(h.construct,&#039;xdata&#039;,x([n-1,n+1]),&#039;ydata&#039;,y([n-1,n+1]));&lt;br /&gt;
&lt;br /&gt;
    im=CAPTUREFIG(im,map,h);&lt;br /&gt;
&lt;br /&gt;
    set(h.dydx,&#039;xdata&#039;,x(1:n),&#039;ydata&#039;,dydx(1:n));&lt;br /&gt;
&lt;br /&gt;
    im=CAPTUREFIG(im,map,h);&lt;br /&gt;
&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
set(h.construct,&#039;xdata&#039;,x([numStartPoints-1,numStartPoints]),...&lt;br /&gt;
&lt;br /&gt;
    &#039;ydata&#039;,y([numStartPoints-1,numStartPoints]));&lt;br /&gt;
&lt;br /&gt;
im=CAPTUREFIG(im,map,h);&lt;br /&gt;
&lt;br /&gt;
set(h.dydx,&#039;xdata&#039;,x,&#039;ydata&#039;,dydx);&lt;br /&gt;
&lt;br /&gt;
im=CAPTUREFIG(im,map,h);&lt;br /&gt;
&lt;br /&gt;
set(h.construct,&#039;visible&#039;,&#039;off&#039;);&lt;br /&gt;
&lt;br /&gt;
im=CAPTUREFIG(im,map,h);&lt;br /&gt;
&lt;br /&gt;
for k=1:5&lt;br /&gt;
&lt;br /&gt;
    im=CAPTUREFIG(im,map,h);&lt;br /&gt;
&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
for n=[15 20 30 50 100 200 500]&lt;br /&gt;
&lt;br /&gt;
    x=linspace(0,4*pi,n)&#039;;&lt;br /&gt;
&lt;br /&gt;
    y=sin(x);&lt;br /&gt;
&lt;br /&gt;
    dydx=DERIV(x,y);&lt;br /&gt;
&lt;br /&gt;
    set(h.y,&#039;xdata&#039;,x,&#039;ydata&#039;,y);&lt;br /&gt;
&lt;br /&gt;
    set(h.dydx,&#039;xdata&#039;,x,&#039;ydata&#039;,dydx);&lt;br /&gt;
&lt;br /&gt;
    im=CAPTUREFIG(im,map,h);&lt;br /&gt;
&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
for k=1:5&lt;br /&gt;
&lt;br /&gt;
    im=CAPTUREFIG(im,map,h);&lt;br /&gt;
&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
imwrite(im,map,&#039;Derivative.gif&#039;,&#039;DelayTime&#039;,.5,&#039;LoopCount&#039;,inf)&lt;br /&gt;
&lt;br /&gt;
function dydx=DERIV(x,y)&lt;br /&gt;
&lt;br /&gt;
num=numel(y);&lt;br /&gt;
&lt;br /&gt;
deltax=x(2)-x(1);&lt;br /&gt;
&lt;br /&gt;
operator=zeros(num);&lt;br /&gt;
&lt;br /&gt;
operator(1,1)=-2;&lt;br /&gt;
&lt;br /&gt;
operator(1,2)=2;&lt;br /&gt;
&lt;br /&gt;
for k=2:num-1&lt;br /&gt;
&lt;br /&gt;
    operator(k,k+1)=1;&lt;br /&gt;
&lt;br /&gt;
    operator(k,k-1)=-1;&lt;br /&gt;
&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
operator(num,num-1)=-2;&lt;br /&gt;
&lt;br /&gt;
operator(num,num)=2;&lt;br /&gt;
&lt;br /&gt;
operator=operator/(2*deltax);&lt;br /&gt;
&lt;br /&gt;
dydx=operator*y;&lt;br /&gt;
&lt;br /&gt;
function im=CAPTUREFIG(im,map,h)&lt;br /&gt;
&lt;br /&gt;
fig = getframe(h.fig);&lt;br /&gt;
&lt;br /&gt;
im(:,:,1,size(im,4)+1) = rgb2ind(fig.cdata,map,&#039;nodither&#039;);&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Reviewed By==&lt;br /&gt;
&lt;br /&gt;
==Read By==&lt;br /&gt;
&lt;br /&gt;
==Comments==&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Derivative_Matrix_for_a_Function_Vector&amp;diff=8864</id>
		<title>Derivative Matrix for a Function Vector</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Derivative_Matrix_for_a_Function_Vector&amp;diff=8864"/>
		<updated>2010-02-03T05:47:38Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Author==&lt;br /&gt;
&lt;br /&gt;
John Hawkins&lt;br /&gt;
&lt;br /&gt;
==Problem==&lt;br /&gt;
&lt;br /&gt;
The following problem statement is that proposed by Prof. Frohne on the main class page:&lt;br /&gt;
&lt;br /&gt;
#  Explore how a linear operator, like for example &amp;lt;math&amp;gt;d \over dt&amp;lt;/math&amp;gt; can be represented as some kind of a matrix multiply (with perhaps an infinite number of dimensions). &lt;br /&gt;
&lt;br /&gt;
==Solution==&lt;br /&gt;
&lt;br /&gt;
The solution presented here is limited to presenting a matrix representation of the operator &amp;lt;math&amp;gt;d / dx&amp;lt;/math&amp;gt;.  &lt;br /&gt;
&lt;br /&gt;
First, let us consider the finite case.  Let &amp;lt;math&amp;gt;x&amp;lt;/math&amp;gt; be the independent variable with &amp;lt;math&amp;gt;n&amp;lt;/math&amp;gt; components and let the components of &amp;lt;math&amp;gt;x&amp;lt;/math&amp;gt; be defined such that &amp;lt;math&amp;gt;x_{m+1}=x_m+\Delta x&amp;lt;/math&amp;gt; for all &amp;lt;math&amp;gt;m&amp;lt;n&amp;lt;/math&amp;gt; and for some constant &amp;lt;math&amp;gt;\Delta x&amp;lt;/math&amp;gt;.  Also let &amp;lt;math&amp;gt;y=f(x)&amp;lt;/math&amp;gt;.  We wish to find the slope of the function at &amp;lt;math&amp;gt;y(x_m)&amp;lt;/math&amp;gt; for any &amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt;.  To do this for the finite case, we will approximate the slope at a point &amp;lt;math&amp;gt;y(x_m)&amp;lt;/math&amp;gt; as being the slope of the line between the two points &amp;lt;math&amp;gt;y(x_{m-1})&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;y(x_{m+1})&amp;lt;/math&amp;gt; given that &amp;lt;math&amp;gt;1&amp;lt;m&amp;lt;n&amp;lt;/math&amp;gt;.  For the case when &amp;lt;math&amp;gt;m=1&amp;lt;/math&amp;gt; or &amp;lt;math&amp;gt;m=n&amp;lt;/math&amp;gt;, we approximate &amp;lt;math&amp;gt;dy/dx&amp;lt;/math&amp;gt; as the slope the lines between &amp;lt;math&amp;gt;y(x_1)&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;y(x_n)&amp;lt;/math&amp;gt; respectively.  These approximations are accomplished by the following matrix:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
\frac{d}{dx} = \dfrac{1}{2(\Delta x)}\begin{bmatrix}&lt;br /&gt;
&lt;br /&gt;
-2&amp;amp;2&amp;amp;0&amp;amp;0&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;\\&lt;br /&gt;
&lt;br /&gt;
-1&amp;amp;0&amp;amp;1&amp;amp;0&amp;amp;&amp;amp;&amp;amp;\cdots&amp;amp;&amp;amp;\\&lt;br /&gt;
&lt;br /&gt;
0&amp;amp;-1&amp;amp;0&amp;amp;1&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;\\&lt;br /&gt;
&lt;br /&gt;
\\&lt;br /&gt;
&lt;br /&gt;
&amp;amp;&amp;amp;&amp;amp;&amp;amp;\ddots&amp;amp;&amp;amp;&amp;amp;&amp;amp;\\&lt;br /&gt;
&lt;br /&gt;
\\&lt;br /&gt;
&lt;br /&gt;
&amp;amp;\vdots&amp;amp;&amp;amp;&amp;amp;&amp;amp;-1&amp;amp;0&amp;amp;1&amp;amp;0\\&lt;br /&gt;
&lt;br /&gt;
&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;0&amp;amp;-1&amp;amp;0&amp;amp;1\\&lt;br /&gt;
&lt;br /&gt;
&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;0&amp;amp;0&amp;amp;-2&amp;amp;2&lt;br /&gt;
&lt;br /&gt;
\end{bmatrix}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/math&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note that we need to divide by &amp;lt;math&amp;gt;1/2(\Delta x)&amp;lt;/math&amp;gt; because the distance between &amp;lt;math&amp;gt;x_{m-1}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{m+1}&amp;lt;/math&amp;gt; is &amp;lt;math&amp;gt;2\Delta x&amp;lt;/math&amp;gt;.  Similarly, the nonzero entries in the first and last rows are 2 to cancel out the 2 in the denominator.&lt;br /&gt;
&lt;br /&gt;
==Solution Picture==&lt;br /&gt;
&lt;br /&gt;
The figure below was created to demonstrate how the above matrix works.  First, 10 points of the function are displayed.  Then for each point the line between the two adjacent points is drawn and the slope of that line is shown to be &amp;lt;math&amp;gt;dy/dx&amp;lt;/math&amp;gt; for the original point, calculated using the matrix shown above.  After this has been done in the case of 10 points, the function and derivative vectors are shown for 15, 20, 30, 50, 100, 200, and 500 points.&lt;br /&gt;
&lt;br /&gt;
[[Image:Derivative.gif]]&lt;br /&gt;
&lt;br /&gt;
==Code==&lt;br /&gt;
&lt;br /&gt;
The figure above was generated with the following code:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;matlab&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
%                                                                           &lt;br /&gt;
&lt;br /&gt;
%  _-_,,       ,,                _-_-                   ,,                  &lt;br /&gt;
&lt;br /&gt;
% (  //        ||                  /,        _   ;      ||    &#039;             &lt;br /&gt;
&lt;br /&gt;
%   _||   /&#039;\\ ||/\\ \\/\\         || __    &amp;lt; \, \\/\/\ ||/\ \\ \\/\\  _-_, &lt;br /&gt;
&lt;br /&gt;
%   _||  || || || || || ||        ~||-  -   /-|| || | | ||_&amp;lt; || || || ||_.  &lt;br /&gt;
&lt;br /&gt;
%    ||  || || || || || ||         ||===|| (( || || | | || | || || ||  ~ || &lt;br /&gt;
&lt;br /&gt;
% -__-,  \\,/  \\ |/ \\ \\        ( \_, |   \/\\ \\/\\/ \\,\ \\ \\ \\ ,-_-  &lt;br /&gt;
&lt;br /&gt;
%                _/                     `                                   &lt;br /&gt;
&lt;br /&gt;
%  &lt;br /&gt;
&lt;br /&gt;
% John Hawkins&lt;br /&gt;
&lt;br /&gt;
% LNA&lt;br /&gt;
&lt;br /&gt;
% Derivative Matrix Example&lt;br /&gt;
&lt;br /&gt;
% 2 Feb 2010&lt;br /&gt;
&lt;br /&gt;
function DerivativeExample&lt;br /&gt;
&lt;br /&gt;
x=linspace(0,4*pi,500)&#039;;&lt;br /&gt;
&lt;br /&gt;
y=sin(x);&lt;br /&gt;
&lt;br /&gt;
dydx=cos(x);&lt;br /&gt;
&lt;br /&gt;
h.fig=figure(&#039;color&#039;,&#039;w&#039;,&#039;units&#039;,&#039;normalized&#039;,&#039;position&#039;,[.2 .2 .6 .6]);&lt;br /&gt;
&lt;br /&gt;
plot(x,y,&#039;color&#039;,[.8 .8 .8]);&lt;br /&gt;
&lt;br /&gt;
hold on;&lt;br /&gt;
&lt;br /&gt;
plot(x,dydx,&#039;color&#039;,[.8 .8 .8]);&lt;br /&gt;
&lt;br /&gt;
numStartPoints=10;&lt;br /&gt;
&lt;br /&gt;
x=linspace(0,4*pi,numStartPoints)&#039;;&lt;br /&gt;
&lt;br /&gt;
y=sin(x);&lt;br /&gt;
&lt;br /&gt;
dydx=DERIV(x,y);&lt;br /&gt;
&lt;br /&gt;
h.y=plot(x,y,&#039;b.&#039;);&lt;br /&gt;
&lt;br /&gt;
h.construct=plot(0,0,&#039;r&#039;);&lt;br /&gt;
&lt;br /&gt;
h.dydx=plot(0,0,&#039;r.&#039;);&lt;br /&gt;
&lt;br /&gt;
legend([h.y,h.construct,h.dydx],&#039;y&#039;,&#039;Construction Line&#039;,&#039;dy/dx&#039;);&lt;br /&gt;
&lt;br /&gt;
xlabel(&#039;x&#039;); ylabel(&#039;y&#039;);&lt;br /&gt;
&lt;br /&gt;
axis equal;&lt;br /&gt;
&lt;br /&gt;
title(&#039;Taking the Derivative of a Finite Function Vector for y=sin x&#039;,...&lt;br /&gt;
&lt;br /&gt;
    &#039;fontname&#039;,&#039;times&#039;,&#039;fontsize&#039;,20);&lt;br /&gt;
&lt;br /&gt;
set([h.construct,h.dydx],&#039;visible&#039;,&#039;off&#039;);&lt;br /&gt;
&lt;br /&gt;
fig = getframe(h.fig);&lt;br /&gt;
&lt;br /&gt;
[im,map] = rgb2ind(fig.cdata,256,&#039;nodither&#039;);&lt;br /&gt;
&lt;br /&gt;
set(h.construct,&#039;visible&#039;,&#039;on&#039;,&#039;xdata&#039;,x([1,2]),&#039;ydata&#039;,y([1,2]));&lt;br /&gt;
&lt;br /&gt;
im=CAPTUREFIG(im,map,h);&lt;br /&gt;
&lt;br /&gt;
set(h.dydx,&#039;visible&#039;,&#039;on&#039;,&#039;xdata&#039;,x(1),&#039;ydata&#039;,dydx(1));&lt;br /&gt;
&lt;br /&gt;
im=CAPTUREFIG(im,map,h);&lt;br /&gt;
&lt;br /&gt;
for n=2:numStartPoints-1&lt;br /&gt;
&lt;br /&gt;
    set(h.construct,&#039;xdata&#039;,x([n-1,n+1]),&#039;ydata&#039;,y([n-1,n+1]));&lt;br /&gt;
&lt;br /&gt;
    im=CAPTUREFIG(im,map,h);&lt;br /&gt;
&lt;br /&gt;
    set(h.dydx,&#039;xdata&#039;,x(1:n),&#039;ydata&#039;,dydx(1:n));&lt;br /&gt;
&lt;br /&gt;
    im=CAPTUREFIG(im,map,h);&lt;br /&gt;
&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
set(h.construct,&#039;xdata&#039;,x([numStartPoints-1,numStartPoints]),...&lt;br /&gt;
&lt;br /&gt;
    &#039;ydata&#039;,y([numStartPoints-1,numStartPoints]));&lt;br /&gt;
&lt;br /&gt;
im=CAPTUREFIG(im,map,h);&lt;br /&gt;
&lt;br /&gt;
set(h.dydx,&#039;xdata&#039;,x,&#039;ydata&#039;,dydx);&lt;br /&gt;
&lt;br /&gt;
im=CAPTUREFIG(im,map,h);&lt;br /&gt;
&lt;br /&gt;
set(h.construct,&#039;visible&#039;,&#039;off&#039;);&lt;br /&gt;
&lt;br /&gt;
im=CAPTUREFIG(im,map,h);&lt;br /&gt;
&lt;br /&gt;
for k=1:5&lt;br /&gt;
&lt;br /&gt;
    im=CAPTUREFIG(im,map,h);&lt;br /&gt;
&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
for n=[15 20 30 50 100 200 500]&lt;br /&gt;
&lt;br /&gt;
    x=linspace(0,4*pi,n)&#039;;&lt;br /&gt;
&lt;br /&gt;
    y=sin(x);&lt;br /&gt;
&lt;br /&gt;
    dydx=DERIV(x,y);&lt;br /&gt;
&lt;br /&gt;
    set(h.y,&#039;xdata&#039;,x,&#039;ydata&#039;,y);&lt;br /&gt;
&lt;br /&gt;
    set(h.dydx,&#039;xdata&#039;,x,&#039;ydata&#039;,dydx);&lt;br /&gt;
&lt;br /&gt;
    im=CAPTUREFIG(im,map,h);&lt;br /&gt;
&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
for k=1:5&lt;br /&gt;
&lt;br /&gt;
    im=CAPTUREFIG(im,map,h);&lt;br /&gt;
&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
imwrite(im,map,&#039;Derivative.gif&#039;,&#039;DelayTime&#039;,.5,&#039;LoopCount&#039;,inf)&lt;br /&gt;
&lt;br /&gt;
function dydx=DERIV(x,y)&lt;br /&gt;
&lt;br /&gt;
num=numel(y);&lt;br /&gt;
&lt;br /&gt;
deltax=x(2)-x(1);&lt;br /&gt;
&lt;br /&gt;
operator=zeros(num);&lt;br /&gt;
&lt;br /&gt;
operator(1,1)=-2;&lt;br /&gt;
&lt;br /&gt;
operator(1,2)=2;&lt;br /&gt;
&lt;br /&gt;
for k=2:num-1&lt;br /&gt;
&lt;br /&gt;
    operator(k,k+1)=1;&lt;br /&gt;
&lt;br /&gt;
    operator(k,k-1)=-1;&lt;br /&gt;
&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
operator(num,num-1)=-2;&lt;br /&gt;
&lt;br /&gt;
operator(num,num)=2;&lt;br /&gt;
&lt;br /&gt;
operator=operator/(2*deltax);&lt;br /&gt;
&lt;br /&gt;
dydx=operator*y;&lt;br /&gt;
&lt;br /&gt;
function im=CAPTUREFIG(im,map,h)&lt;br /&gt;
&lt;br /&gt;
fig = getframe(h.fig);&lt;br /&gt;
&lt;br /&gt;
im(:,:,1,size(im,4)+1) = rgb2ind(fig.cdata,map,&#039;nodither&#039;);&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Reviewed By==&lt;br /&gt;
&lt;br /&gt;
==Read By==&lt;br /&gt;
&lt;br /&gt;
==Comments==&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Winter_2010&amp;diff=8863</id>
		<title>Winter 2010</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Winter_2010&amp;diff=8863"/>
		<updated>2010-02-03T05:46:34Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Put links for your reports here.  Someone feel free to edit this better. &lt;br /&gt;
&lt;br /&gt;
Links to the posted reports are found under the publishing author&#039;s name. (Like it says above, if you hate it...change it! I promise I won’t cry.    Brandon)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1. [[Biesenthal, Dan]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. [[Blackley, Ben]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. [[Cruz, Jorge]]&lt;br /&gt;
*[[Fourier Example]](**Check out the bonus video, really helpful**)&lt;br /&gt;
&lt;br /&gt;
      &lt;br /&gt;
&lt;br /&gt;
4. [[Fullerton, Colby]]&lt;br /&gt;
*[[Laplace Transform]]&lt;br /&gt;
*[[Class Notes 1-5-2010]]&lt;br /&gt;
&lt;br /&gt;
5. [[Grant, Joshua]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
6. [[Gratias, Ryan]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
7. [[Hawkins, John]]&lt;br /&gt;
&lt;br /&gt;
*[[Exercise: Sawtooth Wave Fourier Transform]]&lt;br /&gt;
*[[Exercise: Sawtooth Redone With Exponential Basis Functions]]&lt;br /&gt;
&lt;br /&gt;
*[[Exercise: Solving an IVP Problem with Laplace Transforms]]&lt;br /&gt;
&lt;br /&gt;
*[[Derivative Matrix for a Function Vector]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
8. [[Lau, Chris]]&lt;br /&gt;
*[[Fourier Series: Explained!]]&lt;br /&gt;
&lt;br /&gt;
9. [[Roath, Brian]]&lt;br /&gt;
*[[Laplace Transform]]&lt;br /&gt;
*[[Class Notes 1-5-2010]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
10. [[Robbins, David]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
11. [[Roth, Andrew]]  &lt;br /&gt;
*[[Example: LaTex format (0 points)]]&lt;br /&gt;
*[[Chapter 22--Fourier Series: Fundamental Period, Frequency, and Angular Frequency]]&lt;br /&gt;
&lt;br /&gt;
12. [[Vazquez, Brandon]]  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
13. [[Vier, Michael]]&lt;br /&gt;
* [[Fourier Series: Explained!]]&lt;br /&gt;
&lt;br /&gt;
14. [[Wooley, Thomas]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
15. [[Jaymin, Joseph]]&lt;br /&gt;
*[[Basic_Laplace_Transforms]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
16. [[Starr, Brielle]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
17. [[Starr, Tyler]]&lt;br /&gt;
&lt;br /&gt;
==Article Suggestions or Homework==&lt;br /&gt;
(Please put a note when these are published.)&lt;br /&gt;
&lt;br /&gt;
#  Explore how a linear operator, like for example &amp;lt;math&amp;gt;d \over dt&amp;lt;/math&amp;gt; can be represented as some kind of a matrix multiply (with perhaps an infinite number of dimensions). &lt;br /&gt;
## One solution: [[Derivative Matrix for a Function Vector]] (John Hawkins).&lt;br /&gt;
#  Suppose you had to approximate a vector by using the first few dimensions.  Show that if you wish to minimize the error, defined as the length squared of the difference of your approximate vector and the real vector, that the coefficients (or components) of the approximate vector would still be the same as the ones in the same dimensions of the exact vector.  Now, apply this to the Fourier series.&lt;br /&gt;
#  Describe the e Gram-Schmidt Orthogonalization process for taking a set of non orthogonal vectors and using them to find an orthogonal set.  How does this apply to functions?&lt;br /&gt;
#  Solve a circuit using Laplace Transforms.&lt;br /&gt;
#  Set up and solve a simple spring mass problem that models a car&#039;s shock absorber system.&lt;br /&gt;
#  Find the steady state response of a simple circuit (with at least one capacitor or inductor) to a triangle wave using Fourier series, and again with Laplace transforms.  Compare and contrast the solutions.&lt;br /&gt;
#  Find the Laplace transform of &amp;lt;math&amp;gt;cos(\omega_0 t) x(t)&amp;lt;/math&amp;gt;.  What does this mean if the function &amp;lt;math&amp;gt;x(t) = cos(\omega_1 t)&amp;lt;/math&amp;gt;?&lt;br /&gt;
&lt;br /&gt;
===More Specific Elementary Problems===&lt;br /&gt;
#  Solve the following differential equation using Laplace transforms.&amp;lt;math&amp;gt;\dot y + 10y ~=~ u(t)&amp;lt;/math&amp;gt;,  &amp;lt;math&amp;gt;y(0) = 4&amp;lt;/math&amp;gt;.&lt;br /&gt;
##  If the input is considered to be &amp;lt;math&amp;gt;u(t)&amp;lt;/math&amp;gt; and the output &amp;lt;math&amp;gt;y(t)&amp;lt;/math&amp;gt;, what is the transfer function?&lt;br /&gt;
##  What is the output, &amp;lt;math&amp;gt;y(t)&amp;lt;/math&amp;gt;, in sinusoidal steady state, if &amp;lt;math&amp;gt;u(t)&amp;lt;/math&amp;gt; is replaced with &amp;lt;math&amp;gt;cos(\omega t)&amp;lt;/math&amp;gt;?&lt;br /&gt;
#  A series RLC circuit with &amp;lt;math&amp;gt;R=10 \Omega&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;L=1 H&amp;lt;/math&amp;gt;, and &amp;lt;math&amp;gt;C = 1 F&amp;lt;/math&amp;gt; is driven by  &amp;lt;math&amp;gt;tcos(t)u(t) V&amp;lt;/math&amp;gt;.  What is the current, &amp;lt;math&amp;gt;i(t)&amp;lt;/math&amp;gt; if the initial current is 1 A and the initial capactor voltage is 2 volts?&lt;br /&gt;
#  If a linear time invariant system has a transfer function H(s), what is the steady state response of that system to the the the [http://fweb/class-wiki/index.php/Exercise:_Sawtooth_Wave_Fourier_Transform triangle wave]?&lt;br /&gt;
#  Write &amp;lt;math&amp;gt;x(t)&amp;lt;/math&amp;gt; as a linear combination of time shifted impulse functions.&lt;br /&gt;
#  Find the Laplace transform of &amp;lt;math&amp;gt;x(t-3)(t-3)e^{4(t-3)} u(t-3)&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Draft Articles==&lt;br /&gt;
These articles are not ready for reading and error checking. They are listed so people will not simultaneously write about similar topics.&lt;br /&gt;
* [[Gibbs Phenomenon]]&lt;br /&gt;
&lt;br /&gt;
* [[Linear Time Invariant Overview]]&lt;br /&gt;
&lt;br /&gt;
* [[Solving Series RLC Circuit Using Laplace Transforms]]&lt;br /&gt;
&lt;br /&gt;
* [[Laplace Transform of a Triangle Wave]]&lt;br /&gt;
&lt;br /&gt;
* [[ProblemCh14-22]]&lt;br /&gt;
&lt;br /&gt;
* [[Problem 5 Exam 1]]&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Derivative_Matrix_for_a_Function_Vector&amp;diff=8862</id>
		<title>Derivative Matrix for a Function Vector</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Derivative_Matrix_for_a_Function_Vector&amp;diff=8862"/>
		<updated>2010-02-03T05:37:46Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: Main Content&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Author==&lt;br /&gt;
&lt;br /&gt;
John Hawkins&lt;br /&gt;
&lt;br /&gt;
==Problem==&lt;br /&gt;
&lt;br /&gt;
The following problem statement is that proposed by Prof. Frohne on the main class page:&lt;br /&gt;
&lt;br /&gt;
#  Explore how a linear operator, like for example &amp;lt;math&amp;gt;d \over dt&amp;lt;/math&amp;gt; can be represented as some kind of a matrix multiply (with perhaps an infinite number of dimensions). &lt;br /&gt;
&lt;br /&gt;
==Solution==&lt;br /&gt;
&lt;br /&gt;
The solution presented here is limited to presenting a matrix representation of the operator &amp;lt;math&amp;gt;d / dx&amp;lt;/math&amp;gt;.  &lt;br /&gt;
&lt;br /&gt;
First, let us consider the finite case.  Let &amp;lt;math&amp;gt;x&amp;lt;/math&amp;gt; be the independent variable with &amp;lt;math&amp;gt;n&amp;lt;/math&amp;gt; components and let the components of &amp;lt;math&amp;gt;x&amp;lt;/math&amp;gt; be defined such that &amp;lt;math&amp;gt;x_{m+1}=x_m+\Delta x&amp;lt;/math&amp;gt; for all &amp;lt;math&amp;gt;m&amp;lt;n&amp;lt;/math&amp;gt; and for some constant &amp;lt;math&amp;gt;\Delta x&amp;lt;/math&amp;gt;.  Also let &amp;lt;math&amp;gt;y=f(x)&amp;lt;/math&amp;gt;.  We wish to find the slope of the function at &amp;lt;math&amp;gt;y(x_m)&amp;lt;/math&amp;gt; for any &amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt;.  To do this for the finite case, we will approximate the slope at a point &amp;lt;math&amp;gt;y(x_m)&amp;lt;/math&amp;gt; as being the slope of the line between the two points &amp;lt;math&amp;gt;y(x_{m-1})&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;y(x_{m+1})&amp;lt;/math&amp;gt; given that &amp;lt;math&amp;gt;1&amp;lt;m&amp;lt;n&amp;lt;/math&amp;gt;.  For the case when &amp;lt;math&amp;gt;m=1&amp;lt;/math&amp;gt; or &amp;lt;math&amp;gt;m=n&amp;lt;/math&amp;gt;, we approximate &amp;lt;math&amp;gt;dy/dx&amp;lt;/math&amp;gt; as the slope the lines between &amp;lt;math&amp;gt;y(x_1)&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;y(x_n)&amp;lt;/math&amp;gt; respectively.  These approximations are accomplished by the following matrix:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
\frac{d}{dx} = \dfrac{1}{2(\Delta x)}\begin{bmatrix}&lt;br /&gt;
&lt;br /&gt;
-2&amp;amp;2&amp;amp;0&amp;amp;0&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;\\&lt;br /&gt;
&lt;br /&gt;
-1&amp;amp;0&amp;amp;1&amp;amp;0&amp;amp;&amp;amp;&amp;amp;\cdots&amp;amp;&amp;amp;\\&lt;br /&gt;
&lt;br /&gt;
0&amp;amp;-1&amp;amp;0&amp;amp;1&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;\\&lt;br /&gt;
&lt;br /&gt;
\\&lt;br /&gt;
&lt;br /&gt;
&amp;amp;&amp;amp;&amp;amp;&amp;amp;\ddots&amp;amp;&amp;amp;&amp;amp;&amp;amp;\\&lt;br /&gt;
&lt;br /&gt;
\\&lt;br /&gt;
&lt;br /&gt;
&amp;amp;\vdots&amp;amp;&amp;amp;&amp;amp;&amp;amp;-1&amp;amp;0&amp;amp;1&amp;amp;0\\&lt;br /&gt;
&lt;br /&gt;
&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;0&amp;amp;-1&amp;amp;0&amp;amp;1\\&lt;br /&gt;
&lt;br /&gt;
&amp;amp;&amp;amp;&amp;amp;&amp;amp;&amp;amp;0&amp;amp;0&amp;amp;-2&amp;amp;2&lt;br /&gt;
&lt;br /&gt;
\end{bmatrix}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/math&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note that we need to divide by &amp;lt;math&amp;gt;1/2(\Delta x)&amp;lt;/math&amp;gt; because the distance between &amp;lt;math&amp;gt;x_{m-1}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;x_{m+1}&amp;lt;/math&amp;gt; is &amp;lt;math&amp;gt;2\Delta x&amp;lt;/math&amp;gt;.  Similarly, the nonzero entries in the first and last rows are 2 to cancel out the 2 in the denominator.&lt;br /&gt;
&lt;br /&gt;
==Solution Picture==&lt;br /&gt;
&lt;br /&gt;
The figure below was created to demonstrate how the above matrix works.  First, 10 points of the function are displayed.  Then for each point the line between the two adjacent points is drawn and the slope of that line is shown to be &amp;lt;math&amp;gt;dy/dx&amp;lt;/math&amp;gt; for the original point, calculated using the matrix shown above.  After this has been done in the case of 10 points, the function and derivative vectors are shown for 15, 20, 30, 50, 100, 200, and 500 points.&lt;br /&gt;
&lt;br /&gt;
[[Image:Derivative.gif]]&lt;br /&gt;
&lt;br /&gt;
==Code==&lt;br /&gt;
&lt;br /&gt;
The figure above was generated with the following code:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;matlab&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
%                                                                           &lt;br /&gt;
&lt;br /&gt;
%  _-_,,       ,,                _-_-                   ,,                  &lt;br /&gt;
&lt;br /&gt;
% (  //        ||                  /,        _   ;      ||    &#039;             &lt;br /&gt;
&lt;br /&gt;
%   _||   /&#039;\\ ||/\\ \\/\\         || __    &amp;lt; \, \\/\/\ ||/\ \\ \\/\\  _-_, &lt;br /&gt;
&lt;br /&gt;
%   _||  || || || || || ||        ~||-  -   /-|| || | | ||_&amp;lt; || || || ||_.  &lt;br /&gt;
&lt;br /&gt;
%    ||  || || || || || ||         ||===|| (( || || | | || | || || ||  ~ || &lt;br /&gt;
&lt;br /&gt;
% -__-,  \\,/  \\ |/ \\ \\        ( \_, |   \/\\ \\/\\/ \\,\ \\ \\ \\ ,-_-  &lt;br /&gt;
&lt;br /&gt;
%                _/                     `                                   &lt;br /&gt;
&lt;br /&gt;
%  &lt;br /&gt;
&lt;br /&gt;
% John Hawkins&lt;br /&gt;
&lt;br /&gt;
% LNA&lt;br /&gt;
&lt;br /&gt;
% Derivative Matrix Example&lt;br /&gt;
&lt;br /&gt;
% 2 Feb 2010&lt;br /&gt;
&lt;br /&gt;
function DerivativeExample&lt;br /&gt;
&lt;br /&gt;
x=linspace(0,4*pi,500)&#039;;&lt;br /&gt;
&lt;br /&gt;
y=sin(x);&lt;br /&gt;
&lt;br /&gt;
dydx=cos(x);&lt;br /&gt;
&lt;br /&gt;
h.fig=figure(&#039;color&#039;,&#039;w&#039;,&#039;units&#039;,&#039;normalized&#039;,&#039;position&#039;,[.2 .2 .6 .6]);&lt;br /&gt;
&lt;br /&gt;
plot(x,y,&#039;color&#039;,[.8 .8 .8]);&lt;br /&gt;
&lt;br /&gt;
hold on;&lt;br /&gt;
&lt;br /&gt;
plot(x,dydx,&#039;color&#039;,[.8 .8 .8]);&lt;br /&gt;
&lt;br /&gt;
numStartPoints=10;&lt;br /&gt;
&lt;br /&gt;
x=linspace(0,4*pi,numStartPoints)&#039;;&lt;br /&gt;
&lt;br /&gt;
y=sin(x);&lt;br /&gt;
&lt;br /&gt;
dydx=DERIV(x,y);&lt;br /&gt;
&lt;br /&gt;
h.y=plot(x,y,&#039;b.&#039;);&lt;br /&gt;
&lt;br /&gt;
h.construct=plot(0,0,&#039;r&#039;);&lt;br /&gt;
&lt;br /&gt;
h.dydx=plot(0,0,&#039;r.&#039;);&lt;br /&gt;
&lt;br /&gt;
legend([h.y,h.construct,h.dydx],&#039;y&#039;,&#039;Construction Line&#039;,&#039;dy/dx&#039;);&lt;br /&gt;
&lt;br /&gt;
xlabel(&#039;x&#039;); ylabel(&#039;y&#039;);&lt;br /&gt;
&lt;br /&gt;
axis equal;&lt;br /&gt;
&lt;br /&gt;
title(&#039;Taking the Derivative of a Finite Function Vector for y=sin x&#039;,...&lt;br /&gt;
&lt;br /&gt;
    &#039;fontname&#039;,&#039;times&#039;,&#039;fontsize&#039;,20);&lt;br /&gt;
&lt;br /&gt;
set([h.construct,h.dydx],&#039;visible&#039;,&#039;off&#039;);&lt;br /&gt;
&lt;br /&gt;
fig = getframe(h.fig);&lt;br /&gt;
&lt;br /&gt;
[im,map] = rgb2ind(fig.cdata,256,&#039;nodither&#039;);&lt;br /&gt;
&lt;br /&gt;
set(h.construct,&#039;visible&#039;,&#039;on&#039;,&#039;xdata&#039;,x([1,2]),&#039;ydata&#039;,y([1,2]));&lt;br /&gt;
&lt;br /&gt;
im=CAPTUREFIG(im,map,h);&lt;br /&gt;
&lt;br /&gt;
set(h.dydx,&#039;visible&#039;,&#039;on&#039;,&#039;xdata&#039;,x(1),&#039;ydata&#039;,dydx(1));&lt;br /&gt;
&lt;br /&gt;
im=CAPTUREFIG(im,map,h);&lt;br /&gt;
&lt;br /&gt;
for n=2:numStartPoints-1&lt;br /&gt;
&lt;br /&gt;
    set(h.construct,&#039;xdata&#039;,x([n-1,n+1]),&#039;ydata&#039;,y([n-1,n+1]));&lt;br /&gt;
&lt;br /&gt;
    im=CAPTUREFIG(im,map,h);&lt;br /&gt;
&lt;br /&gt;
    set(h.dydx,&#039;xdata&#039;,x(1:n),&#039;ydata&#039;,dydx(1:n));&lt;br /&gt;
&lt;br /&gt;
    im=CAPTUREFIG(im,map,h);&lt;br /&gt;
&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
set(h.construct,&#039;xdata&#039;,x([numStartPoints-1,numStartPoints]),...&lt;br /&gt;
&lt;br /&gt;
    &#039;ydata&#039;,y([numStartPoints-1,numStartPoints]));&lt;br /&gt;
&lt;br /&gt;
im=CAPTUREFIG(im,map,h);&lt;br /&gt;
&lt;br /&gt;
set(h.dydx,&#039;xdata&#039;,x,&#039;ydata&#039;,dydx);&lt;br /&gt;
&lt;br /&gt;
im=CAPTUREFIG(im,map,h);&lt;br /&gt;
&lt;br /&gt;
set(h.construct,&#039;visible&#039;,&#039;off&#039;);&lt;br /&gt;
&lt;br /&gt;
im=CAPTUREFIG(im,map,h);&lt;br /&gt;
&lt;br /&gt;
for k=1:5&lt;br /&gt;
&lt;br /&gt;
    im=CAPTUREFIG(im,map,h);&lt;br /&gt;
&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
for n=[15 20 30 50 100 200 500]&lt;br /&gt;
&lt;br /&gt;
    x=linspace(0,4*pi,n)&#039;;&lt;br /&gt;
&lt;br /&gt;
    y=sin(x);&lt;br /&gt;
&lt;br /&gt;
    dydx=DERIV(x,y);&lt;br /&gt;
&lt;br /&gt;
    set(h.y,&#039;xdata&#039;,x,&#039;ydata&#039;,y);&lt;br /&gt;
&lt;br /&gt;
    set(h.dydx,&#039;xdata&#039;,x,&#039;ydata&#039;,dydx);&lt;br /&gt;
&lt;br /&gt;
    im=CAPTUREFIG(im,map,h);&lt;br /&gt;
&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
for k=1:5&lt;br /&gt;
&lt;br /&gt;
    im=CAPTUREFIG(im,map,h);&lt;br /&gt;
&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
imwrite(im,map,&#039;Derivative.gif&#039;,&#039;DelayTime&#039;,.5,&#039;LoopCount&#039;,inf)&lt;br /&gt;
&lt;br /&gt;
function dydx=DERIV(x,y)&lt;br /&gt;
&lt;br /&gt;
num=numel(y);&lt;br /&gt;
&lt;br /&gt;
deltax=x(2)-x(1);&lt;br /&gt;
&lt;br /&gt;
operator=zeros(num);&lt;br /&gt;
&lt;br /&gt;
operator(1,1)=-2;&lt;br /&gt;
&lt;br /&gt;
operator(1,2)=2;&lt;br /&gt;
&lt;br /&gt;
for k=2:num-1&lt;br /&gt;
&lt;br /&gt;
    operator(k,k+1)=1;&lt;br /&gt;
&lt;br /&gt;
    operator(k,k-1)=-1;&lt;br /&gt;
&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
operator(num,num-1)=-2;&lt;br /&gt;
&lt;br /&gt;
operator(num,num)=2&lt;br /&gt;
&lt;br /&gt;
operator=operator/(2*deltax);&lt;br /&gt;
&lt;br /&gt;
dydx=operator*y;&lt;br /&gt;
&lt;br /&gt;
function im=CAPTUREFIG(im,map,h)&lt;br /&gt;
&lt;br /&gt;
fig = getframe(h.fig);&lt;br /&gt;
&lt;br /&gt;
im(:,:,1,size(im,4)+1) = rgb2ind(fig.cdata,map,&#039;nodither&#039;);&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Reviewed By==&lt;br /&gt;
&lt;br /&gt;
==Read By==&lt;br /&gt;
&lt;br /&gt;
==Comments==&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=File:Derivative.gif&amp;diff=8861</id>
		<title>File:Derivative.gif</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=File:Derivative.gif&amp;diff=8861"/>
		<updated>2010-02-03T04:58:13Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Winter_2010&amp;diff=8860</id>
		<title>Winter 2010</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Winter_2010&amp;diff=8860"/>
		<updated>2010-02-03T04:56:07Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Put links for your reports here.  Someone feel free to edit this better. &lt;br /&gt;
&lt;br /&gt;
Links to the posted reports are found under the publishing author&#039;s name. (Like it says above, if you hate it...change it! I promise I won’t cry.    Brandon)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1. [[Biesenthal, Dan]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. [[Blackley, Ben]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. [[Cruz, Jorge]]&lt;br /&gt;
*[[Fourier Example]](**Check out the bonus video, really helpful**)&lt;br /&gt;
&lt;br /&gt;
      &lt;br /&gt;
&lt;br /&gt;
4. [[Fullerton, Colby]]&lt;br /&gt;
*[[Laplace Transform]]&lt;br /&gt;
*[[Class Notes 1-5-2010]]&lt;br /&gt;
&lt;br /&gt;
5. [[Grant, Joshua]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
6. [[Gratias, Ryan]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
7. [[Hawkins, John]]&lt;br /&gt;
&lt;br /&gt;
*[[Exercise: Sawtooth Wave Fourier Transform]]&lt;br /&gt;
*[[Exercise: Sawtooth Redone With Exponential Basis Functions]]&lt;br /&gt;
&lt;br /&gt;
*[[Exercise: Solving an IVP Problem with Laplace Transforms]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
8. [[Lau, Chris]]&lt;br /&gt;
*[[Fourier Series: Explained!]]&lt;br /&gt;
&lt;br /&gt;
9. [[Roath, Brian]]&lt;br /&gt;
*[[Laplace Transform]]&lt;br /&gt;
*[[Class Notes 1-5-2010]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
10. [[Robbins, David]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
11. [[Roth, Andrew]]  &lt;br /&gt;
*[[Example: LaTex format (0 points)]]&lt;br /&gt;
*[[Chapter 22--Fourier Series: Fundamental Period, Frequency, and Angular Frequency]]&lt;br /&gt;
&lt;br /&gt;
12. [[Vazquez, Brandon]]  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
13. [[Vier, Michael]]&lt;br /&gt;
* [[Fourier Series: Explained!]]&lt;br /&gt;
&lt;br /&gt;
14. [[Wooley, Thomas]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
15. [[Jaymin, Joseph]]&lt;br /&gt;
*[[Basic_Laplace_Transforms]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
16. [[Starr, Brielle]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
17. [[Starr, Tyler]]&lt;br /&gt;
&lt;br /&gt;
==Article Suggestions or Homework==&lt;br /&gt;
(Please put a note when these are published.)&lt;br /&gt;
&lt;br /&gt;
#  Explore how a linear operator, like for example &amp;lt;math&amp;gt;d \over dt&amp;lt;/math&amp;gt; can be represented as some kind of a matrix multiply (with perhaps an infinite number of dimensions). &lt;br /&gt;
## One solution: [[Derivative Matrix for a Function Vector]] (John Hawkins).&lt;br /&gt;
#  Suppose you had to approximate a vector by using the first few dimensions.  Show that if you wish to minimize the error, defined as the length squared of the difference of your approximate vector and the real vector, that the coefficients (or components) of the approximate vector would still be the same as the ones in the same dimensions of the exact vector.  Now, apply this to the Fourier series.&lt;br /&gt;
#  Describe the e Gram-Schmidt Orthogonalization process for taking a set of non orthogonal vectors and using them to find an orthogonal set.  How does this apply to functions?&lt;br /&gt;
#  Solve a circuit using Laplace Transforms.&lt;br /&gt;
#  Set up and solve a simple spring mass problem that models a car&#039;s shock absorber system.&lt;br /&gt;
#  Find the steady state response of a simple circuit (with at least one capacitor or inductor) to a triangle wave using Fourier series, and again with Laplace transforms.  Compare and contrast the solutions.&lt;br /&gt;
#  Find the Laplace transform of &amp;lt;math&amp;gt;cos(\omega_0 t) x(t)&amp;lt;/math&amp;gt;.  What does this mean if the function &amp;lt;math&amp;gt;x(t) = cos(\omega_1 t)&amp;lt;/math&amp;gt;?&lt;br /&gt;
&lt;br /&gt;
===More Specific Elementary Problems===&lt;br /&gt;
#  Solve the following differential equation using Laplace transforms.&amp;lt;math&amp;gt;\dot y + 10y ~=~ u(t)&amp;lt;/math&amp;gt;,  &amp;lt;math&amp;gt;y(0) = 4&amp;lt;/math&amp;gt;.&lt;br /&gt;
##  If the input is considered to be &amp;lt;math&amp;gt;u(t)&amp;lt;/math&amp;gt; and the output &amp;lt;math&amp;gt;y(t)&amp;lt;/math&amp;gt;, what is the transfer function?&lt;br /&gt;
##  What is the output, &amp;lt;math&amp;gt;y(t)&amp;lt;/math&amp;gt;, in sinusoidal steady state, if &amp;lt;math&amp;gt;u(t)&amp;lt;/math&amp;gt; is replaced with &amp;lt;math&amp;gt;cos(\omega t)&amp;lt;/math&amp;gt;?&lt;br /&gt;
#  A series RLC circuit with &amp;lt;math&amp;gt;R=10 \Omega&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;L=1 H&amp;lt;/math&amp;gt;, and &amp;lt;math&amp;gt;C = 1 F&amp;lt;/math&amp;gt; is driven by  &amp;lt;math&amp;gt;tcos(t)u(t) V&amp;lt;/math&amp;gt;.  What is the current, &amp;lt;math&amp;gt;i(t)&amp;lt;/math&amp;gt; if the initial current is 1 A and the initial capactor voltage is 2 volts?&lt;br /&gt;
#  If a linear time invariant system has a transfer function H(s), what is the steady state response of that system to the the the [http://fweb/class-wiki/index.php/Exercise:_Sawtooth_Wave_Fourier_Transform triangle wave]?&lt;br /&gt;
#  Write &amp;lt;math&amp;gt;x(t)&amp;lt;/math&amp;gt; as a linear combination of time shifted impulse functions.&lt;br /&gt;
#  Find the Laplace transform of &amp;lt;math&amp;gt;x(t-3)(t-3)e^{4(t-3)} u(t-3)&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Draft Articles==&lt;br /&gt;
These articles are not ready for reading and error checking. They are listed so people will not simultaneously write about similar topics.&lt;br /&gt;
* [[Gibbs Phenomenon]]&lt;br /&gt;
&lt;br /&gt;
* [[Linear Time Invariant Overview]]&lt;br /&gt;
&lt;br /&gt;
* [[Solving Series RLC Circuit Using Laplace Transforms]]&lt;br /&gt;
&lt;br /&gt;
* [[Laplace Transform of a Triangle Wave]]&lt;br /&gt;
&lt;br /&gt;
* [[ProblemCh14-22]]&lt;br /&gt;
&lt;br /&gt;
* [[Problem 5 Exam 1]]&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Example:_Ideal_Transformer_Exercise&amp;diff=8839</id>
		<title>Example: Ideal Transformer Exercise</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Example:_Ideal_Transformer_Exercise&amp;diff=8839"/>
		<updated>2010-02-01T07:13:53Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Author==&lt;br /&gt;
&lt;br /&gt;
John Hawkins&lt;br /&gt;
&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
An ideal transformer has a primary winding with 500 turns and a secondary winding with 2000 turns.  Given that &amp;lt;math&amp;gt;\ e_1=120\angle{0^\circ}\text{ V, RMS}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;\ i_1=(2+3j)\text{ A}&amp;lt;/math&amp;gt;, find the load impedance, &amp;lt;math&amp;gt;\ Z_L&amp;lt;/math&amp;gt; and the Thevenin equivalent, &amp;lt;math&amp;gt;\ Z_{th}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Solution==&lt;br /&gt;
&lt;br /&gt;
We could find the Thevenin impedance directly, but we will save that until the end as a checking mechanism.  First, we will find the actual load impedance by finding the current and voltage in the secondary winding and finding their ratio.  The equations used are those derived in class by Professor Frohne.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;e_2=\frac{N_2}{N_1}e_1=\frac{2000}{500}(120)=480\text{ V}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;i_2=\frac{N_1}{N_2}i_1=\frac{500}{2000}(2+3j)=\left(\frac{1}{2}+\frac{3}{4}j\right)\text{ A}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;Z_L=\frac{e_2}{i_2}=\frac{480}{\frac{1}{2}+\frac{3}{4}j}=\mathbf{(295.4-443.1j)\ \Omega\ =(532.5\angle{-56.3^\circ})\ \Omega}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;Z_{th}=\left(\frac{N_1}{N_2}\right)^2Z_L=\left(\frac{500}{2000}\right)^2(295.4-443.1j)=\mathbf{(18.5-27.7j)\ \Omega\ =(33.3\angle{-56.3^\circ})\ \Omega}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As mentioned at the beginning, this should be the impedance found using the ratio of the primary voltage and current.  Using this method, we find that&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;Z_{th}=\frac{e_1}{i_1}=\frac{120}{2+3j}=\mathbf{(18.5-27.7j)\ \Omega\ =(33.3\angle{-56.3^\circ})\ \Omega}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This is the same answer as above, which verifies the solutions.&lt;br /&gt;
&lt;br /&gt;
==Reviewed By==&lt;br /&gt;
&lt;br /&gt;
*Tyler Anderson&lt;br /&gt;
*Jimmy Apablaza-Lorca&lt;br /&gt;
&lt;br /&gt;
==Read By==&lt;br /&gt;
&lt;br /&gt;
==Comments==&lt;br /&gt;
Tyler Anderson: it may be helpful to the readers if you referenced what equations you are using. For example:&lt;br /&gt;
&amp;lt;math&amp;gt;e_2=\frac{N_2}{N_2}e_1&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt; EQ (5-39)&amp;lt;/math&amp;gt;&lt;br /&gt;
Otherwise it looks sound to me. &lt;br /&gt;
&lt;br /&gt;
John Hawkins: I didn&#039;t use the textbook, so such a reference is not required.  I agree that it would be useful for those in the class, but I don&#039;t have the same textbook as everyone else, and I doubt anyone would care to know my book&#039;s equation numbers.  Thanks for reminding me about references, though.  I mentioned the class derivation above in the text.&lt;br /&gt;
&lt;br /&gt;
Tyler Anderson: haha fair enough then. props for that. perhaps I could barrow your book sometime? cause ours is absolute crap.&lt;br /&gt;
&lt;br /&gt;
John Hawkins: I hate the book I&#039;m using as well, but if you want to use it sometime that would be fine.&lt;br /&gt;
&lt;br /&gt;
J. Apablaza: Everything looks sound to me. Perhaps, you should include an image so that you can earn some extra points.&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Exercise:_Solving_an_IVP_Problem_with_Laplace_Transforms&amp;diff=8824</id>
		<title>Exercise: Solving an IVP Problem with Laplace Transforms</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Exercise:_Solving_an_IVP_Problem_with_Laplace_Transforms&amp;diff=8824"/>
		<updated>2010-01-29T07:36:57Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: Main content&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Author==&lt;br /&gt;
&lt;br /&gt;
John Hawkins&lt;br /&gt;
&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
Solve the following initial value problem using Laplace Transforms:&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;y^{\prime\prime}-4y=12x,\ \ y(0)=4,\ \ y^\prime(0)=1.&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Note: This problem was solved by Zill without the use of Laplace Transforms.&amp;lt;ref&amp;gt;Dennis G. Zill, &#039;&#039;A first course in Differential Equations&#039;&#039;, 8th ed., Int. ed (Belmont, CA: Thomson Learning, 2005), 128.&amp;lt;/ref&amp;gt;&lt;br /&gt;
==Solution==&lt;br /&gt;
Given the initial ODE&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;math&amp;gt;y^{\prime\prime}-4y=12x&amp;lt;/math&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
we take the Laplace transform of both sides&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;math&amp;gt;\mathcal{L}\left\{y^{\prime\prime}-4y\right\}=\mathcal{L}\left\{12x\right\}&amp;lt;/math&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Using the transforms displayed in [[Laplace Transform]], we find this to be&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;math&amp;gt;[s^2Y(s)-sy(0)-y^\prime(0)]-4Y(s)=\frac{12}{s^2}&amp;lt;/math&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
which, with initial values substituted, gives&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;math&amp;gt;\Rightarrow (s^2-4)Y(s)-4s-1=\frac{12}{s^2}&amp;lt;/math&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Hence,&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;Y(s)=\frac{\frac{12}{s^2}+4s+1}{s^2-4}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
::&amp;lt;math&amp;gt;=\frac{12+4s^3+s^2}{s^4-4s^2}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:::&amp;lt;math&amp;gt;=\frac{12+s^2+4s^3}{s^2(s-2)(s+2)}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Using a calculator to expand this, we have&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;math&amp;gt;Y(s)=\frac{1}{s+2}+\frac{3}{s-2}-\frac{3}{s^2}&amp;lt;/math&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
And therefore, using the equations on [[Laplace Transform]] to perform an inverse Laplace transform, we have our solution:&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;math&amp;gt;\ y(x)=e^{-2x}+3e^{2x}-3x&amp;lt;/math&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
This equation matches that found by Zill, providing confirmation of a correct solution.&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
==Reviewed By==&lt;br /&gt;
==Read By==&lt;br /&gt;
==Comments==&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Electromechanical_Energy_Conversion&amp;diff=8821</id>
		<title>Electromechanical Energy Conversion</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Electromechanical_Energy_Conversion&amp;diff=8821"/>
		<updated>2010-01-29T06:59:25Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Rules]]&lt;br /&gt;
&lt;br /&gt;
[[Class Roster]]&lt;br /&gt;
&lt;br /&gt;
[[Points]]&lt;br /&gt;
&lt;br /&gt;
[http://people.wallawalla.edu/~rob.frohne/ClassNotes/engr431index.htm Class Notes]&lt;br /&gt;
&lt;br /&gt;
==Questions==&lt;br /&gt;
&lt;br /&gt;
What do we do when we are finished with the draft and ready to publish?&lt;br /&gt;
* If it&#039;s been approved by the reviewers, move it to the articles section&lt;br /&gt;
&lt;br /&gt;
Does anybody know of a way to put a box around text or math equations? Would I just have to create a 1x1 table?&lt;br /&gt;
&lt;br /&gt;
==Announcements==&lt;br /&gt;
&lt;br /&gt;
If anyone wants to write the derivation of Ampere&#039;s Law you can put it on my (Wesley Brown) [[Ampere&#039;s Law]] page and be a co-author.&lt;br /&gt;
&lt;br /&gt;
==Article Suggestions==&lt;br /&gt;
(Please link these to the article when you complete it.)&lt;br /&gt;
#  Rewrite the notes for the wiki.  (Really, this will help get ready for the exam.  The professor who did them is the one who is writing the exam questions.)  &lt;br /&gt;
#*[http://people.wallawalla.edu/~Rob.Frohne/ClassNotes/engr431index.htm Click here for the Class Notes.]&lt;br /&gt;
* Effects of the Non-Linear B-H Curve&lt;br /&gt;
#  Draw and explain the effect of the non-linear B-H curve on current waveforms for a voltage excited inductor.  (This is mostly done in the notes.)&lt;br /&gt;
#  Explain how to measure the B-H curve experimentally. &lt;br /&gt;
#  If the B-H curve was traced out more quickly in the experiment above, would the curve look different?  If so why?&lt;br /&gt;
#  Show how to calculate the core losses of a nonlinear inductor using its i-v curve.  &lt;br /&gt;
* Transformers&lt;br /&gt;
#  Explore transformers with more than one secondary winding.&lt;br /&gt;
#*  What is the input impedance of an idea transformer with two secondaries, one with N2 turns and one with N&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt; turns, each with a different load resistor on attached.&lt;br /&gt;
#*  How do the mutual impedances relate to the turns ratios in transformers with more than one secondary?&lt;br /&gt;
#*  Develop a circuit model for a non-ideal transformer with multiple secondaries. (Follow the way we did it in class.  You will have more mutual inductances.  You may or may not be able to do it by using ideal transformers, but you should be able to do it with mutual impedances for sure.)&lt;br /&gt;
#  Develop the theory of auto-transformers.&lt;br /&gt;
#* Come up with an ideal transformer model for auto-transformers.&lt;br /&gt;
#* Which part of the windings carries more current?&lt;br /&gt;
#* Is there any isolation with auto-transformers?&lt;br /&gt;
#* What if you have more than one tap on the auto-transformer?  Can you come up with a model for that?&lt;br /&gt;
#* Develop a circuit model for a single tap auto-transformer.&lt;br /&gt;
#  Explore how leakage flux affects the inductance of an inductor.  What if that flux is then recovered and the effect accounted for by mutual inductance?  Does the result agree with the simple calculation of inductance without leakage?&lt;br /&gt;
#  Describe the coupling factor, k, used in Spice simulators and other circuit simulators.  Relate it to the leakage, magnetizing, and mutual inductances. &lt;br /&gt;
#  Derive the &amp;lt;math&amp;gt;Y/\Delta&amp;lt;/math&amp;gt; transformations.&lt;br /&gt;
#  Explore the voltage regulation &amp;lt;math&amp;gt;(V_{full ~load} - V_{no ~load} ) \over {V_{full ~load} } &amp;lt;/math&amp;gt;x 100% as a function of the power factor angle on the load of a transformer.   (You will note some surprising results in some cases.)&lt;br /&gt;
#  Describe the open circuit and short circuit test as applied to transformers.&lt;br /&gt;
#  Explore how much flux is in the core of a loaded ideal transformer.&lt;br /&gt;
* Three Phase Circuits&lt;br /&gt;
#  Calculate and compare how much power can be delivered with three phase circuits as compared to a single phase circuits.  Assume that the same amount of copper is available for the transmission lines of both systems.&lt;br /&gt;
#  Compare and contrast the types of three phase transformers. (See the class handout.)  Explain why each is better or worse in each situation.&lt;br /&gt;
#* Explain what the big deal is with third harmonic currents in three phase transformers.  Where do they come from?  Why does the delta winding minimize their effect on voltage distortion?  &lt;br /&gt;
&lt;br /&gt;
And if you don&#039;t understand any of the above, please see the teacher!  He is willing to sit down with you and work any and/or all of the above.&lt;br /&gt;
&lt;br /&gt;
==Draft Articles==&lt;br /&gt;
These articles are not ready for reading and error checking. They are listed so people will not simultaneously write about similar topics.&lt;br /&gt;
* [[Ferromagnetism]]&lt;br /&gt;
* [[Magnetic Circuits]]&lt;br /&gt;
* [[Example: Ampere&#039;s Law]] (Tyler Anderson)&lt;br /&gt;
* [[Ampere&#039;s Law]]&lt;br /&gt;
* [[DC Motor]]&lt;br /&gt;
* [[Fringing]]&lt;br /&gt;
* [[Electrostatics]]&lt;br /&gt;
* [[Faraday&#039;s Law]]&lt;br /&gt;
* [[Eddy Current]]&lt;br /&gt;
* [[Example Problems of Magnetic Circuits]]&lt;br /&gt;
* [[Ohm&#039;s Law and Reluctance]]&lt;br /&gt;
* [[Magnetic Flux]]&lt;br /&gt;
&lt;br /&gt;
* [[Reference Terms and Units]] (Amy Crosby)&lt;br /&gt;
* [[Ideal Transformer Example|Example: Ideal Transformer]]&lt;br /&gt;
* [[Problem Set 1]](Jodi Hodge)&lt;br /&gt;
* [[ANOTHER IDEAL TRANSFORMER!!!!!!!!!]]&lt;br /&gt;
* [[Example: Magnetic Field]] (Amy Crosby) &lt;br /&gt;
* [[Class Notes]](Tyler Anderson)&lt;br /&gt;
* [[The Class Notes]] ([[Kirk Betz]])&lt;br /&gt;
* [[Transformer Example Problem]] (Aric Vyhmeister, Kevin Starkey, Nick Christman)&lt;br /&gt;
&lt;br /&gt;
==Reviewed Articles==&lt;br /&gt;
These articles have been reviewed and submitted.&lt;br /&gt;
* [[Gauss Meters]] (Tyler Anderson)&lt;br /&gt;
* [[Nick_ENGR431_P1|Magnetostatics]] (Nick Christman)&lt;br /&gt;
* [[Magnetic Flux]] (Jason Osborne)&lt;br /&gt;
*[[An Application of Electromechanical Energy Conversion: Hybrid Electric Vehicles]] (Chris Lau)&lt;br /&gt;
* [[An Ideal Transformer Example]] (Chris Lau)&lt;br /&gt;
* [[Magnetic Circuit]] (John Hawkins)&lt;br /&gt;
* [[Example: Ideal Transformer Exercise]] (John Hawkins)&lt;br /&gt;
* [[AC Motors]]&lt;br /&gt;
* [[Example Problem - Toroid]] ([[Kirk Betz]])&lt;br /&gt;
* [[Transformer_example_problem|Ideal Transformer Example]] (Tim Rasmussen)&lt;br /&gt;
* [[AC vs. DC]] (Wesley Brown)&lt;br /&gt;
* [[Example: Metal Cart]]  (Amy Crosby)&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Winter_2010&amp;diff=8820</id>
		<title>Winter 2010</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Winter_2010&amp;diff=8820"/>
		<updated>2010-01-29T06:52:29Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Put links for your reports here.  Someone feel free to edit this better. &lt;br /&gt;
&lt;br /&gt;
Links to the posted reports are found under the publishing author&#039;s name. (Like it says above, if you hate it...change it! I promise I won’t cry.    Brandon)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1. [[Biesenthal, Dan]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. [[Blackley, Ben]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. [[Cruz, Jorge]]&lt;br /&gt;
*[[Fourier Example]](**Check out the bonus video, really helpful**)&lt;br /&gt;
&lt;br /&gt;
      &lt;br /&gt;
&lt;br /&gt;
4. [[Fullerton, Colby]]&lt;br /&gt;
*[[Laplace Transform]]&lt;br /&gt;
*[[Class Notes 1-5-2010]]&lt;br /&gt;
&lt;br /&gt;
5. [[Grant, Joshua]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
6. [[Gratias, Ryan]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
7. [[Hawkins, John]]&lt;br /&gt;
&lt;br /&gt;
*[[Exercise: Sawtooth Wave Fourier Transform]]&lt;br /&gt;
*[[Exercise: Sawtooth Redone With Exponential Basis Functions]]&lt;br /&gt;
&lt;br /&gt;
*[[Exercise: Solving an IVP Problem with Laplace Transforms]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
8. [[Lau, Chris]]&lt;br /&gt;
*[[Fourier Series: Explained!]]&lt;br /&gt;
&lt;br /&gt;
9. [[Roath, Brian]]&lt;br /&gt;
*[[Laplace Transform]]&lt;br /&gt;
*[[Class Notes 1-5-2010]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
10. [[Robbins, David]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
11. [[Roth, Andrew]]  &lt;br /&gt;
*[[Example: LaTex format (0 points)]]&lt;br /&gt;
*[[Chapter 22--Fourier Series: Fundamental Period, Frequency, and Angular Frequency]]&lt;br /&gt;
&lt;br /&gt;
12. [[Vazquez, Brandon]]  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
13. [[Vier, Michael]]&lt;br /&gt;
* [[Fourier Series: Explained!]]&lt;br /&gt;
&lt;br /&gt;
14. [[Wooley, Thomas]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
15. [[Jaymin, Joseph]]&lt;br /&gt;
*[[Basic_Laplace_Transforms]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
16. [[Starr, Brielle]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
17. [[Starr, Tyler]]&lt;br /&gt;
&lt;br /&gt;
==Article Suggestions or Homework==&lt;br /&gt;
(Please put a note when these are published.)&lt;br /&gt;
&lt;br /&gt;
#  Explore how a linear operator, like for example &amp;lt;math&amp;gt;d \over dt&amp;lt;/math&amp;gt; can be represented as some kind of a matrix multiply (with perhaps an infinite number of dimensions).&lt;br /&gt;
#  Suppose you had to approximate a vector by using the first few dimensions.  Show that if you wish to minimize the error, defined as the length squared of the difference of your approximate vector and the real vector, that the coefficients (or components) of the approximate vector would still be the same as the ones in the same dimensions of the exact vector.  Now, apply this to the Fourier series.&lt;br /&gt;
#  Describe the e Gram-Schmidt Orthogonalization process for taking a set of non orthogonal vectors and using them to find an orthogonal set.  How does this apply to functions?&lt;br /&gt;
#  Solve a circuit using Laplace Transforms.&lt;br /&gt;
#  Set up and solve a simple spring mass problem that models a car&#039;s shock absorber system.&lt;br /&gt;
#  Find the steady state response of a simple circuit (with at least one capacitor or inductor) to a triangle wave using Fourier series, and again with Laplace transforms.  Compare and contrast the solutions.&lt;br /&gt;
#  Find the Laplace transform of &amp;lt;math&amp;gt;cos(\omega_0 t) x(t)&amp;lt;/math&amp;gt;.  What does this mean if the function &amp;lt;math&amp;gt;x(t) = cos(\omega_1 t)&amp;lt;/math&amp;gt;?&lt;br /&gt;
&lt;br /&gt;
==Draft Articles==&lt;br /&gt;
These articles are not ready for reading and error checking. They are listed so people will not simultaneously write about similar topics.&lt;br /&gt;
* [[Gibbs Phenomenon]]&lt;br /&gt;
&lt;br /&gt;
* [[Linear Time Invariant Overview]]&lt;br /&gt;
&lt;br /&gt;
* [[Solving Series RLC Circuit Using Laplace Transforms]]&lt;br /&gt;
&lt;br /&gt;
* [[Laplace Transform of a Triangle Wave]]&lt;br /&gt;
&lt;br /&gt;
* [[ProblemCh14-22]]&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Example:_Ideal_Transformer_Exercise&amp;diff=8552</id>
		<title>Example: Ideal Transformer Exercise</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Example:_Ideal_Transformer_Exercise&amp;diff=8552"/>
		<updated>2010-01-22T09:45:54Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: Made Comments Section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Author==&lt;br /&gt;
&lt;br /&gt;
John Hawkins&lt;br /&gt;
&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
An ideal transformer has a primary winding with 500 turns and a secondary winding with 2000 turns.  Given that &amp;lt;math&amp;gt;\ e_1=120\angle{0^\circ}\text{ V, RMS}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;\ i_1=(2+3j)\text{ A}&amp;lt;/math&amp;gt;, find the load impedance, &amp;lt;math&amp;gt;\ Z_L&amp;lt;/math&amp;gt; and the Thevenin equivalent, &amp;lt;math&amp;gt;\ Z_{th}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Solution==&lt;br /&gt;
&lt;br /&gt;
We could find the Thevenin impedance directly, but we will save that until the end as a checking mechanism.  First, we will find the actual load impedance by finding the current and voltage in the secondary winding and finding their ratio.  The equations used are those derived in class by Professor Frohne.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;e_2=\frac{N_2}{N_2}e_1=\frac{2000}{500}(120)=480\text{ V}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;i_2=\frac{N_1}{N_2}i_1=\frac{500}{2000}(2+3j)=\left(\frac{1}{2}+\frac{3}{4}j\right)\text{ A}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;Z_L=\frac{e_2}{i_2}=\frac{480}{\frac{1}{2}+\frac{3}{4}j}=\mathbf{(295.4-443.1j)\ \Omega\ =(532.5\angle{-56.3^\circ})\ \Omega}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;Z_{th}=\left(\frac{N_1}{N_2}\right)^2Z_L=\left(\frac{500}{2000}\right)^2(295.4-443.1j)=\mathbf{(18.5-27.7j)\ \Omega\ =(33.3\angle{-56.3^\circ})\ \Omega}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As mentioned at the beginning, this should be the impedance found using the ratio of the primary voltage and current.  Using this method, we find that&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;Z_{th}=\frac{e_1}{i_1}=\frac{120}{2+3j}=\mathbf{(18.5-27.7j)\ \Omega\ =(33.3\angle{-56.3^\circ})\ \Omega}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This is the same answer as above, which verifies the solutions.&lt;br /&gt;
&lt;br /&gt;
==Reviewed By==&lt;br /&gt;
&lt;br /&gt;
Tyler Anderson&lt;br /&gt;
&lt;br /&gt;
==Read By==&lt;br /&gt;
&lt;br /&gt;
==Comments==&lt;br /&gt;
Tyler Anderson: it may be helpful to the readers if you referenced what equations you are using. For example:&lt;br /&gt;
&amp;lt;math&amp;gt;e_2=\frac{N_2}{N_2}e_1&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt; EQ (5-39)&amp;lt;/math&amp;gt;&lt;br /&gt;
Otherwise it looks sound to me. &lt;br /&gt;
&lt;br /&gt;
John Hawkins: I didn&#039;t use the textbook, so such a reference is not required.  I agree that it would be useful for those in the class, but I don&#039;t have the same textbook as everyone else, and I doubt anyone would care to know my book&#039;s equation numbers.  Thanks for reminding me about references, though.  I mentioned the class derivation above in the text.&lt;br /&gt;
&lt;br /&gt;
Tyler Anderson: haha fair enough then. props for that. perhaps I could barrow your book sometime? cause ours is absolute crap.&lt;br /&gt;
&lt;br /&gt;
John Hawkins: I hate the book I&#039;m using as well, but if you want to use it sometime that would be fine.&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Laplace_Transform&amp;diff=8551</id>
		<title>Laplace Transform</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Laplace_Transform&amp;diff=8551"/>
		<updated>2010-01-22T09:30:51Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Laplace transforms are an adapted integral form of a differential equation (created and introduced by the French mathematician Pierre-Simon Laplace (1749-1827)) used to describe electrical circuits and physical processes. Adapted from previous notions given by other notable mathematicians and engineers like Joseph-Louis Lagrange (1736-1812) and Leonhard Euler (1707-1783), Laplace transforms are used to be a more efficient and easy-to-recognize form of a mathematical equation.&lt;br /&gt;
&lt;br /&gt;
==Standard Form==&lt;br /&gt;
This is the standard form of a Laplace transform that a function will undergo.&lt;br /&gt;
:&amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{f(t)\right\}=\int_0^{\infty} e^{-st} f(t) \,dt &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sample Functions ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The following is a list of commonly seen functions of which the Laplace transform is taken. The start function is noted within the Laplace symbol &amp;lt;math&amp;gt; \mathcal{L} \left\{ \right\} &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{1\right\}=\int_0^{\infty} e^{-st} \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {1}{s}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{t^n\right\}=\int_0^{\infty} e^{-st} t^n \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {n!}{s^{n+1}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{e^{at}\right\}=\int_0^{\infty} e^{-st} e^{at} \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {1}{s-a}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{sin(\omega t)\right\}=\int_0^{\infty} e^{-st} sin(\omega t) \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {\omega}{s^2+\omega^2}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{cos(\omega t)\right\}=\int_0^{\infty} e^{-st} cos(\omega t) \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {s}{s^2+\omega^2}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{t^n g(t)\right\}=\int_0^{\infty} e^{-st} t^n g(t) \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {(-1)^n d^n G(s)} {ds^n}  \mbox{ for}~n\ \mbox{= 1,2,...}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{t sin(\omega t)\right\}=\int_0^{\infty} e^{-st} t sin(\omega t) \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {2 \omega s} {(s^2+\omega^2)^2} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{t cos(\omega t)\right\}=\int_0^{\infty} e^{-st} t cos(\omega t) \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {s^2-\omega^2} {(s^2+\omega^2)^2} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{g(at)\right\}=\int_0^{\infty} e^{-st} g(at) \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {1} {a} G \left(\frac {s} {a}\right), \mbox{ for} ~a &amp;gt; 0.&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{e^{at} g(t)\right\}=\int_0^{\infty} e^{-st} e^{at} g(t) \,dt = G(s-a) &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{e^{at} t^n\right\}=\int_0^{\infty} e^{-st} e^{at} t^n \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {n!} {(s-a)^{n+1}} \mbox{ for}~n\ \mbox{= 1,2,...}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{te^{-t}\right\}=\int_0^{\infty} e^{-st} te^{-t} \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {1} {(s+1)^2} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{1-e^{-t/T}\right\}=\int_0^{\infty} e^{-st} (1-e^{-t/T}) \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {1} {s(1+Ts)} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{e^{at} sin(\omega t)\right\}=\int_0^{\infty} e^{-st} e^{at} sin(\omega t) \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {\omega} {(s-a)^2 + \omega^2} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{e^{at} cos(\omega t)\right\}=\int_0^{\infty} e^{-st} e^{at} cos(\omega t) \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {s-a} {(s-a)^2 + \omega^2} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{u(t)\right\}=\int_0^{\infty} e^{-st} u(t) \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {1} {s} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{u(t-a)\right\}=\int_0^{\infty} e^{-st} u(t-a) \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {e^{-as}} {s} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{u(t-a) g(t-a)\right\}=\int_0^{\infty} e^{-st} u(t-a) g(t-a) \,dt = e^{-as} G(s) &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{g&#039;(t)\right\}=\int_0^{\infty} e^{-st} g&#039;(t) \,dt = sG(s) - g(0) &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{g&#039;&#039;(t)\right\}=\int_0^{\infty} e^{-st} g&#039;&#039;(t) \,dt = s^2 \cdot G(s) - s \cdot g(0) - g&#039;(0) &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{g^{(n)}(t)\right\}=\int_0^{\infty} e^{-st} g^{(n)}(t) \,dt = s^n \cdot G(s) - s^{n-1} \cdot g(0) - s^{n-2} \cdot g&#039;(0) - ... - g^{(n-1)}(0) &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Transfer Function==&lt;br /&gt;
The Laplace transform of the impulse response of a circuit with no initial conditions is called the transfer function. If a single-input, single-output circuit has no internal stored energy and all the independent internal sources are zero, the transfer function is&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;H(s) = \frac{ \mathcal{L} (response~signal)} { \mathcal{L} (input~signal)}. &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Impedances and admittances are special cases of transfer functions.&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
Solve the differential equation:&lt;br /&gt;
:&amp;lt;math&amp;gt;y&#039;&#039;-2y&#039;-15y=6  \qquad y(0)=1 \qquad y&#039;(0)=3&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We start by taking the Laplace transform of each term.&lt;br /&gt;
:&amp;lt;math&amp;gt;\mathcal{L} \left\{y&#039;&#039;\right\}-2\mathcal{L} \left\{y&#039;\right\}-15\mathcal{L} \left\{y\right\}=\mathcal{L} \left\{6\right\}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The next step is to perform the respective Laplace transforms, using the information given above.&lt;br /&gt;
:&amp;lt;math&amp;gt; (s^2\mathcal{L} \left\{y\right\}-s-3)-2(s\mathcal{L} \left\{y\right\}-1)-15\mathcal{L} \left\{y\right\} = \mathcal{L} \left\{6\right\}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Using association, the equation is rearranged:&lt;br /&gt;
:&amp;lt;math&amp;gt; (s^2-2s-15)\mathcal{L} \left\{y\right\}= \frac {6} {s} -s+3-2&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Continuing on using the method of partial fractions, the equation is progressed:&lt;br /&gt;
:&amp;lt;math&amp;gt; \frac {6+s-s^2} {s(s+3)(s-5)} = \left(\frac {A} {s}\right) \left(\frac {B} {s+3}\right) \left(\frac {C} {s-5}\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt; A(s+3)(s-5)+Bs(s-5)+Cs(s+3)=-s^2+s+6 \,&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt; A+B+C=-1 \,&amp;lt;/math&amp;gt;&lt;br /&gt;
:&amp;lt;math&amp;gt; -2A-5B+3C=1 \,&amp;lt;/math&amp;gt;&lt;br /&gt;
:&amp;lt;math&amp;gt; -15A=6 \,&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt; A=\frac {-2} {5} \qquad B=\frac {-1} {4} \qquad C=\frac {-7} {20} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Plugging the above values back into the equation further up, we get:&lt;br /&gt;
:&amp;lt;math&amp;gt; \mathcal{L} \left\{y\right\} = \frac {\frac {-2} {5}} {s} + \frac {\frac {-1} {4}} {s+3} + \frac {\frac {-7} {20}} {s-5} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Applying anti-Laplace transforms, we get the equation:&lt;br /&gt;
:&amp;lt;math&amp;gt; y= \mathcal{L}^{-1} \left\{\frac {\frac {-2} {5}} {s}\right\}  + \mathcal{L}^{-1} \left\{\frac {\frac {-1} {4}} {s+3}\right\}  + \mathcal{L}^{-1} \left\{\frac {\frac {-7} {20}} {s-5}\right\}  &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Applying the Laplace transforms in reverse (as the above equation utilizes inverse Laplace transforms) for the above equation, we get the solution:&lt;br /&gt;
:&amp;lt;math&amp;gt; y(t)= \frac {-2} {5} + \frac {-1} {4} e^{-3t} + \frac {-7} {20} e^{5t} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
DeCarlo, Raymond A.; Lin, Pen-Min (2001), Linear Circuit Analysis, Oxford University Press, ISBN 0-19-513666-7 .&lt;br /&gt;
== External links ==&lt;br /&gt;
*[http://www.intmath.com/Laplace-transformation/Intro.php The Laplace Transform].&lt;br /&gt;
&lt;br /&gt;
==Authors==&lt;br /&gt;
Colby Fullerton&lt;br /&gt;
&lt;br /&gt;
Brian Roath&lt;br /&gt;
&lt;br /&gt;
==Reviewed By==&lt;br /&gt;
David Robbins&lt;br /&gt;
&lt;br /&gt;
Thomas Wooley&lt;br /&gt;
&lt;br /&gt;
==Read By==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Jaymin Joseph&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
John Hawkins&lt;br /&gt;
&lt;br /&gt;
==Comments==&lt;br /&gt;
John Hawkins:&lt;br /&gt;
&lt;br /&gt;
*Nice list of transforms!  Where did you find it?  Inside the back cover of the textbook has a good list, but none including transforms of &amp;lt;math&amp;gt;\ g(t)&amp;lt;/math&amp;gt;.  I see your reference to the textbook. What page?&lt;br /&gt;
&lt;br /&gt;
*I believe that &lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt; \frac {6+s-s^2} {s(s+3)(s-5)} = \left(\frac {A} {s}\right) \left(\frac {B} {s+3}\right) \left(\frac {C} {s-5}\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
should be&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt; \frac {6+s-s^2} {s(s+3)(s-5)} = \frac {A} {s}+ \frac {B} {s+3}+ \frac {C} {s-5}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*Also, the solution &amp;lt;math&amp;gt; y(t)= -\frac {2} {5} - \frac {1} {4} e^{-3t} - \frac {7} {20} e^{5t} &amp;lt;/math&amp;gt; does not match the initial condition of &amp;lt;math&amp;gt;\ y(0)=1&amp;lt;/math&amp;gt;.&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Laplace_Transform&amp;diff=8550</id>
		<title>Laplace Transform</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Laplace_Transform&amp;diff=8550"/>
		<updated>2010-01-22T07:53:32Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: Comments&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Laplace transforms are an adapted integral form of a differential equation (created and introduced by the French mathematician Pierre-Simon Laplace (1749-1827)) used to describe electrical circuits and physical processes. Adapted from previous notions given by other notable mathematicians and engineers like Joseph-Louis Lagrange (1736-1812) and Leonhard Euler (1707-1783), Laplace transforms are used to be a more efficient and easy-to-recognize form of a mathematical equation.&lt;br /&gt;
&lt;br /&gt;
==Standard Form==&lt;br /&gt;
This is the standard form of a Laplace transform that a function will undergo.&lt;br /&gt;
:&amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{f(t)\right\}=\int_0^{\infty} e^{-st} f(t) \,dt &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sample Functions ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The following is a list of commonly seen functions of which the Laplace transform is taken. The start function is noted within the Laplace symbol &amp;lt;math&amp;gt; \mathcal{L} \left\{ \right\} &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{1\right\}=\int_0^{\infty} e^{-st} \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {1}{s}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{t^n\right\}=\int_0^{\infty} e^{-st} t^n \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {n!}{s^{n+1}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{e^{at}\right\}=\int_0^{\infty} e^{-st} e^{at} \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {1}{s-a}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{sin(\omega t)\right\}=\int_0^{\infty} e^{-st} sin(\omega t) \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {\omega}{s^2+\omega^2}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{cos(\omega t)\right\}=\int_0^{\infty} e^{-st} cos(\omega t) \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {s}{s^2+\omega^2}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{t^n g(t)\right\}=\int_0^{\infty} e^{-st} t^n g(t) \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {(-1)^n d^n G(s)} {ds^n}  \mbox{ for}~n\ \mbox{= 1,2,...}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{t sin(\omega t)\right\}=\int_0^{\infty} e^{-st} t sin(\omega t) \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {2 \omega s} {(s^2+\omega^2)^2} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{t cos(\omega t)\right\}=\int_0^{\infty} e^{-st} t cos(\omega t) \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {s^2-\omega^2} {(s^2+\omega^2)^2} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{g(at)\right\}=\int_0^{\infty} e^{-st} g(at) \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {1} {a} G \left(\frac {s} {a}\right), \mbox{ for} ~a &amp;gt; 0.&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{e^{at} g(t)\right\}=\int_0^{\infty} e^{-st} e^{at} g(t) \,dt = G(s-a) &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{e^{at} t^n\right\}=\int_0^{\infty} e^{-st} e^{at} t^n \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {n!} {(s-a)^{n+1}} \mbox{ for}~n\ \mbox{= 1,2,...}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{te^{-t}\right\}=\int_0^{\infty} e^{-st} te^{-t} \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {1} {(s+1)^2} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{1-e^{-t/T}\right\}=\int_0^{\infty} e^{-st} (1-e^{-t/T}) \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {1} {s(1+Ts)} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{e^{at} sin(\omega t)\right\}=\int_0^{\infty} e^{-st} e^{at} sin(\omega t) \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {\omega} {(s-a)^2 + \omega^2} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{e^{at} cos(\omega t)\right\}=\int_0^{\infty} e^{-st} e^{at} cos(\omega t) \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {s-a} {(s-a)^2 + \omega^2} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{u(t)\right\}=\int_0^{\infty} e^{-st} u(t) \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {1} {s} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{u(t-a)\right\}=\int_0^{\infty} e^{-st} u(t-a) \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {e^{-as}} {s} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{u(t-a) g(t-a)\right\}=\int_0^{\infty} e^{-st} u(t-a) g(t-a) \,dt = e^{-as} G(s) &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{g&#039;(t)\right\}=\int_0^{\infty} e^{-st} g&#039;(t) \,dt = sG(s) - g(0) &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{g&#039;&#039;(t)\right\}=\int_0^{\infty} e^{-st} g&#039;&#039;(t) \,dt = s^2 \cdot G(s) - s \cdot g(0) - g&#039;(0) &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{g^{(n)}(t)\right\}=\int_0^{\infty} e^{-st} g^{(n)}(t) \,dt = s^n \cdot G(s) - s^{n-1} \cdot g(0) - s^{n-2} \cdot g&#039;(0) - ... - g^{(n-1)}(0) &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Transfer Function==&lt;br /&gt;
The Laplace transform of the impulse response of a circuit with no initial conditions is called the transfer function. If a single-input, single-output circuit has no internal stored energy and all the independent internal sources are zero, the transfer function is&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;H(s) = \frac{ \mathcal{L} (response~signal)} { \mathcal{L} (input~signal)}. &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Impedances and admittances are special cases of transfer functions.&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
Solve the differential equation:&lt;br /&gt;
:&amp;lt;math&amp;gt;y&#039;&#039;-2y&#039;-15y=6  \qquad y(0)=1 \qquad y&#039;(0)=3&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We start by taking the Laplace transform of each term.&lt;br /&gt;
:&amp;lt;math&amp;gt;\mathcal{L} \left\{y&#039;&#039;\right\}-2\mathcal{L} \left\{y&#039;\right\}-15\mathcal{L} \left\{y\right\}=\mathcal{L} \left\{6\right\}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The next step is to perform the respective Laplace transforms, using the information given above.&lt;br /&gt;
:&amp;lt;math&amp;gt; (s^2\mathcal{L} \left\{y\right\}-s-3)-2(s\mathcal{L} \left\{y\right\}-1)-15\mathcal{L} \left\{y\right\} = \mathcal{L} \left\{6\right\}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Using association, the equation is rearranged:&lt;br /&gt;
:&amp;lt;math&amp;gt; (s^2-2s-15)\mathcal{L} \left\{y\right\}= \frac {6} {s} -s+3-2&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Continuing on using the method of partial fractions, the equation is progressed:&lt;br /&gt;
:&amp;lt;math&amp;gt; \frac {6+s-s^2} {s(s+3)(s-5)} = \left(\frac {A} {s}\right) \left(\frac {B} {s+3}\right) \left(\frac {C} {s-5}\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt; A(s+3)(s-5)+Bs(s-5)+Cs(s+3)=-s^2+s+6 \,&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt; A+B+C=-1 \,&amp;lt;/math&amp;gt;&lt;br /&gt;
:&amp;lt;math&amp;gt; -2A-5B+3C=1 \,&amp;lt;/math&amp;gt;&lt;br /&gt;
:&amp;lt;math&amp;gt; -15A=6 \,&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt; A=\frac {-2} {5} \qquad B=\frac {-1} {4} \qquad C=\frac {-7} {20} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Plugging the above values back into the equation further up, we get:&lt;br /&gt;
:&amp;lt;math&amp;gt; \mathcal{L} \left\{y\right\} = \frac {\frac {-2} {5}} {s} + \frac {\frac {-1} {4}} {s+3} + \frac {\frac {-7} {20}} {s-5} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Applying anti-Laplace transforms, we get the equation:&lt;br /&gt;
:&amp;lt;math&amp;gt; y= \mathcal{L}^{-1} \left\{\frac {\frac {-2} {5}} {s}\right\}  + \mathcal{L}^{-1} \left\{\frac {\frac {-1} {4}} {s+3}\right\}  + \mathcal{L}^{-1} \left\{\frac {\frac {-7} {20}} {s-5}\right\}  &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Applying the Laplace transforms in reverse (as the above equation utilizes inverse Laplace transforms) for the above equation, we get the solution:&lt;br /&gt;
:&amp;lt;math&amp;gt; y(t)= \frac {-2} {5} + \frac {-1} {4} e^{-3t} + \frac {-7} {20} e^{5t} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
DeCarlo, Raymond A.; Lin, Pen-Min (2001), Linear Circuit Analysis, Oxford University Press, ISBN 0-19-513666-7 .&lt;br /&gt;
== External links ==&lt;br /&gt;
*[http://www.intmath.com/Laplace-transformation/Intro.php The Laplace Transform].&lt;br /&gt;
&lt;br /&gt;
==Authors==&lt;br /&gt;
Colby Fullerton&lt;br /&gt;
&lt;br /&gt;
Brian Roath&lt;br /&gt;
&lt;br /&gt;
==Reviewed By==&lt;br /&gt;
David Robbins&lt;br /&gt;
&lt;br /&gt;
Thomas Wooley&lt;br /&gt;
&lt;br /&gt;
==Read By==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Jaymin Joseph&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
John Hawkins&lt;br /&gt;
&lt;br /&gt;
==Comments==&lt;br /&gt;
&lt;br /&gt;
*John Hawkins: Nice list of transforms!  Where did you find it?  Inside the back cover of the textbook has a good list, but none including transforms of &amp;lt;math&amp;gt;\ g(t)&amp;lt;/math&amp;gt;.  I see your reference to the textbook. What page?&lt;br /&gt;
&lt;br /&gt;
*John Hawkins: I believe that &lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt; \frac {6+s-s^2} {s(s+3)(s-5)} = \left(\frac {A} {s}\right) \left(\frac {B} {s+3}\right) \left(\frac {C} {s-5}\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
should be&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt; \frac {6+s-s^2} {s(s+3)(s-5)} = \frac {A} {s}+ \frac {B} {s+3}+ \frac {C} {s-5}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*John Hawkins: Also, the solution &amp;lt;math&amp;gt; y(t)= -\frac {2} {5} - \frac {1} {4} e^{-3t} - \frac {7} {20} e^{5t} &amp;lt;/math&amp;gt; does not match the initial condition of &amp;lt;math&amp;gt;\ y(0)=1&amp;lt;/math&amp;gt;.&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Laplace_Transform&amp;diff=8549</id>
		<title>Laplace Transform</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Laplace_Transform&amp;diff=8549"/>
		<updated>2010-01-22T07:39:37Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: Comment&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Laplace transforms are an adapted integral form of a differential equation (created and introduced by the French mathematician Pierre-Simon Laplace (1749-1827)) used to describe electrical circuits and physical processes. Adapted from previous notions given by other notable mathematicians and engineers like Joseph-Louis Lagrange (1736-1812) and Leonhard Euler (1707-1783), Laplace transforms are used to be a more efficient and easy-to-recognize form of a mathematical equation.&lt;br /&gt;
&lt;br /&gt;
==Standard Form==&lt;br /&gt;
This is the standard form of a Laplace transform that a function will undergo.&lt;br /&gt;
:&amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{f(t)\right\}=\int_0^{\infty} e^{-st} f(t) \,dt &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sample Functions ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The following is a list of commonly seen functions of which the Laplace transform is taken. The start function is noted within the Laplace symbol &amp;lt;math&amp;gt; \mathcal{L} \left\{ \right\} &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{1\right\}=\int_0^{\infty} e^{-st} \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {1}{s}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{t^n\right\}=\int_0^{\infty} e^{-st} t^n \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {n!}{s^{n+1}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{e^{at}\right\}=\int_0^{\infty} e^{-st} e^{at} \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {1}{s-a}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{sin(\omega t)\right\}=\int_0^{\infty} e^{-st} sin(\omega t) \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {\omega}{s^2+\omega^2}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{cos(\omega t)\right\}=\int_0^{\infty} e^{-st} cos(\omega t) \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {s}{s^2+\omega^2}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{t^n g(t)\right\}=\int_0^{\infty} e^{-st} t^n g(t) \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {(-1)^n d^n G(s)} {ds^n}  \mbox{ for}~n\ \mbox{= 1,2,...}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{t sin(\omega t)\right\}=\int_0^{\infty} e^{-st} t sin(\omega t) \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {2 \omega s} {(s^2+\omega^2)^2} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{t cos(\omega t)\right\}=\int_0^{\infty} e^{-st} t cos(\omega t) \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {s^2-\omega^2} {(s^2+\omega^2)^2} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{g(at)\right\}=\int_0^{\infty} e^{-st} g(at) \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {1} {a} G \left(\frac {s} {a}\right), \mbox{ for} ~a &amp;gt; 0.&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{e^{at} g(t)\right\}=\int_0^{\infty} e^{-st} e^{at} g(t) \,dt = G(s-a) &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{e^{at} t^n\right\}=\int_0^{\infty} e^{-st} e^{at} t^n \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {n!} {(s-a)^{n+1}} \mbox{ for}~n\ \mbox{= 1,2,...}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{te^{-t}\right\}=\int_0^{\infty} e^{-st} te^{-t} \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {1} {(s+1)^2} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{1-e^{-t/T}\right\}=\int_0^{\infty} e^{-st} (1-e^{-t/T}) \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {1} {s(1+Ts)} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{e^{at} sin(\omega t)\right\}=\int_0^{\infty} e^{-st} e^{at} sin(\omega t) \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {\omega} {(s-a)^2 + \omega^2} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{e^{at} cos(\omega t)\right\}=\int_0^{\infty} e^{-st} e^{at} cos(\omega t) \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {s-a} {(s-a)^2 + \omega^2} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{u(t)\right\}=\int_0^{\infty} e^{-st} u(t) \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {1} {s} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{u(t-a)\right\}=\int_0^{\infty} e^{-st} u(t-a) \,dt = &amp;lt;/math&amp;gt; &amp;lt;math&amp;gt; \frac {e^{-as}} {s} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{u(t-a) g(t-a)\right\}=\int_0^{\infty} e^{-st} u(t-a) g(t-a) \,dt = e^{-as} G(s) &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{g&#039;(t)\right\}=\int_0^{\infty} e^{-st} g&#039;(t) \,dt = sG(s) - g(0) &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{g&#039;&#039;(t)\right\}=\int_0^{\infty} e^{-st} g&#039;&#039;(t) \,dt = s^2 \cdot G(s) - s \cdot g(0) - g&#039;(0) &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;F(s) = \mathcal{L} \left\{g^{(n)}(t)\right\}=\int_0^{\infty} e^{-st} g^{(n)}(t) \,dt = s^n \cdot G(s) - s^{n-1} \cdot g(0) - s^{n-2} \cdot g&#039;(0) - ... - g^{(n-1)}(0) &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Transfer Function==&lt;br /&gt;
The Laplace transform of the impulse response of a circuit with no initial conditions is called the transfer function. If a single-input, single-output circuit has no internal stored energy and all the independent internal sources are zero, the transfer function is&lt;br /&gt;
&lt;br /&gt;
: &amp;lt;math&amp;gt;H(s) = \frac{ \mathcal{L} (response~signal)} { \mathcal{L} (input~signal)}. &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Impedances and admittances are special cases of transfer functions.&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
Solve the differential equation:&lt;br /&gt;
:&amp;lt;math&amp;gt;y&#039;&#039;-2y&#039;-15y=6  \qquad y(0)=1 \qquad y&#039;(0)=3&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We start by taking the Laplace transform of each term.&lt;br /&gt;
:&amp;lt;math&amp;gt;\mathcal{L} \left\{y&#039;&#039;\right\}-2\mathcal{L} \left\{y&#039;\right\}-15\mathcal{L} \left\{y\right\}=\mathcal{L} \left\{6\right\}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The next step is to perform the respective Laplace transforms, using the information given above.&lt;br /&gt;
:&amp;lt;math&amp;gt; (s^2\mathcal{L} \left\{y\right\}-s-3)-2(s\mathcal{L} \left\{y\right\}-1)-15\mathcal{L} \left\{y\right\} = \mathcal{L} \left\{6\right\}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Using association, the equation is rearranged:&lt;br /&gt;
:&amp;lt;math&amp;gt; (s^2-2s-15)\mathcal{L} \left\{y\right\}= \frac {6} {s} -s+3-2&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Continuing on using the method of partial fractions, the equation is progressed:&lt;br /&gt;
:&amp;lt;math&amp;gt; \frac {6+s-s^2} {s(s+3)(s-5)} = \left(\frac {A} {s}\right) \left(\frac {B} {s+3}\right) \left(\frac {C} {s-5}\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt; A(s+3)(s-5)+Bs(s-5)+Cs(s+3)=-s^2+s+6 \,&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt; A+B+C=-1 \,&amp;lt;/math&amp;gt;&lt;br /&gt;
:&amp;lt;math&amp;gt; -2A-5B+3C=1 \,&amp;lt;/math&amp;gt;&lt;br /&gt;
:&amp;lt;math&amp;gt; -15A=6 \,&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt; A=\frac {-2} {5} \qquad B=\frac {-1} {4} \qquad C=\frac {-7} {20} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Plugging the above values back into the equation further up, we get:&lt;br /&gt;
:&amp;lt;math&amp;gt; \mathcal{L} \left\{y\right\} = \frac {\frac {-2} {5}} {s} + \frac {\frac {-1} {4}} {s+3} + \frac {\frac {-7} {20}} {s-5} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Applying anti-Laplace transforms, we get the equation:&lt;br /&gt;
:&amp;lt;math&amp;gt; y= \mathcal{L}^{-1} \left\{\frac {\frac {-2} {5}} {s}\right\}  + \mathcal{L}^{-1} \left\{\frac {\frac {-1} {4}} {s+3}\right\}  + \mathcal{L}^{-1} \left\{\frac {\frac {-7} {20}} {s-5}\right\}  &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Applying the Laplace transforms in reverse (as the above equation utilizes inverse Laplace transforms) for the above equation, we get the solution:&lt;br /&gt;
:&amp;lt;math&amp;gt; y(t)= \frac {-2} {5} + \frac {-1} {4} e^{-3t} + \frac {-7} {20} e^{5t} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
DeCarlo, Raymond A.; Lin, Pen-Min (2001), Linear Circuit Analysis, Oxford University Press, ISBN 0-19-513666-7 .&lt;br /&gt;
== External links ==&lt;br /&gt;
*[http://www.intmath.com/Laplace-transformation/Intro.php The Laplace Transform].&lt;br /&gt;
&lt;br /&gt;
==Authors==&lt;br /&gt;
Colby Fullerton&lt;br /&gt;
&lt;br /&gt;
Brian Roath&lt;br /&gt;
&lt;br /&gt;
==Reviewed By==&lt;br /&gt;
David Robbins&lt;br /&gt;
&lt;br /&gt;
Thomas Wooley&lt;br /&gt;
&lt;br /&gt;
==Read By==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Jaymin Joseph&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
John Hawkins&lt;br /&gt;
&lt;br /&gt;
==Comments==&lt;br /&gt;
&lt;br /&gt;
*John Hawkins: I believe that instead of &lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt; \frac {6+s-s^2} {s(s+3)(s-5)} = \left(\frac {A} {s}\right) \left(\frac {B} {s+3}\right) \left(\frac {C} {s-5}\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
you wanted to write&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt; \frac {6+s-s^2} {s(s+3)(s-5)} = \left(\frac {A} {s}\right)+ \left(\frac {B} {s+3}\right)+ \left(\frac {C} {s-5}\right)&amp;lt;/math&amp;gt;&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Electromechanical_Energy_Conversion&amp;diff=8546</id>
		<title>Electromechanical Energy Conversion</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Electromechanical_Energy_Conversion&amp;diff=8546"/>
		<updated>2010-01-21T19:49:55Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Rules]]&lt;br /&gt;
&lt;br /&gt;
[[Class Roster]]&lt;br /&gt;
&lt;br /&gt;
[[Points]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Questions==&lt;br /&gt;
&lt;br /&gt;
What do we do when we are finished with the draft and ready to publish?&lt;br /&gt;
* If it&#039;s been approved by the reviewers, move it to the articles section&lt;br /&gt;
&lt;br /&gt;
Does anyone know why my LaTEX stuff is changing sizes throughout my article? [[An Ideal Transformer Example]]&lt;br /&gt;
&lt;br /&gt;
*(John Hawkins) As I understand it, the text is made full size (larger) if there is ever a function call, i.e. something starting with a backslash, excluding some things like greek letters.  I have just put &amp;quot;\ &amp;quot; (the function call for a space) at the beginning of an equation and had it work.  If you don&#039;t want to change anything about your equation but just want it displayed full size, type &amp;quot;\,\!&amp;quot; (small forward space and small backward space) somewhere in your equation.&lt;br /&gt;
*Thanks John!&lt;br /&gt;
&lt;br /&gt;
==Announcements==&lt;br /&gt;
&lt;br /&gt;
If anyone wants to write the derivation of Ampere&#039;s Law you can put it on my (Wesley Brown) [[Ampere&#039;s Law]] page and be a co-author.&lt;br /&gt;
&lt;br /&gt;
==Draft Articles==&lt;br /&gt;
These articles are not ready for reading and error checking. They are listed so people will not simultaneously write about similar topics.&lt;br /&gt;
* [[Ferromagnetism]]&lt;br /&gt;
* [[Magnetic Circuits]]&lt;br /&gt;
* [[Example: Ampere&#039;s Law]] (Tyler Anderson)&lt;br /&gt;
* [[Ampere&#039;s Law]]&lt;br /&gt;
* [[DC Motor]]&lt;br /&gt;
* [[Fringing]]&lt;br /&gt;
* [[Electrostatics]]&lt;br /&gt;
* [[Faraday&#039;s Law]]&lt;br /&gt;
* [[Eddy Current]]&lt;br /&gt;
* [[Example Problems of Magnetic Circuits]]&lt;br /&gt;
* [[Ohm&#039;s Law and Reluctance]]&lt;br /&gt;
* [[Magnetic Flux]]&lt;br /&gt;
* [[An Ideal Transformer Example]]&lt;br /&gt;
* [[Example: Ideal Transformer Exercise]] (John Hawkins)&lt;br /&gt;
* [[Reference Terms and Units]] (Amy Crosby)&lt;br /&gt;
* [[Ideal Transformer Example|Example: Ideal Transformer]]&lt;br /&gt;
* [[Problem Set 1]](Jodi Hodge)&lt;br /&gt;
* [[ANOTHER IDEAL TRANSFORMER!!!!!!!!!]]&lt;br /&gt;
* [[Example: Magnetic Field]] (Amy Crosby) &lt;br /&gt;
* [[Example: Metal Cart]]  (Amy Crosby)&lt;br /&gt;
&lt;br /&gt;
==Reviewed Articles==&lt;br /&gt;
These articles have been reviewed and submitted.&lt;br /&gt;
* [[Gauss Meters]] (Tyler Anderson)&lt;br /&gt;
* [[Nick_ENGR431_P1|Magnetostatics]] (Nick Christman)&lt;br /&gt;
* [[Magnetic Flux]] (Jason Osborne)&lt;br /&gt;
*[[An Application of Electromechanical Energy Conversion: Hybrid Electric Vehicles]] (Chris Lau)&lt;br /&gt;
&lt;br /&gt;
* [[Magnetic Circuit]] (John Hawkins)&lt;br /&gt;
* [[AC Motors]]&lt;br /&gt;
* [[Example Problem - Toroid]] ([[Kirk Betz]])&lt;br /&gt;
* [[Transformer_example_problem|Ideal Transformer Example]] (Tim Rasmussen)&lt;br /&gt;
* [[AC vs. DC]] (Wesley Brown)&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Class_Roster&amp;diff=8542</id>
		<title>Class Roster</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Class_Roster&amp;diff=8542"/>
		<updated>2010-01-21T19:08:17Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Class of 2010===&lt;br /&gt;
#[[Eric Clay]]&lt;br /&gt;
#[[Jason Osborne]]&lt;br /&gt;
#[[Tim Van Arsdale]]&lt;br /&gt;
#[[Kirk Betz]]&lt;br /&gt;
#[[Jimmy Apablaza]]&lt;br /&gt;
#[[Will Griffith]]&lt;br /&gt;
#[[Greg Fong]]&lt;br /&gt;
#[[Tyler Anderson]]&lt;br /&gt;
#[[Andrew Sell]]&lt;br /&gt;
#[[Lau, Chris]]&lt;br /&gt;
#[[Kyle Lafferty]]&lt;br /&gt;
#[[Matthew Fetke]]&lt;br /&gt;
#[[Wesley Brown]]&lt;br /&gt;
#[[Erik Biesenthal]]&lt;br /&gt;
#[[Jodi Hodge]]&lt;br /&gt;
#[[David Robbins]]&lt;br /&gt;
#[[Amy Crosby]]&lt;br /&gt;
#[[Tim Rasmussen]]&lt;br /&gt;
#[[Kevin Starkey EMEC]]&lt;br /&gt;
#[[John Hawkins]]&lt;br /&gt;
#[[Alex Roddy]]&lt;br /&gt;
#[[Aric Vyhmeister]]&lt;br /&gt;
#[[Nick Christman]]&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Example:_Ideal_Transformer_Exercise&amp;diff=8541</id>
		<title>Example: Ideal Transformer Exercise</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Example:_Ideal_Transformer_Exercise&amp;diff=8541"/>
		<updated>2010-01-21T19:02:29Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Author==&lt;br /&gt;
&lt;br /&gt;
John Hawkins&lt;br /&gt;
&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
An ideal transformer has a primary winding with 500 turns and a secondary winding with 2000 turns.  Given that &amp;lt;math&amp;gt;\ e_1=120\angle{0^\circ}\text{ V, RMS}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;\ i_1=(2+3j)\text{ A}&amp;lt;/math&amp;gt;, find the load impedance, &amp;lt;math&amp;gt;\ Z_L&amp;lt;/math&amp;gt; and the Thevenin equivalent, &amp;lt;math&amp;gt;\ Z_{th}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Solution==&lt;br /&gt;
&lt;br /&gt;
We could find the Thevenin impedance directly, but we will save that until the end as a checking mechanism.  First, we will find the actual load impedance by finding the current and voltage in the secondary winding and finding their ratio.  The equations used are those derived in class by Professor Frohne.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;e_2=\frac{N_2}{N_2}e_1=\frac{2000}{500}(120)=480\text{ V}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;i_2=\frac{N_1}{N_2}i_1=\frac{500}{2000}(2+3j)=\left(\frac{1}{2}+\frac{3}{4}j\right)\text{ A}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;Z_L=\frac{e_2}{i_2}=\frac{480}{\frac{1}{2}+\frac{3}{4}j}=\mathbf{(295.4-443.1j)\ \Omega\ =(532.5\angle{-56.3^\circ})\ \Omega}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;Z_{th}=\left(\frac{N_1}{N_2}\right)^2Z_L=\left(\frac{500}{2000}\right)^2(295.4-443.1j)=\mathbf{(18.5-27.7j)\ \Omega\ =(33.3\angle{-56.3^\circ})\ \Omega}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As mentioned at the beginning, this should be the impedance found using the ratio of the primary voltage and current.  Using this method, we find that&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;Z_{th}=\frac{e_1}{i_1}=\frac{120}{2+3j}=\mathbf{(18.5-27.7j)\ \Omega\ =(33.3\angle{-56.3^\circ})\ \Omega}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This is the same answer as above, which verifies the solutions.&lt;br /&gt;
&lt;br /&gt;
==Reviewed By==&lt;br /&gt;
&lt;br /&gt;
Tyler Anderson - it may be helpful to the readers if you referenced what equations you are using. For example:&lt;br /&gt;
&amp;lt;math&amp;gt;e_2=\frac{N_2}{N_2}e_1&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt; EQ (5-39)&amp;lt;/math&amp;gt;&lt;br /&gt;
Otherwise it looks sound to me. &lt;br /&gt;
&lt;br /&gt;
* I didn&#039;t use the textbook, so such a reference is not required.  I agree that it would be useful for those in the class, but I don&#039;t have the same textbook as everyone else, and I doubt anyone would care to know my book&#039;s equation numbers.  Thanks for reminding me about references, though.  I mentioned the class derivation above in the text.&lt;br /&gt;
* haha fair enough then. props for that. perhaps I could barrow your book sometime? cause ours is absolute crap.&lt;br /&gt;
&lt;br /&gt;
* I hate the book I&#039;m using as well, but if you want to use it sometime that would be fine.&lt;br /&gt;
&lt;br /&gt;
==Read By==&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Ideal_Transformer_Example&amp;diff=8540</id>
		<title>Ideal Transformer Example</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Ideal_Transformer_Example&amp;diff=8540"/>
		<updated>2010-01-21T19:00:27Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;An idea transformer has a 275-turn primary and 825-turn secondary. The primary is connected to a 200-V, 60-Hz source. The secondary supplies a load of 5 A at a lagging power factor of 0.5. Find the turns-ratio, the current in the primary, the power supplied to the load, and the flux in the core. &lt;br /&gt;
&lt;br /&gt;
===Solution===&lt;br /&gt;
(A)  &amp;lt;math&amp;gt;\ {turns-ratio}=\frac{N_{1}}{N_{2}}&amp;lt;/math&amp;gt; &lt;br /&gt;
&amp;lt;math&amp;gt;\ =\frac{275}{825}&amp;lt;/math&amp;gt; &lt;br /&gt;
&amp;lt;math&amp;gt;\ =0.333&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
(B) Because &amp;lt;math&amp;gt;\ {I_{2}}=5 A&amp;lt;/math&amp;gt;, the current in the primary is...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\ {I_{1}}=\frac{I_{2}}{turns-ratio}&amp;lt;/math&amp;gt; &lt;br /&gt;
&amp;lt;math&amp;gt;\ =\frac{5}{0.333}&amp;lt;/math&amp;gt; &lt;br /&gt;
&amp;lt;math&amp;gt;\ =15 A&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
(C)  &amp;lt;math&amp;gt;\ {V_{2}}=\frac{V_{1}}{turns-ratio}&amp;lt;/math&amp;gt; &lt;br /&gt;
&amp;lt;math&amp;gt;\ =\frac{200}{0.333}&amp;lt;/math&amp;gt; &lt;br /&gt;
&amp;lt;math&amp;gt;\ =600 V&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Therefore, the power supplied to the load is...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\ {P_{L}}=V_{2} I_{2}\cos(\theta)&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\ =600 * 5 * 0.5&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\ =1500 W&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
(D)  &amp;lt;math&amp;gt;\ {\phi_{m}}=\frac{E_{1}}{4.44 f N_{1}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\ =\frac{V_{1}}{4.44 f N_{1}}&amp;lt;/math&amp;gt; &lt;br /&gt;
&amp;lt;math&amp;gt;\ =\frac{200}{4.44 * 60 * 275}&amp;lt;/math&amp;gt; &lt;br /&gt;
&amp;lt;math&amp;gt;\ =2.73 mWb&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Author==&lt;br /&gt;
[[Kyle Lafferty]]&lt;br /&gt;
&lt;br /&gt;
==Reviewers==&lt;br /&gt;
Aric Vyhmeister&lt;br /&gt;
&lt;br /&gt;
Erik Biesenthal&lt;br /&gt;
&lt;br /&gt;
==Readers==&lt;br /&gt;
Aric Vyhmeister&lt;br /&gt;
&lt;br /&gt;
Erik Biesenthal&lt;br /&gt;
John Hawkins&lt;br /&gt;
&lt;br /&gt;
==Comments==&lt;br /&gt;
&lt;br /&gt;
The way to do capital phi, &amp;lt;math&amp;gt;\ \Phi&amp;lt;/math&amp;gt;, for the flux is to capitalize the first letter of the word, i.e. \Phi instead of \phi.  And if you want a space between the number and the units, space is \(space), as in &amp;quot;\ &amp;quot;.&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Ideal_Transformer_Example&amp;diff=8539</id>
		<title>Ideal Transformer Example</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Ideal_Transformer_Example&amp;diff=8539"/>
		<updated>2010-01-21T18:57:55Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;An idea transformer has a 275-turn primary and 825-turn secondary. The primary is connected to a 200-V, 60-Hz source. The secondary supplies a load of 5 A at a lagging power factor of 0.5. Find the turns-ratio, the current in the primary, the power supplied to the load, and the flux in the core. &lt;br /&gt;
&lt;br /&gt;
===Solution===&lt;br /&gt;
(A)  &amp;lt;math&amp;gt;\ {turns-ratio}=\frac{N_{1}}{N_{2}}&amp;lt;/math&amp;gt; &lt;br /&gt;
&amp;lt;math&amp;gt;\ =\frac{275}{825}&amp;lt;/math&amp;gt; &lt;br /&gt;
&amp;lt;math&amp;gt;\ =0.333&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
(B) Because &amp;lt;math&amp;gt;\ {I_{2}}=5 A&amp;lt;/math&amp;gt;, the current in the primary is...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\ {I_{1}}=\frac{I_{2}}{turns-ratio}&amp;lt;/math&amp;gt; &lt;br /&gt;
&amp;lt;math&amp;gt;\ =\frac{5}{0.333}&amp;lt;/math&amp;gt; &lt;br /&gt;
&amp;lt;math&amp;gt;\ =15 A&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
(C)  &amp;lt;math&amp;gt;\ {V_{2}}=\frac{V_{1}}{turns-ratio}&amp;lt;/math&amp;gt; &lt;br /&gt;
&amp;lt;math&amp;gt;\ =\frac{200}{0.333}&amp;lt;/math&amp;gt; &lt;br /&gt;
&amp;lt;math&amp;gt;\ =600 V&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Therefore, the power supplied to the load is...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\ {P_{L}}=V_{2} I_{2}\cos(\theta)&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\ =600 * 5 * 0.5&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\ =1500 W&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
(D)  &amp;lt;math&amp;gt;\ {\phi_{m}}=\frac{E_{1}}{4.44 f N_{1}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\ =\frac{V_{1}}{4.44 f N_{1}}&amp;lt;/math&amp;gt; &lt;br /&gt;
&amp;lt;math&amp;gt;\ =\frac{200}{4.44 * 60 * 275}&amp;lt;/math&amp;gt; &lt;br /&gt;
&amp;lt;math&amp;gt;\ =2.73 mWb&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Author==&lt;br /&gt;
[[Kyle Lafferty]]&lt;br /&gt;
&lt;br /&gt;
==Reviewers==&lt;br /&gt;
Aric Vyhmeister&lt;br /&gt;
&lt;br /&gt;
Erik Biesenthal&lt;br /&gt;
&lt;br /&gt;
==Readers==&lt;br /&gt;
Aric Vyhmeister&lt;br /&gt;
&lt;br /&gt;
Erik Biesenthal&lt;br /&gt;
John Hawkins&lt;br /&gt;
&lt;br /&gt;
==Comments==&lt;br /&gt;
&lt;br /&gt;
The way to do capital phi, &amp;lt;math&amp;gt;\ \Phi&amp;lt;/math&amp;gt;, for the flux is to capitalize the first letter of the word, i.e. \Phi instead of \phi.&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Magnetic_Circuit&amp;diff=8538</id>
		<title>Magnetic Circuit</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Magnetic_Circuit&amp;diff=8538"/>
		<updated>2010-01-21T18:51:42Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Author: John Hawkins=&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
[[Image:Img001.jpg|thumb|500px|right]]&lt;br /&gt;
Problem 2.16 from &#039;&#039;Electric Machinery and Transformers&#039;&#039;, 3rd ed:&lt;br /&gt;
&amp;lt;blockquote&amp;gt;A magnetic circuit is given in Figure P2.16.  What must be the current in the 1600-turn coil to set up a flux density of 0.1 T in the air-gap?  All dimensions are in centimeters.  Assume that magnetic flux density varies as &amp;lt;math&amp;gt;B=[1.5H/(750+H)]&amp;lt;/math&amp;gt;.&amp;lt;ref&amp;gt;Guru and Huseyin, &#039;&#039;Electric Machinery and Transformers&#039;&#039;, 3rd ed. (New York: Oxford University Press, 2001), 129.&amp;lt;/ref&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==Solution==&lt;br /&gt;
&lt;br /&gt;
First, we note that the problem statement is incomplete. Assume that the core has a relative permeability of 500.  Hence, for all magnetic sections excluding the air gap,&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;math&amp;gt;\mu=\mu_r\mu_0=(500)(4\pi\times10^{-7})=6.2832\times10^{-4}&amp;lt;/math&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Also, as recommended in the text, we will neglect fringing.&lt;br /&gt;
&lt;br /&gt;
The lengths and areas of each of the sections to be evaluated are given in the following table.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &#039;&#039;Table 1: Lengths and Areas for the pertinent secions of the magnetic circuit.&#039;&#039;&lt;br /&gt;
! &#039;&#039;&#039;Section&#039;&#039;&#039; !! fg !! def !! ghc !! dc !! dabc &lt;br /&gt;
|-&lt;br /&gt;
| Length &amp;lt;math&amp;gt;l&amp;lt;/math&amp;gt; (m)|| 0.01 || 0.555|| 0.555 || 0.48 || 1.38&lt;br /&gt;
|-&lt;br /&gt;
| Area &amp;lt;math&amp;gt;A&amp;lt;/math&amp;gt; (m&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;) || 0.0032 || 0.0032 || 0.0032 || 0.0096 || 8.0e-4&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
We must now work backward from the air-gap, since the value of the flux-density is given there.  We need only employ the analagous equations to Ohm&#039;s Law, KVL, and KCL.  All units are standard units.  &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Air Gap:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\mathcal{R}_{fg}=\frac{l_{fg}}{\mu A_{fg}} = 4973.6&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\Phi_{fg}=B_{fg}A_{fg}=3.20\times10^{-4}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\mathcal{F}_{fg}=\mathcal{R}_{fg}\Phi_{fg}=1.5915&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Right Arms:&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\Phi_{def}=\Phi_{ghc} = \Phi_{fg} = 3.20\times10^{-4}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\mathcal{R}_{def}=\mathcal{R}_{ghc}=\frac{l_{def}}{\mu A_{def}}=2.7603\times10^5&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\mathcal{F}_{def}=\mathcal{F}_{ghc}=\mathcal{R}_{def}\Phi_{def}=88.331&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Center Column:&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\mathcal{F}_{dc}=\mathcal{F}_{def}+\mathcal{F}_{fg}+\mathcal{F}_{ghc}=178.25&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\mathcal{R}_{dc}=\frac{l_{dc}}{\mu A_{dc}}=79,577&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\Phi_{dc}=\frac{\mathcal{F}_{dc}}{\mathcal{R}_{dc}}=0.0022&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Left Arm:&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\ \Phi_{dabc}=\Phi_{dc}-\Phi_{def}=0.0019&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\mathcal{R}_{dabc}=\frac{l_{dabc}}{\mu A_{dabc}}=2.745\times 10^6&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\mathcal{F}_{dabc}=\mathcal{F}_{dabc}\Phi_{dabc}=5,271.2&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Conclusions:&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\mathcal{F}_{Total}=\mathcal{F}_{dabc}+&lt;br /&gt;
&lt;br /&gt;
\mathcal{F}_{dc}+\mathcal{F}_{def}+\mathcal{F}_{fg}+&lt;br /&gt;
&lt;br /&gt;
\mathcal{F}_{ghc}=5,627.7&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\mathbf{i=\frac{\mathcal{F}_{Total}}{N}=3.52 A}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Which is the quantity we were looking for.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Calculations were performed using the following [[Magnetic Circuit Matlab Script]].&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Reviewed By==&lt;br /&gt;
Amy Crosby&lt;br /&gt;
==Read By==&lt;br /&gt;
&lt;br /&gt;
==Comments==&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Chapter_22--Fourier_Series:_Fundamental_Period,_Frequency,_and_Angular_Frequency&amp;diff=8428</id>
		<title>Chapter 22--Fourier Series: Fundamental Period, Frequency, and Angular Frequency</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Chapter_22--Fourier_Series:_Fundamental_Period,_Frequency,_and_Angular_Frequency&amp;diff=8428"/>
		<updated>2010-01-20T10:30:22Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;22 lines (currently)&lt;br /&gt;
&lt;br /&gt;
1 reference&lt;br /&gt;
&lt;br /&gt;
1 figure&lt;br /&gt;
&lt;br /&gt;
123 points&lt;br /&gt;
&lt;br /&gt;
==Period, Frequency, and Angular Frequency==&lt;br /&gt;
[[Image:Sinewave.png|450px|thumb|right|Picture of a Sine Wave where f(x)=sin(x)&amp;lt;ref&amp;gt;http://en.wikipedia.org/wiki/File:Sine.svg&amp;lt;/ref&amp;gt;]]&lt;br /&gt;
&lt;br /&gt;
===Period===&lt;br /&gt;
&lt;br /&gt;
Long long ago, in a high school class called trigonometry, we leaned about &#039;&#039;&#039;periodic functions&#039;&#039;&#039;.  A periodic function is a function that repeats itself over and over for infinity.  The &#039;&#039;&#039;period&#039;&#039;&#039; of the function is the distance of one iteration that is infinitely repeating.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;A signal &amp;lt;math&amp;gt;f(t)&amp;lt;/math&amp;gt; is periodic if, for some &amp;lt;math&amp;gt;T &amp;gt; 0&amp;lt;/math&amp;gt; and all &#039;&#039;t&#039;&#039;,&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;math&amp;gt;f(t+T) = f(t)&amp;lt;/math&amp;gt;&amp;lt;ref&amp;gt;DeCarlo/Lin, Linear Circuit Analysis--Time Domain, Phasor, and Laplace Transform Approaches, Second Edition.  Figure 22.1&amp;lt;/ref&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Where T is the period&lt;br /&gt;
&lt;br /&gt;
The picture to the right shows the plot of the standard sine function whose period is &amp;lt;math&amp;gt;2\pi&amp;lt;/math&amp;gt;.  What the plot does not show is that the line keeps extending and repeating the bumps and valleys over the whole x axis, or &amp;lt;math&amp;gt;(-\infty,\infty)&amp;lt;/math&amp;gt;.  But wait! Can&#039;t the period also be &amp;lt;math&amp;gt;4\pi&amp;lt;/math&amp;gt; or &amp;lt;math&amp;gt;6\pi&amp;lt;/math&amp;gt;? In fact it can.  Because the graph of sin(x) repeats itself every &amp;lt;math&amp;gt;2\pi&amp;lt;/math&amp;gt; units, the period of the function is actually &amp;lt;math&amp;gt;2\pi n&amp;lt;/math&amp;gt; where n is any whole number from zero to &amp;lt;math&amp;gt;\infty&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Frequency and Angular Frequency===&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Frequency&#039;&#039;&#039; is the number of periods per second and is defined mathematically as&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;f = \frac{1}{T}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The standard unit of measurement for frequency is Hz (Hertz). 1 Hz = 1 cycle/second&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Angular Frequency&#039;&#039;&#039; is defined as&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\omega = 2\pi f = \frac{2\pi}{T}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The standard unit of measurement for angular frequency is in radians/second.&lt;br /&gt;
&lt;br /&gt;
===Fundamental Period, Frequency, and Angular Frequency===&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;fundamental period&#039;&#039;&#039; is the smallest positive real number &amp;lt;math&amp;gt;T_0&amp;lt;/math&amp;gt; for which the periodic equation &amp;lt;math&amp;gt;f(t+T) = f(t)&amp;lt;/math&amp;gt; holds true.&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;fundamental frequency&#039;&#039;&#039; is defined as &amp;lt;math&amp;gt;f_0 = \frac{1}{T_0}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;fundamental angular frequency&#039;&#039;&#039; is defined as &amp;lt;math&amp;gt;\omega_0 = 2\pi f_0 = \frac{2\pi}{T_0}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Author==&lt;br /&gt;
Andrew Roth&lt;br /&gt;
&lt;br /&gt;
==Reviewers==&lt;br /&gt;
Brandon Vazquez&lt;br /&gt;
&lt;br /&gt;
Ben Blackley&lt;br /&gt;
&lt;br /&gt;
==Readers==&lt;br /&gt;
Thomas Wooley&lt;br /&gt;
&lt;br /&gt;
Jaymin Joseph&lt;br /&gt;
&lt;br /&gt;
John Hawkins&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Chapter_22--Fourier_Series:_Fundamental_Period,_Frequency,_and_Angular_Frequency&amp;diff=8427</id>
		<title>Chapter 22--Fourier Series: Fundamental Period, Frequency, and Angular Frequency</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Chapter_22--Fourier_Series:_Fundamental_Period,_Frequency,_and_Angular_Frequency&amp;diff=8427"/>
		<updated>2010-01-20T10:30:02Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;22 lines (currently)&lt;br /&gt;
&lt;br /&gt;
1 reference&lt;br /&gt;
&lt;br /&gt;
1 figure&lt;br /&gt;
&lt;br /&gt;
123 points&lt;br /&gt;
&lt;br /&gt;
==Period, Frequency, and Angular Frequency==&lt;br /&gt;
[[Image:Sinewave.png|450px|thumb|right|Picture of a Sine Wave where f(x)=sin(x)&amp;lt;ref&amp;gt;http://en.wikipedia.org/wiki/File:Sine.svg&amp;lt;/ref&amp;gt;]]&lt;br /&gt;
&lt;br /&gt;
===Period===&lt;br /&gt;
&lt;br /&gt;
Long long ago, in a high school class called trigonometry, we leaned about &#039;&#039;&#039;periodic functions&#039;&#039;&#039;.  A periodic function is a function that repeats itself over and over for infinity.  The &#039;&#039;&#039;period&#039;&#039;&#039; of the function is the distance of one iteration that is infinitely repeating.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;A signal &amp;lt;math&amp;gt;f(t)&amp;lt;/math&amp;gt; is periodic if, for some &amp;lt;math&amp;gt;T &amp;gt; 0&amp;lt;/math&amp;gt; and all &#039;&#039;t&#039;&#039;,&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;math&amp;gt;f(t+T) = f(t)&amp;lt;/math&amp;gt;&amp;lt;ref&amp;gt;DeCarlo/Lin, Linear Circuit Analysis--Time Domain, Phasor, and Laplace Transform Approaches, Second Edition.  Figure 22.1&amp;lt;/ref&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Where T is the period&lt;br /&gt;
&lt;br /&gt;
The picture to the right shows the plot of the standard sine function whose period is &amp;lt;math&amp;gt;2\pi&amp;lt;/math&amp;gt;.  What the plot does not show is that the line keeps extending and repeating the bumps and valleys over the whole x axis, or &amp;lt;math&amp;gt;(-\infty,\infty)&amp;lt;/math&amp;gt;.  But wait! Can&#039;t the period also be &amp;lt;math&amp;gt;4\pi&amp;lt;/math&amp;gt; or &amp;lt;math&amp;gt;6\pi&amp;lt;/math&amp;gt;? In fact it can.  Because the graph of sin(x) repeats itself every &amp;lt;math&amp;gt;2\pi&amp;lt;/math&amp;gt; units, the period of the function is actually &amp;lt;math&amp;gt;2\pi n&amp;lt;/math&amp;gt; where n is any whole number from zero to &amp;lt;math&amp;gt;\infty&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Frequency and Angular Frequency===&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Frequency&#039;&#039;&#039; is the number of periods per second and is defined mathematically as&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;f = \frac{1}{T}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The standard unit of measurement for frequency is Hz (Hertz). 1 Hz = 1 cycle/second&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Angular Frequency&#039;&#039;&#039; is defined as&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\omega = 2\pi f = \frac{2\pi}{T}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The standard unit of measurement for angular frequency is in radians/second.&lt;br /&gt;
&lt;br /&gt;
===Fundamental Period, Frequency, and Angular Frequency===&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;fundamental period&#039;&#039;&#039; is the smallest positive real number &amp;lt;math&amp;gt;T_0&amp;lt;/math&amp;gt; for which the periodic equation &amp;lt;math&amp;gt;f(t+T) = f(t)&amp;lt;/math&amp;gt; holds true.&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;fundamental frequency&#039;&#039;&#039; is defined as &amp;lt;math&amp;gt;f_0 = \frac{1}{T_0}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;fundamental angular frequency&#039;&#039;&#039; is defined as &amp;lt;math&amp;gt;\omega_0 = 2\pi f_0 = \frac{2\pi}{T_0}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Author==&lt;br /&gt;
Andrew Roth&lt;br /&gt;
&lt;br /&gt;
==Reviewers==&lt;br /&gt;
Brandon Vazquez&lt;br /&gt;
&lt;br /&gt;
Ben Blackley&lt;br /&gt;
&lt;br /&gt;
==Readers==&lt;br /&gt;
Thomas Wooley&lt;br /&gt;
&lt;br /&gt;
Jaymin Joseph&lt;br /&gt;
John Hawkins&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Exercise:_Sawtooth_Redone_With_Exponential_Basis_Functions&amp;diff=8400</id>
		<title>Exercise: Sawtooth Redone With Exponential Basis Functions</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Exercise:_Sawtooth_Redone_With_Exponential_Basis_Functions&amp;diff=8400"/>
		<updated>2010-01-20T04:48:48Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: Finished with primary content.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Author==&lt;br /&gt;
&lt;br /&gt;
John Hawkins&lt;br /&gt;
&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
Find the Fourier Tranform with exponential basis functions of the sawtooth wave given by the equation&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;math&amp;gt;x(t)=t-\lfloor t \rfloor&amp;lt;/math&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note that this is the same function solved in [[Exercise: Sawtooth Wave Fourier Transform]], but solved differently to compare the two methods.&lt;br /&gt;
==Solution==&lt;br /&gt;
The goal of this method is to find the coefficients &amp;lt;math&amp;gt;a_n&amp;lt;/math&amp;gt; such that&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;math&amp;gt;x(t)=\sum_{n=-\infty}^\infty a_n e^{j2\pi nt/T}&amp;lt;/math&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In class we showed not only that this was possible, but also that&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;math&amp;gt;a_n=\frac{1}{T}\int_c^{c+T}x(t) e^{-j2\pi nt/T}dt&amp;lt;/math&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Noting that our period for this function is &amp;lt;math&amp;gt;T=1&amp;lt;/math&amp;gt; and that an obvious choice for &amp;lt;math&amp;gt;c&amp;lt;/math&amp;gt; is zero, we proceed:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;a_n=\frac{1}{1}\int_0^1te^{-j2\pi nt/1}dt&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For &amp;lt;math&amp;gt;n\neq 0&amp;lt;/math&amp;gt;, the above integral is solved easiest using integration by parts. When &amp;lt;math&amp;gt;\ n=0&amp;lt;/math&amp;gt;,however, IBP does not work, so the case when &amp;lt;math&amp;gt;\ n=0&amp;lt;/math&amp;gt; needs to be considered separately.  In this case,&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;math&amp;gt;a_0=\int_0^1t\ dt=\frac{1}{2}&amp;lt;/math&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For &amp;lt;math&amp;gt;n\neq 0&amp;lt;/math&amp;gt;, we continue with IBP, letting&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u=t\quad\Rightarrow\quad du=dt&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;dv=e^{-j2\pi nt}dt \quad\Rightarrow\quad v=\frac{1}{-j2\pi n}e^{-j2\pi nt}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
This gives&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;a_n=t\left(\frac{1}{-j2\pi n}\right)e^{-j2\pi nt}\Bigg|_0^1-\int_0^1\left(\frac{1}{-j2\pi n}\right)e^{-j2\pi nt}dt&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;=\left[\frac{1}{-j2\pi n}e^{-j2\pi n}-0\right]-\left(\frac{1}{-j2\pi n}\right)^2e^{-j2\pi nt}\Bigg|_0^1&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;=\frac{1}{-j2\pi n}e^{-j2\pi n}-\left(\frac{1}{-j2\pi n}\right)^2\left(e^{-j2\pi n}-1\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
But&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\ e^{-j2\pi n}=\cos(-2\pi n)+j\sin(-2\pi n) = 1+j0=1&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
So&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;a_n=\frac{1}{-j2\pi n}(1)-\left(\frac{1}{-j2\pi n}\right)^2(1-1)=\frac{1}{-j2\pi n}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Therefore,&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;math&amp;gt;x(t)=\frac{1}{2}-\sum_{n=\pm 1}^{\pm \infty}\frac{1}{j2\pi n}e^{j2\pi nt}&amp;lt;/math&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
==Solution Graphs==&lt;br /&gt;
I modified the Matlab code used in the [[Exercise: Sawtooth Wave Fourier Transform]] to generate the solution graphs using the equation found above instead of the previously found solution.  This code can be found here: [[Sawtooth2 Matlab Code]].  It generates the following analagous three graphs, which as hoped appear exactly identical to those found using the other method.  Note that the &amp;quot;terms&amp;quot; mentioned in the titles of the graphs should now be interpreted as the sum of the &amp;lt;math&amp;gt;n&amp;lt;/math&amp;gt;th and &amp;lt;math&amp;gt;-n&amp;lt;/math&amp;gt;th terms.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Sawtooth2_First_100_Terms.jpg|thumb|800px|center]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Sawtooth2_First_n_Terms.jpg|thumb|800px|center]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Sawtooth2_Error.jpg|thumb|800px|center]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Analytical Comparison of Two Solutions==&lt;br /&gt;
To convince myself that the two solutions are actually the same, I performed the following analysis.  Let &amp;lt;math&amp;gt;t_n&amp;lt;/math&amp;gt; be the nth term of the solution found on this page.  Then for &amp;lt;math&amp;gt;n\neq 0&amp;lt;/math&amp;gt;,&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;t_n+t_{-n}=\frac{1}{-j2\pi n}e^{j2\pi nt}+\frac{1}{-j2\pi (-n)}e^{j2\pi (-n)t}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;=\frac{1}{-j2\pi n} (\cos 2\pi nt+j\sin 2\pi nt)-\frac{1}{-j2\pi n}\left(\cos(-2\pi nt)+j\sin(-2\pi nt)\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;=\frac{1}{-j2\pi n}\left(\cos 2\pi nt+j\sin 2\pi nt-\cos 2\pi nt+j\sin 2\pi nt \right)&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;=\frac{1}{-j2\pi n}\left(2j\sin 2\pi nt\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;=-\frac{1}{\pi n}\sin 2\pi nt&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Therefore,&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;math&amp;gt;x(t)=\frac{1}{2}-\sum_{n=\pm 1}^{\pm \infty}\frac{1}{j2\pi n}e^{j2\pi nt}=\frac{1}{2}-\sum_{n=1}^\infty\frac{1}{\pi n}\sin 2\pi nt&amp;lt;/math&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As we had hoped and expected.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Reviewed By==&lt;br /&gt;
==Read By==&lt;br /&gt;
==Comments==&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Exercise:_Sawtooth_Redone_With_Exponential_Basis_Functions&amp;diff=8385</id>
		<title>Exercise: Sawtooth Redone With Exponential Basis Functions</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Exercise:_Sawtooth_Redone_With_Exponential_Basis_Functions&amp;diff=8385"/>
		<updated>2010-01-20T01:01:03Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Author==&lt;br /&gt;
&lt;br /&gt;
John Hawkins&lt;br /&gt;
&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
Find the Fourier Tranform with exponential basis functions of the sawtooth wave given by the equation&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;math&amp;gt;x(t)=t-\lfloor t \rfloor&amp;lt;/math&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note that this is the same function solved in [[Exercise: Sawtooth Wave Fourier Transform]], but solved differently to compare the two methods.&lt;br /&gt;
==Solution==&lt;br /&gt;
The goal of this method is to find the coefficients &amp;lt;math&amp;gt;a_n&amp;lt;/math&amp;gt; such that&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;math&amp;gt;x(t)=\sum_{n=-\infty}^\infty a_n e^{j2\pi nt/T}&amp;lt;/math&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In class we showed not only that this was possible, but also that&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;math&amp;gt;a_n=\frac{1}{T}\int_c^{c+T}x(t) e^{-j2\pi nt/T}dt&amp;lt;/math&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Noting again that our period for this function is &amp;lt;math&amp;gt;T=1&amp;lt;/math&amp;gt; and that an obvious choice for &amp;lt;math&amp;gt;c&amp;lt;/math&amp;gt; is zero, we proceed:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;a_n=\frac{1}{1}\int_0^1te^{-j2\pi nt/1}dt&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Again, the case when &amp;lt;math&amp;gt;\ n=0&amp;lt;/math&amp;gt; needs to be considered separately.  In this case,&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;math&amp;gt;a_0=\int_0^1t\ dt=\frac{1}{2}&amp;lt;/math&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For &amp;lt;math&amp;gt;n\neq 0&amp;lt;/math&amp;gt;, the above integral is solved easiest using integration by parts. So letting&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u=t\quad\Rightarrow\quad du=dt&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;dv=e^{-j2\pi nt}dt \quad\Rightarrow\quad v=\frac{1}{-j2\pi n}e^{-j2\pi nt}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
we have&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;a_n=t\left(\frac{1}{-j2\pi n}\right)e^{-j2\pi nt}\Bigg|_0^1-\int_0^1\left(\frac{1}{-j2\pi n}\right)e^{-j2\pi nt}dt&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;=\left[\frac{1}{-j2\pi n}e^{-j2\pi n}-0\right]-\left(\frac{1}{-j2\pi n}\right)^2e^{-j2\pi nt}\Bigg|_0^1&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;=\frac{1}{-j2\pi n}e^{-j2\pi n}-\left(\frac{1}{-j2\pi n}\right)^2\left(e^{-j2\pi n}-1\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
But&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\ e^{-j2\pi n}=\cos(-2\pi n)+j\sin(-2\pi n) = 1+j0=1&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
So&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;a_n=\frac{1}{-j2\pi n}(1)-\left(\frac{1}{-j2\pi n}\right)^2(1-1)=\frac{1}{-j2\pi n}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Therefore,&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;math&amp;gt;x(t)=\frac{1}{2}-\sum_{n=\pm 1}^{\pm \infty}\frac{1}{j2\pi n}e^{j2\pi nt}&amp;lt;/math&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
==Solution Graphs==&lt;br /&gt;
I modified the Matlab code used in the [[Exercise: Sawtooth Wave Fourier Transform]] to generate the solution graphs using the equation found above instead of the previously found solution.  This code can be found here: [[Sawtooth2 Matlab Code]].  It generates the following analagous three graphs, which as hoped appear exactly identical to those found using the other method.  Note that the &amp;quot;terms&amp;quot; mentioned in the titles of the graphs should now be interpreted as the sum of the nth and -nth terms.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Sawtooth2_First_100_Terms.jpg|thumb|800px|center]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Sawtooth2_First_n_Terms.jpg|thumb|800px|center]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Sawtooth2_Error.jpg|thumb|800px|center]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Analytical Comparison of Two Solutions==&lt;br /&gt;
To convince myself that the two solutions are actually the same, I performed the following analysis.  Let &amp;lt;math&amp;gt;t_n&amp;lt;/math&amp;gt; be the nth term of the solution found on this page.  Then for &amp;lt;math&amp;gt;n\neq 0&amp;lt;/math&amp;gt;,&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;t_n+t_{-n}=\frac{1}{-j2\pi n}e^{j2\pi nt}+\frac{1}{-j2\pi (-n)}e^{j2\pi (-n)t}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;=\frac{1}{-j2\pi n} (\cos 2\pi nt+j\sin 2\pi nt)-\frac{1}{-j2\i n}\left(\cos(-2\pi nt)+j\sin(-2\pi nt)\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;=\frac{1}{-j2\pi n}\left(\cos 2\pi nt+j\sin 2\pi nt-\cos 2\pi nt+j\sin 2\pi nt \right)&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;=\frac{1}{-j2\pi n}\left(2j\sin 2\pi nt\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;=-\frac{1}{\pi n}\sin 2\pi nt&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Sawtooth2_Matlab_Code&amp;diff=8381</id>
		<title>Sawtooth2 Matlab Code</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Sawtooth2_Matlab_Code&amp;diff=8381"/>
		<updated>2010-01-20T00:49:12Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;source lang=&amp;quot;matlab&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
%                                                                           &lt;br /&gt;
%  _-_,,       ,,                _-_-                   ,,                  &lt;br /&gt;
% (  //        ||                  /,        _   ;      ||    &#039;             &lt;br /&gt;
%   _||   /&#039;\\ ||/\\ \\/\\         || __    &amp;lt; \, \\/\/\ ||/\ \\ \\/\\  _-_, &lt;br /&gt;
%   _||  || || || || || ||        ~||-  -   /-|| || | | ||_&amp;lt; || || || ||_.  &lt;br /&gt;
%    ||  || || || || || ||         ||===|| (( || || | | || | || || ||  ~ || &lt;br /&gt;
% -__-,  \\,/  \\ |/ \\ \\        ( \_, |   \/\\ \\/\\/ \\,\ \\ \\ \\ ,-_-  &lt;br /&gt;
%                _/                     `                                   &lt;br /&gt;
%  &lt;br /&gt;
% John Hawkins&lt;br /&gt;
% LNA&lt;br /&gt;
% Sawtooth Wave Fourier Example&lt;br /&gt;
% 12 Jan 2010&lt;br /&gt;
&lt;br /&gt;
t=linspace(-1,1,1000);&lt;br /&gt;
&lt;br /&gt;
x=t-floor(t);&lt;br /&gt;
&lt;br /&gt;
figure&lt;br /&gt;
&lt;br /&gt;
plot(t,x,&#039;k&#039;)&lt;br /&gt;
&lt;br /&gt;
hold on;&lt;br /&gt;
&lt;br /&gt;
f=1/2*ones(1,numel(t));&lt;br /&gt;
&lt;br /&gt;
for n=1:100&lt;br /&gt;
&lt;br /&gt;
    Plus=j/(2*pi*n)*exp(j*2*pi*n*t);&lt;br /&gt;
&lt;br /&gt;
    Minus=j/(2*pi*-n)*exp(j*2*pi*-n*t);&lt;br /&gt;
&lt;br /&gt;
    f=f+Plus+Minus;&lt;br /&gt;
&lt;br /&gt;
    &lt;br /&gt;
&lt;br /&gt;
    plot(t,Plus+Minus+1/2);&lt;br /&gt;
&lt;br /&gt;
    &lt;br /&gt;
&lt;br /&gt;
    switch n&lt;br /&gt;
&lt;br /&gt;
        case 1&lt;br /&gt;
&lt;br /&gt;
            f1=f;&lt;br /&gt;
&lt;br /&gt;
        case 3&lt;br /&gt;
&lt;br /&gt;
            f3=f;&lt;br /&gt;
&lt;br /&gt;
        case 5&lt;br /&gt;
&lt;br /&gt;
            f5=f;&lt;br /&gt;
&lt;br /&gt;
        case 10&lt;br /&gt;
&lt;br /&gt;
            f10=f;&lt;br /&gt;
&lt;br /&gt;
        case 50&lt;br /&gt;
&lt;br /&gt;
            f50=f;&lt;br /&gt;
&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
plot(t,f,&#039;r&#039;);&lt;br /&gt;
&lt;br /&gt;
axis equal;&lt;br /&gt;
&lt;br /&gt;
fontsize=20;&lt;br /&gt;
&lt;br /&gt;
title({[&#039;Sawtooth Wave Constructed of First 100 Terms&#039;],...&lt;br /&gt;
&lt;br /&gt;
    [&#039;of Fourier Series, Each Term Shown&#039;]},...&lt;br /&gt;
&lt;br /&gt;
    &#039;fontname&#039;,&#039;times&#039;,&#039;fontsize&#039;,fontsize)&lt;br /&gt;
&lt;br /&gt;
xlabel(&#039;t&#039;); ylabel(&#039;x&#039;);&lt;br /&gt;
&lt;br /&gt;
figure&lt;br /&gt;
&lt;br /&gt;
plot(t,f-x)&lt;br /&gt;
&lt;br /&gt;
title(&#039;Error when x(t) is Truncated after 100 Terms&#039;,...&lt;br /&gt;
&lt;br /&gt;
    &#039;fontname&#039;,&#039;times&#039;,&#039;fontsize&#039;,fontsize)&lt;br /&gt;
&lt;br /&gt;
xlabel(&#039;Error&#039;); ylabel(&#039;t&#039;);&lt;br /&gt;
&lt;br /&gt;
figure&lt;br /&gt;
&lt;br /&gt;
plot(t,f1,t,f3,t,f5,t,f10,t,f50,t,f)&lt;br /&gt;
&lt;br /&gt;
axis equal&lt;br /&gt;
&lt;br /&gt;
title(&#039;Sawtooth Wave Constructed of First n Terms&#039;,...&lt;br /&gt;
&lt;br /&gt;
    &#039;fontname&#039;,&#039;times&#039;,&#039;fontsize&#039;,fontsize);&lt;br /&gt;
&lt;br /&gt;
xlabel(&#039;t&#039;); ylabel(&#039;x&#039;);&lt;br /&gt;
&lt;br /&gt;
legend(&#039;n=1&#039;,&#039;3&#039;,&#039;5&#039;,&#039;10&#039;,&#039;50&#039;,&#039;100&#039;,&#039;location&#039;,&#039;northwest&#039;);&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Sawtooth2_Matlab_Code&amp;diff=8380</id>
		<title>Sawtooth2 Matlab Code</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Sawtooth2_Matlab_Code&amp;diff=8380"/>
		<updated>2010-01-20T00:48:31Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: New page: &amp;lt;source lang=&amp;quot;matlab&amp;quot;&amp;gt;  %                                                                             %  _-_,,       ,,                _-_-                   ,,                    % (  // ...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;source lang=&amp;quot;matlab&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
%                                                                           &lt;br /&gt;
&lt;br /&gt;
%  _-_,,       ,,                _-_-                   ,,                  &lt;br /&gt;
&lt;br /&gt;
% (  //        ||                  /,        _   ;      ||    &#039;             &lt;br /&gt;
&lt;br /&gt;
%   _||   /&#039;\\ ||/\\ \\/\\         || __    &amp;lt; \, \\/\/\ ||/\ \\ \\/\\  _-_, &lt;br /&gt;
&lt;br /&gt;
%   _||  || || || || || ||        ~||-  -   /-|| || | | ||_&amp;lt; || || || ||_.  &lt;br /&gt;
&lt;br /&gt;
%    ||  || || || || || ||         ||===|| (( || || | | || | || || ||  ~ || &lt;br /&gt;
&lt;br /&gt;
% -__-,  \\,/  \\ |/ \\ \\        ( \_, |   \/\\ \\/\\/ \\,\ \\ \\ \\ ,-_-  &lt;br /&gt;
&lt;br /&gt;
%                _/                     `                                   &lt;br /&gt;
&lt;br /&gt;
%  &lt;br /&gt;
&lt;br /&gt;
% John Hawkins&lt;br /&gt;
&lt;br /&gt;
% LNA&lt;br /&gt;
&lt;br /&gt;
% Sawtooth Wave Fourier Example&lt;br /&gt;
&lt;br /&gt;
% 12 Jan 2010&lt;br /&gt;
&lt;br /&gt;
t=linspace(-1,1,1000);&lt;br /&gt;
&lt;br /&gt;
x=t-floor(t);&lt;br /&gt;
&lt;br /&gt;
figure&lt;br /&gt;
&lt;br /&gt;
plot(t,x,&#039;k&#039;)&lt;br /&gt;
&lt;br /&gt;
hold on;&lt;br /&gt;
&lt;br /&gt;
f=1/2*ones(1,numel(t));&lt;br /&gt;
&lt;br /&gt;
for n=1:100&lt;br /&gt;
&lt;br /&gt;
    Plus=j/(2*pi*n)*exp(j*2*pi*n*t);&lt;br /&gt;
&lt;br /&gt;
    Minus=j/(2*pi*-n)*exp(j*2*pi*-n*t);&lt;br /&gt;
&lt;br /&gt;
    f=f+Plus+Minus;&lt;br /&gt;
&lt;br /&gt;
    &lt;br /&gt;
&lt;br /&gt;
    plot(t,Plus+Minus+1/2);&lt;br /&gt;
&lt;br /&gt;
    &lt;br /&gt;
&lt;br /&gt;
    switch n&lt;br /&gt;
&lt;br /&gt;
        case 1&lt;br /&gt;
&lt;br /&gt;
            f1=f;&lt;br /&gt;
&lt;br /&gt;
        case 3&lt;br /&gt;
&lt;br /&gt;
            f3=f;&lt;br /&gt;
&lt;br /&gt;
        case 5&lt;br /&gt;
&lt;br /&gt;
            f5=f;&lt;br /&gt;
&lt;br /&gt;
        case 10&lt;br /&gt;
&lt;br /&gt;
            f10=f;&lt;br /&gt;
&lt;br /&gt;
        case 50&lt;br /&gt;
&lt;br /&gt;
            f50=f;&lt;br /&gt;
&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
plot(t,f,&#039;r&#039;);&lt;br /&gt;
&lt;br /&gt;
axis equal;&lt;br /&gt;
&lt;br /&gt;
fontsize=20;&lt;br /&gt;
&lt;br /&gt;
title({[&#039;Sawtooth Wave Constructed of First 100 Terms&#039;],...&lt;br /&gt;
&lt;br /&gt;
    [&#039;of Fourier Series, Each Term Shown&#039;]},...&lt;br /&gt;
&lt;br /&gt;
    &#039;fontname&#039;,&#039;times&#039;,&#039;fontsize&#039;,fontsize)&lt;br /&gt;
&lt;br /&gt;
xlabel(&#039;t&#039;); ylabel(&#039;x&#039;);&lt;br /&gt;
&lt;br /&gt;
figure&lt;br /&gt;
&lt;br /&gt;
plot(t,f-x)&lt;br /&gt;
&lt;br /&gt;
title(&#039;Error when x(t) is Truncated after 100 Terms&#039;,...&lt;br /&gt;
&lt;br /&gt;
    &#039;fontname&#039;,&#039;times&#039;,&#039;fontsize&#039;,fontsize)&lt;br /&gt;
&lt;br /&gt;
xlabel(&#039;Error&#039;); ylabel(&#039;t&#039;);&lt;br /&gt;
&lt;br /&gt;
figure&lt;br /&gt;
&lt;br /&gt;
plot(t,f1,t,f3,t,f5,t,f10,t,f50,t,f)&lt;br /&gt;
&lt;br /&gt;
axis equal&lt;br /&gt;
&lt;br /&gt;
title(&#039;Sawtooth Wave Constructed of First n Terms&#039;,...&lt;br /&gt;
&lt;br /&gt;
    &#039;fontname&#039;,&#039;times&#039;,&#039;fontsize&#039;,fontsize);&lt;br /&gt;
&lt;br /&gt;
xlabel(&#039;t&#039;); ylabel(&#039;x&#039;);&lt;br /&gt;
&lt;br /&gt;
legend(&#039;n=1&#039;,&#039;3&#039;,&#039;5&#039;,&#039;10&#039;,&#039;50&#039;,&#039;100&#039;,&#039;location&#039;,&#039;northwest&#039;);&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Exercise:_Sawtooth_Redone_With_Exponential_Basis_Functions&amp;diff=8378</id>
		<title>Exercise: Sawtooth Redone With Exponential Basis Functions</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Exercise:_Sawtooth_Redone_With_Exponential_Basis_Functions&amp;diff=8378"/>
		<updated>2010-01-20T00:45:42Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: Intermediate progress&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Author==&lt;br /&gt;
&lt;br /&gt;
John Hawkins&lt;br /&gt;
&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
Find the Fourier Tranform with exponential basis functions of the sawtooth wave given by the equation&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;math&amp;gt;x(t)=t-\lfloor t \rfloor&amp;lt;/math&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note that this is the same function solved in [[Exercise: Sawtooth Wave Fourier Transform]], but solved differently to compare the two methods.&lt;br /&gt;
==Solution==&lt;br /&gt;
The goal of this method is to find the coefficients &amp;lt;math&amp;gt;a_n&amp;lt;/math&amp;gt; such that&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;math&amp;gt;x(t)=\sum_{n=-\infty}^\infty a_n e^{j2\pi nt/T}&amp;lt;/math&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In class we showed not only that this was possible, but also that&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;math&amp;gt;a_n=\frac{1}{T}\int_c^{c+T}x(t) e^{-j2\pi nt/T}dt&amp;lt;/math&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Noting again that our period for this function is &amp;lt;math&amp;gt;T=1&amp;lt;/math&amp;gt; and that an obvious choice for &amp;lt;math&amp;gt;c&amp;lt;/math&amp;gt; is zero, we proceed:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;a_n=\frac{1}{1}\int_0^1te^{-j2\pi nt/1}dt&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Again, the case when &amp;lt;math&amp;gt;\ n=0&amp;lt;/math&amp;gt; needs to be considered separately.  In this case,&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;math&amp;gt;a_0=\int_0^1t\ dt=\frac{1}{2}&amp;lt;/math&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For &amp;lt;math&amp;gt;n\neq 0&amp;lt;/math&amp;gt;, the above integral is solved easiest using integration by parts. So letting&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u=t\quad\Rightarrow\quad du=dt&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;dv=e^{-j2\pi nt}dt \quad\Rightarrow\quad v=\frac{1}{-j2\pi n}e^{-j2\pi nt}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
we have&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;a_n=t\left(\frac{1}{-j2\pi n}\right)e^{-j2\pi nt}\Bigg|_0^1-\int_0^1\left(\frac{1}{-j2\pi n}\right)e^{-j2\pi nt}dt&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;=\left[\frac{1}{-j2\pi n}e^{-j2\pi n}-0\right]-\left(\frac{1}{-j2\pi n}\right)^2e^{-j2\pi nt}\Bigg|_0^1&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;=\frac{1}{-j2\pi n}e^{-j2\pi n}-\left(\frac{1}{-j2\pi n}\right)^2\left(e^{-j2\pi n}-1\right)&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
But&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\ e^{-j2\pi n}=\cos(-2\pi n)+j\sin(-2\pi n) = 1+j0=1&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
So&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;a_n=\frac{1}{-j2\pi n}(1)-\left(\frac{1}{-j2\pi n}\right)^2(1-1)=\frac{1}{-j2\pi n}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Therefore,&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;math&amp;gt;x(t)=\frac{1}{2}-\sum_{n=\pm 1}^{\pm \infty}\frac{1}{j2\pi n}e^{j2\pi nt}&amp;lt;/math&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
==Solution Graphs==&lt;br /&gt;
I modified the Matlab code used in the [[Exercise: Sawtooth Wave Fourier Transform]] to generate the solution graphs using the equation found above instead of the previously found solution.  This code can be found here: [[Sawtooth2 Matlab Code]].  It generates the following analagous three graphs, which as hoped appear exactly identical to those found using the other method.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Sawtooth2_First_100_Terms.jpg|thumb|800px|center]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Sawtooth2_First_n_Terms.jpg|thumb|800px|center]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Sawtooth2_Error.jpg|thumb|800px|center]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=File:Sawtooth2_Error.jpg&amp;diff=8377</id>
		<title>File:Sawtooth2 Error.jpg</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=File:Sawtooth2_Error.jpg&amp;diff=8377"/>
		<updated>2010-01-20T00:41:18Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=File:Sawtooth2_First_n_Terms.jpg&amp;diff=8376</id>
		<title>File:Sawtooth2 First n Terms.jpg</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=File:Sawtooth2_First_n_Terms.jpg&amp;diff=8376"/>
		<updated>2010-01-20T00:40:59Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=File:Sawtooth2_First_100_Terms.jpg&amp;diff=8375</id>
		<title>File:Sawtooth2 First 100 Terms.jpg</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=File:Sawtooth2_First_100_Terms.jpg&amp;diff=8375"/>
		<updated>2010-01-20T00:39:12Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Exercise:_Sawtooth_Redone_With_Exponential_Basis_Functions&amp;diff=8374</id>
		<title>Exercise: Sawtooth Redone With Exponential Basis Functions</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Exercise:_Sawtooth_Redone_With_Exponential_Basis_Functions&amp;diff=8374"/>
		<updated>2010-01-20T00:17:54Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: First bit of work&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Author==&lt;br /&gt;
&lt;br /&gt;
John Hawkins&lt;br /&gt;
&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
Find the Fourier Tranform with exponential basis functions of the sawtooth wave given by the equation&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;math&amp;gt;x(t)=t-\lfloor t \rfloor&amp;lt;/math&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note that this is the same function solved in [[Exercise: Sawtooth Wave Fourier Transform]], but solved differently to compare the two methods.&lt;br /&gt;
==Solution==&lt;br /&gt;
The goal of this method is to find the coefficients &amp;lt;math&amp;gt;a_n&amp;lt;/math&amp;gt; such that&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;math&amp;gt;x(t)=\sum_{-\infty}^\infty a_n e^{j2\pi nt/T}&amp;lt;/math&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In class we showed not only that this was possible, but also that&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;math&amp;gt;a_n=\frac{1}{T}\int_c^{c+T}x(t) e^{-j2\pi nt/T}dt&amp;lt;/math&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Noting again that our period for this function is &amp;lt;math&amp;gt;\ T=1&amp;lt;/math&amp;gt;, we proceed:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;a_n=\frac{1}{1}\int_0^1te^{-j2\pi nt/1}dt&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Again, the case when &amp;lt;math&amp;gt;\ n=0&amp;lt;/math&amp;gt; needs to be considered separately.  In this case,&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;math&amp;gt;a_0=\int_0^1t\ dt=\frac{1}{2}&amp;lt;/math&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For &amp;lt;math&amp;gt;n\neq 0&amp;lt;/math&amp;gt;, the above integral is solved easiest using integration by parts. So letting&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;u=t\quad\Rightarrow\quad du=dt&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;dv=e^{-j2\pi nt}dt \quad\Rightarrow\quad v=\frac{1}{-j2\pi n}e^{-j2\pi nt}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
we have&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;a_n=t\left(\frac{1}{-j2\pi n}\right)e^{-j2\pi nt}\Bigg|_0^1-\int_0^1\left(\frac{1}{-j2\pi n}\right)e^{-j2\pi nt}dt&amp;lt;/math&amp;gt;&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Exercise:_Sawtooth_Redone_With_Exponential_Basis_Functions&amp;diff=8368</id>
		<title>Exercise: Sawtooth Redone With Exponential Basis Functions</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Exercise:_Sawtooth_Redone_With_Exponential_Basis_Functions&amp;diff=8368"/>
		<updated>2010-01-19T23:57:19Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: New page:   ==Problem Statement==  Find the Fourier Tranform with exponential basis functions of the sawtooth wave given by the equation  &amp;lt;br /&amp;gt;  &amp;lt;center&amp;gt;&amp;lt;math&amp;gt;x(t)=t-\lfloor t \rfloor&amp;lt;/math&amp;gt;&amp;lt;/cente...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
Find the Fourier Tranform with exponential basis functions of the sawtooth wave given by the equation&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;math&amp;gt;x(t)=t-\lfloor t \rfloor&amp;lt;/math&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Winter_2010&amp;diff=8366</id>
		<title>Winter 2010</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Winter_2010&amp;diff=8366"/>
		<updated>2010-01-19T23:54:33Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Put links for your reports here.  Someone feel free to edit this better. &lt;br /&gt;
&lt;br /&gt;
Links to the posted reports are found under the publishing author&#039;s name. (Like it says above, if you hate it...change it! I promise I won’t cry.    Brandon)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1. [[Biesenthal, Dan]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. [[Blackley, Ben]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. [[Cruz, Jorge]]&lt;br /&gt;
         &amp;lt;math&amp;gt;\Rightarrow&amp;lt;/math&amp;gt;    [[Fourier Example]]&lt;br /&gt;
&lt;br /&gt;
      &lt;br /&gt;
&lt;br /&gt;
4. [[Fullerton, Colby]]&lt;br /&gt;
         &amp;lt;math&amp;gt;\Rightarrow&amp;lt;/math&amp;gt;    [[Laplace Transform]]&lt;br /&gt;
         &amp;lt;math&amp;gt;\Rightarrow&amp;lt;/math&amp;gt;    [[Class Notes 1-5-2010]]&lt;br /&gt;
&lt;br /&gt;
5. [[Grant, Joshua]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
6. [[Gratias, Ryan]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
7. [[Hawkins, John]]&lt;br /&gt;
&lt;br /&gt;
         &amp;lt;math&amp;gt;\Rightarrow&amp;lt;/math&amp;gt;    [[Exercise: Sawtooth Wave Fourier Transform]]&lt;br /&gt;
         &amp;lt;math&amp;gt;\Rightarrow&amp;lt;/math&amp;gt;    [[Exercise: Sawtooth Redone With Exponential Basis Functions]]&lt;br /&gt;
8. [[Lau, Chris]]&lt;br /&gt;
         &amp;lt;math&amp;gt;\Rightarrow&amp;lt;/math&amp;gt;    [[Fourier Series: Explained!]]&lt;br /&gt;
&lt;br /&gt;
9. [[Roath, Brian]]&lt;br /&gt;
         &amp;lt;math&amp;gt;\Rightarrow&amp;lt;/math&amp;gt;    [[Laplace Transform]]&lt;br /&gt;
         &amp;lt;math&amp;gt;\Rightarrow&amp;lt;/math&amp;gt;    [[Class Notes 1-5-2010]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
10. [[Robbins, David]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
11. [[Roth, Andrew]]  &lt;br /&gt;
         &amp;lt;math&amp;gt;\Rightarrow&amp;lt;/math&amp;gt;    [[Example: LaTex format (0 points)]]&lt;br /&gt;
         &amp;lt;math&amp;gt;\Rightarrow&amp;lt;/math&amp;gt;    [[Chapter 22--Fourier Series: Fundamental Period, Frequency, and Angular Frequency]]&lt;br /&gt;
&lt;br /&gt;
12. [[Vazquez, Brandon]]  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
13. [[Vier, Michael]]&lt;br /&gt;
         &amp;lt;math&amp;gt;\Rightarrow&amp;lt;/math&amp;gt;    [[Fourier Series: Explained!]]&lt;br /&gt;
&lt;br /&gt;
14. [[Wooley, Thomas]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
15. [[Jaymin, Joseph]]&lt;br /&gt;
         &amp;lt;math&amp;gt;\Rightarrow&amp;lt;/math&amp;gt;   [[Basic_Laplace_Transforms]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
16. [[Starr, Brielle]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
17. [[Starr, Tyler]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Draft Articles==&lt;br /&gt;
These articles are not ready for reading and error checking. They are listed so people will not simultaneously write about similar topics.&lt;br /&gt;
* [[Gibbs Phenomenon]]&lt;br /&gt;
&lt;br /&gt;
* [[Linear Time Invariant Overview]]&lt;br /&gt;
&lt;br /&gt;
* [[Solving Series RLC Circuit Using Laplace Transforms]]&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Reference_Terms_and_Units&amp;diff=8325</id>
		<title>Reference Terms and Units</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Reference_Terms_and_Units&amp;diff=8325"/>
		<updated>2010-01-19T06:33:45Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article is for the conference on Monday January 11&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Variable&lt;br /&gt;
&lt;br /&gt;
|Description&lt;br /&gt;
&lt;br /&gt;
|Unit variables&lt;br /&gt;
|Units&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|&amp;lt;math&amp;gt;\vec E&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|Electric Field Intensity&lt;br /&gt;
&lt;br /&gt;
|&amp;lt;math&amp;gt; V/m\,\!\text{ or } N/C\,\!&amp;lt;/math&amp;gt;&lt;br /&gt;
|Volts per Meter or Newtons per Coulomb&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|&amp;lt;math&amp;gt;\vec D&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|Electric Flux Density&lt;br /&gt;
&lt;br /&gt;
|&amp;lt;math&amp;gt; C/m^2\,\!&amp;lt;/math&amp;gt;&lt;br /&gt;
|Coulombs per Meter squared&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|&amp;lt;math&amp;gt;\vec H&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|Magnetic Flux Intensity&lt;br /&gt;
&lt;br /&gt;
|&amp;lt;math&amp;gt; A/m \,\!&amp;lt;/math&amp;gt;&lt;br /&gt;
|Amps per Meter&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|&amp;lt;math&amp;gt;\vec B&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|Magnetic Flux Density or Magnetic Induction&lt;br /&gt;
&lt;br /&gt;
|&amp;lt;math&amp;gt; T \,\!\text{ or }Wb/m^2\,\!\text{ or } G \,\!&amp;lt;/math&amp;gt;&lt;br /&gt;
|Tesla or Webers per Meter squared or Gauss&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Relationships&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\vec D=\epsilon \vec E&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*In free space:&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;math&amp;gt;\epsilon_0=\frac{1}{36\pi}\times10^{-9} \ \ F/m&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\vec B=\mu \vec H&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*In free space:&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;math&amp;gt;\mu_0=4\pi\times10^{-7} \ \ H/m&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Reviewed By==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Read By==&lt;br /&gt;
John Hawkins&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Magnetic_Circuit&amp;diff=8269</id>
		<title>Magnetic Circuit</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Magnetic_Circuit&amp;diff=8269"/>
		<updated>2010-01-18T18:55:13Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: Error correction&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Author: John Hawkins=&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
[[Image:Img001.jpg|thumb|500px|right]]&lt;br /&gt;
Problem 2.16 from &#039;&#039;Electric Machinery and Transformers&#039;&#039;, 3rd ed:&lt;br /&gt;
&amp;lt;blockquote&amp;gt;A magnetic circuit is given in Figure P2.16.  What must be the current in the 1600-turn coil to set up a flux density of 0.1 T in the air-gap?  All dimensions are in centimeters.  Assume that magnetic flux density varies as &amp;lt;math&amp;gt;B=[1.5H/(750+H)]&amp;lt;/math&amp;gt;.&amp;lt;ref&amp;gt;Guru and Huseyin, &#039;&#039;Electric Machinery and Transformers&#039;&#039;, 3rd ed. (New York: Oxford University Press, 2001), 129.&amp;lt;/ref&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==Solution==&lt;br /&gt;
&lt;br /&gt;
First, we note that the problem statement is incomplete. Assume that the core has a relative permeability of 500.  Hence, for all magnetic sections excluding the air gap,&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;math&amp;gt;\mu=\mu_r\mu_0=(500)(4\pi\times10^{-7})=6.2832\times10^{-4}&amp;lt;/math&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Also, as recommended in the text, we will neglect fringing.&lt;br /&gt;
&lt;br /&gt;
The lengths and areas of each of the sections to be evaluated are given in the following table.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &#039;&#039;Table 1: Lengths and Areas for the pertinent secions of the magnetic circuit.&#039;&#039;&lt;br /&gt;
! &#039;&#039;&#039;Section&#039;&#039;&#039; !! fg !! def !! ghc !! dc !! dabc &lt;br /&gt;
|-&lt;br /&gt;
| Length &amp;lt;math&amp;gt;l&amp;lt;/math&amp;gt; (m)|| 0.01 || 0.555|| 0.555 || 0.48 || 1.38&lt;br /&gt;
|-&lt;br /&gt;
| Area &amp;lt;math&amp;gt;A&amp;lt;/math&amp;gt; (m&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;) || 0.0032 || 0.0032 || 0.0032 || 0.0096 || 8.0e-4&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
We must now work backward from the air-gap, since the value of the flux-density is given there.  We need only employ the analagous equations to Ohm&#039;s Law, KVL, and KCL.  All units are standard units.  &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Air Gap:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\mathcal{R}_{fg}=\frac{l_{fg}}{\mu A_{fg}} = 4973.6&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\Phi_{fg}=B_{fg}A_{fg}=3.20\times10^{-4}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\mathcal{F}_{fg}=\mathcal{R}_{fg}\Phi_{fg}=1.5915&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Right Arms:&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\Phi_{def}=\Phi_{ghc} = \Phi_{fg} = 3.20\times10^{-4}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\mathcal{R}_{def}=\mathcal{R}_{ghc}=\frac{l_{def}}{\mu A_{def}}=2.7603\times10^5&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\mathcal{F}_{def}=\mathcal{F}_{ghc}=\mathcal{R}_{def}\Phi_{def}=88.331&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Center Column:&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\mathcal{F}_{dc}=\mathcal{F}_{def}+\mathcal{F}_{fg}+\mathcal{F}_{ghc}=178.25&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\mathcal{R}_{dc}=\frac{l_{dc}}{\mu A_{dc}}=79,577&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\Phi_{dc}=\frac{\mathcal{F}_{dc}}{\mathcal{R}_{dc}}=0.0022&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Left Arm:&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\ \Phi_{dabc}=\Phi_{dc}-\Phi_{def}=0.0019&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\mathcal{R}_{dabc}=\frac{l_{dabc}}{\mu A_{dabc}}=2.745\times 10^6&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\mathcal{F}_{dabc}=\mathcal{F}_{dabc}\Phi_{dabc}=5,271.2&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Conclusions:&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\mathcal{F}_{Total}=\mathcal{F}_{dabc}+&lt;br /&gt;
&lt;br /&gt;
\mathcal{F}_{dc}+\mathcal{F}_{def}+\mathcal{F}_{fg}+&lt;br /&gt;
&lt;br /&gt;
\mathcal{F}_{ghc}=5,627.7&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\mathbf{i=\frac{\mathcal{F}_{Total}}{N}=3.52 A}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Which is the quantity we were looking for.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Calculations were performed using the following [[Magnetic Circuit Matlab Script]].&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Reviewed By==&lt;br /&gt;
==Read By==&lt;br /&gt;
&lt;br /&gt;
==Comments from reviewers==&lt;br /&gt;
So I still don&#039;t understand how this works but I figured I would just put my comments here and then you can delete them. -Amy&lt;br /&gt;
* I believe your length for dabc is incorrect and should be 1.38 unless I am understanding it wrong. if so it will prob change a few numbers :(&lt;br /&gt;
* On your first equation with A sub fg, it looks like the g is too big... just a formatting thing&lt;br /&gt;
* The first equation dealing with the left arm is all small, can you fix that?&lt;br /&gt;
Other then that it looks good!&lt;br /&gt;
&lt;br /&gt;
(John): Thanks!  Fixed them.&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Magnetic_Circuit_Matlab_Script&amp;diff=8265</id>
		<title>Magnetic Circuit Matlab Script</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Magnetic_Circuit_Matlab_Script&amp;diff=8265"/>
		<updated>2010-01-18T18:48:16Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: Error correction&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;font face=&amp;quot;Courier New&amp;quot;&amp;gt;&lt;br /&gt;
% John Hawkins&lt;br /&gt;
&lt;br /&gt;
% EMEC&lt;br /&gt;
&lt;br /&gt;
% Magnetic Circuit Calculations&lt;br /&gt;
&lt;br /&gt;
% Professor Rob Frohne&lt;br /&gt;
&lt;br /&gt;
% January 10, 2009&lt;br /&gt;
&amp;lt;br /&amp;gt; &amp;lt;br /&amp;gt;&lt;br /&gt;
% Problem Statement Constraints&lt;br /&gt;
&lt;br /&gt;
N=1600;&lt;br /&gt;
&lt;br /&gt;
Bfg=.1;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;% Assumed relative permeability&lt;br /&gt;
&lt;br /&gt;
mu0=4e-7*pi;&lt;br /&gt;
&lt;br /&gt;
mur=500;&lt;br /&gt;
&lt;br /&gt;
mu=mur*mu0&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;% Geometry&lt;br /&gt;
&lt;br /&gt;
lfg=1e-2&lt;br /&gt;
&lt;br /&gt;
ldef=31e-2+24.5e-2&lt;br /&gt;
&lt;br /&gt;
lghc=ldef&lt;br /&gt;
&lt;br /&gt;
ldc=48e-2 &lt;br /&gt;
&lt;br /&gt;
ldabc=45e-2+48e-2+45e-2&lt;br /&gt;
&lt;br /&gt;
Afg=4e-2*8e-2&lt;br /&gt;
&lt;br /&gt;
Adef=Afg&lt;br /&gt;
&lt;br /&gt;
Aghc=Afg&lt;br /&gt;
&lt;br /&gt;
Adc=8e-2*12e-2&lt;br /&gt;
&lt;br /&gt;
Adabc=2e-2*4e-2&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;% Air gap&lt;br /&gt;
&lt;br /&gt;
Rfg=lfg/(mu*Afg)&lt;br /&gt;
&lt;br /&gt;
Ifg=Bfg*Afg&lt;br /&gt;
&lt;br /&gt;
Ffg=Rfg*Ifg&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;% Right arms&lt;br /&gt;
&lt;br /&gt;
Idef=Ifg&lt;br /&gt;
&lt;br /&gt;
Rdef=ldef/(mu*Adef)&lt;br /&gt;
&lt;br /&gt;
Fdef=Rdef*Idef&lt;br /&gt;
&lt;br /&gt;
Ighc=Idef;&lt;br /&gt;
&lt;br /&gt;
Rghc=Rdef;&lt;br /&gt;
&lt;br /&gt;
Fghc=Fdef;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;% Center Column&lt;br /&gt;
&lt;br /&gt;
Fdc=Fdef+Ffg+Fghc&lt;br /&gt;
&lt;br /&gt;
Rdc=ldc/(mu*Adc)&lt;br /&gt;
&lt;br /&gt;
Idc=Fdc/Rdc&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;% Left arm&lt;br /&gt;
&lt;br /&gt;
Idabc=Idc-Idef&lt;br /&gt;
&lt;br /&gt;
Rdabc=ldabc/(mu*Adabc)&lt;br /&gt;
&lt;br /&gt;
Fdabc=Rdabc*Idabc&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;% Results&lt;br /&gt;
&lt;br /&gt;
Ftotal = Fdabc+Fdc+Fdef+Ffg+Fghc&lt;br /&gt;
&lt;br /&gt;
i=Ftotal/N&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/font&amp;gt;&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Reference_Terms_and_Units&amp;diff=8263</id>
		<title>Reference Terms and Units</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Reference_Terms_and_Units&amp;diff=8263"/>
		<updated>2010-01-18T18:41:48Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article is for the conference on Monday January 11&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Variable&lt;br /&gt;
&lt;br /&gt;
|Description&lt;br /&gt;
&lt;br /&gt;
|Unit variables&lt;br /&gt;
|Units&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|&amp;lt;math&amp;gt;\vec E&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|Electric Field Intensity&lt;br /&gt;
&lt;br /&gt;
|&amp;lt;math&amp;gt; V/m\,\!&amp;lt;/math&amp;gt; or &amp;lt;math&amp;gt; N/C\,\!&amp;lt;/math&amp;gt;&lt;br /&gt;
|Volts per Meter or Newtons per Coulomb&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|&amp;lt;math&amp;gt;\vec D&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|Electric Flux Density&lt;br /&gt;
&lt;br /&gt;
|&amp;lt;math&amp;gt; C/m^2\,\!&amp;lt;/math&amp;gt;&lt;br /&gt;
|Coulombs per Meter squared&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|&amp;lt;math&amp;gt;\vec H&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|Magnetic Flux Intensity&lt;br /&gt;
&lt;br /&gt;
|&amp;lt;math&amp;gt; A/m \,\!&amp;lt;/math&amp;gt;&lt;br /&gt;
|Amps per Meter&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|&amp;lt;math&amp;gt;\vec B&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|Magnetic Flux Density or Magnetic Induction&lt;br /&gt;
&lt;br /&gt;
|&amp;lt;math&amp;gt; T \,\!&amp;lt;/math&amp;gt; or &amp;lt;math&amp;gt;W/m^2\,\!&amp;lt;/math&amp;gt; or &amp;lt;math&amp;gt; G \,\!&amp;lt;/math&amp;gt;&lt;br /&gt;
|Tessla or Watts per Meter squared or Gauss&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Relationships&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\vec D=\in \vec E&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*In free space:&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;math&amp;gt;\in_0=1/(36*\pi)*10^{-9} \,\!&amp;lt;/math&amp;gt; F/m&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\vec B=\mu \vec H&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*In free space:&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;math&amp;gt;\mu_0=4*\pi*10^{-7} \,\!&amp;lt;/math&amp;gt; H/m&lt;br /&gt;
&lt;br /&gt;
==Reviewed By==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Read By==&lt;br /&gt;
John Hawkins&lt;br /&gt;
&lt;br /&gt;
Comments and questions:&lt;br /&gt;
&lt;br /&gt;
*I love the article on units.  I hate these units where I don&#039;t know what applies to what or what comes from what.  Good idea.  I&#039;m also interested in the derivation of them.  Would you be interested for me to contribute with the derivation of some of these? &lt;br /&gt;
&lt;br /&gt;
*I think Tesla are equivalent to &amp;lt;math&amp;gt;Wb/m^2\ &amp;lt;/math&amp;gt;, Webers per meter squared.&lt;br /&gt;
&lt;br /&gt;
*(It doesn&#039;t really matter, but the character you&#039;re using for epsilon is actually the set inclusion operator.  \epsilon or \varepsilon is technically correct.)&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=An_Ideal_Transformer_Example&amp;diff=8261</id>
		<title>An Ideal Transformer Example</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=An_Ideal_Transformer_Example&amp;diff=8261"/>
		<updated>2010-01-18T13:30:04Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Consider a simple, transformer with two windings. Find the current provided by the voltage source.&lt;br /&gt;
* Winding 1 has a sinusoidal voltage of &amp;lt;math&amp;gt;120\sqrt{2}\angle{0}&amp;lt;/math&amp;gt;° applied to it at a frequency of 60Hz. &lt;br /&gt;
* &amp;lt;math&amp;gt;\frac{N_{1}}{N_{2}}=3&amp;lt;/math&amp;gt;&lt;br /&gt;
* The combined load on winding 2 is &amp;lt;math&amp;gt;\ {Z_{L}}=(5+j3)\Omega&amp;lt;/math&amp;gt;&lt;br /&gt;
===Solution===&lt;br /&gt;
&amp;lt;math&amp;gt;\ {e_{1}}(t)={V_{1}}\cos(\omega t)&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\ \omega=2\pi f&amp;lt;/math&amp;gt;, so &amp;lt;math&amp;gt;\ \omega=120\pi&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Therefore, &amp;lt;math&amp;gt;\ {e_{1}}(t)={V_{1}}\cos(120\pi t)&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now the Thevenin equivalent impedance, &amp;lt;math&amp;gt;\ {Z_{th}}&amp;lt;/math&amp;gt;, is found through the following steps:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{Z_{th}} = \frac{e_{1}}{i_{1}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;=\frac{\frac{N_{1}}{N_{2}}{e_{2}}}{\frac{N_{2}}{N_{1}}{i_{2}}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;=(\frac{N_{1}}{N_{2}})^2{R_{L}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now, substituting:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\ {Z_{th}} = 3^2(5+j3)&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\ =(45+j27)\Omega&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Since &amp;lt;math&amp;gt;{i_{1}}=\frac{e_{1}}{R_{th}}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{i_{1}}=\frac{120\sqrt{2}}{45+j27}&amp;lt;/math&amp;gt;&lt;br /&gt;
===Contributors===&lt;br /&gt;
&lt;br /&gt;
[[Lau, Chris|Christopher Garrison Lau I]]&lt;br /&gt;
&lt;br /&gt;
===Read By===&lt;br /&gt;
&lt;br /&gt;
John Hawkins&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=An_Ideal_Transformer_Example&amp;diff=8260</id>
		<title>An Ideal Transformer Example</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=An_Ideal_Transformer_Example&amp;diff=8260"/>
		<updated>2010-01-18T13:29:43Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Consider a simple, transformer with two windings. Find the current provided by the voltage source.&lt;br /&gt;
* Winding 1 has a sinusoidal voltage of &amp;lt;math&amp;gt;120\sqrt{2}\angle{0}&amp;lt;/math&amp;gt;° applied to it at a frequency of 60Hz. &lt;br /&gt;
* &amp;lt;math&amp;gt;\frac{N_{1}}{N_{2}}=3&amp;lt;/math&amp;gt;&lt;br /&gt;
* The combined load on winding 2 is &amp;lt;math&amp;gt;\ {Z_{L}}=(5+j3)\Omega&amp;lt;/math&amp;gt;&lt;br /&gt;
===Solution===&lt;br /&gt;
&amp;lt;math&amp;gt;\ {e_{1}}(t)={V_{1}}\cos(\omega t)&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\ \omega=2\pi f&amp;lt;/math&amp;gt;, so &amp;lt;math&amp;gt;\ \omega=120\pi&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Therefore, &amp;lt;math&amp;gt;\ {e_{1}}(t)={V_{1}}\cos(120\pi t)&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now the Thevenin equivalent impedance, &amp;lt;math&amp;gt;\ {Z_{th}}&amp;lt;/math&amp;gt;, is found through the following steps:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{Z_{th}} = \frac{e_{1}}{i_{1}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;=\frac{\frac{N_{1}}{N_{2}}{e_{2}}}{\frac{N_{2}}{N_{1}}{i_{2}}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;=(\frac{N_{1}}{N_{2}})^2{R_{L}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now, substituting:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\ {Z_{th}} = 3^2(5+j3)&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\ =(45+j27)\Omega&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Since &amp;lt;math&amp;gt;{i_{1}}=\frac{e_{1}}{R_{th}}&amp;lt;/math&amp;gt;,&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{i_{1}}=\frac{120\sqrt{2}}{45+j27}&amp;lt;/math&amp;gt;&lt;br /&gt;
===Contributors===&lt;br /&gt;
&lt;br /&gt;
[[Lau, Chris|Christopher Garrison Lau I]]&lt;br /&gt;
&lt;br /&gt;
==Read By==&lt;br /&gt;
&lt;br /&gt;
John Hawkins&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Example:_Ideal_Transformer_Exercise&amp;diff=8259</id>
		<title>Example: Ideal Transformer Exercise</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Example:_Ideal_Transformer_Exercise&amp;diff=8259"/>
		<updated>2010-01-18T13:29:03Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Author==&lt;br /&gt;
&lt;br /&gt;
John Hawkins&lt;br /&gt;
&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
An ideal transformer has a primary winding with 500 turns and a secondary winding with 2000 turns.  Given that &amp;lt;math&amp;gt;\ e_1=120\angle{0^\circ}\text{ V, RMS}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;\ i_1=(2+3j)\text{ A}&amp;lt;/math&amp;gt;, find the load impedance, &amp;lt;math&amp;gt;\ Z_L&amp;lt;/math&amp;gt; and the Thevenin equivalent, &amp;lt;math&amp;gt;\ Z_{th}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Solution==&lt;br /&gt;
&lt;br /&gt;
We could find the Thevenin impedance directly, but we will save that until the end as a checking mechanism.  First, we will find the actual load impedance by finding the current and voltage in the secondary winding and finding their ratio.  The equations used are those derived in class by Professor Frohne.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;e_2=\frac{N_2}{N_2}e_1=\frac{2000}{500}(120)=480\text{ V}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;i_2=\frac{N_1}{N_2}i_1=\frac{500}{2000}(2+3j)=\left(\frac{1}{2}+\frac{3}{4}j\right)\text{ A}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;Z_L=\frac{e_2}{i_2}=\frac{480}{\frac{1}{2}+\frac{3}{4}j}=\mathbf{(295.4-443.1j)\ \Omega\ =(532.5\angle{-56.3^\circ})\ \Omega}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;Z_{th}=\left(\frac{N_1}{N_2}\right)^2Z_L=\left(\frac{500}{2000}\right)^2(295.4-443.1j)=\mathbf{(18.5-27.7j)\ \Omega\ =(33.3\angle{-56.3^\circ})\ \Omega}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As mentioned at the beginning, this should be the impedance found using the ratio of the primary voltage and current.  Using this method, we find that&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;Z_{th}=\frac{e_1}{i_1}=\frac{120}{2+3j}=\mathbf{(18.5-27.7j)\ \Omega\ =(33.3\angle{-56.3^\circ})\ \Omega}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This is the same answer as above, which verifies the solutions.&lt;br /&gt;
&lt;br /&gt;
==Reviewed By==&lt;br /&gt;
&lt;br /&gt;
Tyler Anderson - it may be helpful to the readers if you referenced what equations you are using. For example:&lt;br /&gt;
&amp;lt;math&amp;gt;e_2=\frac{N_2}{N_2}e_1&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt; EQ (5-39)&amp;lt;/math&amp;gt;&lt;br /&gt;
Otherwise it looks sound to me. &lt;br /&gt;
&lt;br /&gt;
* I didn&#039;t use the textbook, so such a reference is not required.  I agree that it would be useful for those in the class, but I don&#039;t have the same textbook as everyone else, and I doubt anyone would care to know my book&#039;s equation numbers.  Thanks for reminding me about references, though.  I mentioned the class derivation above in the text.&lt;br /&gt;
&lt;br /&gt;
==Read By==&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Electromechanical_Energy_Conversion&amp;diff=8146</id>
		<title>Electromechanical Energy Conversion</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Electromechanical_Energy_Conversion&amp;diff=8146"/>
		<updated>2010-01-18T03:03:00Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Rules]]&lt;br /&gt;
&lt;br /&gt;
[[Class Roster]]&lt;br /&gt;
&lt;br /&gt;
[[Points]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Questions==&lt;br /&gt;
&lt;br /&gt;
What do we do when we are finished with the draft and ready to publish?&lt;br /&gt;
* If it&#039;s been approved by the reviewers, move it to the articles section&lt;br /&gt;
&lt;br /&gt;
Does anyone know why my LaTEX stuff is changing sizes throughout my article? [[An Ideal Transformer Example]]&lt;br /&gt;
&lt;br /&gt;
*(John Hawkins) As I understand it, the text is made full size (larger) if there is ever a function call, i.e. something starting with a backslash, excluding some things like greek letters.  I have just put &amp;quot;\ &amp;quot; (the function call for a space) at the beginning of an equation and had it work.  If you don&#039;t want to change anything about your equation but just want it displayed full size, type &amp;quot;\,\!&amp;quot; (small forward space and small backward space) somewhere in your equation.&lt;br /&gt;
*Thanks John!&lt;br /&gt;
&lt;br /&gt;
==Announcements==&lt;br /&gt;
&lt;br /&gt;
If anyone wants to write the derivation of Ampere&#039;s Law you can put it on my (Wesley Brown) [[Ampere&#039;s Law]] page and be a co-author.&lt;br /&gt;
&lt;br /&gt;
==Draft Articles==&lt;br /&gt;
These articles are not ready for reading and error checking. They are listed so people will not simultaneously write about similar topics.&lt;br /&gt;
* [[Ferromagnetism]]&lt;br /&gt;
* [[Magnetic Circuits]]&lt;br /&gt;
* [[Gauss Meters]]&lt;br /&gt;
* [[Ampere&#039;s Law]]&lt;br /&gt;
* [[DC Motor]]&lt;br /&gt;
* [[AC vs. DC]]&lt;br /&gt;
* [[AC Motors]]&lt;br /&gt;
* [[Fringing]]&lt;br /&gt;
* [[Electrostatics]]&lt;br /&gt;
* [[Example problems of magnetic circuits]]&lt;br /&gt;
* [[Magnetic Circuit]] (John Hawkins)&lt;br /&gt;
* [[Ohm&#039;s Law and Reluctance]]&lt;br /&gt;
* [[Magnetic Flux]]&lt;br /&gt;
* [[An Ideal Transformer Example]]&lt;br /&gt;
* [[Example: Ideal Transformer Exercise]] (John Hawkins)&lt;br /&gt;
&lt;br /&gt;
==Reviewed Articles==&lt;br /&gt;
These articles have been reviewed and submitted.&lt;br /&gt;
* [[Nick_ENGR431_P1|Magnetostatics]] (Nick Christman)&lt;br /&gt;
* [[Magnetic Flux]] (Jason Osborne)&lt;br /&gt;
*[[An Application of Electromechanical Energy Conversion: Hybrid Electric Vehicles]] (Chris Lau)&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Magnetic_Circuit&amp;diff=8144</id>
		<title>Magnetic Circuit</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Magnetic_Circuit&amp;diff=8144"/>
		<updated>2010-01-18T02:59:58Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Author: John Hawkins=&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
[[Image:Img001.jpg|thumb|500px|right]]&lt;br /&gt;
Problem 2.16 from &#039;&#039;Electric Machinery and Transformers&#039;&#039;, 3rd ed:&lt;br /&gt;
&amp;lt;blockquote&amp;gt;A magnetic circuit is given in Figure P2.16.  What must be the current in the 1600-turn coil to set up a flux density of 0.1 T in the air-gap?  All dimensions are in centimeters.  Assume that magnetic flux density varies as &amp;lt;math&amp;gt;B=[1.5H/(750+H)]&amp;lt;/math&amp;gt;.&amp;lt;ref&amp;gt;Guru and Huseyin, &#039;&#039;Electric Machinery and Transformers&#039;&#039;, 3rd ed. (New York: Oxford University Press, 2001), 129.&amp;lt;/ref&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
==Solution==&lt;br /&gt;
&lt;br /&gt;
First, we note that the problem statement is incomplete. Assume that the core has a relative permeability of 500.  Hence, for all magnetic sections excluding the air gap,&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;math&amp;gt;\mu=\mu_r\mu_0=(500)(4\pi\times10^{-7})=6.2832\times10^{-4}&amp;lt;/math&amp;gt;&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Also, as recommended in the text, we will neglect fringing.&lt;br /&gt;
&lt;br /&gt;
The lengths and areas of each of the sections to be evaluated are given in the following table.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ &#039;&#039;Table 1: Lengths and Areas for the pertinent secions of the magnetic circuit.&#039;&#039;&lt;br /&gt;
! &#039;&#039;&#039;Section&#039;&#039;&#039; !! fg !! def !! ghc !! dc !! dabc &lt;br /&gt;
|-&lt;br /&gt;
| Length &amp;lt;math&amp;gt;l&amp;lt;/math&amp;gt; (m)|| 0.01 || 0.555|| 0.555 || 0.48 || 1.4&lt;br /&gt;
|-&lt;br /&gt;
| Area &amp;lt;math&amp;gt;A&amp;lt;/math&amp;gt; (m&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt;) || 0.0032 || 0.0032 || 0.0032 || 0.0096 || 8.0e-4&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
We must now work backward from the air-gap, since the value of the flux-density is given there.  We need only employ the analagous equations to Ohm&#039;s Law, KVL, and KCL.  All units are standard units.  &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Air Gap:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\mathcal{R}_{fg}=\frac{l_{fg}}{\mu A_fg} = 4973.6&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\Phi_{fg}=B_{fg}A_{fg}=3.20\times10^{-4}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\mathcal{F}_{fg}=\mathcal{R}_{fg}\Phi_{fg}=1.5915&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Right Arms:&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\Phi_{def}=\Phi_{ghc} = \Phi_{fg} = 3.20\times10^{-4}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\mathcal{R}_{def}=\mathcal{R}_{ghc}=\frac{l_{def}}{\mu A_{def}}=2.7603\times10^5&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\mathcal{F}_{def}=\mathcal{F}_{ghc}=\mathcal{R}_{def}\Phi_{def}=88.331&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Center Column:&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\mathcal{F}_{dc}=\mathcal{F}_{def}+\mathcal{F}_{fg}+\mathcal{F}_{ghc}=178.25&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\mathcal{R}_{dc}=\frac{l_{dc}}{\mu A_{dc}}=79,577&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\Phi_{dc}=\frac{\mathcal{F}_{dc}}{\mathcal{R}_{dc}}=0.0022&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Left Arm:&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\Phi_{dabc}=\Phi_{dc}-\Phi_{def}=0.0019&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\mathcal{R}_{dabc}=\frac{l_{dabc}}{\mu A_{dabc}}=2.785\times 10^6&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\mathcal{F}_{dabc}=\mathcal{F}_{dabc}\Phi_{dabc}=5347.6&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Conclusions:&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\mathcal{F}_{Total}=\mathcal{F}_{dabc}+\mathcal{F}_{dc}+\mathcal{F}_{def}+\mathcal{F}_{fg}+\mathcal{F}_{ghc}=57,041&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;\mathbf{i=\frac{\mathcal{F}_{Total}}{N}=3.57 A}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Which is the quantity we were looking for.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Calculations were performed using the following [[Magnetic Circuit Matlab Script]].&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Reviewed By==&lt;br /&gt;
==Read By==&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Electromechanical_Energy_Conversion&amp;diff=8132</id>
		<title>Electromechanical Energy Conversion</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Electromechanical_Energy_Conversion&amp;diff=8132"/>
		<updated>2010-01-18T02:36:04Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Rules]]&lt;br /&gt;
&lt;br /&gt;
[[Class Roster]]&lt;br /&gt;
&lt;br /&gt;
[[Points]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Questions==&lt;br /&gt;
&lt;br /&gt;
What do we do when we are finished with the draft and ready to publish?&lt;br /&gt;
* If it&#039;s been approved by the reviewers, move it to the articles section&lt;br /&gt;
&lt;br /&gt;
Does anyone know why my LaTEX stuff is changing sizes throughout my article? [[An Ideal Transformer Example]]&lt;br /&gt;
&lt;br /&gt;
*(John Hawkins) As I understand it, the text is made full size (larger) if there is ever a function call, i.e. something starting with a backslash, excluding some things like greek letters.  I have just put &amp;quot;\ &amp;quot; (the function call for a space) at the beginning of an equation and had it work.  If you don&#039;t want to change anything about your equation but just want it displayed full size, type &amp;quot;\,\!&amp;quot; (small forward space and small backward space) somewhere in your equation.&lt;br /&gt;
*Thanks John!&lt;br /&gt;
&lt;br /&gt;
==Announcements==&lt;br /&gt;
&lt;br /&gt;
If anyone wants to write the derivation of Ampere&#039;s Law you can put it on my (Wesley Brown) [[Ampere&#039;s Law]] page and be a co-author.&lt;br /&gt;
&lt;br /&gt;
==Draft Articles==&lt;br /&gt;
These articles are not ready for reading and error checking. They are listed so people will not simultaneously write about similar topics.&lt;br /&gt;
* [[Ferromagnetism]]&lt;br /&gt;
* [[Magnetic Circuits]]&lt;br /&gt;
* [[Gauss Meters]]&lt;br /&gt;
* [[Ampere&#039;s Law]]&lt;br /&gt;
* [[DC Motor]]&lt;br /&gt;
* [[AC vs. DC]]&lt;br /&gt;
* [[AC Motors]]&lt;br /&gt;
* [[Fringing]]&lt;br /&gt;
* [[Electrostatics]]&lt;br /&gt;
* [[Example problems of magnetic circuits]]&lt;br /&gt;
* [[Magnetic Circuit]]&lt;br /&gt;
* [[Ohm&#039;s Law and Reluctance]]&lt;br /&gt;
* [[Magnetic Flux]]&lt;br /&gt;
* [[An Ideal Transformer Example]]&lt;br /&gt;
* [[Example: Ideal Transformer Exercise]] (John Hawkins)&lt;br /&gt;
&lt;br /&gt;
==Reviewed Articles==&lt;br /&gt;
These articles have been reviewed and submitted.&lt;br /&gt;
* [[Nick_ENGR431_P1|Magnetostatics]] (Nick Christman)&lt;br /&gt;
* [[Magnetic Flux]] (Jason Osborne)&lt;br /&gt;
*[[An Application of Electromechanical Energy Conversion: Hybrid Electric Vehicles]] (Chris Lau)&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Example:_Ideal_Transformer_Exercise&amp;diff=8130</id>
		<title>Example: Ideal Transformer Exercise</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Example:_Ideal_Transformer_Exercise&amp;diff=8130"/>
		<updated>2010-01-18T02:33:03Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: Main Content&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Author==&lt;br /&gt;
&lt;br /&gt;
John Hawkins&lt;br /&gt;
&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
An ideal transformer has a primary winding with 500 turns and a secondary winding with 2000 turns.  Given that &amp;lt;math&amp;gt;\ e_1=120\angle{0^\circ}\text{ V, RMS}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;\ i_1=(2+3j)\text{ A}&amp;lt;/math&amp;gt;, find the load impedance, &amp;lt;math&amp;gt;\ Z_L&amp;lt;/math&amp;gt; and the Thevenin equivalent, &amp;lt;math&amp;gt;\ Z_{th}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Solution==&lt;br /&gt;
&lt;br /&gt;
We could find the Thevenin impedance directly, but we will save that until the end as a checking mechanism.  First, we will find the actual load impedance by finding the current and voltage in the secondary winding and finding their ratio.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;e_2=\frac{N_2}{N_2}e_1=\frac{2000}{500}(120)=480\text{ V}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;i_2=\frac{N_1}{N_2}i_1=\frac{500}{2000}(2+3j)=\left(\frac{1}{2}+\frac{3}{4}j\right)\text{ A}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;Z_L=\frac{e_2}{i_2}=\frac{480}{\frac{1}{2}+\frac{3}{4}j}=\mathbf{(295.4-443.1j)\ \Omega\ =(532.5\angle{-56.3^\circ})\ \Omega}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;Z_{th}=\left(\frac{N_1}{N_2}\right)^2Z_L=\left(\frac{500}{2000}\right)^2(295.4-443.1j)=\mathbf{(18.5-27.7j)\ \Omega\ =(33.3\angle{-56.3^\circ})\ \Omega}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As mentioned at the beginning, this should be the impedance found using the ratio of the primary voltage and current.  Using this method, we find that&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;Z_{th}=\frac{e_1}{i_1}=\frac{120}{2+3j}=\mathbf{(18.5-27.7j)\ \Omega\ =(33.3\angle{-56.3^\circ})\ \Omega}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This is the same answer as above, which verifies the solutions.&lt;br /&gt;
&lt;br /&gt;
==Reviewed By==&lt;br /&gt;
&lt;br /&gt;
==Read By==&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Electromechanical_Energy_Conversion&amp;diff=8115</id>
		<title>Electromechanical Energy Conversion</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Electromechanical_Energy_Conversion&amp;diff=8115"/>
		<updated>2010-01-18T01:51:02Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Rules]]&lt;br /&gt;
&lt;br /&gt;
[[Class Roster]]&lt;br /&gt;
&lt;br /&gt;
[[Points]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Questions==&lt;br /&gt;
&lt;br /&gt;
What do we do when we are finished with the draft and ready to publish?&lt;br /&gt;
* If it&#039;s been approved by the reviewers, move it to the articles section&lt;br /&gt;
&lt;br /&gt;
Does anyone know why my LaTEX stuff is changing sizes throughout my article? [[An Ideal Transformer Example]]&lt;br /&gt;
&lt;br /&gt;
*(John Hawkins) As I understand it, the text is made full size (larger) if there is ever a function call, i.e. something starting with a backslash, excluding some things like greek letters.  I have just put &amp;quot;\ &amp;quot; (the function call for a space) at the beginning of an equation and had it work.  If you don&#039;t want to change anything about your equation but just want it displayed full size, type &amp;quot;\,\!&amp;quot; (small forward space and small backward space) somewhere in your equation.&lt;br /&gt;
&lt;br /&gt;
==Announcements==&lt;br /&gt;
&lt;br /&gt;
If anyone wants to write the derivation of Ampere&#039;s Law you can put it on my (Wesley Brown) [[Ampere&#039;s Law]] page and be a co-author.&lt;br /&gt;
&lt;br /&gt;
==Draft Articles==&lt;br /&gt;
These articles are not ready for reading and error checking. They are listed so people will not simultaneously write about similar topics.&lt;br /&gt;
* [[Ferromagnetism]]&lt;br /&gt;
* [[Magnetic Circuits]]&lt;br /&gt;
* [[Gauss Meters]]&lt;br /&gt;
* [[Ampere&#039;s Law]]&lt;br /&gt;
* [[DC Motor]]&lt;br /&gt;
* [[AC vs. DC]]&lt;br /&gt;
* [[AC Motors]]&lt;br /&gt;
* [[Fringing]]&lt;br /&gt;
* [[Electrostatics]]&lt;br /&gt;
* [[Example problems of magnetic circuits]]&lt;br /&gt;
* [[Magnetic Circuit]]&lt;br /&gt;
* [[Ohm&#039;s Law and Reluctance]]&lt;br /&gt;
* [[Magnetic Flux]]&lt;br /&gt;
* [[An Ideal Transformer Example]]&lt;br /&gt;
&lt;br /&gt;
* [[Example: Ideal Transformer Exercise]]&lt;br /&gt;
&lt;br /&gt;
==Reviewed Articles==&lt;br /&gt;
These articles have been reviewed and submitted.&lt;br /&gt;
* [[Nick_ENGR431_P1|Magnetostatics]] (Nick Christman)&lt;br /&gt;
* [[Magnetic Flux]] (Jason Osborne)&lt;br /&gt;
*[[An Application of Electromechanical Energy Conversion: Hybrid Electric Vehicles]]&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Electromechanical_Energy_Conversion&amp;diff=8114</id>
		<title>Electromechanical Energy Conversion</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Electromechanical_Energy_Conversion&amp;diff=8114"/>
		<updated>2010-01-18T01:47:07Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Rules]]&lt;br /&gt;
&lt;br /&gt;
[[Class Roster]]&lt;br /&gt;
&lt;br /&gt;
[[Points]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Questions==&lt;br /&gt;
&lt;br /&gt;
What do we do when we are finished with the draft and ready to publish?&lt;br /&gt;
* If it&#039;s been approved by the reviewers, move it to the articles section&lt;br /&gt;
&lt;br /&gt;
Does anyone know why my LaTEX stuff is changing sizes throughout my article? [[An Ideal Transformer Example]]&lt;br /&gt;
&lt;br /&gt;
*(John Hawkins) As I understand it, the text is made full size (larger) if there is ever a function call, i.e. something starting with a backslash, excluding some things like greek letters.  Even &amp;quot;\ &amp;quot; (the function call for a space) works for me.  If you don&#039;t want to change anything about your equation but just want it displayed full size, type &amp;quot;\,\!&amp;quot; (small forward space and small backward space) somewhere in your equation.&lt;br /&gt;
&lt;br /&gt;
==Announcements==&lt;br /&gt;
&lt;br /&gt;
If anyone wants to write the derivation of Ampere&#039;s Law you can put it on my (Wesley Brown) [[Ampere&#039;s Law]] page and be a co-author.&lt;br /&gt;
&lt;br /&gt;
==Draft Articles==&lt;br /&gt;
These articles are not ready for reading and error checking. They are listed so people will not simultaneously write about similar topics.&lt;br /&gt;
* [[Ferromagnetism]]&lt;br /&gt;
* [[Magnetic Circuits]]&lt;br /&gt;
* [[Gauss Meters]]&lt;br /&gt;
* [[Ampere&#039;s Law]]&lt;br /&gt;
* [[DC Motor]]&lt;br /&gt;
* [[AC vs. DC]]&lt;br /&gt;
* [[AC Motors]]&lt;br /&gt;
* [[Fringing]]&lt;br /&gt;
* [[Electrostatics]]&lt;br /&gt;
* [[Example problems of magnetic circuits]]&lt;br /&gt;
* [[Magnetic Circuit]]&lt;br /&gt;
* [[Ohm&#039;s Law and Reluctance]]&lt;br /&gt;
* [[Magnetic Flux]]&lt;br /&gt;
* [[An Ideal Transformer Example]]&lt;br /&gt;
&lt;br /&gt;
* [[Example: Ideal Transformer Exercise]]&lt;br /&gt;
&lt;br /&gt;
==Reviewed Articles==&lt;br /&gt;
These articles have been reviewed and submitted.&lt;br /&gt;
* [[Nick_ENGR431_P1|Magnetostatics]] (Nick Christman)&lt;br /&gt;
* [[Magnetic Flux]] (Jason Osborne)&lt;br /&gt;
*[[An Application of Electromechanical Energy Conversion: Hybrid Electric Vehicles]]&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Electromechanical_Energy_Conversion&amp;diff=8113</id>
		<title>Electromechanical Energy Conversion</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Electromechanical_Energy_Conversion&amp;diff=8113"/>
		<updated>2010-01-18T01:42:06Z</updated>

		<summary type="html">&lt;p&gt;John.hawkins: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Rules]]&lt;br /&gt;
&lt;br /&gt;
[[Class Roster]]&lt;br /&gt;
&lt;br /&gt;
[[Points]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Questions==&lt;br /&gt;
&lt;br /&gt;
What do we do when we are finished with the draft and ready to publish?&lt;br /&gt;
* If it&#039;s been approved by the reviewers, move it to the articles section&lt;br /&gt;
&lt;br /&gt;
Does anyone know why my LaTEX stuff is changing sizes throughout my article? [[An Ideal Transformer Example]]&lt;br /&gt;
&lt;br /&gt;
*(John Hawkins) As I understand it, the text is made full size (larger) if there is ever a function call, i.e. something starting with a backslash, excluding some things like greek letters.  Even &amp;quot;\ &amp;quot; (the function call for a space) works for me.  If you don&#039;t want to change anything about your equation but just want it displayed full size, type &amp;quot;\,\!&amp;quot; (small forward space and small backward space) somewhere in your equation.&lt;br /&gt;
&lt;br /&gt;
==Announcements==&lt;br /&gt;
&lt;br /&gt;
If anyone wants to write the derivation of Ampere&#039;s Law you can put it on my (Wesley Brown) [[Ampere&#039;s Law]] page and be a co-author.&lt;br /&gt;
&lt;br /&gt;
==Draft Articles==&lt;br /&gt;
These articles are not ready for reading and error checking. They are listed so people will not simultaneously write about similar topics.&lt;br /&gt;
* [[Ferromagnetism]]&lt;br /&gt;
* [[Magnetic Circuits]]&lt;br /&gt;
* [[Gauss Meters]]&lt;br /&gt;
* [[Ampere&#039;s Law]]&lt;br /&gt;
* [[DC Motor]]&lt;br /&gt;
* [[AC vs. DC]]&lt;br /&gt;
* [[AC Motors]]&lt;br /&gt;
* [[Fringing]]&lt;br /&gt;
* [[Electrostatics]]&lt;br /&gt;
* [[Example problems of magnetic circuits]]&lt;br /&gt;
* [[Magnetic Circuit]]&lt;br /&gt;
* [[Ohm&#039;s Law and Reluctance]]&lt;br /&gt;
* [[Magnetic Flux]]&lt;br /&gt;
* [[An Ideal Transformer Example]]&lt;br /&gt;
&lt;br /&gt;
==Reviewed Articles==&lt;br /&gt;
These articles have been reviewed and submitted.&lt;br /&gt;
* [[Nick_ENGR431_P1|Magnetostatics]] (Nick Christman)&lt;br /&gt;
* [[Magnetic Flux]] (Jason Osborne)&lt;br /&gt;
*[[An Application of Electromechanical Energy Conversion: Hybrid Electric Vehicles]]&lt;/div&gt;</summary>
		<author><name>John.hawkins</name></author>
	</entry>
</feed>