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

minimal_temporal_resolution

show as:
view Lean formalization →

The theorem asserts that whenever one ledger snapshot precedes another under the before relation, their tick indices differ by at least one. Researchers formalizing discrete time in Recognition Science cite it to enforce quantization with no sub-tick events. The proof is a one-line wrapper that unfolds the before predicate and applies omega to the resulting integer inequality.

claimFor all ledger snapshots $s_1, s_2$, if the tick index of $s_1$ is strictly smaller than the tick index of $s_2$, then $1$ is at most the difference of those indices.

background

LedgerSnapshot is a structure pairing a Tick with a nonnegative real defect value; it records ledger state at discrete instants rather than along a continuous parameter. The before relation on snapshots is defined by strict inequality of their tick indices. The module sets time equal to the ledger tick counter with no background continuum, and the eight-tick epoch (period $2^3$) as the minimal complete update cycle. Upstream, the tick constant supplies the fundamental RS time quantum of value 1, while defect monotonicity supplies the direction for the arrow of time.

proof idea

The term proof introduces the two snapshots and the before hypothesis, unfolds before to expose the strict index inequality, and invokes omega to obtain the required lower bound of 1 on the difference.

why it matters in Recognition Science

The result fills the F-004 claim that time is discrete tick count with no sub-tick dynamics. It supports the arrow-of-time construction via irreversible defect decrease within an epoch and aligns with the eight-tick octave forced by T7. No downstream theorems yet reference it, but it closes the quantization step required for the present-past-future distinction in the ledger.

scope and limits

formal statement (Lean)

 156theorem minimal_temporal_resolution :
 157    ∀ (s₁ s₂ : LedgerSnapshot),
 158    before s₁ s₂ → 1 ≤ s₂.tick.index - s₁.tick.index := by

proof body

Term-mode proof.

 159  intro s₁ s₂ h
 160  unfold before at h
 161  omega
 162
 163/-! ## Summary Certificate -/
 164
 165/-- **F-004/F-006 Certificate**: Time emergence and arrow of time.
 166    1. Time = tick count (discrete, no background)
 167    2. Arrow = defect decrease direction
 168    3. Recognition is irreversible
 169    4. 8-tick epoch is the minimal complete cycle -/

depends on (20)

Lean names referenced from this declaration's body.