using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter06 { /// /// Example08: Fictitious Forces In Linear Motion /// A small sphere of mass m is hung by cord from the /// ceiling of a boxcar that is accelerating to the right, /// as shown in Figure 6.13. The noninertial observer /// in Figure 6.13b claims that a force, /// which we know to be fictitious, must act in order to /// cause the observed deviation of the cord from the vertical. /// How is the magnitude of this force related to the /// acceleration of the boxcar measured by the inertial /// observer in Figure 6.13a? /// public class Example08 { public Example08() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }