using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter02 { /// /// Example02: The Velocity of Different Objects /// Consider the following one-dimensional motions: /// (A) A ball thrown directly upward rises to a highest /// point and falls back into the thrower's hand. /// (B) A race car starts from rest and speeds up to 100 m/s. /// (C) A spacecraft drifts through space at constant /// velocity. Are there any points in the motion of these /// objects at which the instantaneous velocity has the /// same value as the average velocity over the entire motion? /// If so, identify the point(s). /// public class Example02 { public Example02() { } private string result; public string Result { get{return result;} } public void Compute() { result = "(A) top of the motion"+"\r\n"; result += "(B) some position between 0 and 100m"+"\r\n"; result += "(C) any position"; } } } /* (A) top of the motion (B) some position between 0 and 100m (C) any position */