Encyclopedia Cosmology Cosmology Dark Energy Scale Affinity Derivation No Hidden Forces Identity
ARTICLE 2 claims 2 theorems
Cosmology Dark Energy Scale Affinity Derivation No Hidden Forces Identity
A single mathematical condition, that the universe's expansion history hides no extra preferred moment, forces the redshift law to take one exact shape.
The no-hidden-coordinate identity
In cosmology, the expansion of the universe is often described by a scale factor a(t), which grows from near zero at the Big Bang to 1 today. The redshift z of distant light relates to this scale factor: light emitted when the universe was smaller arrives stretched, and the amount of stretching encodes the expansion history. A central question is what form this history takes, and the Recognition Science framework approaches it by asking what constraints are forced, rather than chosen.
The declaration noHidden_forces_identity establishes a precise mathematical result. It states that if a normalized cosmic Z-fraction, a measure of accumulated expansion, satisfies three conditions (zero at the early endpoint a=0, one at the today endpoint a=1, and no hidden coordinate meaning the fraction preserves straight-line interpolation between these endpoints), then the fraction must equal the scale factor itself. In symbols, for any scale factor a, Zfrac(a) = a. This is a theorem in the framework's machine-checked library of formal theorems, proved with zero gaps and zero new axioms.
The consequence is direct. From this identity, the framework derives the redshift history Z(z) = Z_today / (1+z), the dark-energy deviation δw(z) = δw0 / (1+z), and the equation of state parameter w(z) = -1 + δw0 / (1+z). These are the canonical forms the framework associates with dark energy. The no-hidden-coordinate condition is the admissibility gate that forces them.
What the declaration does not claim is equally important. It does not prove that the no-hidden-coordinate condition itself is true of the physical universe; that condition is stated as an admissibility principle, not derived from deeper principles. The theorem is conditional: if the condition holds, then the identity follows. The framework's own documentation marks the deeper derivation as an open target. The declaration also does not fit any free parameters to observations; it derives a shape, and comparing that shape to measured cosmological data is a separate empirical check, not part of the theorem.
In plain terms, the result says that if the universe's expansion history contains no extra preferred moment between the Big Bang and today, then the redshift law has no freedom: it must be exactly the canonical form. This is a structural constraint, not a measurement. It narrows what the expansion history can be, assuming the condition holds, and it leaves the justification of that condition as the next open question.
THEOREM noHidden_forces_identity · IndisputableMonolith/Cosmology/DarkEnergyScaleAffinityDerivation.lean
/-- The no-hidden-scale-coordinate condition forces normalized Z-fraction to be the scale
factor itself. -/
theorem noHidden_forces_identity (H : NoHiddenScaleCoordinate) (a : ℝ) :
H.Zfrac a = a := by
exact CosmicZScaleLaw.scaleAffine_forces_identity (noHidden_to_scaleAffine H) a
THEOREM noHidden_forces_linearZ · noHidden_forces_canonical_deviation · noHidden_forces_canonical_kernel · IndisputableMonolith/Cosmology/DarkEnergyScaleAffinityDerivation.lean
/-- The no-hidden-scale-coordinate condition forces the redshift history
`Z(z)=Z_today/(1+z)`. -/
theorem noHidden_forces_linearZ (Zt : ℝ) (H : NoHiddenScaleCoordinate) (z : ℝ) :
CosmicZScaleLaw.ZfromScaleLaw Zt (noHidden_to_scaleAffine H) z =
CosmicZHistory.linearZ Zt z :=
CosmicZScaleLaw.scaleAffine_forces_linearZ Zt (noHidden_to_scaleAffine H) z
/-- The no-hidden-scale-coordinate condition forces the canonical dark-energy deviation. -/
theorem noHidden_forces_canonical_deviation (dw0 Zt : ℝ)
(H : NoHiddenScaleCoordinate) (z : ℝ)
(hZt : Zt ≠ 0) (hz : (1 : ℝ) + z ≠ 0) :
CosmicZHistory.bitDeviation dw0 Zt
(CosmicZScaleLaw.ZfromScaleLaw Zt (noHidden_to_scaleAffine H)) z =
dw0 / (1 + z) :=
CosmicZScaleLaw.scaleAffine_forces_canonical_deviation
dw0 Zt (noHidden_to_scaleAffine H) z hZt hz
/-- The no-hidden-scale-coordinate condition forces the canonical equation of state. -/
theorem noHidden_forces_canonical_kernel (dw0 Zt : ℝ)
(H : NoHiddenScaleCoordinate) (z : ℝ)
(hZt : Zt ≠ 0) (hz : (1 : ℝ) + z ≠ 0) :
CosmicZHistory.bitKernel dw0 Zt
(CosmicZScaleLaw.ZfromScaleLaw Zt (noHidden_to_scaleAffine H)) z =
-1 + dw0 / (1 + z) :=
CosmicZScaleLaw.scaleAffine_forces_canonical_kernel
dw0 Zt (noHidden_to_scaleAffine H) z hZt hz
What this page does not claim
The no-hidden-coordinate condition is not proved from deeper principles; it is stated as an admissibility gate. The declaration does not fit parameters to observations; it derives a shape, and comparison with data is a separate empirical step. The theorem does not claim the physical universe must satisfy the condition, only that if it does, the canonical form follows.
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/DarkEnergyScaleAffinityDerivation.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 evidence would confirm or rule out the no-hidden-coordinate condition?
- Can the no-hidden-coordinate condition be derived from the framework's universal forcing layer?
- How does the derived dark-energy shape compare with current supernova and cosmic microwave background measurements?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM noHidden_forces_identity · IndisputableMonolith/Cosmology/DarkEnergyScaleAffinityDerivation.lean
/-- The no-hidden-scale-coordinate condition forces normalized Z-fraction to be the scale factor itself. -/ theorem noHidden_forces_identity (H : NoHiddenScaleCoordinate) (a : ℝ) : H.Zfrac a = a := by exact CosmicZScaleLaw.scaleAffine_forces_identity (noHidden_to_scaleAffine H) ait states that if a normalized cosmic Z-fraction satisfies three conditions (zero at the early endpoint a=0, one at the today endpoint a=1, and no hidden coordinate meaning the fraction preserves straight-line interpolation between these endpoints), then the fraction must equal the scale factor itself noHidden_forces_identity · IndisputableMonolith/Cosmology/DarkEnergyScaleAffinityDerivation.leanTHEOREM noHidden_forces_linearZ · noHidden_forces_canonical_deviation · noHidden_forces_canonical_kernel · IndisputableMonolith/Cosmology/DarkEnergyScaleAffinityDerivation.lean
/-- The no-hidden-scale-coordinate condition forces the redshift history `Z(z)=Z_today/(1+z)`. -/ theorem noHidden_forces_linearZ (Zt : ℝ) (H : NoHiddenScaleCoordinate) (z : ℝ) : CosmicZScaleLaw.ZfromScaleLaw Zt (noHidden_to_scaleAffine H) z = CosmicZHistory.linearZ Zt z := CosmicZScaleLaw.scaleAffine_forces_linearZ Zt (noHidden_to_scaleAffine H) z/-- The no-hidden-scale-coordinate condition forces the canonical dark-energy deviation. -/ theorem noHidden_forces_canonical_deviation (dw0 Zt : ℝ) (H : NoHiddenScaleCoordinate) (z : ℝ) (hZt : Zt ≠ 0) (hz : (1 : ℝ) + z ≠ 0) : CosmicZHistory.bitDeviation dw0 Zt (CosmicZScaleLaw.ZfromScaleLaw Zt (noHidden_to_scaleAffine H)) z = dw0 / (1 + z) := CosmicZScaleLaw.scaleAffine_forces_canonical_deviation dw0 Zt (noHidden_to_scaleAffine H) z hZt hz/-- The no-hidden-scale-coordinate condition forces the canonical equation of state. -/ theorem noHidden_forces_canonical_kernel (dw0 Zt : ℝ) (H : NoHiddenScaleCoordinate) (z : ℝ) (hZt : Zt ≠ 0) (hz : (1 : ℝ) + z ≠ 0) : CosmicZHistory.bitKernel dw0 Zt (CosmicZScaleLaw.ZfromScaleLaw Zt (noHidden_to_scaleAffine H)) z = -1 + dw0 / (1 + z) := CosmicZScaleLaw.scaleAffine_forces_canonical_kernel dw0 Zt (noHidden_to_scaleAffine H) z hZt hzFrom this identity, the framework derives the redshift history Z(z) = Z_today / (1+z), the dark-energy deviation δw(z) = δw0 / (1+z), and the equation of state parameter w(z) = -1 + δw0 / (1+z) noHidden_forces_linearZ · noHidden_forces_canonical_deviation · noHidden_forces_canonical_kernel · IndisputableMonolith/Cosmology/DarkEnergyScaleAffinityDerivation.lean