From: W. Trevor King Date: Wed, 1 Jul 2009 12:49:32 +0000 (-0400) Subject: Added Young and Freedman v12 p21.86 solution X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=ab289a4448c51d6cdb1460dc9cba7c066e1e26c6;p=course.git Added Young and Freedman v12 p21.86 solution --- diff --git a/latex/problems/Young_and_Freedman_12/problem21.86.tex b/latex/problems/Young_and_Freedman_12/problem21.86.tex index 35cbdfc..515955e 100644 --- a/latex/problems/Young_and_Freedman_12/problem21.86.tex +++ b/latex/problems/Young_and_Freedman_12/problem21.86.tex @@ -14,7 +14,39 @@ charge must be given to the drop? \begin{solution} \begin{center} \begin{asy} +import Mechanics; +import ElectroMag; +real u = 1cm; +real L = 3; +real dy = 1; +int n=3; + +Charge q = aCharge((0,0)*u, q=1, L="$q$"); +Vector v = Velocity(q.center, L="$v$"); +Wire top_plate = Wire((0,0.5*dy)*u, (L,.5*dy)*u); +Wire bottom_plate = Wire((0,-.5*dy)*u, (L,-.5*dy)*u); + +path p = q.center; +real x; +real y; +for (int i=0; i<=100; i+= 1) { + x = q.center.x+L*i/n; + y = q.center.y+.4*dy*(x/L)**2; + p = p..((x,y)*u); +} +draw(p, grey); + +Vector E; +for (int i=0; i