Encyclopedia Cosmology Cosmology Spectral Index3 From Jcost N S3 Cert

ARTICLE 3 claims 2 theorems 1 hypothesis

Cosmology Spectral Index3 From Jcost N S3 Cert

A formal certificate named nS3Cert records three general properties of a cost function, but it says nothing about cosmology until the quantities in it are tied to the early universe.

The certificate's scope

The spectral index n_s measures how the strength of primordial density fluctuations varies with scale; the Planck 2018 collaboration measured it at 0.9649. A framework called Recognition Science (RS) attempts to derive such constants from a single forced cost function, and its machine-checked library of formal theorems contains a declaration named nS3Cert. In plain terms, nS3Cert is a certificate: a packaged record that three mathematical facts hold for a particular cost expression. The facts are that the cost is zero when its two inputs are equal, that it never goes negative for positive inputs, and that a certain threshold built from the golden ratio is positive. The library establishes each of these three facts as formal results, and the certificate simply bundles them into one structure, together with a proof that such a structure exists.

The cost expression in question is Jcost(m/e), where Jcost is the framework's unique forced cost function and m and e are two real numbers. The certificate establishes that this expression vanishes when m equals e, that it is nonnegative when both inputs are positive, and that phi minus 3/2 is greater than zero. These are general facts about the cost function and the golden ratio phi; they hold for any positive real numbers m and e. The certificate itself contains no reference to cosmology, inflation, or the spectral index. It is a piece of pure mathematics about a cost function, nothing more.

In Recognition Science, the intended application was to set m and e to specific cosmological quantities, such as the number of e-folds of inflation, and thereby derive n_s = 0.9556, compared to the measured 0.9649. The framework's research note records this intention and notes the value is within 3 sigma of the Planck measurement. But the Lean code establishes none of that. The definition of domainCost as Jcost(m/e) does not specify what m and e are, and the certificate establishes only the three general properties. The derivation of the spectral index from the cost function remains a research note, not a formal result. The certificate is a necessary mathematical ingredient, but it is not the cosmological result.

What nS3Cert does establish is that the cost function behaves sensibly: it has a minimum at equality and never produces a negative cost. This is a small but real mathematical fact, machine-checked and available for future work. What it does not establish is any connection to the early universe. The leap from a general cost function to a specific prediction about the spectral index requires defining m and e in cosmological terms, and that step is not in the code. The certificate is a foundation stone, not the building.

THEOREM nS3Cert · cert · IndisputableMonolith/Cosmology/Spectral_Index3_FromJCost.lean
structure nS3Cert where
  cost_at_eq : ∀ r : ℝ, r ≠ 0 → domainCost r r = 0
  cost_nonneg : ∀ m e : ℝ, 0 < m → 0 < e → 0 ≤ domainCost m e
  threshold_pos : 0 < canonicalThreshold
noncomputable def cert : nS3Cert where
  cost_at_eq := domainCost_at_eq
  cost_nonneg := domainCost_nonneg
  threshold_pos := canonicalThreshold_pos
THEOREM domainCost_at_eq · domainCost_nonneg · IndisputableMonolith/Cosmology/Spectral_Index3_FromJCost.lean
theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by
  unfold domainCost; rw [div_self h]; exact Jcost_unit0
theorem domainCost_nonneg (m e : ℝ) (hm : 0 < m) (he : 0 < e) : 0 ≤ domainCost m e := by
  unfold domainCost; exact Jcost_nonneg (div_pos hm he)
HYPOTHESIS domainCost · IndisputableMonolith/Cosmology/Spectral_Index3_FromJCost.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)

What this page does not claim

nS3Cert does not prove that the spectral index equals 0.9556. The certificate does not define what m and e mean in cosmological terms. The three established facts do not depend on any property of the early universe.

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/Spectral_Index3_FromJCost.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