Encyclopedia Acoustics Acoustics Room Acoustics Sabine From Jcost Room Acoustics Cert
ARTICLE 3 claims 1 theorem 1 measured
Acoustics Room Acoustics Sabine From Jcost Room Acoustics Cert
A machine-checked certificate pins the optimal concert-hall reverberation time to the golden ratio, within a narrow band.
The Sabine certificate
In room acoustics, the Sabine formula T_60 = 0.161 V / A predicts how long sound lingers in a room: T_60 is the reverberation time in seconds, V is the room volume in cubic meters, and A is the total absorption area in square meters. The formula, published by Wallace Sabine in the 1890s, is the field's founding law. A room with too little absorption sounds dead, an anechoic chamber; too much absorption for its volume makes speech muddy. The optimum for music sits between these extremes.
The Recognition Science framework models this balance with its cost function, a measure of recognition effort on a discrete record of events. The framework's library, a machine-checked collection of formal theorems, defines a dimensionless ratio r := observed_absorption / critical_damping. It then derives a golden-section threshold J(φ) that marks the transition from music-hall resonance to lecture-room intelligibility. The framework's definition optimalT60 sets the optimal reverberation time to φ, the golden ratio ≈ 1.618 seconds.
What the certificate RoomAcousticsCert establishes is narrow and precise. It is a structure containing two proved facts: the optimal time lies in the band 1.61 < T_60 < 1.62 seconds, and it exceeds 1 second. The proof of the band uses the framework's constants, not any measurement. The certificate's second field, over_damped, records that φ > 1, so the optimal time is above one second. These are the only claims the structure makes.
The framework then compares this derived value against empirical surveys. The docstring cites Beranek's measurements: Carnegie Hall at 1.89 seconds and Vienna's Musikverein at 2.05 seconds. Both fall in the interval (φ, φ²) = (1.618, 2.618). The match is suggestive, but it is not part of the certificate. The certificate itself proves nothing about real halls; it only states the two inequalities about the number φ. The empirical agreement is a separate observation, not a theorem.
What the certificate does not claim matters. It does not prove that any real concert hall has a reverberation time of 1.618 seconds. It does not derive the Sabine formula from first principles; that formula is taken as the classical starting point. It does not predict the measured values at Carnegie Hall or Vienna; those are cited as external data. The certificate is a formal object: it packages two arithmetic facts about the golden ratio under the name of room acoustics. Its value lies in showing how the framework's cost function connects to a classical engineering law, not in replacing measurements.
MODEL optimalT60 · IndisputableMonolith/Acoustics/RoomAcousticsSabineFromJCost.lean
/-- Optimal reverberation time = φ (RS-native). -/
def optimalT60 : ℝ := phi
THEOREM RoomAcousticsCert · optimalT60_band · over_damped_below_one · IndisputableMonolith/Acoustics/RoomAcousticsSabineFromJCost.lean
structure RoomAcousticsCert where
optimal_band : 1.61 < optimalT60 ∧ optimalT60 < 1.62
over_damped : optimalT60 > 1
/-- Optimal T60 is in the empirical Beranek band for concert halls. -/
theorem optimalT60_band : 1.61 < optimalT60 ∧ optimalT60 < 1.62 := by
unfold optimalT60
exact ⟨Constants.phi_gt_onePointSixOne, Constants.phi_lt_onePointSixTwo⟩
/-- Over-damped bound: T60 > 1 (φ > 1). -/
theorem over_damped_below_one : optimalT60 > 1 := by
unfold optimalT60
have := Constants.phi_gt_onePointFive
linarith
MEASURED optimalT60_band · IndisputableMonolith/Acoustics/RoomAcousticsSabineFromJCost.lean
/-- Optimal T60 is in the empirical Beranek band for concert halls. -/
theorem optimalT60_band : 1.61 < optimalT60 ∧ optimalT60 < 1.62 := by
unfold optimalT60
exact ⟨Constants.phi_gt_onePointSixOne, Constants.phi_lt_onePointSixTwo⟩
What this page does not claim
The certificate does not prove any real concert hall has a reverberation time of 1.618 seconds. The certificate does not derive the Sabine formula from first principles. The empirical agreement with Carnegie Hall and Vienna is cited, not proved by the certificate.
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/RoomAcousticsSabineFromJCost.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:
- How does the framework derive the golden ratio as the optimal absorption threshold from its cost function?
- What empirical evidence supports the claim that concert halls cluster in the (φ, φ²) interval?
- Does the Sabine formula itself emerge from the framework's principles, or is it assumed as input?
- What would falsify the framework's prediction of a 1.618-second optimal reverberation time?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
MODEL optimalT60 · IndisputableMonolith/Acoustics/RoomAcousticsSabineFromJCost.lean
/-- Optimal reverberation time = φ (RS-native). -/ def optimalT60 : ℝ := phiThe framework's definition optimalT60 sets the optimal reverberation time to φ, the golden ratio ≈ 1.618 seconds. optimalT60 · IndisputableMonolith/Acoustics/RoomAcousticsSabineFromJCost.leanTHEOREM RoomAcousticsCert · optimalT60_band · over_damped_below_one · IndisputableMonolith/Acoustics/RoomAcousticsSabineFromJCost.lean
structure RoomAcousticsCert where optimal_band : 1.61 < optimalT60 ∧ optimalT60 < 1.62 over_damped : optimalT60 > 1/-- Optimal T60 is in the empirical Beranek band for concert halls. -/ theorem optimalT60_band : 1.61 < optimalT60 ∧ optimalT60 < 1.62 := by unfold optimalT60 exact ⟨Constants.phi_gt_onePointSixOne, Constants.phi_lt_onePointSixTwo⟩/-- Over-damped bound: T60 > 1 (φ > 1). -/ theorem over_damped_below_one : optimalT60 > 1 := by unfold optimalT60 have := Constants.phi_gt_onePointFive linarithIt is a structure containing two proved facts: the optimal time lies in the band 1.61 < T_60 < 1.62 seconds, and it exceeds 1 second. RoomAcousticsCert · optimalT60_band · over_damped_below_one · IndisputableMonolith/Acoustics/RoomAcousticsSabineFromJCost.leanMEASURED optimalT60_band · IndisputableMonolith/Acoustics/RoomAcousticsSabineFromJCost.lean
/-- Optimal T60 is in the empirical Beranek band for concert halls. -/ theorem optimalT60_band : 1.61 < optimalT60 ∧ optimalT60 < 1.62 := by unfold optimalT60 exact ⟨Constants.phi_gt_onePointSixOne, Constants.phi_lt_onePointSixTwo⟩The docstring cites Beranek's measurements: Carnegie Hall at 1.89 seconds and Vienna's Musikverein at 2.05 seconds. optimalT60_band · IndisputableMonolith/Acoustics/RoomAcousticsSabineFromJCost.lean