I simulated the following situation on my pc. Two persons A and B are initially at opposite ends of a sphere of radius r. Both being drunk, can take exactly a step of 1 unit(you can define the unit, i kept it at 1m) either along a latitude at their current location, or a longitude. A and B are said to meet, if the arc length distance between A and B becomes less than equal to 1km.
Note: the direction of possible motion of each man is fixed w.r.t thr axis of the globe. Either latitude or longitude. Assume such a coordinate system exists before hand(just like the 2d analog on a plane, moving in x or y only and not absolutely randomly).
The simulation returned results, which i could not comprehend fully. The average time to meet, was about 270 years for a sphere of radius 100km!. Can someone shed some light on how i can proceed with proving this result. I want the expected time of meeting given the radius and step length, given that each move requires 1 sec. I tried considering a spehrical cap of arc length √n, after n steps, in analogy with the 2d model. But then,i cant calculate the expected time. If possible please help or suggest some related articles.
For now, I will give a reformulation of this problem in terms that should make it easier to attack with analytic methods (at least to get results on the asymptotic behavior) and greatly simplify simulations. In a second time, I will maybe also attempt to solve it, but I don't guarantee any kind of success.
My reformulation of this problem is based on the following two remarks:
For the mathematical details:
First we have to fix our coordinate system. Let $\phi$ be the longitude (this variable will be useful for calculations, but irrelevant in the end), and $\theta$ be the latitude. We put the north pole $B$ at latitude $\theta = 0$, and the south pole is at $\theta = \pi$. We'll denote positions by coordinates $(\theta,\phi)$.
Notice that by spherical symmetry, $A$ and $B$ bot taking a step is the same as $B$ staying put and $A$ taking two steps. Let's start by seeing what happens when $A$ takes one step. Let's say that $A$ starts in position $(\theta,\phi)$. We are only interested in the probability of $A$ landing at latitude $\theta'$. Notice that $P[A\text{ lands at }\theta'\le\theta_0]$ is given by the ration of the circumference of the circle at angle $\epsilon$ from $A$ below the meridian at $\theta_0$. To find this, I refer you to this answer by @Aretino, giving $$P[A\text{ lands at }\theta'\le\theta_0] = 1 - \frac{1}{\pi}\arccos\left(\frac{\cos\theta' - \cos\epsilon\cos\theta}{\sin\epsilon\sin\theta}\right)$$ whenever the term in the brackets is in $[-1,1]$, and $0$ or $1$ else (depending on $\theta'$). The distribution function $f_\theta(\theta')$ giving the probability to land at $\theta'$ after one step starting at $\theta$ can then be found as usual by differentiating this probability: \begin{align} f_\theta(\theta') = & \frac{\partial}{\partial\theta'}\left(1 - \frac{1}{\pi}\arccos\left(\frac{\cos\theta' - \cos\epsilon\cos\theta}{\sin\epsilon\sin\theta}\right)\right)\\ = & \frac{\sin\theta'}{\sqrt{1 - \left(\frac{\cos\theta' - \cos\epsilon\cos\theta}{\sin\epsilon\sin\theta}\right)^2}}\\ = & \frac{\sin\epsilon\sin\theta\sin\theta'}{\sqrt{\cos\theta'(2\cos\epsilon\cos\theta - \cos\theta') + \sin^2\theta - \cos^2\epsilon}}, \end{align} and $0$ outside the domain of definition of the original function. The probability of landing at $\theta'$ after two steps starting at $\theta$ is therefore given by $$F_\theta(\theta') = \int_0^\pi f_\theta(\theta'')f_{\theta''}(\theta')d\theta''.$$ I have some doubts this can be done analytically, but maybe some approximation can give something useful.
Given this data, we can have a hope to be able to do something at least to find asymptotic bounds for when $\epsilon\to0$, and if not, it will at least greatly simplify simulations, as we are reduced to simulating a walk on a line (parametrized by $\theta$) with a non-uniform probability to move to nearby points.