using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter21 { /// /// Example05: A System of Nine Particles /// Nine particles have speeds of 5.0, 8.0, /// 12.0, 12.0, 12.0, 14.0, 14.0, 17.0, and 20.0 m/s. /// (A) Find the particles' average speed. /// v = 12.7 m/s /// (B) What is the rms speed of the particles? /// v_{rms} = 13.3 m/s /// (C) What is the most probable speed of the particles? /// 12.0 m/s /// public class Example05 { public Example05() { } private string result; public string Result { get{return result;} } public void Compute() { result+="Read the book!"; } } }