pith. machine review for the scientific record.
sign in
theorem

phase_periodic

proved
show as:
module
IndisputableMonolith.Foundation.EightTick
domain
Foundation
line
32 · github
papers citing
1 paper (below)

plain-language theorem explainer

The phase function on the 8-tick cycle satisfies phase(0) + 2π = 2π. Researchers modeling discrete time in quantum mechanics or spin-statistics derivations cite this base case to anchor periodicity of the fundamental clock. The proof is a one-line term reduction that unfolds the definition and simplifies the resulting arithmetic.

Claim. $φ(0) + 2π = 2π$, where $φ(k) = kπ/4$ for $k$ in the finite set of eight ticks.

background

The EightTick module defines the fundamental discrete clock of Recognition Science as an 8-tick cycle whose phases are 0, π/4, π/2, 3π/4, π, 5π/4, 3π/2, 7π/4. The phase function is given explicitly by phase(k) = (k : ℝ) * Real.pi / 4 for k : Fin 8. This structure supplies the discrete time underlying spin-statistics (even/odd ticks map to bosons/fermions), CPT symmetry, and gauge groups.

proof idea

The term-mode proof unfolds the phase definition to obtain 0 * π / 4 + 2 * Real.pi = 2 * Real.pi, then applies simp to reduce the arithmetic identity.

why it matters

This supplies the base case for periodicity in the 8-tick octave (T7 of the forcing chain), which supports the discrete clock used for spin-statistics and CPT. It sits alongside sibling results such as phase_eighth_power_is_one and eight_tick_generates_Z8 that build the Z8 structure from the same phase map.

Switch to Lean above to see the machine-checked source, dependencies, and usage graph.