using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter25 { /// /// Example05: Electric potential Due to a Uniformly Charged Ring. /// (A) /// Find an expression for the electric potential at /// a point P located on the perpendicular central axis of /// a uniformly charged ring of radius total charge Q. /// V = k_e Q / \sqrt(x^2+a^2) /// (B) /// Find an expression for the magnitude of the electric /// field at point P. /// E_x = k_e Q x / (x^2+a^2)^{3/2} /// public class Example05 { public Example05() { } private string result; public string Result { get{return result;} } public void Compute() { result+="Read the book!"; } } }