pith. machine review for the scientific record. sign in
def definition def or abbrev high

spectral_index

show as:
view Lean formalization →

The spectral index n_s is defined as 1 - 2/N for N e-foldings in slow-roll inflation. Cosmologists matching RS-derived primordial spectra to CMB data would cite this when evaluating tilt at N around 55. The declaration is a direct algebraic assignment reproducing the standard slow-roll formula without additional lemmas.

claimThe spectral index as a function of the number of e-foldings is given by $n_s(N) = 1 - 2/N$.

background

The Inflation from phi module formalizes RS inflationary predictions in which the α-attractor parameter equals φ² from cost-functional self-similarity. The spectral index follows the standard slow-roll result n_s ≈ 1 - 2/N. Upstream structures supply tensor definitions in 4D spacetime and empirical program classes, but the present definition stands independently as the tilt expression.

proof idea

This is a direct definition that assigns the expression 1 - 2/N verbatim. No lemmas or tactics are invoked beyond the assignment itself.

why it matters in Recognition Science

The definition supplies the spectral index required by the InflationCert structure and the n_s_at_55 theorem, which confirms the value at N = 55 lies in (0.96, 0.97). It feeds the PowerSpectrum and observedSpectrum constructions in the cosmology module. Within the framework it realizes the parameter-free slow-roll tilt consistent with the eight-tick octave and φ-ladder predictions.

scope and limits

Lean usage

theorem n_s_at_55 : 0.96 < spectral_index 55 ∧ spectral_index 55 < 0.97 := by unfold spectral_index; constructor <;> norm_num

formal statement (Lean)

  47noncomputable def spectral_index (N : ℝ) : ℝ := 1 - 2 / N

proof body

Definition body.

  48
  49/-- Tensor-to-scalar ratio: r ≈ 12α/N² = 12φ²/N².
  50    This is the RS-SPECIFIC prediction: the standard α-attractor formula
  51    with α = φ² (not a free parameter). -/

used by (14)

From the project-wide theorem graph. These declarations reference this one in their body.

depends on (5)

Lean names referenced from this declaration's body.