Encyclopedia Cosmology Cosmology Dark Energy Wof Zstructural W Rs Linear Distinct From Lcdm Abs
ARTICLE 3 claims 2 theorems 1 model
Cosmology Dark Energy Wof Zstructural W Rs Linear Distinct From Lcdm Abs
A machine-checked theorem proves that a proposed dark-energy equation of state must differ from the standard cosmological constant, but only in a specific, tiny way.
The structural discriminator
In cosmology, the equation of state of dark energy, written w, describes how its pressure relates to its density. The standard cosmological model, ΛCDM, treats dark energy as a constant with w = -1, meaning its pressure is exactly the negative of its density. The Recognition Science framework proposes that dark energy's equation of state is not exactly constant but evolves with redshift, the measure of how much the universe has expanded since the light was emitted.
The declaration w_RS_linear_distinct_from_LCDM_abs is a theorem in the framework's machine-checked library of formal theorems. It proves a precise algebraic statement: for any positive redshift, the absolute difference between the proposed Recognition Science value and the ΛCDM constant is strictly greater than zero. In plain language, the framework's proposed equation of state is never equal to -1 at any positive redshift. The theorem is a formal guarantee of a difference, not a claim about what the difference is.
The framework's specific proposal is a linear placeholder, written w(z) = -1 + φ⁻⁴⁴ · z, where φ is the golden ratio and φ⁻⁴⁴ is approximately 6.38 × 10⁻¹⁰. This means the deviation from -1 grows linearly with redshift, but is extraordinarily small. At redshift one, the difference is about 6.38 × 10⁻¹⁰. The theorem also establishes a falsifier band: any measurement of w that falls within this tiny distance of -1 is formally incompatible with the framework's linear proposal.
In Recognition Science, this is a structural discriminator, not a complete prediction. The linear form is a placeholder chosen to demonstrate that a difference from ΛCDM is possible. The framework's actual prediction for how w evolves with redshift, which it calls the FPT cosmic Z-aging dynamics, remains future work. The theorem proves the algebraic fact of difference, while the specific functional form of that difference is an open target.
THEOREM w_RS_linear_distinct_from_LCDM_abs · IndisputableMonolith/Cosmology/DarkEnergyWofZStructural.lean
/-- Absolute-value form of the discriminator. -/
theorem w_RS_linear_distinct_from_LCDM_abs (z : ℝ) (h : 0 < z) :
|w_RS_linear z - w_LCDM_value| > 0 := by
have h_gt := w_RS_linear_distinct_from_LCDM_at_positive_z z h
have h_diff_pos : 0 < w_RS_linear z - w_LCDM_value := by linarith
rw [abs_of_pos h_diff_pos]
exact h_diff_pos
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
/-- 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 theorem does not claim that the linear placeholder is the actual prediction of the framework. The theorem does not claim any specific value for w beyond the algebraic fact of its difference from -1. The theorem does not claim that the framework's proposal matches any observational data.
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 dynamics that would derive the specific functional form of the deviation?
- What observational precision would be required to detect a deviation of order 10⁻¹⁰ in w?
- How does the rung-44 scale relate to other cosmological parameters in the framework?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM w_RS_linear_distinct_from_LCDM_abs · IndisputableMonolith/Cosmology/DarkEnergyWofZStructural.lean
/-- Absolute-value form of the discriminator. -/ theorem w_RS_linear_distinct_from_LCDM_abs (z : ℝ) (h : 0 < z) : |w_RS_linear z - w_LCDM_value| > 0 := by have h_gt := w_RS_linear_distinct_from_LCDM_at_positive_z z h have h_diff_pos : 0 < w_RS_linear z - w_LCDM_value := by linarith rw [abs_of_pos h_diff_pos] exact h_diff_posThe declaration proves that for any positive redshift, the absolute difference between the proposed Recognition Science value and the ΛCDM constant is strictly greater than zero. w_RS_linear_distinct_from_LCDM_abs · IndisputableMonolith/Cosmology/DarkEnergyWofZStructural.leanMODEL 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 * zThe framework's specific proposal is a linear placeholder, written w(z) = -1 + φ⁻⁴⁴ · z, where φ is the golden ratio and φ⁻⁴⁴ is approximately 6.38 × 10⁻¹⁰. w_RS_linear · 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)) hcloseThe theorem also establishes a falsifier band: any measurement of w that falls within this tiny distance of -1 is formally incompatible with the framework's linear proposal. measured_near_LCDM_not_RS_linear · IndisputableMonolith/Cosmology/DarkEnergyWofZStructural.lean