Unit 3.2: Exponential Fourier Series#
Colophon#
An annotatable worksheet for this presentation is available as Worksheet 3.
The source code for this page is fourier_series/2/exp_fs1.md.
You can view the notes for this presentation as a webpage (Unit 3.2: Exponential Fourier Series).
This page is downloadable as a PDF file.
This section builds on our study of Unit 3.1: Trigonometric Fourier Series.
Trigonometric Fourier series uses integration of a periodic signal multiplied by sines and cosines at the fundamental and harmonic frequencies. If performed by hand, this can a painstaking process. Even with the simplifications made possible by exploiting waveform symmetries, there is still a need to integrate cosine and sine terms, be aware of and able to exploit the trigonometrc identities, and the properties of orthogonal functions before we can arrive at the simplified solutions. This is why I concentrated on the properties and left the computation to a computer.
However, by exploiting the exponential function
The result is called the Exponential Fourier Series.
Agenda#
Exponents and Euler’s Equation
The Exponential Fourier series
Symmetry in Exponential Fourier Series
Example
The Exponential Function #
You should already be familiar with
because it appears in the solution of differential equations.It is also a function that appears in the definition of the Laplace and Inverse Laplace Transform.
It pops up again and again in tables and properies of the Laplace Transform.
Case when a is real.#
When
clear all
setappdata(0, "MKernel_plot_format", 'svg')
%% The decaying exponential
t=linspace(-1,2,1000);
figure
plot(t,exp(t),t,exp(0.*t),t,exp(-t))
axis([-1,2,-1,8])
title('exp(at) -- a real')
xlabel('t (s)')
ylabel('exp(t) and exp(-t)')
legend('exp(t)','exp(0)','exp(-t)')
grid
hold off
You can regenerate this image generated with this Matlab script: expon.m.
When
the response is a decaying exponential (red line in plot)When
– essentially a model of DCWhen
the response is an unbounded increasing exponential (blue line in plot)
Case when a is imaginary#

This is the case that helps us to simplify the computation of sinusoidal Fourier series.
It was Leonhard Euler who discovered the formula visualized above.
Some important values of #
These are useful when simplifying expressions that result from integrating functions that involve the imaginary exponential
Give the following:
when when when when when
Case where is complex#
We shall not say much about this case except to note that the Laplace transform equation includes such a number. The variable
is a complex exponential.
The consequences of a complex
Two Other Important Properties#
By use of trig. identities, it is relatively straight forward to show that:
and
We can use this result to convert the Trigonometric Fourier Series into an Exponential Fourier Series which has only one integral term to solve per harmonic.
The Exponential Fourier Series#
As as stated in the notes on the Trigonometric Fourier Series any periodic waveform
Let us replace the
Grouping terms with same exponents#
New coefficients#
The terms in parentheses are usually denoted as
The Exponential Fourier Series is
or more compactly
Important
The
Evaluation of the complex coefficients#
The coefficients are obtained from the following expressions:
or
These are much easier to derive and compute than the equivalent Trigonemetric Fourier Series coefficients[1].
Trigonometric Fourier Series from Exponential Fourier Series#
By substituting
so
Similarly
so
Thus, we can easily go back to the trigonometric Fourier series if we need to.
Symmetry in exponential Fourier series#
Since the coefficients of the exponential Fourier series are complex numbers, we can use symmetry to determine the form of the coefficients and thereby simplify the computation of series for wave forms that have symmetry.
Even Functions#
For even functions, all the coefficients
Proof
Recall
and
From knowledge of the trig. fourier series, even functions have no sine terms so the
Odd Functions#
For odd functions, all coefficients
By a similar argument, all odd functions have no cosine terms so the
Half-wave symmetry#
If there is half-wave symmetry,
Proof
From trigonometric Fourier series, if there is half-wave symmetry, all even harnonics are zero, thus both
No symmetry#
If there is no symmetry the exponential Fourier series of
Relation of to #
Example 1#
Compute the Exponential Fourier Series for the square wave shown below assuming that

Will be solved by hand in Class#
Some questions for you#
Square wave is an [odd/even/neither] function?
DC component is [zero/non-zero]?
Square wave [has/does not have] half-wave symmetry?
Hence
[?]Coefficients
are [real/imaginary/complex]?Subscripts
are [odd only/even only/both odd and even]?What is the integral that needs to be solved for
?
Solution to example 1#
The integral is
For simplicity let
For
Exponential Fourier series for the square wave with odd symmetry#
From the definition of the exponential Fourier series
the exponential Fourier series for the square wave with odd symmetry is
Note the sign change in first two terms. This is due to the fact that
E.g. since
Trig. Fourier series from exponential Fourier series#
Since
gathering terms at each harmonic frequency gives
Computing coefficients of Exponential Fourier Series in MATLAB#
Example 2#
Verify the result of Example 1 using MATLAB.
Solution to example 2#
Solution: See efs_sqw.m.
EFS_SQW#
Calculates the Exponential Fourier for a Square Wave with Odd Symmetry.
cd ../matlab
format compact;
setappdata(0, "MKernel_plot_format", 'svg')
Set up parameters
syms t A;
tau = 1;
T0 = 2*pi; % w = 2*pi*f -> t = 2*pi/omega
k_vec = [-5:5];
Define f(t)
IMPORTANT: the signal definition must cover [0 to T0]
xt = A*(heaviside(t)-heaviside(t-T0/2)) - A*(heaviside(t-T0/2)-heaviside(t-T0));
Compute EFS
[X, w] = FourierSeries(xt, T0, k_vec)
Plot the numerical results from MATLAB calculation.
Convert symbolic to numeric result
Xw = subs(X,A,1);
Plot
subplot(211)
stem(w,abs(Xw), 'o-');
title('Exponential Fourier Series for Square Waveform with Odd Symmetry')
xlabel('Hamonic frequencies: k\Omega_0 (rad/sec)');
ylabel('|c_k|');
subplot(212)
stem(w,angle(Xw), 'o-');
xlabel('Hamonic frequencies: k\Omega_0 (rad/sec)');
ylabel('\angle c_k [radians]');
Summary#
Exponents and Euler’s Equation
The exponential Fourier series
Symmetry in Exponential Fourier Series
Example
Answers to in-class problems#
Some important values of - Solution#
When
:When
:When
:When
:When
:
It is also worth being aware that
Some answers for you#
Square wave is an odd function!
DC component is zero!
Square wave has half-wave symmetry!
Hence
Coefficients
are imaginary!Subscripts
are odd only!What is the integral that needs to be solved for
?