The Photoelectric Effect: Frequency Beats Brightness
By Lucian — builder & engineer, LK Forge
Shine light on a metal and electrons can fly off — but whether they do, and how fast, depends on the light’s colour, not how bright it is. A dim blue lamp works where a blazing red one does nothing. That refusal to behave like a wave is what forced physics to accept the photon, and it is a straight line on a graph whose slope is one of nature’s fundamental constants. We took the numbers from the photoelectric lab and read that constant off.
· 6 min read · exact from KEmax = hf − φ
The line that weighs a constant
Plot the maximum electron energy against the light’s frequency and every metal gives the same straight line, just shifted sideways. The slope is universal — it is Planck’s constant h (over the electron charge, since the y-axis is in electron-volts) — and only the point where each line crosses zero, the threshold frequency, tells the metals apart. This is Millikan’s 1916 measurement in one picture: the parallel lines below are cesium, sodium and zinc, sharing a slope of 4.14×10⁻¹⁵ eV·s.
KEmax vs frequency for cesium, sodium and zinc. Same slope (= h), different thresholds (the dots). Below its threshold a metal emits nothing; the slope never changes.
Every metal has its own gate
The threshold wavelength λ0 = 1240/φ is the longest wavelength (lowest energy) that can still free an electron. It sorts the metals into two camps: those cesium, sodium and calcium respond to ordinary visible light, while zinc, copper, silver and platinum stay dark until you reach into the ultraviolet. It is why the first practical photocells used cesium, and why a UV lamp will discharge a zinc plate that sunlight leaves alone.
Threshold wavelength λ0 = 1240/φ. Bars reaching into the green band respond to visible light; the violet ones need ultraviolet.
Why brightness is the wrong knob
A classical wave should pour more energy into the metal as you brighten it, so given enough time even dim red light ought to shake an electron loose, and brighter light ought to make faster electrons. Neither happens. Light arrives in photons, each carrying energy hf; one photon frees at most one electron and hands it KEmax = hf − φ, no more. Double the brightness and you double the number of photons — twice the electrons, twice the current — but each electron still leaves with the identical maximum energy 1.85 eV for 300 nm light on sodium, brightness be damned. Energy comes in grains, and their size is set by colour alone. That single sentence is the quantum revolution in miniature, and it is what Einstein’s 1921 Nobel Prize was for.
Reproduce it yourself
Two lines of physics; the third recovers Planck’s constant from the slope.
const hc = 1240; // eV·nm
const photonE = nm => hc / nm; // eV
const keMax = (nm, phi) => Math.max(0, photonE(nm) - phi);
// sodium, phi = 2.28 eV
keMax(400, 2.28); // 0.82 eV keMax(300, 2.28); // 1.85 eV
const l0 = hc / 2.28; // 543.9 nm threshold
// Planck's constant from the KEmax-vs-frequency slope:
const c = 2.998e8, e = 1.602e-19;
const f = nm => c / (nm * 1e-9);
const slope = (keMax(250,2.28) - keMax(350,2.28)) / (f(250) - f(350)); // eV·s
const h = slope * e; // 6.63e-34 J·s (accepted 6.626e-34) The photonE and keMax come straight from the photoelectric solver; the metal and slope sweeps are the small script behind this post.
Eject some electrons
Open the lab, switch metals, slide the wavelength past the threshold, and watch the current stop dead — then turn the brightness up and see the energy refuse to move.