using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter46 { /// /// Example02: Detecting Proton Decay /// Measurements taken at the Super Kamiokande neutrino /// detection facility indicate that the half-life /// of protons is at least 10^{33} years. /// (A) Estimate how long we would have to watch, /// on average, to see a proton in a glass of water decay. /// (B) The Super Kamiokande neutrino facility contains /// 50000 metric tons of water. Estimate the average time /// the average time interval between detected proton /// decays in this much water if the half-life of /// proton is 10^{33} years. /// public class Example02 { public Example02() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }