Encyclopedia Masses Masses Mass Genesis T10 Amplitude Freedom Refutation
ARTICLE 4 claims 4 theorems
Masses Mass Genesis T10 Amplitude Freedom Refutation
A machine-checked proof shows that particle mass cannot be read off from pattern shape alone, because the pattern's amplitude is unconstrained.
The amplitude freedom refutation
In the Recognition Science framework, a ledger is a discrete record of recognition events. A stable pattern in that ledger is a configuration that persists under the framework's dynamics. The framework's mass genesis program asks whether the mass of such a pattern can be derived from its topology, the shape of its connections, alone. The T10 module answers this question in the negative for the current definition of admissibility.
The central theorem, not_forall_stable_massLawLoadRealized, proves that the identity "mass-law load equals realized load" cannot hold for every stable pattern. The witness is a rescaling operation: multiply every window amplitude by a constant c. This operation preserves admissibility, meaning the rescaled pattern is still stable. However, the two sides of the identity transform differently under this rescaling. The mass-law side, which depends only on topology, is invariant. The load side, which depends on the amplitude, scales with c^2. Therefore, the identity can hold at most at one point of each scaling orbit, and the universally quantified claim is false.
The sharpest form of the obstruction is the theorem exists_sameTopology_stable_load_eq. It shows that at fixed topology, the integrated meaning load of a stable pattern can be made equal to any positive real number. This means the load carries no information that the topology constrains. No function of the topology alone can predict it. This is not a failure of the framework's core idea, but a precise identification of a missing condition.
In Recognition Science, the framework models mass genesis from meaning: the rest mass of a stable pattern is its integrated meaning load. This identity is untouched by the refutation. What is refuted is the identification of that load with the topology-labelled mass law, on this surface. The cause is that the pattern's window is free complex data that no admissibility condition constrains. The nine earlier failed scale attacks were not unlucky; they were searching for a theorem that cannot exist while admissibility is amplitude-blind.
The constructive reading is the actual next problem. An amplitude-fixing condition must be added to admissibility. The theorem T10AnchorLoadTransportComposition already shows what such a condition looks like, since unitPosting_load pins one specific window to load exactly 2. The open question is what forces a realized particle's window to be that one.
THEOREM not_forall_stable_massLawLoadRealized · IndisputableMonolith/Masses/MassGenesis/T10AmplitudeFreedomRefutation.lean
/-- **Main theorem.** The mass-law load identity cannot hold for every stable
pattern. Given any single stable pattern, its double is also stable, has the same
topology and therefore the same predicted mass, but four times the load. -/
theorem not_forall_stable_massLawLoadRealized
{ψ : LightPattern (Fin 8)} (h : StableClosedLightPattern ψ) :
¬ (∀ χ : LightPattern (Fin 8),
StableClosedLightPattern χ → MassLawLoadRealized χ) := by
intro hall
have hL : 0 < integratedMeaningLoad ψ :=
integratedMeaningLoad_pos_of_nontrivial ψ h.2.1
have h2 : StableClosedLightPattern (scalePattern 2 ψ) :=
stableClosedLightPattern_scalePattern (by norm_num) h
have e1 : integratedMeaningLoad ψ = predictedMass ψ := hall ψ h
have e2 : integratedMeaningLoad (scalePattern 2 ψ)
= predictedMass (scalePattern 2 ψ) := hall _ h2
rw [integratedMeaningLoad_scalePattern, predictedMass_scalePattern, ← e1] at e2
have hfour : (2 : ℝ) ^ 2 = 4 := by norm_num
rw [hfour] at e2
linarith
THEOREM exists_sameTopology_stable_load_eq · IndisputableMonolith/Masses/MassGenesis/T10AmplitudeFreedomRefutation.lean
/-- At fixed topology, the integrated meaning load of a stable pattern can be made
equal to ANY positive real. This is the sharpest form of the obstruction: the load
carries no information that the topology constrains, so no function of the topology
can predict it. -/
theorem exists_sameTopology_stable_load_eq
{ψ : LightPattern (Fin 8)} (h : StableClosedLightPattern ψ)
{r : ℝ} (hr : 0 < r) :
∃ χ : LightPattern (Fin 8),
SameTopology ψ χ ∧ StableClosedLightPattern χ ∧
integratedMeaningLoad χ = r := by
have hL : 0 < integratedMeaningLoad ψ :=
integratedMeaningLoad_pos_of_nontrivial ψ h.2.1
have hquot : 0 < r / integratedMeaningLoad ψ := div_pos hr hL
have hLne : integratedMeaningLoad ψ ≠ 0 := ne_of_gt hL
refine ⟨scalePattern (Real.sqrt (r / integratedMeaningLoad ψ)) ψ,
(scalePattern_topology _ ψ).symm,
stableClosedLightPattern_scalePattern (ne_of_gt (Real.sqrt_pos.mpr hquot)) h, ?_⟩
rw [integratedMeaningLoad_scalePattern, Real.sq_sqrt (le_of_lt hquot)]
field_simp
THEOREM stableClosedLightPattern_scalePattern · IndisputableMonolith/Masses/MassGenesis/T10AmplitudeFreedomRefutation.lean
/-- **Admissibility is amplitude-blind.** A nonzero rescaling of any stable closed
pattern is again a stable closed pattern. -/
theorem stableClosedLightPattern_scalePattern {c : ℝ} (hc : c ≠ 0)
{ψ : LightPattern (Fin 8)} (h : StableClosedLightPattern ψ) :
StableClosedLightPattern (scalePattern c ψ) :=
⟨localizedSupport_scalePattern c h.1,
nontrivialNeutralLoad_scalePattern hc h.2.1,
closedRHatOrbit_of_any _⟩
THEOREM not_forall_stable_restMass_eq_predictedMass · IndisputableMonolith/Masses/MassGenesis/T10AmplitudeFreedomRefutation.lean
/-- The same statement in the headline variables: rest mass and predicted mass
cannot agree on every stable pattern. -/
theorem not_forall_stable_restMass_eq_predictedMass
{ψ : LightPattern (Fin 8)} (h : StableClosedLightPattern ψ) :
¬ (∀ χ : LightPattern (Fin 8),
StableClosedLightPattern χ → restMass χ = predictedMass χ) := by
intro hall
refine not_forall_stable_massLawLoadRealized h (fun χ hχ => ?_)
have := hall χ hχ
rwa [restMass_eq_integratedMeaningLoad_of_stable χ hχ] at this
What this page does not claim
The refutation does not refute mass genesis from meaning; restMass equals integratedMeaningLoad for stable patterns remains untouched. The module does not prove that no amplitude-fixing condition can exist; it proves that none is present in the current admissibility 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/T10AmplitudeFreedomRefutation.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 amplitude-fixing condition forces a realized particle's window to be the one pinned by unitPosting_load?
- How does the refutation change the search for a bottom-up realization theorem?
- Does the amplitude freedom obstruction persist under a different definition of admissibility that constrains the window?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM not_forall_stable_massLawLoadRealized · IndisputableMonolith/Masses/MassGenesis/T10AmplitudeFreedomRefutation.lean
/-- **Main theorem.** The mass-law load identity cannot hold for every stable pattern. Given any single stable pattern, its double is also stable, has the same topology and therefore the same predicted mass, but four times the load. -/ theorem not_forall_stable_massLawLoadRealized {ψ : LightPattern (Fin 8)} (h : StableClosedLightPattern ψ) : ¬ (∀ χ : LightPattern (Fin 8), StableClosedLightPattern χ → MassLawLoadRealized χ) := by intro hall have hL : 0 < integratedMeaningLoad ψ := integratedMeaningLoad_pos_of_nontrivial ψ h.2.1 have h2 : StableClosedLightPattern (scalePattern 2 ψ) := stableClosedLightPattern_scalePattern (by norm_num) h have e1 : integratedMeaningLoad ψ = predictedMass ψ := hall ψ h have e2 : integratedMeaningLoad (scalePattern 2 ψ) = predictedMass (scalePattern 2 ψ) := hall _ h2 rw [integratedMeaningLoad_scalePattern, predictedMass_scalePattern, ← e1] at e2 have hfour : (2 : ℝ) ^ 2 = 4 := by norm_num rw [hfour] at e2 linarithThe mass-law load identity cannot hold for every stable pattern. not_forall_stable_massLawLoadRealized · IndisputableMonolith/Masses/MassGenesis/T10AmplitudeFreedomRefutation.leanTHEOREM exists_sameTopology_stable_load_eq · IndisputableMonolith/Masses/MassGenesis/T10AmplitudeFreedomRefutation.lean
/-- At fixed topology, the integrated meaning load of a stable pattern can be made equal to ANY positive real. This is the sharpest form of the obstruction: the load carries no information that the topology constrains, so no function of the topology can predict it. -/ theorem exists_sameTopology_stable_load_eq {ψ : LightPattern (Fin 8)} (h : StableClosedLightPattern ψ) {r : ℝ} (hr : 0 < r) : ∃ χ : LightPattern (Fin 8), SameTopology ψ χ ∧ StableClosedLightPattern χ ∧ integratedMeaningLoad χ = r := by have hL : 0 < integratedMeaningLoad ψ := integratedMeaningLoad_pos_of_nontrivial ψ h.2.1 have hquot : 0 < r / integratedMeaningLoad ψ := div_pos hr hL have hLne : integratedMeaningLoad ψ ≠ 0 := ne_of_gt hL refine ⟨scalePattern (Real.sqrt (r / integratedMeaningLoad ψ)) ψ, (scalePattern_topology _ ψ).symm, stableClosedLightPattern_scalePattern (ne_of_gt (Real.sqrt_pos.mpr hquot)) h, ?_⟩ rw [integratedMeaningLoad_scalePattern, Real.sq_sqrt (le_of_lt hquot)] field_simpAt fixed topology, the integrated meaning load of a stable pattern can be made equal to any positive real number. exists_sameTopology_stable_load_eq · IndisputableMonolith/Masses/MassGenesis/T10AmplitudeFreedomRefutation.leanTHEOREM stableClosedLightPattern_scalePattern · IndisputableMonolith/Masses/MassGenesis/T10AmplitudeFreedomRefutation.lean
/-- **Admissibility is amplitude-blind.** A nonzero rescaling of any stable closed pattern is again a stable closed pattern. -/ theorem stableClosedLightPattern_scalePattern {c : ℝ} (hc : c ≠ 0) {ψ : LightPattern (Fin 8)} (h : StableClosedLightPattern ψ) : StableClosedLightPattern (scalePattern c ψ) := ⟨localizedSupport_scalePattern c h.1, nontrivialNeutralLoad_scalePattern hc h.2.1, closedRHatOrbit_of_any _⟩A nonzero rescaling of any stable closed pattern is again a stable closed pattern. stableClosedLightPattern_scalePattern · IndisputableMonolith/Masses/MassGenesis/T10AmplitudeFreedomRefutation.leanTHEOREM not_forall_stable_restMass_eq_predictedMass · IndisputableMonolith/Masses/MassGenesis/T10AmplitudeFreedomRefutation.lean
/-- The same statement in the headline variables: rest mass and predicted mass cannot agree on every stable pattern. -/ theorem not_forall_stable_restMass_eq_predictedMass {ψ : LightPattern (Fin 8)} (h : StableClosedLightPattern ψ) : ¬ (∀ χ : LightPattern (Fin 8), StableClosedLightPattern χ → restMass χ = predictedMass χ) := by intro hall refine not_forall_stable_massLawLoadRealized h (fun χ hχ => ?_) have := hall χ hχ rwa [restMass_eq_integratedMeaningLoad_of_stable χ hχ] at thisThe identity restMass equals predictedMass cannot hold for every stable pattern. not_forall_stable_restMass_eq_predictedMass · IndisputableMonolith/Masses/MassGenesis/T10AmplitudeFreedomRefutation.lean