Optics

Polarization

The orientation of a transverse wave's oscillation — only transverse waves can be polarized

Polarization describes the direction of oscillation of a transverse wave (relative to propagation). Light from common sources is unpolarized — random orientations. Polarizing filters block oscillations except in one direction. Used in sunglasses, LCD screens, photography filters, 3D glasses, and to verify that a wave is transverse. Sound (longitudinal) cannot be polarized.

  • Type of waveOnly transverse waves can be polarized
  • Linearly polarizedOscillation along a single direction
  • Circular polarizedDirection rotates with wave; clockwise or counterclockwise
  • Malus's lawI = I₀·cos²(θ) — through aligned polarizers
  • Brewster's angletan θ_B = n₂/n₁; reflected light fully polarized
  • Sound polarizationImpossible (sound is longitudinal)

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.

Polarization basics

For a transverse wave (like light), the electric field oscillates perpendicular to propagation direction. Polarization specifies which DIRECTION (or pattern of directions) this oscillation takes.

TypeDescription
UnpolarizedRandom or rapidly-changing oscillation directions
Linearly polarizedOscillation in a single fixed direction
Circularly polarizedDirection rotates uniformly around propagation
Elliptically polarizedGeneral case; rotation with non-equal amplitudes
Partially polarizedMix of polarized and unpolarized

Malus's law

When linearly polarized light passes through a polarizer at angle θ from its transmission axis:

I = I₀ · cos²(θ)
θ (angle)I/I₀
0° (aligned)1.00 (100%)
30°0.75
45°0.50
60°0.25
90° (crossed)0.00

Two perpendicular polarizers transmit nothing. But ADD a third polarizer at 45° between them — transmission becomes nonzero (½ × ½ = 25%).

Brewster's angle

At incidence angle θ_B = arctan(n₂/n₁), the reflected light is 100% s-polarized (perpendicular to plane of incidence).

tan θ_B = n₂ / n₁
Boundaryθ_B
Air to water53.1°
Air to glass (n=1.5)56.3°
Air to diamond67.5°

Sunglasses, polarized photography filters, laser optics all use Brewster's angle.

Real-world polarization

SystemHow polarization is used
Polarized sunglassesBlock horizontal polarization (reflections off water/roads)
LCD screensLiquid crystals rotate polarization between two polarizers
3D moviesTwo oppositely circularly polarized images; glasses separate them
Camera polarizing filtersReduce reflections, saturate skies
MicroscopyPolarized light reveals stress in materials, identifies minerals
AstronomyPolarized light reveals magnetic fields, dust orientation, scattering processes
Photography (glass through windows)Polarizing filters cut reflections off glass and water
Bee navigationBees see polarization patterns in sky to navigate (sky polarized perpendicular to sun)

JavaScript — polarization calculations

// Malus's law
function malusLaw(I_0, angle_deg) {
  const angle = angle_deg * Math.PI / 180;
  return I_0 * Math.cos(angle) ** 2;
}

console.log(`30° polarizer: ${(malusLaw(1, 30) * 100).toFixed(1)}%`);  // 75%
console.log(`45°: ${(malusLaw(1, 45) * 100).toFixed(1)}%`);            // 50%
console.log(`60°: ${(malusLaw(1, 60) * 100).toFixed(1)}%`);            // 25%
console.log(`90°: ${(malusLaw(1, 90) * 100).toFixed(1)}%`);            // 0%

// Three-polarizer paradox: cross-polarizers + middle 45° filter
function threePolarizers(I_0, angle_middle_deg) {
  // First polarizer (vertical) transmits I_0/2 (unpolarized → polarized loses half)
  const after_first = I_0 / 2;
  // Through middle at angle θ from first
  const after_middle = malusLaw(after_first, angle_middle_deg);
  // Through final (90° from first), so angle from middle is 90 - middle_angle
  const after_third = malusLaw(after_middle, 90 - angle_middle_deg);
  return after_third;
}

console.log(`Cross polarizers + 45° between: ${(threePolarizers(1, 45) * 100).toFixed(1)}%`);
// 12.5% transmits (paradox: adding a polarizer increases transmission!)

// Brewster's angle
function brewsterAngle(n_dense, n_rare = 1.0) {
  return Math.atan(n_dense / n_rare) * 180 / Math.PI;
}

console.log(`Air-water Brewster: ${brewsterAngle(1.33).toFixed(2)}°`);
console.log(`Air-glass Brewster: ${brewsterAngle(1.5).toFixed(2)}°`);

// Reduce light by 4x with two cross-polarizers in cascade
function cascade2Polarizers(I_0) {
  // Cross polarizers transmit 0% — actually need offset
  // But for ND-filter style: I = I_0 · cos²(θ)
  return I_0 * Math.cos(60 * Math.PI / 180) ** 2;
}

// Adjustable polarizer ND filter — can reduce 0 to ~99.5%

// Circular polarizer transmission (left or right circularly polarized light)
function circularPolarizerTransmission(input) {
  // Half is transmitted; other half blocked
  if (input.handedness === 'matching') return input.intensity;
  return 0;
}

Where polarization matters

  • Sunglasses and photography. Reduce reflections, glare, saturate colors.
  • Display technology. All LCDs use polarization. OLEDs typically don't (different physics).
  • Microscopy. Polarized light microscopy reveals birefringent materials (crystals, minerals, stressed glass).
  • Astronomy. Polarimetry maps magnetic fields, scattering by interstellar dust, exoplanet atmospheres.
  • Quantum physics. Photon polarization is a quantum bit (qubit candidate). Bell's inequality experiments measure polarized photons.
  • Telecommunications. Polarization-multiplexing in fiber optics doubles data capacity.
  • 3D cinema. Circular polarization for 3D images (glasses-based).

Common mistakes

  • Trying to polarize sound. Sound is longitudinal — no polarization possible.
  • Forgetting that two crossed polarizers = 0%. Crossed (90°) polarizers block all light. Adding a third at 45° makes them transmit 12.5% — a quantum-mechanical-feeling result.
  • Confusing absorbing and reflecting polarizers. Most consumer polarizers absorb the wrong polarization. Some optical setups use reflecting polarizers (lasers, lab).
  • Using sin² instead of cos² in Malus. When θ is between transmission axis and polarization, use cos². Watch for definitions.
  • Treating sunlight as fully polarized. Direct sunlight is essentially unpolarized. Polarized sunglasses cut PARTIAL polarization from reflections.
  • Forgetting Brewster only works for one polarization. At θ_B, only s-polarization reflects. P-polarization passes through entirely. Important for laser cavity Brewster windows.

Frequently asked questions

Why can only transverse waves be polarized?

Polarization specifies the direction of oscillation perpendicular to propagation. Transverse waves oscillate perpendicular to motion (light, water surface waves, S-waves) — there are TWO independent directions for this. Longitudinal waves (sound, P-waves) oscillate ALONG the direction of motion — only one possibility, so no polarization.

How do polarizing sunglasses work?

Reflected light from horizontal surfaces (water, roads) is partially horizontally polarized. Polarizing sunglasses block horizontal polarization, transmitting only vertical. Result — reduced glare. Especially useful for fishing (see below water surface), driving (reduced reflection from car hoods, wet roads), photography (saturated colors).

What's Malus's law?

When linearly polarized light hits a polarizer at angle θ from its axis, transmitted intensity is I = I₀·cos²(θ). At θ = 0° (aligned) — full transmission. At θ = 45° — 50% transmission. At θ = 90° (crossed) — 0% transmission. Used in optical filters, microscopes, polarized photography.

How do LCD screens work?

Light from backlight passes through first polarizer (linearly polarized). Liquid crystals between two polarizers can rotate polarization based on applied voltage. Second polarizer blocks the rotated/unrotated light selectively. Each pixel's voltage controls how much light passes. Color is achieved via subpixel filters (R, G, B). All LCD displays use polarization.

What's circularly polarized light?

Two perpendicular linear polarizations, 90° out of phase, equal amplitude. The electric field vector rotates around the propagation direction (clockwise or counterclockwise). Used in 3D movies (glasses with oppositely-handed circular polarizers — left eye sees one image, right sees the other).

What's Brewster's angle?

At a specific incidence angle θ_B = arctan(n₂/n₁), light reflected from a surface is 100% s-polarized (perpendicular to plane of incidence). Used in laser cavity optics (Brewster windows minimize loss for one polarization), polarizing filters. For glass (n=1.5) from air, θ_B ≈ 56.3°.

How is polarization used in photography?

Polarizing filters reduce reflections from water/glass, saturate skies (sky light is partially polarized — perpendicular to sun direction), and manage glare. Often essential for landscape photography. Cannot be replicated in post-processing — it's an optical effect at capture time.