Encyclopedia Cosmology Cosmology Inflation Spectral Index From Jcost Ns Rs Lt One
ARTICLE 3 claims 3 theorems
Cosmology Inflation Spectral Index From Jcost Ns Rs Lt One
A machine-checked theorem shows one framework's predicted value for the cosmos's primordial ripples stays below 1, but it stops far short of matching the measured sky.
The spectral index bound
In cosmology, the spectral index ns measures how the strength of density fluctuations in the early universe varied with scale. A value below 1 means the fluctuations were slightly stronger on large scales than on small ones, the tilt that seeded the clumpiness of galaxies. The Planck satellite's 2018 measurements put ns at 0.965 with an uncertainty of about 0.004.
Recognition Science (RS) is a framework that derives physical structure from a single forced cost function. Its cosmology module defines a candidate spectral index as ns = 1 − 2/45, using a number called gap45 as a stand-in for the number of e-folds of inflation. The machine-checked library of formal theorems proves three basic facts about this candidate: it is less than 1, it is greater than 0, and it falls in the narrow band between 0.955 and 0.957. The theorem nsRS_lt_one is the first of those, a simple arithmetic consequence of the definition.
The library also proves that this RS value lies within 0.015 of the Planck measurement. That is a true statement, but it is a weak one: the gap between 0.956 and 0.965 is about 0.009, while the measurement's own error bar is only 0.004. The RS candidate sits more than two error bars away from the central measured value. The formal certificate bundles the band and nearness claims into one structure, but it does not assert that the RS value matches the sky within measurement uncertainty.
What the declaration does not claim matters as much as what it proves. It does not derive the spectral index from first principles; gap45 is a defined constant, not a derived one. It does not show that RS predicts the measured value within its error bars. And it says nothing about whether the physical bridge from recognition events to inflationary cosmology is sound, a step the framework itself marks as open.
THEOREM nsRS_lt_one · IndisputableMonolith/Cosmology/InflationSpectralIndexFromJCost.lean
theorem nsRS_lt_one : nsRS < 1 := by
unfold nsRS gap45; norm_num
THEOREM nsRS_band · IndisputableMonolith/Cosmology/InflationSpectralIndexFromJCost.lean
/-- n_s_RS ∈ (0.955, 0.957). -/
theorem nsRS_band : (0.955 : ℝ) < nsRS ∧ nsRS < 0.957 := by
rw [nsRS_val]; norm_num
THEOREM nsRS_near_planck · IndisputableMonolith/Cosmology/InflationSpectralIndexFromJCost.lean
theorem nsRS_near_planck : |nsRS - nsPlanck| < 0.015 := by
rw [nsRS_val]
unfold nsPlanck
rw [abs_lt]
constructor <;> norm_num
What this page does not claim
The RS candidate does not match the measured Planck value within the measurement's own error bars. The number 45 is a defined constant, not a derived prediction from the framework's axioms. The physical bridge from recognition events to inflationary cosmology is not established by these theorems.
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/InflationSpectralIndexFromJCost.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:
- How does the framework derive the number 45 from the recognition cost function?
- What physical mechanism connects recognition events to the e-folds of inflation?
- Which alternative definitions of the spectral index does the framework consider, and why gap45?
- How would the RS prediction change if a different rung k replaced 45 in the formula?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM nsRS_lt_one · IndisputableMonolith/Cosmology/InflationSpectralIndexFromJCost.lean
theorem nsRS_lt_one : nsRS < 1 := by unfold nsRS gap45; norm_numThe theorem nsRS_lt_one shows the RS candidate spectral index is less than 1. nsRS_lt_one · IndisputableMonolith/Cosmology/InflationSpectralIndexFromJCost.leanTHEOREM nsRS_band · IndisputableMonolith/Cosmology/InflationSpectralIndexFromJCost.lean
/-- n_s_RS ∈ (0.955, 0.957). -/ theorem nsRS_band : (0.955 : ℝ) < nsRS ∧ nsRS < 0.957 := by rw [nsRS_val]; norm_numThe RS candidate spectral index falls in the narrow band between 0.955 and 0.957. nsRS_band · IndisputableMonolith/Cosmology/InflationSpectralIndexFromJCost.leanTHEOREM nsRS_near_planck · IndisputableMonolith/Cosmology/InflationSpectralIndexFromJCost.lean
theorem nsRS_near_planck : |nsRS - nsPlanck| < 0.015 := by rw [nsRS_val] unfold nsPlanck rw [abs_lt] constructor <;> norm_numThe library proves that this RS value lies within 0.015 of the Planck measurement. nsRS_near_planck · IndisputableMonolith/Cosmology/InflationSpectralIndexFromJCost.lean