Fourier Analysis: Deconstructing Signals
Recall from our previous discussion that complex exponentials are eigenfunctions of LTI systems.
Continuous-Time \(x(t) = e^{st} \quad \xrightarrow{\text{LTI System}} \quad y(t) = H(s) e^{st}\)
Discrete-Time \(x[n] = z^n \quad \xrightarrow{\text{LTI System}} \quad y[n] = H(z) z^n\)
This means:
The BIG Question: If we can represent any signal as a sum (or integral) of these simple complex exponentials, then analyzing complex LTI systems becomes a simple matter of multiplication.
This is exactly what Fourier Analysis enables!

Mathematica, quae ad calorem deduxi, sunt mihi graviora. (The mathematics that I have derived concerning heat, are to me of greater importance.) — Joseph Fourier
Impact: Revolutionized mathematics and physics, enabling frequency-domain analysis.
The Fourier Series allows us to represent a periodic signal \(x(t)\) with period \(T_0\) (and fundamental frequency \(\omega_0 = 2\pi/T_0\)) as a weighted sum of harmonically related complex exponentials.
\[ x(t) = \sum_{k=-\infty}^{\infty} c_k e^{jk\omega_0 t} \] where the coefficients \(c_k\) are given by: \[ c_k = \frac{1}{T_0} \int_{T_0} x(t) e^{-jk\omega_0 t} dt \] (The integral is over any single period \(T_0\)).
\[ x(t) = a_0 + \sum_{k=1}^{\infty} (a_k \cos(k\omega_0 t) + b_k \sin(k\omega_0 t)) \] where \(a_0 = c_0 = \frac{1}{T_0} \int_{T_0} x(t) dt\) and \(c_k = \frac{1}{2}(a_k - jb_k)\). (For real signals: \(a_k = 2 \text{Re}\{c_k\}\), \(b_k = -2 \text{Im}\{c_k\}\)).
Key Idea: Any periodic signal can be decomposed into a sum of a DC component, a fundamental frequency component, and components at integer multiples (harmonics) of the fundamental frequency.
Let’s synthesize a square wave by summing its Fourier Series components. A square wave is rich in odd harmonics.
\[ x(t)_{\text{square}} = \frac{4}{\pi} \sum_{k \text{ odd}, k \ge 1} \frac{1}{k} \sin(k\omega_0 t) \]
Adjust the number of Harmonics to see how well the approximation matches the ideal square wave.
Fourier Series applies only to periodic signals. What about non-periodic, transient signals? The Fourier Transform (FT) extends this concept to aperiodic signals.
Imagine a periodic signal whose period \(T_0\) approaches infinity (\(T_0 \to \infty\)). As \(T_0 \to \infty\):
Forward Fourier Transform: Transforms a time-domain signal \(x(t)\) into its frequency-domain representation \(X(j\omega)\). \[ X(j\omega) = \int_{-\infty}^{\infty} x(t) e^{-j\omega t} dt \]
Inverse Fourier Transform: Transforms a frequency-domain spectrum \(X(j\omega)\) back into its time-domain signal \(x(t)\). \[ x(t) = \frac{1}{2\pi} \int_{-\infty}^{\infty} X(j\omega) e^{j\omega t} d\omega \]
Interpretation: \(X(j\omega)\) is the spectrum of the signal \(x(t)\), showing how much of each frequency \(\omega\) is present in the signal.
The FT reveals powerful properties crucial for ECE:
Linearity: If \(\mathcal{F}\{x_1(t)\} = X_1(j\omega)\) and \(\mathcal{F}\{x_2(t)\} = X_2(j\omega)\), then \(\mathcal{F}\{ax_1(t) + bx_2(t)\} = aX_1(j\omega) + bX_2(j\omega)\)
Time Shift: If \(\mathcal{F}\{x(t)\} = X(j\omega)\), then \(\mathcal{F}\{x(t-t_0)\} = e^{-j\omega t_0} X(j\omega)\) (A time shift in the time domain corresponds to a phase shift in the frequency domain).
Convolution Property (THE MOST IMPORTANT FOR LTI): If \(y(t) = x(t) * h(t)\) (convolution in time domain), then \(\mathcal{F}\{y(t)\} = Y(j\omega) = X(j\omega) H(j\omega)\) (Convolution in time domain becomes multiplication in frequency domain!)
Here, \(H(j\omega) = \mathcal{F}\{h(t)\}\) is the frequency response of the LTI system.
graph TD
A[Time Domain] -- "Convolution: x(t) * h(t)" --> B["Time Domain Result: y(t)"]
C[Frequency Domain] -- "FT: X(jω), H(jω)" --> D["Frequency Domain Result: Y(jω)"]
A -- FT --> C
B -- FT --> D
C -- Multiplication: X(jω) * H(jω) --> D
style A fill:#a2c4c9,stroke:#333,stroke-width:2px;
style B fill:#a2c4c9,stroke:#333,stroke-width:2px;
style C fill:#fce5cd,stroke:#333,stroke-width:2px;
style D fill:#fce5cd,stroke:#333,stroke-width:2px;
linkStyle 0 stroke:#666,stroke-width:2px;
linkStyle 1 stroke:#333,stroke-width:3px,color:red;
linkStyle 2 stroke:#666,stroke-width:2px;
linkStyle 3 stroke:#666,stroke-width:2px;
linkStyle 4 stroke:#333,stroke-width:3px,color:blue;
Let’s apply a simple Low-Pass Filter (LPF) to a signal composed of two sine waves with different frequencies.
Observe:
Adjust the Cutoff Frequency of the filter. See how the filter attenuates higher frequencies while passing lower frequencies.
Fourier Analysis is fundamental to almost every area of Electrical and Computer Engineering.
1. Communication Systems
2. Audio & Speech Processing
3. Image & Video Processing
4. Circuit Analysis
5. Control Systems
6. Digital Signal Processing (DSP)
In essence, Fourier Analysis is the lens through which engineers view and manipulate signals and systems in the frequency domain.
It is a cornerstone of modern electrical and computer engineering, underpinning technologies from your smartphone to medical imaging, and from radar to robotics.
graph TD
A[Complex Time-Domain Signal] --> B{Fourier Transform}
B --> C[Simple Frequency Components]
C --> D["LTI System Analysis: Multiplication by H(jω)"]
D --> E[Output Frequency Components]
E --> F{Inverse Fourier Transform}
F --> G[System Output in Time-Domain]
style A fill:#DDA0DD,stroke:#333,stroke-width:2px;
style G fill:#DDA0DD,stroke:#333,stroke-width:2px;
style C fill:#ADD8E6,stroke:#333,stroke-width:2px;
style E fill:#ADD8E6,stroke:#333,stroke-width:2px;
style B fill:#8FBC8F,stroke:#333,stroke-width:2px;
style F fill:#8FBC8F,stroke:#333,stroke-width:2px;
style D fill:#F4A460,stroke:#333,stroke-width:2px;