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:
For two waves of equal amplitude and a phase difference :
Where is the intensity of each individual wave.
Young's Double-Slit Experiment
Setup and Path Difference
Two narrow slits and separated by distance are illuminated by a monochromatic source. At a point on a screen at distance :
Where is the vertical distance from the central maximum.
Conditions for Bright and Dark Fringes
| Condition | Path Difference | Result | |-----------|--------------------------|--------| | Constructive | | Bright fringe | | Destructive | | Dark fringe |
where
Fringe Width
The spacing between consecutive bright (or dark) fringes:
Key relationships:
- Increasing → wider fringes ()
- Increasing → narrower fringes ()
- Longer wavelength → wider fringes ()
Intensity Distribution
The intensity at angle :
Single-Slit Diffraction
When light passes through a single slit of width , it spreads into a diffraction pattern.
Minima Condition
The angular half-width of the central maximum:
Intensity Formula
This function produces the characteristic central bright maximum flanked by progressively weaker secondary maxima.
Diffraction Grating
A diffraction grating with slits separated by (grating constant) produces sharp, bright principal maxima at angles satisfying:
Resolving Power
where is the minimum resolvable wavelength difference.
Example: A grating with 600 lines/mm and has:
Numerical Simulation: Young's Double-Slit
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:
Where is the aperture diameter. The factor 1.22 arises from the Bessel function zero for a circular aperture.
Telescope example: Hubble Space Telescope (, ):
At the Moon's distance (), the minimum resolvable separation is:
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