BSC 2ND YEAR

Wave Optics: Interference and Diffraction

Explore the wave nature of light through Young's double-slit experiment, single-slit diffraction, and the diffraction grating — with full mathematical derivations.

5 min readSeptember 15, 2024

The Wave Nature of Light

The wave theory of light, developed by Christiaan Huygens and confirmed by Thomas Young's landmark 1801 experiment, describes light as a transverse electromagnetic wave. Wave optics explains phenomena that the particle (ray) model cannot — interference, diffraction, and polarization.

Coherence and Superposition

Two sources are coherent if they maintain a constant phase difference over time. Only coherent sources produce observable interference patterns.

The Principle of Superposition states:

ψtotal(r,t)=ψ1(r,t)+ψ2(r,t)\psi_{\text{total}}(\mathbf{r}, t) = \psi_1(\mathbf{r}, t) + \psi_2(\mathbf{r}, t)

For two waves of equal amplitude AA and a phase difference δ\delta:

I=4I0cos2 ⁣(δ2)I = 4I_0 \cos^2\!\left(\frac{\delta}{2}\right)

Where I0=A2I_0 = A^2 is the intensity of each individual wave.

Young's Double-Slit Experiment

Setup and Path Difference

Two narrow slits S1S_1 and S2S_2 separated by distance dd are illuminated by a monochromatic source. At a point PP on a screen at distance DD:

Δ=dsinθdyD(for small θ)\Delta = d\sin\theta \approx \frac{dy}{D} \quad (\text{for small } \theta)

Where yy is the vertical distance from the central maximum.

Conditions for Bright and Dark Fringes

| Condition | Path Difference Δ\Delta | Result | |-----------|--------------------------|--------| | Constructive | Δ=mλ\Delta = m\lambda | Bright fringe | | Destructive | Δ=(m+12)λ\Delta = \left(m + \frac{1}{2}\right)\lambda | Dark fringe |

where m=0,±1,±2,m = 0, \pm 1, \pm 2, \ldots

Fringe Width

The spacing between consecutive bright (or dark) fringes:

β=λDd\beta = \frac{\lambda D}{d}

Key relationships:

  • Increasing DD → wider fringes (βD\beta \propto D)
  • Increasing dd → narrower fringes (β1/d\beta \propto 1/d)
  • Longer wavelength → wider fringes (βλ\beta \propto \lambda)

Intensity Distribution

The intensity at angle θ\theta:

I(θ)=Imaxcos2 ⁣(πdsinθλ)I(\theta) = I_{\max} \cos^2\!\left(\frac{\pi d \sin\theta}{\lambda}\right)

Single-Slit Diffraction

When light passes through a single slit of width aa, it spreads into a diffraction pattern.

Minima Condition

asinθ=mλ(m=±1,±2,)a\sin\theta = m\lambda \quad (m = \pm 1, \pm 2, \ldots)

The angular half-width of the central maximum:

θmin=arcsin ⁣(λa)λa\theta_{\text{min}} = \arcsin\!\left(\frac{\lambda}{a}\right) \approx \frac{\lambda}{a}

Intensity Formula

I(θ)=I0[sin(α)α]2where α=πasinθλI(\theta) = I_0 \left[\frac{\sin(\alpha)}{\alpha}\right]^2 \quad \text{where } \alpha = \frac{\pi a \sin\theta}{\lambda}

This sinc2\text{sinc}^2 function produces the characteristic central bright maximum flanked by progressively weaker secondary maxima.

Diffraction Grating

A diffraction grating with NN slits separated by dd (grating constant) produces sharp, bright principal maxima at angles satisfying:

dsinθ=mλd\sin\theta = m\lambda

Resolving Power

R=λΔλ=mNR = \frac{\lambda}{\Delta\lambda} = mN

where Δλ\Delta\lambda is the minimum resolvable wavelength difference.

Example: A grating with 600 lines/mm and m=2m = 2 has:

d=1600 mm=1.667×106 md = \frac{1}{600} \text{ mm} = 1.667 \times 10^{-6} \text{ m}

R=mN=2×600×103=1.2×106 per metreR = mN = 2 \times 600 \times 10^3 = 1.2 \times 10^6 \text{ per metre}

Numerical Simulation: Young's Double-Slit

python
import numpy as np
import math

def youngs_intensity(
    y_values: np.ndarray,
    wavelength: float,  # metres
    slit_sep: float,    # d in metres
    screen_dist: float  # D in metres
) -> np.ndarray:
    """
    Calculate normalised intensity pattern for Young's double-slit.
    y_values: array of screen positions (metres)
    """
    delta = slit_sep * y_values / screen_dist  # path difference
    phase = (2 * np.pi / wavelength) * delta
    intensity = np.cos(phase / 2) ** 2
    return intensity

# Parameters
lam = 550e-9   # 550 nm (green light)
d   = 0.5e-3   # 0.5 mm slit separation
D   = 1.0      # 1 m screen distance

y = np.linspace(-5e-3, 5e-3, 1000)  # ±5 mm
I = youngs_intensity(y, lam, d, D)

fringe_width = lam * D / d
print(f"Fringe width β = {fringe_width * 1e3:.3f} mm")
# β = 1.100 mm ✓

# Find fringe positions (maxima)
threshold = 0.99
maxima_y = y[I > threshold] * 1e3  # convert to mm
print(f"Bright fringe positions (mm): {maxima_y[:5].round(2)}")

Rayleigh's Criterion for Resolution

Two point sources are just resolved when the central maximum of one falls on the first minimum of the other:

θmin=1.22λD\theta_{\text{min}} = 1.22 \frac{\lambda}{D}

Where DD is the aperture diameter. The factor 1.22 arises from the Bessel function zero for a circular aperture.

Telescope example: Hubble Space Telescope (D=2.4 mD = 2.4\text{ m}, λ=500 nm\lambda = 500\text{ nm}):

θmin=1.22×500×1092.4=2.54×107 rad\theta_{\text{min}} = 1.22 \times \frac{500 \times 10^{-9}}{2.4} = 2.54 \times 10^{-7} \text{ rad}

At the Moon's distance (d=3.84×108 md = 3.84 \times 10^8\text{ m}), the minimum resolvable separation is:

Δx=θmin×d97.5 m\Delta x = \theta_{\text{min}} \times d \approx 97.5 \text{ m}

Wave Optics Quiz

3 questions · Select one answer per question

In Young's double-slit experiment, if the slit separation is doubled while keeping all other parameters constant, the fringe width will:

The sinc² function describes the intensity pattern in which phenomenon?

Two coherent sources are necessary for sustained interference. What does 'coherent' mean?

Answer all questions to submit

Found an error? Contribute on GitHub