Linear Search with Probabilistic Detection and Variable Speeds
Jared Coleman, Oscar Morales-Ponce
TL;DR
This work extends the classic linear search (cow-path) problem by introducing two movement speeds and probabilistic detection, adding a speed/detection trade-off to search efficiency. The authors derive tight results for the extreme regimes (p = 0 and v = 0) and propose strategies for the general case where both p and v lie in (0,1), including a hybrid approach that blends slow exploration with occasional fast scouting. The fast-only and slow-only strategies yield competitive ratios CR_Fast = 8/p + p/(2-p) and CR_Slow = 3 + 2 sqrt(2 + 2/v) + 2/v respectively, with the hybrid method improving performance in many parameter regions, and numerical optimization guiding its parameters. The paper also situates the work within prior literature on non-uniform speed and uncertain detection, and outlines future directions such as tighter lower bounds for the v = 0 case, learning-augmented variants, and higher-dimensional extensions.
Abstract
We present results on new variants of the famous linear search (or cow-path) problem that involves an agent searching for a target with unknown position on the infinite line. We consider the variant where the agent can move either at speed $1$ or at a slower speed $v \in [0, 1)$. When traveling at the slower speed $v$, the agent is guaranteed to detect the target upon passing through its location. When traveling at speed $1$, however, the agent, upon passing through the target's location, detects it with probability $p \in [0, 1]$. We present algorithms and provide upper bounds for the competitive ratios for three cases separately: when $p=0$, $v=0$, and when $p,v \in (0,1)$. We also prove that the provided algorithm for the $p=0$ case is optimal.
