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

sum8

definition
show as:
view math explainer →
module
IndisputableMonolith.Spectra.SpectralLadder
domain
Spectra
line
30 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.Spectra.SpectralLadder on GitHub at line 30.

browse module

All declarations in this module, on Recognition.

explainer page

Tracked in the explainer inventory; generation is lazy so crawlers do not trigger LLM jobs.

open explainer

depends on

used by

formal source

  27  f0 * railFactor n
  28
  29/-- Sliding sum over 8 samples (coherence/neutrality diagnostic). -/
  30def sum8 (x : ℕ → ℝ) (t0 : ℕ) : ℝ :=
  31  (Finset.range 8).sum (fun k => x (t0 + k))
  32
  33def eightGateCoherent (x : ℕ → ℝ) (t0 : ℕ) : Prop :=
  34  sum8 x t0 = 0
  35
  36end
  37
  38end SpectralLadder
  39end Spectra
  40end IndisputableMonolith