Jump to content

Search problem

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Nyngwang (talk | contribs) at 11:52, 15 May 2025 (wording: improve the informal description of intro.). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

In computational complexity theory and computability theory, a search problem is a type of computational problem where the notion of "an admissible structure y has been found in the object x" is represented by a binary relation xRy. An algorithm is said to solve the problem if for every such x with at least one structure has been found, return the admissible one y; otherwise, for x with no structure, return an appropriate output, e.g. "not found".

For every search problem, we can define the corresponding decision problem, namely

This definition may be generalized to n-ary relations using any suitable encoding which allows multiple strings to be compressed into one string (for instance by listing them consecutively with a delimiter).

More formally, a relation R can be viewed as a search problem, and a Turing machine which calculates R is also said to solve it. More formally, if R is a binary relation such that field(R) ⊆ Γ+ and T is a Turing machine, then T calculates R if:

  • If x is such that there is some y such that R(x, y) then T accepts x with output z such that R(x, z) (there may be multiple y, and T need only find one of them)
  • If x is such that there is no y such that R(x, y) then T rejects x

(Note that the graph of a partial function is a binary relation, and if T calculates a partial function then there is at most one possible output.)

Such problems occur very frequently in graph theory and combinatorial optimization, for example, where searching for structures such as particular matchings, optional cliques, particular stable sets, etc. are subjects of interest.

Definition

A search problem is often characterized by:[1]

Objective

Find a solution when not given an algorithm to solve a problem, but only a specification of what a solution looks like.[1]

Search method

  • Generic search algorithm: given a graph, start nodes, and goal nodes, incrementally explore paths from the start nodes.
  • Maintain a frontier of paths from the start node that have been explored.
  • As search proceeds, the frontier expands into the unexplored nodes until a goal node is encountered.
  • The way in which the frontier is expanded defines the search strategy.[1]
   Input: a graph,
       a set of start nodes,
       Boolean procedure goal(n) that tests if n is a goal node.
   frontier := {s : s is a start node};
   while frontier is not empty:
       select and remove path <n0, ..., nk> from frontier;
       if goal(nk)
           return <n0, ..., nk>;
       for every neighbor n of nk
           add <n0, ..., nk, n> to frontier;
   end while

See also

References

  1. ^ a b c Leyton-Brown, Kevin. "Graph Search" (PDF). ubc. Retrieved 7 February 2013.

This article incorporates material from search problem on PlanetMath, which is licensed under the Creative Commons Attribution/Share-Alike License.