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

frequencyOnRail

definition
show as:
view math explainer →
module
IndisputableMonolith.Spectra.SpectralLadder
domain
Spectra
line
26 · 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 26.

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

formal source

  23def railFactor (n : ℤ) : ℝ :=
  24  Real.rpow IndisputableMonolith.Constants.phi ((2 : ℝ) * (n : ℝ))
  25
  26def frequencyOnRail (f0 : ℝ) (n : ℤ) : ℝ :=
  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