Encyclopedia Masses Masses Mass Genesis Factorized Load Density Support Averaged Factorized Load Rea
ARTICLE 4 claims 4 theorems
Masses Mass Genesis Factorized Load Density Support Averaged Factorized Load Rea
A mass prediction becomes a realized load when each site in a pattern carries the same share of the total, a sufficient but not necessary way to close the mass genesis gap.
The equal-share density
In the Recognition Science framework, a mass value is not a free parameter: it is a prediction that must be realized by a load density, a function assigning a nonnegative real number to each site of a light pattern. The declaration supportAveragedFactorizedLoad_realizes establishes one sufficient way to achieve that realization. If every site in a nonempty pattern carries the same share of the factorized mass-law load, then the pattern realizes the mass law. The equal-share condition is a definitional choice, not a derived necessity; the framework's own documentation calls it a simple sufficient landing surface for closing the mass genesis gap.
The factorized load itself is a composite object, built from three pieces already proved or exposed upstream: sector geometry via the yardstick, closed-pattern rung scale via rungOf, and charge gap via ZOf and the mass-law gap correction. The theorem factorizedMassLawLoad_eq_predictedMass shows this factorized expression equals the predicted mass by definition, and factorizedMassLawLoad_pos proves it is strictly positive. The equal-share density then splits that total uniformly across the support, and the theorem supportAveragedFactorizedLoad_realizes converts that uniform split into a certificate that the mass law is realized. A companion theorem, stable_factorizedTopologyLoadDensity_restMass_eq_predictedMass, extends the result to stable closed light patterns, where rest mass equals the predicted mass.
The declaration does not claim that stable light dynamics forces this density. The framework's own documentation states this plainly: the next theorem must derive a site load density summing to this exact factorized expression. The equal-share version is explicitly a stand-in, one that a later proof may replace with a nonuniform density. It is a sufficient subtarget, not the derived target itself. The framework has removed the black box from the mass genesis problem: the missing object is now named, factored, and given a concrete sufficient realization, but the forcing argument that would close the gap remains open.
THEOREM supportAveragedFactorizedLoad_realizes · IndisputableMonolith/Masses/MassGenesis/FactorizedLoadDensity.lean
theorem supportAveragedFactorizedLoad_realizes
(ψ : LightPattern Λ)
(hsupp : ψ.support.Nonempty)
(havg : SupportAveragedFactorizedLoad ψ) :
MassLawLoadRealized ψ :=
supportAveragedMassLawLoad_realizes ψ hsupp
(supportAveragedFactorizedLoad_to_masslaw_average ψ havg)
THEOREM factorizedMassLawLoad_eq_predictedMass · IndisputableMonolith/Masses/MassGenesis/FactorizedLoadDensity.lean
theorem factorizedMassLawLoad_eq_predictedMass
(ψ : LightPattern Λ) :
factorizedMassLawLoad ψ = predictedMass ψ := by
rfl
THEOREM factorizedMassLawLoad_pos · IndisputableMonolith/Masses/MassGenesis/FactorizedLoadDensity.lean
theorem factorizedMassLawLoad_pos (ψ : LightPattern Λ) :
0 < factorizedMassLawLoad ψ := by
rw [factorizedMassLawLoad_eq_predictedMass ψ]
exact predictedMass_pos ψ
THEOREM stable_factorizedTopologyLoadDensity_restMass_eq_predictedMass · IndisputableMonolith/Masses/MassGenesis/FactorizedLoadDensity.lean
theorem stable_factorizedTopologyLoadDensity_restMass_eq_predictedMass
(ψ : LightPattern Λ)
(hstable : StableClosedLightPattern ψ)
(ρ : FactorizedTopologyLoadDensity ψ) :
restMass ψ = predictedMass ψ :=
stable_topologyForcedLoadDensity_restMass_eq_predictedMass ψ hstable
(topologyForcedLoadDensity_of_factorized ψ ρ)
What this page does not claim
Stable light dynamics forces the equal-share density. The equal-share density is the unique realization of the mass law. The factorized load expression is derived from dynamics rather than assembled from proved pieces.
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/Masses/MassGenesis/FactorizedLoadDensity.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 dynamics would force a nonuniform site load density rather than the equal-share stand-in?
- How does the sector geometry piece Anchor.yardstick connect to the topology sector selection?
- What is the physical interpretation of the charge-gap exponent in the factorized load?
- Which upstream theorem closes the mass genesis gap by deriving the density from stable light dynamics?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM supportAveragedFactorizedLoad_realizes · IndisputableMonolith/Masses/MassGenesis/FactorizedLoadDensity.lean
theorem supportAveragedFactorizedLoad_realizes (ψ : LightPattern Λ) (hsupp : ψ.support.Nonempty) (havg : SupportAveragedFactorizedLoad ψ) : MassLawLoadRealized ψ := supportAveragedMassLawLoad_realizes ψ hsupp (supportAveragedFactorizedLoad_to_masslaw_average ψ havg)If every site in a nonempty pattern carries the same share of the factorized mass-law load, then the pattern realizes the mass law. supportAveragedFactorizedLoad_realizes · IndisputableMonolith/Masses/MassGenesis/FactorizedLoadDensity.leanTHEOREM factorizedMassLawLoad_eq_predictedMass · IndisputableMonolith/Masses/MassGenesis/FactorizedLoadDensity.lean
theorem factorizedMassLawLoad_eq_predictedMass (ψ : LightPattern Λ) : factorizedMassLawLoad ψ = predictedMass ψ := by rflThe factorized expression equals the predicted mass by definition. factorizedMassLawLoad_eq_predictedMass · IndisputableMonolith/Masses/MassGenesis/FactorizedLoadDensity.leanTHEOREM factorizedMassLawLoad_pos · IndisputableMonolith/Masses/MassGenesis/FactorizedLoadDensity.lean
theorem factorizedMassLawLoad_pos (ψ : LightPattern Λ) : 0 < factorizedMassLawLoad ψ := by rw [factorizedMassLawLoad_eq_predictedMass ψ] exact predictedMass_pos ψThe factorized load is strictly positive. factorizedMassLawLoad_pos · IndisputableMonolith/Masses/MassGenesis/FactorizedLoadDensity.leanTHEOREM stable_factorizedTopologyLoadDensity_restMass_eq_predictedMass · IndisputableMonolith/Masses/MassGenesis/FactorizedLoadDensity.lean
theorem stable_factorizedTopologyLoadDensity_restMass_eq_predictedMass (ψ : LightPattern Λ) (hstable : StableClosedLightPattern ψ) (ρ : FactorizedTopologyLoadDensity ψ) : restMass ψ = predictedMass ψ := stable_topologyForcedLoadDensity_restMass_eq_predictedMass ψ hstable (topologyForcedLoadDensity_of_factorized ψ ρ)For stable closed light patterns, rest mass equals the predicted mass. stable_factorizedTopologyLoadDensity_restMass_eq_predictedMass · IndisputableMonolith/Masses/MassGenesis/FactorizedLoadDensity.lean