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.

shminux comments on Debugging the Quantum Physics Sequence - Less Wrong Discussion

32 Post author: Mitchell_Porter 05 September 2012 03:55PM

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

Comments (129)

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

Comment author: V_V 06 September 2012 10:12:19PM 2 points [-]

not if you just want to distinguish between hypotheses that are already available and fully specified.

This assumes that you can computably map each hypothesis to a single program (or a set of programs where you can computably identify the shortest element).

For arbitrary hypotheses, this is impossible due to the Rice's theorem.

If you write your hypotheses as prepositions in a formal language, then by restricting the language you can get decidability at the expense of expressive power. The typical examples are the static type systems of many popular programming languages (though notably not C++).

Even then, you run into complexity issues: for instance, type checking is NP-complete in C#, and I conjecture that the problem of finding the shortest C# program that satisfies some type-checkable property is NP-hard. (the obvious brute-force way of doing it is to enumerate programs in order of increasing length and check them until you find one that passes).