Encyclopedia Cosmology Cosmology Cosmic Zhistory Reciprocal History Kernel
ARTICLE 3 claims 2 theorems 1 hypothesis
Cosmology Cosmic Zhistory Reciprocal History Kernel
One equation links the dark energy equation of state to the cosmic history of a quantity called Z, and it is the only place the framework's freedom remains.
The reciprocal history kernel
A ledger is a discrete record of events. In Recognition Science, the framework models the universe as maintaining such a ledger, and a quantity called cosmic Z-complexity tracks how much of that record has accumulated at a given redshift z. Redshift is the stretching of light from distant objects; larger z means looking further back in time. The declaration reciprocal_history_kernel establishes a precise relationship: if the accumulated Z-history has the reciprocal form Z(z) = Z_today / g(z), then the deviation of the dark energy equation of state from -1 is exactly δw(z) = δw₀ / g(z). In plain terms, the shape of the dark energy's behavior over cosmic time is a direct mirror of the shape of the Z-accumulation history, up to a constant factor.
This is a theorem in the framework's machine-checked library of formal results. It is a conditional statement: it takes as input the assumption that the Z-history is reciprocal in form, and it proves the corresponding form of the dark energy deviation. The result itself does not say which function g(z) the universe uses. It says that once g is chosen, every downstream observable is fixed. The canonical choice, g(z) = 1+z, corresponds to Z accumulating linearly in the scale factor a(z) = 1/(1+z), and it produces the familiar δw(z) = δw₀/(1+z) shape. That linear accumulation is a separate hypothesis, not a consequence of the kernel result.
What the declaration does not claim is the physical origin of g. The framework proves the reduction: deriving the dark energy shape is exactly the problem of deriving the cosmic-Z accumulation history. But why the accumulation is linear in the scale factor, rather than in cosmic time or some power a^p, remains open. That single question is the honest residue of the framework's dark-energy shape problem. The result also does not claim that the reciprocal form itself is forced; it is a premise. The kernel is a bridge from one shape to another, not a proof that either shape is the one nature uses.
The practical consequence is a sharpened target for the framework. Instead of positing the 1/(1+z) shape directly, the framework reduces the problem to a single, physically-motivated question about how Z accumulates. If future work derives linear-in-a accumulation from deeper principles, the canonical dark energy shape follows as a result. Until then, the shape is conditional, and the condition is named.
THEOREM reciprocal_history_kernel · IndisputableMonolith/Cosmology/CosmicZHistory.lean
/-- **GENERAL RECIPROCAL HISTORY.** For any cosmic-Z history of reciprocal form
`Z(z) = Z_today / g(z)`, the BIT deviation is `δw(z) = δw₀ / g(z)`. The canonical kernel is
`g(z) = 1+z` (linear-in-`a`); a power-law history `g(z) = (1+z)^p` gives
`δw(z) = δw₀/(1+z)^p`, where the shape index `p` is read directly off the `w(z)`
reconstruction. The accumulation law chooses `g`; every downstream observable is then fixed.
This is the precise statement that U5's residue is exactly the choice of `g`. -/
theorem reciprocal_history_kernel (dw0 Zt : ℝ) (g : ℝ → ℝ) (z : ℝ) (hZt : Zt ≠ 0) :
bitDeviation dw0 Zt (fun z => Zt / g z) z = dw0 / g z := by
rw [bitDeviation_eq]
show dw0 * (Zt / g z / Zt) = dw0 / g z
rw [div_div, mul_comm (g z) Zt, ← div_div, div_self hZt, mul_one_div]
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]
HYPOTHESIS linearZ · IndisputableMonolith/Cosmology/CosmicZHistory.lean
/-- The cosmic-Z history for linear-in-scale-factor accumulation:
`Z(z) = Z_today · a(z) = Z_today/(1+z)`. -/
def linearZ (Zt z : ℝ) : ℝ := Zt / (1 + z)
What this page does not claim
The reciprocal form Z(z) = Z_today / g(z) is not derived; it is a premise of the theorem. The framework does not claim that linear-in-a accumulation is the true physical law; it is a hypothesis with the named falsifier of a measured dark energy shape that deviates from δw₀/(1+z). The theorem does not determine the value of δw₀; it only relates the shape of the deviation to the shape of the Z-history.
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 principle selects the linear-in-scale-factor accumulation law for cosmic Z over other monotone histories?
- How does cosmic Z-complexity relate to observable quantities beyond the dark energy equation of state?
- Can the reciprocal form of the Z-history be derived from the forcing chain rather than assumed as a premise?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM reciprocal_history_kernel · IndisputableMonolith/Cosmology/CosmicZHistory.lean
/-- **GENERAL RECIPROCAL HISTORY.** For any cosmic-Z history of reciprocal form `Z(z) = Z_today / g(z)`, the BIT deviation is `δw(z) = δw₀ / g(z)`. The canonical kernel is `g(z) = 1+z` (linear-in-`a`); a power-law history `g(z) = (1+z)^p` gives `δw(z) = δw₀/(1+z)^p`, where the shape index `p` is read directly off the `w(z)` reconstruction. The accumulation law chooses `g`; every downstream observable is then fixed. This is the precise statement that U5's residue is exactly the choice of `g`. -/ theorem reciprocal_history_kernel (dw0 Zt : ℝ) (g : ℝ → ℝ) (z : ℝ) (hZt : Zt ≠ 0) : bitDeviation dw0 Zt (fun z => Zt / g z) z = dw0 / g z := by rw [bitDeviation_eq] show dw0 * (Zt / g z / Zt) = dw0 / g z rw [div_div, mul_comm (g z) Zt, ← div_div, div_self hZt, mul_one_div]if the accumulated Z-history has the reciprocal form Z(z) = Z_today / g(z), then the deviation of the dark energy equation of state from -1 is exactly δw(z) = δw₀ / g(z) reciprocal_history_kernel · 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]The canonical choice, g(z) = 1+z, corresponds to Z accumulating linearly in the scale factor a(z) = 1/(1+z), and it produces the familiar δw(z) = δw₀/(1+z) shape. linear_accumulation_forces_canonical_kernel · IndisputableMonolith/Cosmology/CosmicZHistory.leanHYPOTHESIS linearZ · IndisputableMonolith/Cosmology/CosmicZHistory.lean
/-- The cosmic-Z history for linear-in-scale-factor accumulation: `Z(z) = Z_today · a(z) = Z_today/(1+z)`. -/ def linearZ (Zt z : ℝ) : ℝ := Zt / (1 + z)That linear accumulation is a separate hypothesis, not a consequence of the kernel result. linearZ · IndisputableMonolith/Cosmology/CosmicZHistory.lean