using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter41 { /// /// Example01: A Wave Function for a Particle /// Consider a particle whose wave function is given by the /// following expression: /// \Psi(x) = A \exp(-a x^2). /// This wave function is graphed in Figure 41.2. /// (A) /// What is the value of A if this wave function is normalized? /// (B) /// What is the expectation value of x for this particle? /// public class Example01 { public Example01() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }