using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter11 { /// /// Example04: Two Connected Objects /// A sphere of mass m_1 and a block of mass m_2 are /// connected by a light cord that passes over a pulley, /// as shown in Figure 11.6. The radius of the pulley /// is R, and the mass of the rim is M. The spokes of the /// pulley have negligible mass. The block slides on a /// frictionless, horizontal surface. Find an expression /// for linear acceleration of the two objects, using the /// concepts of angular momentum and torque. /// a = m_1 g / (m_1 + m_2 + M) /// public class Example04 { public Example04() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }