The graticule
Demo note — delete me. I exist to prove the machinery: math, code, wikilinks, backlinks, footnotes, tags.
Every measurement needs a reference frame. On a photographic plate it is the réseau; in an expanding universe it is the comoving grid. The scale factor carries all the dynamics, and the Friedmann equation ties it to what the universe contains:
Distances follow from integrating along the grid1:
from scipy.integrate import quad
from math import sqrt
C_KM_S = 299_792.458
def comoving_distance(z, h0=67.4, om=0.315):
"""Flat ΛCDM, matter + Λ only."""
integrand = lambda zp: 1 / sqrt(om * (1 + zp) ** 3 + (1 - om))
return (C_KM_S / h0) * quad(integrand, 0, z)[0]
This note links to The plate archive — open it and you’ll find this note listed under its backlinks. A link to a note that doesn’t exist yet looks like belief dynamics: planted, not grown.
-
Footnotes render below a hairline. This one exists to prove it. ↩