using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter39 { /// /// Example13: Mass Change in a Radioactive Decay /// The 216Po nucleus is unstable and exhibits radioactivity /// (Chapter 44). It decays to 212Pb by emitting an alpha /// particle, which is a helium nucleus, 4He. Find /// (A) /// the mass change in this decay and /// (B) /// the energy that this represents. /// public class Example13 { public Example13() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }