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

triangular_1

show as:
view Lean formalization →

The lemma establishes that the first triangular number equals 1. Researchers deriving the 45-tick synchronization from the 8-tick cycle closure in Recognition Science cite this base case when summing cumulative phase contributions. The proof is a direct reflexivity reduction once the triangular definition is applied.

claim$T(1) = 1$

background

The PhysicalMotivation module defines the triangular number as $T(n) = n(n+1)/2$, which counts cumulative phase accumulation over a closed cycle of steps. The symbol $T$ stands for the type of natural numbers serving as fundamental periods, per the Breath1024 abbreviation. The module uses this to motivate the number 45 as $T(9)$ arising from the fence-post closure of an 8-tick cycle (8 sections plus one return step) in the ledger model for $D=3$.

proof idea

The proof is a one-line term-mode wrapper that applies reflexivity after the definition of triangular unfolds at argument 1.

why it matters in Recognition Science

This base case anchors the computation of $T(9)=45$ that supplies the physical motivation for 45-tick synchronization in the dimension-forcing chain (T8). It supports sibling results such as triangular_9_is_45 that close the paper gap on cumulative phase. The lemma sits inside the eight-tick octave framework and the ledger neutrality constraint.

scope and limits

formal statement (Lean)

  90@[simp] lemma triangular_1 : triangular 1 = 1 := rfl

proof body

Term-mode proof.

  91
  92/-- T(2) = 3. -/

depends on (3)

Lean names referenced from this declaration's body.