using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter09 { /// /// Example02: Breakup of a Kaon at Rest /// One type of nuclear particle, called the neutral kaon (K_0), /// breaks up into a pair of other particles called /// pions (\pi^{+} and \pi^{-}) that are oppositely charged but /// equal in mass, as illustrated in Figure 9.3 /// Assuming the kaon is initially at rest, prove that the /// two pions must have momenta that are equal in magnitued /// and opposite in direction. /// public class Example02 { public Example02() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }