Encyclopedia Masses Masses Mass Genesis Load Rigidity Obstruction Stable Topology Load Rigid At Forc
ARTICLE 4 claims 4 theorems
Masses Mass Genesis Load Rigidity Obstruction Stable Topology Load Rigid At Forc
A theorem about mass genesis states a precise condition under which two stable patterns with the same topology must carry the same load, and it names the exact obstruction that blocks the stronger claim.
The rigidity theorem
The declaration stableTopologyLoadRigidAt_forces_sameTopology_same_load is a theorem in the framework's machine-checked library of formal theorems. It states that if a pattern is load-rigid at a point, and two stable closed light patterns share the same topology, then their integrated meaning loads are equal. In plain terms: on a substrate where rigidity holds, topology determines load completely. Two stable patterns that look the same at the level of their shape must carry the same total weight.
The theorem is conditional. It does not assert that every stable pattern is load-rigid, nor that same topology always forces same load. It asserts only that if rigidity holds at a pattern, then same-topology stable patterns have equal load. The proof is a direct application of the rigidity hypothesis: the rigidity property at ψ takes any stable χ with the same topology and returns the load equality.
The companion theorem not_stableTopologyLoadRigidAt_of_sameTopology_different_load supplies the sharp converse. If two stable patterns share a topology but have different integrated meaning loads, then rigidity fails at the first pattern. This is the load-rigidity obstruction: the existence of a same-topology, different-load stable pair is exactly what refutes local topology-class load rigidity. The same pair also refutes the global rigidity property on the substrate, and therefore refutes the conditional mass-genesis assumptions that would require it.
In Recognition Science, this is a structural fact about the current LightPattern carrier. The carrier separates topology from the raw eight-tick window amplitudes, which is good for auditing but means the rigidity target cannot be proved from the current stability predicate alone. The theorem records the exact obstruction: stability is exactly locality plus nontrivial neutral load, with no amplitude quantization in the stability predicate itself. The conditional assembly assumptions cannot hold on a substrate where such a same-topology/different-load stable pair exists.
The theorem does not claim that load rigidity actually holds anywhere. It does not claim that same topology always forces same load. It does not claim that the conditional mass-genesis assumptions are satisfied. It establishes only the implication, and the companion theorems establish the exact counterexample condition that blocks the stronger claims.
THEOREM stableTopologyLoadRigidAt_forces_sameTopology_same_load · IndisputableMonolith/Masses/MassGenesis/LoadRigidityObstruction.lean
theorem stableTopologyLoadRigidAt_forces_sameTopology_same_load
{ψ χ : LightPattern Λ}
(hrigid : StableTopologyLoadRigidAt ψ)
(hψ : StableClosedLightPattern ψ)
(hχ : StableClosedLightPattern χ)
(htop : SameTopology ψ χ) :
integratedMeaningLoad ψ = integratedMeaningLoad χ :=
hrigid hψ χ hχ htop
THEOREM not_stableTopologyLoadRigidAt_of_sameTopology_different_load · IndisputableMonolith/Masses/MassGenesis/LoadRigidityObstruction.lean
/-- A same-topology stable pair with different load is a direct counterexample
to local topology-class load rigidity. -/
theorem not_stableTopologyLoadRigidAt_of_sameTopology_different_load
{ψ χ : LightPattern Λ}
(hψ : StableClosedLightPattern ψ)
(hχ : StableClosedLightPattern χ)
(htop : SameTopology ψ χ)
(hload : integratedMeaningLoad ψ ≠ integratedMeaningLoad χ) :
¬ StableTopologyLoadRigidAt ψ := by
intro hrigid
exact hload
(stableTopologyLoadRigidAt_forces_sameTopology_same_load
hrigid hψ hχ htop)
THEOREM not_stableTopologyLoadRigidOn_of_sameTopology_different_load · no_conditionalAssumptions_of_sameTopology_different_load · IndisputableMonolith/Masses/MassGenesis/LoadRigidityObstruction.lean
/-- The same counterexample refutes global load rigidity on the substrate. -/
theorem not_stableTopologyLoadRigidOn_of_sameTopology_different_load
{ψ χ : LightPattern Λ}
(hψ : StableClosedLightPattern ψ)
(hχ : StableClosedLightPattern χ)
(htop : SameTopology ψ χ)
(hload : integratedMeaningLoad ψ ≠ integratedMeaningLoad χ) :
¬ StableTopologyLoadRigidOn Λ := by
intro hglobal
exact not_stableTopologyLoadRigidAt_of_sameTopology_different_load
hψ hχ htop hload (hglobal ψ)
/-- Therefore the conditional assembly assumptions cannot hold on a substrate
where such a same-topology/different-load stable pair exists. -/
theorem no_conditionalAssumptions_of_sameTopology_different_load
{ψ χ : LightPattern Λ}
(hψ : StableClosedLightPattern ψ)
(hχ : StableClosedLightPattern χ)
(htop : SameTopology ψ χ)
(hload : integratedMeaningLoad ψ ≠ integratedMeaningLoad χ) :
¬ ConditionalMassGenesisAssumptions Λ := by
intro A
exact not_stableTopologyLoadRigidOn_of_sameTopology_different_load
hψ hχ htop hload A.stable_topology_load_rigid
THEOREM current_stability_surface_iff_local_nontrivial · IndisputableMonolith/Masses/MassGenesis/LoadRigidityObstruction.lean
/-- In the present cyclic-shift surface, stability is exactly locality plus
nontrivial neutral load. This restates the M2 fact at the obstruction layer:
there is no amplitude quantization in `StableClosedLightPattern` itself. -/
theorem current_stability_surface_iff_local_nontrivial
(ψ : LightPattern Λ) :
StableClosedLightPattern ψ ↔
LocalizedSupport ψ ∧ NontrivialNeutralLoad ψ :=
stable_iff_localized_nontrivial ψ
What this page does not claim
The theorem does not assert that load rigidity holds for any particular pattern. The theorem does not assert that same topology always forces same load without the rigidity hypothesis. The theorem does not assert that the conditional mass-genesis assumptions are satisfied on any substrate.
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/LoadRigidityObstruction.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 additional structure on the LightPattern carrier would make topology-class load rigidity provable?
- Does the obstruction theorem generalize to other carriers beyond LightPattern?
- What physical interpretation does the integrated meaning load carry in the mass-genesis picture?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM stableTopologyLoadRigidAt_forces_sameTopology_same_load · IndisputableMonolith/Masses/MassGenesis/LoadRigidityObstruction.lean
theorem stableTopologyLoadRigidAt_forces_sameTopology_same_load {ψ χ : LightPattern Λ} (hrigid : StableTopologyLoadRigidAt ψ) (hψ : StableClosedLightPattern ψ) (hχ : StableClosedLightPattern χ) (htop : SameTopology ψ χ) : integratedMeaningLoad ψ = integratedMeaningLoad χ := hrigid hψ χ hχ htopThe theorem states that if a pattern is load-rigid at a point, and two stable closed light patterns share the same topology, then their integrated meaning loads are equal. stableTopologyLoadRigidAt_forces_sameTopology_same_load · IndisputableMonolith/Masses/MassGenesis/LoadRigidityObstruction.leanTHEOREM not_stableTopologyLoadRigidAt_of_sameTopology_different_load · IndisputableMonolith/Masses/MassGenesis/LoadRigidityObstruction.lean
/-- A same-topology stable pair with different load is a direct counterexample to local topology-class load rigidity. -/ theorem not_stableTopologyLoadRigidAt_of_sameTopology_different_load {ψ χ : LightPattern Λ} (hψ : StableClosedLightPattern ψ) (hχ : StableClosedLightPattern χ) (htop : SameTopology ψ χ) (hload : integratedMeaningLoad ψ ≠ integratedMeaningLoad χ) : ¬ StableTopologyLoadRigidAt ψ := by intro hrigid exact hload (stableTopologyLoadRigidAt_forces_sameTopology_same_load hrigid hψ hχ htop)If two stable patterns share a topology but have different integrated meaning loads, then rigidity fails at the first pattern. not_stableTopologyLoadRigidAt_of_sameTopology_different_load · IndisputableMonolith/Masses/MassGenesis/LoadRigidityObstruction.leanTHEOREM not_stableTopologyLoadRigidOn_of_sameTopology_different_load · no_conditionalAssumptions_of_sameTopology_different_load · IndisputableMonolith/Masses/MassGenesis/LoadRigidityObstruction.lean
/-- The same counterexample refutes global load rigidity on the substrate. -/ theorem not_stableTopologyLoadRigidOn_of_sameTopology_different_load {ψ χ : LightPattern Λ} (hψ : StableClosedLightPattern ψ) (hχ : StableClosedLightPattern χ) (htop : SameTopology ψ χ) (hload : integratedMeaningLoad ψ ≠ integratedMeaningLoad χ) : ¬ StableTopologyLoadRigidOn Λ := by intro hglobal exact not_stableTopologyLoadRigidAt_of_sameTopology_different_load hψ hχ htop hload (hglobal ψ)/-- Therefore the conditional assembly assumptions cannot hold on a substrate where such a same-topology/different-load stable pair exists. -/ theorem no_conditionalAssumptions_of_sameTopology_different_load {ψ χ : LightPattern Λ} (hψ : StableClosedLightPattern ψ) (hχ : StableClosedLightPattern χ) (htop : SameTopology ψ χ) (hload : integratedMeaningLoad ψ ≠ integratedMeaningLoad χ) : ¬ ConditionalMassGenesisAssumptions Λ := by intro A exact not_stableTopologyLoadRigidOn_of_sameTopology_different_load hψ hχ htop hload A.stable_topology_load_rigidThe same pair also refutes the global rigidity property on the substrate, and therefore refutes the conditional mass-genesis assumptions that would require it. not_stableTopologyLoadRigidOn_of_sameTopology_different_load · no_conditionalAssumptions_of_sameTopology_different_load · IndisputableMonolith/Masses/MassGenesis/LoadRigidityObstruction.leanTHEOREM current_stability_surface_iff_local_nontrivial · IndisputableMonolith/Masses/MassGenesis/LoadRigidityObstruction.lean
/-- In the present cyclic-shift surface, stability is exactly locality plus nontrivial neutral load. This restates the M2 fact at the obstruction layer: there is no amplitude quantization in `StableClosedLightPattern` itself. -/ theorem current_stability_surface_iff_local_nontrivial (ψ : LightPattern Λ) : StableClosedLightPattern ψ ↔ LocalizedSupport ψ ∧ NontrivialNeutralLoad ψ := stable_iff_localized_nontrivial ψStability is exactly locality plus nontrivial neutral load, with no amplitude quantization in the stability predicate itself. current_stability_surface_iff_local_nontrivial · IndisputableMonolith/Masses/MassGenesis/LoadRigidityObstruction.lean