Encyclopedia Cosmology Cosmology Large Scale Structure From Rs Scale Pos

ARTICLE 4 claims 3 theorems 1 model

Cosmology Large Scale Structure From Rs Scale Pos

A single theorem in a machine-checked library says each rung of a cosmic distance ladder is a fixed multiple of the one below it, and that multiple is the golden ratio.

The scale ladder

In cosmology, large-scale structure refers to the biggest patterns in the universe: the faint temperature ripples in the cosmic microwave background, the regular spacing of galaxies known as baryon acoustic oscillations, the clusters where galaxies crowd together, the filaments that string them into webs, and the voids that lie between. Astronomers measure these features in comoving length, a distance scale that factors out the expansion of the universe so that a fixed physical size stays fixed as space stretches. The Recognition Science framework models these five regimes as a ladder of lengths, each one a constant multiple of the next.

The framework's machine-checked library of formal theorems defines a scale function that assigns to each whole number k a length equal to phi raised to the k-th power, where phi is the golden ratio, approximately 1.618. The theorem called scale_pos states that every such length is positive: for every whole number k, the value phi^k is greater than zero. This is a modest but necessary fact, because the framework's account of cosmic structure relies on comparing lengths by division, and division by zero is undefined. The positivity guarantee ensures that every rung of the ladder can serve as a denominator in those comparisons.

The same library proves a companion fact about the ratio between neighboring rungs. For any k, the length at rung k+1 divided by the length at rung k equals phi. So the ladder is geometric: each step up multiplies the comoving length by the golden ratio, and each step down divides it by the same factor. The framework identifies five canonical regimes with five consecutive rungs, and the theorem lssRegime_count confirms that the list contains exactly five entries. A certificate structure bundles these three facts, the count, the ratio, and the positivity, into a single object that the library can pass to later developments.

In Recognition Science, this ladder is not a free choice. The golden ratio arises from the framework's central forcing chain, which derives phi as the unique self-similar scaling from a proved cost function. The cosmological ladder inherits that derivation: the framework models the five large-scale structure regimes as sitting one rung apart in comoving length because the same ratio that governs recognition cost also governs this cosmic spacing. What the framework does not claim is that this identification is itself proved. The positivity theorem is proved, and the ratio theorem is proved, but the mapping from the five named regimes to five specific rungs of the ladder is a modeling choice, not a theorem. The library states the ladder and its properties; it does not prove that the real universe's measured acoustic scale or void sizes land exactly on those rungs.

The practical consequence is that the framework offers a compact, checkable description of cosmic hierarchy: five regimes, one ratio, all lengths positive. A reader can verify the arithmetic in a few lines, and the machine-checked proofs guarantee that no hidden assumption crept into the positivity or ratio statements. What remains open is the empirical question of whether the observed large-scale structure actually follows this golden ladder, and that comparison against astronomical data is a measurement task, not a formal one.

THEOREM scale_pos · IndisputableMonolith/Cosmology/LargeScaleStructureFromRS.lean
theorem scale_pos (k : ℕ) : 0 < scale k := pow_pos phi_pos k
THEOREM scale_ratio · IndisputableMonolith/Cosmology/LargeScaleStructureFromRS.lean
theorem scale_ratio (k : ℕ) : scale (k + 1) / scale k = phi := by
  unfold scale
  have hpos : (0 : ℝ) < phi ^ k := pow_pos phi_pos k
  rw [div_eq_iff hpos.ne', pow_succ]
  ring
THEOREM lssRegime_count · IndisputableMonolith/Cosmology/LargeScaleStructureFromRS.lean
theorem lssRegime_count : Fintype.card LSSRegime = 5 := by decide
MODEL LSSRegime · IndisputableMonolith/Cosmology/LargeScaleStructureFromRS.lean
inductive LSSRegime where
  | cmbAcoustic
  | baryonAcousticOscillation
  | galaxyCluster
  | filament
  | cosmicVoid
  deriving DecidableEq, Repr, BEq, Fintype

What this page does not claim

The framework does not prove that the observed universe's large-scale structure actually follows the golden ladder. The mapping from the five named regimes to five specific rungs is a modeling choice, not a theorem. The scale_pos theorem says nothing about which physical length corresponds to any particular rung.

Verify this page

Every tagged claim above names its theorem. To check one yourself rather than trust this page, elaborate the source module with Lean 4 and audit its axiom basis:

$ lake env lean IndisputableMonolith/Cosmology/LargeScaleStructureFromRS.lean
expected axiom basis: [propext, Classical.choice, Quot.sound] (the Lean kernel's standard three; no RS-specific axioms)

A page whose claims cannot be reproduced this way does not ship. In production, every anchor links to the exact declaration in the public source release, and this block carries the build receipt for the page itself.

Derived articles

This page is generated by a question-recursion engine: the questions its answers raise become the next pages. The current agenda, with open targets marked red:

MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND