Time-Dependent Perturbation Theory
Time-dependent perturbation theory predicts transitions. Instead of asking how an energy level shifts when the Hamiltonian is slightly changed, it asks how a system initially in one eigenstate develops amplitude to be found in another. This is the language of absorption, emission, decays, scattering, and Fermi's golden rule.
Sakurai derives the formalism in the interaction picture and uses constant and harmonic perturbations to reach the golden rule. Ballentine treats time-dependent phenomena alongside decay, beats, and adiabatic behavior. The Gottfried-named notes follow a similar interaction-picture route. Schiff's older treatment often emphasizes explicit integrals of transition amplitudes in wave mechanics.
Definitions
Split the Hamiltonian as
where
In the interaction picture,
The interaction-picture state obeys
If the system begins in , the first-order amplitude for a transition to is
where
The transition probability to first order is
For a continuum of final states, probabilities are converted into rates by multiplying by a density of states.
Key results
For a constant perturbation turned on from to , with ,
Thus
For a harmonic perturbation,
large transition probability occurs near resonance:
for absorption from the term, with the opposite sign for stimulated emission depending on convention.
Fermi's golden rule is
where is the density of final states at the energy selected by conservation. More precisely, the transition rate into a continuum is
The golden rule rests on three approximations: weak coupling, long observation time compared with microscopic oscillation periods, and a dense continuum of final states. Sakurai emphasizes how the sinc-squared time factor narrows into an energy-conserving delta function. Ballentine's discussion of decay highlights that exponential decay is an approximation, not an exact law for all times.
Visual
| Perturbation | Amplitude feature | Physical interpretation |
|---|---|---|
| constant for finite time | sinc-like energy width | short pulses broaden energy selection |
| harmonic drive | resonance at | absorption or stimulated emission |
| continuum coupling | linear growth of total probability | constant transition rate |
| strong resonant two-level drive | Rabi oscillations | first-order theory eventually fails |
Worked example 1: Constant perturbation between two levels
Problem. A system starts in . A constant perturbation with matrix element is turned on for time . Find the first-order transition probability to .
Method.
- Start from
- Integrate:
- Substitute:
- Take the modulus squared:
- Use
- Therefore
Checked answer. When , use to get , as expected for a resonant weak coupling at short time.
Worked example 2: Golden-rule estimate
Problem. A state couples to a continuum with approximately constant matrix element and density of states near the final energy. Find the transition rate.
Method.
- Use Fermi's golden rule:
- Insert the approximation
- The rate is
- The survival probability under the exponential approximation is
- The lifetime is
Checked answer. The dimensions are correct: has units of inverse time when is states per energy.
Code
import numpy as np
hbar = 1.0
v = 0.05
omega_fi = 0.7
times = np.linspace(0, 30, 6)
for t in times:
prob = 4 * abs(v) ** 2 / (hbar**2 * omega_fi**2) * np.sin(omega_fi * t / 2) ** 2
print(round(t, 2), prob)
Common pitfalls
- Using first-order perturbation theory after transition probability is no longer small.
- Forgetting the oscillatory phase in the interaction-picture matrix element.
- Treating the golden rule as valid for a single isolated final level. It is a continuum-rate result.
- Ignoring density of states. The matrix element alone is not a rate.
- Assuming exact exponential decay at arbitrarily short and long times. It is an approximation over an intermediate regime.
- Mixing angular frequency and ordinary frequency; factors of matter.
- Applying resonance formulas without checking which part of corresponds to absorption or emission under the chosen sign convention.
The central object in time-dependent perturbation theory is phase accumulation. A matrix element may be nonzero, but if the phase oscillates rapidly, contributions from different times cancel. Near resonance, the phase varies slowly and the amplitude can accumulate coherently. This is the physical origin of energy selection in long-time transitions and of broad spectral response for short pulses.
First-order amplitudes are amplitudes, not probabilities. If several indistinguishable paths lead to the same final state, their amplitudes must be added before squaring. If final states are distinguishable or unobserved, probabilities may be summed. This distinction is the same interference logic seen in spin and path integrals, now applied to transition histories. It becomes essential in multi-photon processes, decay channels, and scattering.
The golden rule should always be accompanied by its conditions. The final states must form a dense enough continuum, the coupling must be weak enough that the initial state is not strongly depleted over the times considered, and the observation time must be long enough for the sinc-squared energy window to become narrow. At very short times, transition probability is quadratic in time; at intermediate times it can look exponential after summing over a continuum; at very long times, exact models may deviate again.
Driven two-level systems are the boundary between perturbation theory and exact dynamics. Weak off-resonant driving is well described by first-order transition amplitudes. Strong resonant driving produces Rabi oscillations, where probability flows back and forth and first-order theory eventually predicts probabilities larger than one. When that happens, the issue is not arithmetic but the breakdown of the perturbative approximation.
Selection rules still matter in time-dependent problems. A harmonic electric-dipole perturbation contains an operator such as , so parity and angular momentum determine which transitions have nonzero matrix elements before any time integral is evaluated. Resonance cannot create a transition whose matrix element is zero by symmetry. Conversely, a nonzero matrix element far from resonance may produce only a small bounded oscillation.
Pulse duration controls energy resolution. A perturbation applied for a short time has a broad frequency spectrum, so it can drive a range of transitions. A long nearly monochromatic drive selects a narrow energy window. This is the time-energy Fourier relationship behind spectroscopy, and it is more precise than saying energy is "violated" for short times. The full system still evolves according to the time-dependent Hamiltonian; the finite-time amplitude simply has a broadened response.
For checks, take limits. At transition probabilities must vanish. For very weak coupling they should scale as . Near resonance they should grow much more efficiently than far off resonance. If these trends fail, the phase convention or time integral is likely wrong.