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

Worldlines: Taking Relativity Literally

April 15, 2026

Relativity usually arrives as a set of corrections. Fast clocks run slow. The satellites that feed your phone its position need their onboard time adjusted or the map drifts you into the wrong lane. Mass bends the path of a light ray. Taught this way it is a recipe: feed in a velocity or a gravitational field, get a more accurate number out the other side. What almost nobody does with it in public is take it as a description of what is actually there. Not a sharper tool for predicting measurements, but a claim about the shape of the real. That is the one thing I wanted Worldlines to do, and to keep doing after the picture stopped being comfortable.

Three settled facts

The whole book rests on three results, and all three are ordinary physics, confirmed to more decimal places than almost anything else we know.

The first is that light travels at one fixed speed for every observer, however fast that observer is moving. Chase a light beam at nine tenths of that speed and it still outruns you at the full value, not at a tenth of it. This sounds impossible and it is measured daily.

The second is that gravity is not a force reaching out to pull on things. It is the curvature of spacetime, and a falling object is not being tugged, it is coasting along the straightest line available in a geometry that nearby mass has bent. Weight is what you feel when the ground stops you from following that line.

The third is about order. The early universe sat in a state of staggeringly low entropy, far more ordered than it had any statistical right to be, and everything we call the direction of time is the long relaxation away from that beginning. Physicists call the assumption the Past Hypothesis. It is doing quiet work under every other fact.

None of this is contested. The book contains no speculative physics, and neither does this essay. What is already confirmed is strange enough.

Now is not a place we share

Take the first fact and lean on it. If light has the same speed for everyone, then two observers moving relative to each other cannot agree on which distant events happen at the same time. This is the relativity of simultaneity, and it is not an illusion or a measurement error. Each observer carves spacetime into slices of “now” at a different tilt. Draw it: your line of the present and a passing traveler’s line of the present cross at different angles, and an event that sits in your future can sit squarely in the traveler’s present.

Read More