| 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)
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.