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

harmonic2_eq

show as:
view Lean formalization →

Recognition Science predicts the second Schumann harmonic frequency as 7φ + 3 in native units. Researchers modeling Earth cavity resonances or EEG band alignments cite this to confirm the zero-parameter formula matches the 14.3 Hz measurement. The proof is a one-line wrapper that unfolds the schumannRS definition and reduces the resulting arithmetic expression.

claimThe Recognition Science prediction for the second Schumann resonance frequency satisfies $f(2) = 7φ + 3$, where $φ = (1 + √5)/2$ is the golden ratio forced by self-similarity.

background

The EarthBrainResonance module constructs Schumann harmonics from RS-forced constants only. The definition schumannRS(n) := (4n − 1)φ + 3 encodes the structural decomposition f(n) = D φ² + (n−1)(D+1)φ with D = 3 the spatial dimension and φ the golden ratio. This rests on the upstream schumannRS definition which supplies the zero-parameter formula valid for n ≥ 1.

proof idea

The proof is a one-line wrapper. It unfolds schumannRS, applies push_cast to convert the natural number argument, and invokes the ring tactic to confirm the identity (4*2 − 1)φ + 3 = 7φ + 3.

why it matters in Recognition Science

This supplies the explicit value for the second harmonic that downstream results harmonic2_bounds and harmonic2_matches invoke to place 7φ + 3 inside (14.326, 14.333) and within 0.04 Hz of the measured 14.3 Hz. It instantiates the general formula at n = 2 inside the Earth-Brain Resonance section, connecting the eight-tick octave (T7) and D = 3 (T8) to observed EEG boundaries.

scope and limits

Lean usage

rw [harmonic2_eq]

formal statement (Lean)

 113theorem harmonic2_eq : schumannRS 2 = 7 * phi + 3 := by

proof body

One-line wrapper that applies unfold.

 114  unfold schumannRS; push_cast; ring
 115

used by (2)

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

depends on (1)

Lean names referenced from this declaration's body.