using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter22 { /// /// Example10: Let's Play Marbles! /// Suppose you have a bag of 100 marbles. Fifty of the marbles /// are red, and 50 are green. You are allowed to draw four marbles /// from the bag according to the following rules. Draw one /// marble, record its color, and return it to the bag. /// Shake the bag and then draw another marble. Continue this /// process until you have drawn and returned four marbles. /// What are the possible macrostates for this set of events? /// What is the most likely macrostate? What is the least likely /// macrostate? /// public class Example10 { public Example10() { } private string result; public string Result { get{return result;} } public void Compute() { result+="Read the book!"; } } }