On 6/19/2022 5:59 AM, Richard Damon wrote:
On 6/19/22 12:47 AM, olcott wrote:
Right, so H's answer must match what a CORRECT emulation if the TURINGYes and in the same way when a person that represents them (their
MACHINE (or PROGRAM) that its input represents would do.
lawyer) commits a crime then the person must go to jail because we must always maintain the indirect relationship.
The direct relationship where the person did not commit the crime so
they don't go to jail must always be superseded by the indirect
relationship.
On 6/19/22 12:47 AM, olcott wrote:Yes and in the same way when a person that represents them (their
On 6/18/2022 11:37 PM, Dennis Bush wrote:
On Sunday, June 19, 2022 at 12:28:11 AM UTC-4, richar...@gmail.com
wrote:
On 6/18/22 8:00 PM, olcott wrote:
u32 H(u32 P, u32 I)And again, you haven't actually proven that it does this.
{
HERE:
u32 End_Of_Code;
u32 Address_of_H; // 2022-06-17
u32 code_end = get_code_end(P); >>>>> Decoded_Line_Of_Code *decoded = (Decoded_Line_Of_Code*)
Allocate(sizeof(Decoded_Line_Of_Code));
Registers* master_state = (Registers*)
Allocate(sizeof(Registers));
Registers* slave_state = (Registers*)
Allocate(sizeof(Registers));
u32* slave_stack = Allocate(0x10000); // 64k;
u32 execution_trace = (u32)Allocate(sizeof(Decoded_Line_Of_Code) * >>>>> 1000); // 1000 lines of x86 code
__asm lea eax, HERE // 2022-06-18
__asm sub eax, 6 // 2022-06-18
__asm mov Address_of_H, eax // 2022-06-18
__asm mov eax, END_OF_CODE
__asm mov End_Of_Code, eax
Output("Address_of_H:", Address_of_H); // 2022-06-11
Init_slave_state(P, I, End_Of_Code, slave_state, slave_stack);
Output("\nBegin Simulation Execution Trace Stored at:",
execution_trace);
if (Decide_Halting(&execution_trace, &decoded, code_end,
&master_state,
&slave_state, &slave_stack, Address_of_H, P, I))
goto END_OF_CODE;
return 0; // Does not halt
END_OF_CODE:
return 1; // Input has normally terminated
}
THIS IS THE BASIC PRINCIPLE OF A HALT DECIDER THAT REFUTES THE HALTING >>>>> PROBLEM PROOFS:
When a simulating halt decider rejects all inputs as non-halting
whenever it correctly detects (in a finite number of steps) that its >>>>> correct and complete simulation of its input would never reach a final >>>>> state of this input that all [these] inputs (including pathological
inputs) are decided correctly.
Note, since H(P,P) is defined to abort its emulation, it doesn't itself >>>> do a correct emulation, so the test isn't that H didn't reach a final
halt state, but would an actual emulator, using the same input
(including that input calling the above H, and not this emulator) be
able to reach a finl state.
One issue with this code is that it DOES have a hidden input, that
computation that halts … the Turing machine will halt whenever it
enters
a final state. (Linz:1990:234)
Linz, Peter 1990. An Introduction to Formal Languages and Automata.
Lexington/Toronto: D. C. Heath and Company. (317-320)
This paper has not been updated since I converted H into a pure
function
of its inputs. https://en.wikipedia.org/wiki/Pure_function
H no longer recursively calls itself, thus local memory is sufficient. >>>>>
Halting problem undecidability and infinitely nested simulation (V5) >>>>> https://www.researchgate.net/publication/359984584_Halting_problem_undecidability_and_infinitely_nested_simulation_V5
address that the code has been loaded at, so copies of H can behave
differently. I will leave it to someone with more expertise in this
area
to indicate how fatal that error is to your argument. This does say
that
if you DID implement this per the actual instructions of Linz, and
put a
COPY of H into P, this difference would be enough to be a problem, as
well as breaking your H.
Note, you H only works in your broken computation model where H and the >>>> program it tests are tied up into the same address space, and thus you >>>> can not actually decide on an arbitrary program.
Also, from this code, the subroutines Init_slave_state, and
Decide_Halting must also be 'pure' functions of there inputs (which
does
allow them to store information in the buffers provided, but not
anywhere else that might influence behavior.
In particular, those functions need to behave exactly the same when
they
are evaluatd in the emulated context as when they are directly
executed.
The the correct emuluation of H(P,P) by the actual correct and complete >>>> emulator that is checking the truth that H claims, see the same results >>>> as the direct execution.
Did you mean "the correct emulation of P(P) / the input to H(P,P)"
here, as well as below?
That is just not the way it works.
When a simulating halt decider rejects all inputs as non-halting
whenever it correctly detects (in a finite number of steps) that its
correct and complete simulation of its input would never reach a final
state of this input that all [these] inputs (including pathological
inputs) are decided correctly.
Right, so H's answer must match what a CORRECT emulation if the TURING MACHINE (or PROGRAM) that its input represents would do.
On 2022-06-19 08:33, olcott wrote:
On 6/19/2022 5:59 AM, Richard Damon wrote:
On 6/19/22 12:47 AM, olcott wrote:
Right, so H's answer must match what a CORRECT emulation if theYes and in the same way when a person that represents them (their
TURING MACHINE (or PROGRAM) that its input represents would do.
lawyer) commits a crime then the person must go to jail because we
must always maintain the indirect relationship.
The direct relationship where the person did not commit the crime so
they don't go to jail must always be superseded by the indirect
relationship.
You do realize that the verb 'represent' means something entirely
different in legal contexts than it does in computer science?
André
On 6/19/2022 5:59 AM, Richard Damon wrote:
On 6/19/22 12:47 AM, olcott wrote:Yes and in the same way when a person that represents them (their
On 6/18/2022 11:37 PM, Dennis Bush wrote:
On Sunday, June 19, 2022 at 12:28:11 AM UTC-4, richar...@gmail.com
wrote:
On 6/18/22 8:00 PM, olcott wrote:
u32 H(u32 P, u32 I)And again, you haven't actually proven that it does this.
{
HERE:
u32 End_Of_Code;
u32 Address_of_H; // 2022-06-17
u32 code_end = get_code_end(P); >>>>>> Decoded_Line_Of_Code *decoded = (Decoded_Line_Of_Code*)
Allocate(sizeof(Decoded_Line_Of_Code));
Registers* master_state = (Registers*)
Allocate(sizeof(Registers));
Registers* slave_state = (Registers*)
Allocate(sizeof(Registers));
u32* slave_stack = Allocate(0x10000); // 64k;
u32 execution_trace =
(u32)Allocate(sizeof(Decoded_Line_Of_Code) *
1000); // 1000 lines of x86 code
__asm lea eax, HERE // 2022-06-18
__asm sub eax, 6 // 2022-06-18
__asm mov Address_of_H, eax // 2022-06-18
__asm mov eax, END_OF_CODE
__asm mov End_Of_Code, eax
Output("Address_of_H:", Address_of_H); // 2022-06-11
Init_slave_state(P, I, End_Of_Code, slave_state, slave_stack); >>>>>> Output("\nBegin Simulation Execution Trace Stored at:",
execution_trace);
if (Decide_Halting(&execution_trace, &decoded, code_end,
&master_state,
&slave_state, &slave_stack, Address_of_H, P,
I))
goto END_OF_CODE;
return 0; // Does not halt
END_OF_CODE:
return 1; // Input has normally terminated
}
THIS IS THE BASIC PRINCIPLE OF A HALT DECIDER THAT REFUTES THE
HALTING
PROBLEM PROOFS:
When a simulating halt decider rejects all inputs as non-halting
whenever it correctly detects (in a finite number of steps) that its >>>>>> correct and complete simulation of its input would never reach a
final
state of this input that all [these] inputs (including pathological >>>>>> inputs) are decided correctly.
Note, since H(P,P) is defined to abort its emulation, it doesn't
itself
do a correct emulation, so the test isn't that H didn't reach a final >>>>> halt state, but would an actual emulator, using the same input
(including that input calling the above H, and not this emulator) be >>>>> able to reach a finl state.
One issue with this code is that it DOES have a hidden input, that
computation that halts … the Turing machine will halt whenever it >>>>>> enters
a final state. (Linz:1990:234)
Linz, Peter 1990. An Introduction to Formal Languages and Automata. >>>>>> Lexington/Toronto: D. C. Heath and Company. (317-320)
This paper has not been updated since I converted H into a pure
function
of its inputs. https://en.wikipedia.org/wiki/Pure_function
H no longer recursively calls itself, thus local memory is
sufficient.
Halting problem undecidability and infinitely nested simulation (V5) >>>>>> https://www.researchgate.net/publication/359984584_Halting_problem_undecidability_and_infinitely_nested_simulation_V5
address that the code has been loaded at, so copies of H can behave
differently. I will leave it to someone with more expertise in this
area
to indicate how fatal that error is to your argument. This does say
that
if you DID implement this per the actual instructions of Linz, and
put a
COPY of H into P, this difference would be enough to be a problem, as >>>>> well as breaking your H.
Note, you H only works in your broken computation model where H and
the
program it tests are tied up into the same address space, and thus you >>>>> can not actually decide on an arbitrary program.
Also, from this code, the subroutines Init_slave_state, and
Decide_Halting must also be 'pure' functions of there inputs (which
does
allow them to store information in the buffers provided, but not
anywhere else that might influence behavior.
In particular, those functions need to behave exactly the same when
they
are evaluatd in the emulated context as when they are directly
executed.
The the correct emuluation of H(P,P) by the actual correct and
complete
emulator that is checking the truth that H claims, see the same
results
as the direct execution.
Did you mean "the correct emulation of P(P) / the input to H(P,P)"
here, as well as below?
That is just not the way it works.
When a simulating halt decider rejects all inputs as non-halting
whenever it correctly detects (in a finite number of steps) that its
correct and complete simulation of its input would never reach a
final state of this input that all [these] inputs (including
pathological inputs) are decided correctly.
Right, so H's answer must match what a CORRECT emulation if the TURING
MACHINE (or PROGRAM) that its input represents would do.
lawyer) commits a crime then the person must go to jail because we must always maintain the indirect relationship.
The direct relationship where the person did not commit the crime so
they don't go to jail must always be superseded by the indirect
relationship.
A halt decider must compute the mapping from its inputs to an accept or reject state on the basis of the actual behavior of the actual inputs,
not the behavior of some mere proxy representative.
Sysop: | Keyop |
---|---|
Location: | Huddersfield, West Yorkshire, UK |
Users: | 379 |
Nodes: | 16 (2 / 14) |
Uptime: | 66:41:41 |
Calls: | 8,084 |
Calls today: | 2 |
Files: | 13,068 |
Messages: | 5,849,424 |