Fourier Series
                  Samara Laliberte                                                  Muhammad Shams
               Dept. of Mathematics                                               Dept. of Mathematics
                 UMass Dartmouth                                                    UMass Dartmouth
               Dartmouth MA 02747                                                 Dartmouth MA 02747
            Email: slaliberte@umassd.edu                                        Email: mshams@umassd.edu

                                                            Abstract
          The use of a sum of complex exponential or trigonometric periodic functions to approximate a function to almost
      exact precision. This tactic will result in minimal error when comparing it to the original function. Using a Fourier
      series allows a continuous, bounded, function to be evaluated, with uniform convergence through-out. This makes
      using them a useful tool in analyzing otherwise complicated functions. Starting with a simple Fourier sum of sines,
      a function can be almost exactly replicated as the number of coefficients are maximized. The same holds with the
      Fourier sum of exponential functions. This process is highly effective for continuous functions, but involves a larger
      error when handling discontinuous functions. The focus of this project is to understand these approximations and
      why there is error.


1 Uses for Fourier approximation
Fourier series are used to approximate complex functions in many different parts of science and math. They are helpful
in their ability to imitate many different types of waves: x-ray, heat, light, and sound. Fourier series are used in many
cases to analyze and interpret a function which would otherwise be hard to decode.


2 Approximating the Square Wave Function using Fourier Sine Series
2.1    Square Wave Function
The first function we examined which can be approximated by a Fourier series is the square wave function. This
is a function which alternates between two function values periodically and instantaneously, as if the function was
switched from on to off. The Square Wave function is also commonly called a step function. The function graphed
from x = −1 to x = 1 is shown in Figure 1. By summing sine waves it is possible to replicate the square wave
function almost exactly, however, there is a discontinuity in this periodic function, meaning the Fourier series will also
have a discontinuity. It is clear in Figure 1 that the discontinuity will appear at x = 0, where the functions jumps from
-1 to 1. The equation of this function is represented in Equation 1.




                                                                1
F IGURE 1: S QUARE WAVE F UNCTION


                                                    −1    for − 1 ≤ x < 0 ,
                                         F (x) =                                                                    (1)
                                                    1     for 0 ≤ x ≤ 1 ,

2.2   Fourier Sine Series
The Fourier sum of sines can be used to accurately approximate the square wave function. The more points plotted and
coefficients used the closer the Fourier sum will be to looking like the square wave function. The equation of Fourier
sine series used in this case is represented in Equation 2. j represents the number of coefficients used. When using the
sum of sines, only odd numbered values are used, otherwise you would be adding zero every other term. The starting
point, where j=1 is shown in Figure 2.
                                                          ∞
                                           F (x) = 4/π           1/jsin(jπx)                                        (2)
                                                         j=odd




                                                           2
F IGURE 2: S INE WAVE

2.3     Approximating with Fourier Sine Series
A MATLAB code is used to plot the square wave function along with the Fourier sine series in order to compare the
accuracy and error between the approximation and the actual function.

      MATLAB C ODE FOR F OURIER S UM , S QUARE WAVE AND E RROR
N =    Number of points plotted
x =    linspace(-1,1,N);
f =    sign(x);
sum    = 0.*x;
M =    number of coefficients
for    j = 1:2:M
       sum = sum + 4/pi*sin(j*pi*x)/j;
end
plot(x, sum, ’r’)
hold on
plot(x,f,’LineWidth’,2)
hold on
error = abs(sum-F)
Plot(x, error);
    By changing N , the number of points plotted, and M , the number of coefficients, the accuracy of the approximation
changes. For our purposes we kept the number of points plotted at 1000 to ensure the most precise graph for the number
of coefficients used. We started using one coefficient, setting M equal to 1. The Fourier Series compared to the actual
function is shown in Figure 3. Evaluating the function for M = 10 (Figure 4), M = 50 (Figure 5), M = 100
(Figure 6) and M = 1000 (Figure 7) it is easy to see how the series is almost perfectly approximated, but with visible
discontinuity.




F IGURE 3: M = 1 C OEFFICIENT                                                     F IGURE 4: M = 10 C OEFFICIENTS




                                                          3
F IGURE 5: M = 50 C OEFFICIENTS                                                   F IGURE 6: M = 100 C OEFFICIENTS




                                        F IGURE 7: M = 1000 C OEFFICIENTS

2.4   Error
There is visible error at the points: x = 1, x = −1, and x = 0, i.e where the function is discontinuous. Although this
error appears to be minimal as more coefficients are used, it never disappears. This occurrence is referred to as the
Gibb’s Phenomenon. J. Willard Gibbs discovered that there will always be an overshoot at the points of discontinuity
when using Fourier Series approximation. The error in M = 50 (Figure 8) and M = 1000 (Figure 9) noticeably
decreases to almost zero where the function is a straight line. With that, there remains the same amount of error at the
three discontinuous points. This is a product of using Fourier Series to approximate discontinuous functions.




                                                           4
F IGURE 8: E RROR AT M = 50 C OEFFICIENTS                             F IGURE 9: E RROR AT M = 1000 C OEFFICIENTS


3 Fourier Approximation of a Line
3.1    The Line Approximated
The next function we used a Fourier sum of sines to approximate was a line. We chose the interval: 0 to 2π. The
equation of the line is represented in Equation 3. The graph of the basic line is seen in Figure 10.

                                                  F (x) = 1/2(π − x)                                                  (3)




                                                Figure 10: Graph of F(x)

3.2    Sine Series Used to Approximate line
The Sine Series used to approximate this function is slightly different than the first one used. The reasoning for this
is that the original sine curve needs to be multiplied by and evaluated at different values in order to shape it into this
function. Also, the curve is flipped over the x-axis in comparison to the curve in Figure 2. This allows it to start at π
and move to 0, while the first function had to start at −1 and move to 1. The Sine series used is shown in Equation 4.


                                                            5
Just as before, the number of values used for j effect the accuracy of the approximation. The graph of the basic sine
wave when j = 1 is represented in Figure 11.
                                                      inf
                                            F(x) =    j=odd (1/j)sin(jx)                                            (4)




                                             Figure 11: Initial Sine Wave

3.3     Approximating F(x)
To compare the graphs, we used a MATLAB code similar to the one used for our first function. There is a change in
the boundary and the function we are using to approximate the line. The value of M ,once again, changes the number
of coefficients plotted and the number of points plotted was set at 100. Increasing the value of M allows the line to be
almost exactly replicated, but the Gibb’s Phenomenon remains; there is a discontinuity at the endpoints. The starting
point of the sine series is compared with the function it will eventual replicate in Figure 12. The function and it’s
approximation are shown at M = 10 (Figure 13), M = 50 (Figure 14), M = 100 (Figure 15) and M = 100 (Figure
16).

      MATLAB Code for Fourier Sine Series, Line, and Error
x =     linspace(0,2*pi,100);
sum     = 0.*x;
M =     number of coefficients used
for     j = 1:M
        sum = sum + ((1/j)*sin(j*x));
end
F = ((1/2)*(pi-x));
plot(x, sum,’r’);
hold on
plot(x, F, ’LineWidth’, 2);
hold on
error = abs(sum - F);
plot(x, error,’m’)
hold on



                                                          6
Figure 12: M = 1 Coefficient                                                          Figure 13: M = 10 Coefficients




Figure 14: M = 50 Coefficients                                                      Figure 15: M = 100 Coefficients




                                         Figure 16: M = 1000 Coefficients

3.4   Error
The graph at M = 1000 shows the line is almost perfectly approximated, but there is a discontinuity at the ends. The
reason for this discontinuity is not the same as in the first case. The function here is continuous and bounded, but


                                                         7
not periodic. Due to the sine function being periodic, it cannot approximate a non-periodic function with complete
accuracy. The error between the function and it’s approximation is shown at M = 50 (Figure 17) and M = 1000
(Figure 18). The error becomes fades through out the line but does not change at the ends, again, showing the Gibb’s
Phenomenon.




Figure 17: Error at M = 50                                                             Figure 18: Error at M = 1000


4 Fourier Exponential Approximation
4.1      The Line Approximated
The next function we approximated was another line. We chose the interval −1 to 1. The equation of the line is
represented in Equation 5.

                                                         F(x) = x                                                (5)
   We used this simple line to show a different way of approximating that works just as well. The Fourier series we
used to approximate this line was not a sum of sine waves, but instead a sum of complex exponential functions. The
new function used to approximate the line is seen in equation 6.
                                                          N
                                                F(x) =    −N        f (x)ei(kπx)                                 (6)
      In equation 6, k is used for the number of coefficients.

4.2      Approximating f(x) = x
In order to actually approximate f (x) = x using fourier exponential coefficients we created a set of MATLAB codes.
They were to be run one after the other as each code called some parameter from the previous one.

      MATLAB Codes for Exponential Coefficients
clc
np = 100
nc = 30
k = -nc:nc;
x = linspace(-1,1,np);
f = @(x) x;
for j = 1:length(k)
C = @(x) f(x).*exp(-1i*x*k(j)*pi);


                                                                8
fk(j) = quad(C,-1,1,);
end
plot(k, fk);
   This first code is used to calculate the coefficients to be used later.
function F = reconstruction(y,fk,k)
for x = 1:length(y)
F(x) = 0;
for j= 1:length(k)
F(x) = F(x) + fk(j)*exp(1i*k(j)*y(x)*pi);
end
end
end
   This second code is to reconstruct the function we are approximating using the coefficients from the earlier code.
clc np = 100;
nc = 5;
f = @(x) x;
npy = 101;
x = linspace(-1,1,np);
y = linspace(-1,1,npy);
k = -nc:nc;
for j = 1:length(k)
C = @(x) f(x).*exp(-1i*pi*x*k(j));
fk(j) = quad(C,-1,1,1e-12);
end
F = reconstructionexpo(y,fk,k);
F = F./(2);
plot(x,f(x),’--b’)
hold on
plot(y,F,’-xr’)
    This last code takes the output from the last two codes and actually approximates a function using the exponential
coefficients. Our code uses nc to represent the number of coefficients used. By increasing it we can better approximate
a function. The graph of the function we are approximating and the exponential function used to approximate with
nc = 1 can be seen in figure 19, nc = 10 in figure 20, nc = 25 in figure 21, and nc = 100 in figure 22.




Figure 19: nc = 1 Coefficient                                                          Figure 20: nc = 10 Coefficients


                                                           9
Figure 21: nc = 25 Coefficients                                                       Figure 22: nc = 100 Coefficients

    You can see that even with an exponential function used for approximation, the Gibbs phenomenon persists along
the boundaries. You can also see that as the number of coefficients was increased the approximation got better except
that in figure 22, the approximation appears to be worse than in figure 21. This would be because, with the quad
function we used in MATLAB to integrate the function we see a problem as the number of coefficients exceeds 25.
This can be dealt with by changing the tolerance.


5 Conclusions
To continue researching Fourier Series there are a few areas and specific problems that we would address. With our
code for exponential Fourier series we would want to look into using different quad functions in order to decrease the
error that is present after the coefficients reach higher than 25. Also we would look into how post processing is done.


6 Acknowledgements
Thank you Sigal Gottlieb and Saeja Kim for continuing to advise us on this project and help us when we were totally
and utterly confused.


7 References
[1] Sigal Gottlieb, Jae-Hun Jung, and Saeja Kim. A Review Article of David Gottlieb’s Work on the Resolution of the
Gibbs Phenomenon, volume x of Communications in Computational Physics. Global-Science Press, 2010.




                                                         10

More Related Content

PPTX
Fourier series and fourier integral
PPTX
Fourier series
PPTX
Fourier Series - Engineering Mathematics
PPTX
the fourier series
PPTX
Ic batch b1 sem 3(2015) introduction to some special functions and fourier se...
PDF
Half range sine and cosine series
PPT
aem : Fourier series of Even and Odd Function
PPT
1532 fourier series
Fourier series and fourier integral
Fourier series
Fourier Series - Engineering Mathematics
the fourier series
Ic batch b1 sem 3(2015) introduction to some special functions and fourier se...
Half range sine and cosine series
aem : Fourier series of Even and Odd Function
1532 fourier series

What's hot (20)

PPT
1531 fourier series- integrals and trans
PPTX
Fourier integral of Fourier series
PPTX
Fourier integral
PPTX
Fourier series and its applications by md nazmul islam
PPTX
Half range sine cosine fourier series
PPT
Fourier series
PPTX
Fourier series
PPTX
senior seminar
PPTX
Fourier series Introduction
DOCX
Important Questions of fourier series with theoretical study Engg. Mathem...
PDF
Fourier series and transforms
PDF
Fourier series of odd functions with period 2 l
PDF
Application of fourier series to differential equations
PPTX
History and Real Life Applications of Fourier Analaysis
PPTX
Furier serice
PDF
Fourier series basic results
PPTX
Fourier series pgbi
PPT
07 periodic functions and fourier series
PPT
Fourier series
PPTX
Topic: Fourier Series ( Periodic Function to change of interval)
1531 fourier series- integrals and trans
Fourier integral of Fourier series
Fourier integral
Fourier series and its applications by md nazmul islam
Half range sine cosine fourier series
Fourier series
Fourier series
senior seminar
Fourier series Introduction
Important Questions of fourier series with theoretical study Engg. Mathem...
Fourier series and transforms
Fourier series of odd functions with period 2 l
Application of fourier series to differential equations
History and Real Life Applications of Fourier Analaysis
Furier serice
Fourier series basic results
Fourier series pgbi
07 periodic functions and fourier series
Fourier series
Topic: Fourier Series ( Periodic Function to change of interval)
Ad

Similar to Fourier series (20)

PPTX
Fourier series
PDF
Fourier Specturm via MATLAB
PDF
Mba Ebooks ! Edhole
PDF
Fourier Series.pdf
PDF
lecture_6_-_fourier_series_0.pdf
PDF
PDF
Fourier 3
PPTX
Fourier_Series.pptx
PPS
Unit vii
PPTX
mukul pptx 2.pptx mathematics laplace pptx engineering mathematics 2
DOCX
Fourier series example
PDF
Find the compact trigonometric Fourier series for the periodic signal.pdf
PDF
furrier's law application with picture .
PDF
fourier series
PPTX
Mathematics basics
PPTX
PS.pptx
PPTX
half range sine and cosine series.pptx(Test for Convergence.pptx(Sequence and...
PDF
Fourier series question for a periodic signalSolutionFourier s.pdf
PPTX
TPDE_UNIT II-FOURIER SERIES_PPT.pptx
PPTX
Network analysis & synthesis Fourier Series
Fourier series
Fourier Specturm via MATLAB
Mba Ebooks ! Edhole
Fourier Series.pdf
lecture_6_-_fourier_series_0.pdf
Fourier 3
Fourier_Series.pptx
Unit vii
mukul pptx 2.pptx mathematics laplace pptx engineering mathematics 2
Fourier series example
Find the compact trigonometric Fourier series for the periodic signal.pdf
furrier's law application with picture .
fourier series
Mathematics basics
PS.pptx
half range sine and cosine series.pptx(Test for Convergence.pptx(Sequence and...
Fourier series question for a periodic signalSolutionFourier s.pdf
TPDE_UNIT II-FOURIER SERIES_PPT.pptx
Network analysis & synthesis Fourier Series
Ad

More from Faiza Saher (8)

PPTX
Basic CCNA course 1 (CISCO SYSTEMS).pptx
PPT
Lecture 05
PPT
Chapter3
PPT
PPT
Lecture 1 wireless
PDF
Modern digital and analog communications systems by b p-lathi-solutions-manual
PDF
1010n3a
PDF
Fourier series 1
Basic CCNA course 1 (CISCO SYSTEMS).pptx
Lecture 05
Chapter3
Lecture 1 wireless
Modern digital and analog communications systems by b p-lathi-solutions-manual
1010n3a
Fourier series 1

Recently uploaded (20)

PPTX
PLASMA AND ITS CONSTITUENTS 123.pptx
PDF
Myanmar Dental Journal, The Journal of the Myanmar Dental Association (2015).pdf
PPTX
Climate Change and Its Global Impact.pptx
PPTX
ACFE CERTIFICATION TRAINING ON LAW.pptx
PDF
anganwadi services for the b.sc nursing and GNM
PPTX
Key-Features-of-the-SHS-Program-v4-Slides (3) PPT2.pptx
PDF
Nurlina - Urban Planner Portfolio (english ver)
PDF
LIFE & LIVING TRILOGY - PART - (2) THE PURPOSE OF LIFE.pdf
PPTX
pharmaceutics-1unit-1-221214121936-550b56aa.pptx
PDF
PUBH1000 - Module 6: Global Health Tute Slides
PDF
Journal of Dental Science - UDMY (2021).pdf
PDF
African Communication Research: A review
PDF
Health aspects of bilberry: A review on its general benefits
PPTX
Power Point PR B.Inggris 12 Ed. 2019.pptx
PDF
Physical education and sports and CWSN notes
PDF
fundamentals-of-heat-and-mass-transfer-6th-edition_incropera.pdf
PPTX
Diploma pharmaceutics notes..helps diploma students
PDF
Skin Care and Cosmetic Ingredients Dictionary ( PDFDrive ).pdf
PDF
Hospital Case Study .architecture design
PPTX
Cite It Right: A Compact Illustration of APA 7th Edition.pptx
PLASMA AND ITS CONSTITUENTS 123.pptx
Myanmar Dental Journal, The Journal of the Myanmar Dental Association (2015).pdf
Climate Change and Its Global Impact.pptx
ACFE CERTIFICATION TRAINING ON LAW.pptx
anganwadi services for the b.sc nursing and GNM
Key-Features-of-the-SHS-Program-v4-Slides (3) PPT2.pptx
Nurlina - Urban Planner Portfolio (english ver)
LIFE & LIVING TRILOGY - PART - (2) THE PURPOSE OF LIFE.pdf
pharmaceutics-1unit-1-221214121936-550b56aa.pptx
PUBH1000 - Module 6: Global Health Tute Slides
Journal of Dental Science - UDMY (2021).pdf
African Communication Research: A review
Health aspects of bilberry: A review on its general benefits
Power Point PR B.Inggris 12 Ed. 2019.pptx
Physical education and sports and CWSN notes
fundamentals-of-heat-and-mass-transfer-6th-edition_incropera.pdf
Diploma pharmaceutics notes..helps diploma students
Skin Care and Cosmetic Ingredients Dictionary ( PDFDrive ).pdf
Hospital Case Study .architecture design
Cite It Right: A Compact Illustration of APA 7th Edition.pptx

Fourier series

  • 1. Fourier Series Samara Laliberte Muhammad Shams Dept. of Mathematics Dept. of Mathematics UMass Dartmouth UMass Dartmouth Dartmouth MA 02747 Dartmouth MA 02747 Email: [email protected] Email: [email protected] Abstract The use of a sum of complex exponential or trigonometric periodic functions to approximate a function to almost exact precision. This tactic will result in minimal error when comparing it to the original function. Using a Fourier series allows a continuous, bounded, function to be evaluated, with uniform convergence through-out. This makes using them a useful tool in analyzing otherwise complicated functions. Starting with a simple Fourier sum of sines, a function can be almost exactly replicated as the number of coefficients are maximized. The same holds with the Fourier sum of exponential functions. This process is highly effective for continuous functions, but involves a larger error when handling discontinuous functions. The focus of this project is to understand these approximations and why there is error. 1 Uses for Fourier approximation Fourier series are used to approximate complex functions in many different parts of science and math. They are helpful in their ability to imitate many different types of waves: x-ray, heat, light, and sound. Fourier series are used in many cases to analyze and interpret a function which would otherwise be hard to decode. 2 Approximating the Square Wave Function using Fourier Sine Series 2.1 Square Wave Function The first function we examined which can be approximated by a Fourier series is the square wave function. This is a function which alternates between two function values periodically and instantaneously, as if the function was switched from on to off. The Square Wave function is also commonly called a step function. The function graphed from x = −1 to x = 1 is shown in Figure 1. By summing sine waves it is possible to replicate the square wave function almost exactly, however, there is a discontinuity in this periodic function, meaning the Fourier series will also have a discontinuity. It is clear in Figure 1 that the discontinuity will appear at x = 0, where the functions jumps from -1 to 1. The equation of this function is represented in Equation 1. 1
  • 2. F IGURE 1: S QUARE WAVE F UNCTION −1 for − 1 ≤ x < 0 , F (x) = (1) 1 for 0 ≤ x ≤ 1 , 2.2 Fourier Sine Series The Fourier sum of sines can be used to accurately approximate the square wave function. The more points plotted and coefficients used the closer the Fourier sum will be to looking like the square wave function. The equation of Fourier sine series used in this case is represented in Equation 2. j represents the number of coefficients used. When using the sum of sines, only odd numbered values are used, otherwise you would be adding zero every other term. The starting point, where j=1 is shown in Figure 2. ∞ F (x) = 4/π 1/jsin(jπx) (2) j=odd 2
  • 3. F IGURE 2: S INE WAVE 2.3 Approximating with Fourier Sine Series A MATLAB code is used to plot the square wave function along with the Fourier sine series in order to compare the accuracy and error between the approximation and the actual function. MATLAB C ODE FOR F OURIER S UM , S QUARE WAVE AND E RROR N = Number of points plotted x = linspace(-1,1,N); f = sign(x); sum = 0.*x; M = number of coefficients for j = 1:2:M sum = sum + 4/pi*sin(j*pi*x)/j; end plot(x, sum, ’r’) hold on plot(x,f,’LineWidth’,2) hold on error = abs(sum-F) Plot(x, error); By changing N , the number of points plotted, and M , the number of coefficients, the accuracy of the approximation changes. For our purposes we kept the number of points plotted at 1000 to ensure the most precise graph for the number of coefficients used. We started using one coefficient, setting M equal to 1. The Fourier Series compared to the actual function is shown in Figure 3. Evaluating the function for M = 10 (Figure 4), M = 50 (Figure 5), M = 100 (Figure 6) and M = 1000 (Figure 7) it is easy to see how the series is almost perfectly approximated, but with visible discontinuity. F IGURE 3: M = 1 C OEFFICIENT F IGURE 4: M = 10 C OEFFICIENTS 3
  • 4. F IGURE 5: M = 50 C OEFFICIENTS F IGURE 6: M = 100 C OEFFICIENTS F IGURE 7: M = 1000 C OEFFICIENTS 2.4 Error There is visible error at the points: x = 1, x = −1, and x = 0, i.e where the function is discontinuous. Although this error appears to be minimal as more coefficients are used, it never disappears. This occurrence is referred to as the Gibb’s Phenomenon. J. Willard Gibbs discovered that there will always be an overshoot at the points of discontinuity when using Fourier Series approximation. The error in M = 50 (Figure 8) and M = 1000 (Figure 9) noticeably decreases to almost zero where the function is a straight line. With that, there remains the same amount of error at the three discontinuous points. This is a product of using Fourier Series to approximate discontinuous functions. 4
  • 5. F IGURE 8: E RROR AT M = 50 C OEFFICIENTS F IGURE 9: E RROR AT M = 1000 C OEFFICIENTS 3 Fourier Approximation of a Line 3.1 The Line Approximated The next function we used a Fourier sum of sines to approximate was a line. We chose the interval: 0 to 2π. The equation of the line is represented in Equation 3. The graph of the basic line is seen in Figure 10. F (x) = 1/2(π − x) (3) Figure 10: Graph of F(x) 3.2 Sine Series Used to Approximate line The Sine Series used to approximate this function is slightly different than the first one used. The reasoning for this is that the original sine curve needs to be multiplied by and evaluated at different values in order to shape it into this function. Also, the curve is flipped over the x-axis in comparison to the curve in Figure 2. This allows it to start at π and move to 0, while the first function had to start at −1 and move to 1. The Sine series used is shown in Equation 4. 5
  • 6. Just as before, the number of values used for j effect the accuracy of the approximation. The graph of the basic sine wave when j = 1 is represented in Figure 11. inf F(x) = j=odd (1/j)sin(jx) (4) Figure 11: Initial Sine Wave 3.3 Approximating F(x) To compare the graphs, we used a MATLAB code similar to the one used for our first function. There is a change in the boundary and the function we are using to approximate the line. The value of M ,once again, changes the number of coefficients plotted and the number of points plotted was set at 100. Increasing the value of M allows the line to be almost exactly replicated, but the Gibb’s Phenomenon remains; there is a discontinuity at the endpoints. The starting point of the sine series is compared with the function it will eventual replicate in Figure 12. The function and it’s approximation are shown at M = 10 (Figure 13), M = 50 (Figure 14), M = 100 (Figure 15) and M = 100 (Figure 16). MATLAB Code for Fourier Sine Series, Line, and Error x = linspace(0,2*pi,100); sum = 0.*x; M = number of coefficients used for j = 1:M sum = sum + ((1/j)*sin(j*x)); end F = ((1/2)*(pi-x)); plot(x, sum,’r’); hold on plot(x, F, ’LineWidth’, 2); hold on error = abs(sum - F); plot(x, error,’m’) hold on 6
  • 7. Figure 12: M = 1 Coefficient Figure 13: M = 10 Coefficients Figure 14: M = 50 Coefficients Figure 15: M = 100 Coefficients Figure 16: M = 1000 Coefficients 3.4 Error The graph at M = 1000 shows the line is almost perfectly approximated, but there is a discontinuity at the ends. The reason for this discontinuity is not the same as in the first case. The function here is continuous and bounded, but 7
  • 8. not periodic. Due to the sine function being periodic, it cannot approximate a non-periodic function with complete accuracy. The error between the function and it’s approximation is shown at M = 50 (Figure 17) and M = 1000 (Figure 18). The error becomes fades through out the line but does not change at the ends, again, showing the Gibb’s Phenomenon. Figure 17: Error at M = 50 Figure 18: Error at M = 1000 4 Fourier Exponential Approximation 4.1 The Line Approximated The next function we approximated was another line. We chose the interval −1 to 1. The equation of the line is represented in Equation 5. F(x) = x (5) We used this simple line to show a different way of approximating that works just as well. The Fourier series we used to approximate this line was not a sum of sine waves, but instead a sum of complex exponential functions. The new function used to approximate the line is seen in equation 6. N F(x) = −N f (x)ei(kπx) (6) In equation 6, k is used for the number of coefficients. 4.2 Approximating f(x) = x In order to actually approximate f (x) = x using fourier exponential coefficients we created a set of MATLAB codes. They were to be run one after the other as each code called some parameter from the previous one. MATLAB Codes for Exponential Coefficients clc np = 100 nc = 30 k = -nc:nc; x = linspace(-1,1,np); f = @(x) x; for j = 1:length(k) C = @(x) f(x).*exp(-1i*x*k(j)*pi); 8
  • 9. fk(j) = quad(C,-1,1,); end plot(k, fk); This first code is used to calculate the coefficients to be used later. function F = reconstruction(y,fk,k) for x = 1:length(y) F(x) = 0; for j= 1:length(k) F(x) = F(x) + fk(j)*exp(1i*k(j)*y(x)*pi); end end end This second code is to reconstruct the function we are approximating using the coefficients from the earlier code. clc np = 100; nc = 5; f = @(x) x; npy = 101; x = linspace(-1,1,np); y = linspace(-1,1,npy); k = -nc:nc; for j = 1:length(k) C = @(x) f(x).*exp(-1i*pi*x*k(j)); fk(j) = quad(C,-1,1,1e-12); end F = reconstructionexpo(y,fk,k); F = F./(2); plot(x,f(x),’--b’) hold on plot(y,F,’-xr’) This last code takes the output from the last two codes and actually approximates a function using the exponential coefficients. Our code uses nc to represent the number of coefficients used. By increasing it we can better approximate a function. The graph of the function we are approximating and the exponential function used to approximate with nc = 1 can be seen in figure 19, nc = 10 in figure 20, nc = 25 in figure 21, and nc = 100 in figure 22. Figure 19: nc = 1 Coefficient Figure 20: nc = 10 Coefficients 9
  • 10. Figure 21: nc = 25 Coefficients Figure 22: nc = 100 Coefficients You can see that even with an exponential function used for approximation, the Gibbs phenomenon persists along the boundaries. You can also see that as the number of coefficients was increased the approximation got better except that in figure 22, the approximation appears to be worse than in figure 21. This would be because, with the quad function we used in MATLAB to integrate the function we see a problem as the number of coefficients exceeds 25. This can be dealt with by changing the tolerance. 5 Conclusions To continue researching Fourier Series there are a few areas and specific problems that we would address. With our code for exponential Fourier series we would want to look into using different quad functions in order to decrease the error that is present after the coefficients reach higher than 25. Also we would look into how post processing is done. 6 Acknowledgements Thank you Sigal Gottlieb and Saeja Kim for continuing to advise us on this project and help us when we were totally and utterly confused. 7 References [1] Sigal Gottlieb, Jae-Hun Jung, and Saeja Kim. A Review Article of David Gottlieb’s Work on the Resolution of the Gibbs Phenomenon, volume x of Communications in Computational Physics. Global-Science Press, 2010. 10