Encyclopedia Masses Masses Mass Genesis T10 Deposit Location Organ Cascade Depends Only On Counts

ARTICLE 3 claims 3 theorems

Masses Mass Genesis T10 Deposit Location Organ Cascade Depends Only On Counts

A machine-checked theorem shows that for a class of mass-genesis models, the order in which deposits are made is invisible to the resulting spectrum; only the totals matter.

Counts, not order

In the Recognition Science framework, a ledger is a discrete record of events, and a deposit is a single entry placed into one of N categories. The theorem cascade_depends_only_on_counts states that the cascade spectrum, the list of eigenvalues that characterizes the ledger's behavior, depends only on how many deposits land in each category, not on the sequence in which they were made. If two ledgers have the same deposit counts in every category, they are spectrally identical.

The proof is short and direct. The cascade eigenvalue is defined as a product over the categories of a function of the deposit count, so reordering the list of deposits never changes the product. The theorem formalizes this by rewriting the eigenvalue expression and applying the hypothesis that the counts agree. A corollary, cascade_reverse_same_spectrum, makes the point concrete: swapping the order of two deposits leaves the spectrum unchanged.

This order blindness is a wall, not a feature. The framework's goal is to find an organ, a recognition-native principle, that forces where deposits land. The theorem shows that at the cascade-spectral tier, no such organ can exist, because the data available at that tier cannot distinguish one ordering from another. The missing organ would have to be a scale-bearing parent outside the cascade-spectral data, a principle that carries information the counts do not.

The theorem does not claim that all ledgers are equivalent, only that order is invisible at this tier. It also does not claim that no organ can ever force a deposit location, only that none can do so using only cascade-spectral data. The even-k residual of the general sqrt escape remains open, but it cannot restore selection by field membership alone, because the closed set is already uniform.

THEOREM cascade_order_blind · IndisputableMonolith/Masses/MassGenesis/T10DepositLocationOrgan.lean
/-- **Order blindness.** Same deposit counts ⇒ identical cascade spectrum. -/
theorem cascade_order_blind {N : ℕ} {a : ℝ} (_ha : a ≠ 0)
    (ks ks' : List (Fin N))
    (hc : ∀ n : Fin N, depositCount ks n = depositCount ks' n) :
    cascadeSpectrum ks = cascadeSpectrum ks' := by
  ext x
  constructor
  · rintro ⟨n, m, rfl⟩
    exact ⟨n, m, by rw [hc n]⟩
  · rintro ⟨n, m, rfl⟩
    exact ⟨n, m, by rw [hc n]⟩
THEOREM cascade_depends_only_on_counts · IndisputableMonolith/Masses/MassGenesis/T10DepositLocationOrgan.lean
theorem cascade_depends_only_on_counts {N : ℕ} {a : ℝ} (ha : a ≠ 0)
    (ks ks' : List (Fin N))
    (hc : ∀ n : Fin N, depositCount ks n = depositCount ks' n)
    (i j : SectorN N) :
    cascadeEigenvalue a ks i j = cascadeEigenvalue a ks' i j := by
  obtain ⟨n, p⟩ := i
  obtain ⟨m, q⟩ := j
  rw [cascadeEigenvalue_eq ha, cascadeEigenvalue_eq ha, hc n]
THEOREM deposit_location_organ_wall · IndisputableMonolith/Masses/MassGenesis/T10DepositLocationOrgan.lean
/-- **DEPOSIT-LOCATION ORGAN WALL (THEOREM), cascade-spectral tier.**

At the named tier of principles whose observable data is a function of
cascade modular eigenvalues (equivalently, of deposit counts):

* order is invisible (`cascade_order_blind`);
* amplitude is invisible (`cascade_amplitude_blind`);
* the four C3 cascade shapes fail (`cascade_verdict`);
* sqrt-escape is uniform on every odd rung and the banked anchors, so it
  does not select a location among those rungs.

No recognition-native organ at this tier forces a viable nonempty deposit
location. The missing organ is a scale-bearing parent outside
cascade-spectral data (binding: `D-rs-t10-scale-bearing-parent-required`).
Even-`k` residual of the general sqrt escape (beyond the anchors) remains
recorded as the next named sub-tier to close; it cannot restore selection
by field membership alone, because the closed set is already uniform. -/
theorem deposit_location_organ_wall {N : ℕ} (hN : 2 ≤ N) {a : ℝ} (ha : a ≠ 0) :
    (∀ (ks ks' : List (Fin N)),
      (∀ n, depositCount ks n = depositCount ks' n) →
        cascadeSpectrum ks = cascadeSpectrum ks') ∧
    (∀ (b : ℝ), b ≠ 0 → ∀ (ks : List (Fin N)) (i j : SectorN N),
      cascadeEigenvalue a ks i j = cascadeEigenvalue b ks i j) ∧
    (∀ (ks : List (Fin N)) (k : Fin N),
      MatchesSinglePosting ks k → SpectrallyDistinguished k → k = rungOne hN) ∧
    (¬ InQPhi (Real.sqrt phi)) ∧
    (∀ k : ℕ, Odd k ∨ k = 0 ∨ k = 1 →
      ¬ InQPhi (Real.sqrt ((1 + phi ^ k) / phi ^ k))) := by
  refine ⟨?_, ?_, ?_, sqrt_phi_not_inQPhi, ?_⟩
  · intro ks ks' hc
    exact cascade_order_blind ha ks ks' hc
  · intro b hb ks i j
    exact cascade_amplitude_blind ha hb ks i j
  · intro ks k hm hd
    exact conditioning_collapses_to_killed_shape hN ks k hm hd
  · intro k hk
    exact sqrt_response_not_inQPhi_odd_or_anchor k hk

What this page does not claim

The theorem does not claim that all ledgers are equivalent, only that order is invisible at this tier. The theorem does not claim that no organ can ever force a deposit location, only that none can do so using only cascade-spectral data. The theorem does not claim that the even-k residual is closed; it remains an open sub-tier.

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