SS Notes
Signal processing in communication systems — modulation, demodulation, channel effects, equalization, and digital communication fundamentals.
Introduction
Communication systems form the backbone of our connected world — every phone call, text message, WiFi connection, satellite broadcast, and fiber-optic internet link relies on signal processing principles. At its core, communication is about transmitting information from one point to another reliably, and every concept in signals and systems — from Fourier transforms to filtering to convolution — plays a crucial role in making this happen.
As a B.Tech student, understanding communication systems gives you one of the most direct applications of everything you learn in signals and systems. The transmitter shapes signals, the channel distorts them, and the receiver must recover the original information using all the tools at our disposal.
Basic Communication System Model
Every communication system can be broken into five fundamental blocks:
Information Source → Transmitter → Channel → Receiver → Destination
The transmitter converts the message signal into a form suitable for transmission (modulation). The channel introduces noise, attenuation, and distortion. The receiver attempts to recover the original message (demodulation and detection).
Mathematically, the received signal is:
$$r(t) = s(t) * h(t) + n(t)$$
where $s(t)$ is the transmitted signal, $h(t)$ is the channel impulse response, $*$ denotes convolution, and $n(t)$ is additive noise (typically modeled as white Gaussian noise).
Analog Modulation
Amplitude Modulation (AM)
In AM, the message signal $m(t)$ varies the amplitude of a high-frequency carrier:
$$s_{AM}(t) = [A_c + m(t)]\cos(2\pi f_c t)$$
where $A_c$ is the carrier amplitude and $f_c$ is the carrier frequency. The modulation index is:
$$\mu = \frac{\max|m(t)|}{A_c}$$
For $\mu \leq 1$, the envelope of $s_{AM}(t)$ follows $m(t)$ exactly, allowing simple envelope detection at the receiver.
In the frequency domain, AM shifts the message spectrum to be centered around $\pm f_c$:
$$S_{AM}(f) = \frac{A_c}{2}[\delta(f-f_c) + \delta(f+f_c)] + \frac{1}{2}[M(f-f_c) + M(f+f_c)]$$
The bandwidth required is $B_{AM} = 2W$ where $W$ is the message bandwidth. This is a key trade-off — AM is simple but spectrally inefficient.
Frequency Modulation (FM)
In FM, the message varies the instantaneous frequency of the carrier:
$$s_{FM}(t) = A_c \cos\left(2\pi f_c t + 2\pi k_f \int_0^t m(\tau)d\tau\right)$$
where $k_f$ is the frequency sensitivity. The modulation index for a single-tone message $m(t) = A_m\cos(2\pi f_m t)$ is:
$$\beta = \frac{k_f A_m}{f_m} = \frac{\Delta f}{f_m}$$
Carson's rule estimates the bandwidth:
$$B_{FM} \approx 2(\Delta f + f_m) = 2f_m(\beta + 1)$$
FM provides better noise immunity than AM (at the cost of greater bandwidth) because noise primarily affects amplitude, which FM receivers can reject using limiters.
Digital Modulation Schemes
Binary Phase Shift Keying (BPSK)
BPSK maps bits to two phase states of a carrier:
$$s(t) = \begin{cases} A\cos(2\pi f_c t) & \text{for bit '1'} \\ -A\cos(2\pi f_c t) & \text{for bit '0'} \end{cases}$$
The probability of bit error in AWGN is:
$$P_e = Q\left(\sqrt{\frac{2E_b}{N_0}}\right)$$
where $E_b$ is the energy per bit, $N_0$ is the noise power spectral density, and $Q(x) = \frac{1}{2}\text{erfc}(x/\sqrt{2})$.
Quadrature Amplitude Modulation (QAM)
QAM combines amplitude and phase modulation using two orthogonal carriers:
$$s(t) = I(t)\cos(2\pi f_c t) - Q(t)\sin(2\pi f_c t)$$
where $I(t)$ and $Q(t)$ are the in-phase and quadrature components carrying independent data. 16-QAM, 64-QAM, and 256-QAM are used in WiFi and 4G/5G to achieve high spectral efficiency.
Channel Effects and Modeling
Additive White Gaussian Noise (AWGN)
The simplest channel model adds white Gaussian noise with power spectral density $N_0/2$:
$$r(t) = s(t) + n(t)$$
The signal-to-noise ratio determines performance:
$$\text{SNR} = \frac{P_{signal}}{P_{noise}} = \frac{E_b \cdot R_b}{N_0 \cdot B}$$
Multipath Fading
In wireless channels, the transmitted signal arrives via multiple paths with different delays:
$$h(t) = \sum_{i=1}^{L} \alpha_i \delta(t - \tau_i)$$
This causes frequency-selective fading — some frequencies are attenuated while others are enhanced. The coherence bandwidth $B_c \approx 1/\tau_{max}$ determines whether fading is flat or frequency-selective.
Inter-Symbol Interference (ISI)
When the channel's impulse response spans multiple symbol periods, symbols interfere with each other. The Nyquist criterion for zero-ISI states that the overall pulse shape $p(t)$ must satisfy:
$$p(nT_s) = \begin{cases} 1 & n = 0 \\ 0 & n \neq 0 \end{cases}$$
The raised-cosine filter satisfies this criterion with controlled bandwidth.
Channel Capacity: Shannon's Theorem
The maximum rate at which information can be transmitted reliably over a noisy channel is given by Shannon's channel capacity:
$$C = B \log_2\left(1 + \frac{S}{N}\right) \text{ bits/second}$$
where $B$ is the bandwidth in Hz and $S/N$ is the linear signal-to-noise ratio. This is one of the most profound results in information theory — it tells us the fundamental limit of any communication system, regardless of the modulation or coding scheme used.
Equalization
Channel equalization reverses the distortion introduced by the channel. If the channel has transfer function $H(f)$, the zero-forcing equalizer applies:
$$G_{ZF}(f) = \frac{1}{H(f)}$$
In practice, adaptive equalizers using the LMS or RLS algorithms are used because the channel changes over time. The MMSE (minimum mean-square error) equalizer provides better performance by balancing noise enhancement against residual ISI.
Matched Filtering and Optimal Detection
The optimal receiver for detecting a known signal in AWGN uses a matched filter — a filter whose impulse response is the time-reverse of the transmitted pulse:
$$h_{MF}(t) = s(T - t)$$
This maximizes the output SNR at the sampling instant. The output SNR of the matched filter is:
$$\text{SNR}_{max} = \frac{2E}{N_0}$$
where $E$ is the signal energy. This result is fundamental — it says that optimal detection depends only on signal energy, not on the particular waveform shape.
Key Takeaways
- Communication is fundamentally about combating noise and distortion to transfer information reliably
- AM shifts the message spectrum to a carrier frequency; FM encodes information in frequency variations
- Digital modulation (BPSK, QAM) maps discrete symbols to signal parameters, with error probability depending on $E_b/N_0$
- Channel effects include additive noise, multipath fading, and inter-symbol interference
- Shannon's capacity theorem sets the ultimate limit on reliable communication rate
- Matched filters maximize SNR for optimal detection in AWGN channels
- Equalization combats channel distortion using inverse filtering or adaptive algorithms
Exam Focus
Revise definitions, diagrams, examples, and short-answer points for Communication Systems.
Interview Use
Prepare one clear explanation, one practical example, and one common mistake for this Signals & Systems topic.
Search Terms
signal-systems, signals & systems, signal, systems, applications, communication, communication systems
Related Signals & Systems Topics