Imagine there is a Goose swimming counter-clockwise at the edge of a circular pond of radius $R$, and a dog (starting at the center of the pond) is paddling to catch it such that the dog is always pointing towards the goose. If the goose is travelling at speed $u$, what is the minimum speed that the dog must travel in order to eventually catch the goose? What is the minimum speed needed for the dog to catch the goose in time $\tau$?
I've seen pursuit problems like this in my Dynamical Systems textbook (indeed, this is very similar to one) and I've never had any luck solving them. I've found some solutions online to certain problems, but they tend to explain it very poorly in my opinion (for the record, all solutions I've seen to circular pursuit problems involve introducing alternate coordinate systems)
My attempt:
Let $x_d$ be the position vector of the dog, $x_g$ be the position vector of the goose, and $v_d$ be the velocity vector of the dog.
Drawing a diagram makes it evident that for any speed $||v_d||$ at fixed time $t$, $\exists \lambda \in \mathbb{R}$ s.t.
$$x_d + \lambda v_d = x_g = (R \cos(u t/R), R \sin(ut/R))$$
Generally, $\lambda = \lambda(t)$, which makes this much more difficult, but we are able to get two differential equations out of it:
$$x_d' + \frac{x_d}{\lambda(t)} = \frac{R}{\lambda(t)} \cos(ut/R) $$
$$y_d' + \frac{y_d}{\lambda(t)} = \frac{R}{\lambda(t)} \sin(ut/R) $$
Which is a first-order linear ODE, but I don't even know if the integrating factor $exp(\int \frac1{\lambda(t)} dt)$ exists, let alone how to find $\lambda(t) $
In order to catch the goose, we'd need $||x_d - x_g|| = 0$ for some $t \in \mathbb {R} $.
I believe the minimum would occur when
$||x_d - x_g|| \ne 0 \space\space \forall t \in \mathbb {R} \space \text { with } \space \lim_{t \to \infty} ||x_d - x_g|| = 0$.
As mentioned, I'm not sure how I'd find $\lambda $ if it's even worthwhile to introduce to the problem (I originally debated trying Lagrange multipliers or two-timing for this part, but am unsure how if it's possible).
I am open to seeing alternative methods as well as seeing if there's any way to actually use my thought process.
I am also aware that pursuit problems often lack a closed solution, but I thought I'd try my hand it nonetheless.


