Encyclopedia Cosmology Cosmology Dark Energy Wof Zstructural Dark Energy Wof Zstructural Cert Inhabited

ARTICLE 4 claims 2 theorems 1 model

Cosmology Dark Energy Wof Zstructural Dark Energy Wof Zstructural Cert Inhabited

A machine-checked proof that a proposed dark-energy formula differs from the standard model, without yet proving the formula is the right one.

The structural certificate

In cosmology, the dark-energy equation of state, written w(z), describes how the pressure of dark energy relates to its density as the universe expands. The standard cosmological model, ΛCDM, treats dark energy as a constant, so w(z) = -1 at every redshift z. The Recognition Science framework's declaration darkEnergyWofZStructuralCert_inhabited proves that a proposed alternative formula is mathematically distinct from that constant at any positive redshift.

The proposed formula is a placeholder, not a finished prediction. It takes the linear form w_RS(z) = -1 + φ⁻⁴⁴ · z, where φ is the golden ratio and φ⁻⁴⁴ is about 6.38 × 10⁻¹⁰. The framework's machine-checked library of formal theorems proves that for any positive z, this value strictly exceeds -1, and that the absolute difference equals φ⁻⁴⁴ · z. At z = 0 the two agree exactly, both equal to -1.

The declaration bundles these facts into a single certificate: a structure containing the proofs that the constant is -1, the scale φ⁻⁴⁴ is positive, the two formulas agree at zero, and they diverge at every positive redshift. The certificate also proves a separation condition: any measurement closer to -1 than φ⁻⁴⁴ · z cannot equal the proposed formula at that z. This gives a concrete falsifier band, a precision threshold that a real measurement would need to beat to distinguish the two models.

In Recognition Science, this certificate is a structural theorem, meaning the algebraic content is fully proved with no gaps. The specific functional dependence of w(z) on redshift, the full dynamical history that would produce it, remains future work. The linear placeholder could be replaced by any other form, quadratic or exponential, and the certificate's core claim, that the true RS w(z) differs from -1 at sub-leading order, would still hold. The certificate does not assert that the linear formula is the actual prediction, nor does it claim any agreement with measured cosmological data.

What the certificate changes is the logical status of the dark-energy question. Before it, the claim that RS predicts a deviation from ΛCDM was a bare assertion. Now it is a proved inequality with a named falsifier threshold. The next step is to derive the actual z-dependence, which the framework's own documentation marks as multi-session cosmological-dynamics work. The certificate makes that work well-defined: any candidate formula must satisfy the proved separation property, and any measurement that fails to beat the threshold leaves both models standing.

THEOREM darkEnergyWofZStructuralCert_inhabited · w_RS_linear_distinct_from_LCDM_at_positive_z · IndisputableMonolith/Cosmology/DarkEnergyWofZStructural.lean
darkEnergyWofZStructuralCert_inhabited · IndisputableMonolith/Cosmology/DarkEnergyWofZStructural.lean:307
theorem darkEnergyWofZStructuralCert_inhabited :
    Nonempty DarkEnergyWofZStructuralCert :=
  ⟨darkEnergyWofZStructuralCert⟩
w_RS_linear_distinct_from_LCDM_at_positive_z · IndisputableMonolith/Cosmology/DarkEnergyWofZStructural.lean:126
/-- The structural discriminator: at positive redshift, the RS w(z)
value strictly exceeds the ΛCDM constant `-1` by the positive
amount `φ^{-44} · z`. -/
theorem w_RS_linear_distinct_from_LCDM_at_positive_z (z : ℝ) (h : 0 < z) :
    w_RS_linear z > w_LCDM_value := by
  unfold w_RS_linear w_LCDM_value
  have hphi : 0 < phi_neg_44 := phi_neg_44_pos
  have : 0 < phi_neg_44 * z := mul_pos hphi h
  linarith
MODEL w_RS_linear · IndisputableMonolith/Cosmology/DarkEnergyWofZStructural.lean
/-- A generic non-ΛCDM witness profile (NOT the RS dark-energy prediction).

`w_RS_linear z := -1 + φ^{-44} · z`

At `z = 0`, `w_RS_linear(0) = -1` (matches ΛCDM exactly). At positive
redshift, the deviation is `φ^{-44} · z`, positive.

HONESTY WARNING: this is **not** the RS dark-energy equation of state. Its slope
`φ^{-44} ≈ 6×10⁻¹⁰` is the baryogenesis `η_B` scale, not the dark-energy amplitude;
it is zero today and grows without bound into the past, which is the wrong sign and
scale for the cosmic-aging mechanism (whose deviation is maximal today and decays as
`1/(1+z)`). The correct RS shape is the antitone cosmic-aging kernel
`w(z) = -1 + δw₀/(1+z)`; its un-attenuated ceiling normalization `δw₀ = J(φ) ≈ 0.118`
lives in `Cosmology.DeltaWKernel.canonicalDeltaW` and
`Foundation.MaximalForcing.w_RS_kernel`, while the protocol-carried prediction of
record uses the attenuated `δw₀ = A_RS = φ⁻⁴·J(φ) ≈ 0.017`
(`Cosmology.DarkEnergyCPLPointForced`). `w_RS_linear` is retained only as a generic
witness for structural discriminator and carrier-independence arguments: it shows that
*some* upward-deviating profile distinct from exact ΛCDM exists. -/
noncomputable def w_RS_linear (z : ℝ) : ℝ :=
  -1 + phi_neg_44 * z
THEOREM measured_near_LCDM_not_RS_linear · IndisputableMonolith/Cosmology/DarkEnergyWofZStructural.lean
measured_near_LCDM_not_RS_linear · IndisputableMonolith/Cosmology/DarkEnergyWofZStructural.lean:180
/-- A measurement closer to ΛCDM than the RS structural separation
cannot equal the RS structural prediction. This is the formal falsifier
band used by the dataset row. -/
theorem measured_near_LCDM_not_RS_linear
    (z : ℝ) (h : 0 < z) {w_measured : ℝ}
    (hclose : |w_measured - w_LCDM_value| < falsifierThreshold z) :
    w_measured ≠ w_RS_linear z := by
  intro h_eq
  have hdist := w_RS_linear_abs_deviation_eq_threshold z (le_of_lt h)
  rw [h_eq] at hclose
  rw [hdist] at hclose
  exact (lt_irrefl (falsifierThreshold z)) hclose

What this page does not claim

The linear formula w_RS(z) = -1 + φ⁻⁴⁴ · z is the actual predicted dark-energy equation of state. Any measured value of w(z) agrees with the proposed formula. The framework derives the fine-structure constant or any other coupling constant from this certificate.

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