Wave Optics

Birefringence

Anisotropic crystals split a single beam into two orthogonally polarized rays

In anisotropic crystals like calcite, the refractive index depends on polarization. Unpolarized light splits into an ordinary and extraordinary ray, each linearly polarized — perpendicular to each other.

  • DiscoveredRasmus Bartholin, 1669 (Iceland spar)
  • Two indicesn_o (ordinary, E ⊥ axis); n_e (extraordinary, E ∥ axis)
  • Calcite Δn at 589 nmn_o = 1.658, n_e = 1.486 → Δn = −0.172
  • e-ray walk-off in calcite~6° from o-ray at normal incidence
  • Waveplate phaseΔφ = 2π · Δn · d / λ
  • Industrial useLCDs, waveplates, polarizing prisms, photoelasticity

Interactive visualization

Press play, or step through manually. The visualization is yours to drive — try it before reading on.

Open visualization fullscreen ↗

Watch the 60-second explainer

A condensed visual walkthrough — narrated, captioned, under a minute.

Two indices, one crystal

In an isotropic medium (water, glass), the refractive index is a single number — the same in every direction. In an anisotropic crystal, the speed of light depends on the polarization direction and the direction of propagation. The simplest case (uniaxial) has just two principal indices:

  • Ordinary index n_o. Applies to light polarized perpendicular to the crystal's optical axis. Obeys Snell's law like a normal isotropic refractor.
  • Extraordinary index n_e. Applies to light polarized along the optical axis. Its effective index depends on the angle of propagation — and the e-ray's Poynting vector (energy flow) doesn't follow the wavevector. That's the "walk-off."

When unpolarized light enters such a crystal at an angle to the optical axis, it splits into two beams that travel separate paths. Each beam emerges linearly polarized, with the two polarizations mutually perpendicular. Bartholin saw this in 1669 with Iceland spar (calcite from Iceland); it baffled Newton because his corpuscular theory had no way to explain two-by-two refraction.

Worked example — calcite at 589 nm

Calcite (CaCO₃) is the textbook birefringent crystal because its Δn is enormous compared to most natural materials.

n_o = 1.658   (ordinary, E ⊥ axis)
n_e = 1.486   (extraordinary, E ∥ axis at 90° to propagation)
Δn  = n_e − n_o = −0.172   (negative uniaxial)

For a 1 cm thick calcite rhomb at normal incidence:

  • The o-ray passes straight through.
  • The e-ray walks off by angle ρ ≈ tan⁻¹(|Δn|·sin·cos / ...) — roughly 6° in calcite, depending on the crystal cut. Inside a 1 cm rhomb, that's ~1 mm lateral displacement.
  • Place a Polaroid above the rhomb and rotate it: one image vanishes, then the other.

Waveplates — turning polarization with a slab

Cut a birefringent crystal so the optical axis lies in the face. Light entering at normal incidence sees both indices, but the two orthogonal polarizations now propagate along the same path at different speeds. They emerge with a relative phase:

Δφ = (2π / λ) · Δn · d

Pick d so Δφ = π/2 — that's a quarter-wave plate. Linear polarization at 45° to the axis becomes circular. Pick Δφ = π — half-wave plate. Linear polarization at angle α to the axis becomes linear at angle −α (the axis flips the orientation).

MaterialΔn at 589 nmλ/4 thicknessNotes
Quartz+0.009216 µmStandard waveplate material — durable, transparent into UV
Calcite−0.1720.86 µmToo thin to be practical alone; used in prisms instead
Mica+0.0040 (avg)37 µmCheap natural — historic standard before quartz dominated
MgF₂+0.01212 µmExcellent transmission into UV
Liquid crystal cell0.10 to 0.30 (tuneable)0.5–2 µmVoltage-tunable Δn — every LCD pixel

Common birefringent materials

Materialn_on_eΔn = n_e − n_oWhy it's used
Rutile (TiO₂)2.6162.903+0.287Highest-Δn natural crystal; used in white pigment too
Calcite (CaCO₃)1.6581.486−0.172Polarizing prisms (Nicol, Glan-Thompson, Wollaston)
Sapphire (Al₂O₃)1.7681.760−0.008Hard, scratch-resistant; mild birefringence
Quartz (SiO₂)1.5441.553+0.009Stock waveplate material
Ice1.3091.310+0.001Atmospheric haloes; auroral polarization
Stressed acrylic / glass~1.49~1.49 ± stress·C~10⁻⁵ to 10⁻³Photoelastic stress visualization

Costed claims you can verify

  • Calcite Δn = 0.172 at 590 nm. Verified by every introductory optics textbook; cited indices n_o = 1.658, n_e = 1.486.
  • Calcite walk-off ≈ 6° at the principal section. A 1 cm rhomb produces ~1 mm separation between the two emerging images.
  • Quartz λ/4 plate at 589 nm: 16 µm thick. d = λ/(4·Δn) = 589e-9 / (4 × 0.0092) ≈ 16 µm.
  • LCD switching ~10 ms. The liquid-crystal Δn change in response to voltage settles in milliseconds; that's the display refresh ceiling for many panels.
  • Photoelastic stress-optic coefficient (typical polymer): C ≈ 5 × 10⁻¹⁰ Pa⁻¹. A 100 MPa stress produces Δn ≈ 5 × 10⁻⁵ — fringes visible in a 5 mm sample.

JavaScript — birefringence calculations

// Waveplate phase retardation
function retardation(deltaN, d, wavelength) {
  return 2 * Math.PI * deltaN * d / wavelength;
}

const lambda = 589e-9;
const quartzDn = 0.0092;

// λ/4 plate: Δφ = π/2 → d = λ / (4·Δn)
const dQuarterQuartz = lambda / (4 * quartzDn);
console.log(`Quartz λ/4 at 589 nm: ${(dQuarterQuartz * 1e6).toFixed(2)} µm`);
// 16.0 µm

// λ/2 plate
const dHalfQuartz = lambda / (2 * quartzDn);
console.log(`Quartz λ/2 at 589 nm: ${(dHalfQuartz * 1e6).toFixed(2)} µm`);
// 32.0 µm

// Calcite walk-off (simplified; principal section)
// tan(ρ) ≈ (n_o² − n_e²) · sin(2θ) / (2 · (n_o²·sin²θ + n_e²·cos²θ))
function walkOff(theta, no, ne) {
  const s = Math.sin(theta), c = Math.cos(theta);
  const num = (no*no - ne*ne) * Math.sin(2*theta);
  const den = 2 * (no*no * s*s + ne*ne * c*c);
  return Math.atan(num / den) * 180 / Math.PI;
}

console.log(`Calcite walk-off at θ=45°: ${walkOff(Math.PI/4, 1.658, 1.486).toFixed(2)}°`);
// ~5.7° — close to the ~6° rule of thumb

// Photoelastic fringes in stressed polymer
// Number of full-wave fringes = Δn · d / λ
function photoelasticFringes(stressMPa, d_mm, stressOpticCoeff_perPa, wavelength_nm) {
  const dn = stressOpticCoeff_perPa * stressMPa * 1e6;
  return dn * d_mm * 1e-3 / (wavelength_nm * 1e-9);
}

// 50 MPa stress, 5 mm sample, C = 5e-10 /Pa, λ = 550 nm
console.log(`Fringes: ${photoelasticFringes(50, 5, 5e-10, 550).toFixed(1)}`);
// ~22.7 fringes

// Number of distinct walked-off image copies in a calcite stack of N rhombs
function nestedImageSeparation(N, perRhomb_mm) {
  return N * perRhomb_mm; // for aligned rhombs
}

console.log(`5 stacked rhombs (1 mm each): ${nestedImageSeparation(5, 1)} mm total split`);

Where birefringence shows up

  • LCD displays. Voltage rotates the liquid-crystal director → controls Δn → controls phase retardation → controls how much light each pixel transmits between two polarizers.
  • Waveplates. λ/4 plates make linear-to-circular polarization (used in 3D cinema, optical isolators); λ/2 plates rotate linear polarization (used in laser power control with a polarizer).
  • Polarizing prisms. Glan-Thompson, Wollaston, Nomarski — all use calcite birefringence to split or filter polarizations with high extinction (10⁻⁶).
  • Polarization microscopy. Geologists identify minerals by birefringence colors in thin sections under crossed polarizers; biologists detect collagen, amyloid plaques, starch granules.
  • Photoelasticity. Engineers visualize stress in transparent models (sometimes called "stress patterns in plastic"); now mostly superseded by FEA but still used in teaching.
  • Polarization-maintaining fiber. Intentional birefringence keeps two polarization modes from mixing — used in fiber-optic gyroscopes and quantum-key distribution.

Common mistakes

  • Assuming all crystals are birefringent. Cubic-symmetry crystals (NaCl, diamond, silicon) are isotropic — no birefringence. Only crystals with at least one preferred axis can split light.
  • Confusing walk-off with refraction. The e-ray's wavevector and energy-flow vector aren't parallel inside a birefringent crystal. Walk-off is a real spatial displacement even at normal incidence; refraction is angle-change at the boundary.
  • Ignoring wavelength dispersion. Δn varies with λ. A perfect λ/4 plate at 589 nm is roughly λ/4 at 633 nm but visibly off near the violet. Achromatic (zero-order or compound) waveplates correct this.
  • Forgetting temperature dependence. Δn drifts ~10⁻⁵/K. For precision interferometry, waveplates need thermal control.
  • Using a "false zero" thickness for waveplates. The phase wraps every 2π. A "5/4 wave" plate behaves like λ/4 but is more dispersive; "zero-order" plates have the thinnest design and best achromaticity.
  • Skipping the optical axis specification. A birefringent crystal cut at the wrong angle splits light very differently. Always specify the optical-axis orientation in your setup.

Frequently asked questions

What is birefringence?

Birefringence is the splitting of light into two rays inside an anisotropic crystal. A uniaxial crystal has two principal refractive indices: n_o (ordinary, for E perpendicular to the optical axis) and n_e (extraordinary, for E along the optical axis). When light enters at a general angle, the ordinary component obeys Snell's law normally; the extraordinary component sees an angle-dependent index and refracts differently — including a non-zero deviation even at normal incidence. The result is two emerging beams, each linearly polarized perpendicular to the other.

Why does calcite split images?

Calcite (CaCO₃) is strongly birefringent: n_o = 1.658 and n_e = 1.486 at 589 nm, giving Δn = −0.172. Place a rhomb on a printed page and the o-ray follows the geometric path while the e-ray walks sideways by tan⁻¹(Δn) — about 6° in calcite. You see two displaced images of every letter, each linearly polarized perpendicular to the other. Rotate a Polaroid above the rhomb and the two images alternate as you turn it 90°.

What's a waveplate (quarter-wave, half-wave)?

A waveplate is a thin birefringent slab cut so its optical axis lies in the face. The two orthogonal polarizations travel at different speeds and accumulate a phase difference Δφ = 2π·Δn·d/λ. A quarter-wave plate makes Δφ = π/2 — converts linear polarization at 45° into circular. A half-wave plate (Δφ = π) flips linear polarization to the mirror angle (rotates the polarization plane). At λ = 589 nm in quartz (Δn = 0.0092), a quarter-wave plate is d = 16 µm thick. Stack two for half-wave.

What materials are birefringent?

Naturally: calcite (Δn = −0.172), quartz (+0.0092), rutile (TiO₂, +0.287 — the strongest common natural), ice, mica. Stressed glass becomes birefringent (stress-optic effect — used in photoelasticity). Polymer films are usually birefringent from stretching. Liquid crystals are intrinsically birefringent and their axis orientation is controlled by voltage — that's how every LCD works. Cubic crystals (NaCl, diamond, silicon) are NOT birefringent because their symmetry forces n to be isotropic.

How are polarizing prisms built from birefringent crystals?

Cut and cement two pieces of calcite (or use an air gap) so one polarization undergoes total internal reflection at the boundary while the other transmits. Nicol prism (1828) uses Canada balsam cement and ejects the o-ray sideways. Glan-Thompson uses optical contact with a tiny tilt — extinction ratio 10⁻⁶, the gold standard for polarized-laser experiments. Wollaston prism splits both polarizations into separated beams (used in polarization interferometers and beam-splitting CCDs).

What's stress-induced birefringence?

Isotropic materials (glass, plastic) become slightly birefringent when stressed. The induced Δn is proportional to the principal stress difference. Place a stressed plastic sample between crossed polarizers and you see colorful fringes — each color comes from λ where Δn·d = (m + 1/2)·λ produces destructive cancellation. Engineers use this 'photoelasticity' to map stress concentrations in physical models; modern finite-element analysis has mostly replaced it but the demo still teaches the principle.

Where does birefringence show up in modern technology?

Every liquid-crystal display: voltage rotates the LC director, which controls birefringence, which Malus-filters the backlight. Polarization microscopy (mineralogy, biology — collagen, amyloid plaques birefringe). Polarization-maintaining optical fibers (intentionally birefringent core). Laser optics: waveplates control polarization for harmonic generation and interferometers. Geology: thin-section microscopy identifies minerals by their birefringence colors. Forensic / pharmaceutical: drug crystal identification by polarized light.