Encyclopedia Masses Masses Mass Genesis T10 Deposit Location Organ Sqrt Response Not In Qphi Odd Or
ARTICLE 3 claims 3 theorems
Masses Mass Genesis T10 Deposit Location Organ Sqrt Response Not In Qphi Odd Or
A machine-checked theorem rules out an entire family of candidate locations for particle mass deposits, narrowing the search for where they can land.
The square-root escape
The golden ratio φ, roughly 1.618, is the number that solves r² = r + 1. Its powers have a special status in the Recognition Science framework: numbers of the form p + qφ, with p and q rational, form a field called Q(φ). A number that lies in this field is said to be in Q(φ). The declaration sqrt_response_not_inQPhi_odd_or_anchor is a proved theorem about certain square roots: it establishes that for every odd whole number k, and for the two special cases k = 0 and k = 1, the square root of (1 + φ^k) / φ^k is not in Q(φ).
The proof is a short chain of existing results. For odd k, the key step is that a certain constant, built from the Fibonacci numbers, must be non-positive, which forces the square root outside the field. For k = 0 the expression reduces to the square root of 2, and for k = 1 it reduces to the square root of φ; both are already known to lie outside Q(φ). The theorem simply collects these three cases into one statement, so a single check covers every odd rung plus the two anchors.
In the framework's account of particle masses, this result matters because of what it does not do. The framework models masses as deposits landing on rungs of a ladder, and it asks what mechanism, or organ, forces deposits to land where they do. The square-root escape is uniform: every odd rung and both anchors fail to be in Q(φ) in exactly the same way. That uniformity means field membership cannot select one rung over another. The theorem therefore contributes to a larger wall: at the cascade-spectral tier, where only deposit counts are visible, no recognition-native organ forces a viable nonempty deposit location. The missing piece is a scale-bearing parent outside cascade-spectral data.
The theorem does not claim anything about even k beyond the anchors. Even values of k remain an open residual, recorded as the next named sub-tier to close. It also does not claim that the square roots are irrational in any stronger sense; it only says they fall outside the specific field Q(φ). And it does not, by itself, locate any deposit; it rules out a family of candidates and leaves the positive selection problem open.
THEOREM sqrt_response_not_inQPhi_odd_or_anchor · IndisputableMonolith/Masses/MassGenesis/T10DepositLocationOrgan.lean
/-- **Sqrt escape on every odd rung and the two banked anchors.** -/
theorem sqrt_response_not_inQPhi_odd_or_anchor (k : ℕ)
(h : Odd k ∨ k = 0 ∨ k = 1) :
¬ InQPhi (Real.sqrt ((1 + phi ^ k) / phi ^ k)) := by
rcases h with hodd | rfl | rfl
· exact sqrt_response_not_inQPhi_odd hodd
· exact sqrt_response_not_inQPhi_zero
· exact sqrt_response_not_inQPhi_one
THEOREM sqrt_escape_uniform_on_closed_set · IndisputableMonolith/Masses/MassGenesis/T10DepositLocationOrgan.lean
/-- **Uniformity on the closed escape set:** every odd rung and both anchors
escape `Q(φ)` alike, so field membership cannot select among them. -/
theorem sqrt_escape_uniform_on_closed_set {k₁ k₂ : ℕ}
(h₁ : Odd k₁ ∨ k₁ = 0 ∨ k₁ = 1)
(h₂ : Odd k₂ ∨ k₂ = 0 ∨ k₂ = 1) :
(¬ InQPhi (Real.sqrt ((1 + phi ^ k₁) / phi ^ k₁))) ∧
(¬ InQPhi (Real.sqrt ((1 + phi ^ k₂) / phi ^ k₂))) :=
⟨sqrt_response_not_inQPhi_odd_or_anchor k₁ h₁,
sqrt_response_not_inQPhi_odd_or_anchor k₂ h₂⟩
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 says nothing about even k beyond k = 0 and k = 1; those cases remain open. The result does not locate any deposit; it only rules out a family of candidates. The theorem does not assert the square roots are irrational in any field other than Q(φ).
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:
- What scale-bearing parent outside cascade-spectral data could force a deposit location?
- For which even k does the square root of (1 + φ^k) / φ^k lie in Q(φ)?
- How do deposit counts relate to the cascade eigenvalues they determine?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM sqrt_response_not_inQPhi_odd_or_anchor · IndisputableMonolith/Masses/MassGenesis/T10DepositLocationOrgan.lean
/-- **Sqrt escape on every odd rung and the two banked anchors.** -/ theorem sqrt_response_not_inQPhi_odd_or_anchor (k : ℕ) (h : Odd k ∨ k = 0 ∨ k = 1) : ¬ InQPhi (Real.sqrt ((1 + phi ^ k) / phi ^ k)) := by rcases h with hodd | rfl | rfl · exact sqrt_response_not_inQPhi_odd hodd · exact sqrt_response_not_inQPhi_zero · exact sqrt_response_not_inQPhi_oneFor every odd whole number k, and for k = 0 and k = 1, the square root of (1 + φ^k) / φ^k is not in Q(φ). sqrt_response_not_inQPhi_odd_or_anchor · IndisputableMonolith/Masses/MassGenesis/T10DepositLocationOrgan.leanTHEOREM sqrt_escape_uniform_on_closed_set · IndisputableMonolith/Masses/MassGenesis/T10DepositLocationOrgan.lean
/-- **Uniformity on the closed escape set:** every odd rung and both anchors escape `Q(φ)` alike, so field membership cannot select among them. -/ theorem sqrt_escape_uniform_on_closed_set {k₁ k₂ : ℕ} (h₁ : Odd k₁ ∨ k₁ = 0 ∨ k₁ = 1) (h₂ : Odd k₂ ∨ k₂ = 0 ∨ k₂ = 1) : (¬ InQPhi (Real.sqrt ((1 + phi ^ k₁) / phi ^ k₁))) ∧ (¬ InQPhi (Real.sqrt ((1 + phi ^ k₂) / phi ^ k₂))) := ⟨sqrt_response_not_inQPhi_odd_or_anchor k₁ h₁, sqrt_response_not_inQPhi_odd_or_anchor k₂ h₂⟩The square-root escape is uniform on every odd rung and both anchors, so field membership cannot select among those rungs. sqrt_escape_uniform_on_closed_set · IndisputableMonolith/Masses/MassGenesis/T10DepositLocationOrgan.leanTHEOREM 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 hkAt the cascade-spectral tier, no recognition-native organ forces a viable nonempty deposit location. deposit_location_organ_wall · IndisputableMonolith/Masses/MassGenesis/T10DepositLocationOrgan.lean