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

K_nonneg

show as:
view Lean formalization →

The lemma establishes non-negativity of the dimensionless bridge ratio K defined as the square root of phi. Researchers deriving stability bounds in the Recognition Science framework cite it when constructing uniform defect estimates. The proof is a one-line term application of le_of_lt to the already-proved positivity of K.

claimLet $K = ϕ^{1/2}$. Then $0 ≤ K$.

background

In the Constants module the dimensionless bridge ratio K is introduced as the non-circular definition $K = ϕ^{1/2}$, where ϕ denotes the golden ratio. The module works in RS-native units with the fundamental time quantum equal to one tick. The companion lemma K_pos already shows strict positivity of K by applying Real.rpow_pos_of_pos to the positivity of ϕ.

proof idea

The proof is a direct term-mode wrapper that applies the standard lemma le_of_lt to the positivity result K_pos.

why it matters in Recognition Science

K_nonneg supplies the non-negativity hypothesis required by the StabilityBounds structure in the DAlembert stability analysis. It completes the basic algebraic properties of the bridge constant K that appears in the phi-ladder construction and the eight-tick octave of the forcing chain. The result closes a minor scaffolding gap between the definition of K and its use in uniform defect bounds.

scope and limits

formal statement (Lean)

 498lemma K_nonneg : 0 ≤ K := le_of_lt K_pos

proof body

Term-mode proof.

 499
 500/-- Alias matching parallel-work naming convention. -/

used by (1)

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

depends on (3)

Lean names referenced from this declaration's body.