Quantum Physics

Photoelectric Effect

Light ejects electrons from metals — Einstein's 1905 explanation showed light is quantized

The photoelectric effect — light shining on a metal ejects electrons, but only above a certain frequency. Below threshold, NO electrons regardless of intensity. Einstein (1905) explained: light comes in quanta (photons) of energy E = hf. Each photon either has enough energy to free an electron (above threshold) or doesn't (below). Won him the 1921 Nobel Prize. Foundational evidence for quantum theory.

  • Einstein's equationKE_max = hf − φ (φ = work function)
  • Threshold frequencyf_0 = φ/h (below this, no emission)
  • Independent of intensityAbove threshold, more photons (intensity) → more electrons (current); same KE per electron
  • DiscoveredHertz (1887), explained by Einstein (1905)
  • Won Einstein the Nobel1921 (not for relativity!)
  • Work function~2-5 eV typically; alkali metals lowest

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.

The experiment

UV light shines on a clean metal surface. A circuit measures current — electrons emitted from the metal travel to a collector electrode.

Observations (puzzling classically):

  1. Below a threshold frequency f₀, NO electrons are emitted, regardless of light intensity.
  2. Above threshold, electrons emitted essentially instantly (≪ 1 second).
  3. Maximum KE of emitted electrons depends on f, not intensity.
  4. Number of emitted electrons (current) depends on intensity, not f.

Classical wave theory predicts the opposite — should be able to accumulate energy from waves over time, regardless of frequency.

Einstein's photon picture

Light consists of discrete energy packets — photons — with energy:

E_photon = h · f

where h = 6.626 × 10⁻³⁴ J·s (Planck's constant). Each photon interacts with ONE electron.

If hf > φ (work function): electron escapes with kinetic energy:

KE_max = hf − φ

If hf < φ: no escape, regardless of intensity. Threshold frequency:

f_0 = φ / h

Work functions of common metals

Metalφ (eV)Threshold λ (nm)
Cesium1.95636 (visible red)
Potassium2.30539 (green)
Sodium2.36525 (green-yellow)
Calcium2.87432 (violet)
Aluminum4.08304 (UV)
Copper4.70264 (UV)
Gold5.10243 (UV)
Platinum5.65219 (UV)

Cesium responds to visible light; most metals require UV.

JavaScript — photoelectric calculations

const h = 6.626e-34;  // J·s
const c = 3e8;
const eV = 1.602e-19;

// Photon energy (J)
function photonEnergyJ(frequency) { return h * frequency; }
function photonEnergyEv(frequency) { return h * frequency / eV; }
function photonWavelength(energy_eV) { return c / (energy_eV * eV / h); }

// Visible light photon energies
console.log(`Red 700 nm: ${photonEnergyEv(c/700e-9).toFixed(2)} eV`);    // 1.77
console.log(`Green 550 nm: ${photonEnergyEv(c/550e-9).toFixed(2)} eV`);  // 2.25
console.log(`UV 200 nm: ${photonEnergyEv(c/200e-9).toFixed(2)} eV`);      // 6.20

// Photoelectric: max KE
function maxKineticEnergy(photon_eV, work_function_eV) {
  // Returns KE in eV; 0 if photon below threshold
  const KE = photon_eV - work_function_eV;
  return Math.max(0, KE);
}

// Sodium (φ = 2.36 eV) hit by green (2.25 eV)
console.log(`Na + green: ${maxKineticEnergy(2.25, 2.36)} eV`);  // 0 — below threshold!

// Sodium hit by UV (4 eV)
console.log(`Na + 4 eV UV: ${maxKineticEnergy(4, 2.36).toFixed(2)} eV`);  // 1.64

// Stopping voltage (voltage to stop fastest electron)
function stoppingVoltage(photon_eV, work_function_eV) {
  return Math.max(0, photon_eV - work_function_eV);  // V
}

// Threshold wavelength for given work function
function thresholdWavelength(work_function_eV) {
  // λ = hc/φ ; convert eV to J
  const phi_J = work_function_eV * eV;
  return h * c / phi_J;
}

console.log(`Cs threshold: ${(thresholdWavelength(1.95) * 1e9).toFixed(0)} nm`);  // 636 (red)
console.log(`Cu threshold: ${(thresholdWavelength(4.70) * 1e9).toFixed(0)} nm`);  // 264 (UV)

// Number of photoelectrons per second (rough)
function photoelectronRate(intensity_W_per_m2, area_m2, photon_eV, efficiency = 0.1) {
  // Rate = intensity × area × efficiency / photon_energy
  const photon_E_J = photon_eV * eV;
  return intensity_W_per_m2 * area_m2 * efficiency / photon_E_J;
}

// 1 W/m² UV (4 eV) on 1 cm² with 10% quantum efficiency
console.log(`Photoelectron rate: ${photoelectronRate(1, 1e-4, 4).toExponential(2)} per sec`);

// Solar cell efficiency limit (Shockley-Queisser style — simplified)
function maxEfficiency(bandgap_eV, sun_temp_K = 5800) {
  // Rough: efficiency = bandgap / (k_B T_sun × N) accounting for spectrum
  // Real Shockley-Queisser limit ~33% for Si bandgap 1.1 eV
  return Math.min(1.0, 0.4);  // heuristic; real calculation more complex
}

Where photoelectric matters

  • Solar cells. Direct conversion of light to electricity. Modern silicon ~20-25% efficient; multi-junction ~46%.
  • Photodetectors. Cameras, optical fiber receivers, infrared sensors, X-ray detectors.
  • Photomultiplier tubes. Single-photon detection (cascade amplification of photoelectrons). Used in particle physics, low-light astronomy.
  • Image sensors. CCDs and CMOS sensors capture light by photoelectric effect at each pixel.
  • Photoemission spectroscopy. Measure work functions, band structure of materials by analyzing emitted electrons.
  • Solar wind/space. UV from Sun causes photoelectric effects on spacecraft surfaces, influencing electrostatics.
  • Education. Foundational quantum experiment; introduces photons, work function, quantum vs classical.

Common mistakes

  • Believing intensity should affect electron energy. Classical view; wrong. Intensity affects current (number); frequency affects max energy.
  • Forgetting work function depends on material. Different metals have different φ; same light might eject from cesium but not copper.
  • Using wrong units. Common: photon energy in eV, work function in eV, voltage in V. Don't mix with J.
  • Treating one photon as ejecting multiple electrons. Photoelectric is one-photon-one-electron at typical intensities. Multiphoton effects exist at very high intensities (lasers).
  • Confusing photoelectric with Compton. Photoelectric — photon absorbed, electron ejected. Compton — photon scatters off electron, both continue (with shifted frequencies).
  • Forgetting the threshold. Below f₀, NO emission no matter intensity. Crucial point distinguishing quantum from classical.

Frequently asked questions

What was puzzling about the photoelectric effect classically?

Classical wave theory says — bright light = high intensity = lots of energy → eject many fast electrons. But experiments showed: (1) Below threshold f, NO electrons regardless of intensity; (2) Above threshold, KE depends on f, NOT intensity; (3) Intensity affects NUMBER of electrons, not their energy. Wave theory couldn't explain these. Einstein resolved with photons.

How did Einstein explain it?

Light comes in discrete packets (photons) of energy E = hf. Each photon interacts with ONE electron. If hf > work function φ (energy to remove electron from metal), electron escapes with KE = hf - φ. If hf &lt; φ, no electron escapes — even with millions of photons. More photons = more electrons (intensity), but each has same KE. Quantum picture explains all observations.

What's the work function?

φ — minimum energy to remove an electron from a material. For metals, ~2-5 eV. Lowest: alkali metals (cesium 1.95 eV, potassium 2.30 eV). Higher: copper (4.7 eV), gold (5.1 eV), platinum (5.6 eV). Below threshold f = φ/h, no emission. Above, electrons emerge with KE = hf - φ.

Why was this Nobel for Einstein, not relativity?

When awarded (1921), relativity was still controversial — even some Nobel committee members were skeptical. Photoelectric effect was undeniable: experimental data clearly required photon picture. Einstein's 1905 photon paper was awarded as "for his services to Theoretical Physics, and especially for his discovery of the law of the photoelectric effect."

How is this used in technology?

Solar cells (silicon photovoltaics) — photons knock electrons across p-n junction, creating current. Photodetectors (in cameras, optical fibers, light meters). Photomultiplier tubes (cascade-amplify photoelectric signal — extremely sensitive). Vacuum tubes for early TV. Modern image sensors (CCDs, CMOS) ultimately rely on photoelectric effect.

How is this different from quantum tunneling?

Photoelectric — photon energy gives electron kinetic energy &gt; barrier (work function). Tunneling — electron has LESS energy than barrier but quantum mechanically passes through anyway (small probability). Different physics — emission via energy provision vs barrier penetration.

What's the relationship to Compton scattering?

Both showed light as photons. Photoelectric — photon absorbed, electron emitted. Compton — photon scatters off free electron, transfers some energy/momentum (1923). Both gave Einstein's photon picture more credibility, leading to widespread acceptance of light quantization.