Encyclopedia Masses Masses Mass Genesis Refined Stable Carrier Not All Stable Mass Admissible Of Sam

ARTICLE 3 claims 3 theorems

Masses Mass Genesis Refined Stable Carrier Not All Stable Mass Admissible Of Sam

A machine-checked theorem shows that the simplest stability condition admits pairs of patterns that cannot both carry mass, forcing a stricter carrier.

Why raw stability is not enough

In the Recognition Science framework, a ledger is a discrete record of events, and a recognition is an event that updates that record. A stable closed light pattern is a configuration of such events that persists unchanged under the framework's evolution rule. The theorem not_allStableMassAdmissible_of_sameTopology_different_load proves that this raw stability condition is too permissive: there exist two stable patterns with the same topology but different integrated meaning load, and no single mass-assignment procedure can accept both.

The proof is constructive. Given two stable patterns ψ and χ with the same topology and different loads, the theorem derives a contradiction from the assumption that every stable pattern is mass-admissible. The contradiction shows that the universal claim "all stable patterns are mass-admissible" is false. The theorem does not say which of the two patterns is correct, nor does it construct the two patterns explicitly; it only establishes that the universal admissibility claim cannot hold.

This obstruction motivates the introduction of a stricter carrier, the TopologyNormalizedStablePattern. A pattern of this kind carries, in addition to its stability, a factorized topology load density that realizes the mass law. For such patterns, the framework proves that rest mass equals predicted mass, that rest mass is positive, and that the load is invariant under evolution. The stricter carrier is what the framework's mass genesis theorem uses.

The theorem's scope is deliberately narrow. It does not claim that no stable pattern can carry mass; it claims only that the universal statement fails. It does not identify which stable patterns are admissible; that is the role of the factorized density evidence. And it does not derive the density field from first principles; that derivation remains an open construction problem in the framework.

What the theorem changes is the proof strategy. Instead of trying to show that every stable pattern is mass-admissible, the framework now requires explicit evidence of factorized topology load density. This is a shift from a raw stability predicate to a refined carrier that carries the needed proof data. The obstruction theorem is what forces that shift.

THEOREM not_allStableMassAdmissible_of_sameTopology_different_load · IndisputableMonolith/Masses/MassGenesis/RefinedStableCarrier.lean
not_allStableMassAdmissible_of_sameTopology_different_load · IndisputableMonolith/Masses/MassGenesis/RefinedStableCarrier.lean:170
/-- The old all-raw-stable construction target is impossible in the presence of
a same-topology stable pair with different load. -/
theorem not_allStableMassAdmissible_of_sameTopology_different_load
    {ψ χ : LightPattern Λ}
    (hψ : StableClosedLightPattern ψ)
    (hχ : StableClosedLightPattern χ)
    (htop : SameTopology ψ χ)
    (hload : integratedMeaningLoad ψ ≠ integratedMeaningLoad χ) :
    ((∀ η : LightPattern Λ,
        StableClosedLightPattern η →
          MassAdmissibleStablePattern η) → False) := by
  intro Hall
  have hψM : restMass ψ = predictedMass ψ :=
    restMass_eq_predictedMass_of_massAdmissible (Hall ψ hψ)
  have hχM : restMass χ = predictedMass χ :=
    restMass_eq_predictedMass_of_massAdmissible (Hall χ hχ)
  have hrest : restMass ψ = restMass χ :=
    sameTopology_realized_patterns_have_same_restMass htop hψM hχM
  rw [restMass_eq_integratedMeaningLoad_of_stable ψ hψ,
      restMass_eq_integratedMeaningLoad_of_stable χ hχ] at hrest
  exact hload hrest
THEOREM not_allStableMassAdmissible_of_sameTopology_different_load · IndisputableMonolith/Masses/MassGenesis/RefinedStableCarrier.lean
not_allStableMassAdmissible_of_sameTopology_different_load · IndisputableMonolith/Masses/MassGenesis/RefinedStableCarrier.lean:170
/-- The old all-raw-stable construction target is impossible in the presence of
a same-topology stable pair with different load. -/
theorem not_allStableMassAdmissible_of_sameTopology_different_load
    {ψ χ : LightPattern Λ}
    (hψ : StableClosedLightPattern ψ)
    (hχ : StableClosedLightPattern χ)
    (htop : SameTopology ψ χ)
    (hload : integratedMeaningLoad ψ ≠ integratedMeaningLoad χ) :
    ((∀ η : LightPattern Λ,
        StableClosedLightPattern η →
          MassAdmissibleStablePattern η) → False) := by
  intro Hall
  have hψM : restMass ψ = predictedMass ψ :=
    restMass_eq_predictedMass_of_massAdmissible (Hall ψ hψ)
  have hχM : restMass χ = predictedMass χ :=
    restMass_eq_predictedMass_of_massAdmissible (Hall χ hχ)
  have hrest : restMass ψ = restMass χ :=
    sameTopology_realized_patterns_have_same_restMass htop hψM hχM
  rw [restMass_eq_integratedMeaningLoad_of_stable ψ hψ,
      restMass_eq_integratedMeaningLoad_of_stable χ hχ] at hrest
  exact hload hrest
THEOREM restMass_eq_predictedMass · restMass_pos · load_invariant · IndisputableMonolith/Masses/MassGenesis/RefinedStableCarrier.lean
theorem restMass_eq_predictedMass (Ψ : TopologyNormalizedStablePattern Λ) :
    restMass Ψ.pattern = predictedMass Ψ.pattern :=
  stable_factorizedTopologyLoadDensity_restMass_eq_predictedMass
    Ψ.pattern Ψ.stable Ψ.factorized_density
theorem restMass_pos (Ψ : TopologyNormalizedStablePattern Λ) :
    0 < restMass Ψ.pattern :=
  restMass_pos_of_stable Ψ.pattern Ψ.stable
theorem load_invariant (Ψ : TopologyNormalizedStablePattern Λ) (k : ℕ) :
    integratedMeaningLoad (evolvePattern k Ψ.pattern) =
      integratedMeaningLoad Ψ.pattern :=
  integratedMeaningLoad_evolve_invariant Ψ.pattern k

What this page does not claim

The theorem does not construct the two counterexample patterns explicitly. The theorem does not say which stable patterns are mass-admissible, only that not all are. The factorized density field is not derived from first principles; it remains an open construction problem.

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/RefinedStableCarrier.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