ArticleslgStudy

science

Pursuit–evasion

Pursuit–evasion is a science topic covered in the lgStudy science library. This page brings together a partial reference excerpt, illustrations, worked examples, real-world applications and a short study plan, so you can understand Pursuit–evasion rather than just read about it. In short: Pursuit–evasion (variants of which are referred to as cops and robbers and graph searching) is a family of problems in mathematics and computer science in which one group attempts to track down members of another group in an environment. Early work on problems of this type modeled the environment geometrically.

Key takeaways

  • Pursuit–evasion belongs to science; place it in that map before memorising details.
  • Learn the definition first, then one example that makes the definition concrete.
  • Connect Pursuit–evasion to a quantity you can measure, compute or draw — that is where exam questions come from.
  • Reproduce the core statement of Pursuit–evasion from memory before moving on to harder problems.

Reference excerpt

Pursuit–evasion (variants of which are referred to as cops and robbers and graph searching) is a family of problems in mathematics and computer science in which one group attempts to track down members of another group in an environment. Early work on problems of this type modeled the environment geometrically. In 1976, Torrence Parsons introduced a formulation whereby movement is constrained by a graph. The geometric formulation is sometimes called continuous pursuit–evasion, and the graph formulation discrete pursuit–evasion (also called graph searching). Current research is typically limited to one of these two formulations.

Discrete formulation In the discrete formulation of the pursuit–evasion problem, the environment is modeled as a graph.

Problem definition There are innumerable possible variants of pursuit–evasion, though they tend to share many elements. A typical, basic example is as follows (cops and robber games): Pursuers and evaders occupy nodes of a graph. The two sides take alternate turns, which consist of each member either staying put or moving along an edge to an adjacent node. If a pursuer occupies the same node as an evader the evader is captured and removed from the graph. The question usually posed is how many pursuers are necessary to ensure the eventual capture of all the evaders. If one pursuer suffices, the graph is called a cop-win graph. In this case, a single evader can always be captured in time linear to the number of n nodes of the graph. Capturing r evaders with k pursuers can take in the order of rn time as well, but the exact bounds for more than one pursuer are still unknown. Often the movement rules are altered by changing the velocity of the evaders. This velocity is the maximum number of edges that an evader can move along in a single turn. In the example above, the evaders have a velocity of one. At the other extreme is the concept of infinite velocity, which allows an evader to move to any node in the graph so long as there is a path between its original and final positions that contains no nodes occupied by a pursuer. Similarly some variants arm the pursuers with "helicopters" which allow them to move to any vertex on their turn. Other variants ignore the restriction that pursuers and evaders must always occupy a node and allow for the possibility that they are positioned somewhere along an edge. These variants are often referred to as sweeping problems, whilst the previous variants would fall under the category of searching problems.

Variants Several variants are equivalent to important graph parameters. Specifically, finding the number of pursuers necessary to capture a single evader with infinite velocity in a graph G (when pursuers and evader are not constrained to move turn by turn, but move simultaneously) is equivalent to finding the treewidth of G, and a winning strategy for the evader may be described in terms of a haven in G. If this evader is invisible to the pursuers then the problem is equivalent to finding the pathwidth or vertex separation. Finding the number of pursuers necessary to capture a single invisible evader in a graph G in a single turn (that is, one movement by the pursuers from their initial deployment) is equivalent to finding the size of the minimum dominating set of G, assuming the pursuers can initially deploy wherever they like (this later assumption holds when pursuers and evader are assumed to move turn by turn). The board game Scotland Yard is a variant of the pursuit–evasion problem.

Complexity The complexity of several pursuit–evasion variants, namely how many pursuers are needed to clear a given graph and how a given number of pursuers should move on the graph to clear it with either a minimum sum of their travel distances or minimum task-completion time, has been studied by Nimrod Megiddo, S. L. Hakimi, Michael R. Garey, David S. Johnson, and Christos H. Papadimitriou (J. ACM 1988), and R. Borie, C. Tovey and S. Koenig.

Multi-player pursuit–evasion games Solving multi-player pursuit–evasion games has also received increased attention; see R Vidal et al., Chung and Furukawa [1], Hespanha et al. and the references therein. Marcos A. M. Vieira and Ramesh Govindan and Gaurav S. Sukhatme provided an algorithm that computes the minimal completion time strategy for pursuers to capture all evaders when all players make optimal decisions based on complete knowledge. This algorithm can also be applied to when evader are significantly faster than pursuers. Unfortunately, these algorithms do not scale beyond a small number of robots. To overcome this problem, Marcos A. M. Vieira and Ramesh Govindan and Gaurav S. Sukhatme design and implement a partition algorithm where pursuers capture evaders by decomposing the game into multiple multi-pursuer single-evader games.

Continuous formulation In the continuous formulation of pursuit–evasion games, the environment is modeled geometrically, typically taking the form of the Euclidean plane or another manifold. Variants of the game may impose maneuverability constraints on the players, such as a limited range of speed or acceleration. Obstacles may also be used. If a lion is chasing a man with equal speed, then it is clear that the man can escape on a plane or a sphere by always moving on the straight line away from the lion. When both are confined in a circular disk, it seemed likely for the lion to catch the man. Besicovitch proved in 1952 that the man has a strategy to evade capture indefinitely against any strategy.

Applications One of the initial applications of the pursuit–evasion problem was missile guidance systems formulated by Rufus Isaacs at the RAND Corporation.

See also Angel problem Chases and Escapes Homicidal chauffeur problem Princess and monster game Search games Pursuit curve

Notes

… excerpt ends here. Continue reading the full article.

Worked examples

Example 1 — a first encounter with Pursuit–evasion

Start with the simplest possible case. Write down what Pursuit–evasion claims or describes in one sentence, then invent the smallest concrete situation in which that sentence is true. In science, the smallest case is usually a single object, a single equation or a single measurement. Check that every symbol or term in your sentence has a meaning in that case.

Example 2 — changing one variable

Take the situation from Example 1 and change exactly one quantity: double it, halve it, or set it to zero. Predict what should happen to Pursuit–evasion before you calculate. Comparing your prediction with the result is the fastest way to find out whether you understand the idea or only the words.

Example 3 — an exam-style question

Typical questions about Pursuit–evasion ask you to (a) state it precisely, (b) apply it to given data, and (c) explain a limitation. Practise writing all three answers in under five minutes; the third part is what separates a full-mark answer from an average one.

Applications of Pursuit–evasion

In research
Pursuit–evasion appears in science research whenever the underlying quantities have to be modelled precisely. Papers usually cite it as a starting assumption and then explore where it breaks down.
In technology and industry
Engineering practice reuses Pursuit–evasion in design rules, simulations and safety margins. Knowing the idea lets you read a specification sheet and understand why the numbers look the way they do.
In the classroom
Pursuit–evasion is common in secondary-school and first-year university syllabi. It links to neighbouring topics Combat modeling, Pursuit–evasion, so understanding it makes those chapters shorter.
In everyday life
Look for Pursuit–evasion outside the textbook — in sport, cooking, traffic, electronics or the sky above you. An example you found yourself is remembered far longer than one you were given.
Ask Teacher Smith questions about this articleOpens your AI tutor with a question about “Pursuit–evasion” →

Affiliate

Preply — study more efficiently by working with a personal tutor. 50% off.

How to study Pursuit–evasion in 20 minutes

  1. Read the reference excerpt below once, without taking notes.
  2. Close the page and write down what Pursuit–evasion means in your own words.
  3. Compare your version with the excerpt and mark what you missed.
  4. Work through the three examples above with pen and paper.
  5. Explain Pursuit–evasion out loud to somebody else — or to Teacher Smith in the lgStudy chat.

Frequently asked questions

What is Pursuit–evasion in simple terms?

Pursuit–evasion (variants of which are referred to as cops and robbers and graph searching) is a family of problems in mathematics and computer science in which one group attempts to track down members of another group in an environment. Early work on problems of this type modeled the environment g…

Why does Pursuit–evasion matter?

Because it connects several science ideas at once: it gives you a definition you can apply, a quantity you can calculate, and a way to check whether a result is plausible.

How should I study Pursuit–evasion?

Read the excerpt, restate it from memory, then work through the examples and applications listed on this page. The five-step study plan above takes about twenty minutes.

What does this page cover?

It gives you a compact reference excerpt plus original lgStudy explanations, examples, applications and study material on Pursuit–evasion.

Tags

  • Combat modeling
  • Pursuit–evasion

Keep exploring