using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter41 { /// /// Example05: The Expectation values for the Particle in a Box /// A particle of mass m is confined to a one-dimensional /// box between x = 0 and x = L. Find the expectation value /// of the position x of the particle in the ground state. /// public class Example05 { public Example05() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }