|
|
|
|
|
by wodenokoto
1881 days ago
|
|
I find uncomputable numbers fascinating, especially that we somehow have computed a few busy beaver numbers given their supposedly uncomputability. But conversely, I don't understand turing machines well enough to understand how inspecting one won't result in answering whether it halts or not. Or put in another way: How does a simple Python program, that one cannot determine whether it halts or not, look? |
|
You could write quite a short program to search for a counterexample - for each even number, check to see if it's the sum of two prime numbers. If it's not, then print it and halt, if it is then go on to the next number.
Looking at this program, you could easily understand how it works, but to know if it halts you need to solve one of the most famous open problems in mathematics.