Search game

{{short description|Two-person zero-sum game}}

A search game is a two-person zero-sum game which takes place in a set called the search space. The searcher can choose any continuous trajectory subject to a maximal velocity constraint. It is always assumed that neither the searcher nor the hider has any knowledge about the movement of the other player until their distance apart is less than or equal to the discovery radius and at this very moment capture occurs. The game is zero sum with the payoff being the time spent in searching. As mathematical models, search games can be applied to areas such as hide-and-seek games that children play or representations of some tactical military situations. The area of search games was introduced in the last chapter of Rufus Isaacs' classic book "Differential Games"Rufus Isaacs, Differential Games, John Wiley and Sons, (1965), and has been developed further by Shmuel GalS. Gal, Search Games, Academic Press, New York (1980)S. Alpern and S. Gal, [https://books.google.com/books?id=BBrvBwAAQBAJ&dq=%22The+Theory+of+Search+Games+and+Rendezvous%22&pg=PR11 The Theory of Search Games and Rendezvous], Springer (2003). and Steve Alpern. The princess and monster game deals with a moving target.

Strategy

A natural strategy to search for a stationary target in a graph (in which arcs have lengths) is to find a minimal closed curve L that covers all the arcs of the graph. (L is called a Chinese postman tour). Then, traverse L with probability 1/2 for each direction. This strategy seems to work well if the graph is Eulerian. In general, this random Chinese postman tour is indeed an optimal search strategy if and only if the graph consists of a set of Eulerian graphs connected in a tree-like structure.{{cite journal

| first1=Shmuel | last1=Gal

| title=On the optimality of a simple strategy for searching graphs

| journal=International Journal of Game Theory

| volume=29

| pages=533–542

| year=2001

| issue=4

| doi=10.1007/s001820000056 | doi-access=free}} A misleadingly simple example of a graph not in this family consists of two nodes connected by three arcs. The random Chinese postman tour (equivalent to traversing the three arcs in a random order) is not optimal, and the optimal way to search these three arcs is complicated.

Unbounded domains

In general, the reasonable framework for searching an unbounded domain, as in the case of an online algorithm, is to use a normalized cost function (called the competitive ratio in Computer Science literature). The minimax trajectory for problems of these types is always a geometric sequence (or exponential function for continuous problems). This result yields an easy method to find the minimax trajectory by minimizing over a single parameter (the generator of this sequence) instead of searching over the whole trajectory space. This tool has been used for the linear search problem, i.e., finding a target on the infinite line, which has attracted much attention over several decades and has been analyzed as a search game.{{cite journal

| first1=Anatole | last1=Beck

| first2=D.J. | last2=Newman

| title=Yet More on the linear search problem

| journal=Israel Journal of Mathematics

| volume=8

| pages=419–429

| year=1970

| issue=4

| doi=10.1007/BF02798690 | doi-access=free}} It has also been used to find a minimax trajectory for searching a set of concurrent rays. Optimal searching in the plane is performed by using exponential spirals.M. Chrobak, A princess swimming in the fog looking for a monster cow, ACM Sigact news, 35(2), 74–78 (2004).

Searching a set of concurrent rays was later re-discovered in Computer Science literature as the 'cow-path problem'.MY Kao, JH Reif and SR Tate, [https://www.sciencedirect.com/science/article/pii/S0890540196900929/pdf?md5=129f6c53511fe88b0314aa2af1d113d3&pid=1-s2.0-S0890540196900929-main.pdf&_valck=1 Searching in an unknown environment: an optimal randomized algorithm for the cow-path problem], SODA 1993.

References

{{Game theory}}

{{DEFAULTSORT:Search Games}}

Category:Non-cooperative games

Category:Search algorithms