Linear Search for an Escaping Target with Unknown Speed

Jared Coleman,Dmitry Ivanov,Evangelos Kranakis,Danny Krizanc,Oscar Morales-Ponce
2024-04-23
Abstract:We consider linear search for an escaping target whose speed and initial position are unknown to the searcher. A searcher (an autonomous mobile agent) is initially placed at the origin of the real line and can move with maximum speed $1$ in either direction along the line. An oblivious mobile target that is moving away from the origin with an unknown constant speed $v<1$ is initially placed by an adversary on the infinite line at distance $d$ from the origin in an unknown direction. We consider two cases, depending on whether $d$ is known or unknown. The main contribution of this paper is to prove a new lower bound and give algorithms leading to new upper bounds for search in these settings. This results in an optimal (up to lower order terms in the exponent) competitive ratio in the case where $d$ is known and improved upper and lower bounds for the case where $d$ is unknown. Our results solve an open problem proposed in [Coleman et al., Proc. OPODIS 2022].
Discrete Mathematics
What problem does this paper attempt to address?
The problem that this paper attempts to solve is: in a linear search scenario, when the target flees from an initial unknown position at an unknown speed \(v\), how to design a search algorithm to minimize the time for the searcher (an autonomous mobile agent) to find the target. Specifically, the paper focuses on how to optimize the search strategy when the searcher only knows the initial distance \(d\) of the target or has no knowledge of the target's speed and distance at all. ### Main problem description: - **Background**: A searcher is located at the origin of the real number axis and can move in any direction at a maximum speed of 1. - **Target**: An unconscious target (i.e., it cannot change direction), starting at a distance \(d\) from the origin and moving away from the origin at a constant speed \(v < 1\). - **Objective**: Design a search algorithm to minimize the ratio of the time for the searcher to find the target to the optimal time when the target's speed and starting position are known (referred to as the competitive ratio). ### Main contributions of the paper: 1. **New lower bound**: It is proved that in the case where \(d\) is known, the competitive ratio of any search strategy cannot reach \(O(u^{4 - \varepsilon})\), where \(u=\frac{1}{1 - v}\) is the target's escapability. 2. **New upper bound**: A new search strategy is proposed and an improved upper bound is given, so that in the case where \(d\) is known, the competitive ratio reaches the optimum (within the low - order terms of the exponent). 3. **Case where \(d\) is unknown**: For the case where both \(d\) and \(v\) are unknown, a new search strategy is proposed and the upper and lower bounds are improved. ### Formula summary: - **Escapability**: \(u = \frac{1}{1 - v}\) - **Optimal time**: \(T_{\text{opt}}(u, d)=\frac{d}{1 - v}=ud\) - **Competitive ratio**: \(CR_A(u, d)=\max(CR_0^A(u, d), CR_1^A(u, d))\), where \(CR_\sigma^A(u, d)=\frac{T_\sigma^A(u, d)}{T_{\text{opt}}(u, d)}\) Through these formulas and analysis, the paper solves an open problem in the previous literature, that is, how to design an effective search strategy when the target speed is unknown.