Encyclopedia Cosmology Cosmology Phase Saturation Vacuum Passive Mode Decomposition
ARTICLE 6 claims 2 theorems 3 models
Cosmology Phase Saturation Vacuum Passive Mode Decomposition
A theorem in a machine-checked library splits the vacuum's energy budget into two counted parts, tying dark energy to a simple arithmetic ratio.
The mode ledger
In cosmology, the vacuum energy density is often written as a fraction ΩΛ of the universe's total energy. The Recognition Science framework proposes that this fraction is not a free parameter but a consequence of a discrete accounting system, a ledger: a record of events that the universe keeps in whole-number units. The declaration passive_mode_decomposition is a theorem in the framework's machine-checked library of formal theorems. It states that the number of passive modes, the ledger's unexcited entries, equals the sum of two other counts: the vertex ground states and the unexcited face modes.
The arithmetic is simple. The framework defines a total mode budget of 16, of which 5 are active modes. The remaining 11 are passive modes. The theorem passive_mode_decomposition proves that these 11 split into 8 vertex ground states plus 3 unexcited face modes. This decomposition is a combinatorial fact about the geometry the framework uses, not a measurement. The framework then takes the ratio of passive modes to the total budget, 11/16, as the seed of the dark energy fraction. The full formula subtracts a small correction involving the fine-structure constant α: ΩΛ = 11/16 − α/π, which evaluates to about 0.6852.
What the theorem does not claim is that this arithmetic is the physical origin of dark energy. The decomposition is proved as a statement about counting modes in the framework's geometry. The bridge from that counting to the actual cosmic vacuum is a separate hypothesis, named CosmicPhaseEquilibrium, with an explicit falsifier. The framework also treats the fine-structure constant as a measured input, not as something it derives. The theorem passive_mode_decomposition itself is silent on whether the vacuum really behaves this way; it only certifies the internal consistency of the counting.
The consequence a reader can take away is that the framework's dark energy fraction is not plucked from nowhere. It rests on a proved arithmetic identity, a partition of a 16-unit budget into 5 active and 11 passive modes, with the passive side further split into 8 and 3. The physical claim that this partition describes the universe is the hypothesis, and the framework is explicit that the hypothesis could be falsified. The theorem is the skeleton; the cosmology is the flesh that remains to be tested.
THEOREM passive_mode_decomposition · IndisputableMonolith/Cosmology/PhaseSaturationVacuum.lean
/-- Passive mode decomposition. -/
theorem passive_mode_decomposition :
passive_modes = vertex_ground_states + unexcited_face_modes := by
native_decide
MODEL mode_budget · active_modes · passive_modes · IndisputableMonolith/Cosmology/PhaseSaturationVacuum.lean
/-- Total mode budget of the D=3 ledger vacuum.
16 = 2⁴ from the D=3 cube doubled by double-entry bookkeeping. -/
def mode_budget : ℕ := 16
/-- Active modes: matter excitations participating in recognition.
5 = 3 (face-pair/generation modes) + 2 (charge/parity modes). -/
def active_modes : ℕ := 5
/-- Passive modes: vacuum (light memory) modes.
11 = 8 (vertex ground states) + 3 (unexcited face-pair contributions). -/
def passive_modes : ℕ := 11
THEOREM vertex_ground_states · unexcited_face_modes · IndisputableMonolith/Cosmology/PhaseSaturationVacuum.lean
/-- 8 vertices of Q₃ contribute to passive modes. -/
def vertex_ground_states : ℕ := 8
/-- 3 unexcited face-pair modes contribute to passive modes. -/
def unexcited_face_modes : ℕ := 3
MODEL geometric_seed_eq · IndisputableMonolith/Cosmology/PhaseSaturationVacuum.lean
/-- The geometric seed 11/16 is the passive mode fraction. -/
theorem geometric_seed_eq : (passive_modes : ℝ) / (mode_budget : ℝ) = 11 / 16 := by
norm_num [passive_modes, mode_budget]
MODEL Omega_Lambda_def · IndisputableMonolith/Cosmology/PhaseSaturationVacuum.lean
/-- Ω_Λ is well-defined. -/
theorem Omega_Lambda_def : Omega_Lambda = 11/16 - alpha / Real.pi := rfl
HYPOTHESIS H_CosmicPhaseEquilibrium · IndisputableMonolith/Cosmology/PhaseSaturationVacuum.lean
/-- **HYPOTHESIS H_CosmicPhaseEquilibrium**:
At cosmic scale, the light field (vacuum voxels) and matter excitations
reach a phase equilibrium whose vacuum fraction equals the passive mode
fraction from Q₃ cube geometry.
STATUS: HYPOTHESIS with explicit falsifier.
FALSIFIER: If future precision measurements establish
Ω_Λ outside [0.680, 0.690] at > 5σ, this hypothesis is falsified.
PHYSICAL CONTENT: The same NonExistenceCost that drives biological
re-embodiment (PhaseSaturation.lean) operates at cosmic scale.
Matter excitations are "embodied" patterns; vacuum voxels are "light memory."
The equilibrium fraction is determined by cube geometry, not by dynamics. -/
def H_CosmicPhaseEquilibrium : Prop :=
∀ (f_vac : ℝ),
f_vac = Omega_Lambda →
f_vac = (passive_modes : ℝ) / (mode_budget : ℝ) - alpha / Real.pi
What this page does not claim
The theorem does not claim that the vacuum actually contains 16 discrete modes. The theorem does not derive the fine-structure constant from the framework's axioms. The theorem does not prove that the CosmicPhaseEquilibrium hypothesis is true.
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/PhaseSaturationVacuum.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 measurement would falsify the CosmicPhaseEquilibrium hypothesis?
- How does the framework derive the 16-unit mode budget from its three-dimensional geometry?
- Why does the fine-structure constant enter the dark energy formula as a measured input rather than a derived quantity?
- What is the explicit falsifier named for the CosmicPhaseEquilibrium hypothesis?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM passive_mode_decomposition · IndisputableMonolith/Cosmology/PhaseSaturationVacuum.lean
/-- Passive mode decomposition. -/ theorem passive_mode_decomposition : passive_modes = vertex_ground_states + unexcited_face_modes := by native_decideThe declaration passive_mode_decomposition states that the number of passive modes equals the sum of the vertex ground states and the unexcited face modes. passive_mode_decomposition · IndisputableMonolith/Cosmology/PhaseSaturationVacuum.leanMODEL mode_budget · active_modes · passive_modes · IndisputableMonolith/Cosmology/PhaseSaturationVacuum.lean
/-- Total mode budget of the D=3 ledger vacuum. 16 = 2⁴ from the D=3 cube doubled by double-entry bookkeeping. -/ def mode_budget : ℕ := 16/-- Active modes: matter excitations participating in recognition. 5 = 3 (face-pair/generation modes) + 2 (charge/parity modes). -/ def active_modes : ℕ := 5/-- Passive modes: vacuum (light memory) modes. 11 = 8 (vertex ground states) + 3 (unexcited face-pair contributions). -/ def passive_modes : ℕ := 11The framework defines a total mode budget of 16, of which 5 are active modes and 11 are passive modes. mode_budget · active_modes · passive_modes · IndisputableMonolith/Cosmology/PhaseSaturationVacuum.leanTHEOREM vertex_ground_states · unexcited_face_modes · IndisputableMonolith/Cosmology/PhaseSaturationVacuum.lean
/-- 8 vertices of Q₃ contribute to passive modes. -/ def vertex_ground_states : ℕ := 8/-- 3 unexcited face-pair modes contribute to passive modes. -/ def unexcited_face_modes : ℕ := 3The theorem passive_mode_decomposition proves that the 11 passive modes split into 8 vertex ground states plus 3 unexcited face modes. vertex_ground_states · unexcited_face_modes · IndisputableMonolith/Cosmology/PhaseSaturationVacuum.leanMODEL geometric_seed_eq · IndisputableMonolith/Cosmology/PhaseSaturationVacuum.lean
/-- The geometric seed 11/16 is the passive mode fraction. -/ theorem geometric_seed_eq : (passive_modes : ℝ) / (mode_budget : ℝ) = 11 / 16 := by norm_num [passive_modes, mode_budget]The framework takes the ratio of passive modes to the total budget, 11/16, as the seed of the dark energy fraction. geometric_seed_eq · IndisputableMonolith/Cosmology/PhaseSaturationVacuum.leanMODEL Omega_Lambda_def · IndisputableMonolith/Cosmology/PhaseSaturationVacuum.lean
/-- Ω_Λ is well-defined. -/ theorem Omega_Lambda_def : Omega_Lambda = 11/16 - alpha / Real.pi := rflThe full formula for the dark energy fraction subtracts a small correction involving the fine-structure constant α: Ω_Λ = 11/16 − α/π. Omega_Lambda_def · IndisputableMonolith/Cosmology/PhaseSaturationVacuum.leanHYPOTHESIS H_CosmicPhaseEquilibrium · IndisputableMonolith/Cosmology/PhaseSaturationVacuum.lean
/-- **HYPOTHESIS H_CosmicPhaseEquilibrium**: At cosmic scale, the light field (vacuum voxels) and matter excitations reach a phase equilibrium whose vacuum fraction equals the passive mode fraction from Q₃ cube geometry. STATUS: HYPOTHESIS with explicit falsifier. FALSIFIER: If future precision measurements establish Ω_Λ outside [0.680, 0.690] at > 5σ, this hypothesis is falsified. PHYSICAL CONTENT: The same NonExistenceCost that drives biological re-embodiment (PhaseSaturation.lean) operates at cosmic scale. Matter excitations are "embodied" patterns; vacuum voxels are "light memory." The equilibrium fraction is determined by cube geometry, not by dynamics. -/ def H_CosmicPhaseEquilibrium : Prop := ∀ (f_vac : ℝ), f_vac = Omega_Lambda → f_vac = (passive_modes : ℝ) / (mode_budget : ℝ) - alpha / Real.piThe bridge from the mode counting to the actual cosmic vacuum is a separate hypothesis, named CosmicPhaseEquilibrium, with an explicit falsifier. H_CosmicPhaseEquilibrium · IndisputableMonolith/Cosmology/PhaseSaturationVacuum.lean