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

twistedCostSpectrumValue_zero

show as:
view Lean formalization →

The theorem shows that the twisted cost spectrum value vanishes at zero for any real-valued function chi from naturals to reals. Researchers extending prime cost spectra to twisted arithmetic functions within Recognition Science would cite this as the zero base case. The proof is a direct unfolding of the definition followed by simplification with the empty prime factorization of zero.

claimFor any function $chi: ℕ → ℝ$, the twisted cost spectrum value $c_chi(0) = 0$, where $c_chi(n) := ∑_p v_p(n) · J(p) · chi(p)$ and the sum runs over primes with multiplicity from the factorization of $n$.

background

This module generalizes the prime cost spectrum to a character-twisted setting. The twisted cost spectrum value is defined as the sum over primes of the valuation times J(p) times chi(p), where J is the uniqueness function from the forcing chain. Upstream, cost is the derived cost of a multiplicative recognizer's comparator on positive ratios, and separately the J-cost of a recognition event.

proof idea

The proof unfolds the definition of the twisted cost spectrum value and applies simplification using the fact that the prime factorization of zero is empty, which makes the sum identically zero.

why it matters in Recognition Science

This supplies the zero base case for the twisted cost spectrum and its elementary properties such as complete additivity. It supports the module's goal of relating the twisted costs to L-functions in the Recognition Science framework, consistent with the J-uniqueness step and the eight-tick octave structure. No downstream applications are recorded yet.

scope and limits

formal statement (Lean)

  54@[simp]
  55theorem twistedCostSpectrumValue_zero (chi : ℕ → ℝ) :
  56    twistedCostSpectrumValue chi 0 = 0 := by

proof body

Term-mode proof.

  57  unfold twistedCostSpectrumValue
  58  simp [Nat.factorization_zero]
  59
  60/-- For a prime `p`, the twisted cost is `J(p) · chi(p)`. -/

depends on (7)

Lean names referenced from this declaration's body.