Five different LLM systems agree with my rebuttal of the HP proofs.
From olcott@3:633/280.2 to All on Wed Sep 3 04:18:51 2025
Five different LLM systems figured out the recursive simulation
non-halting behavior pattern on their own without prompting.
They also correctly determined that the HP proof decider would
be correct to reject its input as non-halting.
<Input to LLM systems>
Simulating Termination Analyzer HHH correctly simulates its input until:
(a) Detects a non-terminating behavior pattern:
abort simulation and return 0.
(b) Simulated input reaches its simulated "return" statement:
return 1.
typedef int (*ptr)();
int HHH(ptr P);
int DD()
{
int Halt_Status = HHH(DD);
if (Halt_Status)
HERE: goto HERE;
return Halt_Status;
}
What value should HHH(DD) correctly return?
<Input to LLM systems>