Encyclopedia Cosmology Cosmology Dark Energy Wof Zstructural Exact Lcdm Measurement Not Rs Linear
ARTICLE 5 claims 4 theorems 1 open
Cosmology Dark Energy Wof Zstructural Exact Lcdm Measurement Not Rs Linear
A machine-checked theorem shows that any measurement matching the standard dark-energy constant cannot match a proposed Recognition Science alternative, but the theorem does not say which is right.
The discriminator
Dark energy is the name cosmologists give to the unknown something that accelerates the expansion of the universe. In the standard cosmological model, Lambda-CDM, that something behaves as a constant: its equation of state, written w, stays pinned at exactly -1 at every moment. The equation of state is a ratio that compares the pressure of the dark energy to its energy density; a constant -1 means the pressure is always exactly the negative of the density, the signature of a cosmological constant. Observations from supernovae, the cosmic microwave background, and galaxy clustering have measured w to be very close to -1, though the error bars still leave room for a small time variation.
Recognition Science (RS) is a framework that tries to derive physics from a single axiom about recognition cost. In its cosmology program, RS proposes that dark energy is not strictly constant but drifts slightly with redshift z, the measure of how much the universe has expanded since light left a distant object. The framework's placeholder form is w_RS_linear(z) = -1 + φ⁻⁴⁴ · z, where φ is the golden ratio and φ⁻⁴⁴ is about 6.38 × 10⁻¹⁰. At redshift zero, today, this matches Lambda-CDM exactly; at any positive redshift it is slightly greater than -1. The specific functional dependence, whether linear or something else, remains an open target; the linear form is only a structural witness.
The theorem named exact_LCDM_measurement_not_RS_linear, proved in the machine-checked library of formal theorems, states a simple consequence: for any positive redshift, the Lambda-CDM constant -1 is not equal to the RS linear value. That is, the two curves never touch except at z = 0. A companion theorem goes further: any measured value that lies strictly within φ⁻⁴⁴ · z of -1, the falsifier threshold, also cannot equal the RS linear prediction. In plain terms, if future observations keep finding w close to -1, they will have ruled out this particular RS form, no matter how the measurement error shrinks.
What the theorem does not claim matters as much. It does not assert that Lambda-CDM is correct, nor that the RS linear form is wrong; it only separates the two. It does not derive the RS w(z) from first principles; the linear placeholder is a documented stand-in, and the real prediction awaits the FPT cosmic Z-aging derivation, which is future work. And it does not say any measurement has yet falsified the RS form; the current observational precision is far coarser than the tiny φ⁻⁴⁴ threshold. The theorem is an algebraic discriminator, a test that will become decisive only when measurements reach that scale.
The practical consequence is a clean falsification protocol. For any chosen redshift, the threshold φ⁻⁴⁴ · z defines a band around -1; any measurement landing inside that band eliminates the RS linear candidate. The band is vanishingly narrow, about 6 × 10⁻¹⁰ at redshift one, far beyond current reach, but the logical structure is now settled. The framework has committed itself to a specific, testable departure from the standard model, and the theorem guarantees that the test is meaningful: the two predictions are genuinely distinct, not just formally different.
THEOREM w_RS_linear_distinct_from_LCDM_at_positive_z · IndisputableMonolith/Cosmology/DarkEnergyWofZStructural.lean
/-- 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
THEOREM measured_near_LCDM_not_RS_linear · IndisputableMonolith/Cosmology/DarkEnergyWofZStructural.lean
/-- 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
THEOREM w_RS_linear_at_zero · IndisputableMonolith/Cosmology/DarkEnergyWofZStructural.lean
theorem w_RS_linear_at_zero : w_RS_linear 0 = -1 := by
unfold w_RS_linear
ring
THEOREM falsifierThreshold_at_redshift_one · IndisputableMonolith/Cosmology/DarkEnergyWofZStructural.lean
/-- Falsifier threshold at `z = 1.0`. -/
theorem falsifierThreshold_at_redshift_one :
falsifierThreshold redshift_one = phi_neg_44 := by
unfold falsifierThreshold redshift_one
ring
What this page does not claim
The theorem does not assert that Lambda-CDM is the correct description of dark energy. The theorem does not derive the RS w(z) form from the recognition-cost axiom. No current measurement has reached the precision needed to test the RS linear prediction.
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:
- What is the FPT cosmic Z-aging derivation that would supply the real RS w(z) form?
- How close can future dark-energy surveys push their measurement of w near redshift one?
- What other RS predictions share the φ⁻⁴⁴ suppression scale?
- How does the master theorem template relate to this separate falsifier channel?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM w_RS_linear_distinct_from_LCDM_at_positive_z · IndisputableMonolith/Cosmology/DarkEnergyWofZStructural.lean
/-- 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 linarithAt any positive redshift, the RS linear w(z) value strictly exceeds the Lambda-CDM constant -1. w_RS_linear_distinct_from_LCDM_at_positive_z · IndisputableMonolith/Cosmology/DarkEnergyWofZStructural.leanTHEOREM measured_near_LCDM_not_RS_linear · IndisputableMonolith/Cosmology/DarkEnergyWofZStructural.lean
/-- 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)) hcloseAny measured value within the falsifier threshold of -1 cannot equal the RS linear prediction. measured_near_LCDM_not_RS_linear · IndisputableMonolith/Cosmology/DarkEnergyWofZStructural.leanTHEOREM w_RS_linear_at_zero · IndisputableMonolith/Cosmology/DarkEnergyWofZStructural.lean
theorem w_RS_linear_at_zero : w_RS_linear 0 = -1 := by unfold w_RS_linear ringThe RS linear placeholder equals -1 at redshift zero. w_RS_linear_at_zero · IndisputableMonolith/Cosmology/DarkEnergyWofZStructural.leanTHEOREM falsifierThreshold_at_redshift_one · IndisputableMonolith/Cosmology/DarkEnergyWofZStructural.lean
/-- Falsifier threshold at `z = 1.0`. -/ theorem falsifierThreshold_at_redshift_one : falsifierThreshold redshift_one = phi_neg_44 := by unfold falsifierThreshold redshift_one ringThe falsifier threshold at redshift one is φ⁻⁴⁴, about 6.38 × 10⁻¹⁰. falsifierThreshold_at_redshift_one · IndisputableMonolith/Cosmology/DarkEnergyWofZStructural.lean- OPENThe specific functional z-dependence of the RS w(z) deviation remains future work.