Encyclopedia Acoustics Acoustics Middle C Frequency Rs Middle Cfreq Rs
ARTICLE 4 claims 4 theorems
Acoustics Middle C Frequency Rs Middle Cfreq Rs
A machine-checked file about middle C proves only general facts about a cost function, not that the note's frequency is 261.63 Hz.
Middle C in the framework
Middle C is the musical note that most piano tuners use as a reference, and its standard frequency is 261.63 hertz. The number comes from a convention: the A above middle C is set to 440 hertz, and the twelve notes of the octave are spaced by equal ratios, so middle C lands at 261.63 Hz. That value is a measurement standard, not a law of nature.
In Recognition Science, a ledger (a discrete record of events) assigns a cost to comparing two quantities, and the framework's central result forces that cost to take one specific form. The declaration MiddleCFreqRS in the framework's machine-checked library of formal theorems packages three general facts about that cost function. It proves that the cost is zero when the two quantities are equal, that the cost is never negative for positive inputs, and that a certain threshold involving the golden ratio is positive. These are properties of the cost function itself, stated for any two real numbers.
The file's research note records an intended match: phi to the 14th power times 0.31 gives about 261.3 hertz, close to middle C. The note calls this a match, and the arithmetic is correct. But the note is not a theorem. The formal code defines the cost using a ratio of two numbers m and e without ever saying what m and e mean for a musical note. Nothing in the Lean declarations connects the cost function to sound, to frequencies, or to the number 261.63. The structure MiddleCFreqRS is inhabited, meaning the three general facts are consistent, but it says nothing about acoustics.
What the declaration does establish is a template. It shows that if you want to apply the framework's cost to middle C, you would need to define m and e in acoustical terms first. The current file leaves that step undone. The general cost facts are proved; the musical application is not. A reader should take the file as a placeholder with a research aspiration, not as a derivation of the note's frequency.
THEOREM domainCost_at_eq · IndisputableMonolith/Acoustics/Middle_C_Frequency_RS.lean
theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by
unfold domainCost; rw [div_self h]; exact Jcost_unit0
THEOREM domainCost_nonneg · IndisputableMonolith/Acoustics/Middle_C_Frequency_RS.lean
theorem domainCost_nonneg (m e : ℝ) (hm : 0 < m) (he : 0 < e) : 0 ≤ domainCost m e := by
unfold domainCost; exact Jcost_nonneg (div_pos hm he)
THEOREM cert_inhabited · IndisputableMonolith/Acoustics/Middle_C_Frequency_RS.lean
theorem cert_inhabited : Nonempty MiddleCFreqRS := ⟨cert⟩
THEOREM domainCost · IndisputableMonolith/Acoustics/Middle_C_Frequency_RS.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
What this page does not claim
The file does not prove that middle C is 261.63 hertz. The file does not define what m and e mean for a musical note. The file does not derive the golden ratio from acoustics.
Verify this page
Every tagged claim above names its theorem. To check one yourself rather than trust this page, elaborate the source module with Lean 4 and audit its axiom basis:
$ lake env lean IndisputableMonolith/Acoustics/Middle_C_Frequency_RS.lean
expected axiom basis: [propext, Classical.choice, Quot.sound] (the Lean kernel's standard three; no RS-specific axioms)
A page whose claims cannot be reproduced this way does not ship. In production, every anchor links to the exact declaration in the public source release, and this block carries the build receipt for the page itself.
Derived articles
This page is generated by a question-recursion engine: the questions its answers raise become the next pages. The current agenda, with open targets marked red:
- What definition of m and e in acoustical terms would make the cost function apply to middle C?
- Does the framework's cost function have any established connection to physical frequency standards?
- What would a formal derivation of 261.63 Hz from the framework require beyond the current template?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM domainCost_at_eq · IndisputableMonolith/Acoustics/Middle_C_Frequency_RS.lean
theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by unfold domainCost; rw [div_self h]; exact Jcost_unit0The declaration proves that the cost is zero when the two quantities are equal. domainCost_at_eq · IndisputableMonolith/Acoustics/Middle_C_Frequency_RS.leanTHEOREM domainCost_nonneg · IndisputableMonolith/Acoustics/Middle_C_Frequency_RS.lean
theorem domainCost_nonneg (m e : ℝ) (hm : 0 < m) (he : 0 < e) : 0 ≤ domainCost m e := by unfold domainCost; exact Jcost_nonneg (div_pos hm he)The declaration proves that the cost is never negative for positive inputs. domainCost_nonneg · IndisputableMonolith/Acoustics/Middle_C_Frequency_RS.leanTHEOREM cert_inhabited · IndisputableMonolith/Acoustics/Middle_C_Frequency_RS.lean
theorem cert_inhabited : Nonempty MiddleCFreqRS := ⟨cert⟩The structure MiddleCFreqRS is inhabited, meaning the three general facts are consistent. cert_inhabited · IndisputableMonolith/Acoustics/Middle_C_Frequency_RS.leanTHEOREM domainCost · IndisputableMonolith/Acoustics/Middle_C_Frequency_RS.lean
def domainCost (m e : ℝ) : ℝ := Jcost (m / e)Nothing in the Lean declarations connects the cost function to sound, to frequencies, or to the number 261.63. domainCost · IndisputableMonolith/Acoustics/Middle_C_Frequency_RS.lean