You're looking at Less Wrong's discussion board. This includes all posts, including those that haven't been promoted to the front page yet. For more information, see About Less Wrong.

Confused about Solomonoff induction

-3 Post author: nebulous 13 July 2012 11:36AM

Why wouldn't the probability of two algorithms of different lengths appearing approach the same value as longer strings of bits are searched?

Comments (9)

Comment author: Oscar_Cunningham 13 July 2012 11:43:59AM 7 points [-]

Better suited to the open thread.

Comment author: nebulous 14 July 2012 12:58:33AM 2 points [-]

Augh, right. I'd forgotten that was there.

Comment author: private_messaging 13 July 2012 07:22:15PM *  5 points [-]

There is no search for a program inside a huge string of bits. The probability of a program is the probability that random string of bits begins with it, which is 2^-len . The programs are self delimited, i.e. the program could be a string like 011011... , the ... being a string of random bits that aren't read or which we decide not to consider to be a program (e.g. if the program simply sets up copying of input tape onto output tape). There's also no search for data inside the huge string of output, it has to begin with data. The 'search' has to be done if you want to find this probability - you have to try every input string.

Comment author: nebulous 14 July 2012 12:58:06AM 0 points [-]

I get it now. Thanks!