using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter35 { /// /// Example07: Measuring n Using a Prism /// Although we do not prove it here, the minimum angle of /// deviation \delta_{min} for a prism occurs when /// the angle of incidence \theta_1 /// is such that the refracted ray inside the prism makes the /// same angle with the normal to the two prism faces, as shown /// in Figure 35.25. Obtain an expression for the index of /// refraction of the prism material. /// public class Example07 { public Example07() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }