SS Notes
Understanding signal addition — superposition of signals, constructive and destructive interference, and applications in mixing and beamforming.
Introduction
Signal addition is the pointwise summation of two or more signals, and it forms the backbone of linear system theory. When two sound waves meet in air, their pressures add at every point in space. When multiple radio signals arrive at an antenna, their voltages add. When an audio engineer creates a final mix, individual tracks are summed together. The principle of superposition — which defines linear systems — is fundamentally about signal addition: the response to a sum of inputs equals the sum of the individual responses.
Understanding signal addition requires appreciating both the trivial aspects (it is just adding numbers at each time instant) and the subtle consequences (phase relationships determine whether signals reinforce or cancel, and energy addition depends on orthogonality).
Mathematical Definition
For continuous-time signals: $$y(t) = x_1(t) + x_2(t)$$
For discrete-time signals: $$y[n] = x_1[n] + x_2[n]$$
At each time instant $t$ (or index $n$), the output value equals the arithmetic sum of all input values at that same instant. This is an instantaneous, memoryless operation — the output at time $t$ depends only on the inputs at time $t$, not on any past or future values.
Algebraic Properties
Signal addition inherits the properties of real number addition:
- Commutative: $x_1(t) + x_2(t) = x_2(t) + x_1(t)$
- Associative: $(x_1(t) + x_2(t)) + x_3(t) = x_1(t) + (x_2(t) + x_3(t))$
- Identity element: $x(t) + 0 = x(t)$ (adding zero changes nothing)
- Inverse: $x(t) + (-x(t)) = 0$ (a signal plus its negation cancels)
These properties mean the order of addition does not matter, and you can group additions in any convenient way.
Constructive and Destructive Interference
The most physically interesting phenomenon in signal addition occurs when adding sinusoids of the same frequency:
$$y(t) = A_1\cos(\omega t + \phi_1) + A_2\cos(\omega t + \phi_2)$$
The result is another sinusoid at the same frequency: $$y(t) = A_R\cos(\omega t + \phi_R)$$
where the resultant amplitude is: $$A_R = \sqrt{A_1^2 + A_2^2 + 2A_1 A_2\cos(\phi_1 - \phi_2)}$$
The phase difference $\Delta\phi = \phi_1 - \phi_2$ determines the type of interference:
Constructive interference ($\Delta\phi = 0$, in phase): $A_R = A_1 + A_2$ — maximum reinforcement
Destructive interference ($\Delta\phi = \pi$, anti-phase): $A_R = |A_1 - A_2|$ — maximum cancellation
Complete cancellation: When $A_1 = A_2$ and $\Delta\phi = \pi$, the signals perfectly cancel: $A_R = 0$
Quadrature ($\Delta\phi = \pi/2$): $A_R = \sqrt{A_1^2 + A_2^2}$ — geometric mean, no cross-term
Phasor Representation
Adding same-frequency sinusoids is elegantly handled using phasors. Represent each sinusoid as a complex number (phasor): $$\tilde{X}_1 = A_1 e^{j\phi_1}, \quad \tilde{X}_2 = A_2 e^{j\phi_2}$$
The resultant phasor is simply the vector sum: $\tilde{Y} = \tilde{X}_1 + \tilde{X}_2$
The amplitude $A_R = |\tilde{Y}|$ and phase $\phi_R = \angle\tilde{Y}$.
Frequency-Domain Perspective
Since the Fourier Transform is linear: $$\mathcal{F}\{x_1(t) + x_2(t)\} = X_1(j\omega) + X_2(j\omega)$$
Spectra add directly. If $x_1(t)$ contains frequencies in the range 0-1 kHz and $x_2(t)$ contains frequencies in the range 2-3 kHz, their sum contains both frequency bands — no new frequencies are created. This is fundamentally different from signal multiplication, which does create new frequencies.
Energy of Summed Signals
The energy of the sum is: $$E_y = \int_{-\infty}^{\infty}|x_1(t) + x_2(t)|^2 dt$$
Expanding the square: $$E_y = \int|x_1|^2 dt + \int|x_2|^2 dt + 2\int x_1(t)x_2(t)dt = E_1 + E_2 + 2\langle x_1, x_2 \rangle$$
The cross-term $\langle x_1, x_2 \rangle$ is the inner product of the two signals. The energy is $E_1 + E_2$ only if the signals are orthogonal ($\langle x_1, x_2 \rangle = 0$).
Orthogonality Examples
Two signals are orthogonal when their inner product is zero. Important cases:
- Sinusoids of different frequencies: $\cos(m\omega_0 t)$ and $\cos(n\omega_0 t)$ for $m \neq n$
- Signals with non-overlapping time support: $x_1(t) = 0$ wherever $x_2(t) \neq 0$
- Walsh functions and Hadamard sequences used in CDMA
For orthogonal signals, energies add as scalars — like the Pythagorean theorem for vectors.
Adding Signals of Different Frequencies
When two sinusoids of different frequencies are added: $$y(t) = \cos(\omega_1 t) + \cos(\omega_2 t) = 2\cos\left(\frac{\omega_1-\omega_2}{2}t\right)\cos\left(\frac{\omega_1+\omega_2}{2}t\right)$$
This produces a beat frequency effect — a fast oscillation at the average frequency, modulated by a slow envelope at half the frequency difference. This is heard as "beats" when two musical instruments play slightly different pitches.
Practical Applications
Audio Mixing: A mixing console sums multiple tracks with individual gain controls: $$y(t) = \sum_{k=1}^{N} c_k \cdot x_k(t)$$
Professional mixers handle 32, 64, or more channels simultaneously.
Active Noise Cancellation (ANC): A microphone captures ambient noise $n(t)$, electronics generate $-n(t)$, and a speaker adds it to the acoustic field: $$y(t) = [s(t) + n(t)] + [-n(t)] = s(t)$$
Perfect cancellation requires exact amplitude matching and phase inversion.
Beamforming: In antenna arrays, signals from multiple elements are summed with appropriate delays. Signals arriving from the desired direction add constructively, while signals from other directions partially or fully cancel.
OFDM (Orthogonal Frequency Division Multiplexing): Used in WiFi and 4G/5G, OFDM adds together many narrowband orthogonal subcarriers. Because they are orthogonal, individual subcarriers can be separated at the receiver despite overlapping in frequency.
Key Takeaways
- Signal addition is pointwise: $y(t) = x_1(t) + x_2(t)$ at each time instant
- No new frequencies are created by addition — spectra add linearly
- Same-frequency sinusoids interfere constructively or destructively based on phase difference
- Energy adds as $E_1 + E_2$ only for orthogonal signals; otherwise cross-terms matter
- Beat frequencies arise from adding two slightly different frequencies
- Signal addition is the foundation of superposition, mixing, noise cancellation, and beamforming
Exam Focus
Revise definitions, diagrams, examples, and short-answer points for Signal Addition.
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, operations, addition, signal addition
Related Signals & Systems Topics