using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter17 { /// /// Example07: Wavelengths on a Phonograph Record /// Consider a 10000 Hz sound recorded on a phonograph /// record which rotates at 33 1/3 rev/min. How far apart are /// the crests of the wave for this sound on the record. /// (A) at the outer edge of the record, 6.0 inches from the center? /// \lambda = 53 \micro m /// (B) at the inner edge, 1.0 inch from the center? /// \lambda = 8.9 \micro m /// public class Example07 { public Example07() { } private string result; public string Result { get{return result;} } public void Compute() { result+="Read the book!"; } } }