using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter06 { /// /// Example14: An Object Falling in a Vacuum - Analytical Method /// Consider a particle falling in a vacuum under the influence /// of the gravitational force, as shown in Figure 6.19. /// Use the analytical method to find the acceleration, /// velocity, and position of the particle. /// public class Example14 { public Example14() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }