Interference is a fundamental physical phenomenon that demonstrates the superposition principle for linear systems. This principle, which states that the net response to multiple stimuli is the sum of the individual responses, is central to our understanding of wave physics. Interference appears across many domains of physics: in optics where it enables high-precision measurements and holography, in quantum mechanics where it reveals the wave nature of matter, and in acoustics where it forms the basis for noise cancellation technology. The ability of waves to interfere constructively (amplifying each other) or destructively (canceling each other) has profound practical applications, from the anti-reflective coatings on optical elements to the operational principles of interferometric gravitational wave detectors like LIGO. Understanding interference is therefore not just of theoretical interest but crucial for modern technology and experimental physics.
When two wave solutions \(U_1(\mathbf{r})\) and \(U_2(\mathbf{r})\) combine, their superposition gives:
The individual wave intensities are given by \(I_1=|U_1|^2\) and \(I_2=|U_2|^2\). Using this, we can express each complex wave amplitude in polar form, separating its magnitude (related to intensity) and phase:
Substituting these expressions back into our interference equation and performing the algebra, the total intensity becomes:
\[
I=I_1+I_2+2\sqrt{I_1 I_2}\cos(\Delta \phi)
\]
where \(\Delta \phi=\phi_2-\phi_1\) is the phase difference between the waves. This equation is known as the interference formula and contains three terms:
\(I_1\) and \(I_2\): the individual intensities
\(2\sqrt{I_1 I_2}\cos(\Delta \phi)\): the interference term that can be positive or negative
A particularly important special case occurs when the interfering waves have equal intensities (\(I_1=I_2=I_0\)). The equation then simplifies to:
The phase difference \(\Delta \phi\) can be related to the path difference \(\Delta s\) between the two waves. For two waves with the same frequency \(\omega\), we can write their complete phase expressions as:
\[\phi_1(\mathbf{r},t) = \mathbf{k}_1\cdot\mathbf{r} - \omega t + \phi_{01}\]\[\phi_2(\mathbf{r},t) = \mathbf{k}_2\cdot\mathbf{r} - \omega t + \phi_{02}\]
For stationary interference patterns, we typically observe the time-independent phase difference. When the waves travel along similar paths (same direction), this reduces to:
\[\Delta\phi = k\Delta s + \Delta\phi_0\]
where \(\Delta s\) is the path difference and \(\Delta\phi_0\) is any initial phase difference between the sources.
Phase Difference and Path Difference
A path difference \(\Delta s\) corresponds to a phase difference \(k\Delta s=2\pi\Delta s/\lambda\). Path differences of integer multiples of \(\lambda\) result in phase differences of integer multiples of \(2\pi\).
The interference of the spherical and the plane wave (also the one of the two plane waves) give also an interesting result. The intensity resembles to be a snapshot of the shape of the wavefronts of the spherical wave. We can therefore measure the wavefronts of the spherical wave by interfering it with a plane wave. This is also the basic principle behind holography. There we use a reference wave to interfere with the wave that we want to measure. The interference pattern is recorded and can be used to reconstruct the wavefronts of the wave.
A super nice website to try out interference interactively is here.
Coherence
In the earlier consideration we obtained a general description for the phase difference between two waves. TIt is given by and contains the pathlength difference \(\Delta s\) and some intrinsic phase \(\Delta\phi_0\) that could be part of the wave generation process.
\[\Delta\phi = k\Delta s + \Delta\phi_0\]
To observe stationary interference, it is important that these two quantities are also stationary, i.e. the phase relation between the two waves is stationary. This relation between the phase of two waves is called coherence and was assumed in all the examples before.
The above image shows the timetrace of the amplitude of two wave with slightly different frequency. Due to the frequency, the waves run out of phase and have acquired a phase different of \(\pi\) after \(40\) fs.
The temporal coherence of two waves is now defined by the time it takes for the two waves to obtain a phase difference of \(2\pi\). The phase difference between two wave of frequency \(\nu_1\) and \(\nu_2\) is given by
\[
\Delta \phi = 2\pi (\nu_2-\nu_1)(t-t_0)
\]
Here \(t_0\) refers to the time, when thw two waves were perfectly in sync. Lets assume that the two frequencies are seperarated from a central frequency \(\nu_0\) such that
with \(\Delta t=t-t_0\). We can now define the coherence time as the time interval over which the phase shift \(\Delta \phi\) grows to \(2\pi\), i.e. \(\Delta \phi=2\pi\). The coherence time is thus
\[
\tau_{c}=\Delta t =\frac{1}{\Delta \nu}
\]
Thus the temporal coherence and the frequency distribution of the light are intrisincly connected. Monochromatic light has \(\Delta nu=0\) and thus the coherence time is infinitely long. Light with a wide spectrum (white light for example) therefore has and extremly short coherence time.
The coherence time is also connected to a coherence length. The coherence length \(L_c\) is given by the distance light travels within the coherence time \(\tau_c\), i.e.
\[
L_c=c\tau_c
\]
Coherence
Two waves are called coherent, if they exihibit a fixed phase relation in space or time relation over time. It measures their ability to interfer. The main types of coherence are
Temporal Coherence
Measures phase correlation of a wave with itself at different times
Characterized by coherence time \(\tau_c\) and coherence length \(L_c = c\tau_c\)
Related to spectral width: \(\tau_c = 1/\Delta\nu\)
Perfect for monochromatic waves (single frequency)
Limited for broad spectrum sources (like thermal light)
Spatial Coherence
Measures phase correlation between different points in space
Important for interference from extended sources
Determines ability to form interference patterns
Related to source size and geometry
Coherence is a property of the light source and is connected to the frequency distribution of the light. Sources can be:
Fully coherent: ideal laser
Partially coherent: real laser
Incoherent: thermal light
More General Description of Coherence
While the above definition provides an intuitive picture based on frequency spread, we can describe coherence more rigorously using correlation functions. These functions measure how well a wave maintains its phase relationships:
In real physical systems, perfect coherence (constant phase relationship) between waves is rare. Partial coherence describes the degree to which waves maintain a consistent phase relationship over time and space. We can characterize this using correlation functions:
Temporal Coherence The complex degree of temporal coherence is given by:
Besides different frequencies the coherence time can also be affected by phase jumps. The following example shows two waves with the same frequency but multiple phase jumps. The temporal correlation function shows the decoherence due to the phase jumps.
Code
import numpy as npimport matplotlib.pyplot as pltomega0 =1.0# same frequency for both wavestau = np.linspace(0, 500, 200)t = np.linspace(0, 1000, 10000)def generate_waves_with_jumps(t, n_jumps=10):# Create two identical waves wave1 = np.exp(1j* omega0 * t) wave2 = np.exp(1j* omega0 * t) # same frequency# Create regularly spaced jumps within first 500 time units jump_positions = np.linspace(0, 500, n_jumps+1)[:-1] # exclude last point jump_indices = [int(pos *len(t)/t[-1]) for pos in jump_positions] phase_shifts = np.random.uniform(0, 2*np.pi, n_jumps)# Apply phase shifts to wave2 wave2_with_jumps = wave2.copy() current_phase =0for i inrange(n_jumps): start_idx = jump_indices[i]if i < n_jumps-1: end_idx = jump_indices[i+1]else: end_idx =len(t) current_phase += phase_shifts[i] wave2_with_jumps[start_idx:end_idx] *= np.exp(1j* current_phase)return wave1, wave2_with_jumps, jump_positionsdef calc_correlation(wave, tau): g = np.zeros(len(tau), dtype=complex) N =len(wave)for i, dt inenumerate(tau): shift =int(dt *10)if shift >= N: g[i] =0else: g[i] = np.mean(wave[:(N-shift)] * np.conj(wave[shift:]))return g / np.abs(g[0])# Generate waves with 30 jumpswave1, wave2, jump_positions = generate_waves_with_jumps(t, n_jumps=30)wave_total = wave1 + wave2g = calc_correlation(wave_total, tau)fig, (ax1, ax2) = plt.subplots(2, 1, figsize=get_size(10, 8))ax1.plot(t[:2000], np.real(wave1[:2000]), label='Wave 1', alpha=0.9)ax1.plot(t[:2000], np.real(wave2[:2000]), label='Wave 2', alpha=0.9)ax1.plot(t[:2000], np.real(wave_total[:2000]), 'k-', label='Sum', lw=0.5)ax1.set_xlim(0, 200)# Add vertical lines for phase jumps in wave plotfor pos in jump_positions: ax1.axvline(x=pos, color='r', linestyle='--', alpha=0.3)ax1.set_title('Superposition with Multiple Phase Jumps')ax1.set_xlabel('time')ax1.set_ylabel('amplitude')ax1.legend(bbox_to_anchor=(1.05, 1), loc='upper left')# Plot correlationax2.plot(tau, np.abs(g))ax2.set_title('|g⁽¹⁾(τ)|')ax2.set_xlabel('τ')ax2.set_ylabel('|g⁽¹⁾(τ)|')ax2.set_xlim(0, 200)ax2.set_ylim(0, 1)# Adjust layoutplt.tight_layout()plt.subplots_adjust(right=0.85)plt.show()
Coherence of Thermal radiation
Thermal radiation is a common example of incoherent light. While it is called incoherent, there is no complete incoherence, but the coherence length of a few 10 micrometers. Sun light, for example, has been measured to have a coherence length of about 50 micrometers (Shawn Divitt and Lukas Novotny, “Spatial coherence of sunlight and its implications for light management in photovoltaics,” Optica 2, 95-103 (2015)). The following factors contribute to the incoherence of thermal radiation:
Random Emission Process - Individual atoms/molecules emit light independently - Each emission event has a random phase - The emission timing is random - These random events effectively create continuous phase jumps
Multiple Emitters - Many atoms/molecules emit simultaneously - Each emitter acts independently - There’s no phase relationship between different emitters - This leads to spatially incoherent radiation
Thermal Motion - Atoms/molecules are in constant thermal motion - This motion causes Doppler shifts - The shifts result in frequency variations - Motion also affects the phase of emitted radiation
Collision Effects - Frequent atomic/molecular collisions - Each collision can cause phase jumps - At higher temperatures, more frequent collisions - This leads to shorter coherence times
Partial Coherence in Lasers
The coherence of laser light is limited by various physical mechanisms that cause fluctuations in phase and frequency. While perfect coherence is theoretically impossible, some lasers can achieve remarkable coherence lengths. Single-frequency solid-state lasers, when properly stabilized, are particularly noteworthy in this regard. For instance, a laser with a Lorentzian spectrum of 10 kHz linewidth can achieve a coherence length of 9.5 km.
The fundamental limit to laser coherence is set by quantum noise, as described by the Schawlow-Townes linewidth. However, modern laser systems, particularly those developed for optical clocks, have pushed these boundaries further. Some of these systems have been stabilized to achieve linewidths below one hertz, corresponding to coherence lengths exceeding 300,000 km.
Spontaneous Emission - Not all emission in a laser is stimulated - Some spontaneous emission is always present - Adds random phase jumps to the laser field - Sets fundamental quantum limit to coherence
Technical Noise Sources - Mechanical vibrations of cavity mirrors - Thermal fluctuations in gain medium - Pump power fluctuations - Current noise in diode lasers
Gain Medium Properties - Finite linewidth of the lasing transition - Thermal motion of atoms/molecules - Pressure broadening in gas lasers - Population fluctuations