Questions tagged [search]

For questions involving search algorithms and their use in artificial intelligence

Searching is a technique for problem solving commonly used in AI systems.

The searching may be conducted in a discrete solution space, whereby the permutations for possible discrete solutions are investigated in some way to determine a good solution based on some stated criteria for selection. Alternately the search may be conducted in a continuous search space, whereby the goal of the search is to converge on an optimum. The space may be a hybrid of continuous and discrete dimensions.

The acceptable reliability and accuracy of the search are elements of the search requirements. For instance, in the case of a discrete solution space, there may be an acceptable number of incorrect solutions from among a large set of problems solved. There may be answers that in some way are defined as close enough to correct. A typical example is when a certain percentage of error is allowed in IEEE floating point output of the search in continuous dimensions.

The problem may be static in that the problem does not change during the course of the search or dynamic as in the case of control systems for robotics or other kinds of interactive systems.

Early search AI work was targeted at gaming, using cames ranging in complexity from Tic-tac-toe and checkers to Sudoku, Chess, and Go.

Searching algorithms can be compared for effectiveness based on any set of criteria. Common evaluation criteria include these.

  1. Accuracy
  2. Reliability
  3. Speed
  4. Computing resource utilization

Search algorithms can be informed or uninformed, meaning that the search may be guided by information known about the probability distribution of success within the search space or not.

Examples of fundamental tree searches taught in undergraduate computer science curricula are breadth first search, depth first search, best first search. There are many algorithmic approaches, ways to parallelism searching to improve speed, architectures to support searching, and variants of these.

163 questions
11
votes
8 answers

Why is search important in AI?

Why is search important in AI? What kinds of search algorithms are used in AI? How do they improve the result of an AI?
Zoltán Schmidt
  • 633
  • 7
  • 14
3
votes
1 answer

How many iterations are required for iterative-lengthening search when step costs are drawing from a continuos range [ϵ, 1]?

This is AI: A Modern Approach, 3.17c. The solution manual gives the answer as $\frac{d}{\epsilon}$, where $d$ is the depth of the shallowest goal node. Iterative lengthening search uses a path cost limit on each iteration, and updates that limit on…
1
vote
2 answers

Any problems/games/puzzles in which exhaustive search cannot show that a solution does not exist?

Introduction Exhaustive search is a method in AI planning to find a solution for so-called Constraint Satisfaction Problems. (CSP). Those are problems that have some conditions to fulfill and the solver is trying out all the alternatives. An example…
0
votes
0 answers

How many iterations are required for iterative-lengthening search when step costs are drawing from a continuos range [0, 1]?

I just started studying the book AI A modern Approach and I am lost on the following question. Could someone explain please or provide reference paper to understand. Consider the step costs drawn from the continuous range [0,1] with a minimum…