I've been thinking about the following problem for some time now and was wondering if anyone could shed any light on it.
At time $t = 0$, turtle
Asits at $(0,0)$ and turtleBsits at $(d,0)$.Bbegins moving straight upwards perpendicular to the $x$-axis with some constant velocity $v$. Simultaneously, theAturtle begins moving with the same constant velocity in such a way that its nose is always pointed atB. What is the distance between these turtles as $t \rightarrow \infty$?
Edit
So basically I've arrived at a nasty system of differential equations. Here's my reasoning:
We know that turtle A will always point towards turtle B, so if $(x(t),y(t))$ is the curve traced out by A, then we can determine $dy/dx = \dot{y}/\dot{x}$ at each point:
$\dot{y}/\dot{x} = (vt - y)/(d - x).$
The fact that A has a velocity $v$ gives rise to a second equation:
$\dot{x}^2 + \dot{y}^2 = v^2.$
If we solve these, the problem would be reduced to taking a limit.
Anyway, this is what I have so far - not much really. Would this be a good/feasible approach to pursue so as to solve the problem? Or is there a better way?