Encyclopedia Masses Masses Mass Genesis T10 Scale Bearing Deposit Parent Scale Bearing Deposit Paren
ARTICLE 4 claims 4 theorems
Masses Mass Genesis T10 Scale Bearing Deposit Parent Scale Bearing Deposit Paren
A machine-checked theorem shows that a whole class of natural rules cannot decide where particles settle, leaving the actual mechanism as an open problem.
The deposit-location wall
The question is where a particle's mass gets deposited, and the answer is a wall. In the Recognition Science framework, a ledger (a discrete record of events) tracks how mass is posted to different locations, or rungs. The theorem named scale_bearing_deposit_parent_wall proves that, within a specific and natural tier of rules, no mechanism can force a viable nonempty deposit location without collapsing to a killed shape. The tier in question is defined by two ingredients: absolute cascade weights (a measure of how much each posting event contributes) and the recognition cost Jcost (the forced cost function J(x) = (x + 1/x)/2 - 1).
What the theorem actually establishes is a conjunction of four limiting facts. First, ratios of cascade weights depend only on count-visible data, not on the amplitude of the posting event. Second, ratios of total posted load depend only on the length of the deposit sequence, not on where the deposits are placed. Third, a proposed selection rule based on unit ratios is equivalent to Jcost vanishing, which is a costume for an earlier result. Fourth, a continuum escape attempt via even-k square roots fails uniformly, meaning it cannot select among rungs. Together these facts imply the wall: no recognition-native organ at this tier forces a deposit location.
This is a theorem in the machine-checked library of formal theorems, meaning the proof is verified by a computer. It is not a claim that no mechanism exists anywhere. The wall is specific to the tier of principles whose observable data is a function of absolute cascade weights together with Jcost. The missing organ lies outside that tier, for example an emission absolute outside Q(phi) or a pattern-to-ratio map from ledger dynamics. Those remain open targets.
What the wall changes is the search. Instead of looking for a location selector inside the cascade-weight and Jcost tier, the framework now points outward, to structures that carry more information than the tier can express. The theorem does not say where deposits go; it says where they cannot be forced from, which is a precise and useful negative result.
THEOREM scale_bearing_deposit_parent_wall · IndisputableMonolith/Masses/MassGenesis/T10ScaleBearingDepositParent.lean
/-- **SCALE-BEARING DEPOSIT-PARENT WALL (THEOREM), cascade-weight + J-cost tier.**
At the named tier of principles whose observable data is a function of
absolute cascade weights together with recognition cost `Jcost`:
* ratios of cascade weights are count-visible and amplitude-blind (C4 tier);
* total posted-load recognition ratios are length-only (location-blind);
* unit-ratio / J-cost-vanishing selection is R4 costume;
* continuum field-escape remains uniform on the C4 closed set (Attack 1
disposition: completing the even residual cannot restore selection).
No recognition-native organ at this tier forces a viable nonempty deposit
location without collapsing to a killed shape. The missing organ lies outside
cascade absolute weights and `Jcost` (an emission absolute outside `Q(phi)`,
or a pattern-to-ratio map from ledger dynamics). -/
theorem scale_bearing_deposit_parent_wall {N : Nat} (hN : 2 ≤ N) {a : Real}
(ha : a ≠ 0) :
(∀ (ks : List (Fin N)) (i j : SectorN N),
omegaCascade a ks i / omegaCascade a ks j =
(phi ^ i.1.val + (depositCount ks i.1 : Real)) /
(phi ^ j.1.val + (depositCount ks j.1 : Real))) ∧
(∀ (ks ks' : List (Fin N)), ks.length = ks'.length →
postedLoad a ks / postedLoad a ([] : List (Fin N)) =
postedLoad a ks' / postedLoad a ([] : List (Fin N))) ∧
(∀ (k : Fin N),
DepositUnitRatioSelect a k ↔
Cost.Jcost (omegaPreN a (k, commit)) = 0) ∧
(∀ (k1 k2 : Nat),
(Odd k1 ∨ k1 = 0 ∨ k1 = 1) →
(Odd k2 ∨ k2 = 0 ∨ k2 = 1) →
(¬ InQPhi (Real.sqrt ((1 + phi ^ k1) / phi ^ k1))) ∧
(¬ InQPhi (Real.sqrt ((1 + phi ^ k2) / phi ^ k2)))) ∧
(∀ (ks ks' : List (Fin N)),
(∀ n, depositCount ks n = depositCount ks' n) →
cascadeSpectrum ks = cascadeSpectrum ks') := by
refine ⟨?_, ?_, ?_, ?_, ?_⟩
· intro ks i j; exact cascade_weight_ratio_count_visible ha ks i j
· intro ks ks' hlen
exact postedLoad_ratio_length_only ha (by omega) ks ks' hlen
· intro k; exact deposit_unit_ratio_select_is_jcost_zero ha k
· intro k1 k2 h1 h2; exact even_sqrt_escape_does_not_select_by_uniformity h1 h2
· intro ks ks' hc; exact cascade_order_blind ha ks ks' hc
THEOREM cascade_weight_ratio_count_visible · IndisputableMonolith/Masses/MassGenesis/T10ScaleBearingDepositParent.lean
theorem cascade_weight_ratio_count_visible {N : Nat} {a : Real} (ha : a ≠ 0)
(ks : List (Fin N)) (i j : SectorN N) :
omegaCascade a ks i / omegaCascade a ks j =
(phi ^ i.1.val + (depositCount ks i.1 : Real)) /
(phi ^ j.1.val + (depositCount ks j.1 : Real)) := by
obtain ⟨n, p⟩ := i
obtain ⟨m, q⟩ := j
have hload : postingEventLoad a ≠ 0 := ne_of_gt (postingEventLoad_pos ha)
rw [omegaCascade_factor_amplitude, omegaCascade_factor_amplitude]
field_simp [hload]
THEOREM postedLoad_ratio_length_only · IndisputableMonolith/Masses/MassGenesis/T10ScaleBearingDepositParent.lean
theorem postedLoad_ratio_length_only {N : Nat} {a : Real} (ha : a ≠ 0)
(hN : 1 ≤ N) (ks ks' : List (Fin N)) (hlen : ks.length = ks'.length) :
postedLoad a ks / postedLoad a ([] : List (Fin N)) =
postedLoad a ks' / postedLoad a ([] : List (Fin N)) := by
have hload : postingEventLoad a ≠ 0 := ne_of_gt (postingEventLoad_pos ha)
have i0 : Fin N := ⟨0, Nat.lt_of_succ_le hN⟩
have hpos : 0 < ∑ n : Fin N, phi ^ n.val := by
have hterm : 0 < phi ^ i0.val := pow_pos phi_pos _
refine lt_of_lt_of_le hterm ?_
exact Finset.single_le_sum (fun n _ => (pow_pos phi_pos n.val).le)
(Finset.mem_univ i0)
have hsumphi : ∑ n : Fin N, phi ^ n.val ≠ 0 := ne_of_gt hpos
have hden : 2 * postingEventLoad a * ∑ n : Fin N, phi ^ n.val ≠ 0 :=
mul_ne_zero (mul_ne_zero (by norm_num) hload) hsumphi
simp only [postedLoad_eq, List.length_nil, Nat.cast_zero, add_zero]
field_simp [hden]
simp [hlen]
THEOREM deposit_unit_ratio_select_is_jcost_zero · IndisputableMonolith/Masses/MassGenesis/T10ScaleBearingDepositParent.lean
/-- **R4 costume.** Unit-ratio selection is J-cost vanishing on the absolute
pre-weight (`N-route-t10-genesis-predicate-selection-is-r4`). -/
theorem deposit_unit_ratio_select_is_jcost_zero {N : Nat} {a : Real} (ha : a ≠ 0)
(k : Fin N) :
DepositUnitRatioSelect a k ↔
Cost.Jcost (omegaPreN a (k, commit)) = 0 := by
have hpos : 0 < omegaPreN a (k, commit) := omegaPreN_pos ha _
constructor
· intro h; rw [h, Cost.Jcost_unit0]
· intro h; exact (Cost.Jcost_eq_zero_iff _ hpos).mp h
What this page does not claim
No claim that no deposit-location mechanism exists anywhere. No claim that the wall applies to tiers beyond absolute cascade weights plus Jcost. No claim that the theorem identifies where deposits actually go.
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/T10ScaleBearingDepositParent.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 emission absolute outside Q(phi) could serve as a deposit-location organ?
- What pattern-to-ratio map from ledger dynamics would break the wall?
- Does the wall persist if the tier is expanded to include a third ingredient beyond absolute weights and Jcost?
- How does the wall relate to the empirical phi-power mass ladder?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM scale_bearing_deposit_parent_wall · IndisputableMonolith/Masses/MassGenesis/T10ScaleBearingDepositParent.lean
/-- **SCALE-BEARING DEPOSIT-PARENT WALL (THEOREM), cascade-weight + J-cost tier.** At the named tier of principles whose observable data is a function of absolute cascade weights together with recognition cost `Jcost`: * ratios of cascade weights are count-visible and amplitude-blind (C4 tier); * total posted-load recognition ratios are length-only (location-blind); * unit-ratio / J-cost-vanishing selection is R4 costume; * continuum field-escape remains uniform on the C4 closed set (Attack 1 disposition: completing the even residual cannot restore selection). No recognition-native organ at this tier forces a viable nonempty deposit location without collapsing to a killed shape. The missing organ lies outside cascade absolute weights and `Jcost` (an emission absolute outside `Q(phi)`, or a pattern-to-ratio map from ledger dynamics). -/ theorem scale_bearing_deposit_parent_wall {N : Nat} (hN : 2 ≤ N) {a : Real} (ha : a ≠ 0) : (∀ (ks : List (Fin N)) (i j : SectorN N), omegaCascade a ks i / omegaCascade a ks j = (phi ^ i.1.val + (depositCount ks i.1 : Real)) / (phi ^ j.1.val + (depositCount ks j.1 : Real))) ∧ (∀ (ks ks' : List (Fin N)), ks.length = ks'.length → postedLoad a ks / postedLoad a ([] : List (Fin N)) = postedLoad a ks' / postedLoad a ([] : List (Fin N))) ∧ (∀ (k : Fin N), DepositUnitRatioSelect a k ↔ Cost.Jcost (omegaPreN a (k, commit)) = 0) ∧ (∀ (k1 k2 : Nat), (Odd k1 ∨ k1 = 0 ∨ k1 = 1) → (Odd k2 ∨ k2 = 0 ∨ k2 = 1) → (¬ InQPhi (Real.sqrt ((1 + phi ^ k1) / phi ^ k1))) ∧ (¬ InQPhi (Real.sqrt ((1 + phi ^ k2) / phi ^ k2)))) ∧ (∀ (ks ks' : List (Fin N)), (∀ n, depositCount ks n = depositCount ks' n) → cascadeSpectrum ks = cascadeSpectrum ks') := by refine ⟨?_, ?_, ?_, ?_, ?_⟩ · intro ks i j; exact cascade_weight_ratio_count_visible ha ks i j · intro ks ks' hlen exact postedLoad_ratio_length_only ha (by omega) ks ks' hlen · intro k; exact deposit_unit_ratio_select_is_jcost_zero ha k · intro k1 k2 h1 h2; exact even_sqrt_escape_does_not_select_by_uniformity h1 h2 · intro ks ks' hc; exact cascade_order_blind ha ks ks' hcThe theorem proves that, within the tier of absolute cascade weights plus Jcost, no recognition-native organ forces a viable nonempty deposit location without collapsing to a killed shape. scale_bearing_deposit_parent_wall · IndisputableMonolith/Masses/MassGenesis/T10ScaleBearingDepositParent.leanTHEOREM cascade_weight_ratio_count_visible · IndisputableMonolith/Masses/MassGenesis/T10ScaleBearingDepositParent.lean
theorem cascade_weight_ratio_count_visible {N : Nat} {a : Real} (ha : a ≠ 0) (ks : List (Fin N)) (i j : SectorN N) : omegaCascade a ks i / omegaCascade a ks j = (phi ^ i.1.val + (depositCount ks i.1 : Real)) / (phi ^ j.1.val + (depositCount ks j.1 : Real)) := by obtain ⟨n, p⟩ := i obtain ⟨m, q⟩ := j have hload : postingEventLoad a ≠ 0 := ne_of_gt (postingEventLoad_pos ha) rw [omegaCascade_factor_amplitude, omegaCascade_factor_amplitude] field_simp [hload]Ratios of cascade weights depend only on count-visible data, not on amplitude. cascade_weight_ratio_count_visible · IndisputableMonolith/Masses/MassGenesis/T10ScaleBearingDepositParent.leanTHEOREM postedLoad_ratio_length_only · IndisputableMonolith/Masses/MassGenesis/T10ScaleBearingDepositParent.lean
theorem postedLoad_ratio_length_only {N : Nat} {a : Real} (ha : a ≠ 0) (hN : 1 ≤ N) (ks ks' : List (Fin N)) (hlen : ks.length = ks'.length) : postedLoad a ks / postedLoad a ([] : List (Fin N)) = postedLoad a ks' / postedLoad a ([] : List (Fin N)) := by have hload : postingEventLoad a ≠ 0 := ne_of_gt (postingEventLoad_pos ha) have i0 : Fin N := ⟨0, Nat.lt_of_succ_le hN⟩ have hpos : 0 < ∑ n : Fin N, phi ^ n.val := by have hterm : 0 < phi ^ i0.val := pow_pos phi_pos _ refine lt_of_lt_of_le hterm ?_ exact Finset.single_le_sum (fun n _ => (pow_pos phi_pos n.val).le) (Finset.mem_univ i0) have hsumphi : ∑ n : Fin N, phi ^ n.val ≠ 0 := ne_of_gt hpos have hden : 2 * postingEventLoad a * ∑ n : Fin N, phi ^ n.val ≠ 0 := mul_ne_zero (mul_ne_zero (by norm_num) hload) hsumphi simp only [postedLoad_eq, List.length_nil, Nat.cast_zero, add_zero] field_simp [hden] simp [hlen]Ratios of total posted load depend only on the length of the deposit sequence, not on location. postedLoad_ratio_length_only · IndisputableMonolith/Masses/MassGenesis/T10ScaleBearingDepositParent.leanTHEOREM deposit_unit_ratio_select_is_jcost_zero · IndisputableMonolith/Masses/MassGenesis/T10ScaleBearingDepositParent.lean
/-- **R4 costume.** Unit-ratio selection is J-cost vanishing on the absolute pre-weight (`N-route-t10-genesis-predicate-selection-is-r4`). -/ theorem deposit_unit_ratio_select_is_jcost_zero {N : Nat} {a : Real} (ha : a ≠ 0) (k : Fin N) : DepositUnitRatioSelect a k ↔ Cost.Jcost (omegaPreN a (k, commit)) = 0 := by have hpos : 0 < omegaPreN a (k, commit) := omegaPreN_pos ha _ constructor · intro h; rw [h, Cost.Jcost_unit0] · intro h; exact (Cost.Jcost_eq_zero_iff _ hpos).mp hUnit-ratio selection is equivalent to Jcost vanishing. deposit_unit_ratio_select_is_jcost_zero · IndisputableMonolith/Masses/MassGenesis/T10ScaleBearingDepositParent.lean