Quantum Physics · Approximation Methods
📅 July 2026 ⏱ ≈ 13 min read 🎯 Intermediate–Advanced

Quantum Tunneling: the WKB Approximation

A particle with less energy than a potential barrier should, in classical mechanics, simply bounce back. Quantum mechanics says otherwise: the wave function leaks through, exponentially suppressed but never zero. The WKB approximation (a semiclassical technique, named for physicists Wentzel, Kramers and Brillouin, for handling barriers that vary smoothly rather than being perfectly rectangular) turns this leakage into a formula you can actually evaluate — and explains alpha decay, the scanning tunneling microscope, and the flash memory in your phone.

TL;DR: Quantum particles can leak through energy barriers they classically shouldn't cross. This article derives the exact transmission through a rectangular barrier, then shows how the WKB approximation extends that result to any smoothly varying barrier via the Gamow tunneling integral, explains when the approximation breaks down, and connects it to alpha decay, scanning tunneling microscopes, tunnel diodes, and flash memory.

Exact solution: the rectangular barrier

Consider a particle of energy E < V₀ incident on a rectangular barrier of height V₀ and width L. Inside the barrier the TISE −ℏ²/(2m)ψ'' + V₀ψ = Eψ has exponential, not oscillatory, solutions, because E − V₀ < 0:

κ = √(2m(V₀ − E)) / ℏ — decay constant inside the barrier
ψ(x) = Ae−κx + Beκx for 0 < x < L

Matching ψ and ψ' at both boundaries x = 0 and x = L (continuity is required because the potential is finite) gives a unique solution with a non-zero amplitude on the far side — the particle has a non-zero probability of appearing beyond the barrier, something strictly forbidden classically.

The transmission coefficient

The transmission coefficient T = |ψtransmitted|² / |ψincident|² for the rectangular barrier has an exact closed form:

T = [1 + (V₀² sinh²(κL)) / (4E(V₀ − E))]−1
κLRegimeApprox. T
≪ 1Thin/weak barrierT ≈ 1 (nearly transparent)
~ 1Moderate barrierT from the exact formula, no shortcut
≫ 1Thick/tall barrierT ≈ 16 E(V₀−E)/V₀² · e−2κL

The last row is the key result: for a wide or high barrier, T falls off exponentially with κL. This exponential sensitivity — a factor of e in T per (ℏ/√(2m(V₀−E))) of extra width — is why tunneling is negligible for everyday macroscopic objects but dominant for electrons and light nuclei.

The WKB idea: a slowly-varying barrier

Real barriers (a nucleus's Coulomb + strong-force potential, the gap between an STM tip and a surface) are not rectangular. The WKB (Wentzel–Kramers–Brillouin) approximation handles arbitrary V(x) by treating it as locally rectangular: at each x define a local decay constant κ(x) and assume the wave function still looks locally exponential, provided V(x) varies slowly on the scale of the local wavelength:

κ(x) = √(2m(V(x) − E)) / ℏ
ψ(x) ≈ C / √κ(x) · exp[ −∫ κ(x') dx' ] inside the classically forbidden region a < x < b

The 1/√κ(x) prefactor is required by probability-current conservation as the local "wavelength" changes; it is the same trick used in the WKB treatment of slowly-varying oscillatory potentials for bound states (Bohr-Sommerfeld quantisation).

The Gamow tunneling integral

Applying WKB across the full classically forbidden region — from the inner turning point a (where E = V(a)) to the outer turning point b (where E = V(b)) — gives the Gamow factor:

T ≈ exp[ −2∫ab κ(x) dx ] = exp[ −(2/ℏ)∫ab √(2m(V(x)−E)) dx ]

George Gamow used exactly this formula in 1928 to explain alpha decay: the alpha particle inside a nucleus is trapped by a strong nuclear well but faces a long-range Coulomb barrier on the outside. The tunneling integral through the Coulomb tail predicts the Geiger–Nuttall law — an exponential relationship between decay half-life and alpha energy that spans over twenty orders of magnitude in half-life, matched almost perfectly by the Gamow factor.

Order of magnitude: for a 5 MeV alpha particle tunneling out of a heavy nucleus, T can be as small as 10⁻³⁸ — yet because the alpha "attempts" the barrier ~10²¹ times per second (roughly its velocity divided by the nuclear diameter), decay still happens on human timescales for many isotopes.

Validity: when does WKB break down?

WKB assumes the local de Broglie wavelength changes slowly, formally |dλ/dx| ≪ 1. It fails in two specific places:

Despite these limitations, WKB is accurate to a few percent for essentially all barriers relevant to nuclear and semiconductor physics, because those barriers are, in the relevant sense, "wide" compared to the particle's wavelength.

Applications: decay, STM, tunnel diodes

SystemBarrierRole of tunneling
Alpha decayCoulomb + strong-force wellSets the nuclear half-life (Geiger–Nuttall law)
Scanning tunneling microscopeVacuum gap tip–surfaceTunneling current ∝ e−2κd gives Å-scale height resolution
Tunnel (Esaki) diodeThin p-n junction depletion regionNegative differential resistance used in fast oscillators
Flash memoryThin SiO₂/oxide layerFowler-Nordheim tunneling injects/removes charge from the floating gate
Stellar fusionCoulomb barrier between nucleiEnables fusion at core temperatures far below the classical threshold

Computing T numerically

For an arbitrary barrier V(x), the Gamow integral is evaluated by numerical quadrature over the classically forbidden region:

// Gamow / WKB transmission for an arbitrary barrier V(x)
function wkbTransmission(V, E, a, b, hbar, m, steps = 2000) {
  let integral = 0;
  const dx = (b - a) / steps;
  for (let i = 0; i < steps; i++) {
    const x = a + (i + 0.5) * dx;
    const Vx = V(x);
    if (Vx > E) {
      // classically forbidden: kappa(x) is real
      const kappa = Math.sqrt(2 * m * (Vx - E)) / hbar;
      integral += kappa * dx;
    }
  }
  return Math.exp(-2 * integral);   // T ≈ e^{-2∫κ dx}
}

// Example: parabolic barrier V(x) = V0 * (1 - (x/L)^2)
const T = wkbTransmission(
  x => V0 * (1 - (x / L) ** 2),
  E, -L, L, HBAR, MASS
);
Finding the turning points: for barriers without a closed form, a and b (where V(x) = E) must first be located with a root-finder (bisection is simplest and stable). Integrating slightly past the true turning points overestimates κ and underestimates T, so a fine step size matters near a and b.
▶ Live Demo

⚛️ Run the quantum tunneling simulation

Adjustable barrier height/width, live transmission and reflection coefficients

Open simulation →

🔗 Related Simulations

⚛️Quantum Tunneling 🌊Schrödinger Equation 🌟Nuclear Fusion