Quantum Dynamics and Pictures
Quantum dynamics describes how probability amplitudes change between preparations and measurements. The same physics can be represented in several pictures: in the Schrodinger picture states move, in the Heisenberg picture operators move, and in the interaction picture both share the work in a way designed for perturbation theory.
Sakurai develops the time-evolution operator first, then compares pictures and applies the result to spin precession, Ehrenfest's theorem, and transition amplitudes. Ballentine puts dynamics inside a broader symmetry and transformation framework. The Gottfried-named notes emphasize propagators and density operators soon after the picture change. Schiff's wave-mechanics tradition corresponds most directly to Schrodinger's differential equation in coordinate representation.
Definitions
The time-evolution operator satisfies
For a closed system,
If the Hamiltonian is time independent,
If depends on time and does not commute with itself at different times, the formal solution uses time ordering:
In the Schrodinger picture, states carry time dependence:
while operators are fixed unless they have explicit time dependence.
In the Heisenberg picture,
In the interaction picture, split and define
with
Key results
The Heisenberg equation of motion is
If has no explicit time dependence and , then is conserved. This is the operator version of conservation laws, and it prepares the later symmetry page.
Expectation values are picture independent:
Ehrenfest's theorem follows by applying the Heisenberg equation to and for
The result is
This resembles Newton's law, but it is not identical unless the wave packet is narrow enough or the force is linear.
The interaction-picture state obeys
Iterating this integral equation gives the Dyson series:
Sakurai uses this machinery for time-dependent perturbation theory. Ballentine's transformation-centered viewpoint makes clear that changing pictures is not changing the experiment; it is changing where time dependence is stored.
Visual
| Picture | State | Operator | Best use |
|---|---|---|---|
| Schrodinger | wave functions, spectra, direct time evolution | ||
| Heisenberg | fixed | conservation laws, commutators, field theory style | |
| Interaction | from | from | perturbation theory and transitions |
Worked example 1: Free particle Ehrenfest theorem
Problem. For
show that the Heisenberg operator moves linearly in time.
Method.
- Use the Heisenberg equation:
- Compute the commutator using or :
- Therefore
- Substitute:
- Since
integrate:
Checked answer. Taking expectation values gives , the quantum analogue of uniform classical motion.
Worked example 2: Two-level evolution under a diagonal Hamiltonian
Problem. Let
Find and .
Method.
- The time-evolution operator is
- Apply it to the initial state:
- Use
- Compute the expectation:
Checked answer. The probabilities remain and , while the relative phase produces oscillation in the expectation value.
Code
import numpy as np
hbar = 1.0
omega = 2.0
sx = np.array([[0, 1], [1, 0]], dtype=complex) * hbar / 2
psi0 = np.array([1, 1], dtype=complex) / np.sqrt(2)
for t in np.linspace(0, np.pi / omega, 5):
u = np.diag([np.exp(-1j * omega * t / 2), np.exp(1j * omega * t / 2)])
psi = u @ psi0
print(round(t, 3), np.vdot(psi, sx @ psi).real)
Common pitfalls
- Thinking the three pictures are different theories. They are equivalent representations of the same amplitudes.
- Applying when and do not commute. Time ordering is then required.
- Dropping explicit time dependence in the Heisenberg equation. The partial derivative term matters for driven observables.
- Assuming Ehrenfest's theorem always reproduces one exact classical trajectory. It does so only in special limits.
- Forgetting that interaction-picture operators evolve with , not the full Hamiltonian.
- Confusing conservation of an operator with conservation of a particular measurement outcome. Conservation means the distribution is stationary for that observable under the stated Hamiltonian.
- Losing unitarity in numerical time stepping. If a simulation changes the norm of a closed-system state, the integrator or approximation needs checking.
The most practical way to choose a picture is to identify what is simple. If the state has a simple initial expansion and the Hamiltonian is diagonal, the Schrodinger picture is usually direct. If the question asks how observables move or whether a quantity is conserved, the Heisenberg picture exposes the commutator structure. If the Hamiltonian splits into a solvable large part plus a weak time-dependent part, the interaction picture removes the trivial phases and leaves only transition-producing terms.
Picture independence is a useful error check. If a probability or expectation value is physical, it cannot depend on where the time dependence was placed. For example, a spin precession result computed by evolving the spinor must agree with the result computed by rotating the spin operator. If the answers differ, common causes include using instead of in the Heisenberg operator, losing a sign in the exponent, or forgetting that bras evolve with the adjoint.
Time-dependent Hamiltonians require more care than the compact notation suggests. The expression is valid only when Hamiltonians at different times commute or when time ordering is included. This issue is not pedantic: driven two-level systems, magnetic resonance, and perturbation theory all involve operators whose values at different times may fail to commute. Sakurai's development of the time-evolution operator makes this point structurally clear.
Numerical dynamics should respect the same structure. Exact closed-system evolution is unitary, so a finite-step approximation that steadily changes the norm is not just imprecise; it is violating a core physical constraint. For small matrices, exponentiating a Hermitian Hamiltonian gives a unitary step. For differential wave equations, stable unitary or norm-preserving schemes are preferred when long-time phase accuracy matters.
A final check is to distinguish time dependence of phases from time dependence of probabilities. Energy eigenstates acquire phases, but their energy measurement probabilities do not change under a time-independent Hamiltonian. Superpositions acquire relative phases, and those relative phases can change probabilities for other observables. Many spin-precession and two-level interference effects are nothing more than this relative-phase evolution made visible.
When a problem includes measurement at an intermediate time, split the calculation into unitary pieces separated by state-update rules. Do not evolve through a measurement as if it were just another Hamiltonian interval unless the measurement interaction is explicitly modeled.