using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter43 { /// /// Example03: Comparing Figures 43.8 and 43.9 /// In Figure 43.8a, the transitions indicated correspond /// to spectral lines that are equally spaced, as shown in /// Figure 43.8b. The actual spectrum in Figure 43.9, however, /// shows lines that move closer together as the frequency /// increases. Why does the spacing of the actual spectral /// lines differ from the diagram in Figure 43.8? /// public class Example03 { public Example03() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }