Complex Fourier series example
There are several flavors of Fourier series problem: trigonometric/exponential, analysis/synthesis, plotting partial sums/plotting spectra. Of course, problems just present us an opportunity to explore.
Consider a recified sinusoid $$\begin{align} f(t) = |A \cos(\omega t)| \end{align}$$ for A, ω, t ∈ ℝ, shown in figure 9.2. The fundamental period is T = π/ω, half the unrectified period.
- Perform a complex Fourier analysis on f(t), computing the complex Fourier components c±n.
- Compute and plot the magnitude and phase spectra.
- Convert c±n to trigonometric components an and bn.
The complex Fourier analysis of will be applied in a moment. However, it is convenient to first convert f into an exponential. We can write f over a single period t ∈ [ − T/2, T/2) as $$\begin{align*} |A \cos(\omega t)| &= |A| |\cos(\omega t)| \tag{absolute value property} \\ &= |A| \cos(\omega t) \tag{already positive} \\ &= |A| \frac{1}{2} \left(e^{j \omega t} + e^{-j \omega t}\right) \tag{Euler}. \end{align*}$$
Applying Fourier analysis à la with harmonic frequency ωn = 2πn/T, $$\begin{align*} c_{n} &= \frac{1}{T} \int_{-T/2}^{T/2} f(t) e^{-j \omega_n t} \diff t \\ &= \frac{1}{T} \int_{-T/2}^{T/2} |A| \frac{1}{2} \left(e^{j \omega t} + e^{-j \omega t}\right) e^{-j \omega_n t} \diff t \\ &= \frac{|A|}{2 T} \int_{-T/2}^{T/2} \left(e^{j \omega t} + e^{-j \omega t}\right) e^{-j \omega_n t} \diff t\\ &= \frac{|A|}{2 T} \int_{-T/2}^{T/2} \left(e^{j (\omega - \omega_n) t} + e^{-j (\omega + \omega_n) t}\right) \diff t \\ &= \frac{|A|}{2 T} \left.\left( \frac{1}{j (\omega - \omega_n)} e^{j (\omega - \omega_n) t} - \frac{1}{j (\omega + \omega_n)} e^{-j (\omega + \omega_n) t} \right)\right|_{-T/2}^{T/2} \\ &= \frac{|A|}{2 T} \left( \frac{1}{j (\omega - \omega_n)} e^{j (\omega - \omega_n) T/2} - \frac{1}{j (\omega + \omega_n)} e^{-j (\omega + \omega_n) T/2} + \right. \\ &\left.-\frac{1}{j (\omega - \omega_n)} e^{-j (\omega - \omega_n) T/2} + \frac{1}{j (\omega + \omega_n)} e^{j (\omega + \omega_n) T/2} \right) \\ &= \frac{|A|}{j 2 T (\omega - \omega_n)} \left( e^{j (\omega - \omega_n) T/2} - e^{-j (\omega - \omega_n) T/2} \right) + \\ &+\frac{|A|}{j 2 T (\omega + \omega_n)} \left( e^{j (\omega + \omega_n) T/2} - e^{-j (\omega + \omega_n) T/2} \right)\\ &= \frac{|A|}{T (\omega - \omega_n)} \sin((\omega - \omega_n) T/2) + \frac{|A|}{T (\omega + \omega_n)} \sin((\omega + \omega_n) T/2). \end{align*}$$
This can be simplified further if we substitute T = π/ω and ωn = 2πn/T = 2nω, $$\begin{align*} c_{\pm n} &= \frac{|A|}{\pi (1 - 2 n)} \sin((1 - 2 n) \pi/2) + \frac{|A|}{\pi (1 + 2 n)} \sin((1 + 2 n) \pi/2). \end{align*}$$
Using a product-to-sum trigonometric identity (), this further simplifies to $$\begin{align} c_{n} &= \frac{- 2 |A|}{\pi (4 n^2 - 1)} \cos(\pi n), \end{align}$$ which, for n odd or even, $$\begin{align} c_{n} &= \begin{cases} \frac{2 |A|}{\pi (4 n^2 - 1)} & n\ \text{odd} \\ \frac{- 2 |A|}{\pi (4 n^2 - 1)} & n\ \text{even}. \end{cases} \end{align}$$
Let’s continue in Python. Load Python packages as follows:
import numpy as np
import matplotlib.pyplot as plt
import sympy as sp
Define the symbolic variables as follows:
= sp.symbols("A, T", real=True, positive=True)
A, T = sp.symbols("t, w, wn", real=True)
t, w, wn = sp.symbols("n", integer=True) n
Define the function f as a symbolic expression:
= sp.Abs(A) * sp.cos(w * t)
f = f.rewrite(sp.exp)
f = {w: sp.pi / T, wn: 2 * sp.pi * n / T} # Properties props
Compute the Fourier coefficients cn as follows:
= sp.integrate(1/T *
c_n * sp.exp(-sp.I * wn * t),
f.subs(props) -T / 2, T / 2)
(t, ).subs(props).simplify()
$\displaystyle \begin{cases} \frac{A}{2} & \text{for}\: T = - \frac{T}{2 n} \vee T = \frac{T}{2 n} \\- \frac{2 \left(-1\right)^{n} A}{\pi \left(4 n^{2} - 1\right)} & \text{otherwise} \end{cases}$
The first piecewise condition is impossible because n is an integer. (SymPy should have caught this.) The second condition obtains for all n. We see that the sign changes with n even or odd. Manually extracting the second case, we have
= c_n.args[1][0] c_n
We will need the positive n and negative n coefficients separately. Let’s define them as follows:
= c_n.subs(n, sp.Abs(n))
c_n_pos = c_n.subs(n, -sp.Abs(n)) c_n_neg
Let’s compute the harmonic amplitude |Cn| and phase ϕn as follows:
= 2 * sp.sqrt(c_n_pos * c_n_neg)
C_n = sp.atan2(sp.im(c_n), sp.re(c_n)) phi_n
$\displaystyle \frac{4 A}{\pi \left|{4 n^{2} - 1}\right|}$
$\displaystyle \pi \left(1 - \theta\left(- \frac{2 \left(-1\right)^{n} A}{\pi \left(4 n^{2} - 1\right)}\right)\right)$
Here θ is the Heaviside step function (0 for negative arguments and 1 for positive arguments). The harmonic amplitude and phase can be plotted if we lambdify them as follows:
= sp.lambdify((A, T, n), C_n, "numpy")
C_n_fn = sp.lambdify((A, T, n), phi_n, "numpy") phi_n_fn
Letting A = 1 and T = 1, let’s plot the harmonic amplitude and phase for the first 10 harmonics as follows:
= np.arange(0, 11)
n_ = 1, 1
A_, T_ = C_n_fn(A_, T_, n_)
C_n_ = phi_n_fn(A_, T_, n_)
phi_n_ = plt.subplots(2, 1, sharex=True)
fig, ax 0].stem(n_, C_n_)
ax[0].set_ylabel(r"$|C_n|$")
ax[1].stem(n_, phi_n_)
ax[1].set_ylabel(r"$\angle C_n$")
ax[1].set_xlabel(r"$n$")
ax[ plt.show()
Now we convert the complex Fourier series coefficients cn into real Fourier series coefficients an and bn as follows:
= 2 * c_n.subs(n, 0)
a_0 = (c_n_pos + c_n_neg).simplify()
a_n = (sp.I * (c_n_pos - c_n_neg)).simplify() b_n
$\displaystyle \frac{4 A}{\pi}$
$\displaystyle - \frac{4 \left(-1\right)^{\left|{n}\right|} A}{\pi \left(4 n^{2} - 1\right)}$
0
The result that bn = 0 is expected because the function f is even.
Online Resources for Section 9.2
No online resources.