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 a(t)a(t) carries all the dynamics, and the Friedmann equation ties it to what the universe contains:

(a˙a)2=8πG3ρka2+Λ3\left(\frac{\dot a}{a}\right)^{2} = \frac{8\pi G}{3}\rho - \frac{k}{a^{2}} + \frac{\Lambda}{3}

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.


  1. Footnotes render below a hairline. This one exists to prove it. 

NEXT PLATE →