using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter18 { /// /// Example03: Give Me a C Note! /// Middle C on a piano has a fundamental frequency of 262 Hz, /// and the first A above middle C has a fundamental frequency /// of 440 Hz /// (A) Calculate the frequencies of the next two harmonics of /// the C string. /// f_2 = 524 Hz /// f_3 = 786 Hz /// (B) If the A and C strings have the same linear mass density /// \mu at their fundamental frequencies gives /// T_A / T_C = 2.82 /// public class Example03 { public Example03() { } private string result; public string Result { get{return result;} } public void Compute() { result+="Read the book!"; } } }