using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter06 { /// /// Example09: Fictitious Force Rotating System /// Suppose a block of mass m lying on a horizontal, /// frictionless turntable is connected to a string attached /// to the center of the turntable, as shown in Figure 6.14. /// How would each of the observers write Newton's second law /// for the block? /// public class Example09 { public Example09() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }