Encyclopedia Masses Masses Mass Genesis T10 Double Entry Posting Wall Double Entry Integrated Load L

ARTICLE 4 claims 4 theorems

Masses Mass Genesis T10 Double Entry Posting Wall Double Entry Integrated Load L

A machine-checked theorem sets a hard upper limit on the mass-like load a settled pattern can carry, and the limit is 64.

The load ceiling

In the Recognition Science framework, a ledger, a discrete record of events, can be kept in a double-entry style: every entry, or post, at one tick is balanced by an equal and opposite post at the next tick. The declaration doubleEntry_integratedLoad_le_sixtyFour is a theorem in the framework's machine-checked library of formal theorems. It states that for any pattern satisfying this balanced-posting condition, the total load, a measure of the pattern's content, cannot exceed 64.

The theorem's proof relies on a chain of earlier results. A single post per tick forces each window entry to be one of -1, 0, or 1. This, in turn, bounds the load at any single site by 8. Since a pattern can have up to eight sites, the total load is bounded by 8 times 8, giving the ceiling of 64. The theorem also establishes a floor: if a pattern has any nontrivial load, that load is at least 2. This floor arises from the fact that the eight tick differences are integers summing to zero, so any nonzero difference implies at least two nonzero differences, and the sum of their squares is even.

This ceiling is not merely a mathematical curiosity. It directly bounds the ratio of rest masses, the framework's term for the load of a stable pattern, between any two settled patterns. The ratio cannot exceed 32, which is the ceiling of 64 divided by the floor of 2. The framework's library then compares this bound to a measured value: the muon-to-electron mass ratio. The measured ratio is approximately 206.77, which exceeds 32 by a factor of about 6.46. The theorem therefore shows that the double-entry posting model, as defined, cannot produce the measured muon-to-electron mass ratio.

In Recognition Science, this result is presented as a strengthening of an earlier bound. A previous result had established a floor of 7/8 and a ratio ceiling of about 73.14. The double-entry model sharpens the floor to 2 and the ratio ceiling to exactly 32. The framework's account notes that deriving the premise made the refutation stronger, meaning the model's failure to reach the measured ratio is more definitive than before.

The theorem's scope is precise. It applies only to patterns that satisfy the double-entry posting condition, which itself assumes one post per tick. This assumption is not derived within the framework; it is a stated premise. The theorem also relies on the definition of rest mass as the integrated meaning load, a modelling choice. Without the one-post-per-tick premise, the ceiling of 64 does not hold. The floor of 2, however, requires only integer counting and does not depend on that premise.

THEOREM doubleEntry_integratedLoad_le_sixtyFour · IndisputableMonolith/Masses/MassGenesis/T10DoubleEntryPostingWall.lean
doubleEntry_integratedLoad_le_sixtyFour · IndisputableMonolith/Masses/MassGenesis/T10DoubleEntryPostingWall.lean:322
/-- Total load ceiling: at most eight sites, each at most eight. -/
theorem doubleEntry_integratedLoad_le_sixtyFour {ψ : LightPattern (Fin 8)}
    (hd : DoubleEntrySettledPattern ψ) : integratedMeaningLoad ψ ≤ 64 := by
  refine phasedPosting_integratedLoad_le_sixtyFour ?_
  intro x hx
  obtain ⟨p, hp, hrate⟩ := hd x hx
  exact isPhasedPosting_of_boolean (booleanWindow_of_onePostingPerTick hp hrate)
THEOREM doubleEntry_integratedLoad_ge_two · IndisputableMonolith/Masses/MassGenesis/T10DoubleEntryPostingWall.lean
/-- Total load floor, now `2` rather than `7/8`, because a posting cannot carry an
odd load. -/
theorem doubleEntry_integratedLoad_ge_two {ψ : LightPattern (Fin 8)}
    (hd : DoubleEntrySettledPattern ψ) (hnt : NontrivialNeutralLoad ψ) :
    2 ≤ integratedMeaningLoad ψ := by
  obtain ⟨x, hx, hpos⟩ := hnt
  obtain ⟨p, hp, _⟩ := hd x hx
  have hsite : 2 ≤ siteMeaningLoad ψ x := integerPosting_load_ge_two hp hpos
  have hle : siteMeaningLoad ψ x ≤ integratedMeaningLoad ψ := by
    rw [integratedMeaningLoad_eq_support_sum]
    exact Finset.single_le_sum (fun y _ => siteMeaningLoad_nonneg ψ y) hx
  linarith
THEOREM doubleEntry_restMass_ratio_le · IndisputableMonolith/Masses/MassGenesis/T10DoubleEntryPostingWall.lean
/-- **The double-entry mass ratio wall.** Deriving the posting alphabet instead of
assuming it tightens the ceiling from `512/7 ≈ 73.14` to exactly `32`. -/
theorem doubleEntry_restMass_ratio_le {ψ χ : LightPattern (Fin 8)}
    (hsψ : StableClosedLightPattern ψ) (hsχ : StableClosedLightPattern χ)
    (hdψ : DoubleEntrySettledPattern ψ) (hdχ : DoubleEntrySettledPattern χ) :
    restMass ψ ≤ 32 * restMass χ := by
  rw [restMass_eq_integratedMeaningLoad_of_stable ψ hsψ,
      restMass_eq_integratedMeaningLoad_of_stable χ hsχ]
  have hup : integratedMeaningLoad ψ ≤ 64 := doubleEntry_integratedLoad_le_sixtyFour hdψ
  have hlo : 2 ≤ integratedMeaningLoad χ := doubleEntry_integratedLoad_ge_two hdχ hsχ.2.1
  nlinarith [hup, hlo]
THEOREM doubleEntry_excludes_measured_muonElectron · IndisputableMonolith/Masses/MassGenesis/T10DoubleEntryPostingWall.lean
doubleEntry_excludes_measured_muonElectron · IndisputableMonolith/Masses/MassGenesis/T10DoubleEntryPostingWall.lean:355
/-- **The instantiated refutation, tighter than the phased-posting one.** No two
double-entry settled stable patterns on `Fin 8` can stand in the measured
muon-to-electron mass ratio, which exceeds 32 by a factor of 6.46. -/
theorem doubleEntry_excludes_measured_muonElectron {ψ χ : LightPattern (Fin 8)}
    (hsψ : StableClosedLightPattern ψ) (hsχ : StableClosedLightPattern χ)
    (hdψ : DoubleEntrySettledPattern ψ) (hdχ : DoubleEntrySettledPattern χ) :
    restMass ψ ≠ measuredMuonElectronMassRatio * restMass χ := by
  intro hEq
  have hle := doubleEntry_restMass_ratio_le hsψ hsχ hdψ hdχ
  have hpos : 0 < restMass χ := by
    rw [restMass_eq_integratedMeaningLoad_of_stable χ hsχ]
    have := doubleEntry_integratedLoad_ge_two hdχ hsχ.2.1
    linarith
  rw [hEq] at hle
  have hr : (32 : ℝ) < measuredMuonElectronMassRatio := by
    unfold measuredMuonElectronMassRatio; norm_num
  nlinarith [hle, hpos, hr]

What this page does not claim

The theorem does not claim that any pattern with a load of 64 exists. The theorem does not claim that the one-post-per-tick premise is derived or forced by the framework. The theorem does not claim that the muon-to-electron mass ratio is impossible in all models, only in this double-entry model.

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