gjm comments on The correct response to uncertainty is *not* half-speed - Less Wrong

77 Post author: AnnaSalamon 15 January 2016 10:55PM

You are viewing a comment permalink. View the original post to see all comments and the full post content.

Comments (40)

You are viewing a single comment's thread. Show more comments above.

Comment author: IlyaShpitser 17 January 2016 05:32:17AM 3 points [-]

Imagine an undirected graph where each node has a left and right neighbor (so it's an infinitely long chain). You are on a node in this graph, and somewhere to the left or right of you is a hotel (50/50 chance to be in either direction). You don't know how far -- k steps for an arbitrarily large k that an adversary picks after learning how you will look for a hotel.

The solution that takes 1 step left, 2 steps right, 3 steps left, etc. will find the hotel in O(k^2) steps. Is it possible to do better?

Comment author: gjm 19 January 2016 11:02:55PM 0 points [-]

Grow your steps in powers of 2 instead of linearly.