To install click the Add extension button. That's it.

The source code for the WIKI 2 extension is being checked by specialists of the Mozilla Foundation, Google, and Apple. You could also do it yourself at any point in time.

4,5
Kelly Slayton
Congratulations on this excellent venture… what a great idea!
Alexander Grigorievskiy
I use WIKI 2 every day and almost forgot how the original Wikipedia looks like.
Live Statistics
English Articles
Improved in 24 Hours
Added in 24 Hours
Languages
Recent
Show all languages
What we do. Every page goes through several hundred of perfecting techniques; in live mode. Quite the same Wikipedia. Just better.
.
Leo
Newton
Brights
Milds

Linear search problem

From Wikipedia, the free encyclopedia

In computational complexity theory, the linear search problem is an optimal search problem introduced by Richard E. Bellman[1] and independently considered by Anatole Beck.[2][3][4]

YouTube Encyclopedic

  • 1/3
    Views:
    131 096
    60 181
    820 022
  • Linear search vs Binary search
  • Learn Linear Search in 3 minutes ⬇️
  • 7.1 Linear Search Algorithm | Linear Search in C | Data Structures Tutorials

Transcription

The problem

"An immobile hider is located on the real line according to a known probability distribution. A searcher, whose maximal velocity is one, starts from the origin and wishes to discover the hider in minimal expected time. It is assumed that the searcher can change the direction of his motion without any loss of time. It is also assumed that the searcher cannot see the hider until he actually reaches the point at which the hider is located and the time elapsed until this moment is the duration of the game."

The problem is to find the hider in the shortest time possible. Generally, since the hider could be on either side of the searcher and an arbitrary distance away, the searcher has to oscillate back and forth, i.e., the searcher has to go a distance x1 in one direction, return to the origin and go distance x2 in the other direction, etc., (the length of the n-th step being denoted by xn). (However, an optimal solution need not have a first step and could start with an infinite number of small 'oscillations'.) This problem is usually called the linear search problem and a search plan is called a trajectory. It has attracted much research, some of it quite recent.[when?]

The linear search problem for a general probability distribution is unsolved.[5] However, there exists a dynamic programming algorithm that produces a solution for any discrete distribution[6] and also an approximate solution, for any probability distribution, with any desired accuracy.[7]

The linear search problem was solved by Anatole Beck and Donald J. Newman (1970) as a two-person zero-sum game. Their minimax trajectory is to double the distance on each step and the optimal strategy is a mixture of trajectories that increase the distance by some fixed constant.[8] This solution gives search strategies that are not sensitive to assumptions concerning the distribution of the target. Thus, it also presents an upper bound for a worst-case scenario. This solution was obtained in the framework of an online algorithm by Shmuel Gal, who also generalized this result to a set of concurrent rays.[9] The best online competitive ratio for the search on the line is 9 but it can be reduced to 4.6 by using a randomized strategy. Demaine et al. gave an online solution with a turn cost.[10]

These results were rediscovered in the 1990s by computer scientists as the cow path problem.

See also

References

  1. ^ Bellman, Richard (July 1963), "Problem 63-9, An Optimal Search", SIAM Review, 5 (3): 274, JSTOR 2027629
  2. ^ Beck, Anatole (December 1964), "On the linear search Problem", Israel Journal of Mathematics, 2: 221–228, doi:10.1007/BF02759737
  3. ^ Beck, Anatole (June 1965), "More on the linear search problem", Israel Journal of Mathematics, 3: 61–70, doi:10.1007/BF02760028
  4. ^ Beck, Anatole; Beck, Micah (December 1986), "The linear search problem rides again", Israel Journal of Mathematics, 53: 365–372, doi:10.1007/BF02786568
  5. ^ Alpern, Steve; Gal, Shmuel (2003), "Chapter 8. Search on the Infinite Line", The Theory of Search Games and Rendezvous, Part 2, International Series in Operations Research & Management Science, vol. 55, pp. 123–144, doi:10.1007/0-306-48212-6_8. On p. 124, Alpern and Gal write "no algorithm for solving the problem for a general probability distribution function has been found during about 37 years since the LSP was first presented."
  6. ^ Bruss, F. Thomas; Robertson, James B. (December 1988), "A survey of the linear-search problem" (PDF), The Mathematical Scientist, 13: 75–89[dead link]
  7. ^ Alpern, Steve; Gal, Shmuel (2003), "Section 8.7. A Dynamic Programming Algorithm for the LSP", The Theory of Search Games and Rendezvous, Part 2, International Series in Operations Research & Management Science, vol. 55, pp. 139–144, doi:10.1007/0-306-48212-6_8
  8. ^ Beck, Anatole; Newman, Donald J. (December 1970), "Yet More on the linear search problem", Israel Journal of Mathematics, 8: 419–429, doi:10.1007/BF02798690
  9. ^ Gal, Shmuel (1980), Search games, Academic Press
  10. ^ Demaine, Erik D.; Fekete, Sandor; Gal, Shmuel (September 2006), "Online searching with turn cost", Theoretical Computer Science, 361 (2–3): 342–355, arXiv:cs/0406045, doi:10.1016/j.tcs.2006.05.018
This page was last edited on 4 January 2024, at 20:49
Basis of this page is in Wikipedia. Text is available under the CC BY-SA 3.0 Unported License. Non-text media are available under their specified licenses. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc. WIKI 2 is an independent company and has no affiliation with Wikimedia Foundation.