Epilogue: measure and meaning

June 23, 2026

The very first useful thing our simulator did, back in post 0, was turn a vector of amplitudes into a vector of probabilities. One line. We squared the magnitudes. Every post since leaned on it: Grover’s success probability, the QFT’s peaks, the eigenphase a measurement samples, the diagonal of a density matrix. It is the Born rule, and it is among the most thoroughly tested rules in all of science. This closing post is not about how to compute it. We have done that. It is about what that number does, and does not, mean. For once, no code to build, just one line of the old code to look at again, and then a question the physics cannot answer.

import numpy as np
from qfs.statevector import StateVector
from qfs import gates

# a lopsided single qubit: heavily weighted toward |0>, a thin sliver on |1>
psi = StateVector(1).apply(gates.Ry(0.2), 0)
probabilities = np.abs(psi.amps) ** 2
print("amplitudes:   ", np.round(psi.amps, 4))
print("probabilities:", np.round(probabilities, 4))
amplitudes:    [0.995 +0.j 0.0998+0.j]
probabilities: [0.99 0.01]

That is the whole of it. np.abs(amps) ** 2. The outcome |1> here carries about one percent of the weight. In a single run of the machine you will almost always measure |0>, and once in a hundred-odd runs you will measure |1>. We built the sampler that does this in post 0, and it has never once lied to us.

Here is the question. When the rare outcome happens, was it less real than the common one? The probability was small. But the run where you measured |1> was a perfectly ordinary run; the qubit was as definite afterward, the collapse as complete, as in any other. The measure told you how likely you were to land there. It said nothing whatsoever about what it was like to be there.

The measure is a weight, not a verdict

This gets sharper the more seriously you take the physics. In post 8 we built the density matrix and watched a pure state become mixed by tracing away an entangled partner; in post 9 we watched decoherence bury the off-diagonal coherences as a qubit leaked into its environment. Run that picture forward and you arrive, without adding anything, at the many-worlds reading: the equation does not delete the branch you did not see, it just stops you from interfering with it. Both outcomes are still in the wavefunction. You find yourself on one.

Read More

Multitudes: Taking Quantum Mechanics Literally

June 22, 2026

Quantum mechanics comes with a set of equations that predict every measurement we have ever made to a precision no other theory has reached. The equations describe a system evolving smoothly, spreading out into a superposition of every outcome its interactions allow. Then, in the textbook version, a second thing happens. At the moment you look, all but one of those outcomes disappears, and the survivor becomes the fact. That second step, the collapse, is the part nobody has ever derived. It is not in the equations. It is added afterward, by hand, so the math will agree with the single world we seem to live in.

The move at the center of Multitudes is to refuse the addition, and to see what the equations were saying without it.

The subtraction

Let the equation govern everything, including the instrument and the physicist reading it. Then the physicist enters superposition along with the particle. There is now a branch in which she saw the click and a branch in which she did not, both described by the same evolving state, neither one canceled. Repeat that wherever a quantum difference gets amplified into a large-scale one, which is to say almost everywhere, all the time, and you get a reality that keeps dividing. Hugh Everett pointed this out in the nineteen fifties: the collapse is not merely unproven, it is unnecessary. The one-world picture was never a prediction of the theory. It was an assumption laid on top of it.

So the interpretive move is not to add anything. It is to remove something. You take the same physics every working quantum lab already trusts, and you decline the extra rule that was quietly deleting all the outcomes but one. What remains is a world that never stops splitting into copies, each carrying its own version of you who saw its own version of events.

What the measure measures

Here is the concrete version. Send a single photon at a half-silvered mirror. The equation does not send it one way or the other. It sends an amplitude down each path, a complex number attached to each branch of the future. To turn amplitudes into the odds we actually observe, you take each one, compute the square of its magnitude, and read that number as the weight of its branch. This is the Born rule, and it is the one piece of quantum mechanics that looks fitted to experiment rather than derived from anything deeper. If both paths carry equal amplitude, each branch gets weight one half. Tilt the mirror so one path carries an amplitude three times larger, and the squares come out nine to one, so that branch is nine times heavier than its sibling.

Read More