Encyclopedia Masses Masses Mass Genesis Integrated Load Integrated Meaning Load Zero Iff Not Nontriv

ARTICLE 3 claims 3 theorems

Masses Mass Genesis Integrated Load Integrated Meaning Load Zero Iff Not Nontriv

A machine-checked theorem certifies when a pattern's total meaning load is zero: exactly when no single site carries any meaning at all.

The load certificate

In the Recognition Science framework, a pattern's total meaning load is a bookkeeping number: the sum, over every site the pattern touches, of a per-site quantity called its neutral meaning load. The machine-checked library of formal theorems proves a clean equivalence: this total is zero if and only if every individual site load is zero. The proof is a direct application of a standard fact about sums of nonnegative numbers: if you add up only nonnegative contributions and the total is zero, then each contribution must have been zero to begin with.

The theorem is named integratedMeaningLoad_zero_iff_not_nontrivial and it lives in the Mass Genesis module of the library. Its content is exactly the certificate that the load layer is well behaved: the total load vanishes precisely when the pattern is trivial in the load sense, meaning no site carries positive load. The library also proves the matching positive statement: the total load is positive if and only if some site carries positive load. Together these two equivalences pin down the boundary of the load concept completely.

The theorem is purely algebraic. It does not say what the load means physically, and it does not identify the load with any mass value. The module docstring is explicit: this closes the algebraic load layer, and it does not identify the load with the phi-ladder mass law. The theorem also carries an invariance property: evolving a pattern by any number of steps leaves its total load unchanged, because the per-site loads are preserved under the evolution. This invariance is part of the same certificate structure.

What the theorem does not claim is as important as what it proves. It does not assert that a zero-load pattern is physically empty or meaningless in any global sense; it only says the load functional is zero. It does not claim that the load functional is the mass of a particle. It does not claim that the framework's mass ladder follows from this load definition. The theorem is a local, algebraic fact about a sum of nonnegative terms, and the library keeps it scoped exactly that way.

THEOREM integratedMeaningLoad_zero_iff_not_nontrivial · IndisputableMonolith/Masses/MassGenesis/IntegratedLoad.lean
integratedMeaningLoad_zero_iff_not_nontrivial · IndisputableMonolith/Masses/MassGenesis/IntegratedLoad.lean:80
theorem integratedMeaningLoad_zero_iff_not_nontrivial
    (ψ : LightPattern Λ) :
    integratedMeaningLoad ψ = 0 ↔ ¬ NontrivialNeutralLoad ψ := by
  constructor
  · exact not_nontrivial_of_integratedMeaningLoad_zero ψ
  · exact integratedMeaningLoad_zero_of_not_nontrivial ψ
THEOREM integratedMeaningLoad_pos_iff_nontrivial · IndisputableMonolith/Masses/MassGenesis/IntegratedLoad.lean
integratedMeaningLoad_pos_iff_nontrivial · IndisputableMonolith/Masses/MassGenesis/IntegratedLoad.lean:87
theorem integratedMeaningLoad_pos_iff_nontrivial
    (ψ : LightPattern Λ) :
    0 < integratedMeaningLoad ψ ↔ NontrivialNeutralLoad ψ := by
  constructor
  · intro hpos
    by_contra hnot
    have hzero := integratedMeaningLoad_zero_of_not_nontrivial ψ hnot
    rw [hzero] at hpos
    exact (lt_irrefl (0 : ℝ)) hpos
  · exact integratedMeaningLoad_pos_of_nontrivial ψ
THEOREM integratedMeaningLoad_eq_of_evolvePattern · IndisputableMonolith/Masses/MassGenesis/IntegratedLoad.lean
integratedMeaningLoad_eq_of_evolvePattern · IndisputableMonolith/Masses/MassGenesis/IntegratedLoad.lean:131
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 load functional with any mass value. The theorem does not assert that a zero-load pattern is physically empty in a global sense. The theorem does not derive the phi-ladder mass law from the load definition.

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:

MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND