Skip to content

Light and the Modern World

The quantum leap: photons, LEDs, solar

Light comes in lumps, and that runs your LEDs

The red power light on your charger and the blue glow of a phone screen are not just different colors - they are photons of different energy, and that one idea is why LEDs light up, why solar panels make electricity, and why a dim blue lamp can do something a blazing red one cannot. Light, it turns out, arrives in countable lumps.

Predict first: can you brute-force it with brightness?

Shine deep red light on a metal plate, as bright as you like, blindingly bright. It never knocks a single electron loose. Swap in a dim, faint blue-ish ultraviolet light and electrons come flying off immediately. What do you predict: should a brighter light always win? Intuition screams yes - brighter means more energy. Commit to that, then test it in the widget's photoelectric mode. This exact experiment is where the wave picture of light broke.

The experiment that forced light into lumps

If light were purely a smooth wave, brightness would be everything: a brighter wave carries more energy, so pile on enough of it and any electron should eventually be shaken free, regardless of color. That is not what happens. Below a certain frequency (a certain color), no electrons come off no matter how bright the light or how long you wait. Above it, they come off instantly even when the light is dim. This is the , and it makes no sense for a wave. It makes perfect sense if light is a stream of particles.

The resolution, from Einstein in 1905, is that light comes in indivisible packets called , and one electron absorbs one photon at a time. Whether an electron escapes is a one-on-one deal: a single photon either carries enough energy to free it or it does not. Making the light brighter just sends more photons, more one-on-one deals. If each individual lump is too weak, a billion of them are still each too weak. Play with the photoelectric mode: below threshold, drag brightness to the maximum and the electron count stays stuck at zero.

A photon carries one lump of energy fixed by its color, and an electron can only cross the gap if that one lump is big enough. Switch modes to absorb a photon (solar), emit one (LED), or test whether brightness can ever beat a too-small lump (photoelectric).
valence band (electrons rest here)conduction band (electrons flow here)gap 1.80 eVexcess 0.60 eV lost as heat

Absorbed: the photon's 2.40 eV clears the gap, so it kicks an electron up and makes current. Any extra 0.60 eV just heats the panel.

One equation: energy is frequency

The energy of a single photon depends only on its frequency , through a fixed constant of nature (Planck's constant):

Higher frequency (bluer, and beyond that ultraviolet) means a more energetic photon. Brightness is the number of photons, a separate knob entirely.

This is stated (it is the founding postulate of quantum theory, confirmed by exactly the photoelectric measurements above), but notice how completely it explains the puzzle. Red light has a low frequency, so each red photon is a small lump of energy - below the metal's escape cost, no matter how many arrive. Ultraviolet has a high frequency, so each photon is a big lump, over the threshold on its own. Frequency sets the energy per lump; brightness only sets how many lumps. That per-photon frequency rising with energy is the same trend flagged back in electromagnetic waves and light, now made exact.

Light is both a wave and a stream of lumps

Refraction and interference need light to be a wave; the photoelectric effect needs it to be particles. Both are true. Light propagates like a wave and arrives like a particle. This uneasy double life, , is the doorway to the whole quantum world, and we push through it in the bridge to quantum computing.

Band gaps: the energy staircase inside a material

Inside a solid, electrons cannot have just any energy. They sit in a low valence band and can only jump to a higher conduction band (where they are free to move and carry current) if something gives them a specific minimum energy. That minimum is the . It is a one-jump toll: less than the gap and nothing happens, exactly the gap or more and the electron crosses. LEDs and solar cells are the same staircase run in opposite directions.

In the widget's solar mode, a photon hits the material. If its energy clears the gap, it kicks an electron up into the conduction band and makes current - that is a solar cell turning light into electricity. If the photon's energy is below the gap, the material is transparent to it and no power is harvested (which is why a solar panel wastes the low-energy part of sunlight). In LED mode the process reverses: an electron drops down across the gap and releases its lost energy as a single photon. Since , the gap energy fixes the frequency, which fixes the color. Slide the band gap and watch the emitted color march from red (small gap) toward blue (large gap). An LED's color is its band gap.

H = 4.1357e-15   # Planck's constant in electron-volt seconds

def photon_energy_eV(freq_hz):
    return H * freq_hz

def led_wavelength_nm(gap_eV):
    # a photon of energy = band gap; wavelength(nm) = 1240 / energy(eV)
    return 1240 / gap_eV

print(round(led_wavelength_nm(1.9)))   # -> 653 nm  a red LED
print(round(led_wavelength_nm(2.6)))   # -> 477 nm  a blue LED
Photon energy from frequency, and the LED color a band gap produces.

Why blue LEDs earned a Nobel Prize

Red and green LEDs existed for decades, but a bright blue one needs a large, well-behaved band gap that was brutally hard to manufacture. Blue was the missing color that finally allowed white light (red plus green plus blue), so the 2014 Nobel Prize in Physics went to its inventors. Every white LED bulb and phone screen you own depends on that one hard-won band gap.

Lock it in

  • Light arrives in lumps called photons; one photon's energy is set only by its frequency, E = h f, not by brightness.
  • The photoelectric effect proves it: below a threshold frequency, no brightness frees an electron, because each lump is individually too weak.
  • A band gap is the one-jump energy an electron needs to become mobile. A solar cell absorbs a photon to lift an electron across it; an LED drops an electron across it and emits a photon.
  • Because E = h f, the band gap fixes an LED's photon energy and therefore its color: small gap red, large gap blue.

Check yourself

Bright red light frees no electrons from a metal, but dim ultraviolet does. The best explanation is that:

The color of light an LED emits is set by:

Recall: why can dim ultraviolet free electrons from a metal when bright red light cannot? State the equation that explains it.

The photoelectric puzzle plus E = h f is the core of the whole lesson. Try to state it, then check.

Match each device or idea to how it uses the band gap.

drop here

electron drops across the gap and emits a photon

drop here

photon lifts an electron across the gap

drop here

a photon ejects an electron entirely

drop here

the energy needed to cross in one jump

Primary source

The Feynman Lectures on Physics, Vol I, Ch 37: Quantum Behavior

Feynman opens quantum mechanics with the behavior of light and electrons that refuses to be either a wave or a particle. It is the ideal companion to the photoelectric effect: the moment the classical picture of light runs out.

Sources

  1. 1.The Feynman Lectures on Physics, Vol I, Ch 37 (Quantum Behavior)
  2. 2.OpenStax University Physics Vol 3, Ch 6 (Photons and Matter Waves)

Where this connects

The band gap you just met is the exact knob that makes a transistor switch, so it runs straight into semiconductors, the CPU, and the power wall.[1] And the wave-particle duality that forced light into lumps is the same strangeness that makes a qubit possible, which we open in the bridge to quantum computing.[2]