using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter44 { /// /// Example09: The Age of Ice Man /// In 1991, a German tourist discovered the well-preserved /// remains of a man, now called the "Ice Man", trapped in /// a glacier in the Italian Alps. (See the chapter opening /// photograph.) Radioactive dating with 14C revealed that this /// person was alive about 5300 years ago. Why did scientists /// date a sample of the Ice Man using 14C rather than 11C, which /// is a beta emitter having a half-life of 20.4 min? /// public class Example09 { public Example09() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }