• Ben Bacarisse specifically targets my posts to discourage honest dialog

    From olcott@21:1/5 to All on Mon Jun 19 17:50:47 2023
    XPost: comp.theory, sci.logic

    Ben keeps trying to show that I am incorrect and I have finally found a
    way to utterly refute his rebuttal.

    The behavior of the directly executed D(D) is different than the
    behavior of D(D) correctly simulated by H because in the first case H
    has already aborted its simulation of its input and in the second case
    this has not yet occurred.

    Can D correctly simulated by H terminate normally?
    No it cannot see the details below.

    The x86utm operating system based on an open source x86 emulator. This
    system enables one C function to execute another C function in debug
    step mode. When H simulates D it creates a separate process context for
    D with its own memory, stack and virtual registers. H is able to
    simulate D simulating itself, thus the only limit to recursive
    simulations is RAM.

    // The following is written in C
    //
    01 typedef int (*ptr)(); // pointer to int function
    02 int H(ptr x, ptr y) // uses x86 emulator to simulate its input
    03
    04 int D(ptr x)
    05 {
    06 int Halt_Status = H(x, x);
    07 if (Halt_Status)
    08 HERE: goto HERE;
    09 return Halt_Status;
    10 }
    11
    12 void main()
    13 {
    14 D(D);
    15 }

    D correctly simulated by H cannot possibly terminate normally by
    reaching its own final state at line 09.

    We can easily fix what Ben has misconstrued as a contradiction by
    defining the return value of 0 from H as meaning:
    (a) the input does not halt <or>
    (b) the input is defined to have a pathological relationship to H.

    Since it is true that D was defined to do the opposite of whatever
    Boolean value that H returns H is correct to return 0.

    *Termination Analyzer H is Not Fooled by Pathological Input D* https://www.researchgate.net/publication/369971402_Termination_Analyzer_H_is_Not_Fooled_by_Pathological_Input_D


    --
    Copyright 2023 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From vallor@21:1/5 to olcott on Mon Jun 19 23:22:21 2023
    XPost: comp.theory, sci.logic

    On Mon, 19 Jun 2023 17:50:47 -0500, olcott wrote:

    thus the only limit to recursive simulations is RAM

    You might as well set an arbitrary limit on recursion, because
    that's what you are, in effect, doing.

    C'mon, back to the drawing board.

    Meanwhile, the logical fallacy you employ:

    https://infidels.org/library/modern/constructing-a-logical-argument/#nauseam

    fu2: alt.dev.null

    --
    -v

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From olcott@21:1/5 to vallor on Mon Jun 19 18:57:45 2023
    XPost: comp.theory, sci.logic

    On 6/19/2023 6:22 PM, vallor wrote:
    On Mon, 19 Jun 2023 17:50:47 -0500, olcott wrote:

    thus the only limit to recursive simulations is RAM

    You might as well set an arbitrary limit on recursion, because
    that's what you are, in effect, doing.

    C'mon, back to the drawing board.

    Meanwhile, the logical fallacy you employ:

    https://infidels.org/library/modern/constructing-a-logical-argument/#nauseam

    fu2: alt.dev.null


    I have brand new ideas in this thread that have never been properly
    reviewed.

    It is the case that when D is correctly simulated by H that D cannot
    possibly terminate normally.

    It is the case that when a termination analyzer H uses this criteria
    that it is not fooled by the pathological input D.

    It is the case that when H returns 0 this could be interpreted as
    meaning either the input does not halt or the input has defined a
    pathological relationship to H.

    It is the case that within the above definition that Ben's lost standing rebuttal utterly fails.

    *Termination Analyzer H is Not Fooled by Pathological Input D* https://www.researchgate.net/publication/369971402_Termination_Analyzer_H_is_Not_Fooled_by_Pathological_Input_D

    --
    Copyright 2023 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From olcott@21:1/5 to Ben Bacarisse on Tue Jun 20 10:03:49 2023
    XPost: comp.theory, sci.logic

    On 6/20/2023 6:48 AM, Ben Bacarisse wrote:
    Richard Damon <news.x.richarddamon@xoxy.net> writes:
    ...

    If it's all the same to you, I'd much rather PO's stalking threads
    (those where tries to get my attention) simply died a natural death.
    He's become obsessed with me ever since I stopped talking to him, and I
    don't want him encouraged.

    If you must reply, at least change the subject so that it's accurate (as above!).



    When we use the criteria:
    Can D correctly simulated by H ever terminate normally?

    After N steps of correct simulation the execution trace of D proves that
    D cannot possibly reach its final instruction and terminate normally in
    any finite number of steps.

    This criteria matches non-halting input and it also matches the cases
    where the input D has been intentionally defined to do the opposite of
    whatever Boolean value that H returns.

    When H returns 1 it means that its input halts and when H return 0
    it means that either its input does not halt or D was intentionally
    defined to do the opposite of whatever Boolean value that H returns.

    To the best of my knowledge no one has ever made this much progress on
    the halting problem's pathological input. To the best of my knowledge
    everyone else was completely stumped by the halting problem's
    pathological input.

    --
    Copyright 2023 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From olcott@21:1/5 to Ben Bacarisse on Tue Jun 20 10:06:47 2023
    XPost: sci.logic, comp.theory

    On 6/19/2023 3:08 PM, Ben Bacarisse wrote:
    Fritz Feldhase <franz.fritschee.ff@gmail.com> writes:

    On Monday, June 19, 2023 at 5:58:39 PM UTC+2, olcott wrote:

    the full semantics of the question <bla>

    Look, dumbo, we are asking the simple question: "Does D(D) halt?"

    Now, D(D) either halts or doesn't halt.

    Hence the CORRECT yes/no-answer to the question "Does D(D) halt?" is
    "yes" iff D(D) halts and "no" if D(D) doesn't halt.

    Just a reminder that you are arguing with someone who has declared that
    the wrong answer is the right one:

    Me: "do you still assert that [...] false is the "correct" answer even
    though P(P) halts?"

    PO: Yes that is the correct answer even though P(P) halts.

    (Back then, D was called P.)

    This was not a slip of the tongue. He has been quite clear that he is talking about something other than what the world calls halting. It's
    about what /would/ happen if the program were slight different, not
    about what actually happens:

    PO: "A non-halting computation is every computation that never halts
    unless its simulation is aborted. This maps to every element of the
    conventional halting problem set of non-halting computations and a
    few more."

    He has been (eventually) perfectly clear -- PO's "Other Halting" is not halting, which is why false can be the correct answer for some halting computations. The only mystery is why anyone still wants to talk about
    POOH.


    Stop doing this Ben !!!

    When we use the criteria:
    Can D correctly simulated by H ever terminate normally?

    After N steps of correct simulation the execution trace of D proves that
    D cannot possibly reach its final instruction and terminate normally in
    any finite number of steps.

    This criteria matches non-halting input and it also matches the cases
    where the input D has been intentionally defined to do the opposite of
    whatever Boolean value that H returns.

    When H returns 1 it means that its input halts and when H return 0
    it means that either its input does not halt or D was intentionally
    defined to do the opposite of whatever Boolean value that H returns.

    To the best of my knowledge no one has ever made this much progress on
    the halting problem's pathological input. To the best of my knowledge
    everyone else was completely stumped by the halting problem's
    pathological input.


    --
    Copyright 2023 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From olcott@21:1/5 to All on Tue Jun 20 09:44:51 2023
    XPost: sci.logic, comp.theory

    QUIT DOING THIS Ben Bacarisse


    --
    Copyright 2023 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From olcott@21:1/5 to All on Tue Jun 20 09:45:47 2023
    XPost: sci.logic, comp.theory

    QUIT DOING THIS Ben Bacarisse

    --
    Copyright 2023 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From olcott@21:1/5 to All on Tue Jun 20 09:46:30 2023
    XPost: sci.logic, comp.theory

    QUIT DOING THIS Ben Bacarisse

    --
    Copyright 2023 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Richard Damon@21:1/5 to olcott on Tue Jun 20 11:48:25 2023
    XPost: sci.logic, comp.theory

    On 6/20/23 11:06 AM, olcott wrote:
    On 6/19/2023 3:08 PM, Ben Bacarisse wrote:
    Fritz Feldhase <franz.fritschee.ff@gmail.com> writes:

    On Monday, June 19, 2023 at 5:58:39 PM UTC+2, olcott wrote:

    the full semantics of the question <bla>

    Look, dumbo, we are asking the simple question: "Does D(D) halt?"

    Now, D(D) either halts or doesn't halt.

    Hence the CORRECT yes/no-answer to the question "Does D(D) halt?" is
    "yes" iff D(D) halts and "no" if D(D) doesn't halt.

    Just a reminder that you are arguing with someone who has declared that
    the wrong answer is the right one:

    Me: "do you still assert that [...] false is the "correct" answer even
         though P(P) halts?"

    PO: Yes that is the correct answer even though P(P) halts.

    (Back then, D was called P.)

    This was not a slip of the tongue.  He has been quite clear that he is
    talking about something other than what the world calls halting.  It's
    about what /would/ happen if the program were slight different, not
    about what actually happens:

    PO: "A non-halting computation is every computation that never halts
         unless its simulation is aborted.  This maps to every element of the
         conventional halting problem set of non-halting computations and a >>      few more."

    He has been (eventually) perfectly clear -- PO's "Other Halting" is not
    halting, which is why false can be the correct answer for some halting
    computations.  The only mystery is why anyone still wants to talk about
    POOH.


    Stop doing this Ben !!!

    When we use the criteria:
    Can D correctly simulated by H ever terminate normally?

    So you are ADMITTING to working on a different problem, and lying about
    what you are doing.

    Ben is just pointing out the ERRORS in your logic

    The fact you can't see that just shows your lack of understanding.

    Just because you don't understand something doesn't make it
    "inconsistent" or "invalid", the fact that only YOU don't understand it
    shows that the problem is with you.



    After N steps of correct simulation the execution trace of D proves that
    D cannot possibly reach its final instruction and terminate normally in
    any finite number of steps.

    This criteria matches non-halting input and it also matches the cases
    where the input D has been intentionally defined to do the opposite of whatever Boolean value that H returns.

    When H returns 1 it means that its input halts and when H return 0
    it means that either its input does not halt or D was intentionally
    defined to do the opposite of whatever Boolean value that H returns.

    To the best of my knowledge no one has ever made this much progress on
    the halting problem's pathological input. To the best of my knowledge everyone else was completely stumped by the halting problem's
    pathological input.



    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From olcott@21:1/5 to Ben Bacarisse on Tue Jun 20 12:25:28 2023
    XPost: comp.theory, sci.logic

    Quit doing that Ben !!!
    Quit doing that Ben !!!
    Quit doing that Ben !!!
    Quit doing that Ben !!!
    Quit doing that Ben !!!
    Quit doing that Ben !!!
    Quit doing that Ben !!!

    On 6/20/2023 11:02 AM, Ben Bacarisse wrote:
    Richard Damon <Richard@Damon-Family.org> writes:

    On 6/19/2023 3:08 PM, Ben Bacarisse wrote:

    Me: "do you still assert that [...] false is the "correct" answer even >>>>      though P(P) halts?"

    PO: Yes that is the correct answer even though P(P) halts.
    <cut>
    This was not a slip of the tongue.  He has been quite clear that he is >>>> talking about something other than what the world calls halting.  It's >>>> about what /would/ happen if the program were slight different, not
    about what actually happens:

    PO: "A non-halting computation is every computation that never halts
         unless its simulation is aborted.  This maps to every element of the
         conventional halting problem set of non-halting computations and a
         few more."

    Ben is just pointing out the ERRORS in your logic

    I don't think I pointed to any errors of logic. I just quoted PO so
    that readers can see what he's talking about.

    Why do you keep making posts with personally derogatory subject lines?
    You are just amplifying his nasty voice.



    --
    Copyright 2023 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)