pith. machine review for the scientific record. sign in
lemma proved term proof high

Jcost_phi_pos

show as:
view Lean formalization →

J(φ) > 0 holds for the golden ratio φ. Researchers deriving the mass gap or uniform failure floor in Recognition Science cite this result. The proof is a one-line term application of the general J-cost positivity lemma at arguments other than one.

claim$0 < J(φ)$ where $J(x) = (x-1)^2 / x$ for $x > 0$ and $φ$ is the golden ratio satisfying $φ > 1$.

background

The J-cost function quantifies recognition defect for a scaling factor x. From the Cost module, J(x) > 0 holds exactly when x > 0 and x ≠ 1, via the identity J(x) = (x-1)^2 / x together with positivity of squares for nonzero arguments. The golden ratio φ satisfies φ > 1 (hence φ ≠ 1) by the phi_pos and phi_ne_one lemmas. This lemma lives in the Constants module, which collects RS-native constants with the fundamental time quantum set to one tick. It depends on the general Jcost_pos_of_ne_one result.

proof idea

The proof is a term-mode one-line wrapper that applies Jcost_pos_of_ne_one directly to phi using phi_pos and phi_ne_one. No additional tactics appear.

why it matters in Recognition Science

This lemma supplies the fundamental gap inequality J(φ) > 0. It is invoked in UniformFailureFloor to prove KTheta_pos and in YangMillsMassGap as the base gap inequality. It closes the positivity step for the self-similar fixed point φ in the T5-T6 forcing chain of the Recognition framework.

scope and limits

Lean usage

  unfold KTheta; exact div_pos Jcost_phi_pos (by norm_num : (0 : ℝ) < 45)

formal statement (Lean)

 517lemma Jcost_phi_pos : 0 < Cost.Jcost phi :=

proof body

Term-mode proof.

 518  Cost.Jcost_pos_of_ne_one _ phi_pos phi_ne_one
 519
 520end Constants
 521end IndisputableMonolith

used by (3)

From the project-wide theorem graph. These declarations reference this one in their body.

depends on (9)

Lean names referenced from this declaration's body.