On 7/1/2024 10:52 AM, joes wrote:
Am Mon, 01 Jul 2024 09:35:54 -0500 schrieb olcott:
On 7/1/2024 9:27 AM, Fred. Zwarts wrote:If. D does stop running though, because the H that it calls aborts the
Op 01.jul.2024 om 14:57 schreef olcott:
On 7/1/2024 3:27 AM, Fred. Zwarts wrote:
Op 30.jun.2024 om 19:25 schreef olcott:
On 6/30/2024 3:42 AM, joes wrote:
If simulating halt decider H correctly simulates its input D untilUnless the outer HHH aborts its simulation after some fixed number of >>>>> correct emulations or none of the HHH ever aborts and HHH never stops >>>>> running.But that does not make the result of the abort correct.
Not aborting will loop infinitely.
H correctly determines that its simulated D would never stop
running unless aborted
recursive emulation in order to be a decider.
*In each of the following cases the abort criteria has been met*
void Infinite_Loop()
{
HERE: goto HERE;
}
void Infinite_Recursion()
{
Infinite_Recursion();
}
void DDD()
{
HHH(DDD);
}
int main()
{
HHH(Infinite_Loop);
HHH(Infinite_Recursion);
HHH(DDD);
}
On 7/1/2024 10:02 AM, Fred. Zwarts wrote:
Op 01.jul.2024 om 16:35 schreef olcott:
On 7/1/2024 9:27 AM, Fred. Zwarts wrote:
Op 01.jul.2024 om 14:57 schreef olcott:
On 7/1/2024 3:27 AM, Fred. Zwarts wrote:
Op 30.jun.2024 om 19:25 schreef olcott:
On 6/30/2024 3:42 AM, joes wrote:
No, I mean: why does the inner simulator repeat instead of
aborting,
the same as the outer one does?
Technically it is called detecting a repeating state.Yeah, I know. My point is: all recursive calls both enter and
detect
a repeating state.
The inner ones always see one less execution trace
than the next outer one, thus could only meet their
abort criteria after they have already been aborted.
Which indicates that they were aborted too soon, showing that the
emulation was incorrect.
Unless the outer HHH aborts its simulation after some
fixed number of correct emulations or none of the HHH
ever aborts and HHH never stops running.
But that does not make the result of the abort correct.
Not aborting will loop infinitely.
If simulating halt decider H correctly simulates its input D
until H correctly determines that its simulated D would never
stop running unless aborted
THEN H IS NECESSARILY CORRECT TO ABORT
THEN H IS NECESSARILY CORRECT TO ABORT
THEN H IS NECESSARILY CORRECT TO ABORT
It is inevitable to abort, but that does not make the simulation
correct, because:
Of every possibility that can possibly be is is absolutely
not inevitable to abort.
DDD correctly emulated by HHH is either aborted at some point
or crashes due to out-of-memory error.
You just aren't very good at these things are you?Even here your opinion is incorrect.
On 7/1/2024 9:25 AM, Fred. Zwarts wrote:
Op 01.jul.2024 om 14:59 schreef olcott:
On 7/1/2024 3:23 AM, Fred. Zwarts wrote:
Op 30.jun.2024 om 19:20 schreef olcott:
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping >>>>> [00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
It cannot possibly return, because HHH aborts itself one cycle too
early, showing that the emulation is incorrect. If that is over your
head, try to learn how x86 instructions work.
_DDD()
[00002172] 55 push ebp ; housekeeping >>> [00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
DDD is correctly emulated by HHH which calls an
emulated HHH(DDD) to repeat the process until aborted.
... aborted one cycle too soon. One cycle later HHH would return and
DDD would return.
What you say is counter-factual.
On 7/1/2024 7:38 PM, Richard Damon wrote:
On 7/1/24 8:57 AM, olcott wrote:
On 7/1/2024 3:27 AM, Fred. Zwarts wrote:
Op 30.jun.2024 om 19:25 schreef olcott:
On 6/30/2024 3:42 AM, joes wrote:
No, I mean: why does the inner simulator repeat instead of aborting, >>>>>> the same as the outer one does?
Technically it is called detecting a repeating state.Yeah, I know. My point is: all recursive calls both enter and detect >>>>>> a repeating state.
The inner ones always see one less execution trace
than the next outer one, thus could only meet their
abort criteria after they have already been aborted.
Which indicates that they were aborted too soon, showing that the
emulation was incorrect.
Unless the outer HHH aborts its simulation after some
fixed number of correct emulations or none of the HHH
ever aborts and HHH never stops running.
But the outer HHH DOES abort its simulation, since you have said it
did (and it either does or it doesn't).
That means that the simulation of DDD stops, but not the behavior of
the machine that it is simulating.
x86 code remains a static string and thus not a dynamic process
when it is no longer simulated. If you never heard of those two
terms before then you do not have the equivalent of a BSCS.
On 7/1/2024 7:38 PM, Richard Damon wrote:
On 7/1/24 8:59 AM, olcott wrote:
On 7/1/2024 3:23 AM, Fred. Zwarts wrote:
Op 30.jun.2024 om 19:20 schreef olcott:
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping >>>>> [00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
It cannot possibly return, because HHH aborts itself one cycle too
early, showing that the emulation is incorrect. If that is over your
head, try to learn how x86 instructions work.
_DDD()
[00002172] 55 push ebp ; housekeeping >>> [00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
DDD is correctly emulated by HHH which calls an
emulated HHH(DDD) to repeat the process until aborted.
CAN'T BE.
A "Correct Emulation" is one that produces the same result as the
program at the input.
Which can only possibly occur be disregarding the semantics
of the x86 language. Liars would do that ignoramuses would do
that. Everyone with the equivalent of a BSCS would know that
what I said is true.
On 7/1/2024 9:24 PM, Richard Damon wrote:
On 7/1/24 9:36 PM, olcott wrote:
On 7/1/2024 7:38 PM, Richard Damon wrote:
On 7/1/24 8:59 AM, olcott wrote:
On 7/1/2024 3:23 AM, Fred. Zwarts wrote:
Op 30.jun.2024 om 19:20 schreef olcott:
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping >>>>>>> [00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
It cannot possibly return, because HHH aborts itself one cycle too >>>>>> early, showing that the emulation is incorrect. If that is over
your head, try to learn how x86 instructions work.
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping >>>>> [00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
DDD is correctly emulated by HHH which calls an
emulated HHH(DDD) to repeat the process until aborted.
CAN'T BE.
A "Correct Emulation" is one that produces the same result as the
program at the input.
Which can only possibly occur be disregarding the semantics
of the x86 language. Liars would do that ignoramuses would do
that. Everyone with the equivalent of a BSCS would know that
what I said is true.
Why do you say that? That is EXACTLY the definition of Correct Emulation.
WELL INDOCTRINATED FALSE ASSUMPTIONS ARE NOT TRUTH.
WELL INDOCTRINATED FALSE ASSUMPTIONS ARE NOT TRUTH.
WELL INDOCTRINATED FALSE ASSUMPTIONS ARE NOT TRUTH.
void Infinite_Loop()
{
HERE: goto HERE;
}
void Infinite_Recursion()
{
Infinite_Recursion();
}
void DDD()
{
HHH(DDD);
}
Every C programmer that knows what an x86 emulator is knows
that when HHH emulates the machine language of Infinite_Loop, Infinite_Recursion, and DDD that it must abort these emulations
so that itself can terminate normally.
SO THESE THREE INPUTS DO NOT FREAKING HALT
SO THESE THREE INPUTS DO NOT FREAKING HALT
SO THESE THREE INPUTS DO NOT FREAKING HALT
On 7/1/2024 9:44 PM, Richard Damon wrote:
On 7/1/24 10:34 PM, olcott wrote:
On 7/1/2024 9:24 PM, Richard Damon wrote:
On 7/1/24 9:36 PM, olcott wrote:
On 7/1/2024 7:38 PM, Richard Damon wrote:
On 7/1/24 8:59 AM, olcott wrote:
On 7/1/2024 3:23 AM, Fred. Zwarts wrote:
Op 30.jun.2024 om 19:20 schreef olcott:
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD) >>>>>>>>> [0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
It cannot possibly return, because HHH aborts itself one cycle >>>>>>>> too early, showing that the emulation is incorrect. If that is >>>>>>>> over your head, try to learn how x86 instructions work.
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping >>>>>>> [00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
DDD is correctly emulated by HHH which calls an
emulated HHH(DDD) to repeat the process until aborted.
CAN'T BE.
A "Correct Emulation" is one that produces the same result as the
program at the input.
Which can only possibly occur be disregarding the semantics
of the x86 language. Liars would do that ignoramuses would do
that. Everyone with the equivalent of a BSCS would know that
what I said is true.
Why do you say that? That is EXACTLY the definition of Correct
Emulation.
WELL INDOCTRINATED FALSE ASSUMPTIONS ARE NOT TRUTH.
WELL INDOCTRINATED FALSE ASSUMPTIONS ARE NOT TRUTH.
WELL INDOCTRINATED FALSE ASSUMPTIONS ARE NOT TRUTH.
And denying definitions is just lying.
It may seem that way when you don't bother to pay
attention that this definition is contradicted
by verified facts.
Indoctrination will cause this. The only cure is
correct reasoning by assuming that everything that
anyone ever told you about anything is possibly
false until conclusively proven otherwise.
If everyone always did this then Nazi propaganda
could not possibly have any chance of success.
void Infinite_Loop()
{
HERE: goto HERE;
}
void Infinite_Recursion()
{
Infinite_Recursion();
}
void DDD()
{
HHH(DDD);
}
Every C programmer that knows what an x86 emulator is knows
that when HHH emulates the machine language of Infinite_Loop,
Infinite_Recursion, and DDD that it must abort these emulations
so that itself can terminate normally.
SO THESE THREE INPUTS DO NOT FREAKING HALT
SO THESE THREE INPUTS DO NOT FREAKING HALT
SO THESE THREE INPUTS DO NOT FREAKING HALT
No, DDD does halt if HHH is a decider and HHH(DDD) returns.
That is the same nutty bullshit as Gödel's 1931 incompleteness
theorem. If there are no truth preserving operations in PA to
either G or ~G then G has no truthmaker in PA making G not a
truth-bearer in PA.
We can say that this makes PA incomplete yet PA would be
incomplete in the same way that dogs do not climb trees
or lay eggs.
On 7/1/2024 7:38 PM, Richard Damon wrote:
On 7/1/24 8:59 AM, olcott wrote:
On 7/1/2024 3:23 AM, Fred. Zwarts wrote:
Op 30.jun.2024 om 19:20 schreef olcott:
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping >>>>> [00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
It cannot possibly return, because HHH aborts itself one cycle too
early, showing that the emulation is incorrect. If that is over your
head, try to learn how x86 instructions work.
_DDD()
[00002172] 55 push ebp ; housekeeping >>> [00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
DDD is correctly emulated by HHH which calls an
emulated HHH(DDD) to repeat the process until aborted.
CAN'T BE.
A "Correct Emulation" is one that produces the same result as the
program at the input.
Which can only possibly occur be disregarding the semantics
of the x86 language.
On 7/1/2024 9:44 PM, Richard Damon wrote:
On 7/1/24 10:34 PM, olcott wrote:
On 7/1/2024 9:24 PM, Richard Damon wrote:
On 7/1/24 9:36 PM, olcott wrote:
On 7/1/2024 7:38 PM, Richard Damon wrote:
On 7/1/24 8:59 AM, olcott wrote:
On 7/1/2024 3:23 AM, Fred. Zwarts wrote:
Op 30.jun.2024 om 19:20 schreef olcott:
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD) >>>>>>>>> [0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
It cannot possibly return, because HHH aborts itself one cycle too >>>>>>>> early, showing that the emulation is incorrect. If that is over your >>>>>>>> head, try to learn how x86 instructions work.
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping >>>>>>> [00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
DDD is correctly emulated by HHH which calls an
emulated HHH(DDD) to repeat the process until aborted.
CAN'T BE.
A "Correct Emulation" is one that produces the same result as the
program at the input.
Which can only possibly occur be disregarding the semantics
of the x86 language. Liars would do that ignoramuses would do
that. Everyone with the equivalent of a BSCS would know that
what I said is true.
Why do you say that? That is EXACTLY the definition of Correct Emulation. >>>
WELL INDOCTRINATED FALSE ASSUMPTIONS ARE NOT TRUTH.
WELL INDOCTRINATED FALSE ASSUMPTIONS ARE NOT TRUTH.
WELL INDOCTRINATED FALSE ASSUMPTIONS ARE NOT TRUTH.
And denying definitions is just lying.
It may seem that way when you don't bother to pay
attention that this definition is contradicted
by verified facts.
On 7/1/2024 9:24 PM, Richard Damon wrote:Therefore, HHH can’t be simulated by itself.
On 7/1/24 9:36 PM, olcott wrote:
On 7/1/2024 7:38 PM, Richard Damon wrote:
On 7/1/24 8:59 AM, olcott wrote:
On 7/1/2024 3:23 AM, Fred. Zwarts wrote:
Op 30.jun.2024 om 19:20 schreef olcott:
A "Correct Emulation" is one that produces the same result as theWhich can only possibly occur be disregarding the semantics of the x86
program at the input.
language. Liars would do that ignoramuses would do that. Everyone with
the equivalent of a BSCS would know that what I said is true.
An emulator does not need to abort. In fact, it should emulate infiniteWhy do you say that? That is EXACTLY the definition of Correct
Emulation.
Every C programmer that knows what an x86 emulator is knows that when
HHH emulates the machine language of Infinite_Loop, Infinite_Recursion,
and DDD that it must abort these emulations so that itself can terminate normally.
SO THESE THREE INPUTS DO NOT FREAKING HALTWhy does the emulator halt then?
On 7/1/2024 1:01 PM, Fred. Zwarts wrote:
Op 01.jul.2024 om 17:15 schreef olcott:
On 7/1/2024 10:02 AM, Fred. Zwarts wrote:
Op 01.jul.2024 om 16:35 schreef olcott:
On 7/1/2024 9:27 AM, Fred. Zwarts wrote:
Op 01.jul.2024 om 14:57 schreef olcott:
On 7/1/2024 3:27 AM, Fred. Zwarts wrote:
Op 30.jun.2024 om 19:25 schreef olcott:
On 6/30/2024 3:42 AM, joes wrote:
No, I mean: why does the inner simulator repeat instead of >>>>>>>>>> aborting,
the same as the outer one does?
Technically it is called detecting a repeating state.Yeah, I know. My point is: all recursive calls both enter and >>>>>>>>>> detect
a repeating state.
The inner ones always see one less execution trace
than the next outer one, thus could only meet their
abort criteria after they have already been aborted.
Which indicates that they were aborted too soon, showing that
the emulation was incorrect.
Unless the outer HHH aborts its simulation after some
fixed number of correct emulations or none of the HHH
ever aborts and HHH never stops running.
But that does not make the result of the abort correct.
Not aborting will loop infinitely.
If simulating halt decider H correctly simulates its input D >>>>> until H correctly determines that its simulated D would never >>>>> stop running unless aborted
THEN H IS NECESSARILY CORRECT TO ABORT
THEN H IS NECESSARILY CORRECT TO ABORT
THEN H IS NECESSARILY CORRECT TO ABORT
It is inevitable to abort, but that does not make the simulation
correct, because:
Of every possibility that can possibly be is is absolutely
not inevitable to abort.
DDD correctly emulated by HHH is either aborted at some point
or crashes due to out-of-memory error.
Which shows that both simulations are incorrect. The aborted one and
the crashed one.
Even here your opinion is incorrect.
You just aren't very good at these things are you?
It seems that you do not quite understand the theory. When talking
about correct simulation, we can ignore memory limits.
That may be too complex for you already.
It is not relevant whether HHH must abort, but it is relevant that HHH
*does* abort and halt.
*YOU ARE NOT ALLOWED TO CHANGE THE MEANING OF THESE WORDS*
<MIT Professor Sipser agreed to ONLY these verbatim words 10/13/2022>
If simulating halt decider H correctly simulates its input D
until H correctly determines that its simulated D would never
stop running unless aborted then
H can abort its simulation of D and correctly report that D
specifies a non-halting sequence of configurations.
</MIT Professor Sipser agreed to ONLY these verbatim words 10/13/2022>
Therefore, a correct simulation of HHH, should not abort. This proves
that HHH is unable to simulate itself, because it does abort (too soon).
On 7/1/2024 1:14 PM, Fred. Zwarts wrote:
Op 01.jul.2024 om 17:56 schreef olcott:
On 7/1/2024 10:52 AM, joes wrote:
Am Mon, 01 Jul 2024 09:35:54 -0500 schrieb olcott:
On 7/1/2024 9:27 AM, Fred. Zwarts wrote:If. D does stop running though, because the H that it calls aborts the >>>> recursive emulation in order to be a decider.
Op 01.jul.2024 om 14:57 schreef olcott:
On 7/1/2024 3:27 AM, Fred. Zwarts wrote:
Op 30.jun.2024 om 19:25 schreef olcott:
On 6/30/2024 3:42 AM, joes wrote:
If simulating halt decider H correctly simulates its input D >>>>> untilUnless the outer HHH aborts its simulation after some fixedBut that does not make the result of the abort correct.
number of
correct emulations or none of the HHH ever aborts and HHH never
stops
running.
Not aborting will loop infinitely.
H correctly determines that its simulated D would never stop >>>>> running unless aborted
*In each of the following cases the abort criteria has been met*
Again a claim without evidence.
If true, the abort criteria are incorrect.
The #1 best selling author of theory of computation textbooks is wrong?
The #1 best selling author of theory of computation textbooks is wrong?
The #1 best selling author of theory of computation textbooks is wrong?
https://www.amazon.com/Introduction-Theory-Computation-Michael-Sipser/dp/113318779X/
<MIT Professor Sipser agreed to ONLY these verbatim words 10/13/2022>
If simulating halt decider H correctly simulates its input D
until H correctly determines that its simulated D would never
stop running unless aborted then
H can abort its simulation of D and correctly report that D
specifies a non-halting sequence of configurations.
</MIT Professor Sipser agreed to ONLY these verbatim words 10/13/2022>
So you don't even know what an infinite loop is?
On 7/1/2024 10:21 PM, Richard Damon wrote:
On 7/1/24 11:14 PM, olcott wrote:
On 7/1/2024 9:44 PM, Richard Damon wrote:
On 7/1/24 10:34 PM, olcott wrote:
On 7/1/2024 9:24 PM, Richard Damon wrote:
On 7/1/24 9:36 PM, olcott wrote:
On 7/1/2024 7:38 PM, Richard Damon wrote:
On 7/1/24 8:59 AM, olcott wrote:
On 7/1/2024 3:23 AM, Fred. Zwarts wrote:
Op 30.jun.2024 om 19:20 schreef olcott:
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD >>>>>>>>>>> [0000217a] e853f4ffff call 000015d2 ; call HHH(DDD) >>>>>>>>>>> [0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
It cannot possibly return, because HHH aborts itself one cycle >>>>>>>>>> too early, showing that the emulation is incorrect. If that is >>>>>>>>>> over your head, try to learn how x86 instructions work.
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD
[0000217a] e853f4ffff call 000015d2 ; call HHH(DDD) >>>>>>>>> [0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
DDD is correctly emulated by HHH which calls an
emulated HHH(DDD) to repeat the process until aborted.
CAN'T BE.
A "Correct Emulation" is one that produces the same result as
the program at the input.
Which can only possibly occur be disregarding the semantics
of the x86 language. Liars would do that ignoramuses would do
that. Everyone with the equivalent of a BSCS would know that
what I said is true.
Why do you say that? That is EXACTLY the definition of Correct
Emulation.
WELL INDOCTRINATED FALSE ASSUMPTIONS ARE NOT TRUTH.
WELL INDOCTRINATED FALSE ASSUMPTIONS ARE NOT TRUTH.
WELL INDOCTRINATED FALSE ASSUMPTIONS ARE NOT TRUTH.
And denying definitions is just lying.
It may seem that way when you don't bother to pay
attention that this definition is contradicted
by verified facts.
WHAT "Verified facts".
THe fact that DDD will halt since your HHH(DDD) retuns?
Indoctrination will cause this. The only cure is
correct reasoning by assuming that everything that
anyone ever told you about anything is possibly
false until conclusively proven otherwise.
Nope, but failure to follow the defined rules gets you kick out of the
club.
If everyone always did this then Nazi propaganda
could not possibly have any chance of success.
But THEY Lied, and to could be shown so,
Just like your statements.
void Infinite_Loop()
{
HERE: goto HERE;
}
void Infinite_Recursion()
{
Infinite_Recursion();
}
void DDD()
{
HHH(DDD);
}
Every C programmer that knows what an x86 emulator is knows
that when HHH emulates the machine language of Infinite_Loop,
Infinite_Recursion, and DDD that it must abort these emulations
so that itself can terminate normally.
SO THESE THREE INPUTS DO NOT FREAKING HALT
SO THESE THREE INPUTS DO NOT FREAKING HALT
SO THESE THREE INPUTS DO NOT FREAKING HALT
No, DDD does halt if HHH is a decider and HHH(DDD) returns.
That is the same nutty bullshit as Gödel's 1931 incompleteness
theorem. If there are no truth preserving operations in PA to
either G or ~G then G has no truthmaker in PA making G not a
truth-bearer in PA.
But there ARE a set of truth preserving operations in PA to show G, it
is just that it takes an infinite number of them, so they don't
constitute a proof.
Diagonalization conclusively proves otherwise and you know it.
Maybe the issue is that you are fundamentally a liar.
On 7/2/2024 6:30 AM, Richard Damon wrote:
On 7/1/24 11:34 PM, olcott wrote:
On 7/1/2024 10:21 PM, Richard Damon wrote:
On 7/1/24 11:14 PM, olcott wrote:
On 7/1/2024 9:44 PM, Richard Damon wrote:
On 7/1/24 10:34 PM, olcott wrote:
On 7/1/2024 9:24 PM, Richard Damon wrote:
On 7/1/24 9:36 PM, olcott wrote:
On 7/1/2024 7:38 PM, Richard Damon wrote:
On 7/1/24 8:59 AM, olcott wrote:
On 7/1/2024 3:23 AM, Fred. Zwarts wrote:
Op 30.jun.2024 om 19:20 schreef olcott:_DDD()
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD >>>>>>>>>>>>> [0000217a] e853f4ffff call 000015d2 ; call HHH(DDD) >>>>>>>>>>>>> [0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
It cannot possibly return, because HHH aborts itself one >>>>>>>>>>>> cycle too early, showing that the emulation is incorrect. If >>>>>>>>>>>> that is over your head, try to learn how x86 instructions work. >>>>>>>>>>>
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD >>>>>>>>>>> [0000217a] e853f4ffff call 000015d2 ; call HHH(DDD) >>>>>>>>>>> [0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
DDD is correctly emulated by HHH which calls an
emulated HHH(DDD) to repeat the process until aborted.
CAN'T BE.
A "Correct Emulation" is one that produces the same result as >>>>>>>>>> the program at the input.
Which can only possibly occur be disregarding the semantics
of the x86 language. Liars would do that ignoramuses would do >>>>>>>>> that. Everyone with the equivalent of a BSCS would know that >>>>>>>>> what I said is true.
Why do you say that? That is EXACTLY the definition of Correct >>>>>>>> Emulation.
WELL INDOCTRINATED FALSE ASSUMPTIONS ARE NOT TRUTH.
WELL INDOCTRINATED FALSE ASSUMPTIONS ARE NOT TRUTH.
WELL INDOCTRINATED FALSE ASSUMPTIONS ARE NOT TRUTH.
And denying definitions is just lying.
It may seem that way when you don't bother to pay
attention that this definition is contradicted
by verified facts.
WHAT "Verified facts".
THe fact that DDD will halt since your HHH(DDD) retuns?
Indoctrination will cause this. The only cure is
correct reasoning by assuming that everything that
anyone ever told you about anything is possibly
false until conclusively proven otherwise.
Nope, but failure to follow the defined rules gets you kick out of
the club.
If everyone always did this then Nazi propaganda
could not possibly have any chance of success.
But THEY Lied, and to could be shown so,
Just like your statements.
void Infinite_Loop()
{
HERE: goto HERE;
}
void Infinite_Recursion()
{
Infinite_Recursion();
}
void DDD()
{
HHH(DDD);
}
Every C programmer that knows what an x86 emulator is knows
that when HHH emulates the machine language of Infinite_Loop,
Infinite_Recursion, and DDD that it must abort these emulations
so that itself can terminate normally.
SO THESE THREE INPUTS DO NOT FREAKING HALT
SO THESE THREE INPUTS DO NOT FREAKING HALT
SO THESE THREE INPUTS DO NOT FREAKING HALT
No, DDD does halt if HHH is a decider and HHH(DDD) returns.
That is the same nutty bullshit as Gödel's 1931 incompleteness
theorem. If there are no truth preserving operations in PA to
either G or ~G then G has no truthmaker in PA making G not a
truth-bearer in PA.
But there ARE a set of truth preserving operations in PA to show G,
it is just that it takes an infinite number of them, so they don't
constitute a proof.
Diagonalization conclusively proves otherwise and you know it.
Maybe the issue is that you are fundamentally a liar.
How?
I call your bluff, show your "cards" or FOLD.
That is not the way it works, you made a false claim and I
call your bluff on this false claim. You must provide a linked
source that agrees.
But there ARE a set of truth preserving operations in PA to show G,
it is just that it takes an infinite number of them, so they don't
constitute a proof.
*This source says nothing like what you claim* https://plato.stanford.edu/entries/goedel-incompleteness/#FirIncTheCom
On 7/2/2024 5:44 PM, Richard Damon wrote:
On 7/2/24 8:39 AM, olcott wrote:
On 7/2/2024 6:30 AM, Richard Damon wrote:
On 7/1/24 11:34 PM, olcott wrote:
On 7/1/2024 10:21 PM, Richard Damon wrote:
On 7/1/24 11:14 PM, olcott wrote:
On 7/1/2024 9:44 PM, Richard Damon wrote:
On 7/1/24 10:34 PM, olcott wrote:
On 7/1/2024 9:24 PM, Richard Damon wrote:
On 7/1/24 9:36 PM, olcott wrote:
On 7/1/2024 7:38 PM, Richard Damon wrote:
On 7/1/24 8:59 AM, olcott wrote:
On 7/1/2024 3:23 AM, Fred. Zwarts wrote:
Op 30.jun.2024 om 19:20 schreef olcott:
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD >>>>>>>>>>>>>>> [0000217a] e853f4ffff call 000015d2 ; call HHH(DDD) >>>>>>>>>>>>>>> [0000217f] 83c404 add esp,+04 >>>>>>>>>>>>>>> [00002182] 5d pop ebp >>>>>>>>>>>>>>> [00002183] c3 ret
Size in bytes:(0018) [00002183]
It cannot possibly return, because HHH aborts itself one >>>>>>>>>>>>>> cycle too early, showing that the emulation is incorrect. >>>>>>>>>>>>>> If that is over your head, try to learn how x86
instructions work.
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD >>>>>>>>>>>>> [0000217a] e853f4ffff call 000015d2 ; call HHH(DDD) >>>>>>>>>>>>> [0000217f] 83c404 add esp,+04
[00002182] 5d pop ebp
[00002183] c3 ret
Size in bytes:(0018) [00002183]
DDD is correctly emulated by HHH which calls an
emulated HHH(DDD) to repeat the process until aborted. >>>>>>>>>>>>>
CAN'T BE.
A "Correct Emulation" is one that produces the same result >>>>>>>>>>>> as the program at the input.
Which can only possibly occur be disregarding the semantics >>>>>>>>>>> of the x86 language. Liars would do that ignoramuses would do >>>>>>>>>>> that. Everyone with the equivalent of a BSCS would know that >>>>>>>>>>> what I said is true.
Why do you say that? That is EXACTLY the definition of Correct >>>>>>>>>> Emulation.
WELL INDOCTRINATED FALSE ASSUMPTIONS ARE NOT TRUTH.
WELL INDOCTRINATED FALSE ASSUMPTIONS ARE NOT TRUTH.
WELL INDOCTRINATED FALSE ASSUMPTIONS ARE NOT TRUTH.
And denying definitions is just lying.
It may seem that way when you don't bother to pay
attention that this definition is contradicted
by verified facts.
WHAT "Verified facts".
THe fact that DDD will halt since your HHH(DDD) retuns?
Indoctrination will cause this. The only cure is
correct reasoning by assuming that everything that
anyone ever told you about anything is possibly
false until conclusively proven otherwise.
Nope, but failure to follow the defined rules gets you kick out of >>>>>> the club.
If everyone always did this then Nazi propaganda
could not possibly have any chance of success.
But THEY Lied, and to could be shown so,
Just like your statements.
void Infinite_Loop()
{
HERE: goto HERE;
}
void Infinite_Recursion()
{
Infinite_Recursion();
}
void DDD()
{
HHH(DDD);
}
Every C programmer that knows what an x86 emulator is knows
that when HHH emulates the machine language of Infinite_Loop, >>>>>>>>> Infinite_Recursion, and DDD that it must abort these emulations >>>>>>>>> so that itself can terminate normally.
SO THESE THREE INPUTS DO NOT FREAKING HALT
SO THESE THREE INPUTS DO NOT FREAKING HALT
SO THESE THREE INPUTS DO NOT FREAKING HALT
No, DDD does halt if HHH is a decider and HHH(DDD) returns.
That is the same nutty bullshit as Gödel's 1931 incompleteness
theorem. If there are no truth preserving operations in PA to
either G or ~G then G has no truthmaker in PA making G not a
truth-bearer in PA.
But there ARE a set of truth preserving operations in PA to show
G, it is just that it takes an infinite number of them, so they
don't constitute a proof.
Diagonalization conclusively proves otherwise and you know it.
Maybe the issue is that you are fundamentally a liar.
How?
I call your bluff, show your "cards" or FOLD.
That is not the way it works, you made a false claim and I
call your bluff on this false claim. You must provide a linked
source that agrees.
Of course that is the way it works.
You claim you can show something, and I ask you to show it.
Failure just means you admit to being a liar.
You need to show your proof, that you can form a "Diagonalization"
proof that Godel's sentence is not true.
You need to either present the proof, admit you lied that you had one,
or keep being reminded that you have been a liar and can't provide the
proof you claimed you had.
But there ARE a set of truth preserving operations in PA to show G, >>> >>> it is just that it takes an infinite number of them, so they don't >>> >>> constitute a proof.
*This source says nothing like what you claim*
https://plato.stanford.edu/entries/goedel-incompleteness/#FirIncTheCom
Because they aren't using that terminology. That doesn't make the
statement not true.
Note, they do talk about how the sentence, if it were false, could be
shown false by just showing the number that satisfies it. So, one way
to demonstrate that it IS true, is to just test EVERY number (all
countable infinite number of them) and show that none make the counter
example.
Most papers don't talk like that as we can't actually do it that way,
but it is the simple explanation that should be able to sink into your
head. If you want to show how that DOESN'T provide an infinite chain
of steps to the truth of the statement, go ahead and try.
Your problem is you like to quote from things that you don't understand.
You have no source that validates this
On 7/1/2024 10:21 PM, Richard Damon wrote:
But there ARE a set of truth preserving operations
in PA to show G, it is just that it takes an infinite number
of them, so they don't constitute a proof.
Every source says that G is proved outside of PA
and none says there are any infinite sequence of
steps in PA that derive G.
On 7/2/2024 6:03 PM, Richard Damon wrote:
On 7/2/24 6:58 PM, olcott wrote:
On 7/2/2024 5:44 PM, Richard Damon wrote:
On 7/2/24 8:39 AM, olcott wrote:
On 7/2/2024 6:30 AM, Richard Damon wrote:
On 7/1/24 11:34 PM, olcott wrote:
On 7/1/2024 10:21 PM, Richard Damon wrote:
On 7/1/24 11:14 PM, olcott wrote:
On 7/1/2024 9:44 PM, Richard Damon wrote:
On 7/1/24 10:34 PM, olcott wrote:
On 7/1/2024 9:24 PM, Richard Damon wrote:
On 7/1/24 9:36 PM, olcott wrote:
On 7/1/2024 7:38 PM, Richard Damon wrote:
On 7/1/24 8:59 AM, olcott wrote:
On 7/1/2024 3:23 AM, Fred. Zwarts wrote:
Op 30.jun.2024 om 19:20 schreef olcott:
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD >>>>>>>>>>>>>>>>> [0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04 >>>>>>>>>>>>>>>>> [00002182] 5d pop ebp >>>>>>>>>>>>>>>>> [00002183] c3 ret >>>>>>>>>>>>>>>>> Size in bytes:(0018) [00002183]
It cannot possibly return, because HHH aborts itself one >>>>>>>>>>>>>>>> cycle too early, showing that the emulation is >>>>>>>>>>>>>>>> incorrect. If that is over your head, try to learn how >>>>>>>>>>>>>>>> x86 instructions work.
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD >>>>>>>>>>>>>>> [0000217a] e853f4ffff call 000015d2 ; call HHH(DDD) >>>>>>>>>>>>>>> [0000217f] 83c404 add esp,+04 >>>>>>>>>>>>>>> [00002182] 5d pop ebp >>>>>>>>>>>>>>> [00002183] c3 ret
Size in bytes:(0018) [00002183]
DDD is correctly emulated by HHH which calls an
emulated HHH(DDD) to repeat the process until aborted. >>>>>>>>>>>>>>>
CAN'T BE.
A "Correct Emulation" is one that produces the same result >>>>>>>>>>>>>> as the program at the input.
Which can only possibly occur be disregarding the semantics >>>>>>>>>>>>> of the x86 language. Liars would do that ignoramuses would do >>>>>>>>>>>>> that. Everyone with the equivalent of a BSCS would know that >>>>>>>>>>>>> what I said is true.
Why do you say that? That is EXACTLY the definition of >>>>>>>>>>>> Correct Emulation.
WELL INDOCTRINATED FALSE ASSUMPTIONS ARE NOT TRUTH.
WELL INDOCTRINATED FALSE ASSUMPTIONS ARE NOT TRUTH.
WELL INDOCTRINATED FALSE ASSUMPTIONS ARE NOT TRUTH.
And denying definitions is just lying.
It may seem that way when you don't bother to pay
attention that this definition is contradicted
by verified facts.
WHAT "Verified facts".
THe fact that DDD will halt since your HHH(DDD) retuns?
Indoctrination will cause this. The only cure is
correct reasoning by assuming that everything that
anyone ever told you about anything is possibly
false until conclusively proven otherwise.
Nope, but failure to follow the defined rules gets you kick out >>>>>>>> of the club.
If everyone always did this then Nazi propaganda
could not possibly have any chance of success.
But THEY Lied, and to could be shown so,
Just like your statements.
void Infinite_Loop()
{
HERE: goto HERE;
}
void Infinite_Recursion()
{
Infinite_Recursion();
}
void DDD()
{
HHH(DDD);
}
Every C programmer that knows what an x86 emulator is knows >>>>>>>>>>> that when HHH emulates the machine language of Infinite_Loop, >>>>>>>>>>> Infinite_Recursion, and DDD that it must abort these emulations >>>>>>>>>>> so that itself can terminate normally.
SO THESE THREE INPUTS DO NOT FREAKING HALT
SO THESE THREE INPUTS DO NOT FREAKING HALT
SO THESE THREE INPUTS DO NOT FREAKING HALT
No, DDD does halt if HHH is a decider and HHH(DDD) returns. >>>>>>>>>>
That is the same nutty bullshit as Gödel's 1931 incompleteness >>>>>>>>> theorem. If there are no truth preserving operations in PA to >>>>>>>>> either G or ~G then G has no truthmaker in PA making G not a >>>>>>>>> truth-bearer in PA.
But there ARE a set of truth preserving operations in PA to show >>>>>>>> G, it is just that it takes an infinite number of them, so they >>>>>>>> don't constitute a proof.
Diagonalization conclusively proves otherwise and you know it.
Maybe the issue is that you are fundamentally a liar.
How?
I call your bluff, show your "cards" or FOLD.
That is not the way it works, you made a false claim and I
call your bluff on this false claim. You must provide a linked
source that agrees.
Of course that is the way it works.
You claim you can show something, and I ask you to show it.
Failure just means you admit to being a liar.
You need to show your proof, that you can form a "Diagonalization"
proof that Godel's sentence is not true.
You need to either present the proof, admit you lied that you had
one, or keep being reminded that you have been a liar and can't
provide the proof you claimed you had.
show G,But there ARE a set of truth preserving operations in PA to
don'tit is just that it takes an infinite number of them, so they
constitute a proof.
*This source says nothing like what you claim*
https://plato.stanford.edu/entries/goedel-incompleteness/#FirIncTheCom >>>>>
Because they aren't using that terminology. That doesn't make the
statement not true.
Note, they do talk about how the sentence, if it were false, could
be shown false by just showing the number that satisfies it. So, one
way to demonstrate that it IS true, is to just test EVERY number
(all countable infinite number of them) and show that none make the
counter example.
Most papers don't talk like that as we can't actually do it that
way, but it is the simple explanation that should be able to sink
into your head. If you want to show how that DOESN'T provide an
infinite chain of steps to the truth of the statement, go ahead and
try.
Your problem is you like to quote from things that you don't
understand.
You have no source that validates this
On 7/1/2024 10:21 PM, Richard Damon wrote:
But there ARE a set of truth preserving operations
in PA to show G, it is just that it takes an infinite number
of them, so they don't constitute a proof.
Every source says that G is proved outside of PA
and none says there are any infinite sequence of
steps in PA that derive G.
So, you just don't understand what the proof say then do you.
Since it is proven outside of PA to be true IN PA, then the chain must
exist.
No one else shares this correct understanding.
They all go by if it is true anywhere then it
is true everywhere.
The chain I described DOES exist in PA, and unless you can show which
step of that chain is incorrect, you are just a liar.
You are asking me to show which the step of the proof
that squares are round is incorrect.
So, Where is that Diagonalization proof, or are you just admitting you
lied about having one.
The key issue with all of these diagonalization
proofs is that they prove the self-contradictory
expressions cannot be proven never noticing that
the reason that cannot be proven is that they are
self-contradictory.
This is like proving and X cannot do a Y without
knowing that the X is a dog and the Y is give birth
to kittens.
On 7/2/2024 8:32 PM, Richard Damon wrote:
On 7/2/24 9:28 PM, olcott wrote:
On 7/2/2024 8:07 PM, Richard Damon wrote:
Note, a lot of these proofs are about a system and a meta-system
based on it, and the meta-system has been carefully constructed so
that Truths in the meta-system, that don't refernce things just in
the meta system, ARE true in the original system.
No that is merely a false assumption.
Tarski tries to get away with this exact same thing
and his proof is 100,000-fold easier to understand.
Nope, you just don't understand what Tarski is saying,
https://liarparadox.org/Tarski_247_248.pdf
https://liarparadox.org/Tarski_275_276.pdf
To the best of my current knowledge it can be
accurately summed up as this:
This sentence is not true: "This sentence is not true"
Nope.
The outer sentence in his meta-theory is true because
the inner sentence in his theory is not a truth-bearer.
I have never encountered any logician that pays any heed
what-so-ever to the notion of truth-bearer or truth-maker.
It is as if they take their incorrect foundations of logic
as inherently infallible making no attempt what-so-ever to
double check this false assumption.
The fact that you need to try to "reduce" statements, and get the
meaning wrong, just shows you lack the necessary prerequisites to
understand the logic.
It is as simple as this with Gödelization and diagonalization
if is 100% impossible to see the inference steps thus making
analysis of these steps impossible.
The Tarski proof directly provides the detailed inference steps.
So it is not that I do under understand the Gödel proof it is that
this proof is opaque completely hiding all of the important details.
So, where is that Diagonalization proof you said you had.
I think that Diagonalization is nonsense yet it is the basis that
everyone else uses. No one else finds that there is an infinite
sequence of steps in PA that does not count as a proof because
it is not finite. There simply are no steps in PA so they go to MM.
Until you provide it, or admit you lied about it, I won't help you
with your other misunderstandings.
On 7/2/2024 8:07 PM, Richard Damon wrote:
On 7/2/24 7:09 PM, olcott wrote:
On 7/2/2024 6:03 PM, Richard Damon wrote:
On 7/2/24 6:58 PM, olcott wrote:
On 7/2/2024 5:44 PM, Richard Damon wrote:
On 7/2/24 8:39 AM, olcott wrote:
On 7/2/2024 6:30 AM, Richard Damon wrote:
On 7/1/24 11:34 PM, olcott wrote:
On 7/1/2024 10:21 PM, Richard Damon wrote:
On 7/1/24 11:14 PM, olcott wrote:
On 7/1/2024 9:44 PM, Richard Damon wrote:
On 7/1/24 10:34 PM, olcott wrote:
On 7/1/2024 9:24 PM, Richard Damon wrote:
On 7/1/24 9:36 PM, olcott wrote:
On 7/1/2024 7:38 PM, Richard Damon wrote:
On 7/1/24 8:59 AM, olcott wrote:
On 7/1/2024 3:23 AM, Fred. Zwarts wrote:
Op 30.jun.2024 om 19:20 schreef olcott:
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD >>>>>>>>>>>>>>>>>>> [0000217a] e853f4ffff call 000015d2 ; call >>>>>>>>>>>>>>>>>>> HHH(DDD)
[0000217f] 83c404 add esp,+04 >>>>>>>>>>>>>>>>>>> [00002182] 5d pop ebp >>>>>>>>>>>>>>>>>>> [00002183] c3 ret >>>>>>>>>>>>>>>>>>> Size in bytes:(0018) [00002183]
It cannot possibly return, because HHH aborts itself >>>>>>>>>>>>>>>>>> one cycle too early, showing that the emulation is >>>>>>>>>>>>>>>>>> incorrect. If that is over your head, try to learn how >>>>>>>>>>>>>>>>>> x86 instructions work.
_DDD()
[00002172] 55 push ebp ; housekeeping
[00002173] 8bec mov ebp,esp ; housekeeping
[00002175] 6872210000 push 00002172 ; push DDD >>>>>>>>>>>>>>>>> [0000217a] e853f4ffff call 000015d2 ; call HHH(DDD)
[0000217f] 83c404 add esp,+04 >>>>>>>>>>>>>>>>> [00002182] 5d pop ebp >>>>>>>>>>>>>>>>> [00002183] c3 ret >>>>>>>>>>>>>>>>> Size in bytes:(0018) [00002183]
DDD is correctly emulated by HHH which calls an >>>>>>>>>>>>>>>>> emulated HHH(DDD) to repeat the process until aborted. >>>>>>>>>>>>>>>>>
CAN'T BE.
A "Correct Emulation" is one that produces the same >>>>>>>>>>>>>>>> result as the program at the input.
Which can only possibly occur be disregarding the semantics >>>>>>>>>>>>>>> of the x86 language. Liars would do that ignoramuses >>>>>>>>>>>>>>> would do
that. Everyone with the equivalent of a BSCS would know that >>>>>>>>>>>>>>> what I said is true.
Why do you say that? That is EXACTLY the definition of >>>>>>>>>>>>>> Correct Emulation.
WELL INDOCTRINATED FALSE ASSUMPTIONS ARE NOT TRUTH.
WELL INDOCTRINATED FALSE ASSUMPTIONS ARE NOT TRUTH.
WELL INDOCTRINATED FALSE ASSUMPTIONS ARE NOT TRUTH.
And denying definitions is just lying.
It may seem that way when you don't bother to pay
attention that this definition is contradicted
by verified facts.
WHAT "Verified facts".
THe fact that DDD will halt since your HHH(DDD) retuns?
Indoctrination will cause this. The only cure is
correct reasoning by assuming that everything that
anyone ever told you about anything is possibly
false until conclusively proven otherwise.
Nope, but failure to follow the defined rules gets you kick >>>>>>>>>> out of the club.
If everyone always did this then Nazi propaganda
could not possibly have any chance of success.
But THEY Lied, and to could be shown so,
Just like your statements.
void Infinite_Loop()
{
HERE: goto HERE;
}
void Infinite_Recursion()
{
Infinite_Recursion();
}
void DDD()
{
HHH(DDD);
}
Every C programmer that knows what an x86 emulator is knows >>>>>>>>>>>>> that when HHH emulates the machine language of
Infinite_Loop, Infinite_Recursion, and DDD that it must >>>>>>>>>>>>> abort these emulations
so that itself can terminate normally.
SO THESE THREE INPUTS DO NOT FREAKING HALT
SO THESE THREE INPUTS DO NOT FREAKING HALT
SO THESE THREE INPUTS DO NOT FREAKING HALT
No, DDD does halt if HHH is a decider and HHH(DDD) returns. >>>>>>>>>>>>
That is the same nutty bullshit as Gödel's 1931 incompleteness >>>>>>>>>>> theorem. If there are no truth preserving operations in PA to >>>>>>>>>>> either G or ~G then G has no truthmaker in PA making G not a >>>>>>>>>>> truth-bearer in PA.
But there ARE a set of truth preserving operations in PA to >>>>>>>>>> show G, it is just that it takes an infinite number of them, >>>>>>>>>> so they don't constitute a proof.
Diagonalization conclusively proves otherwise and you know it. >>>>>>>>> Maybe the issue is that you are fundamentally a liar.
How?
I call your bluff, show your "cards" or FOLD.
That is not the way it works, you made a false claim and I
call your bluff on this false claim. You must provide a linked
source that agrees.
Of course that is the way it works.
You claim you can show something, and I ask you to show it.
Failure just means you admit to being a liar.
You need to show your proof, that you can form a "Diagonalization" >>>>>> proof that Godel's sentence is not true.
You need to either present the proof, admit you lied that you had
one, or keep being reminded that you have been a liar and can't
provide the proof you claimed you had.
But there ARE a set of truth preserving operations in PA to >>>>>>> show G,
it is just that it takes an infinite number of them, so they >>>>>>> don't
constitute a proof.
*This source says nothing like what you claim*
https://plato.stanford.edu/entries/goedel-incompleteness/#FirIncTheCom >>>>>>>
Because they aren't using that terminology. That doesn't make the
statement not true.
Note, they do talk about how the sentence, if it were false, could >>>>>> be shown false by just showing the number that satisfies it. So,
one way to demonstrate that it IS true, is to just test EVERY
number (all countable infinite number of them) and show that none
make the counter example.
Most papers don't talk like that as we can't actually do it that
way, but it is the simple explanation that should be able to sink
into your head. If you want to show how that DOESN'T provide an
infinite chain of steps to the truth of the statement, go ahead
and try.
Your problem is you like to quote from things that you don't
understand.
You have no source that validates this
On 7/1/2024 10:21 PM, Richard Damon wrote:
But there ARE a set of truth preserving operations
in PA to show G, it is just that it takes an infinite number
of them, so they don't constitute a proof.
Every source says that G is proved outside of PA
and none says there are any infinite sequence of
steps in PA that derive G.
So, you just don't understand what the proof say then do you.
Since it is proven outside of PA to be true IN PA, then the chain
must exist.
No one else shares this correct understanding.
They all go by if it is true anywhere then it
is true everywhere.
No, either you read very poor works, or (more likely) you don't
understand what you are reading.
Note, a lot of these proofs are about a system and a meta-system based
on it, and the meta-system has been carefully constructed so that
Truths in the meta-system, that don't refernce things just in the meta
system, ARE true in the original system.
No that is merely a false assumption.
Tarski tries to get away with this exact same thing
and his proof is 100,000-fold easier to understand.
https://liarparadox.org/Tarski_247_248.pdf https://liarparadox.org/Tarski_275_276.pdf
To the best of my current knowledge it can be
accurately summed up as this:
This sentence is not true: "This sentence is not true"
The outer sentence in his meta-theory is true because
the inner sentence in his theory is not a truth-bearer.
I have never encountered any logician that pays any heed
what-so-ever to the notion of truth-bearer or truth-maker.
It is as if they take their incorrect foundations of logic
as inherently infallible making no attempt what-so-ever to
double check this false assumption.
On 7/2/2024 5:44 PM, Richard Damon wrote:
On 7/2/24 8:39 AM, olcott wrote:
On 7/2/2024 6:30 AM, Richard Damon wrote:
On 7/1/24 11:34 PM, olcott wrote:
On 7/1/2024 10:21 PM, Richard Damon wrote:
On 7/1/24 11:14 PM, olcott wrote:
On 7/1/2024 9:44 PM, Richard Damon wrote:
On 7/1/24 10:34 PM, olcott wrote:
On 7/1/2024 9:24 PM, Richard Damon wrote:
On 7/1/24 9:36 PM, olcott wrote:
On 7/1/2024 7:38 PM, Richard Damon wrote:
On 7/1/24 8:59 AM, olcott wrote:
On 7/1/2024 3:23 AM, Fred. Zwarts wrote:
Op 30.jun.2024 om 19:20 schreef olcott:
It cannot possibly return, because HHH aborts itself one >>>>>>>>>>>>>> cycle too early, showing that the emulation is incorrect. >>>>>>>>>>>>>> If that is over your head, try to learn how x86
instructions work.
Why do you say that? That is EXACTLY the definition of Correct >>>>>>>>>> Emulation.A "Correct Emulation" is one that produces the same result as >>>>>>>>>>>> the program at the input.Which can only possibly occur be disregarding the semantics of >>>>>>>>>>> the x86 language. Liars would do that ignoramuses would do >>>>>>>>>>> that. Everyone with the equivalent of a BSCS would know that >>>>>>>>>>> what I said is true.
It may seem that way when you don't bother to pay attention that >>>>>>> this definition is contradicted by verified facts.
WHAT "Verified facts".
THe fact that DDD will halt since your HHH(DDD) retuns?
No, DDD does halt if HHH is a decider and HHH(DDD) returns.That is the same nutty bullshit as Gödel's 1931 incompleteness
theorem. If there are no truth preserving operations in PA to
either G or ~G then G has no truthmaker in PA making G not a
truth-bearer in PA.
Diagonalization conclusively proves otherwise and you know it.
Maybe the issue is that you are fundamentally a liar.
You need to show your proof, that you can form a "Diagonalization"
proof that Godel's sentence is not true.
*This source says nothing like what you claim*Because they aren't using that terminology. That doesn't make the
https://plato.stanford.edu/entries/goedel-incompleteness/#FirIncTheCom
statement not true.
Note, they do talk about how the sentence, if it were false, could be
shown false by just showing the number that satisfies it. So, one way
to demonstrate that it IS true, is to just test EVERY number (all
countable infinite number of them) and show that none make the counter
example.
Most papers don't talk like that as we can't actually do it that way,
but it is the simple explanation that should be able to sink into your
head. If you want to show how that DOESN'T provide an infinite chain of
steps to the truth of the statement, go ahead and try.
Your problem is you like to quote from things that you don't
understand.
You have no source that validates this On 7/1/2024 10:21 PM, Richard
Damon wrote:
But there ARE a set of truth preserving operations in PA to show G,
it is just that it takes an infinite number of them, so they don't constitute a proof.
Every source says that G is proved outside of PA and none says there are
any infinite sequence of steps in PA that derive G.
On 7/1/2024 10:02 AM, Fred. Zwarts wrote:
Op 01.jul.2024 om 16:35 schreef olcott:
On 7/1/2024 9:27 AM, Fred. Zwarts wrote:
Op 01.jul.2024 om 14:57 schreef olcott:
On 7/1/2024 3:27 AM, Fred. Zwarts wrote:
Op 30.jun.2024 om 19:25 schreef olcott:
On 6/30/2024 3:42 AM, joes wrote:
No, I mean: why does the inner simulator repeat instead of
aborting,
the same as the outer one does?
Technically it is called detecting a repeating state.Yeah, I know. My point is: all recursive calls both enter and
detect
a repeating state.
The inner ones always see one less execution trace
than the next outer one, thus could only meet their
abort criteria after they have already been aborted.
Which indicates that they were aborted too soon, showing that the
emulation was incorrect.
Unless the outer HHH aborts its simulation after some
fixed number of correct emulations or none of the HHH
ever aborts and HHH never stops running.
But that does not make the result of the abort correct.
Not aborting will loop infinitely.
If simulating halt decider H correctly simulates its input D
until H correctly determines that its simulated D would never
stop running unless aborted
THEN H IS NECESSARILY CORRECT TO ABORT
THEN H IS NECESSARILY CORRECT TO ABORT
THEN H IS NECESSARILY CORRECT TO ABORT
It is inevitable to abort, but that does not make the simulation
correct, because:
Of every possibility that can possibly be is is absolutely
not inevitable to abort.
DDD correctly emulated by HHH is either aborted at some point
or crashes due to out-of-memory error.
You just aren't very good at these things are you?
Aborting will abort too soon. Both cases are incorrect.
It doesn't seem like you care about the truth.
There is no passing the guy in front of you if you both
continue to run at the exact same speed, he will always
be ahead of you.
But shooting his tyres is also incorrect.
On 7/1/24 11:15 AM, olcott wrote:
On 7/1/2024 10:02 AM, Fred. Zwarts wrote:
Op 01.jul.2024 om 16:35 schreef olcott:Of every possibility that can possibly be is is absolutely not
On 7/1/2024 9:27 AM, Fred. Zwarts wrote:
Op 01.jul.2024 om 14:57 schreef olcott:
On 7/1/2024 3:27 AM, Fred. Zwarts wrote:
Op 30.jun.2024 om 19:25 schreef olcott:
On 6/30/2024 3:42 AM, joes wrote:Which indicates that they were aborted too soon, showing that the >>>>>>> emulation was incorrect.
No, I mean: why does the inner simulator repeat instead ofThe inner ones always see one less execution trace than the next >>>>>>>> outer one, thus could only meet their abort criteria after they >>>>>>>> have already been aborted.
aborting,
the same as the outer one does?
Technically it is called detecting a repeating state.Yeah, I know. My point is: all recursive calls both enter and >>>>>>>>> detect a repeating state.
Unless the outer HHH aborts its simulation after some fixed number >>>>>> of correct emulations or none of the HHH ever aborts and HHH never >>>>>> stops running.
But that does not make the result of the abort correct.
Not aborting will loop infinitely.
If simulating halt decider H correctly simulates its input D
until H correctly determines that its simulated D would
never stop running unless aborted
THEN H IS NECESSARILY CORRECT TO ABORT THEN H IS NECESSARILY CORRECT
TO ABORT THEN H IS NECESSARILY CORRECT TO ABORT
It is inevitable to abort, but that does not make the simulation
correct, because:
inevitable to abort.
But only ONE *IS* the HHH that is in Halt7.c
Without that definition, DDD can't exist.
DDD correctly emulated by HHH is either aborted at some point or
crashes due to out-of-memory error.
But for DDD to exist to be correctly simulated, a SPECIFIC HHH needs to
be defined, That is the HHH In Halt7.c per you own stipulation. Since
that aborts, that is what HHH does, or you are just admitting to being a liar.
Of course, you also contradict yourself, by also saying that DDD isn't a program, because you can't let it include that code of HHH limiting what
HHH can be, in which case NO HHH can correct simulate that which isn't a program.
You just aren't very good at these things are you?
It seems the problem is at Peter's end, as he has broken his system with conttadiction, becuase he has refused to learn the meaning of the words,
lie Program, or correct simulation.
Aborting will abort too soon. Both cases are incorrect.It doesn't seem like you care about the truth.
There is no passing the guy in front of you if you both continue to >>>>>> run at the exact same speed, he will always be ahead of you.But shooting his tyres is also incorrect.
On Sat, 24 May 2025 08:21:53 -0400, Richard Damon wrote:
On 7/1/24 11:15 AM, olcott wrote:
On 7/1/2024 10:02 AM, Fred. Zwarts wrote:
Op 01.jul.2024 om 16:35 schreef olcott:Of every possibility that can possibly be is is absolutely not
On 7/1/2024 9:27 AM, Fred. Zwarts wrote:
Op 01.jul.2024 om 14:57 schreef olcott:
On 7/1/2024 3:27 AM, Fred. Zwarts wrote:
Op 30.jun.2024 om 19:25 schreef olcott:
On 6/30/2024 3:42 AM, joes wrote:Which indicates that they were aborted too soon, showing that the >>>>>>>> emulation was incorrect.
No, I mean: why does the inner simulator repeat instead of >>>>>>>>>> aborting,The inner ones always see one less execution trace than the next >>>>>>>>> outer one, thus could only meet their abort criteria after they >>>>>>>>> have already been aborted.
the same as the outer one does?
Technically it is called detecting a repeating state.Yeah, I know. My point is: all recursive calls both enter and >>>>>>>>>> detect a repeating state.
Unless the outer HHH aborts its simulation after some fixed number >>>>>>> of correct emulations or none of the HHH ever aborts and HHH never >>>>>>> stops running.
But that does not make the result of the abort correct.
Not aborting will loop infinitely.
If simulating halt decider H correctly simulates its input D >>>>> until H correctly determines that its simulated D would
never stop running unless aborted
THEN H IS NECESSARILY CORRECT TO ABORT THEN H IS NECESSARILY CORRECT >>>>> TO ABORT THEN H IS NECESSARILY CORRECT TO ABORT
It is inevitable to abort, but that does not make the simulation
correct, because:
inevitable to abort.
But only ONE *IS* the HHH that is in Halt7.c
Without that definition, DDD can't exist.
DDD correctly emulated by HHH is either aborted at some point or
crashes due to out-of-memory error.
But for DDD to exist to be correctly simulated, a SPECIFIC HHH needs to
be defined, That is the HHH In Halt7.c per you own stipulation. Since
that aborts, that is what HHH does, or you are just admitting to being a
liar.
Of course, you also contradict yourself, by also saying that DDD isn't a
program, because you can't let it include that code of HHH limiting what
HHH can be, in which case NO HHH can correct simulate that which isn't a
program.
You just aren't very good at these things are you?
It seems the problem is at Peter's end, as he has broken his system with
conttadiction, becuase he has refused to learn the meaning of the words,
lie Program, or correct simulation.
Aborting will abort too soon. Both cases are incorrect.It doesn't seem like you care about the truth.
There is no passing the guy in front of you if you both continue to >>>>>>> run at the exact same speed, he will always be ahead of you.But shooting his tyres is also incorrect.
Why are you replying to a post from January 2024? You have lost the plot, mate -- get a proper fucking hobby already.
/Flibble
Sysop: | Keyop |
---|---|
Location: | Huddersfield, West Yorkshire, UK |
Users: | 546 |
Nodes: | 16 (2 / 14) |
Uptime: | 36:27:04 |
Calls: | 10,392 |
Calls today: | 3 |
Files: | 14,064 |
Messages: | 6,417,153 |