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

carrier_pos

show as:
view Lean formalization →

The cortical-column carrier frequency equals 5φ Hz and is strictly positive. Neuromodulation device designers cite this to validate pulse spacing and sensitivity calculations. The proof is a one-line wrapper that unfolds the carrier definition and applies the multiplication-positivity lemma together with the positivity of phi.

claim$0 < 5 phi$, where the left-hand side is the cortical-column carrier frequency in hertz and $phi$ is the golden ratio.

background

The Cortical Neuromodulation Device module derives parameters for transcranial neuromodulation (RS_PAT_025) tuned to cortical-column resonance at 5φ Hz, with optimal pulse spacing τ = 1/(5φ) s. Carrier is defined as carrier := 5 * phi. This definition is shared verbatim with the PhantomCoupledGWAntennaSensitivity module. The module doc states the device operates with a φ-rational pulse schedule and an entrainment-confidence ladder.

proof idea

This is a one-line wrapper proof. It unfolds carrier to expose the product 5 * phi, then invokes mul_pos with a norm_num tactic for the positive constant 5 and the phi_pos lemma for the positivity of the golden ratio.

why it matters in Recognition Science

The result feeds pulseSpacing_pos in the same module via div_pos and multiple sensitivity theorems in PhantomCoupledGWAntennaSensitivity, including sensitivity_at_carrier, sensitivity_pos, and sensitivity_strict_anti. It supports the engineering derivation in the J10 track of Plan v5. The positivity ensures derived quantities remain physically meaningful, consistent with the Recognition Science constants where phi is the self-similar fixed point.

scope and limits

Lean usage

theorem pulseSpacing_pos : 0 < pulseSpacing := div_pos one_pos carrier_pos

formal statement (Lean)

  34theorem carrier_pos : 0 < carrier := by

proof body

One-line wrapper that applies unfold.

  35  unfold carrier; exact mul_pos (by norm_num) phi_pos
  36

used by (13)

From the project-wide theorem graph. These declarations reference this one in their body.

depends on (4)

Lean names referenced from this declaration's body.