Encyclopedia Masses Masses Mass Genesis T10 Recognition Ground State Selection Intended Witness Sati
ARTICLE 4 claims 4 theorems
Masses Mass Genesis T10 Recognition Ground State Selection Intended Witness Sati
A machine-checked theorem shows the intended mass pattern costs zero to recognize, but the law that selects it remains an adopted model, not a derivation.
The intended witness
In the Recognition Science framework, a ledger (a discrete record of recognition events) assigns to every pattern a recognition cost, a real number measuring how expensive it is for reality to register that pattern. The theorem named intended_witness_satisfies_groundStateSelection_locally proves one precise fact: if a pattern is load-normalized to topology, meaning its recognition cost is zero, then that pattern costs no more than any positive rescaling of itself. In plain words, the intended pattern is the cheapest version of itself under scaling.
The theorem is a conditional statement. It takes as input the assumption that a pattern has zero recognition cost, and from that assumption it derives the inequality that every positive rescaling costs at least as much. The proof is short: zero is the global minimum of the cost function on positive reals, so no rescaling can cost less. This is a THEOREM in the framework's machine-checked library of formal theorems, meaning it is proved from the axioms with no gaps.
What the theorem does not claim is more important than what it proves. It does not establish that any pattern actually has zero cost. The existence of such a pattern is supplied by a separate assertion, the foundational model called R4, recognition ground-state selection. That assertion says a realized pattern is the recognition-cost ground state of its scale orbit. It is an adopted model, not a derived result. The theorem merely shows that if the model's premise holds for the intended witness, the model's conclusion follows consistently.
The framework's own documentation is explicit about this boundary. The pointwise equivalence theorem shows that R4, restricted to one pattern, is logically equivalent to the premise the campaign set out to derive: zero recognition cost. Adopting R4 is therefore asserting in general form the thing the campaign wanted to prove. The intended-witness theorem is a consistency check, showing the model accepts its intended physics, not a derivation of the residual from first principles.
What the theorem changes is the epistemic status of the mass law. The framework can point to a machine-checked proof that its intended pattern satisfies the ground-state inequality against every rescaling, and that a decoy pattern with topology ratio four is rejected. But the selection law itself remains a foundational model, recorded as a parametric proposition with no Lean axiom introduced. The reader who wants the residual derived must look to genesis, not to this theorem.
THEOREM intended_witness_satisfies_groundStateSelection_locally · IndisputableMonolith/Masses/MassGenesis/T10RecognitionGroundStateSelection.lean
/-- The intended (load-normalized, ratio-one) pattern has recognition cost
zero and therefore satisfies the R4 inequality against every positive
rescaling, via `Jcost_nonneg`. Non-vacuity: the law accepts the intended
physics. -/
theorem intended_witness_satisfies_groundStateSelection_locally
(ψ : LightPattern (Fin 8))
(hnorm : LoadNormalizedToTopology ψ)
(c : ℝ) (hc : 0 < c) :
loadRecognitionCost ψ ≤ loadRecognitionCost (scalePattern c ψ) := by
have hr : loadTopologyRatio ψ = 1 :=
(loadTopologyRatio_eq_one_iff_loadNormalizedToTopology ψ).2 hnorm
have hcost0 : loadRecognitionCost ψ = 0 := by
unfold loadRecognitionCost
rw [hr, Jcost_unit0]
have hratio_scaled :
loadTopologyRatio (scalePattern c ψ) = c ^ 2 := by
rw [loadTopologyRatio_scalePattern c ψ, hr, mul_one]
have hpos : 0 < loadTopologyRatio (scalePattern c ψ) := by
rw [hratio_scaled]
exact pow_pos hc 2
have hnonneg : 0 ≤ loadRecognitionCost (scalePattern c ψ) := by
unfold loadRecognitionCost
exact Jcost_nonneg hpos
rw [hcost0]
exact hnonneg
THEOREM intended_witness_satisfies_groundStateSelection_locally · IndisputableMonolith/Masses/MassGenesis/T10RecognitionGroundStateSelection.lean
/-- The intended (load-normalized, ratio-one) pattern has recognition cost
zero and therefore satisfies the R4 inequality against every positive
rescaling, via `Jcost_nonneg`. Non-vacuity: the law accepts the intended
physics. -/
theorem intended_witness_satisfies_groundStateSelection_locally
(ψ : LightPattern (Fin 8))
(hnorm : LoadNormalizedToTopology ψ)
(c : ℝ) (hc : 0 < c) :
loadRecognitionCost ψ ≤ loadRecognitionCost (scalePattern c ψ) := by
have hr : loadTopologyRatio ψ = 1 :=
(loadTopologyRatio_eq_one_iff_loadNormalizedToTopology ψ).2 hnorm
have hcost0 : loadRecognitionCost ψ = 0 := by
unfold loadRecognitionCost
rw [hr, Jcost_unit0]
have hratio_scaled :
loadTopologyRatio (scalePattern c ψ) = c ^ 2 := by
rw [loadTopologyRatio_scalePattern c ψ, hr, mul_one]
have hpos : 0 < loadTopologyRatio (scalePattern c ψ) := by
rw [hratio_scaled]
exact pow_pos hc 2
have hnonneg : 0 ≤ loadRecognitionCost (scalePattern c ψ) := by
unfold loadRecognitionCost
exact Jcost_nonneg hpos
rw [hcost0]
exact hnonneg
THEOREM groundStateSelection_pointwise_iff_loadRecognitionCost_zero · IndisputableMonolith/Masses/MassGenesis/T10RecognitionGroundStateSelection.lean
/-- **Honest core.** On a Q3 carrier, the R4 inequality at `ψ` is logically
equivalent to `loadRecognitionCost ψ = 0`. Forward: zero cost is a global
minimum of `Jcost` on the positive reals, so it is at most the cost of any
rescaling. Backward: the scale orbit contains a representative of cost zero
(`exists_scale_loadNormalizedToTopology`), so the inequality forces cost
`≤ 0`, and nonnegativity gives equality. -/
theorem groundStateSelection_pointwise_iff_loadRecognitionCost_zero
{ψ : LightPattern (Fin 8)}
(E : Q3ClosedPatternEvidence ψ) :
(∀ c : ℝ, 0 < c →
loadRecognitionCost ψ ≤ loadRecognitionCost (scalePattern c ψ)) ↔
loadRecognitionCost ψ = 0 := by
constructor
· intro hR4
obtain ⟨c, hc, hground⟩ := exists_scale_loadNormalizedToTopology E
have Escaled : Q3ClosedPatternEvidence (scalePattern c ψ) :=
scalePattern_q3ClosedEvidence c hc E
have hle : loadRecognitionCost ψ ≤
loadRecognitionCost (scalePattern c ψ) :=
hR4 c hc
have hscaled0 : loadRecognitionCost (scalePattern c ψ) = 0 :=
(loadRecognitionCost_eq_zero_iff_loadNormalizedToTopology Escaled).2
hground
have hle0 : loadRecognitionCost ψ ≤ 0 := by
rw [hscaled0] at hle
exact hle
have hnonneg : 0 ≤ loadRecognitionCost ψ :=
loadRecognitionCost_nonneg_of_q3ClosedEvidence E
exact le_antisymm hle0 hnonneg
· intro hcost0 c hc
have Escaled : Q3ClosedPatternEvidence (scalePattern c ψ) :=
scalePattern_q3ClosedEvidence c hc E
have hnonneg : 0 ≤ loadRecognitionCost (scalePattern c ψ) :=
loadRecognitionCost_nonneg_of_q3ClosedEvidence Escaled
rw [hcost0]
exact hnonneg
THEOREM doubled_witness_violates_groundStateSelection · IndisputableMonolith/Masses/MassGenesis/T10RecognitionGroundStateSelection.lean
/-- The concrete ratio-four witness of `exists_loadTopologyRatio_eq_four` is
rejected by R4: rescaling by one half reaches cost zero, while the witness
itself has cost `Jcost 4 ≠ 0` (since `4 ≠ 1`). No realization predicate that
accepts that witness can satisfy `RecognitionGroundStateSelection`. This is
decoy rejection, not a proof that R4 is weaker than cost-zero. -/
theorem doubled_witness_violates_groundStateSelection :
∃ ψ : LightPattern (Fin 8),
loadTopologyRatio ψ = 4 ∧
∀ (Realized : LightPattern (Fin 8) → Prop),
Realized ψ → ¬ RecognitionGroundStateSelection Realized := by
obtain ⟨ψ, hratio, _hnot⟩ := exists_loadTopologyRatio_eq_four
refine ⟨ψ, hratio, ?_⟩
intro Realized hreal hR4
have hle : loadRecognitionCost ψ ≤
loadRecognitionCost (scalePattern (1 / 2 : ℝ) ψ) :=
hR4 ψ hreal (1 / 2) (by norm_num)
have hcostψ : loadRecognitionCost ψ = Jcost 4 := by
unfold loadRecognitionCost
rw [hratio]
have hratio_scaled :
loadTopologyRatio (scalePattern (1 / 2 : ℝ) ψ) = 1 := by
calc
loadTopologyRatio (scalePattern (1 / 2 : ℝ) ψ) =
(1 / 2 : ℝ) ^ 2 * loadTopologyRatio ψ :=
loadTopologyRatio_scalePattern (1 / 2) ψ
_ = (1 / 4 : ℝ) * 4 := by
rw [hratio]
norm_num
_ = 1 := by norm_num
have hcost_scaled :
loadRecognitionCost (scalePattern (1 / 2 : ℝ) ψ) = 0 := by
unfold loadRecognitionCost
rw [hratio_scaled, Jcost_unit0]
have hle' : Jcost 4 ≤ 0 := by
rw [hcostψ, hcost_scaled] at hle
exact hle
have hne : Jcost 4 ≠ 0 := by
intro hzero
have hone : (4 : ℝ) = 1 :=
(Jcost_eq_zero_iff (4 : ℝ) (by norm_num)).1 hzero
norm_num at hone
have hnonneg : 0 ≤ Jcost 4 := Jcost_nonneg (by norm_num : (0 : ℝ) < 4)
exact hne (le_antisymm hle' hnonneg)
What this page does not claim
The theorem does not prove that any pattern actually has zero recognition cost. The theorem does not derive the ground-state selection law R4 from dynamics or first principles. The theorem does not establish that the mass residual is derived rather than adopted.
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/T10RecognitionGroundStateSelection.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 is the genesis mechanism that could derive the ground-state selection law from first principles?
- How does the recognition cost function J(x) = (x + 1/x)/2 - 1 arise from the five forcing conditions?
- What physical content does the load-to-topology ratio carry for realized mass patterns?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM intended_witness_satisfies_groundStateSelection_locally · IndisputableMonolith/Masses/MassGenesis/T10RecognitionGroundStateSelection.lean
/-- The intended (load-normalized, ratio-one) pattern has recognition cost zero and therefore satisfies the R4 inequality against every positive rescaling, via `Jcost_nonneg`. Non-vacuity: the law accepts the intended physics. -/ theorem intended_witness_satisfies_groundStateSelection_locally (ψ : LightPattern (Fin 8)) (hnorm : LoadNormalizedToTopology ψ) (c : ℝ) (hc : 0 < c) : loadRecognitionCost ψ ≤ loadRecognitionCost (scalePattern c ψ) := by have hr : loadTopologyRatio ψ = 1 := (loadTopologyRatio_eq_one_iff_loadNormalizedToTopology ψ).2 hnorm have hcost0 : loadRecognitionCost ψ = 0 := by unfold loadRecognitionCost rw [hr, Jcost_unit0] have hratio_scaled : loadTopologyRatio (scalePattern c ψ) = c ^ 2 := by rw [loadTopologyRatio_scalePattern c ψ, hr, mul_one] have hpos : 0 < loadTopologyRatio (scalePattern c ψ) := by rw [hratio_scaled] exact pow_pos hc 2 have hnonneg : 0 ≤ loadRecognitionCost (scalePattern c ψ) := by unfold loadRecognitionCost exact Jcost_nonneg hpos rw [hcost0] exact hnonnegif a pattern is load-normalized to topology, meaning its recognition cost is zero, then that pattern costs no more than any positive rescaling of itself intended_witness_satisfies_groundStateSelection_locally · IndisputableMonolith/Masses/MassGenesis/T10RecognitionGroundStateSelection.leanTHEOREM intended_witness_satisfies_groundStateSelection_locally · IndisputableMonolith/Masses/MassGenesis/T10RecognitionGroundStateSelection.lean
/-- The intended (load-normalized, ratio-one) pattern has recognition cost zero and therefore satisfies the R4 inequality against every positive rescaling, via `Jcost_nonneg`. Non-vacuity: the law accepts the intended physics. -/ theorem intended_witness_satisfies_groundStateSelection_locally (ψ : LightPattern (Fin 8)) (hnorm : LoadNormalizedToTopology ψ) (c : ℝ) (hc : 0 < c) : loadRecognitionCost ψ ≤ loadRecognitionCost (scalePattern c ψ) := by have hr : loadTopologyRatio ψ = 1 := (loadTopologyRatio_eq_one_iff_loadNormalizedToTopology ψ).2 hnorm have hcost0 : loadRecognitionCost ψ = 0 := by unfold loadRecognitionCost rw [hr, Jcost_unit0] have hratio_scaled : loadTopologyRatio (scalePattern c ψ) = c ^ 2 := by rw [loadTopologyRatio_scalePattern c ψ, hr, mul_one] have hpos : 0 < loadTopologyRatio (scalePattern c ψ) := by rw [hratio_scaled] exact pow_pos hc 2 have hnonneg : 0 ≤ loadRecognitionCost (scalePattern c ψ) := by unfold loadRecognitionCost exact Jcost_nonneg hpos rw [hcost0] exact hnonnegzero is the global minimum of the cost function on positive reals, so no rescaling can cost less intended_witness_satisfies_groundStateSelection_locally · IndisputableMonolith/Masses/MassGenesis/T10RecognitionGroundStateSelection.leanTHEOREM groundStateSelection_pointwise_iff_loadRecognitionCost_zero · IndisputableMonolith/Masses/MassGenesis/T10RecognitionGroundStateSelection.lean
/-- **Honest core.** On a Q3 carrier, the R4 inequality at `ψ` is logically equivalent to `loadRecognitionCost ψ = 0`. Forward: zero cost is a global minimum of `Jcost` on the positive reals, so it is at most the cost of any rescaling. Backward: the scale orbit contains a representative of cost zero (`exists_scale_loadNormalizedToTopology`), so the inequality forces cost `≤ 0`, and nonnegativity gives equality. -/ theorem groundStateSelection_pointwise_iff_loadRecognitionCost_zero {ψ : LightPattern (Fin 8)} (E : Q3ClosedPatternEvidence ψ) : (∀ c : ℝ, 0 < c → loadRecognitionCost ψ ≤ loadRecognitionCost (scalePattern c ψ)) ↔ loadRecognitionCost ψ = 0 := by constructor · intro hR4 obtain ⟨c, hc, hground⟩ := exists_scale_loadNormalizedToTopology E have Escaled : Q3ClosedPatternEvidence (scalePattern c ψ) := scalePattern_q3ClosedEvidence c hc E have hle : loadRecognitionCost ψ ≤ loadRecognitionCost (scalePattern c ψ) := hR4 c hc have hscaled0 : loadRecognitionCost (scalePattern c ψ) = 0 := (loadRecognitionCost_eq_zero_iff_loadNormalizedToTopology Escaled).2 hground have hle0 : loadRecognitionCost ψ ≤ 0 := by rw [hscaled0] at hle exact hle have hnonneg : 0 ≤ loadRecognitionCost ψ := loadRecognitionCost_nonneg_of_q3ClosedEvidence E exact le_antisymm hle0 hnonneg · intro hcost0 c hc have Escaled : Q3ClosedPatternEvidence (scalePattern c ψ) := scalePattern_q3ClosedEvidence c hc E have hnonneg : 0 ≤ loadRecognitionCost (scalePattern c ψ) := loadRecognitionCost_nonneg_of_q3ClosedEvidence Escaled rw [hcost0] exact hnonnegR4, restricted to one pattern, is logically equivalent to the premise the campaign set out to derive: zero recognition cost groundStateSelection_pointwise_iff_loadRecognitionCost_zero · IndisputableMonolith/Masses/MassGenesis/T10RecognitionGroundStateSelection.leanTHEOREM doubled_witness_violates_groundStateSelection · IndisputableMonolith/Masses/MassGenesis/T10RecognitionGroundStateSelection.lean
/-- The concrete ratio-four witness of `exists_loadTopologyRatio_eq_four` is rejected by R4: rescaling by one half reaches cost zero, while the witness itself has cost `Jcost 4 ≠ 0` (since `4 ≠ 1`). No realization predicate that accepts that witness can satisfy `RecognitionGroundStateSelection`. This is decoy rejection, not a proof that R4 is weaker than cost-zero. -/ theorem doubled_witness_violates_groundStateSelection : ∃ ψ : LightPattern (Fin 8), loadTopologyRatio ψ = 4 ∧ ∀ (Realized : LightPattern (Fin 8) → Prop), Realized ψ → ¬ RecognitionGroundStateSelection Realized := by obtain ⟨ψ, hratio, _hnot⟩ := exists_loadTopologyRatio_eq_four refine ⟨ψ, hratio, ?_⟩ intro Realized hreal hR4 have hle : loadRecognitionCost ψ ≤ loadRecognitionCost (scalePattern (1 / 2 : ℝ) ψ) := hR4 ψ hreal (1 / 2) (by norm_num) have hcostψ : loadRecognitionCost ψ = Jcost 4 := by unfold loadRecognitionCost rw [hratio] have hratio_scaled : loadTopologyRatio (scalePattern (1 / 2 : ℝ) ψ) = 1 := by calc loadTopologyRatio (scalePattern (1 / 2 : ℝ) ψ) = (1 / 2 : ℝ) ^ 2 * loadTopologyRatio ψ := loadTopologyRatio_scalePattern (1 / 2) ψ _ = (1 / 4 : ℝ) * 4 := by rw [hratio] norm_num _ = 1 := by norm_num have hcost_scaled : loadRecognitionCost (scalePattern (1 / 2 : ℝ) ψ) = 0 := by unfold loadRecognitionCost rw [hratio_scaled, Jcost_unit0] have hle' : Jcost 4 ≤ 0 := by rw [hcostψ, hcost_scaled] at hle exact hle have hne : Jcost 4 ≠ 0 := by intro hzero have hone : (4 : ℝ) = 1 := (Jcost_eq_zero_iff (4 : ℝ) (by norm_num)).1 hzero norm_num at hone have hnonneg : 0 ≤ Jcost 4 := Jcost_nonneg (by norm_num : (0 : ℝ) < 4) exact hne (le_antisymm hle' hnonneg)a decoy pattern with topology ratio four is rejected doubled_witness_violates_groundStateSelection · IndisputableMonolith/Masses/MassGenesis/T10RecognitionGroundStateSelection.lean