(a) If simulating halt decider H correctly simulates its input D until H correctly determines that its simulated D could not possibly reach its
own "return" statement in a finite number of simulated steps then:
(b) H can abort its simulation of D and correctly report that D
specifies a non-halting sequence of configurations.
When it is understood that (b) is a necessary consequence of (a) and we
can see that (a) has been met then we understand that H(D,D) has
correctly determined the halt state of its input.
001 int D(int (*x)())
002 {
003 int Halt_Status = H(x, x);
004 if (Halt_Status)
005 HERE: goto HERE;
006 return Halt_Status;
007 }
008
009 int main()
010 {
011 Output("Input_Halts = ", H(D,D));
012 Output("Input_Halts = ", D(D));
013 }
*Simulating halt deciders applied to the halting theorem*
The above is fully operational code in the x86utm operating system.
Because H correctly detects that D correctly simulated by H would
continue to call H(D,D) never reaching its own "return" statement H
aborts it simulation of D and returns 0 to main() on line 011.
Because H correctly detects that D correctly simulated by H would
continue to call H(D,D) never reaching its own "return" statement H
aborts it simulation of D and returns 0 to the executed D on line 003.
straw man
An intentionally misrepresented proposition that is set up because it is easier to defeat than an opponent's real argument. https://www.lexico.com/en/definition/straw_man
Every recent rebuttal uses the strawman deception to change the subject
away from: { D correctly simulated by H } or denies that (b) is a
necessary consequence of (a).
*Simulating Halt Decider Applied to the Halting Theorem* https://www.researchgate.net/publication/364657019_Simulating_Halt_Decider_Applied_to_the_Halting_Theorem
(a) If simulating halt decider H correctly simulates its input D until H correctly determines that its simulated D could not possibly reach its
own "return" statement in a finite number of simulated steps then:
(b) H can abort its simulation of D and correctly report that D
specifies a non-halting sequence of configurations.
When it is understood that (b) is a necessary consequence of (a) and we
can see that (a) has been met then we understand that H(D,D) has
correctly determined the halt state of its input.
001 int D(int (*x)())
002 {
003 int Halt_Status = H(x, x);
004 if (Halt_Status)
005 HERE: goto HERE;
006 return Halt_Status;
007 }
008
009 int main()
010 {
011 Output("Input_Halts = ", H(D,D));
012 Output("Input_Halts = ", D(D));
013 }
*Simulating halt deciders applied to the halting theorem*
The above is fully operational code in the x86utm operating system.
Because H correctly detects that D correctly simulated by H would
continue to call H(D,D) never reaching its own "return" statement H
aborts it simulation of D and returns 0 to main() on line 011.
Because H correctly detects that D correctly simulated by H would
continue to call H(D,D) never reaching its own "return" statement H
aborts it simulation of D and returns 0 to the executed D on line 003.
straw man
An intentionally misrepresented proposition that is set up because it is easier to defeat than an opponent's real argument. https://www.lexico.com/en/definition/straw_man
Every recent rebuttal uses the strawman deception to change the subject
away from: { D correctly simulated by H } or denies that (b) is a
necessary consequence of (a).
*Simulating Halt Decider Applied to the Halting Theorem* https://www.researchgate.net/publication/364657019_Simulating_Halt_Decider_Applied_to_the_Halting_Theorem
On 2/14/2023 6:57 PM, olcott wrote:
(a) If simulating halt decider H correctly simulates its input D until H
correctly determines that its simulated D could not possibly reach its
own "return" statement in a finite number of simulated steps then:
(b) H can abort its simulation of D and correctly report that D
specifies a non-halting sequence of configurations.
When it is understood that (b) is a necessary consequence of (a) and we
can see that (a) has been met then we understand that H(D,D) has
correctly determined the halt state of its input.
001 int D(int (*x)())
002 {
003 int Halt_Status = H(x, x);
004 if (Halt_Status)
005 HERE: goto HERE;
006 return Halt_Status;
007 }
008
009 int main()
010 {
011 Output("Input_Halts = ", H(D,D));
012 Output("Input_Halts = ", D(D));
013 }
*Simulating halt deciders applied to the halting theorem*
The above is fully operational code in the x86utm operating system.
Because H correctly detects that D correctly simulated by H would
continue to call H(D,D) never reaching its own "return" statement H
aborts it simulation of D and returns 0 to main() on line 011.
Because H correctly detects that D correctly simulated by H would
continue to call H(D,D) never reaching its own "return" statement H
aborts it simulation of D and returns 0 to the executed D on line 003.
straw man
An intentionally misrepresented proposition that is set up because it is
easier to defeat than an opponent's real argument.
https://www.lexico.com/en/definition/straw_man
Every recent rebuttal uses the strawman deception to change the subject
away from: { D correctly simulated by H } or denies that (b) is a
necessary consequence of (a).
Simulating Halt decider H(D,D) computes the mapping from its inputs to
an accept or reject state based on the behavior of D correctly simulated
by H. H simulates D until H determines that D would never reach its own "return" statement in any finite number of simulated steps.
All halt deciders are intended to correctly predict the behavior of non- terminating inputs. No halt decider ever continues to simulate its
input after it has correctly detected a repeating state.
Halfwit morons can't seem to understand this. These incredibly stupid
people seem to believe that the only way to detect infinite behavior is
to continue to simulate the non-halting input forever.
People with a modicum of technical competence will understand that when
D calls H(D,D) to simulate itself again that this simulated D cannot
possibly reach its own "return" statement in any finite number of steps.
I have shown this in x86 assembly language so that it is perfectly unambiguously clear yet even highly skilled people seemed to have
totally forgotten this lost art.
H: Begin Simulation Execution Trace Stored at:113109
Address_of_H:1562
[00001d12][001130f5][001130f9] 55 push ebp ; begin D
[00001d13][001130f5][001130f9] 8bec mov ebp,esp [00001d15][001130f1][001030c5] 51 push ecx [00001d16][001130f1][001030c5] 8b4508 mov eax,[ebp+08] [00001d19][001130ed][00001d12] 50 push eax ; push address
of D
[00001d1a][001130ed][00001d12] 8b4d08 mov ecx,[ebp+08] [00001d1d][001130e9][00001d12] 51 push ecx ; push address
of D
[00001d1e][001130e5][00001d23] e83ff8ffff call 00001562 ; call H
H: Infinitely Recursive Simulation Detected Simulation Stopped
We can see that the first seven instructions of D simulated by H
precisely match the first seven instructions of the x86 source-code of
D. This conclusively proves that these instructions were simulated
correctly.
Anyone sufficiently technically competent in the x86 programming
language will agree that the above execution trace of D simulated by H
shows that D will never reach its own "return" statement.
H detects that D is calling itself with the exact same arguments that H
was called with and there are no conditional branch instructions from
the beginning of D to its call to H that can possibly escape the
repetition of this recursive simulation.
*Simulating Halt Decider Applied to the Halting Theorem*
https://www.researchgate.net/publication/364657019_Simulating_Halt_Decider_Applied_to_the_Halting_Theorem
On 2/15/2023 7:47 PM, Ben Bacarisse wrote:
Fritz Feldhase <franz.fritschee.ff@gmail.com> writes:
On Wednesday, February 15, 2023 at 10:32:19 PM UTC+1, Ben Bacarisse
wrote:
Me: do you still assert that H(P,P) == false is the "correct" answer
even though P(P) halts?
PO: Yes that is the correct answer even though P(P) halts.
Wow!
So for PO H is a "correct halt decider" even if it states that a
program P with input P _doesn't halt_, though it _halts_.
Well, what can I say?
What indeed. I think this is pretty much the only reply that should be
made to PO. He may, one day, admit that that was wrong and start to
build a new waffle mountain, but until then, its game over.
Seems that all cranks are more or less "the same" (in a certain
sense): WM, PO, JG, AP, etc.
In some way yes, but they all disagree with each other when the surface
is scratched because they all want to be the unique individual who as
seen clearly where everyone else was blind. I would not be surprised if
they all had NPD.
See:Possibly literally!
https://context.reverso.net/%C3%BCbersetzung/spanisch-englisch/loco%2C+loco >>
int D(int (*x)())
{
int Halt_Status = H(x, x);
if (Halt_Status)
HERE: goto HERE;
return Halt_Status;
}
int main()
{
Output("Input_Halts = ", H(D,D));
Output("Input_Halts = ", D(D));
}
None-the-less Ben will not lie about:
*H correctly predicts that D correctly simulated by H would never halt*
*H correctly predicts that D correctly simulated by H would never halt*
*H correctly predicts that D correctly simulated by H would never halt*
Fritz Feldhase <franz.fritschee.ff@gmail.com> writes:
On Wednesday, February 15, 2023 at 10:32:19 PM UTC+1, Ben Bacarisse wrote: >>
Me: do you still assert that H(P,P) == false is the "correct" answer
even though P(P) halts?
PO: Yes that is the correct answer even though P(P) halts.
Wow!
So for PO H is a "correct halt decider" even if it states that a
program P with input P _doesn't halt_, though it _halts_.
Well, what can I say?
What indeed. I think this is pretty much the only reply that should be
made to PO. He may, one day, admit that that was wrong and start to
build a new waffle mountain, but until then, its game over.
Seems that all cranks are more or less "the same" (in a certain
sense): WM, PO, JG, AP, etc.
In some way yes, but they all disagree with each other when the surface
is scratched because they all want to be the unique individual who as
seen clearly where everyone else was blind. I would not be surprised if
they all had NPD.
See:
https://context.reverso.net/%C3%BCbersetzung/spanisch-englisch/loco%2C+loco
Possibly literally!
On 2/15/2023 7:47 PM, Ben Bacarisse wrote:
Fritz Feldhase <franz.fritschee.ff@gmail.com> writes:
On Wednesday, February 15, 2023 at 10:32:19 PM UTC+1, Ben Bacarisse
wrote:
Me: do you still assert that H(P,P) == false is the "correct" answer
even though P(P) halts?
PO: Yes that is the correct answer even though P(P) halts.
Wow!
So for PO H is a "correct halt decider" even if it states that a
program P with input P _doesn't halt_, though it _halts_.
Well, what can I say?
What indeed. I think this is pretty much the only reply that should be
made to PO. He may, one day, admit that that was wrong and start to
build a new waffle mountain, but until then, its game over.
Seems that all cranks are more or less "the same" (in a certain
sense): WM, PO, JG, AP, etc.
In some way yes, but they all disagree with each other when the surface
is scratched because they all want to be the unique individual who as
seen clearly where everyone else was blind. I would not be surprised if
they all had NPD.
See:Possibly literally!
https://context.reverso.net/%C3%BCbersetzung/spanisch-englisch/loco%2C+loco >>
int D(int (*x)())
{
int Halt_Status = H(x, x);
if (Halt_Status)
HERE: goto HERE;
return Halt_Status;
}
int main()
{
Output("Input_Halts = ", H(D,D));
Output("Input_Halts = ", D(D));
}
None-the-less Ben will not lie about:
*H correctly predicts that D correctly simulated by H would never halt*
*H correctly predicts that D correctly simulated by H would never halt*
*H correctly predicts that D correctly simulated by H would never halt*
On 2/15/2023 8:22 PM, olcott wrote:
On 2/15/2023 7:47 PM, Ben Bacarisse wrote:
Fritz Feldhase <franz.fritschee.ff@gmail.com> writes:
On Wednesday, February 15, 2023 at 10:32:19 PM UTC+1, Ben Bacarisse
wrote:
Me: do you still assert that H(P,P) == false is the "correct" answer >>>>> even though P(P) halts?
PO: Yes that is the correct answer even though P(P) halts.
Wow!
So for PO H is a "correct halt decider" even if it states that a
program P with input P _doesn't halt_, though it _halts_.
Well, what can I say?
What indeed. I think this is pretty much the only reply that should be >>> made to PO. He may, one day, admit that that was wrong and start to
build a new waffle mountain, but until then, its game over.
Seems that all cranks are more or less "the same" (in a certain
sense): WM, PO, JG, AP, etc.
In some way yes, but they all disagree with each other when the surface
is scratched because they all want to be the unique individual who as
seen clearly where everyone else was blind. I would not be surprised if >>> they all had NPD.
See:
https://context.reverso.net/%C3%BCbersetzung/spanisch-englisch/loco%2C+loco
Possibly literally!
int D(int (*x)())
{
int Halt_Status = H(x, x);
if (Halt_Status)
HERE: goto HERE;
return Halt_Status;
}
int main()
{
Output("Input_Halts = ", H(D,D));
Output("Input_Halts = ", D(D));
}
None-the-less Ben will not lie about:
*H correctly predicts that D correctly simulated by H would never halt*
*H correctly predicts that D correctly simulated by H would never halt*
*H correctly predicts that D correctly simulated by H would never halt*
In other words because Ben is not a liar he implicitly affirms that
H(D,D) does correctly compute the mapping from its input to its reject
state on the above basis.
On 2/15/2023 8:22 PM, olcott wrote:
On 2/15/2023 7:47 PM, Ben Bacarisse wrote:
Fritz Feldhase <franz.fritschee.ff@gmail.com> writes:
On Wednesday, February 15, 2023 at 10:32:19 PM UTC+1, Ben Bacarisse
wrote:
Me: do you still assert that H(P,P) == false is the "correct" answer >>>>> even though P(P) halts?
PO: Yes that is the correct answer even though P(P) halts.
Wow!
So for PO H is a "correct halt decider" even if it states that a
program P with input P _doesn't halt_, though it _halts_.
Well, what can I say?
What indeed. I think this is pretty much the only reply that should be >>> made to PO. He may, one day, admit that that was wrong and start to
build a new waffle mountain, but until then, its game over.
Seems that all cranks are more or less "the same" (in a certain
sense): WM, PO, JG, AP, etc.
In some way yes, but they all disagree with each other when the surface
is scratched because they all want to be the unique individual who as
seen clearly where everyone else was blind. I would not be surprised if >>> they all had NPD.
See:
https://context.reverso.net/%C3%BCbersetzung/spanisch-englisch/loco%2C+loco
Possibly literally!
int D(int (*x)())
{
int Halt_Status = H(x, x);
if (Halt_Status)
HERE: goto HERE;
return Halt_Status;
}
int main()
{
Output("Input_Halts = ", H(D,D));
Output("Input_Halts = ", D(D));
}
None-the-less Ben will not lie about:
*H correctly predicts that D correctly simulated by H would never halt*
*H correctly predicts that D correctly simulated by H would never halt*
*H correctly predicts that D correctly simulated by H would never halt*
In other words because Ben is not a liar he implicitly affirms that
H(D,D) does correctly compute the mapping from its input to its reject
state on the above basis.
On 2/15/2023 8:39 PM, olcott wrote:
On 2/15/2023 8:22 PM, olcott wrote:
On 2/15/2023 7:47 PM, Ben Bacarisse wrote:
Fritz Feldhase <franz.fritschee.ff@gmail.com> writes:
On Wednesday, February 15, 2023 at 10:32:19 PM UTC+1, Ben Bacarisse
wrote:
Me: do you still assert that H(P,P) == false is the "correct" answer >>>>>> even though P(P) halts?
PO: Yes that is the correct answer even though P(P) halts.
Wow!
So for PO H is a "correct halt decider" even if it states that a
program P with input P _doesn't halt_, though it _halts_.
Well, what can I say?
What indeed. I think this is pretty much the only reply that should be >>>> made to PO. He may, one day, admit that that was wrong and start to
build a new waffle mountain, but until then, its game over.
Seems that all cranks are more or less "the same" (in a certain
sense): WM, PO, JG, AP, etc.
In some way yes, but they all disagree with each other when the surface >>>> is scratched because they all want to be the unique individual who as
seen clearly where everyone else was blind. I would not be
surprised if
they all had NPD.
See:
https://context.reverso.net/%C3%BCbersetzung/spanisch-englisch/loco%2C+loco
Possibly literally!
int D(int (*x)())
{
int Halt_Status = H(x, x);
if (Halt_Status)
HERE: goto HERE;
return Halt_Status;
}
int main()
{
Output("Input_Halts = ", H(D,D));
Output("Input_Halts = ", D(D));
}
None-the-less Ben will not lie about:
*H correctly predicts that D correctly simulated by H would never halt*
*H correctly predicts that D correctly simulated by H would never halt*
*H correctly predicts that D correctly simulated by H would never halt*
In other words because Ben is not a liar he implicitly affirms that
H(D,D) does correctly compute the mapping from its input to its reject
state on the above basis.
There are all kinds of way to weasel word around the above two verified
facts that will fool the gullible.
*None-the-less this verified fact remains irrefutable*
H(D,D) does correctly compute the mapping from its input to its reject
state on the basis that H correctly predicts that D correctly simulated
by H would never halt.
On 2/15/2023 8:39 PM, olcott wrote:
On 2/15/2023 8:22 PM, olcott wrote:
On 2/15/2023 7:47 PM, Ben Bacarisse wrote:
Fritz Feldhase <franz.fritschee.ff@gmail.com> writes:
On Wednesday, February 15, 2023 at 10:32:19 PM UTC+1, Ben Bacarisse
wrote:
Me: do you still assert that H(P,P) == false is the "correct" answer >>>>>> even though P(P) halts?
PO: Yes that is the correct answer even though P(P) halts.
Wow!
So for PO H is a "correct halt decider" even if it states that a
program P with input P _doesn't halt_, though it _halts_.
Well, what can I say?
What indeed. I think this is pretty much the only reply that should be >>>> made to PO. He may, one day, admit that that was wrong and start to
build a new waffle mountain, but until then, its game over.
Seems that all cranks are more or less "the same" (in a certain
sense): WM, PO, JG, AP, etc.
In some way yes, but they all disagree with each other when the surface >>>> is scratched because they all want to be the unique individual who as
seen clearly where everyone else was blind. I would not be
surprised if
they all had NPD.
See:
https://context.reverso.net/%C3%BCbersetzung/spanisch-englisch/loco%2C+loco
Possibly literally!
int D(int (*x)())
{
int Halt_Status = H(x, x);
if (Halt_Status)
HERE: goto HERE;
return Halt_Status;
}
int main()
{
Output("Input_Halts = ", H(D,D));
Output("Input_Halts = ", D(D));
}
None-the-less Ben will not lie about:
*H correctly predicts that D correctly simulated by H would never halt*
*H correctly predicts that D correctly simulated by H would never halt*
*H correctly predicts that D correctly simulated by H would never halt*
In other words because Ben is not a liar he implicitly affirms that
H(D,D) does correctly compute the mapping from its input to its reject
state on the above basis.
There are all kinds of way to weasel word around the above two verified
facts that will fool the gullible.
*None-the-less this verified fact remains irrefutable*
H(D,D) does correctly compute the mapping from its input to its reject
state on the basis that H correctly predicts that D correctly simulated
by H would never halt.
On 2/15/2023 9:15 PM, olcott wrote:
On 2/15/2023 8:39 PM, olcott wrote:
On 2/15/2023 8:22 PM, olcott wrote:
On 2/15/2023 7:47 PM, Ben Bacarisse wrote:In other words because Ben is not a liar he implicitly affirms that
Fritz Feldhase <franz.fritschee.ff@gmail.com> writes:
On Wednesday, February 15, 2023 at 10:32:19 PM UTC+1, Ben
Bacarisse wrote:
Me: do you still assert that H(P,P) == false is the "correct" answer >>>>>>> even though P(P) halts?
PO: Yes that is the correct answer even though P(P) halts.
Wow!
So for PO H is a "correct halt decider" even if it states that a
program P with input P _doesn't halt_, though it _halts_.
Well, what can I say?
What indeed. I think this is pretty much the only reply that
should be
made to PO. He may, one day, admit that that was wrong and start to >>>>> build a new waffle mountain, but until then, its game over.
Seems that all cranks are more or less "the same" (in a certain
sense): WM, PO, JG, AP, etc.
In some way yes, but they all disagree with each other when the
surface
is scratched because they all want to be the unique individual who as >>>>> seen clearly where everyone else was blind. I would not be
surprised if
they all had NPD.
See:
https://context.reverso.net/%C3%BCbersetzung/spanisch-englisch/loco%2C+loco
Possibly literally!
int D(int (*x)())
{
int Halt_Status = H(x, x);
if (Halt_Status)
HERE: goto HERE;
return Halt_Status;
}
int main()
{
Output("Input_Halts = ", H(D,D));
Output("Input_Halts = ", D(D));
}
None-the-less Ben will not lie about:
*H correctly predicts that D correctly simulated by H would never halt* >>>> *H correctly predicts that D correctly simulated by H would never halt* >>>> *H correctly predicts that D correctly simulated by H would never halt* >>>
H(D,D) does correctly compute the mapping from its input to its reject
state on the above basis.
There are all kinds of way to weasel word around the above two verified
facts that will fool the gullible.
*None-the-less this verified fact remains irrefutable*
H(D,D) does correctly compute the mapping from its input to its reject
state on the basis that H correctly predicts that D correctly simulated
by H would never halt.
*Finally a most important key point of agreement*
Now we are at the point where I said that I painted my house white and
people disagree on the basis that the can of paint said that the color
was eggshell.
On 2/15/23 10:28 PM, olcott wrote:
On 2/15/2023 9:15 PM, olcott wrote:
On 2/15/2023 8:39 PM, olcott wrote:
On 2/15/2023 8:22 PM, olcott wrote:
On 2/15/2023 7:47 PM, Ben Bacarisse wrote:In other words because Ben is not a liar he implicitly affirms that
Fritz Feldhase <franz.fri...@gmail.com> writes:
On Wednesday, February 15, 2023 at 10:32:19 PM UTC+1, Ben
Bacarisse wrote:
Me: do you still assert that H(P,P) == false is the "correct" answer >>>>>>> even though P(P) halts?
PO: Yes that is the correct answer even though P(P) halts.
Wow!
So for PO H is a "correct halt decider" even if it states that a >>>>>> program P with input P _doesn't halt_, though it _halts_.
Well, what can I say?
What indeed. I think this is pretty much the only reply that
should be
made to PO. He may, one day, admit that that was wrong and start to >>>>> build a new waffle mountain, but until then, its game over.
Seems that all cranks are more or less "the same" (in a certain
sense): WM, PO, JG, AP, etc.
In some way yes, but they all disagree with each other when the
surface
is scratched because they all want to be the unique individual who as >>>>> seen clearly where everyone else was blind. I would not be
surprised if
they all had NPD.
See:
https://context.reverso.net/%C3%BCbersetzung/spanisch-englisch/loco%2C+loco
Possibly literally!
int D(int (*x)())
{
int Halt_Status = H(x, x);
if (Halt_Status)
HERE: goto HERE;
return Halt_Status;
}
int main()
{
Output("Input_Halts = ", H(D,D));
Output("Input_Halts = ", D(D));
}
None-the-less Ben will not lie about:
*H correctly predicts that D correctly simulated by H would never halt* >>>> *H correctly predicts that D correctly simulated by H would never halt* >>>> *H correctly predicts that D correctly simulated by H would never halt* >>>
H(D,D) does correctly compute the mapping from its input to its reject >>> state on the above basis.
There are all kinds of way to weasel word around the above two verified
facts that will fool the gullible.
*None-the-less this verified fact remains irrefutable*
H(D,D) does correctly compute the mapping from its input to its reject
state on the basis that H correctly predicts that D correctly simulated
by H would never halt.
*Finally a most important key point of agreement*
Now we are at the point where I said that I painted my house white and people disagree on the basis that the can of paint said that the color
was eggshell.
So, you still think that your POOP is halting, because you don't know
the difference.
In computability theory, the halting problem is the problem of
determining, from a description of an arbitrary computer program and an input, whether the program will finish running, or continue to run forever. This says NOTHING about the decider being able to argue about it being
unable to simulate to a final state.
The ONLY thing that matters is the behavior of the actual machine. PERIOD.
Anything else either must be actually equivalent, so the answer is the
same, or it isn't a correct interpreation.
This is like you saying you painted the house white, but the color is actually purple.
Your idea of what "Halting" means isn't compatible with the actual
definition in all cases, and H^/P/D is one of the cases it differs. You
are just too blind to be able to tell the difference.
You may THINK its just like White vs Eggshell, but that just shows you
don't actually understand what you are talking about.
Ultimately, you have made the explicit claim that even though D(D)
Halts, that Non-Halting is the correct answer for H to give as a Halt Decider.
THAT IS WRONG. PERIOD.
Your claim just proves you are either totally ignorant, or a
pathological liar, or most likely BOTH.
On Wednesday, February 15, 2023 at 9:42:17 PM UTC-6, Richard Damon wrote:*Now that I have agreement that the following is a verified fact it*
On 2/15/23 10:28 PM, olcott wrote:
On 2/15/2023 9:15 PM, olcott wrote:
On 2/15/2023 8:39 PM, olcott wrote:
On 2/15/2023 8:22 PM, olcott wrote:
On 2/15/2023 7:47 PM, Ben Bacarisse wrote:In other words because Ben is not a liar he implicitly affirms that
Fritz Feldhase <franz.fri...@gmail.com> writes:
On Wednesday, February 15, 2023 at 10:32:19 PM UTC+1, Ben
Bacarisse wrote:
Me: do you still assert that H(P,P) == false is the "correct" answer >>>>>>>>> even though P(P) halts?
PO: Yes that is the correct answer even though P(P) halts.
Wow!
So for PO H is a "correct halt decider" even if it states that a >>>>>>>> program P with input P _doesn't halt_, though it _halts_.
Well, what can I say?
What indeed. I think this is pretty much the only reply that
should be
made to PO. He may, one day, admit that that was wrong and start to >>>>>>> build a new waffle mountain, but until then, its game over.
Seems that all cranks are more or less "the same" (in a certain >>>>>>>> sense): WM, PO, JG, AP, etc.
In some way yes, but they all disagree with each other when the
surface
is scratched because they all want to be the unique individual who as >>>>>>> seen clearly where everyone else was blind. I would not be
surprised if
they all had NPD.
See:
https://context.reverso.net/%C3%BCbersetzung/spanisch-englisch/loco%2C+loco
Possibly literally!
int D(int (*x)())
{
int Halt_Status = H(x, x);
if (Halt_Status)
HERE: goto HERE;
return Halt_Status;
}
int main()
{
Output("Input_Halts = ", H(D,D));
Output("Input_Halts = ", D(D));
}
None-the-less Ben will not lie about:
*H correctly predicts that D correctly simulated by H would never halt* >>>>>> *H correctly predicts that D correctly simulated by H would never halt* >>>>>> *H correctly predicts that D correctly simulated by H would never halt* >>>>>
H(D,D) does correctly compute the mapping from its input to its reject >>>>> state on the above basis.
There are all kinds of way to weasel word around the above two verified >>>> facts that will fool the gullible.
*None-the-less this verified fact remains irrefutable*
H(D,D) does correctly compute the mapping from its input to its reject >>>> state on the basis that H correctly predicts that D correctly simulated >>>> by H would never halt.
*Finally a most important key point of agreement*
On 2/16/2023 8:44 AM, Don Stockbauer wrote:
On Wednesday, February 15, 2023 at 9:42:17 PM UTC-6, Richard Damon wrote:*Now that I have agreement that the following is a verified fact it*
On 2/15/23 10:28 PM, olcott wrote:
On 2/15/2023 9:15 PM, olcott wrote:
On 2/15/2023 8:39 PM, olcott wrote:
On 2/15/2023 8:22 PM, olcott wrote:
On 2/15/2023 7:47 PM, Ben Bacarisse wrote:
Fritz Feldhase <franz.fri...@gmail.com> writes:
On Wednesday, February 15, 2023 at 10:32:19 PM UTC+1, Ben
Bacarisse wrote:
Me: do you still assert that H(P,P) == false is the "correct" answer
even though P(P) halts?
PO: Yes that is the correct answer even though P(P) halts.
Wow!
So for PO H is a "correct halt decider" even if it states that a >>>>>>>> program P with input P _doesn't halt_, though it _halts_.
Well, what can I say?
What indeed. I think this is pretty much the only reply that
should be
made to PO. He may, one day, admit that that was wrong and start to >>>>>>> build a new waffle mountain, but until then, its game over.
Seems that all cranks are more or less "the same" (in a certain >>>>>>>> sense): WM, PO, JG, AP, etc.
In some way yes, but they all disagree with each other when the >>>>>>> surface
is scratched because they all want to be the unique individual who as >>>>>>> seen clearly where everyone else was blind. I would not be
surprised if
they all had NPD.
See:
https://context.reverso.net/%C3%BCbersetzung/spanisch-englisch/loco%2C+loco
Possibly literally!
int D(int (*x)())
{
int Halt_Status = H(x, x);
if (Halt_Status)
HERE: goto HERE;
return Halt_Status;
}
int main()
{
Output("Input_Halts = ", H(D,D));
Output("Input_Halts = ", D(D));
}
None-the-less Ben will not lie about:
*H correctly predicts that D correctly simulated by H would never halt*
*H correctly predicts that D correctly simulated by H would never halt*
*H correctly predicts that D correctly simulated by H would never halt*
In other words because Ben is not a liar he implicitly affirms that >>>>> H(D,D) does correctly compute the mapping from its input to its reject >>>>> state on the above basis.
There are all kinds of way to weasel word around the above two verified >>>> facts that will fool the gullible.
*None-the-less this verified fact remains irrefutable*
H(D,D) does correctly compute the mapping from its input to its reject >>>> state on the basis that H correctly predicts that D correctly simulated >>>> by H would never halt.
*Finally a most important key point of agreement*
*becomes much more efficient for others to accurately evaluate my work*
*It is a verified fact that* H(D,D) does correctly compute the mapping
from its input to its reject state on the basis that H correctly
predicts that D correctly simulated by H would never halt (reach its own "return" statement and terminate normally).
The above paragraph sums up the entire essence the many thousands of
hours of work since 2004. I also show how to apply this to the Peter
Linz (Turing machine based proof in this paper.
*Simulating Halt Deciders Defeat the Halting Theorem* https://www.researchgate.net/publication/368568464_Simulating_Halt_Deciders_Defeat_the_Halting_Theorem
--
Copyright 2023 Olcott "Talent hits a target no one else can hit; Genius
hits a target no one else can see." Arthur Schopenhauer
On Thursday, February 16, 2023 at 10:59:27 AM UTC-6, olcott wrote:
On 2/16/2023 8:44 AM, Don Stockbauer wrote:
On Wednesday, February 15, 2023 at 9:42:17 PM UTC-6, Richard Damon wrote: >>>> On 2/15/23 10:28 PM, olcott wrote:*Now that I have agreement that the following is a verified fact it*
On 2/15/2023 9:15 PM, olcott wrote:
On 2/15/2023 8:39 PM, olcott wrote:
On 2/15/2023 8:22 PM, olcott wrote:
On 2/15/2023 7:47 PM, Ben Bacarisse wrote:
Fritz Feldhase <franz.fri...@gmail.com> writes:
On Wednesday, February 15, 2023 at 10:32:19 PM UTC+1, Ben
Bacarisse wrote:
Me: do you still assert that H(P,P) == false is the "correct" answerWow!
even though P(P) halts?
PO: Yes that is the correct answer even though P(P) halts. >>>>>>>>>>
So for PO H is a "correct halt decider" even if it states that a >>>>>>>>>> program P with input P _doesn't halt_, though it _halts_.
Well, what can I say?
What indeed. I think this is pretty much the only reply that >>>>>>>>> should be
made to PO. He may, one day, admit that that was wrong and start to >>>>>>>>> build a new waffle mountain, but until then, its game over.
Seems that all cranks are more or less "the same" (in a certain >>>>>>>>>> sense): WM, PO, JG, AP, etc.
In some way yes, but they all disagree with each other when the >>>>>>>>> surface
is scratched because they all want to be the unique individual who as >>>>>>>>> seen clearly where everyone else was blind. I would not be
surprised if
they all had NPD.
See:
https://context.reverso.net/%C3%BCbersetzung/spanisch-englisch/loco%2C+loco
Possibly literally!
int D(int (*x)())
{
int Halt_Status = H(x, x);
if (Halt_Status)
HERE: goto HERE;
return Halt_Status;
}
int main()
{
Output("Input_Halts = ", H(D,D));
Output("Input_Halts = ", D(D));
}
None-the-less Ben will not lie about:
*H correctly predicts that D correctly simulated by H would never halt*
*H correctly predicts that D correctly simulated by H would never halt*
*H correctly predicts that D correctly simulated by H would never halt*
In other words because Ben is not a liar he implicitly affirms that >>>>>>> H(D,D) does correctly compute the mapping from its input to its reject >>>>>>> state on the above basis.
There are all kinds of way to weasel word around the above two verified >>>>>> facts that will fool the gullible.
*None-the-less this verified fact remains irrefutable*
H(D,D) does correctly compute the mapping from its input to its reject >>>>>> state on the basis that H correctly predicts that D correctly simulated >>>>>> by H would never halt.
*Finally a most important key point of agreement*
*becomes much more efficient for others to accurately evaluate my work*
*It is a verified fact that* H(D,D) does correctly compute the mapping
from its input to its reject state on the basis that H correctly
predicts that D correctly simulated by H would never halt (reach its own
"return" statement and terminate normally).
The above paragraph sums up the entire essence the many thousands of
hours of work since 2004. I also show how to apply this to the Peter
Linz (Turing machine based proof in this paper.
*Simulating Halt Deciders Defeat the Halting Theorem*
https://www.researchgate.net/publication/368568464_Simulating_Halt_Deciders_Defeat_the_Halting_Theorem
--
Copyright 2023 Olcott "Talent hits a target no one else can hit; Genius
hits a target no one else can see." Arthur Schopenhauer
but it doesn't put food on the table.
On 2/16/2023 8:44 AM, Don Stockbauer wrote:
On Wednesday, February 15, 2023 at 9:42:17 PM UTC-6, Richard Damon wrote: >>> On 2/15/23 10:28 PM, olcott wrote:*Now that I have agreement that the following is a verified fact it*
On 2/15/2023 9:15 PM, olcott wrote:
On 2/15/2023 8:39 PM, olcott wrote:
On 2/15/2023 8:22 PM, olcott wrote:
On 2/15/2023 7:47 PM, Ben Bacarisse wrote:
Fritz Feldhase <franz.fri...@gmail.com> writes:
On Wednesday, February 15, 2023 at 10:32:19 PM UTC+1, Ben
Bacarisse wrote:
Me: do you still assert that H(P,P) == false is the "correct" >>>>>>>>>> answer
even though P(P) halts?
PO: Yes that is the correct answer even though P(P) halts.
Wow!
So for PO H is a "correct halt decider" even if it states that a >>>>>>>>> program P with input P _doesn't halt_, though it _halts_.
Well, what can I say?
What indeed. I think this is pretty much the only reply that >>>>>>>> should be
made to PO. He may, one day, admit that that was wrong and
start to
build a new waffle mountain, but until then, its game over.
Seems that all cranks are more or less "the same" (in a certain >>>>>>>>> sense): WM, PO, JG, AP, etc.
In some way yes, but they all disagree with each other when the >>>>>>>> surface
is scratched because they all want to be the unique individual >>>>>>>> who as
seen clearly where everyone else was blind. I would not be
surprised if
they all had NPD.
See:
https://context.reverso.net/%C3%BCbersetzung/spanisch-englisch/loco%2C+loco
Possibly literally!
int D(int (*x)())
{
int Halt_Status = H(x, x);
if (Halt_Status)
HERE: goto HERE;
return Halt_Status;
}
int main()
{
Output("Input_Halts = ", H(D,D));
Output("Input_Halts = ", D(D));
}
None-the-less Ben will not lie about:
*H correctly predicts that D correctly simulated by H would never >>>>>>> halt*
*H correctly predicts that D correctly simulated by H would never >>>>>>> halt*
*H correctly predicts that D correctly simulated by H would never >>>>>>> halt*
In other words because Ben is not a liar he implicitly affirms that >>>>>> H(D,D) does correctly compute the mapping from its input to its
reject
state on the above basis.
There are all kinds of way to weasel word around the above two
verified
facts that will fool the gullible.
*None-the-less this verified fact remains irrefutable*
H(D,D) does correctly compute the mapping from its input to its reject >>>>> state on the basis that H correctly predicts that D correctly
simulated
by H would never halt.
*Finally a most important key point of agreement*
*becomes much more efficient for others to accurately evaluate my work*
*It is a verified fact that* H(D,D) does correctly compute the mapping
from its input to its reject state on the basis that H correctly
predicts that D correctly simulated by H would never halt (reach its own "return" statement and terminate normally).
The above paragraph sums up the entire essence the many thousands of
hours of work since 2004. I also show how to apply this to the Peter
Linz (Turing machine based proof in this paper.
*Simulating Halt Deciders Defeat the Halting Theorem* https://www.researchgate.net/publication/368568464_Simulating_Halt_Deciders_Defeat_the_Halting_Theorem
Sysop: | Keyop |
---|---|
Location: | Huddersfield, West Yorkshire, UK |
Users: | 430 |
Nodes: | 16 (2 / 14) |
Uptime: | 122:57:04 |
Calls: | 9,059 |
Calls today: | 6 |
Files: | 13,398 |
Messages: | 6,017,143 |
Posted today: | 1 |