Encyclopedia Cosmology Cosmology Cosmic Zhistory Shape Reduction
ARTICLE 4 claims 4 theorems
Cosmology Cosmic Zhistory Shape Reduction
Dark energy's changing strength over cosmic time is now a single question: how a quantity called cosmic Z accumulates.
The shape reduction
Dark energy is the name for the observed acceleration of cosmic expansion. Its strength is often summarized by an equation of state, a number w that relates pressure to energy density. For a cosmological constant, w stays fixed at -1. Observations allow w to drift, and the drift, if real, is the dark-energy shape. The recognition framework, a system that derives physical laws from the cost of maintaining a discrete record of events, addresses that shape through a quantity it calls cosmic Z: an accumulated measure of complexity in that record.
The declaration shape_reduction, proved in the framework's machine-checked library of formal theorems, states a clean equivalence. The normalized deviation of the dark-energy equation of state from -1 equals the normalized cosmic-Z history. In symbols, if δw(z) is the deviation at redshift z and δw₀ is its value today, then δw(z)/δw₀ equals Z(z)/Z(0), where Z(z) is the accumulated cosmic Z at that redshift. The theorem is exact, not approximate. It means the entire problem of the dark-energy shape reduces to one question: how does cosmic Z accumulate over cosmic time? No other freedom remains in the framework's account.
The boundary conditions of the reduction are forced. Today, at redshift zero, the deviation is δw₀, matching the present value. In the deep past, as Z approaches zero, the deviation vanishes and the equation of state returns to w = -1, recovering the standard cosmological-constant behavior of the ΛCDM model. The framework proves both limits. The shape of the deviation is therefore locked to the shape of the Z-history, whatever that history turns out to be.
In Recognition Science, the framework then derives the canonical shape from one stated premise. If cosmic Z accumulates linearly in the scale factor a, so that Z(z) = Z_today · a(z) = Z_today/(1+z), the framework proves the deviation takes exactly the form δw(z) = δw₀/(1+z). The familiar 1/(1+z) shape is no longer posited; it follows from the linear-accumulation premise. The premise itself is a hypothesis, not a theorem. The framework does not yet derive why accumulation should be linear in a rather than in cosmic time or some power a^p. That single question, the choice of the accumulation law, is the honest residue of the problem.
The reduction changes what the dark-energy shape problem is. Instead of fitting a curve to supernova and cosmic-microwave-background data, the framework says the curve is fixed once one knows the Z-accumulation history. A reader can now see the entire dark-energy shape question as a question about one monotone function of redshift, with the canonical form as a special case that the framework derives from a stated condition, not an assumption smuggled in.
THEOREM shape_reduction · IndisputableMonolith/Cosmology/CosmicZHistory.lean
/-- **SHAPE REDUCTION.** The normalized dark-energy deviation equals the normalized
cosmic-Z history. Deriving the dark-energy shape is exactly deriving `Z(z)`. -/
theorem shape_reduction (dw0 Zt : ℝ) (Zhist : ℝ → ℝ) (z : ℝ) (hdw : dw0 ≠ 0) :
bitDeviation dw0 Zt Zhist z / bitDeviation dw0 Zt Zhist 0
= (Zhist z / Zt) / (Zhist 0 / Zt) := by
rw [bitDeviation_eq, bitDeviation_eq, mul_div_mul_left _ _ hdw]
THEOREM bitDeviation_today · IndisputableMonolith/Cosmology/CosmicZHistory.lean
/-- Today (`Z(0) = Z_today`), the deviation is `δw₀`. -/
theorem bitDeviation_today (dw0 Zt : ℝ) (Zhist : ℝ → ℝ)
(h0 : Zhist 0 = Zt) (hZt : Zt ≠ 0) :
bitDeviation dw0 Zt Zhist 0 = dw0 := by
rw [bitDeviation_eq, h0, div_self hZt, mul_one]
THEOREM bitKernel_early · IndisputableMonolith/Cosmology/CosmicZHistory.lean
/-- Early universe (`Z(z) = 0`): the deviation vanishes, recovering `w = -1`. -/
theorem bitKernel_early (dw0 Zt : ℝ) (Zhist : ℝ → ℝ) (z : ℝ) (h : Zhist z = 0) :
bitKernel dw0 Zt Zhist z = -1 := by
unfold bitKernel; rw [h]; simp
THEOREM linear_accumulation_forces_canonical_kernel · IndisputableMonolith/Cosmology/CosmicZHistory.lean
/-- **LINEAR ACCUMULATION FORCES THE CANONICAL KERNEL.** With the linear-`a` cosmic-Z
history, the BIT kernel produces exactly the canonical `δw(z) = δw₀/(1+z)` deviation. The
`1/(1+z)` shape is derived from the accumulation premise, not posited. -/
theorem linear_accumulation_forces_canonical_kernel (dw0 Zt z : ℝ)
(hZt : Zt ≠ 0) (_hz : (1 : ℝ) + z ≠ 0) :
bitDeviation dw0 Zt (linearZ Zt) z = dw0 / (1 + z) := by
rw [bitDeviation_eq]
unfold linearZ
rw [div_div, mul_comm (1 + z) Zt, ← div_div, div_self hZt, mul_one_div]
What this page does not claim
The linear-in-scale-factor accumulation law is not derived; it is a stated hypothesis. The framework does not claim to derive the dark-energy shape without any remaining freedom; the accumulation law is the residue. The shape reduction does not claim that cosmic Z is an observable quantity in the conventional cosmological sense.
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/CosmicZHistory.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 physical mechanism, within the recognition framework, would force cosmic Z to accumulate linearly in the scale factor?
- How does the framework's dark-energy shape compare with current observational constraints on w(z) from supernovae and baryon acoustic oscillations?
- What does the framework predict for the dark-energy shape if the accumulation law is a power law in the scale factor rather than linear?
- How does the cosmic-Z accumulation history connect to the framework's derivation of three spatial dimensions?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM shape_reduction · IndisputableMonolith/Cosmology/CosmicZHistory.lean
/-- **SHAPE REDUCTION.** The normalized dark-energy deviation equals the normalized cosmic-Z history. Deriving the dark-energy shape is exactly deriving `Z(z)`. -/ theorem shape_reduction (dw0 Zt : ℝ) (Zhist : ℝ → ℝ) (z : ℝ) (hdw : dw0 ≠ 0) : bitDeviation dw0 Zt Zhist z / bitDeviation dw0 Zt Zhist 0 = (Zhist z / Zt) / (Zhist 0 / Zt) := by rw [bitDeviation_eq, bitDeviation_eq, mul_div_mul_left _ _ hdw]The normalized deviation of the dark-energy equation of state from -1 equals the normalized cosmic-Z history. shape_reduction · IndisputableMonolith/Cosmology/CosmicZHistory.leanTHEOREM bitDeviation_today · IndisputableMonolith/Cosmology/CosmicZHistory.lean
/-- Today (`Z(0) = Z_today`), the deviation is `δw₀`. -/ theorem bitDeviation_today (dw0 Zt : ℝ) (Zhist : ℝ → ℝ) (h0 : Zhist 0 = Zt) (hZt : Zt ≠ 0) : bitDeviation dw0 Zt Zhist 0 = dw0 := by rw [bitDeviation_eq, h0, div_self hZt, mul_one]Today, at redshift zero, the deviation is δw₀, matching the present value. bitDeviation_today · IndisputableMonolith/Cosmology/CosmicZHistory.leanTHEOREM bitKernel_early · IndisputableMonolith/Cosmology/CosmicZHistory.lean
/-- Early universe (`Z(z) = 0`): the deviation vanishes, recovering `w = -1`. -/ theorem bitKernel_early (dw0 Zt : ℝ) (Zhist : ℝ → ℝ) (z : ℝ) (h : Zhist z = 0) : bitKernel dw0 Zt Zhist z = -1 := by unfold bitKernel; rw [h]; simpIn the deep past, as Z approaches zero, the deviation vanishes and the equation of state returns to w = -1, recovering the standard cosmological-constant behavior of the ΛCDM model. bitKernel_early · IndisputableMonolith/Cosmology/CosmicZHistory.leanTHEOREM linear_accumulation_forces_canonical_kernel · IndisputableMonolith/Cosmology/CosmicZHistory.lean
/-- **LINEAR ACCUMULATION FORCES THE CANONICAL KERNEL.** With the linear-`a` cosmic-Z history, the BIT kernel produces exactly the canonical `δw(z) = δw₀/(1+z)` deviation. The `1/(1+z)` shape is derived from the accumulation premise, not posited. -/ theorem linear_accumulation_forces_canonical_kernel (dw0 Zt z : ℝ) (hZt : Zt ≠ 0) (_hz : (1 : ℝ) + z ≠ 0) : bitDeviation dw0 Zt (linearZ Zt) z = dw0 / (1 + z) := by rw [bitDeviation_eq] unfold linearZ rw [div_div, mul_comm (1 + z) Zt, ← div_div, div_self hZt, mul_one_div]If cosmic Z accumulates linearly in the scale factor a, so that Z(z) = Z_today · a(z) = Z_today/(1+z), the framework proves the deviation takes exactly the form δw(z) = δw₀/(1+z). linear_accumulation_forces_canonical_kernel · IndisputableMonolith/Cosmology/CosmicZHistory.lean