Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

You may be better off with a numerical solution.

var('t x y')
F=[2*(-x)/sqrt(x^2+(t-y)^2),2*(t-y)/sqrt(x^2+(t-y)^2)]
ics=[3,10]
times=srange(0,7,0.5)
soln=desolve_odeint(F,ics,times,[x,y])
line(soln)