using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter02 { /// /// Example04: Graphical Relationships between x, v, and a /// The position of an object moving along the x axis varies /// with time as in Figure 2.7a. Graph the velocity versus /// time and the acceleration versus time for the object. /// public class Example04 { public Example04() { } private string result; public string Result { get{return result;} } public void Compute() { result = "v is a derivative of x with respect to t"+"\r\n"; result += "a is a derivative of v with respect to t"+"\r\n"; } } } /* v is a derivative of x with respect to t a is a derivative of v with respect to t */