Encyclopedia Masses Masses Mass Genesis Integrated Load Integrated Meaning Load Eq Of Same Load On S
ARTICLE 2 claims 2 theorems
Masses Mass Genesis Integrated Load Integrated Meaning Load Eq Of Same Load On S
A machine-checked theorem says that two patterns with identical local meaning-load data must have the same total integrated load, a structural fact about how mass is assigned in this framework.
The load equality
In the Recognition Science framework, a physical pattern is built from a discrete set of sites, and each site carries a meaning load: a nonnegative real number that measures how much meaningful structure is concentrated there. The framework's ledger, a discrete record of such events, tallies these site loads into a single integrated total for the whole pattern. The declaration integratedMeaningLoad_eq_of_sameLoadOnSupport proves a basic consistency property: if two patterns occupy exactly the same set of sites, and at every one of those sites the two patterns have the same meaning load, then their integrated totals are equal.
This is a theorem about the algebraic layer of mass genesis, not about physical masses themselves. The proof is direct: the integrated load is defined as the finite sum of site loads over the pattern's support, so identical site loads over an identical support force equal sums. The theorem also carries a stronger consequence: the integrated load is invariant under the framework's evolution operation, meaning a pattern and its time-shifted version always have the same total load. This invariance is what makes the load a stable quantity for later use in the mass ladder.
What the theorem does not do is identify this load with any actual particle mass. The framework's own documentation states this explicitly: the algebraic load layer is closed here, but it does not connect the load to the phi-ladder mass law. The theorem is a structural guarantee about how loads add, not a physical prediction about what masses are. It also does not claim that equal integrated loads imply equal site loads; two different patterns could sum to the same total while differing locally. The direction of implication runs only from local equality to global equality, not the reverse.
THEOREM integratedMeaningLoad_eq_of_sameLoadOnSupport · IndisputableMonolith/Masses/MassGenesis/IntegratedLoad.lean
theorem integratedMeaningLoad_eq_of_sameLoadOnSupport
{ψ χ : LightPattern Λ} (h : SameLoadOnSupport ψ χ) :
integratedMeaningLoad ψ = integratedMeaningLoad χ := by
rw [integratedMeaningLoad_eq_support_sum ψ,
integratedMeaningLoad_eq_support_sum χ,
← h.1]
apply Finset.sum_congr rfl
intro x hx
exact h.2 x hx
THEOREM integratedMeaningLoad_eq_of_evolvePattern · IndisputableMonolith/Masses/MassGenesis/IntegratedLoad.lean
theorem integratedMeaningLoad_eq_of_evolvePattern
(ψ : LightPattern Λ) (k : ℕ) :
integratedMeaningLoad (evolvePattern k ψ) = integratedMeaningLoad ψ :=
integratedMeaningLoad_eq_of_sameLoadOnSupport
(sameLoadOnSupport_evolvePattern ψ k)
What this page does not claim
The theorem does not identify the integrated load with any actual particle mass. The theorem does not claim that equal integrated loads imply equal site loads. The theorem does not establish the phi-ladder mass law.
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/IntegratedLoad.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:
- How does the integrated meaning load connect to the phi-ladder mass law?
- What physical interpretation does the evolution invariance of the load carry?
- What additional structure would be needed to identify the load with a particle mass?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM integratedMeaningLoad_eq_of_sameLoadOnSupport · IndisputableMonolith/Masses/MassGenesis/IntegratedLoad.lean
theorem integratedMeaningLoad_eq_of_sameLoadOnSupport {ψ χ : LightPattern Λ} (h : SameLoadOnSupport ψ χ) : integratedMeaningLoad ψ = integratedMeaningLoad χ := by rw [integratedMeaningLoad_eq_support_sum ψ, integratedMeaningLoad_eq_support_sum χ, ← h.1] apply Finset.sum_congr rfl intro x hx exact h.2 x hxif two patterns occupy exactly the same set of sites, and at every one of those sites the two patterns have the same meaning load, then their integrated totals are equal integratedMeaningLoad_eq_of_sameLoadOnSupport · IndisputableMonolith/Masses/MassGenesis/IntegratedLoad.leanTHEOREM integratedMeaningLoad_eq_of_evolvePattern · IndisputableMonolith/Masses/MassGenesis/IntegratedLoad.lean
theorem integratedMeaningLoad_eq_of_evolvePattern (ψ : LightPattern Λ) (k : ℕ) : integratedMeaningLoad (evolvePattern k ψ) = integratedMeaningLoad ψ := integratedMeaningLoad_eq_of_sameLoadOnSupport (sameLoadOnSupport_evolvePattern ψ k)the integrated load is invariant under the framework's evolution operation, meaning a pattern and its time-shifted version always have the same total load integratedMeaningLoad_eq_of_evolvePattern · IndisputableMonolith/Masses/MassGenesis/IntegratedLoad.lean