• Re: DD correctly emulated by HHH --- Totally ignoring invalid rebuttals

    From Fred. Zwarts@21:1/5 to All on Tue Mar 4 10:14:29 2025
    Op 04.mrt.2025 om 04:07 schreef olcott:
    int DD()
    {
      int Halt_Status = HHH(DD);
      if (Halt_Status)
        HERE: goto HERE;
      return Halt_Status;
    }

    _DD()
    [00002133] 55         push ebp      ; housekeeping
    [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.
    I wonder why Olcott keeps repeating that HHH fails to reach the 'ret' instruction, where the direct execution or world-class simulators have
    no problem to reach the 'ret' instruction of exactly the same finite
    string as input.
    Is he proud of this failure of his HHH?
    Why doesn't he change his HHH, e.g. by simulating the call to HHH with a replacement with the return value of HHH, so that he can reach the 'ret' instruction? It is such a simple modification and it will fix at least
    the problem that the simulation does not reach the 'ret' instruction.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Tue Mar 4 10:17:02 2025
    Op 04.mrt.2025 om 04:50 schreef olcott:
    On 3/3/2025 9:33 PM, dbush wrote:
    On 3/3/2025 10:07 PM, olcott wrote:
    int DD()
    {
       int Halt_Status = HHH(DD);
       if (Halt_Status)
         HERE: goto HERE;
       return Halt_Status;
    }

    _DD()
    [00002133] 55         push ebp      ; housekeeping
    [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local
    [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.

    The only valid rebuttal is to show all of the steps of
    exactly how DD correctly emulated by HHH reaches its
    own "ret" instruction.


    Suppose we accept that HHH is able to correctly determine that
    replacing the code of HHH with an unconditional simulator and running
    HHH(DD) will not halt.

    Then what?

    That is not a valid rebuttal and your paraphrase of
    these words is inaccurate:

    DD correctly emulated by HHH cannot possibly reach
    its own "ret" instruction and terminate normally.
    Why are you repeating the failure of HHH to reach the 'ret' instruction?
    Fix HHH so that it does reach it. That can be done by not aborting the
    call to HHH, but replacing this call with the return value of HHH.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Mikko@21:1/5 to olcott on Tue Mar 4 12:36:36 2025
    On 2025-03-04 03:07:56 +0000, olcott said:

    int DD()
    {
    int Halt_Status = HHH(DD);
    if (Halt_Status)
    HERE: goto HERE;
    return Halt_Status;
    }

    _DD()
    [00002133] 55 push ebp ; housekeeping
    [00002134] 8bec mov ebp,esp ; housekeeping
    [00002136] 51 push ecx ; make space for local
    [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404 add esp,+04
    [00002144] 8945fc mov [ebp-04],eax
    [00002147] 837dfc00 cmp dword [ebp-04],+00
    [0000214b] 7402 jz 0000214f
    [0000214d] ebfe jmp 0000214d
    [0000214f] 8b45fc mov eax,[ebp-04]
    [00002152] 8be5 mov esp,ebp
    [00002154] 5d pop ebp
    [00002155] c3 ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.

    The only valid rebuttal is to show all of the steps of
    exactly how DD correctly emulated by HHH reaches its
    own "ret" instruction.

    The question whether DD emulated by HHH exists is too uninteresting that
    it would need a rebuttal, and so is the question that does it reach its
    "ret" instruction if it exsists.

    Of course the question is not well posed as the exact meanings of
    "HHH" and "cannot" are not specifies and therefore permit different interpretations.

    --
    Mikko

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Tue Mar 4 16:08:31 2025
    Op 04.mrt.2025 om 15:17 schreef olcott:
    On 3/4/2025 3:14 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 04:07 schreef olcott:
    int DD()
    {
       int Halt_Status = HHH(DD);
       if (Halt_Status)
         HERE: goto HERE;
       return Halt_Status;
    }

    _DD()
    [00002133] 55         push ebp      ; housekeeping
    [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local
    [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.
    I wonder why Olcott keeps repeating that HHH fails to reach the 'ret'
    instruction, where the direct execution or world-class simulators have
    no problem to reach the 'ret' instruction of exactly the same finite
    string as input.

    The only valid rebuttal is to show all of the steps of
    exactly how DD correctly emulated by HHH reaches its
    own "ret" instruction.

    And that is exactly what Olcott does not show.
    So, my claim remains: HHH fails to reach the 'ret' instruction, where
    the direct execution and some world-class simulators have no problem to
    reach it.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From joes@21:1/5 to All on Tue Mar 4 15:38:38 2025
    Am Tue, 04 Mar 2025 08:21:39 -0600 schrieb olcott:
    On 3/4/2025 4:06 AM, Bonita Montero wrote:
    Am 04.03.2025 um 04:07 schrieb olcott:

    DD correctly emulated by HHH cannot possibly reach its own "ret"
    instruction and terminate normally.
    The only valid rebuttal is to show all of the steps of exactly how DD
    correctly emulated by HHH reaches its own "ret" instruction.
    You're wrong; your program will never stop - like your halting problem
    investigations.
    I am not wrong and no one can show that I wrong
    The only valid rebuttal is to show all of the steps of exactly how DD correctly emulated by HHH reaches its own "ret" instruction. NO ONE CAN
    DO THAT BECAUSE I AM CORRECT
    Cool. Now that you've made your point, would you please shut up?

    --
    Am Sat, 20 Jul 2024 12:35:31 +0000 schrieb WM in sci.math:
    It is not guaranteed that n+1 exists for every n.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From joes@21:1/5 to All on Tue Mar 4 18:44:41 2025
    Am Tue, 04 Mar 2025 10:11:30 -0600 schrieb olcott:
    On 3/4/2025 9:08 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 15:17 schreef olcott:
    On 3/4/2025 3:14 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 04:07 schreef olcott:

    DD correctly emulated by HHH cannot possibly reach its own "ret"
    instruction and terminate normally.
    I wonder why Olcott keeps repeating that HHH fails to reach the 'ret'
    instruction, where the direct execution or world-class simulators
    have no problem to reach the 'ret' instruction of exactly the same
    finite string as input.
    The only valid rebuttal is to show all of the steps of exactly how DD
    correctly emulated by HHH reaches its own "ret" instruction.
    And that is exactly what Olcott does not show.
    Likewise I never attempt to show exactly how all squares are round.

    So, my claim remains: HHH fails to reach the 'ret' instruction, where
    the direct execution and some world-class simulators have no problem to
    reach it.
    DD calls its own emulator when emulated by HHH.
    DD DOES NOT call its own emulator when emulated by HHH1.
    DD DOES NOT call its own emulator when directly executed.
    DD always calls HHH.

    Assuming that the pathological relationship between HHH and DD has no
    effect on the behavior of DD when it is easily proven that it does IS
    STUPID.
    That's the problem of whatever is simulating DD, if anything.

    --
    Am Sat, 20 Jul 2024 12:35:31 +0000 schrieb WM in sci.math:
    It is not guaranteed that n+1 exists for every n.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From joes@21:1/5 to All on Tue Mar 4 18:42:53 2025
    Am Tue, 04 Mar 2025 10:18:09 -0600 schrieb olcott:
    On 3/4/2025 9:38 AM, joes wrote:
    Am Tue, 04 Mar 2025 08:21:39 -0600 schrieb olcott:
    On 3/4/2025 4:06 AM, Bonita Montero wrote:
    Am 04.03.2025 um 04:07 schrieb olcott:

    DD correctly emulated by HHH cannot possibly reach its own "ret"
    instruction and terminate normally.
    The only valid rebuttal is to show all of the steps of exactly how
    DD correctly emulated by HHH reaches its own "ret" instruction.
    You're wrong; your program will never stop - like your halting
    problem investigations.
    I am not wrong and no one can show that I wrong The only valid
    rebuttal is to show all of the steps of exactly how DD correctly
    emulated by HHH reaches its own "ret" instruction. NO ONE CAN DO THAT
    BECAUSE I AM CORRECT
    Cool. Now that you've made your point, would you please shut up?
    Agree that I am correct or prove that I am wrong.
    I MUST HAVE CLOSURE!!!
    I have bad news for you.

    --
    Am Sat, 20 Jul 2024 12:35:31 +0000 schrieb WM in sci.math:
    It is not guaranteed that n+1 exists for every n.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Richard Damon@21:1/5 to olcott on Tue Mar 4 18:45:16 2025
    On 3/4/25 11:11 AM, olcott wrote:
    On 3/4/2025 9:08 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 15:17 schreef olcott:
    On 3/4/2025 3:14 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 04:07 schreef olcott:
    int DD()
    {
       int Halt_Status = HHH(DD);
       if (Halt_Status)
         HERE: goto HERE;
       return Halt_Status;
    }

    _DD()
    [00002133] 55         push ebp      ; housekeeping
    [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local >>>>> [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.
    I wonder why Olcott keeps repeating that HHH fails to reach the
    'ret' instruction, where the direct execution or world-class
    simulators have no problem to reach the 'ret' instruction of exactly
    the same finite string as input.

    The only valid rebuttal is to show all of the steps of
    exactly how DD correctly emulated by HHH reaches its
    own "ret" instruction.

    And that is exactly what Olcott does not show.

    Likewise I never attempt to show exactly how
    all squares are round.

    So, my claim remains: HHH fails to reach the 'ret' instruction, where
    the direct execution and some world-class simulators have no problem
    to reach it.

    DD calls its own emulator when emulated by HHH.
    DD DOES NOT call its own emulator when emulated by HHH1.
    DD DOES NOT call its own emulator when directly executed.

    Which just show your stupidity, as DD doesn't HAVE its own emulator, and
    CAN'T know who or if it is being emulated.

    Your claims are just based on the insain definition your truth fairy has
    made up for you.


    Assuming that the pathological relationship between HHH
    and DD has no effect on the behavior of DD when it is
    easily proven that it does IS STUPID.


    So, prove it does. What instruction, actully correctly emulated by HHH
    differs from the trace of DD directly run or emulated by a emulator that finishs, like HHH1.

    WHen we actually look at it, we see that the behavior is exactly the
    same until HHH aborts its emulation or uses a private unlisted input
    that shows it isn't a pure function.

    Sorry, you continued lack of an ability to show this just proves you
    KNOW you are lying, or are so stupid that you can't understand what
    truth actually is.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Richard Damon@21:1/5 to dbush on Tue Mar 4 23:44:53 2025
    On 3/4/25 8:52 PM, dbush wrote:
    On 3/4/2025 3:14 PM, dbush wrote:
    On 3/4/2025 2:58 PM, olcott wrote:
    On 3/4/2025 1:33 PM, dbush wrote:
    On 3/4/2025 2:20 PM, olcott wrote:
    On 3/4/2025 12:44 PM, joes wrote:
    Am Tue, 04 Mar 2025 10:11:30 -0600 schrieb olcott:
    On 3/4/2025 9:08 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 15:17 schreef olcott:
    On 3/4/2025 3:14 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 04:07 schreef olcott:

    DD correctly emulated by HHH cannot possibly reach its own "ret" >>>>>>>>>>> instruction and terminate normally.
    I wonder why Olcott keeps repeating that HHH fails to reach >>>>>>>>>> the 'ret'
    instruction, where the direct execution or world-class simulators >>>>>>>>>> have no problem to reach the 'ret' instruction of exactly the >>>>>>>>>> same
    finite string as input.
    The only valid rebuttal is to show all of the steps of exactly >>>>>>>>> how DD
    correctly emulated by HHH reaches its own "ret" instruction.
    And that is exactly what Olcott does not show.
    Likewise I never attempt to show exactly how all squares are round. >>>>>>>
    So, my claim remains: HHH fails to reach the 'ret' instruction, >>>>>>>> where
    the direct execution and some world-class simulators have no
    problem to
    reach it.
    DD calls its own emulator when emulated by HHH.
    DD DOES NOT call its own emulator when emulated by HHH1.
    DD DOES NOT call its own emulator when directly executed.

    DD always calls HHH.


    Thus only has a pathological relationship that changes its
    behavior when the code of HHH is replaced with an unconditional
    simulator and HHH(DD) is run

    Well of course the behavior changes if you change the code

    DD is the exact same sequence of machine code bytes
    executed in three different execution contexts.

    That would mean that no_numbers_greater_than_10 is the exact same
    sequence of machine code bytes executed in different execution
    contexts, and no_numbers_greater_than_10 simulated by F can't reach
    its own "ret" instruction, therefore no_numbers_greater_than_10 is
    correctly reported as non-halting, and because it doesn't halt we can
    conclude that there is no natural number greater than 10.

    Agreed?  If not, explain why the above is wrong.  Failure to do so,
    either in your next response to this message or within 1 hour of your
    next post in this newsgroup, will be taken as your on-the-record
    admission that the above is correct and that you therefore believe
    that no natural number exists that is greater than 10.


    Let The Record Show that Peter Olcott made the following post in this newsgroup:

    On 3/4/2025 7:34 PM, olcott wrote:

    It is not my stupidity it is your dishonestly using
    the straw-man deception to change the subject away from:

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.

    And more than one hour has passed since this posting and he has not
    responded to this post.


    Since you haven't posted answer to challenges for YEARS about your
    errors, you are just being a hypocrite.

    He has therefore satisfied the requirements listed above for admitting
    the above asserted statement is correct.

    And thus you admit by example that you have agreed that you argument is
    flawed an based on lies.


    Therefore:

    Let The Record Show:

    That Peter Olcott has officially admitted:

    That no_numbers_greater_than_10 simulated by F can't reach its own "ret" instruction, therefore no_numbers_greater_than_10 is correctly reported
    as non-halting, and because it doesn't halt we can conclude that there
    is no natural number greater than 10.

    And that he believes the above to be TRUE.


    And you belive that strawman are valid arguments and that you disbeleive
    your own proofs that it is impossible for HHH to correctly simulate its
    input and return an answer.

    And thus you claim that it does is just a lie.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Richard Damon@21:1/5 to olcott on Tue Mar 4 23:44:59 2025
    On 3/4/25 7:39 PM, olcott wrote:
    On 3/4/2025 5:45 PM, Richard Damon wrote:
    On 3/4/25 9:17 AM, olcott wrote:
    On 3/4/2025 3:14 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 04:07 schreef olcott:
    int DD()
    {
       int Halt_Status = HHH(DD);
       if (Halt_Status)
         HERE: goto HERE;
       return Halt_Status;
    }

    _DD()
    [00002133] 55         push ebp      ; housekeeping
    [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local >>>>> [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.
    I wonder why Olcott keeps repeating that HHH fails to reach the
    'ret' instruction, where the direct execution or world-class
    simulators have no problem to reach the 'ret' instruction of exactly
    the same finite string as input.

    The only valid rebuttal is to show all of the steps of
    exactly how DD correctly emulated by HHH reaches its
    own "ret" instruction.

    No,

    Meaning:
    (a) You don't have a clue how to do this all of your
    rebuttals have been pure bluster with zero technical
    competence behind them.

    (b) You know that I am correct and are simply lying.


    Nope, it just proves that you can't understand that you yourself proved
    that the criteria is impossible to meet, and thus, any HHH that answers,
    could not have done a correct simulation.

    All you are showing is you are so stupid you can't see that you logic is
    just invalid, and you logic is actually based on the use of fallacies.

    That you call my statments "lies" when you can't actually defend your
    own, just shows how stupid you are and how little you care about actual
    facts.

    Show a backing to your clains, or just STFU. Your appeal to yourself as athority just shows how utterly stupid you are.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Richard Damon@21:1/5 to olcott on Tue Mar 4 23:45:01 2025
    On 3/4/25 7:42 PM, olcott wrote:
    On 3/4/2025 5:45 PM, Richard Damon wrote:
    On 3/4/25 9:32 AM, olcott wrote:
    On 3/4/2025 6:29 AM, Richard Damon wrote:
    On 3/3/25 10:07 PM, olcott wrote:
    int DD()
    {
       int Halt_Status = HHH(DD);
       if (Halt_Status)
         HERE: goto HERE;
       return Halt_Status;
    }

    _DD()
    [00002133] 55         push ebp      ; housekeeping
    [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local >>>>> [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.

    *Proves that the input to HHH(DD) can be rejected as non-halting*

    No, it proves that the HHH that rejects the input, didn't do a correct
    simulation, and thus was looking at the wrong input, because you don't
    understand what a program is.

    DD only is non-halting if *THE* HHH (and there is only one at any
    time) never aborts. SInce HHH musts abort its emulation to "reject"
    the input, it proves it didn't do the needed correct emulation, and
    you are shown to be just a blantant liar.



    And the HHH that correctly emulated DD, can't be a decider and answer. >>>>
    Also. "the HHH", defined in your Halt7.c doesn't do that,

    The only valid rebuttal is to show all of the steps of
    exactly how DD correctly emulated by HHH reaches its
    own "ret" instruction.

    Failing to provide the above proves that you are clueless
    about this code.


    Nope, I have shown why your logic is wrong,

    If that was true you could show this with
    something besides rhetoric and double-talk.


    That you call all I say as just rhetoric just shows how stupid you are.

    WHere is a reference to you criteria as been valid?

    Why do you ignore the actual definition of a Halt Decider / Termination Analyzer?

    You do understand that pure simulation can not work for Termination
    Analysis (except for the special case of no input, where it is just the
    same as Halt Deciding) as you need to prove for *ALL POSSIBLE* inputs,
    which can not be done by simple simulation/emulation.

    You just don't understand what you are talking about.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Richard Damon@21:1/5 to olcott on Wed Mar 5 00:07:38 2025
    On 3/4/25 11:48 PM, olcott wrote:
    On 3/4/2025 10:44 PM, Richard Damon wrote:
    On 3/4/25 7:34 PM, olcott wrote:
    On 3/4/2025 5:45 PM, Richard Damon wrote:
    On 3/4/25 11:11 AM, olcott wrote:
    On 3/4/2025 9:08 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 15:17 schreef olcott:
    On 3/4/2025 3:14 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 04:07 schreef olcott:
    int DD()
    {
       int Halt_Status = HHH(DD);
       if (Halt_Status)
         HERE: goto HERE;
       return Halt_Status;
    }

    _DD()
    [00002133] 55         push ebp      ; housekeeping >>>>>>>>> [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local
    [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.
    I wonder why Olcott keeps repeating that HHH fails to reach the >>>>>>>> 'ret' instruction, where the direct execution or world-class
    simulators have no problem to reach the 'ret' instruction of
    exactly the same finite string as input.

    The only valid rebuttal is to show all of the steps of
    exactly how DD correctly emulated by HHH reaches its
    own "ret" instruction.

    And that is exactly what Olcott does not show.

    Likewise I never attempt to show exactly how
    all squares are round.

    So, my claim remains: HHH fails to reach the 'ret' instruction,
    where the direct execution and some world-class simulators have no >>>>>> problem to reach it.

    DD calls its own emulator when emulated by HHH.
    DD DOES NOT call its own emulator when emulated by HHH1.
    DD DOES NOT call its own emulator when directly executed.

    Which just show your stupidity, as DD doesn't HAVE its own emulator,
    and CAN'T know who or if it is being emulated.


    It is not my stupidity it is your dishonestly using
    the straw-man deception to change the subject away from:

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.



    WHich is the strawman, that you are too stupid to recogines.


    I will show that it is not straw-man after you quit
    dodging that point.


    Wrong order, it is a strawman until you can show evidence otherwise.

    SInce by the DEFINITION, it is incorrect, you are just stuck.

    Note, I agree that your hypothetical HHH that does a correct emulation
    will create a hypothitical DD that will never return, but said HHH never answers so isn't a decider.

    The problem is you need to have two different programs HHH in the same locations of memory that do different things, which is impossible.

    Your failure to prove it possible (and that claim is just impossible)
    just shows you are just a liar working with strawmen.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Richard Damon@21:1/5 to olcott on Wed Mar 5 00:08:38 2025
    On 3/4/25 11:53 PM, olcott wrote:
    On 3/4/2025 10:45 PM, Richard Damon wrote:
    On 3/4/25 7:42 PM, olcott wrote:
    On 3/4/2025 5:45 PM, Richard Damon wrote:
    On 3/4/25 9:32 AM, olcott wrote:
    On 3/4/2025 6:29 AM, Richard Damon wrote:
    On 3/3/25 10:07 PM, olcott wrote:
    int DD()
    {
       int Halt_Status = HHH(DD);
       if (Halt_Status)
         HERE: goto HERE;
       return Halt_Status;
    }

    _DD()
    [00002133] 55         push ebp      ; housekeeping
    [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local >>>>>>> [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.

    *Proves that the input to HHH(DD) can be rejected as non-halting*

    No, it proves that the HHH that rejects the input, didn't do a
    correct simulation, and thus was looking at the wrong input, because
    you don't understand what a program is.

    DD only is non-halting if *THE* HHH (and there is only one at any
    time) never aborts. SInce HHH musts abort its emulation to "reject"
    the input, it proves it didn't do the needed correct emulation, and
    you are shown to be just a blantant liar.



    And the HHH that correctly emulated DD, can't be a decider and
    answer.

    Also. "the HHH", defined in your Halt7.c doesn't do that,

    The only valid rebuttal is to show all of the steps of
    exactly how DD correctly emulated by HHH reaches its
    own "ret" instruction.

    Failing to provide the above proves that you are clueless
    about this code.


    Nope, I have shown why your logic is wrong,

    If that was true you could show this with
    something besides rhetoric and double-talk.


    That you call all I say as just rhetoric just shows how stupid you are.


    DD correctly emulated by HHH cannot possibly reach
    its own "ret" instruction and terminate normally.
    AND YOU CAN'T SHOW OTHERWISE



    Right, but the HHH that does that doesn't answer, and there is only one
    HHH in existance at a time in the given memory locations, so you claim
    is worthless and based on lies.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Wed Mar 5 09:58:34 2025
    Op 04.mrt.2025 om 17:11 schreef olcott:
    On 3/4/2025 9:08 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 15:17 schreef olcott:
    On 3/4/2025 3:14 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 04:07 schreef olcott:
    int DD()
    {
       int Halt_Status = HHH(DD);
       if (Halt_Status)
         HERE: goto HERE;
       return Halt_Status;
    }

    _DD()
    [00002133] 55         push ebp      ; housekeeping
    [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local >>>>> [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.
    I wonder why Olcott keeps repeating that HHH fails to reach the
    'ret' instruction, where the direct execution or world-class
    simulators have no problem to reach the 'ret' instruction of exactly
    the same finite string as input.

    The only valid rebuttal is to show all of the steps of
    exactly how DD correctly emulated by HHH reaches its
    own "ret" instruction.

    And that is exactly what Olcott does not show.

    Likewise I never attempt to show exactly how
    all squares are round.

    But it is very similar.


    So, my claim remains: HHH fails to reach the 'ret' instruction, where
    the direct execution and some world-class simulators have no problem
    to reach it.

    DD calls its own emulator when emulated by HHH.
    DD DOES NOT call its own emulator when emulated by HHH1.
    DD DOES NOT call its own emulator when directly executed.

    Assuming that the pathological relationship between HHH
    and DD has no effect on the behavior of DD when it is
    easily proven that it does IS STUPID.

    It has no effect on the behaviour of DD, but on the behaviour of the
    simulator. HHH fails, where others succeed to reach the 'ret'
    instruction. HHH cannot possibly reach the 'ret' instruction and Olcott
    knows about this failure, because he keeps repeating it.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Wed Mar 5 10:05:29 2025
    Op 05.mrt.2025 om 01:34 schreef olcott:
    On 3/4/2025 5:45 PM, Richard Damon wrote:
    On 3/4/25 11:11 AM, olcott wrote:
    On 3/4/2025 9:08 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 15:17 schreef olcott:
    On 3/4/2025 3:14 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 04:07 schreef olcott:
    int DD()
    {
       int Halt_Status = HHH(DD);
       if (Halt_Status)
         HERE: goto HERE;
       return Halt_Status;
    }

    _DD()
    [00002133] 55         push ebp      ; housekeeping
    [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local >>>>>>> [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.
    I wonder why Olcott keeps repeating that HHH fails to reach the
    'ret' instruction, where the direct execution or world-class
    simulators have no problem to reach the 'ret' instruction of
    exactly the same finite string as input.

    The only valid rebuttal is to show all of the steps of
    exactly how DD correctly emulated by HHH reaches its
    own "ret" instruction.

    And that is exactly what Olcott does not show.

    Likewise I never attempt to show exactly how
    all squares are round.

    So, my claim remains: HHH fails to reach the 'ret' instruction,
    where the direct execution and some world-class simulators have no
    problem to reach it.

    DD calls its own emulator when emulated by HHH.
    DD DOES NOT call its own emulator when emulated by HHH1.
    DD DOES NOT call its own emulator when directly executed.

    Which just show your stupidity, as DD doesn't HAVE its own emulator,
    and CAN'T know who or if it is being emulated.


    It is not my stupidity it is your dishonestly using
    the straw-man deception to change the subject away from:

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.

    And then HHH correctly reports its failure to do a correct simulation.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Wed Mar 5 10:08:15 2025
    Op 05.mrt.2025 om 05:51 schreef olcott:
    On 3/4/2025 10:44 PM, Richard Damon wrote:
    On 3/4/25 7:39 PM, olcott wrote:
    On 3/4/2025 5:45 PM, Richard Damon wrote:
    On 3/4/25 9:17 AM, olcott wrote:
    On 3/4/2025 3:14 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 04:07 schreef olcott:
    int DD()
    {
       int Halt_Status = HHH(DD);
       if (Halt_Status)
         HERE: goto HERE;
       return Halt_Status;
    }

    _DD()
    [00002133] 55         push ebp      ; housekeeping
    [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local >>>>>>> [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.
    I wonder why Olcott keeps repeating that HHH fails to reach the
    'ret' instruction, where the direct execution or world-class
    simulators have no problem to reach the 'ret' instruction of
    exactly the same finite string as input.

    The only valid rebuttal is to show all of the steps of
    exactly how DD correctly emulated by HHH reaches its
    own "ret" instruction.

    No,

    Meaning:
    (a) You don't have a clue how to do this all of your
    rebuttals have been pure bluster with zero technical
    competence behind them.

    (b) You know that I am correct and are simply lying.


    Nope, it just proves that

    Dodging this point is your only rebuttal to it:
    DD correctly emulated by HHH cannot possibly reach
    its own "ret" instruction and terminate normally.
    And therefore it correctly reports its failure to do a correct simulation.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Wed Mar 5 10:02:42 2025
    Op 04.mrt.2025 om 20:20 schreef olcott:
    On 3/4/2025 12:44 PM, joes wrote:
    Am Tue, 04 Mar 2025 10:11:30 -0600 schrieb olcott:
    On 3/4/2025 9:08 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 15:17 schreef olcott:
    On 3/4/2025 3:14 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 04:07 schreef olcott:

    DD correctly emulated by HHH cannot possibly reach its own "ret" >>>>>>> instruction and terminate normally.
    I wonder why Olcott keeps repeating that HHH fails to reach the 'ret' >>>>>> instruction, where the direct execution or world-class simulators
    have no problem to reach the 'ret' instruction of exactly the same >>>>>> finite string as input.
    The only valid rebuttal is to show all of the steps of exactly how DD >>>>> correctly emulated by HHH reaches its own "ret" instruction.
    And that is exactly what Olcott does not show.
    Likewise I never attempt to show exactly how all squares are round.

    So, my claim remains: HHH fails to reach the 'ret' instruction, where
    the direct execution and some world-class simulators have no problem to >>>> reach it.
    DD calls its own emulator when emulated by HHH.
    DD DOES NOT call its own emulator when emulated by HHH1.
    DD DOES NOT call its own emulator when directly executed.

    DD always calls HHH.


    Thus only has a pathological relationship that changes its
    behavior when DD is correctly emulated by HHH.

    Assuming that the pathological relationship between HHH and DD has no
    effect on the behavior of DD when it is easily proven that it does IS
    STUPID.
    That's the problem of whatever is simulating DD, if anything.


    It makes HHH(DD) correct to reject DD as non-terminating.

    No, it makes HHH correct to reject DD as 'failed to simulate correctly'.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From joes@21:1/5 to All on Wed Mar 5 09:14:55 2025
    Am Tue, 04 Mar 2025 13:12:20 -0600 schrieb olcott:
    On 3/4/2025 12:42 PM, joes wrote:
    Am Tue, 04 Mar 2025 10:18:09 -0600 schrieb olcott:
    On 3/4/2025 9:38 AM, joes wrote:
    Am Tue, 04 Mar 2025 08:21:39 -0600 schrieb olcott:
    On 3/4/2025 4:06 AM, Bonita Montero wrote:
    Am 04.03.2025 um 04:07 schrieb olcott:

    DD correctly emulated by HHH cannot possibly reach its own "ret" >>>>>>> instruction and terminate normally.
    The only valid rebuttal is to show all of the steps of exactly how >>>>>>> DD correctly emulated by HHH reaches its own "ret" instruction.
    You're wrong; your program will never stop - like your halting
    problem investigations.
    I am not wrong and no one can show that I wrong The only valid
    rebuttal is to show all of the steps of exactly how DD correctly
    emulated by HHH reaches its own "ret" instruction. NO ONE CAN DO
    THAT BECAUSE I AM CORRECT
    Cool. Now that you've made your point, would you please shut up?
    Agree that I am correct or prove that I am wrong.
    I MUST HAVE CLOSURE!!!
    I have bad news for you.
    That Joes is only a troll and does not understand these things well
    enough to provide any technically correct rebuttal, yet still remains a naysayer out of trollish pleasure
    is wrong.
    Anyway, you won't get closure in this life.

    --
    Am Sat, 20 Jul 2024 12:35:31 +0000 schrieb WM in sci.math:
    It is not guaranteed that n+1 exists for every n.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From joes@21:1/5 to All on Wed Mar 5 09:09:14 2025
    Am Tue, 04 Mar 2025 23:26:31 -0600 schrieb olcott:
    On 3/4/2025 11:08 PM, Richard Damon wrote:
    On 3/4/25 11:53 PM, olcott wrote:
    On 3/4/2025 10:45 PM, Richard Damon wrote:
    On 3/4/25 7:42 PM, olcott wrote:
    On 3/4/2025 5:45 PM, Richard Damon wrote:
    On 3/4/25 9:32 AM, olcott wrote:
    On 3/4/2025 6:29 AM, Richard Damon wrote:
    On 3/3/25 10:07 PM, olcott wrote:

    And the HHH that correctly emulated DD, can't be a decider and >>>>>>>> answer.
    Also. "the HHH", defined in your Halt7.c doesn't do that,
    The only valid rebuttal is to show all of the steps of exactly how >>>>>>> DD correctly emulated by HHH reaches its own "ret" instruction.
    Failing to provide the above proves that you are clueless about
    this code.
    Nope, I have shown why your logic is wrong,
    If that was true you could show this with something besides rhetoric >>>>> and double-talk.
    That you call all I say as just rhetoric just shows how stupid you
    are.
    DD correctly emulated by HHH cannot possibly reach its own "ret"
    instruction and terminate normally. AND YOU CAN'T SHOW OTHERWISE
    Right, but the HHH that does that doesn't answer,
    The code proves that it does answer yet code is over your head. All you
    have is rhetoric anchored ignorance.
    No, the simulated HHH is aborted.

    and there is only one HHH in existance at a time in the given memory
    locations, so you claim is worthless and based on lies.
    If you were not clueless you would know that the code proves that you
    are wrong.
    No. Simulation does not mean the code runs on the processor. Otherwise
    we wouldn't need simulators to run foreign code.

    --
    Am Sat, 20 Jul 2024 12:35:31 +0000 schrieb WM in sci.math:
    It is not guaranteed that n+1 exists for every n.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Wed Mar 5 10:10:11 2025
    Op 05.mrt.2025 om 06:21 schreef olcott:
    On 3/4/2025 11:07 PM, Richard Damon wrote:
    On 3/4/25 11:51 PM, olcott wrote:
    On 3/4/2025 10:44 PM, Richard Damon wrote:
    On 3/4/25 7:39 PM, olcott wrote:
    On 3/4/2025 5:45 PM, Richard Damon wrote:
    On 3/4/25 9:17 AM, olcott wrote:
    On 3/4/2025 3:14 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 04:07 schreef olcott:
    int DD()
    {
       int Halt_Status = HHH(DD);
       if (Halt_Status)
         HERE: goto HERE;
       return Halt_Status;
    }

    _DD()
    [00002133] 55         push ebp      ; housekeeping >>>>>>>>> [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local
    [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.
    I wonder why Olcott keeps repeating that HHH fails to reach the >>>>>>>> 'ret' instruction, where the direct execution or world-class
    simulators have no problem to reach the 'ret' instruction of
    exactly the same finite string as input.

    The only valid rebuttal is to show all of the steps of
    exactly how DD correctly emulated by HHH reaches its
    own "ret" instruction.

    No,

    Meaning:
    (a) You don't have a clue how to do this all of your
    rebuttals have been pure bluster with zero technical
    competence behind them.

    (b) You know that I am correct and are simply lying.


    Nope, it just proves that

    Dodging this point is your only rebuttal to it:
    DD correctly emulated by HHH cannot possibly reach
    its own "ret" instruction and terminate normally.



    And you are just dodging that the HHH that correctly emualates its
    input, will never answer when given a DD built on it, so it isn't the
    needed decider.


    DD correctly emulated by HHH cannot possibly reach
    its own "ret" instruction and terminate normally.
    Ys it fails to do a correct simulation, because it cannot possibly reach
    the 'ret' instruction that other methods have no problem with. So it
    correctly reports its failure to do a correct simulation.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Wed Mar 5 10:22:09 2025
    Op 05.mrt.2025 om 06:26 schreef olcott:
    On 3/4/2025 11:08 PM, Richard Damon wrote:
    On 3/4/25 11:53 PM, olcott wrote:
    On 3/4/2025 10:45 PM, Richard Damon wrote:
    On 3/4/25 7:42 PM, olcott wrote:
    On 3/4/2025 5:45 PM, Richard Damon wrote:
    On 3/4/25 9:32 AM, olcott wrote:
    On 3/4/2025 6:29 AM, Richard Damon wrote:
    On 3/3/25 10:07 PM, olcott wrote:
    int DD()
    {
       int Halt_Status = HHH(DD);
       if (Halt_Status)
         HERE: goto HERE;
       return Halt_Status;
    }

    _DD()
    [00002133] 55         push ebp      ; housekeeping >>>>>>>>> [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local
    [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.

    *Proves that the input to HHH(DD) can be rejected as non-halting* >>>>>>
    No, it proves that the HHH that rejects the input, didn't do a
    correct simulation, and thus was looking at the wrong input,
    because you don't understand what a program is.

    DD only is non-halting if *THE* HHH (and there is only one at any
    time) never aborts. SInce HHH musts abort its emulation to
    "reject" the input, it proves it didn't do the needed correct
    emulation, and you are shown to be just a blantant liar.



    And the HHH that correctly emulated DD, can't be a decider and >>>>>>>> answer.

    Also. "the HHH", defined in your Halt7.c doesn't do that,

    The only valid rebuttal is to show all of the steps of
    exactly how DD correctly emulated by HHH reaches its
    own "ret" instruction.

    Failing to provide the above proves that you are clueless
    about this code.


    Nope, I have shown why your logic is wrong,

    If that was true you could show this with
    something besides rhetoric and double-talk.


    That you call all I say as just rhetoric just shows how stupid you are. >>>>

    DD correctly emulated by HHH cannot possibly reach
    its own "ret" instruction and terminate normally.
    AND YOU CAN'T SHOW OTHERWISE



    Right, but the HHH that does that doesn't answer,

    The code proves that it does answer yet code is
    over your head.
    The code cheating with the Root variable and many other cheats is
    irrelevant.
    We only use the hypothetical HHH for which it is claimed that it aborts
    after a few cycles of recursive simulation. (Not Olcott's dream of an
    infinite recursion.) Both the simulating and the simulated HHH have this behaviour. That is the input, for which it has been proven that it
    describes a program that reaches its 'ret' instruction.
    But HHH cannot possible simulate itself correctly and fails to reach the
    'ret' instruction in its simulation.
    If not true, show how it completes the simulation correctly.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From joes@21:1/5 to All on Wed Mar 5 09:26:09 2025
    Am Tue, 04 Mar 2025 13:20:48 -0600 schrieb olcott:
    On 3/4/2025 12:44 PM, joes wrote:
    Am Tue, 04 Mar 2025 10:11:30 -0600 schrieb olcott:
    On 3/4/2025 9:08 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 15:17 schreef olcott:
    On 3/4/2025 3:14 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 04:07 schreef olcott:

    DD correctly emulated by HHH cannot possibly reach its own "ret" >>>>>>> instruction and terminate normally.
    I wonder why Olcott keeps repeating that HHH fails to reach the
    'ret'
    instruction, where the direct execution or world-class simulators
    have no problem to reach the 'ret' instruction of exactly the same >>>>>> finite string as input.
    The only valid rebuttal is to show all of the steps of exactly how
    DD correctly emulated by HHH reaches its own "ret" instruction.
    And that is exactly what Olcott does not show.
    Likewise I never attempt to show exactly how all squares are round.

    So, my claim remains: HHH fails to reach the 'ret' instruction, where
    the direct execution and some world-class simulators have no problem
    to reach it.
    DD calls its own emulator when emulated by HHH.
    DD DOES NOT call its own emulator when emulated by HHH1.
    DD DOES NOT call its own emulator when directly executed.
    DD always calls HHH.
    Thus only has a pathological relationship that changes its behavior when
    DD is correctly emulated by HHH.
    *HHH* has a pathological relationship when it is trying to simulate
    itself.

    Assuming that the pathological relationship between HHH and DD has no
    effect on the behavior of DD when it is easily proven that it does IS
    STUPID.
    That's the problem of whatever is simulating DD, if anything.
    It makes HHH(DD) correct to reject DD as non-terminating.
    No, it's just saying it can't simulate it.

    --
    Am Sat, 20 Jul 2024 12:35:31 +0000 schrieb WM in sci.math:
    It is not guaranteed that n+1 exists for every n.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From joes@21:1/5 to All on Wed Mar 5 09:27:50 2025
    Am Tue, 04 Mar 2025 23:09:42 -0600 schrieb olcott:
    On 3/4/2025 11:07 PM, Richard Damon wrote:
    On 3/4/25 11:48 PM, olcott wrote:
    On 3/4/2025 10:44 PM, Richard Damon wrote:
    On 3/4/25 7:34 PM, olcott wrote:
    On 3/4/2025 5:45 PM, Richard Damon wrote:
    On 3/4/25 11:11 AM, olcott wrote:
    On 3/4/2025 9:08 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 15:17 schreef olcott:
    On 3/4/2025 3:14 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 04:07 schreef olcott:


    So, my claim remains: HHH fails to reach the 'ret' instruction, >>>>>>>> where the direct execution and some world-class simulators have >>>>>>>> no problem to reach it.
    DD calls its own emulator when emulated by HHH.
    DD DOES NOT call its own emulator when emulated by HHH1. DD DOES >>>>>>> NOT call its own emulator when directly executed.
    Which just show your stupidity, as DD doesn't HAVE its own
    emulator, and CAN'T know who or if it is being emulated.
    It is not my stupidity it is your dishonestly using the straw-man
    deception to change the subject away from:
    DD correctly emulated by HHH cannot possibly reach its own "ret"
    instruction and terminate normally.
    WHich is the strawman, that you are too stupid to recogines.
    I will show that it is not straw-man after you quit dodging that
    point.
    Wrong order,
    I WILL NOT TOLERATE ANY OTHER ORDER
    lol "I will explain why this is your argument after you agree to it" smh

    --
    Am Sat, 20 Jul 2024 12:35:31 +0000 schrieb WM in sci.math:
    It is not guaranteed that n+1 exists for every n.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Richard Damon@21:1/5 to olcott on Wed Mar 5 07:19:28 2025
    On 3/5/25 12:09 AM, olcott wrote:
    On 3/4/2025 11:07 PM, Richard Damon wrote:
    On 3/4/25 11:48 PM, olcott wrote:
    On 3/4/2025 10:44 PM, Richard Damon wrote:
    On 3/4/25 7:34 PM, olcott wrote:
    On 3/4/2025 5:45 PM, Richard Damon wrote:
    On 3/4/25 11:11 AM, olcott wrote:
    On 3/4/2025 9:08 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 15:17 schreef olcott:
    On 3/4/2025 3:14 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 04:07 schreef olcott:
    int DD()
    {
       int Halt_Status = HHH(DD);
       if (Halt_Status)
         HERE: goto HERE;
       return Halt_Status;
    }

    _DD()
    [00002133] 55         push ebp      ; housekeeping >>>>>>>>>>> [00002134] 8bec       mov ebp,esp   ; housekeeping >>>>>>>>>>> [00002136] 51         push ecx      ; make space for local
    [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.
    I wonder why Olcott keeps repeating that HHH fails to reach >>>>>>>>>> the 'ret' instruction, where the direct execution or world- >>>>>>>>>> class simulators have no problem to reach the 'ret'
    instruction of exactly the same finite string as input.

    The only valid rebuttal is to show all of the steps of
    exactly how DD correctly emulated by HHH reaches its
    own "ret" instruction.

    And that is exactly what Olcott does not show.

    Likewise I never attempt to show exactly how
    all squares are round.

    So, my claim remains: HHH fails to reach the 'ret' instruction, >>>>>>>> where the direct execution and some world-class simulators have >>>>>>>> no problem to reach it.

    DD calls its own emulator when emulated by HHH.
    DD DOES NOT call its own emulator when emulated by HHH1.
    DD DOES NOT call its own emulator when directly executed.

    Which just show your stupidity, as DD doesn't HAVE its own
    emulator, and CAN'T know who or if it is being emulated.


    It is not my stupidity it is your dishonestly using
    the straw-man deception to change the subject away from:

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.



    WHich is the strawman, that you are too stupid to recogines.


    I will show that it is not straw-man after you quit
    dodging that point.


    Wrong order,

    I WILL NOT TOLERATE ANY OTHER ORDER



    In other words, you CAN'T handle any other order, even though logically requried, because you need to hide your fraud.

    Your problem is your "logic" is just built on LIES, and you are just demonstrating that,

    You have proved that on the condtion that HHH is a correct emulator,
    that HHH(DD) will not return.

    This you have proved that it is a necessary consequence of HHH being a
    correct emuator it can not be a decider becuase it dosn't return for
    this item.

    Thus, you are admitting that the HHH that answer can not be such a
    correct emulator, but you also claim it must be, and thus you "logic" is
    built on a contradicition.

    Your try to get around this by saying one program can have two different behaviors based on context that isn't part of its input, which is a
    fundamental violation of basic computation theory, and when asked to
    show how that could be, namely a trace showing where the first
    difference between those two occur, you are unable to show that, because
    you know you are just lying about it.

    Thus, you are just digging in your heals to prove that you don't care
    what is actually true, you just need to convince people about your lies.

    You don't like that I have shown your fraud is clear and distinct words,
    so you just act like a two year old and throw a tantrum.

    I'm sorry, but until you face the facts, you are just digging the grave
    for your reputation deeper and deeper.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From joes@21:1/5 to All on Wed Mar 5 16:14:49 2025
    Am Wed, 05 Mar 2025 08:10:00 -0600 schrieb olcott:
    On 3/5/2025 6:19 AM, Richard Damon wrote:
    On 3/5/25 12:09 AM, olcott wrote:
    On 3/4/2025 11:07 PM, Richard Damon wrote:
    On 3/4/25 11:48 PM, olcott wrote:
    On 3/4/2025 10:44 PM, Richard Damon wrote:
    On 3/4/25 7:34 PM, olcott wrote:
    On 3/4/2025 5:45 PM, Richard Damon wrote:
    On 3/4/25 11:11 AM, olcott wrote:
    On 3/4/2025 9:08 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 15:17 schreef olcott:
    On 3/4/2025 3:14 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 04:07 schreef olcott:

    So, my claim remains: HHH fails to reach the 'ret' instruction, >>>>>>>>>> where the direct execution and some world-class simulators have >>>>>>>>>> no problem to reach it.
    DD calls its own emulator when emulated by HHH.
    DD DOES NOT call its own emulator when emulated by HHH1. DD DOES >>>>>>>>> NOT call its own emulator when directly executed.
    Which just show your stupidity, as DD doesn't HAVE its own
    emulator, and CAN'T know who or if it is being emulated.
    It is not my stupidity it is your dishonestly using the straw-man >>>>>>> deception to change the subject away from:
    DD correctly emulated by HHH cannot possibly reach its own "ret" >>>>>>> instruction and terminate normally.
    WHich is the strawman, that you are too stupid to recogines.
    I will show that it is not straw-man after you quit dodging that
    point.
    Wrong order,
    I WILL NOT TOLERATE ANY OTHER ORDER
    In other words, you CAN'T handle any other order, even though logically
    requried, because you need to hide your fraud.
    My proof requires a specific prerequisite order.
    One cannot learn algebra before one has learned to count to ten.
    DD correctly emulated by HHH cannot possibly reach its own "ret"
    instruction and terminate normally.
    Is the first step of the mandatory prerequisite order of my proof
    What is the next step?

    --
    Am Sat, 20 Jul 2024 12:35:31 +0000 schrieb WM in sci.math:
    It is not guaranteed that n+1 exists for every n.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From joes@21:1/5 to All on Wed Mar 5 16:13:09 2025
    Am Wed, 05 Mar 2025 08:05:57 -0600 schrieb olcott:
    On 3/5/2025 3:27 AM, joes wrote:
    Am Tue, 04 Mar 2025 23:09:42 -0600 schrieb olcott:
    On 3/4/2025 11:07 PM, Richard Damon wrote:
    On 3/4/25 11:48 PM, olcott wrote:
    On 3/4/2025 10:44 PM, Richard Damon wrote:
    On 3/4/25 7:34 PM, olcott wrote:
    On 3/4/2025 5:45 PM, Richard Damon wrote:
    On 3/4/25 11:11 AM, olcott wrote:
    On 3/4/2025 9:08 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 15:17 schreef olcott:
    On 3/4/2025 3:14 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 04:07 schreef olcott:

    So, my claim remains: HHH fails to reach the 'ret' instruction, >>>>>>>>>> where the direct execution and some world-class simulators have >>>>>>>>>> no problem to reach it.
    DD calls its own emulator when emulated by HHH.
    DD DOES NOT call its own emulator when emulated by HHH1. DD DOES >>>>>>>>> NOT call its own emulator when directly executed.
    Which just show your stupidity, as DD doesn't HAVE its own
    emulator, and CAN'T know who or if it is being emulated.
    It is not my stupidity it is your dishonestly using the straw-man >>>>>>> deception to change the subject away from:
    DD correctly emulated by HHH cannot possibly reach its own "ret" >>>>>>> instruction and terminate normally.
    WHich is the strawman, that you are too stupid to recogines.
    I will show that it is not straw-man after you quit dodging that
    point.
    Wrong order,
    I WILL NOT TOLERATE ANY OTHER ORDER
    lol "I will explain why this is your argument after you agree to it"
    When DD emulated by HHH calls HHH(DD) (its own emulator)
    it tells HHH to emulate itself again in recursive emulation until
    aborted because DD is calling its own emulator.
    When DD emulated by HHH1 calls HHH(DD) (not its own emulator)
    it tells HHH to emulate itself again yet not in recursive emulation
    because DD is NOT calling its own emulator.
    Nope. HHH1 doesn't simulate itself.

    --
    Am Sat, 20 Jul 2024 12:35:31 +0000 schrieb WM in sci.math:
    It is not guaranteed that n+1 exists for every n.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Richard Damon@21:1/5 to olcott on Wed Mar 5 18:28:39 2025
    On 3/5/25 9:05 AM, olcott wrote:
    On 3/5/2025 3:27 AM, joes wrote:
    Am Tue, 04 Mar 2025 23:09:42 -0600 schrieb olcott:
    On 3/4/2025 11:07 PM, Richard Damon wrote:
    On 3/4/25 11:48 PM, olcott wrote:
    On 3/4/2025 10:44 PM, Richard Damon wrote:
    On 3/4/25 7:34 PM, olcott wrote:
    On 3/4/2025 5:45 PM, Richard Damon wrote:
    On 3/4/25 11:11 AM, olcott wrote:
    On 3/4/2025 9:08 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 15:17 schreef olcott:
    On 3/4/2025 3:14 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 04:07 schreef olcott:


    So, my claim remains: HHH fails to reach the 'ret' instruction, >>>>>>>>>> where the direct execution and some world-class simulators have >>>>>>>>>> no problem to reach it.
    DD calls its own emulator when emulated by HHH.
    DD DOES NOT call its own emulator when emulated by HHH1. DD DOES >>>>>>>>> NOT call its own emulator when directly executed.
    Which just show your stupidity, as DD doesn't HAVE its own
    emulator, and CAN'T know who or if it is being emulated.
    It is not my stupidity it is your dishonestly using the straw-man >>>>>>> deception to change the subject away from:
    DD correctly emulated by HHH cannot possibly reach its own "ret" >>>>>>> instruction and terminate normally.
    WHich is the strawman, that you are too stupid to recogines.
    I will show that it is not straw-man after you quit dodging that
    point.
    Wrong order,
    I WILL NOT TOLERATE ANY OTHER ORDER
    lol "I will explain why this is your argument after you agree to it" smh


    When DD emulated by HHH calls HHH(DD) (its own emulator)
    it tells HHH to emulate itself again in recursive emulation
    until aborted because DD is calling its own emulator.


    But only if HHH is actually just an emulator and not a decider.

    Since HHH DOES abort its emulation, the infinite recursion doesn't
    actually occur.

    When DD emulated by HHH1 calls HHH(DD) (not its own emulator)
    it tells HHH to emulate itself again yet not in recursive
    emulation because DD is NOT calling its own emulator.



    And what instruction in those two emulations was the first difference?

    IO'll tell you, when HHH gives up because it isn't actually a correct
    emulator.

    If it happens any differently show it, or you are just a liar,

    Of course, with your current code there is the problem that you HHH
    cheats and uses a global static flag to change its behavior, just
    showing that you know you are lying a=but trying to hide it.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Richard Damon@21:1/5 to olcott on Wed Mar 5 18:32:56 2025
    On 3/5/25 3:55 PM, olcott wrote:
    On 3/5/2025 10:14 AM, joes wrote:
    Am Wed, 05 Mar 2025 08:10:00 -0600 schrieb olcott:
    On 3/5/2025 6:19 AM, Richard Damon wrote:
    On 3/5/25 12:09 AM, olcott wrote:
    On 3/4/2025 11:07 PM, Richard Damon wrote:
    On 3/4/25 11:48 PM, olcott wrote:
    On 3/4/2025 10:44 PM, Richard Damon wrote:
    On 3/4/25 7:34 PM, olcott wrote:
    On 3/4/2025 5:45 PM, Richard Damon wrote:
    On 3/4/25 11:11 AM, olcott wrote:
    On 3/4/2025 9:08 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 15:17 schreef olcott:
    On 3/4/2025 3:14 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 04:07 schreef olcott:

    So, my claim remains: HHH fails to reach the 'ret' instruction, >>>>>>>>>>>> where the direct execution and some world-class simulators have >>>>>>>>>>>> no problem to reach it.
    DD calls its own emulator when emulated by HHH.
    DD DOES NOT call its own emulator when emulated by HHH1. DD DOES >>>>>>>>>>> NOT call its own emulator when directly executed.
    Which just show your stupidity, as DD doesn't HAVE its own >>>>>>>>>> emulator, and CAN'T know who or if it is being emulated.
    It is not my stupidity it is your dishonestly using the straw-man >>>>>>>>> deception to change the subject away from:
    DD correctly emulated by HHH cannot possibly reach its own "ret" >>>>>>>>> instruction and terminate normally.
    WHich is the strawman, that you are too stupid to recogines.
    I will show that it is not straw-man after you quit dodging that >>>>>>> point.
    Wrong order,
    I WILL NOT TOLERATE ANY OTHER ORDER
    In other words, you CAN'T handle any other order, even though logically >>>> requried, because you need to hide your fraud.
    My proof requires a specific  prerequisite order.
    One cannot learn algebra before one has learned to count to ten.
    DD correctly emulated by HHH cannot possibly reach its own "ret"
    instruction and terminate normally.
    Is the first step of the mandatory prerequisite order of my proof
    What is the next step?


    *DD correctly emulated by HHH cannot possibly reach*
    *its own "ret" instruction and terminate normally*

    And thus no HHH that correctly emulates the input can return to its
    caller, as a correct emulation is a complete emulation.

    Thus, your HHH that returns must not have done a correct emulation.


    It has taken two years to create this first step such that it
    is the the simplest way to state the key element of the
    whole proof and make this element impossible to correctly refute.

    EVERY ATTEMPT TO CHANGE THE SUBJECT AWAY FROM THIS POINT
    IS DISHONEST.


    No, you claiming something that isn't correct and is self-contradictory
    is the dishonest dodge.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Richard Damon@21:1/5 to olcott on Wed Mar 5 18:31:25 2025
    On 3/5/25 9:10 AM, olcott wrote:
    On 3/5/2025 6:19 AM, Richard Damon wrote:
    On 3/5/25 12:09 AM, olcott wrote:
    On 3/4/2025 11:07 PM, Richard Damon wrote:
    On 3/4/25 11:48 PM, olcott wrote:
    On 3/4/2025 10:44 PM, Richard Damon wrote:
    On 3/4/25 7:34 PM, olcott wrote:
    On 3/4/2025 5:45 PM, Richard Damon wrote:
    On 3/4/25 11:11 AM, olcott wrote:
    On 3/4/2025 9:08 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 15:17 schreef olcott:
    On 3/4/2025 3:14 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 04:07 schreef olcott:
    int DD()
    {
       int Halt_Status = HHH(DD);
       if (Halt_Status)
         HERE: goto HERE;
       return Halt_Status;
    }

    _DD()
    [00002133] 55         push ebp      ; housekeeping >>>>>>>>>>>>> [00002134] 8bec       mov ebp,esp   ; housekeeping >>>>>>>>>>>>> [00002136] 51         push ecx      ; make space for local
    [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally. >>>>>>>>>>>> I wonder why Olcott keeps repeating that HHH fails to reach >>>>>>>>>>>> the 'ret' instruction, where the direct execution or world- >>>>>>>>>>>> class simulators have no problem to reach the 'ret'
    instruction of exactly the same finite string as input. >>>>>>>>>>>
    The only valid rebuttal is to show all of the steps of
    exactly how DD correctly emulated by HHH reaches its
    own "ret" instruction.

    And that is exactly what Olcott does not show.

    Likewise I never attempt to show exactly how
    all squares are round.

    So, my claim remains: HHH fails to reach the 'ret'
    instruction, where the direct execution and some world-class >>>>>>>>>> simulators have no problem to reach it.

    DD calls its own emulator when emulated by HHH.
    DD DOES NOT call its own emulator when emulated by HHH1.
    DD DOES NOT call its own emulator when directly executed.

    Which just show your stupidity, as DD doesn't HAVE its own
    emulator, and CAN'T know who or if it is being emulated.


    It is not my stupidity it is your dishonestly using
    the straw-man deception to change the subject away from:

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.



    WHich is the strawman, that you are too stupid to recogines.


    I will show that it is not straw-man after you quit
    dodging that point.


    Wrong order,

    I WILL NOT TOLERATE ANY OTHER ORDER



    In other words, you CAN'T handle any other order, even though
    logically requried, because you need to hide your fraud.


    My proof requires a specific  prerequisite order.
    One cannot learn algebra before one has learned to count to ten.

    Then it isn;t a proof.




    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.

    And thus, no HHH that correctly emulates its input can ever return,
    since correct emulation mean complete emulation.

    Correct emulation *IS* correct emulation by whoever, it can't be limited
    to just one instance that doesn't actually do a correct emulation,


    Is the first step of the mandatory prerequisite order of my proof



    SO, your first step is that you insist that we see that you are lyihg?

    Your problem is you don't know the meaning of your words.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Richard Damon@21:1/5 to dbush on Wed Mar 5 18:36:56 2025
    On 3/5/25 4:03 PM, dbush wrote:
    On 3/5/2025 3:55 PM, olcott wrote:
    On 3/5/2025 10:14 AM, joes wrote:
    Am Wed, 05 Mar 2025 08:10:00 -0600 schrieb olcott:
    On 3/5/2025 6:19 AM, Richard Damon wrote:
    On 3/5/25 12:09 AM, olcott wrote:
    On 3/4/2025 11:07 PM, Richard Damon wrote:
    On 3/4/25 11:48 PM, olcott wrote:
    On 3/4/2025 10:44 PM, Richard Damon wrote:
    On 3/4/25 7:34 PM, olcott wrote:
    On 3/4/2025 5:45 PM, Richard Damon wrote:
    On 3/4/25 11:11 AM, olcott wrote:
    On 3/4/2025 9:08 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 15:17 schreef olcott:
    On 3/4/2025 3:14 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 04:07 schreef olcott:

    So, my claim remains: HHH fails to reach the 'ret'
    instruction,
    where the direct execution and some world-class simulators >>>>>>>>>>>>> have
    no problem to reach it.
    DD calls its own emulator when emulated by HHH.
    DD DOES NOT call its own emulator when emulated by HHH1. DD >>>>>>>>>>>> DOES
    NOT call its own emulator when directly executed.
    Which just show your stupidity, as DD doesn't HAVE its own >>>>>>>>>>> emulator, and CAN'T know who or if it is being emulated.
    It is not my stupidity it is your dishonestly using the straw-man >>>>>>>>>> deception to change the subject away from:
    DD correctly emulated by HHH cannot possibly reach its own "ret" >>>>>>>>>> instruction and terminate normally.
    WHich is the strawman, that you are too stupid to recogines.
    I will show that it is not straw-man after you quit dodging that >>>>>>>> point.
    Wrong order,
    I WILL NOT TOLERATE ANY OTHER ORDER
    In other words, you CAN'T handle any other order, even though
    logically
    requried, because you need to hide your fraud.
    My proof requires a specific  prerequisite order.
    One cannot learn algebra before one has learned to count to ten.
    DD correctly emulated by HHH cannot possibly reach its own "ret"
    instruction and terminate normally.
    Is the first step of the mandatory prerequisite order of my proof
    What is the next step?


    *DD correctly emulated by HHH cannot possibly reach*
    *its own "ret" instruction and terminate normally*

    It has taken two years to create this first step such that it
    is the the simplest way to state the key element of the
    whole proof and make this element impossible to correctly refute.

    EVERY ATTEMPT TO CHANGE THE SUBJECT AWAY FROM THIS POINT
    IS DISHONEST.


    Before agreeing on an answer, it is first required to agree on the
    question.

    Which is the problem, since you don't have the correct question.

    If HHH is a Halt Decider / Termination analyzer, the ONLY behavior that
    matters is the behavior of the directly executed program whose
    description is provided.

    Your problem is that isn't what you claim you HHH is doing, and thus you
    aren't asking the right question, but trying to pass off your POOP as a
    halt decider.

    THen you have the problem that neitehr your HHH or your DD are actually programs, so you are just building on a bigger set of lies.

    The fact that you ignore these points, and continue to try to go back to
    your proven wrong ideas, just shows that you are nothing but a ignorant
    fraud that is so stupid you can't understand how stupid you are and how transparent your lies are.

    Sorry, that is the facts, and how you have sealed the doom of your memory,

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Richard Damon@21:1/5 to olcott on Wed Mar 5 18:39:43 2025
    On 3/5/25 4:37 PM, olcott wrote:
    On 3/5/2025 3:03 PM, dbush wrote:
    On 3/5/2025 3:55 PM, olcott wrote:
    On 3/5/2025 10:14 AM, joes wrote:
    Am Wed, 05 Mar 2025 08:10:00 -0600 schrieb olcott:
    On 3/5/2025 6:19 AM, Richard Damon wrote:
    On 3/5/25 12:09 AM, olcott wrote:
    On 3/4/2025 11:07 PM, Richard Damon wrote:
    On 3/4/25 11:48 PM, olcott wrote:
    On 3/4/2025 10:44 PM, Richard Damon wrote:
    On 3/4/25 7:34 PM, olcott wrote:
    On 3/4/2025 5:45 PM, Richard Damon wrote:
    On 3/4/25 11:11 AM, olcott wrote:
    On 3/4/2025 9:08 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 15:17 schreef olcott:
    On 3/4/2025 3:14 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 04:07 schreef olcott:

    So, my claim remains: HHH fails to reach the 'ret' >>>>>>>>>>>>>> instruction,
    where the direct execution and some world-class simulators >>>>>>>>>>>>>> have
    no problem to reach it.
    DD calls its own emulator when emulated by HHH.
    DD DOES NOT call its own emulator when emulated by HHH1. DD >>>>>>>>>>>>> DOES
    NOT call its own emulator when directly executed.
    Which just show your stupidity, as DD doesn't HAVE its own >>>>>>>>>>>> emulator, and CAN'T know who or if it is being emulated. >>>>>>>>>>> It is not my stupidity it is your dishonestly using the
    straw-man
    deception to change the subject away from:
    DD correctly emulated by HHH cannot possibly reach its own "ret" >>>>>>>>>>> instruction and terminate normally.
    WHich is the strawman, that you are too stupid to recogines. >>>>>>>>> I will show that it is not straw-man after you quit dodging that >>>>>>>>> point.
    Wrong order,
    I WILL NOT TOLERATE ANY OTHER ORDER
    In other words, you CAN'T handle any other order, even though
    logically
    requried, because you need to hide your fraud.
    My proof requires a specific  prerequisite order.
    One cannot learn algebra before one has learned to count to ten.
    DD correctly emulated by HHH cannot possibly reach its own "ret"
    instruction and terminate normally.
    Is the first step of the mandatory prerequisite order of my proof
    What is the next step?


    *DD correctly emulated by HHH cannot possibly reach*
    *its own "ret" instruction and terminate normally*

    It has taken two years to create this first step such that it
    is the the simplest way to state the key element of the
    whole proof and make this element impossible to correctly refute.

    EVERY ATTEMPT TO CHANGE THE SUBJECT AWAY FROM THIS POINT
    IS DISHONEST.


    Before agreeing on an answer, it is first required to agree on the
    question.

    *DD correctly emulated by HHH cannot possibly reach*
    *its own "ret" instruction and terminate normally*

    Right, and thus any HHH that does a correct emulation can not return to
    its caller, and thus your HHH that returns 0 didn't actually do a
    correct emulation, and thus the DD you are looking at, which is built on
    the HHH that answer, behaves differently, and halts.


    This is irrefutable. Every attempt to show otherwise
    has been a change of subject.

    No one is refuting that, just that the condition you pose aren't the
    conditions that exist.


    Until we have mutual agreement on that key most
    important point upon which all other points depend
    this point will be repeated.


    Since your HHH that answer doesn't do that correct emulation, that
    initial fact is irrelevent, because it is about a DIFFERENT DD built on
    some other non-existant HHH, not the one that HHH is actually given.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Mikko@21:1/5 to olcott on Thu Mar 6 09:49:27 2025
    On 2025-03-04 14:17:56 +0000, olcott said:

    On 3/4/2025 3:14 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 04:07 schreef olcott:
    int DD()
    {
       int Halt_Status = HHH(DD);
       if (Halt_Status)
         HERE: goto HERE;
       return Halt_Status;
    }

    _DD()
    [00002133] 55         push ebp      ; housekeeping
    [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local
    [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.
    I wonder why Olcott keeps repeating that HHH fails to reach the 'ret'
    instruction, where the direct execution or world-class simulators have
    no problem to reach the 'ret' instruction of exactly the same finite
    string as input.

    The only valid rebuttal is to show all of the steps of
    exactly how DD correctly emulated by HHH reaches its
    own "ret" instruction.

    Not true. A sufficient rebuttal is anything that makes a reader to notice
    that you have not proven one (or more) of your claims.

    --
    Mikko

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Thu Mar 6 10:13:40 2025
    Op 06.mrt.2025 om 04:53 schreef olcott:
    On 3/5/2025 9:31 PM, dbush wrote:
    On 3/5/2025 10:17 PM, olcott wrote:
    On 3/5/2025 7:10 PM, dbush wrote:

    In other words, you know that what you're working on has nothing to
    do with the halting problem, but you don't care.

    In other words I WILL NOT TOLERATE ANY BULLSHIT DEFLECTION.
    You have proven that you know these things pretty well SO QUIT THE SHIT! >>>

    You want people to accept that HHH(DD) does in fact report that
    changing the code of HHH to an unconditional simulator and running
    HHH(DD) will not halt.


    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.

    Yes, we agree that HHH fails to reach the 'ret' instruction, where
    direct execution and correct simulators do not have a problem to reach
    that instruction. Congratulations with creating a simulator that cannot possibly complete the simulation of the halting program described by the
    finite string in its input.

    It took me over two years to come up with those irrefutable
    words that sum of the key essence of my whole proof.

    Those two years could have been spend for useful things.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From joes@21:1/5 to All on Thu Mar 6 09:20:24 2025
    Am Wed, 05 Mar 2025 22:03:39 -0600 schrieb olcott:
    On 3/5/2025 9:57 PM, dbush wrote:
    On 3/5/2025 10:53 PM, olcott wrote:
    On 3/5/2025 9:31 PM, dbush wrote:
    On 3/5/2025 10:17 PM, olcott wrote:
    On 3/5/2025 7:10 PM, dbush wrote:

    In other words, you know that what you're working on has nothing to >>>>>> do with the halting problem, but you don't care.

    In other words I WILL NOT TOLERATE ANY BULLSHIT DEFLECTION.
    You have proven that you know these things pretty well SO QUIT THE
    SHIT!
    You want people to accept that HHH(DD) does in fact report that
    changing the code of HHH to an unconditional simulator and running
    HHH(DD) will not halt.

    DD correctly emulated by HHH cannot possibly reach its own "ret"
    instruction and terminate normally.

    In other words, replacing the code of HHH with an unconditional
    simulator and subsequently running HHH(DD) does not halt, which you
    previously agreed is correct:
    On 2/22/2025 1:02 PM, olcott wrote:
    On 2/22/2025 11:10 AM, dbush wrote:
    On 2/22/2025 11:43 AM, olcott wrote:
    The first point is DD correctly simulated by HHH cannot possibly
    terminate normally by reaching its own "return" instruction.

    In other words, if the code of HHH is replaced with an
    unconditional simulator then it can be shown that DD is
    non-halting and therefore HHH(DD)==0 is correct.

    Wow finally someone that totally gets it.

    If you disagree, explain why this is different.
    In particular, give an example where X correctly emulated by Y is
    different from replacing the code of Y with an unconditional simulator
    and subsequently running Y(X).

    I may not have enough time left to change the subject and endlessly go through anything but the exact point.
    You used to have enough time.

    The purpose of these posts is so that my posthumous reviewers will understand.
    There won't be any.
    --
    Am Sat, 20 Jul 2024 12:35:31 +0000 schrieb WM in sci.math:
    It is not guaranteed that n+1 exists for every n.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Thu Mar 6 10:17:04 2025
    Op 06.mrt.2025 om 05:46 schreef olcott:
    On 3/5/2025 5:36 PM, Richard Damon wrote:
    On 3/5/25 4:03 PM, dbush wrote:
    On 3/5/2025 3:55 PM, olcott wrote:
    On 3/5/2025 10:14 AM, joes wrote:
    Am Wed, 05 Mar 2025 08:10:00 -0600 schrieb olcott:
    On 3/5/2025 6:19 AM, Richard Damon wrote:
    On 3/5/25 12:09 AM, olcott wrote:
    On 3/4/2025 11:07 PM, Richard Damon wrote:
    On 3/4/25 11:48 PM, olcott wrote:
    On 3/4/2025 10:44 PM, Richard Damon wrote:
    On 3/4/25 7:34 PM, olcott wrote:
    On 3/4/2025 5:45 PM, Richard Damon wrote:
    On 3/4/25 11:11 AM, olcott wrote:
    On 3/4/2025 9:08 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 15:17 schreef olcott:
    On 3/4/2025 3:14 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 04:07 schreef olcott:

    So, my claim remains: HHH fails to reach the 'ret' >>>>>>>>>>>>>>> instruction,
    where the direct execution and some world-class
    simulators have
    no problem to reach it.
    DD calls its own emulator when emulated by HHH.
    DD DOES NOT call its own emulator when emulated by HHH1. >>>>>>>>>>>>>> DD DOES
    NOT call its own emulator when directly executed.
    Which just show your stupidity, as DD doesn't HAVE its own >>>>>>>>>>>>> emulator, and CAN'T know who or if it is being emulated. >>>>>>>>>>>> It is not my stupidity it is your dishonestly using the >>>>>>>>>>>> straw-man
    deception to change the subject away from:
    DD correctly emulated by HHH cannot possibly reach its own >>>>>>>>>>>> "ret"
    instruction and terminate normally.
    WHich is the strawman, that you are too stupid to recogines. >>>>>>>>>> I will show that it is not straw-man after you quit dodging that >>>>>>>>>> point.
    Wrong order,
    I WILL NOT TOLERATE ANY OTHER ORDER
    In other words, you CAN'T handle any other order, even though
    logically
    requried, because you need to hide your fraud.
    My proof requires a specific  prerequisite order.
    One cannot learn algebra before one has learned to count to ten.
    DD correctly emulated by HHH cannot possibly reach its own "ret"
    instruction and terminate normally.
    Is the first step of the mandatory prerequisite order of my proof
    What is the next step?


    *DD correctly emulated by HHH cannot possibly reach*
    *its own "ret" instruction and terminate normally*

    It has taken two years to create this first step such that it
    is the the simplest way to state the key element of the
    whole proof and make this element impossible to correctly refute.

    EVERY ATTEMPT TO CHANGE THE SUBJECT AWAY FROM THIS POINT
    IS DISHONEST.


    Before agreeing on an answer, it is first required to agree on the
    question.

    Which is the problem, since you don't have the correct question.

    If HHH is a Halt Decider / Termination analyzer, the ONLY behavior
    that matters is the behavior of the directly executed program whose
    description is provided.


    That is a stupid thing to say.
    HHH computes the mapping to a return value on the
    basis of what its finite string INPUT specifies.

    THIS IS WHAT IT SPECIFIES
    *DD correctly emulated by HHH cannot possibly reach*
    *its own "ret" instruction and terminate normally*
    Yes, that is what HHH reports: I cannot complete the simulation up to
    the end. No more, no less.
    There are easier ways to make a program to report the failure of a
    simulation.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Thu Mar 6 10:23:55 2025
    Op 05.mrt.2025 om 15:04 schreef olcott:
    On 3/5/2025 2:58 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 17:11 schreef olcott:
    On 3/4/2025 9:08 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 15:17 schreef olcott:
    On 3/4/2025 3:14 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 04:07 schreef olcott:
    int DD()
    {
       int Halt_Status = HHH(DD);
       if (Halt_Status)
         HERE: goto HERE;
       return Halt_Status;
    }

    _DD()
    [00002133] 55         push ebp      ; housekeeping
    [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local >>>>>>> [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.
    I wonder why Olcott keeps repeating that HHH fails to reach the
    'ret' instruction, where the direct execution or world-class
    simulators have no problem to reach the 'ret' instruction of
    exactly the same finite string as input.

    The only valid rebuttal is to show all of the steps of
    exactly how DD correctly emulated by HHH reaches its
    own "ret" instruction.

    And that is exactly what Olcott does not show.

    Likewise I never attempt to show exactly how
    all squares are round.

    But it is very similar.


    So, my claim remains: HHH fails to reach the 'ret' instruction,
    where the direct execution and some world-class simulators have no
    problem to reach it.

    DD calls its own emulator when emulated by HHH.
    DD DOES NOT call its own emulator when emulated by HHH1.
    DD DOES NOT call its own emulator when directly executed.

    Assuming that the pathological relationship between HHH
    and DD has no effect on the behavior of DD when it is
    easily proven that it does IS STUPID.

    It has no effect on the behaviour of DD, but on the behaviour of the
    simulator.

    When DD emulated by HHH calls HHH(DD) (its own emulator)
    it tells HHH to emulate itself again in recursive emulation
    until aborted because DD is calling its own emulator.
    Olcott assumes that aborting is the only way to prevent that HHH
    simulates itself. He does not prove that it is the only way. In fact it
    is not true. There are other ways.
    E.g., HHH can make a shortcut and skip the simulation of HHH, using its
    (what Olcott thinks correct) return value and continue with the first instruction in DD following the call.
    In fact, that is better, because when HHH aborts it has not yet seen
    whether DD will contradict the result, or use it in another way.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Richard Damon@21:1/5 to olcott on Thu Mar 6 07:36:19 2025
    On 3/5/25 11:48 PM, olcott wrote:
    On 3/5/2025 5:39 PM, Richard Damon wrote:
    On 3/5/25 4:37 PM, olcott wrote:
    On 3/5/2025 3:03 PM, dbush wrote:
    On 3/5/2025 3:55 PM, olcott wrote:
    On 3/5/2025 10:14 AM, joes wrote:
    Am Wed, 05 Mar 2025 08:10:00 -0600 schrieb olcott:
    On 3/5/2025 6:19 AM, Richard Damon wrote:
    On 3/5/25 12:09 AM, olcott wrote:
    On 3/4/2025 11:07 PM, Richard Damon wrote:
    On 3/4/25 11:48 PM, olcott wrote:
    On 3/4/2025 10:44 PM, Richard Damon wrote:
    On 3/4/25 7:34 PM, olcott wrote:
    On 3/4/2025 5:45 PM, Richard Damon wrote:
    On 3/4/25 11:11 AM, olcott wrote:
    On 3/4/2025 9:08 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 15:17 schreef olcott:
    On 3/4/2025 3:14 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 04:07 schreef olcott:

    So, my claim remains: HHH fails to reach the 'ret' >>>>>>>>>>>>>>>> instruction,
    where the direct execution and some world-class >>>>>>>>>>>>>>>> simulators have
    no problem to reach it.
    DD calls its own emulator when emulated by HHH.
    DD DOES NOT call its own emulator when emulated by HHH1. >>>>>>>>>>>>>>> DD DOES
    NOT call its own emulator when directly executed. >>>>>>>>>>>>>> Which just show your stupidity, as DD doesn't HAVE its own >>>>>>>>>>>>>> emulator, and CAN'T know who or if it is being emulated. >>>>>>>>>>>>> It is not my stupidity it is your dishonestly using the >>>>>>>>>>>>> straw-man
    deception to change the subject away from:
    DD correctly emulated by HHH cannot possibly reach its own >>>>>>>>>>>>> "ret"
    instruction and terminate normally.
    WHich is the strawman, that you are too stupid to recogines. >>>>>>>>>>> I will show that it is not straw-man after you quit dodging that >>>>>>>>>>> point.
    Wrong order,
    I WILL NOT TOLERATE ANY OTHER ORDER
    In other words, you CAN'T handle any other order, even though
    logically
    requried, because you need to hide your fraud.
    My proof requires a specific  prerequisite order.
    One cannot learn algebra before one has learned to count to ten. >>>>>>> DD correctly emulated by HHH cannot possibly reach its own "ret" >>>>>>> instruction and terminate normally.
    Is the first step of the mandatory prerequisite order of my proof >>>>>> What is the next step?


    *DD correctly emulated by HHH cannot possibly reach*
    *its own "ret" instruction and terminate normally*

    It has taken two years to create this first step such that it
    is the the simplest way to state the key element of the
    whole proof and make this element impossible to correctly refute.

    EVERY ATTEMPT TO CHANGE THE SUBJECT AWAY FROM THIS POINT
    IS DISHONEST.


    Before agreeing on an answer, it is first required to agree on the
    question.

    *DD correctly emulated by HHH cannot possibly reach*
    *its own "ret" instruction and terminate normally*

    Right, and thus any HHH that does a correct emulation can not return
    to its caller,

    We have been over this point too many times you are
    just a liar. Liar and Christian is a combination with
    very bad consequences.


    You have said that many times, but you can't actually show what is wrong
    with it. THAT make YOU the liar, and heading for the lake of fire.

    You keep on making the claim, but you have no actual basis for it, other
    than your own circular logic based on lie.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Richard Damon@21:1/5 to olcott on Thu Mar 6 19:37:48 2025
    On 3/6/25 3:18 PM, olcott wrote:
    On 3/6/2025 3:20 AM, joes wrote:
    Am Wed, 05 Mar 2025 22:03:39 -0600 schrieb olcott:
    On 3/5/2025 9:57 PM, dbush wrote:
    On 3/5/2025 10:53 PM, olcott wrote:
    On 3/5/2025 9:31 PM, dbush wrote:
    On 3/5/2025 10:17 PM, olcott wrote:
    On 3/5/2025 7:10 PM, dbush wrote:

    In other words, you know that what you're working on has nothing to >>>>>>>> do with the halting problem, but you don't care.

    In other words I WILL NOT TOLERATE ANY BULLSHIT DEFLECTION.
    You have proven that you know these things pretty well SO QUIT THE >>>>>>> SHIT!
    You want people to accept that HHH(DD) does in fact report that
    changing the code of HHH to an unconditional simulator and running >>>>>> HHH(DD) will not halt.

    DD correctly emulated by HHH cannot possibly reach its own "ret"
    instruction and terminate normally.

    In other words, replacing the code of HHH with an unconditional
    simulator and subsequently running HHH(DD) does not halt, which you
    previously agreed is correct:
    On 2/22/2025 1:02 PM, olcott wrote:
      > On 2/22/2025 11:10 AM, dbush wrote:
      >> On 2/22/2025 11:43 AM, olcott wrote:
      >>> The first point is DD correctly simulated by HHH cannot possibly >>>>   >>> terminate normally by reaching its own "return" instruction.
      >>
      >> In other words, if the code of HHH is replaced with an
      >> unconditional simulator then it can be shown that DD is
      >> non-halting and therefore HHH(DD)==0 is correct.
      >>
      > Wow finally someone that totally gets it.

    If you disagree, explain why this is different.
    In particular, give an example where X correctly emulated by Y is
    different from replacing the code of Y with an unconditional simulator >>>> and subsequently running Y(X).

    I may not have enough time left to change the subject and endlessly go
    through anything but the exact point.

    You used to have enough time.


    That is before the CAR T cell manufacturing process failed twice.

    Which really means you need to abandon your fraudulent methods (claiming
    to be in a system, when you actually have adopted fundamentally
    different definitions for core terms) and try to do something actually
    worth while.

    Now, it may be too late, as it seems you are totally unprepared to do
    that sort of work, so you may just die with a life based on being a fraud.


    The purpose of these posts is so that my posthumous reviewers will
    understand.

    There won't be any.



    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From joes@21:1/5 to All on Fri Mar 7 08:02:56 2025
    Am Thu, 06 Mar 2025 20:59:49 -0600 schrieb olcott:
    On 3/6/2025 6:37 PM, Richard Damon wrote:
    On 3/6/25 3:16 PM, olcott wrote:
    On 3/6/2025 3:17 AM, Fred. Zwarts wrote:
    Op 06.mrt.2025 om 05:46 schreef olcott:
    On 3/5/2025 5:36 PM, Richard Damon wrote:
    On 3/5/25 4:03 PM, dbush wrote:
    On 3/5/2025 3:55 PM, olcott wrote:
    On 3/5/2025 10:14 AM, joes wrote:
    Am Wed, 05 Mar 2025 08:10:00 -0600 schrieb olcott:
    On 3/5/2025 6:19 AM, Richard Damon wrote:
    On 3/5/25 12:09 AM, olcott wrote:

    I WILL NOT TOLERATE ANY OTHER ORDER
    In other words, you CAN'T handle any other order, even though >>>>>>>>>>> logically requried, because you need to hide your fraud.
    My proof requires a specific  prerequisite order.
    One cannot learn algebra before one has learned to count to >>>>>>>>>> ten. DD correctly emulated by HHH cannot possibly reach its own >>>>>>>>>> "ret" instruction and terminate normally.
    Is the first step of the mandatory prerequisite order of my >>>>>>>>>> proof
    What is the next step?
    *DD correctly emulated by HHH cannot possibly reach*
    *its own "ret" instruction and terminate normally*
    It has taken two years to create this first step such that it is >>>>>>>> the the simplest way to state the key element of the whole proof >>>>>>>> and make this element impossible to correctly refute.
    EVERY ATTEMPT TO CHANGE THE SUBJECT AWAY FROM THIS POINT IS
    DISHONEST.
    So what's the next step?

    Before agreeing on an answer, it is first required to agree on the >>>>>>> question.
    Which is the problem, since you don't have the correct question.
    If HHH is a Halt Decider / Termination analyzer, the ONLY behavior >>>>>> that matters is the behavior of the directly executed program whose >>>>>> description is provided.
    That is a stupid thing to say.
    HHH computes the mapping to a return value on the basis of what its
    finite string INPUT specifies.
    Yes, that is the directly executed program.

    THIS IS WHAT IT SPECIFIES *DD correctly emulated by HHH cannot
    possibly reach its own "ret" instruction and terminate normally*
    No, DD doesn't specify anything about what is to simulate it.

    Yes, that is what HHH reports: I cannot complete the simulation up to
    the end. No more, no less.
    There are easier ways to make a program to report the failure of a
    simulation.
    The finite string of DD correctly emulated by HHH specifies recursive
    emulation that cannot possibly reach its own "ret" instruction BECAUSE
    IT SPECIFIES RECURSINVE EMULATION.
    No, HHH aborts.

    But the HHH that decides are returns can't be that HHH, so the DD given
    to that HHH doesn't call the correctly emulating HHH, so you whole
    argument is shown to be the fraud you have admitted to.
    That seems to be a little incoherent so I cannot tell what you are
    saying yet you are at least attempting to use reasoning.
    I am just saying what the actual x86 machine code actually specifies therefore any rebuttal is necessarily incorrect.
    And the actual code of DD specifies that it halts.

    --
    Am Sat, 20 Jul 2024 12:35:31 +0000 schrieb WM in sci.math:
    It is not guaranteed that n+1 exists for every n.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Fri Mar 7 09:58:01 2025
    Op 07.mrt.2025 om 03:31 schreef olcott:
    On 3/6/2025 6:37 PM, Richard Damon wrote:
    On 3/6/25 3:18 PM, olcott wrote:
    On 3/6/2025 3:20 AM, joes wrote:
    Am Wed, 05 Mar 2025 22:03:39 -0600 schrieb olcott:
    On 3/5/2025 9:57 PM, dbush wrote:
    On 3/5/2025 10:53 PM, olcott wrote:
    On 3/5/2025 9:31 PM, dbush wrote:
    On 3/5/2025 10:17 PM, olcott wrote:
    On 3/5/2025 7:10 PM, dbush wrote:

    In other words, you know that what you're working on has
    nothing to
    do with the halting problem, but you don't care.

    In other words I WILL NOT TOLERATE ANY BULLSHIT DEFLECTION.
    You have proven that you know these things pretty well SO QUIT THE >>>>>>>>> SHIT!
    You want people to accept that HHH(DD) does in fact report that >>>>>>>> changing the code of HHH to an unconditional simulator and running >>>>>>>> HHH(DD) will not halt.

    DD correctly emulated by HHH cannot possibly reach its own "ret" >>>>>>> instruction and terminate normally.

    In other words, replacing the code of HHH with an unconditional
    simulator and subsequently running HHH(DD) does not halt, which you >>>>>> previously agreed is correct:
    On 2/22/2025 1:02 PM, olcott wrote:
      > On 2/22/2025 11:10 AM, dbush wrote:
      >> On 2/22/2025 11:43 AM, olcott wrote:
      >>> The first point is DD correctly simulated by HHH cannot
    possibly
      >>> terminate normally by reaching its own "return" instruction. >>>>>>   >>
      >> In other words, if the code of HHH is replaced with an
      >> unconditional simulator then it can be shown that DD is
      >> non-halting and therefore HHH(DD)==0 is correct.
      >>
      > Wow finally someone that totally gets it.

    If you disagree, explain why this is different.
    In particular, give an example where X correctly emulated by Y is
    different from replacing the code of Y with an unconditional
    simulator
    and subsequently running Y(X).

    I may not have enough time left to change the subject and endlessly go >>>>> through anything but the exact point.

    You used to have enough time.


    That is before the CAR T cell manufacturing process failed twice.

    Which really means you need to abandon your fraudulent methods

    _DD()
    [00002133] 55         push ebp      ; housekeeping
    [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.


    No such HHH exists.
    The programmer of HHH has the following options when HHH reaches the
    call to HHH:

    1) It just follows the call and starts simulating the code of HHH. This
    might eventually lead to infinite recursion. So, no correct simulation.

    2) HHH recognises that it starts emulating itself. This requires extra
    input to HHH, so it not really a valid option, but if it is allowed than
    other options are possible (not that in these cases the infinite
    recursion does o longer exist):

    2a) Abort the simulation at this point to avoid infinite recursion. The
    problem with this is that it does not reach the most important part of
    DD, so it does not yet know what DD does with the result of HHH.
    The only thing HHH can do is to report that it cannot simulate this input. Therefore this method causes any program that calls HHH to become
    undecidable by HHH. So, no correct simulation.

    2b) Make a shortcut, skip the call and replace it with the return value
    of HHH and continue the simulation.
    When HHH does that it will reach the code where DD contradicts the
    result of HHH, so, again there is no correct simulation.

    Conclusion: a correct simulation of HHH by itself cannot possibly exist.
    So, the claim is vacuous.
    A correct simulation will reach the 'ret' instruction, as proven by the
    direct execution and other world-class simulators, but HHH fails to
    reach the 'ret' instruction.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Mikko@21:1/5 to olcott on Fri Mar 7 10:26:06 2025
    On 2025-03-06 20:11:34 +0000, olcott said:

    On 3/6/2025 2:02 AM, Mikko wrote:
    On 2025-03-04 14:26:39 +0000, olcott said:

    On 3/4/2025 4:36 AM, Mikko wrote:
    On 2025-03-04 03:07:56 +0000, olcott said:

    int DD()
    {
       int Halt_Status = HHH(DD);
       if (Halt_Status)
         HERE: goto HERE;
       return Halt_Status;
    }

    _DD()
    [00002133] 55         push ebp      ; housekeeping
    [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local >>>>> [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.

    The only valid rebuttal is to show all of the steps of
    exactly how DD correctly emulated by HHH reaches its
    own "ret" instruction.

    The question whether DD emulated by HHH exists is too uninteresting that >>>> it would need a rebuttal, and so is the question that does it reach its >>>> "ret" instruction if it exsists.


    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.
    *Proves that the input to HHH(DD) can be rejected as non-halting*

    As "DD correctly emulated by HHH" does not exist

    *No one has made any attempt to show that*

    Maybe not. Perhaps every demonstration of that was just a byproduct of
    some other attempt. Anyway, HHH does not emulate DD correctly to the end.

    --
    Mikko

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Fri Mar 7 09:59:40 2025
    Op 06.mrt.2025 om 21:13 schreef olcott:
    On 3/6/2025 3:13 AM, Fred. Zwarts wrote:
    Op 06.mrt.2025 om 04:53 schreef olcott:
    On 3/5/2025 9:31 PM, dbush wrote:
    On 3/5/2025 10:17 PM, olcott wrote:
    On 3/5/2025 7:10 PM, dbush wrote:

    In other words, you know that what you're working on has nothing
    to do with the halting problem, but you don't care.

    In other words I WILL NOT TOLERATE ANY BULLSHIT DEFLECTION.
    You have proven that you know these things pretty well SO QUIT THE
    SHIT!


    You want people to accept that HHH(DD) does in fact report that
    changing the code of HHH to an unconditional simulator and running
    HHH(DD) will not halt.


    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.

    Yes, we agree that HHH fails to reach the 'ret' instruction,

    Despicably dishonest attempt at the straw-man deception.


    No rebuttal. So, we agree that HHH fails to reach the 'ret' instruction.
    If not true, show how HHH reaches the 'ret' instruction.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Mikko@21:1/5 to olcott on Fri Mar 7 10:22:40 2025
    On 2025-03-06 20:09:24 +0000, olcott said:

    On 3/6/2025 1:49 AM, Mikko wrote:
    On 2025-03-04 14:17:56 +0000, olcott said:

    On 3/4/2025 3:14 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 04:07 schreef olcott:
    int DD() { int Halt_Status = HHH(DD); if (Halt_Status) HERE:
    goto HERE; return Halt_Status; }

    _DD() [00002133] 55 push ebp ; housekeeping [00002134]
    8bec mov ebp,esp ; housekeeping [00002136]
    51 push ecx ; make space for local [00002137]
    6833210000 push 00002133 ; push DD [0000213c] e882f4ffff call
    000015c3 ; call HHH(DD) [00002141] 83c404 add esp,+04 [00002144] >>>>> 8945fc mov [ebp-04],eax [00002147] 837dfc00
    cmp dword [ebp-04],+00 [0000214b] 7402 jz 0000214f [0000214d]
    ebfe jmp 0000214d [0000214f] 8b45fc mov
    eax,[ebp-04] [00002152] 8be5 mov esp,ebp [00002154]
    5d pop ebp [00002155] c3 ret Size in bytes:
    (0035) [00002155]

    DD correctly emulated by HHH cannot possibly reach its own
    "ret" instruction and terminate normally.
    I wonder why Olcott keeps repeating that HHH fails to reach the
    'ret' instruction, where the direct execution or world-class
    simulators have no problem to reach the 'ret' instruction of
    exactly the same finite string as input.

    The only valid rebuttal is to show all of the steps of exactly how
    DD correctly emulated by HHH reaches its own "ret" instruction.

    Not true. A sufficient rebuttal is anything that makes a reader to
    notice that you have not proven one (or more) of your claims.


    A specific rebuttal of this specific claim
    DD correctly emulated by HHH cannot possibly reach its own
    "ret" instruction and terminate normally.
    Requires a specific rebuttal of that claim

    The claim is vacuous as DD correctly emulated by HHH does not exist.
    A vacuous claim need not be rebutted.

    --
    Mikko

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Fri Mar 7 10:09:23 2025
    Op 06.mrt.2025 om 21:11 schreef olcott:
    On 3/6/2025 2:02 AM, Mikko wrote:
    On 2025-03-04 14:26:39 +0000, olcott said:

    On 3/4/2025 4:36 AM, Mikko wrote:
    On 2025-03-04 03:07:56 +0000, olcott said:

    int DD()
    {
       int Halt_Status = HHH(DD);
       if (Halt_Status)
         HERE: goto HERE;
       return Halt_Status;
    }

    _DD()
    [00002133] 55         push ebp      ; housekeeping
    [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local >>>>> [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.

    The only valid rebuttal is to show all of the steps of
    exactly how DD correctly emulated by HHH reaches its
    own "ret" instruction.

    The question whether DD emulated by HHH exists is too uninteresting
    that
    it would need a rebuttal, and so is the question that does it reach its >>>> "ret" instruction if it exsists.


    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.
    *Proves that the input to HHH(DD) can be rejected as non-halting*

    As "DD correctly emulated by HHH" does not exist

    *No one has made any attempt to show that*




    There is no proof that it does exist. Many times it has been shown that
    it does not exist. Olcott just ignores the facts and keeps claiming
    based on his dreams.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Fri Mar 7 10:03:35 2025
    Op 06.mrt.2025 om 21:16 schreef olcott:
    On 3/6/2025 3:17 AM, Fred. Zwarts wrote:
    Op 06.mrt.2025 om 05:46 schreef olcott:
    On 3/5/2025 5:36 PM, Richard Damon wrote:
    On 3/5/25 4:03 PM, dbush wrote:
    On 3/5/2025 3:55 PM, olcott wrote:
    On 3/5/2025 10:14 AM, joes wrote:
    Am Wed, 05 Mar 2025 08:10:00 -0600 schrieb olcott:
    On 3/5/2025 6:19 AM, Richard Damon wrote:
    On 3/5/25 12:09 AM, olcott wrote:
    On 3/4/2025 11:07 PM, Richard Damon wrote:
    On 3/4/25 11:48 PM, olcott wrote:
    On 3/4/2025 10:44 PM, Richard Damon wrote:
    On 3/4/25 7:34 PM, olcott wrote:
    On 3/4/2025 5:45 PM, Richard Damon wrote:
    On 3/4/25 11:11 AM, olcott wrote:
    On 3/4/2025 9:08 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 15:17 schreef olcott:
    On 3/4/2025 3:14 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 04:07 schreef olcott:

    So, my claim remains: HHH fails to reach the 'ret' >>>>>>>>>>>>>>>>> instruction,
    where the direct execution and some world-class >>>>>>>>>>>>>>>>> simulators have
    no problem to reach it.
    DD calls its own emulator when emulated by HHH. >>>>>>>>>>>>>>>> DD DOES NOT call its own emulator when emulated by HHH1. >>>>>>>>>>>>>>>> DD DOES
    NOT call its own emulator when directly executed. >>>>>>>>>>>>>>> Which just show your stupidity, as DD doesn't HAVE its own >>>>>>>>>>>>>>> emulator, and CAN'T know who or if it is being emulated. >>>>>>>>>>>>>> It is not my stupidity it is your dishonestly using the >>>>>>>>>>>>>> straw-man
    deception to change the subject away from:
    DD correctly emulated by HHH cannot possibly reach its own >>>>>>>>>>>>>> "ret"
    instruction and terminate normally.
    WHich is the strawman, that you are too stupid to recogines. >>>>>>>>>>>> I will show that it is not straw-man after you quit dodging >>>>>>>>>>>> that
    point.
    Wrong order,
    I WILL NOT TOLERATE ANY OTHER ORDER
    In other words, you CAN'T handle any other order, even though >>>>>>>>> logically
    requried, because you need to hide your fraud.
    My proof requires a specific  prerequisite order.
    One cannot learn algebra before one has learned to count to ten. >>>>>>>> DD correctly emulated by HHH cannot possibly reach its own "ret" >>>>>>>> instruction and terminate normally.
    Is the first step of the mandatory prerequisite order of my proof >>>>>>> What is the next step?


    *DD correctly emulated by HHH cannot possibly reach*
    *its own "ret" instruction and terminate normally*

    It has taken two years to create this first step such that it
    is the the simplest way to state the key element of the
    whole proof and make this element impossible to correctly refute.

    EVERY ATTEMPT TO CHANGE THE SUBJECT AWAY FROM THIS POINT
    IS DISHONEST.


    Before agreeing on an answer, it is first required to agree on the
    question.

    Which is the problem, since you don't have the correct question.

    If HHH is a Halt Decider / Termination analyzer, the ONLY behavior
    that matters is the behavior of the directly executed program whose
    description is provided.


    That is a stupid thing to say.
    HHH computes the mapping to a return value on the
    basis of what its finite string INPUT specifies.

    THIS IS WHAT IT SPECIFIES
    *DD correctly emulated by HHH cannot possibly reach*
    *its own "ret" instruction and terminate normally*
    Yes, that is what HHH reports: I cannot complete the simulation up to
    the end. No more, no less.
    There are easier ways to make a program to report the failure of a
    simulation.

    The finite string of DD correctly emulated by HHH
    specifies recursive emulation that cannot possibly
    reach its own "ret" instruction BECAUSE IT SPECIFIES
    RECURSINVE EMULATION.


    Only a finite recursion, as proven by direct execution and the
    simulation by world-class simulators.
    But HHH fails to reach the 'ret' instruction of DD. It is correct that
    HHH reports its failure to complete the simulation.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Fri Mar 7 10:05:55 2025
    Op 06.mrt.2025 om 22:02 schreef olcott:
    On 3/6/2025 2:28 PM, dbush wrote:
    On 3/6/2025 3:16 PM, olcott wrote:
    On 3/6/2025 3:17 AM, Fred. Zwarts wrote:
    Op 06.mrt.2025 om 05:46 schreef olcott:
    On 3/5/2025 5:36 PM, Richard Damon wrote:
    On 3/5/25 4:03 PM, dbush wrote:
    On 3/5/2025 3:55 PM, olcott wrote:
    On 3/5/2025 10:14 AM, joes wrote:
    Am Wed, 05 Mar 2025 08:10:00 -0600 schrieb olcott:
    On 3/5/2025 6:19 AM, Richard Damon wrote:
    On 3/5/25 12:09 AM, olcott wrote:
    On 3/4/2025 11:07 PM, Richard Damon wrote:
    On 3/4/25 11:48 PM, olcott wrote:
    On 3/4/2025 10:44 PM, Richard Damon wrote:
    On 3/4/25 7:34 PM, olcott wrote:
    On 3/4/2025 5:45 PM, Richard Damon wrote:
    On 3/4/25 11:11 AM, olcott wrote:
    On 3/4/2025 9:08 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 15:17 schreef olcott: >>>>>>>>>>>>>>>>>>>> On 3/4/2025 3:14 AM, Fred. Zwarts wrote: >>>>>>>>>>>>>>>>>>>>> Op 04.mrt.2025 om 04:07 schreef olcott:

    So, my claim remains: HHH fails to reach the 'ret' >>>>>>>>>>>>>>>>>>> instruction,
    where the direct execution and some world-class >>>>>>>>>>>>>>>>>>> simulators have
    no problem to reach it.
    DD calls its own emulator when emulated by HHH. >>>>>>>>>>>>>>>>>> DD DOES NOT call its own emulator when emulated by >>>>>>>>>>>>>>>>>> HHH1. DD DOES
    NOT call its own emulator when directly executed. >>>>>>>>>>>>>>>>> Which just show your stupidity, as DD doesn't HAVE its own >>>>>>>>>>>>>>>>> emulator, and CAN'T know who or if it is being emulated. >>>>>>>>>>>>>>>> It is not my stupidity it is your dishonestly using the >>>>>>>>>>>>>>>> straw-man
    deception to change the subject away from:
    DD correctly emulated by HHH cannot possibly reach its >>>>>>>>>>>>>>>> own "ret"
    instruction and terminate normally.
    WHich is the strawman, that you are too stupid to recogines. >>>>>>>>>>>>>> I will show that it is not straw-man after you quit >>>>>>>>>>>>>> dodging that
    point.
    Wrong order,
    I WILL NOT TOLERATE ANY OTHER ORDER
    In other words, you CAN'T handle any other order, even though >>>>>>>>>>> logically
    requried, because you need to hide your fraud.
    My proof requires a specific  prerequisite order.
    One cannot learn algebra before one has learned to count to ten. >>>>>>>>>> DD correctly emulated by HHH cannot possibly reach its own "ret" >>>>>>>>>> instruction and terminate normally.
    Is the first step of the mandatory prerequisite order of my proof >>>>>>>>> What is the next step?


    *DD correctly emulated by HHH cannot possibly reach*
    *its own "ret" instruction and terminate normally*

    It has taken two years to create this first step such that it
    is the the simplest way to state the key element of the
    whole proof and make this element impossible to correctly refute. >>>>>>>>
    EVERY ATTEMPT TO CHANGE THE SUBJECT AWAY FROM THIS POINT
    IS DISHONEST.


    Before agreeing on an answer, it is first required to agree on
    the question.

    Which is the problem, since you don't have the correct question.

    If HHH is a Halt Decider / Termination analyzer, the ONLY behavior >>>>>> that matters is the behavior of the directly executed program
    whose description is provided.


    That is a stupid thing to say.
    HHH computes the mapping to a return value on the
    basis of what its finite string INPUT specifies.

    THIS IS WHAT IT SPECIFIES
    *DD correctly emulated by HHH cannot possibly reach*
    *its own "ret" instruction and terminate normally*
    Yes, that is what HHH reports: I cannot complete the simulation up
    to the end. No more, no less.
    There are easier ways to make a program to report the failure of a
    simulation.

    The finite string of replacing the code of HHH with an unconditional
    simulator and subsequently running HHH(DD)
    specifies recursive emulation that cannot possibly
    reach its own "ret" instruction BECAUSE IT SPECIFIES
    RECURSINVE EMULATION.


    Makes sense

    Whether or not the code of HHH is replaced
    DD correctly emulated by HHH cannot possibly reach
    its own "ret" instruction and terminate normally.

    In the latter case HHH can (and does) report that
    its input finite string specifies a non-terminating
    sequence of instructions.


    No, it reports its failure to complete the simulation.
    The non-termination exists only in Olcott's dreams.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Richard Damon@21:1/5 to olcott on Fri Mar 7 07:32:20 2025
    On 3/6/25 9:31 PM, olcott wrote:
    On 3/6/2025 6:37 PM, Richard Damon wrote:
    On 3/6/25 3:18 PM, olcott wrote:
    On 3/6/2025 3:20 AM, joes wrote:
    Am Wed, 05 Mar 2025 22:03:39 -0600 schrieb olcott:
    On 3/5/2025 9:57 PM, dbush wrote:
    On 3/5/2025 10:53 PM, olcott wrote:
    On 3/5/2025 9:31 PM, dbush wrote:
    On 3/5/2025 10:17 PM, olcott wrote:
    On 3/5/2025 7:10 PM, dbush wrote:

    In other words, you know that what you're working on has
    nothing to
    do with the halting problem, but you don't care.

    In other words I WILL NOT TOLERATE ANY BULLSHIT DEFLECTION.
    You have proven that you know these things pretty well SO QUIT THE >>>>>>>>> SHIT!
    You want people to accept that HHH(DD) does in fact report that >>>>>>>> changing the code of HHH to an unconditional simulator and running >>>>>>>> HHH(DD) will not halt.

    DD correctly emulated by HHH cannot possibly reach its own "ret" >>>>>>> instruction and terminate normally.

    In other words, replacing the code of HHH with an unconditional
    simulator and subsequently running HHH(DD) does not halt, which you >>>>>> previously agreed is correct:
    On 2/22/2025 1:02 PM, olcott wrote:
      > On 2/22/2025 11:10 AM, dbush wrote:
      >> On 2/22/2025 11:43 AM, olcott wrote:
      >>> The first point is DD correctly simulated by HHH cannot
    possibly
      >>> terminate normally by reaching its own "return" instruction. >>>>>>   >>
      >> In other words, if the code of HHH is replaced with an
      >> unconditional simulator then it can be shown that DD is
      >> non-halting and therefore HHH(DD)==0 is correct.
      >>
      > Wow finally someone that totally gets it.

    If you disagree, explain why this is different.
    In particular, give an example where X correctly emulated by Y is
    different from replacing the code of Y with an unconditional
    simulator
    and subsequently running Y(X).

    I may not have enough time left to change the subject and endlessly go >>>>> through anything but the exact point.

    You used to have enough time.


    That is before the CAR T cell manufacturing process failed twice.

    Which really means you need to abandon your fraudulent methods

    _DD()
    [00002133] 55         push ebp      ; housekeeping
    [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.


    No, and your problem is still that you are trying to hold to you
    admitted FRAUD.

    The DD above is NOT a "Program" as it is not complete.

    Thus, the DD above can NOT be "correctly emulated" by HHH, and thus your arguement is based on a false premise.

    The fact that no HHH can correctly emulated the template DD based on
    itself doesn't say anything about the instance of DD you are trying to
    talk about, the template DD based on the HHH that gives the right
    answer, which aborts its emulation, and thus doesn't do aa "correct"
    emulation.

    You never have answered any of these points, just showing that either
    you are so stupid you don't understand them, or you know you are just a
    fraud and are just ignorning them.

    It seems you are just deciding to waste your final days continuing to
    assert proven erroreus statements to solidify the conclusion that you
    are just an idiot.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Fri Mar 7 16:18:27 2025
    Op 07.mrt.2025 om 15:58 schreef olcott:
    On 3/7/2025 2:26 AM, Mikko wrote:
    On 2025-03-06 20:11:34 +0000, olcott said:

    On 3/6/2025 2:02 AM, Mikko wrote:
    On 2025-03-04 14:26:39 +0000, olcott said:

    On 3/4/2025 4:36 AM, Mikko wrote:
    On 2025-03-04 03:07:56 +0000, olcott said:

    int DD()
    {
       int Halt_Status = HHH(DD);
       if (Halt_Status)
         HERE: goto HERE;
       return Halt_Status;
    }

    _DD()
    [00002133] 55         push ebp      ; housekeeping
    [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local >>>>>>> [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.

    The only valid rebuttal is to show all of the steps of
    exactly how DD correctly emulated by HHH reaches its
    own "ret" instruction.

    The question whether DD emulated by HHH exists is too
    uninteresting that
    it would need a rebuttal, and so is the question that does it
    reach its
    "ret" instruction if it exsists.


    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.
    *Proves that the input to HHH(DD) can be rejected as non-halting*

    As "DD correctly emulated by HHH" does not exist

    *No one has made any attempt to show that*

    Maybe not. Perhaps every demonstration of that was just a byproduct of
    some other attempt. Anyway, HHH does not emulate DD correctly to the end.


    Simulating termination analyzer HHH simulates its input DD until HHH correctly determines that DD cannot possibly reach its own "return" instruction and terminate normally.
    Indeed, HHH reports that it cannot possibly perform a complete (correct) simulation of itself.
    This is the only possible correct interpretation of the result of HHH.
    Any other interpretation has no grounds.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Fri Mar 7 16:15:18 2025
    Op 07.mrt.2025 om 15:49 schreef olcott:
    On 3/7/2025 2:02 AM, joes wrote:
    Am Thu, 06 Mar 2025 20:59:49 -0600 schrieb olcott:
    On 3/6/2025 6:37 PM, Richard Damon wrote:
    On 3/6/25 3:16 PM, olcott wrote:
    On 3/6/2025 3:17 AM, Fred. Zwarts wrote:
    Op 06.mrt.2025 om 05:46 schreef olcott:
    On 3/5/2025 5:36 PM, Richard Damon wrote:
    On 3/5/25 4:03 PM, dbush wrote:
    On 3/5/2025 3:55 PM, olcott wrote:
    On 3/5/2025 10:14 AM, joes wrote:
    Am Wed, 05 Mar 2025 08:10:00 -0600 schrieb olcott:
    On 3/5/2025 6:19 AM, Richard Damon wrote:
    On 3/5/25 12:09 AM, olcott wrote:

    I WILL NOT TOLERATE ANY OTHER ORDER
    In other words, you CAN'T handle any other order, even though >>>>>>>>>>>>> logically requried, because you need to hide your fraud. >>>>>>>>>>>> My proof requires a specific  prerequisite order.
    One cannot learn algebra before one has learned to count to >>>>>>>>>>>> ten. DD correctly emulated by HHH cannot possibly reach its own >>>>>>>>>>>> "ret" instruction and terminate normally.
    Is the first step of the mandatory prerequisite order of my >>>>>>>>>>>> proof
    What is the next step?
    *DD correctly emulated by HHH cannot possibly reach*
    *its own "ret" instruction and terminate normally*
    It has taken two years to create this first step such that it is >>>>>>>>>> the the simplest way to state the key element of the whole proof >>>>>>>>>> and make this element impossible to correctly refute.
    EVERY ATTEMPT TO CHANGE THE SUBJECT AWAY FROM THIS POINT IS >>>>>>>>>> DISHONEST.
    So what's the next step?

    Before agreeing on an answer, it is first required to agree on the >>>>>>>>> question.
    Which is the problem, since you don't have the correct question. >>>>>>>> If HHH is a Halt Decider / Termination analyzer, the ONLY behavior >>>>>>>> that matters is the behavior of the directly executed program whose >>>>>>>> description is provided.
    That is a stupid thing to say.
    HHH computes the mapping to a return value on the basis of what its >>>>>>> finite string INPUT specifies.
    Yes, that is the directly executed program.

    THIS IS WHAT IT SPECIFIES *DD correctly emulated by HHH cannot
    possibly reach its own "ret" instruction and terminate normally*
    No, DD doesn't specify anything about what is to simulate it.

    Yes, that is what HHH reports: I cannot complete the simulation up to >>>>>> the end. No more, no less.
    There are easier ways to make a program to report the failure of a >>>>>> simulation.
    The finite string of DD correctly emulated by HHH specifies recursive >>>>> emulation that cannot possibly reach its own "ret" instruction BECAUSE >>>>> IT SPECIFIES RECURSINVE EMULATION.
    No, HHH aborts.

    But the HHH that decides are returns can't be that HHH, so the DD given >>>> to that HHH doesn't call the correctly emulating HHH, so you whole
    argument is shown to be the fraud you have admitted to.
    That seems to be a little incoherent so I cannot tell what you are
    saying yet you are at least attempting to use reasoning.
    I am just saying what the actual x86 machine code actually specifies
    therefore any rebuttal is necessarily incorrect.

    And the actual code of DD specifies that it halts.

    *Straw-man deception*

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.

    Strawman. HHH fails to reach the 'ret' instruction, so HHH fails to do a compete simulation.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Fri Mar 7 17:23:47 2025
    Op 07.mrt.2025 om 16:22 schreef olcott:
    On 3/7/2025 3:09 AM, Fred. Zwarts wrote:
    Op 06.mrt.2025 om 21:11 schreef olcott:
    On 3/6/2025 2:02 AM, Mikko wrote:
    On 2025-03-04 14:26:39 +0000, olcott said:

    On 3/4/2025 4:36 AM, Mikko wrote:
    On 2025-03-04 03:07:56 +0000, olcott said:

    int DD()
    {
       int Halt_Status = HHH(DD);
       if (Halt_Status)
         HERE: goto HERE;
       return Halt_Status;
    }

    _DD()
    [00002133] 55         push ebp      ; housekeeping
    [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local >>>>>>> [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.

    The only valid rebuttal is to show all of the steps of
    exactly how DD correctly emulated by HHH reaches its
    own "ret" instruction.

    The question whether DD emulated by HHH exists is too
    uninteresting that
    it would need a rebuttal, and so is the question that does it
    reach its
    "ret" instruction if it exsists.


    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.
    *Proves that the input to HHH(DD) can be rejected as non-halting*

    As "DD correctly emulated by HHH" does not exist

    *No one has made any attempt to show that*




    There is no proof that it does exist.

    Failing to understand this code is less than no rebuttal at all. https://github.com/plolcott/x86utm/blob/master/Halt7.c
    Failing to understand that no HHH can correctly simulate itself is no
    rebuttal at all.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Fri Mar 7 17:25:58 2025
    Op 07.mrt.2025 om 16:17 schreef olcott:
    On 3/7/2025 2:59 AM, Fred. Zwarts wrote:
    Op 06.mrt.2025 om 21:13 schreef olcott:
    On 3/6/2025 3:13 AM, Fred. Zwarts wrote:
    Op 06.mrt.2025 om 04:53 schreef olcott:
    On 3/5/2025 9:31 PM, dbush wrote:
    On 3/5/2025 10:17 PM, olcott wrote:
    On 3/5/2025 7:10 PM, dbush wrote:

    In other words, you know that what you're working on has nothing >>>>>>>> to do with the halting problem, but you don't care.

    In other words I WILL NOT TOLERATE ANY BULLSHIT DEFLECTION.
    You have proven that you know these things pretty well SO QUIT
    THE SHIT!


    You want people to accept that HHH(DD) does in fact report that
    changing the code of HHH to an unconditional simulator and running >>>>>> HHH(DD) will not halt.


    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.

    Yes, we agree that HHH fails to reach the 'ret' instruction,

    Despicably dishonest attempt at the straw-man deception.


    No rebuttal. So, we agree that HHH fails to reach the 'ret' instruction.

    Not at all. Trying to get away with changing the subject
    WILL NOT BE TOLERATED.

    If you do not agree that HHH fails to reach the 'ret' instruction (that world-class simulators do reach, just as the direct execution does),
    show how it reaches the 'ret' instruction.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Fri Mar 7 17:27:38 2025
    Op 07.mrt.2025 om 16:30 schreef olcott:
    On 3/7/2025 9:15 AM, Fred. Zwarts wrote:
    Op 07.mrt.2025 om 15:49 schreef olcott:
    On 3/7/2025 2:02 AM, joes wrote:
    Am Thu, 06 Mar 2025 20:59:49 -0600 schrieb olcott:
    On 3/6/2025 6:37 PM, Richard Damon wrote:
    On 3/6/25 3:16 PM, olcott wrote:
    On 3/6/2025 3:17 AM, Fred. Zwarts wrote:
    Op 06.mrt.2025 om 05:46 schreef olcott:
    On 3/5/2025 5:36 PM, Richard Damon wrote:
    On 3/5/25 4:03 PM, dbush wrote:
    On 3/5/2025 3:55 PM, olcott wrote:
    On 3/5/2025 10:14 AM, joes wrote:
    Am Wed, 05 Mar 2025 08:10:00 -0600 schrieb olcott:
    On 3/5/2025 6:19 AM, Richard Damon wrote:
    On 3/5/25 12:09 AM, olcott wrote:

    I WILL NOT TOLERATE ANY OTHER ORDER
    In other words, you CAN'T handle any other order, even >>>>>>>>>>>>>>> though
    logically requried, because you need to hide your fraud. >>>>>>>>>>>>>> My proof requires a specific  prerequisite order. >>>>>>>>>>>>>> One cannot learn algebra before one has learned to count to >>>>>>>>>>>>>> ten. DD correctly emulated by HHH cannot possibly reach >>>>>>>>>>>>>> its own
    "ret" instruction and terminate normally.
    Is the first step of the mandatory prerequisite order of my >>>>>>>>>>>>>> proof
    What is the next step?
    *DD correctly emulated by HHH cannot possibly reach*
    *its own "ret" instruction and terminate normally*
    It has taken two years to create this first step such that >>>>>>>>>>>> it is
    the the simplest way to state the key element of the whole >>>>>>>>>>>> proof
    and make this element impossible to correctly refute.
    EVERY ATTEMPT TO CHANGE THE SUBJECT AWAY FROM THIS POINT IS >>>>>>>>>>>> DISHONEST.
    So what's the next step?

    Before agreeing on an answer, it is first required to agree >>>>>>>>>>> on the
    question.
    Which is the problem, since you don't have the correct question. >>>>>>>>>> If HHH is a Halt Decider / Termination analyzer, the ONLY
    behavior
    that matters is the behavior of the directly executed program >>>>>>>>>> whose
    description is provided.
    That is a stupid thing to say.
    HHH computes the mapping to a return value on the basis of what >>>>>>>>> its
    finite string INPUT specifies.
    Yes, that is the directly executed program.

    THIS IS WHAT IT SPECIFIES *DD correctly emulated by HHH cannot >>>>>>>>> possibly reach its own "ret" instruction and terminate normally*
    No, DD doesn't specify anything about what is to simulate it.

    Yes, that is what HHH reports: I cannot complete the simulation >>>>>>>> up to
    the end. No more, no less.
    There are easier ways to make a program to report the failure of a >>>>>>>> simulation.
    The finite string of DD correctly emulated by HHH specifies
    recursive
    emulation that cannot possibly reach its own "ret" instruction
    BECAUSE
    IT SPECIFIES RECURSINVE EMULATION.
    No, HHH aborts.

    But the HHH that decides are returns can't be that HHH, so the DD
    given
    to that HHH doesn't call the correctly emulating HHH, so you whole >>>>>> argument is shown to be the fraud you have admitted to.
    That seems to be a little incoherent so I cannot tell what you are
    saying yet you are at least attempting to use reasoning.
    I am just saying what the actual x86 machine code actually specifies >>>>> therefore any rebuttal is necessarily incorrect.

    And the actual code of DD specifies that it halts.

    *Straw-man deception*

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.

    Strawman. HHH fails to reach the 'ret' instruction, so HHH fails to do
    a compete simulation.

    Simulating termination analyzer HHH simulates its input DD until HHH correctly determines that DD cannot possibly reach its own "return" instruction and terminate normally.


    In other words: Indeed, HHH fails to reach the 'ret' instruction of its simulation, so the simulation fails to terminate normally.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Fri Mar 7 17:31:24 2025
    Op 07.mrt.2025 om 16:20 schreef olcott:
    On 3/7/2025 3:03 AM, Fred. Zwarts wrote:
    Op 06.mrt.2025 om 21:16 schreef olcott:
    On 3/6/2025 3:17 AM, Fred. Zwarts wrote:
    Op 06.mrt.2025 om 05:46 schreef olcott:
    On 3/5/2025 5:36 PM, Richard Damon wrote:
    On 3/5/25 4:03 PM, dbush wrote:
    On 3/5/2025 3:55 PM, olcott wrote:
    On 3/5/2025 10:14 AM, joes wrote:
    Am Wed, 05 Mar 2025 08:10:00 -0600 schrieb olcott:
    On 3/5/2025 6:19 AM, Richard Damon wrote:
    On 3/5/25 12:09 AM, olcott wrote:
    On 3/4/2025 11:07 PM, Richard Damon wrote:
    On 3/4/25 11:48 PM, olcott wrote:
    On 3/4/2025 10:44 PM, Richard Damon wrote:
    On 3/4/25 7:34 PM, olcott wrote:
    On 3/4/2025 5:45 PM, Richard Damon wrote:
    On 3/4/25 11:11 AM, olcott wrote:
    On 3/4/2025 9:08 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 15:17 schreef olcott: >>>>>>>>>>>>>>>>>>>> On 3/4/2025 3:14 AM, Fred. Zwarts wrote: >>>>>>>>>>>>>>>>>>>>> Op 04.mrt.2025 om 04:07 schreef olcott:

    So, my claim remains: HHH fails to reach the 'ret' >>>>>>>>>>>>>>>>>>> instruction,
    where the direct execution and some world-class >>>>>>>>>>>>>>>>>>> simulators have
    no problem to reach it.
    DD calls its own emulator when emulated by HHH. >>>>>>>>>>>>>>>>>> DD DOES NOT call its own emulator when emulated by >>>>>>>>>>>>>>>>>> HHH1. DD DOES
    NOT call its own emulator when directly executed. >>>>>>>>>>>>>>>>> Which just show your stupidity, as DD doesn't HAVE its own >>>>>>>>>>>>>>>>> emulator, and CAN'T know who or if it is being emulated. >>>>>>>>>>>>>>>> It is not my stupidity it is your dishonestly using the >>>>>>>>>>>>>>>> straw-man
    deception to change the subject away from:
    DD correctly emulated by HHH cannot possibly reach its >>>>>>>>>>>>>>>> own "ret"
    instruction and terminate normally.
    WHich is the strawman, that you are too stupid to recogines. >>>>>>>>>>>>>> I will show that it is not straw-man after you quit >>>>>>>>>>>>>> dodging that
    point.
    Wrong order,
    I WILL NOT TOLERATE ANY OTHER ORDER
    In other words, you CAN'T handle any other order, even though >>>>>>>>>>> logically
    requried, because you need to hide your fraud.
    My proof requires a specific  prerequisite order.
    One cannot learn algebra before one has learned to count to ten. >>>>>>>>>> DD correctly emulated by HHH cannot possibly reach its own "ret" >>>>>>>>>> instruction and terminate normally.
    Is the first step of the mandatory prerequisite order of my proof >>>>>>>>> What is the next step?


    *DD correctly emulated by HHH cannot possibly reach*
    *its own "ret" instruction and terminate normally*

    It has taken two years to create this first step such that it
    is the the simplest way to state the key element of the
    whole proof and make this element impossible to correctly refute. >>>>>>>>
    EVERY ATTEMPT TO CHANGE THE SUBJECT AWAY FROM THIS POINT
    IS DISHONEST.


    Before agreeing on an answer, it is first required to agree on
    the question.

    Which is the problem, since you don't have the correct question.

    If HHH is a Halt Decider / Termination analyzer, the ONLY behavior >>>>>> that matters is the behavior of the directly executed program
    whose description is provided.


    That is a stupid thing to say.
    HHH computes the mapping to a return value on the
    basis of what its finite string INPUT specifies.

    THIS IS WHAT IT SPECIFIES
    *DD correctly emulated by HHH cannot possibly reach*
    *its own "ret" instruction and terminate normally*
    Yes, that is what HHH reports: I cannot complete the simulation up
    to the end. No more, no less.
    There are easier ways to make a program to report the failure of a
    simulation.

    The finite string of DD correctly emulated by HHH
    specifies recursive emulation that cannot possibly
    reach its own "ret" instruction BECAUSE IT SPECIFIES
    RECURSINVE EMULATION.


    Only a finite recursion, as proven by direct execution and the
    simulation by world-class simulators.
    But HHH fails to reach the 'ret' instruction of DD. It is correct that
    HHH reports its failure to complete the simulation.

    HHH/DD  recursive emulation

    Read and think before responding. I agreed that there is a finite recursion.

    main/DD no recursive emulation

    Even there HHH (when called by DD) performs a finite recursion.

    HHH1/DD no recursive emulation

    Here the finite recursion is only simulated, but it is correctly simulated.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Fri Mar 7 17:35:39 2025
    Op 07.mrt.2025 om 16:34 schreef olcott:
    On 3/7/2025 9:18 AM, Fred. Zwarts wrote:
    Op 07.mrt.2025 om 15:58 schreef olcott:
    On 3/7/2025 2:26 AM, Mikko wrote:
    On 2025-03-06 20:11:34 +0000, olcott said:

    On 3/6/2025 2:02 AM, Mikko wrote:
    On 2025-03-04 14:26:39 +0000, olcott said:

    On 3/4/2025 4:36 AM, Mikko wrote:
    On 2025-03-04 03:07:56 +0000, olcott said:

    int DD()
    {
       int Halt_Status = HHH(DD);
       if (Halt_Status)
         HERE: goto HERE;
       return Halt_Status;
    }

    _DD()
    [00002133] 55         push ebp      ; housekeeping >>>>>>>>> [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local
    [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.

    The only valid rebuttal is to show all of the steps of
    exactly how DD correctly emulated by HHH reaches its
    own "ret" instruction.

    The question whether DD emulated by HHH exists is too
    uninteresting that
    it would need a rebuttal, and so is the question that does it
    reach its
    "ret" instruction if it exsists.


    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.
    *Proves that the input to HHH(DD) can be rejected as non-halting* >>>>>>
    As "DD correctly emulated by HHH" does not exist

    *No one has made any attempt to show that*

    Maybe not. Perhaps every demonstration of that was just a byproduct of >>>> some other attempt. Anyway, HHH does not emulate DD correctly to the
    end.


    Simulating termination analyzer HHH simulates its input DD until HHH
    correctly determines that DD cannot possibly reach its own "return"
    instruction and terminate normally.
    Indeed, HHH reports that it cannot possibly perform a complete
    (correct) simulation of itself.
    This is the only possible correct interpretation of the result of HHH.
    Any other interpretation has no grounds.

    No matter how many times you stupidly ignore the verified
    fact that DD calls HHH(DD) in recursive emulation this does
    not change the fact that DD cannot possibly reach its own
    "ret" instruction because it calls HHH(DD) in recursive emulation.

    Why do you ignore the fact that that we agree that HHH fails to reach
    the 'ret' instruction after a finite recursion?
    Agreeing is not a rebuttal.
    We agree that HHH correctly reports that it cannot possibly reach the
    'ret' instruction and that it aborted the simulation before the
    simulation has been completed correctly.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From joes@21:1/5 to All on Fri Mar 7 16:42:27 2025
    Am Fri, 07 Mar 2025 09:34:05 -0600 schrieb olcott:
    On 3/7/2025 9:18 AM, Fred. Zwarts wrote:
    Op 07.mrt.2025 om 15:58 schreef olcott:
    On 3/7/2025 2:26 AM, Mikko wrote:
    On 2025-03-06 20:11:34 +0000, olcott said:
    On 3/6/2025 2:02 AM, Mikko wrote:
    On 2025-03-04 14:26:39 +0000, olcott said:
    On 3/4/2025 4:36 AM, Mikko wrote:
    On 2025-03-04 03:07:56 +0000, olcott said:

    DD correctly emulated by HHH cannot possibly reach its own "ret" >>>>>>>>> instruction and terminate normally.
    The only valid rebuttal is to show all of the steps of exactly >>>>>>>>> how DD correctly emulated by HHH reaches its own "ret"
    instruction.
    The question whether DD emulated by HHH exists is too
    uninteresting that it would need a rebuttal, and so is the
    question that does it reach its "ret" instruction if it exsists. >>>>>>> DD correctly emulated by HHH cannot possibly reach its own "ret" >>>>>>> instruction and terminate normally.
    *Proves that the input to HHH(DD) can be rejected as non-halting* >>>>>> As "DD correctly emulated by HHH" does not exist
    *No one has made any attempt to show that*
    Maybe not. Perhaps every demonstration of that was just a byproduct
    of some other attempt. Anyway, HHH does not emulate DD correctly to
    the end.
    Simulating termination analyzer HHH simulates its input DD until HHH
    correctly determines that DD cannot possibly reach its own "return"
    instruction and terminate normally.
    Indeed, HHH reports that it cannot possibly perform a complete
    (correct)
    simulation of itself.
    This is the only possible correct interpretation of the result of HHH.
    Any other interpretation has no grounds.
    No matter how many times you stupidly ignore the verified fact that DD
    calls HHH(DD) in recursive emulation this does not change the fact that
    DD cannot possibly reach its own "ret" instruction because it calls
    HHH(DD) in recursive emulation.
    Only when HHH tries to simulate it, not DD by itself.

    --
    Am Sat, 20 Jul 2024 12:35:31 +0000 schrieb WM in sci.math:
    It is not guaranteed that n+1 exists for every n.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Richard Damon@21:1/5 to olcott on Fri Mar 7 19:03:28 2025
    On 3/7/25 10:28 AM, olcott wrote:
    On 3/7/2025 6:32 AM, Richard Damon wrote:
    On 3/6/25 9:31 PM, olcott wrote:
    On 3/6/2025 6:37 PM, Richard Damon wrote:
    On 3/6/25 3:18 PM, olcott wrote:
    On 3/6/2025 3:20 AM, joes wrote:
    Am Wed, 05 Mar 2025 22:03:39 -0600 schrieb olcott:
    On 3/5/2025 9:57 PM, dbush wrote:
    On 3/5/2025 10:53 PM, olcott wrote:
    On 3/5/2025 9:31 PM, dbush wrote:
    On 3/5/2025 10:17 PM, olcott wrote:
    On 3/5/2025 7:10 PM, dbush wrote:

    In other words, you know that what you're working on has >>>>>>>>>>>> nothing to
    do with the halting problem, but you don't care.

    In other words I WILL NOT TOLERATE ANY BULLSHIT DEFLECTION. >>>>>>>>>>> You have proven that you know these things pretty well SO >>>>>>>>>>> QUIT THE
    SHIT!
    You want people to accept that HHH(DD) does in fact report that >>>>>>>>>> changing the code of HHH to an unconditional simulator and >>>>>>>>>> running
    HHH(DD) will not halt.

    DD correctly emulated by HHH cannot possibly reach its own "ret" >>>>>>>>> instruction and terminate normally.

    In other words, replacing the code of HHH with an unconditional >>>>>>>> simulator and subsequently running HHH(DD) does not halt, which you >>>>>>>> previously agreed is correct:
    On 2/22/2025 1:02 PM, olcott wrote:
      > On 2/22/2025 11:10 AM, dbush wrote:
      >> On 2/22/2025 11:43 AM, olcott wrote:
      >>> The first point is DD correctly simulated by HHH cannot >>>>>>>> possibly
      >>> terminate normally by reaching its own "return" instruction. >>>>>>>>   >>
      >> In other words, if the code of HHH is replaced with an
      >> unconditional simulator then it can be shown that DD is
      >> non-halting and therefore HHH(DD)==0 is correct.
      >>
      > Wow finally someone that totally gets it.

    If you disagree, explain why this is different.
    In particular, give an example where X correctly emulated by Y is >>>>>>>> different from replacing the code of Y with an unconditional
    simulator
    and subsequently running Y(X).

    I may not have enough time left to change the subject and
    endlessly go
    through anything but the exact point.

    You used to have enough time.


    That is before the CAR T cell manufacturing process failed twice.

    Which really means you need to abandon your fraudulent methods

    _DD()
    [00002133] 55         push ebp      ; housekeeping
    [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local
    [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.


    No,

    You could show the machine-address by machine-address
    correct execution trace if i was wrong. You only
    dodge this because you k ow that I am correct.

    I have reposted YOUR posting of the correct emulation of a minor variant
    of this DD / HHH pair


    and your problem is still that you are trying to hold to you admitted
    FRAUD.


    Using ad hominem instead of reasoning makes you
    look very foolish.


    Which just shows that you don't even know that that words means,

    I have never used you stupidity to prove that you are wrong, which would
    be an ad hominem, I have used the fact that you are wrong, and keep
    repeating that error despite being shown why it is wrong as the proof
    that you are stupid.

    That is NOT ad hominen, just factual rebuke.

    The fact that you have admitted that you whole arguent is just one giant
    fraud as you admit that you are not using the definitions of the system
    you are talking about just makes all of the discussion moot. Since you
    have admitted that you don't care about the actual definitions, but are
    using something different just proves that you arguments are a fraud,
    and you may well be unable to understand the arguments since you are
    living in the insanity of being disconeected from the world you are in
    and just imagining it to be something else.

    Until you fix that fundamental problem nothing you say can be taken
    seriously, as someone who boasts of working with lies should not be trusted.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Richard Damon@21:1/5 to olcott on Fri Mar 7 21:00:20 2025
    On 3/7/25 8:49 PM, olcott wrote:
    On 3/7/2025 10:25 AM, Fred. Zwarts wrote:
    Op 07.mrt.2025 om 16:17 schreef olcott:
    On 3/7/2025 2:59 AM, Fred. Zwarts wrote:
    Op 06.mrt.2025 om 21:13 schreef olcott:
    On 3/6/2025 3:13 AM, Fred. Zwarts wrote:
    Op 06.mrt.2025 om 04:53 schreef olcott:
    On 3/5/2025 9:31 PM, dbush wrote:
    On 3/5/2025 10:17 PM, olcott wrote:
    On 3/5/2025 7:10 PM, dbush wrote:

    In other words, you know that what you're working on has
    nothing to do with the halting problem, but you don't care. >>>>>>>>>
    In other words I WILL NOT TOLERATE ANY BULLSHIT DEFLECTION.
    You have proven that you know these things pretty well SO QUIT >>>>>>>>> THE SHIT!


    You want people to accept that HHH(DD) does in fact report that >>>>>>>> changing the code of HHH to an unconditional simulator and
    running HHH(DD) will not halt.


    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.

    Yes, we agree that HHH fails to reach the 'ret' instruction,

    Despicably dishonest attempt at the straw-man deception.


    No rebuttal. So, we agree that HHH fails to reach the 'ret'
    instruction.

    Not at all. Trying to get away with changing the subject
    WILL NOT BE TOLERATED.

    If you do not agree that HHH fails to reach the 'ret' instruction
    (that world-class simulators do reach, just as the direct execution
    does), show how it reaches the 'ret' instruction.

    *set X*
    When-so-ever any input to any simulating termination
    analyzer calls the simulator that is simulating itself

    *result of set X*
    this input cannot possibly reach its own final state
    and terminate normally because it remains stuck in
    recursive emulation.

    But the failure of the PARTIAL emulatipon done by the termination
    analyzer doesn't show that the input is non-haltiong



    *Ridiculously stupid dishonest fake rebuttal*

    That members of different sets having different behavior
    proves that inputs calling their own simulator must have
    this same behavior.



    But those sets have nothing to do with the halting question.

    This is just part of your ADMITTED FRAUD based on using the WRONG
    DEFINITION of the core concepts.

    For instance, neither you HHH or your DD meet the definions of a
    Compuation / Program for computation theory, so you whole arguement is
    just based on LIES.

    Sorry, all you are doing is proving you are either too stupid to
    understand your stupid errors, or just so blantantly dishonest you don't
    care about the truth.

    That is what you have burned into the name "Peter Olcott" for eterninty.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Sat Mar 8 09:47:44 2025
    Op 08.mrt.2025 om 02:49 schreef olcott:
    On 3/7/2025 10:25 AM, Fred. Zwarts wrote:
    Op 07.mrt.2025 om 16:17 schreef olcott:
    On 3/7/2025 2:59 AM, Fred. Zwarts wrote:
    Op 06.mrt.2025 om 21:13 schreef olcott:
    On 3/6/2025 3:13 AM, Fred. Zwarts wrote:
    Op 06.mrt.2025 om 04:53 schreef olcott:
    On 3/5/2025 9:31 PM, dbush wrote:
    On 3/5/2025 10:17 PM, olcott wrote:
    On 3/5/2025 7:10 PM, dbush wrote:

    In other words, you know that what you're working on has
    nothing to do with the halting problem, but you don't care. >>>>>>>>>
    In other words I WILL NOT TOLERATE ANY BULLSHIT DEFLECTION.
    You have proven that you know these things pretty well SO QUIT >>>>>>>>> THE SHIT!


    You want people to accept that HHH(DD) does in fact report that >>>>>>>> changing the code of HHH to an unconditional simulator and
    running HHH(DD) will not halt.


    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.

    Yes, we agree that HHH fails to reach the 'ret' instruction,

    Despicably dishonest attempt at the straw-man deception.


    No rebuttal. So, we agree that HHH fails to reach the 'ret'
    instruction.

    Not at all. Trying to get away with changing the subject
    WILL NOT BE TOLERATED.

    If you do not agree that HHH fails to reach the 'ret' instruction
    (that world-class simulators do reach, just as the direct execution
    does), show how it reaches the 'ret' instruction.

    *set X*
    When-so-ever any input to any simulating termination
    analyzer calls the simulator that is simulating itself

    *result of set X*
    this input cannot possibly reach its own final state
    and terminate normally because it remains stuck in
    recursive emulation.


    So, we agree that any simulator that tries to simulate *itself* cannot
    possibly reach the end of its simulation.
    Why would we want to use such an analyser that reports that it fails to complete the simulation?

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Sat Mar 8 09:59:14 2025
    Op 08.mrt.2025 om 02:57 schreef olcott:
    On 3/7/2025 10:35 AM, Fred. Zwarts wrote:
    Op 07.mrt.2025 om 16:34 schreef olcott:
    On 3/7/2025 9:18 AM, Fred. Zwarts wrote:
    Op 07.mrt.2025 om 15:58 schreef olcott:
    On 3/7/2025 2:26 AM, Mikko wrote:
    On 2025-03-06 20:11:34 +0000, olcott said:

    On 3/6/2025 2:02 AM, Mikko wrote:
    On 2025-03-04 14:26:39 +0000, olcott said:

    On 3/4/2025 4:36 AM, Mikko wrote:
    On 2025-03-04 03:07:56 +0000, olcott said:

    int DD()
    {
       int Halt_Status = HHH(DD);
       if (Halt_Status)
         HERE: goto HERE;
       return Halt_Status;
    }

    _DD()
    [00002133] 55         push ebp      ; housekeeping >>>>>>>>>>> [00002134] 8bec       mov ebp,esp   ; housekeeping >>>>>>>>>>> [00002136] 51         push ecx      ; make space for local
    [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.

    The only valid rebuttal is to show all of the steps of
    exactly how DD correctly emulated by HHH reaches its
    own "ret" instruction.

    The question whether DD emulated by HHH exists is too
    uninteresting that
    it would need a rebuttal, and so is the question that does it >>>>>>>>>> reach its
    "ret" instruction if it exsists.


    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.
    *Proves that the input to HHH(DD) can be rejected as non-halting* >>>>>>>>
    As "DD correctly emulated by HHH" does not exist

    *No one has made any attempt to show that*

    Maybe not. Perhaps every demonstration of that was just a
    byproduct of
    some other attempt. Anyway, HHH does not emulate DD correctly to
    the end.


    Simulating termination analyzer HHH simulates its input DD until
    HHH correctly determines that DD cannot possibly reach its own
    "return" instruction and terminate normally.
    Indeed, HHH reports that it cannot possibly perform a complete
    (correct) simulation of itself.
    This is the only possible correct interpretation of the result of HHH. >>>> Any other interpretation has no grounds.

    No matter how many times you stupidly ignore the verified
    fact that DD calls HHH(DD) in recursive emulation this does
    not change the fact that DD cannot possibly reach its own
    "ret" instruction because it calls HHH(DD) in recursive emulation.

    Why do you ignore the fact that that we agree that HHH fails to reach
    the 'ret' instruction after a finite recursion?
    Agreeing is not a rebuttal.
    We agree that HHH correctly reports that it cannot possibly reach the
    'ret' instruction and that it aborted the simulation before the
    simulation has been completed correctly.

    A smart bot knows better than this.

    Why do you have a problem with my agreement?
    We agree that HHH correctly reports that it cannot possibly reach the
    'ret' instruction and that it aborted the simulation before the
    simulation has been completed correctly.
    I only wonder what you are going to do with this result.


    https://www.researchgate.net/ publication/385090708_ChatGPT_Analyzes_Simulating_Termination_Analyzer
    Irrelevant! Such smart bots can be trained by an idiot to say anything
    he likes.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Mikko@21:1/5 to olcott on Sat Mar 8 11:06:07 2025
    On 2025-03-07 15:11:53 +0000, olcott said:

    On 3/7/2025 2:58 AM, Fred. Zwarts wrote:
    Op 07.mrt.2025 om 03:31 schreef olcott:
    On 3/6/2025 6:37 PM, Richard Damon wrote:
    On 3/6/25 3:18 PM, olcott wrote:
    On 3/6/2025 3:20 AM, joes wrote:
    Am Wed, 05 Mar 2025 22:03:39 -0600 schrieb olcott:
    On 3/5/2025 9:57 PM, dbush wrote:
    On 3/5/2025 10:53 PM, olcott wrote:
    On 3/5/2025 9:31 PM, dbush wrote:
    On 3/5/2025 10:17 PM, olcott wrote:
    On 3/5/2025 7:10 PM, dbush wrote:

    In other words, you know that what you're working on has nothing to
    do with the halting problem, but you don't care.

    In other words I WILL NOT TOLERATE ANY BULLSHIT DEFLECTION. >>>>>>>>>>> You have proven that you know these things pretty well SO QUIT THE >>>>>>>>>>> SHIT!
    You want people to accept that HHH(DD) does in fact report that >>>>>>>>>> changing the code of HHH to an unconditional simulator and running >>>>>>>>>> HHH(DD) will not halt.

    DD correctly emulated by HHH cannot possibly reach its own "ret" >>>>>>>>> instruction and terminate normally.

    In other words, replacing the code of HHH with an unconditional >>>>>>>> simulator and subsequently running HHH(DD) does not halt, which you >>>>>>>> previously agreed is correct:
    On 2/22/2025 1:02 PM, olcott wrote:
      > On 2/22/2025 11:10 AM, dbush wrote:
      >> On 2/22/2025 11:43 AM, olcott wrote:
      >>> The first point is DD correctly simulated by HHH cannot possibly
      >>> terminate normally by reaching its own "return" instruction. >>>>>>>>   >>
      >> In other words, if the code of HHH is replaced with an
      >> unconditional simulator then it can be shown that DD is
      >> non-halting and therefore HHH(DD)==0 is correct.
      >>
      > Wow finally someone that totally gets it.

    If you disagree, explain why this is different.
    In particular, give an example where X correctly emulated by Y is >>>>>>>> different from replacing the code of Y with an unconditional simulator >>>>>>>> and subsequently running Y(X).

    I may not have enough time left to change the subject and endlessly go >>>>>>> through anything but the exact point.

    You used to have enough time.


    That is before the CAR T cell manufacturing process failed twice.

    Which really means you need to abandon your fraudulent methods

    _DD()
    [00002133] 55         push ebp      ; housekeeping
    [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local
    [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.


    No such HHH exists.
    The programmer of HHH has the following options when HHH reaches the
    call to HHH:

    1) It just follows the call and starts simulating the code of HHH. This
    might eventually lead to infinite recursion. So, no correct simulation.

    The code proves otherwise https://github.com/plolcott/x86utm/blob/master/Halt7.c

    A program does not prove. In particular, it does not prove that no
    different program exists.

    --
    Mikko

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Sat Mar 8 09:54:00 2025
    Op 08.mrt.2025 om 02:09 schreef olcott:
    On 3/7/2025 9:33 AM, dbush wrote:
    On 3/7/2025 10:30 AM, olcott wrote:
    On 3/7/2025 9:15 AM, Fred. Zwarts wrote:
    Op 07.mrt.2025 om 15:49 schreef olcott:
    On 3/7/2025 2:02 AM, joes wrote:
    Am Thu, 06 Mar 2025 20:59:49 -0600 schrieb olcott:
    On 3/6/2025 6:37 PM, Richard Damon wrote:
    On 3/6/25 3:16 PM, olcott wrote:
    On 3/6/2025 3:17 AM, Fred. Zwarts wrote:
    Op 06.mrt.2025 om 05:46 schreef olcott:
    On 3/5/2025 5:36 PM, Richard Damon wrote:
    On 3/5/25 4:03 PM, dbush wrote:
    On 3/5/2025 3:55 PM, olcott wrote:
    On 3/5/2025 10:14 AM, joes wrote:
    Am Wed, 05 Mar 2025 08:10:00 -0600 schrieb olcott: >>>>>>>>>>>>>>>> On 3/5/2025 6:19 AM, Richard Damon wrote:
    On 3/5/25 12:09 AM, olcott wrote:

    I WILL NOT TOLERATE ANY OTHER ORDER
    In other words, you CAN'T handle any other order, even >>>>>>>>>>>>>>>>> though
    logically requried, because you need to hide your fraud. >>>>>>>>>>>>>>>> My proof requires a specific  prerequisite order. >>>>>>>>>>>>>>>> One cannot learn algebra before one has learned to count to >>>>>>>>>>>>>>>> ten. DD correctly emulated by HHH cannot possibly reach >>>>>>>>>>>>>>>> its own
    "ret" instruction and terminate normally.
    Is the first step of the mandatory prerequisite order of my >>>>>>>>>>>>>>>> proof
    What is the next step?
    *DD correctly emulated by HHH cannot possibly reach* >>>>>>>>>>>>>> *its own "ret" instruction and terminate normally* >>>>>>>>>>>>>> It has taken two years to create this first step such that >>>>>>>>>>>>>> it is
    the the simplest way to state the key element of the whole >>>>>>>>>>>>>> proof
    and make this element impossible to correctly refute. >>>>>>>>>>>>>> EVERY ATTEMPT TO CHANGE THE SUBJECT AWAY FROM THIS POINT IS >>>>>>>>>>>>>> DISHONEST.
    So what's the next step?

    Before agreeing on an answer, it is first required to agree >>>>>>>>>>>>> on the
    question.
    Which is the problem, since you don't have the correct >>>>>>>>>>>> question.
    If HHH is a Halt Decider / Termination analyzer, the ONLY >>>>>>>>>>>> behavior
    that matters is the behavior of the directly executed
    program whose
    description is provided.
    That is a stupid thing to say.
    HHH computes the mapping to a return value on the basis of >>>>>>>>>>> what its
    finite string INPUT specifies.
    Yes, that is the directly executed program.

    THIS IS WHAT IT SPECIFIES *DD correctly emulated by HHH cannot >>>>>>>>>>> possibly reach its own "ret" instruction and terminate normally* >>>>>> No, DD doesn't specify anything about what is to simulate it.

    Yes, that is what HHH reports: I cannot complete the
    simulation up to
    the end. No more, no less.
    There are easier ways to make a program to report the failure >>>>>>>>>> of a
    simulation.
    The finite string of DD correctly emulated by HHH specifies
    recursive
    emulation that cannot possibly reach its own "ret" instruction >>>>>>>>> BECAUSE
    IT SPECIFIES RECURSINVE EMULATION.
    No, HHH aborts.

    But the HHH that decides are returns can't be that HHH, so the >>>>>>>> DD given
    to that HHH doesn't call the correctly emulating HHH, so you whole >>>>>>>> argument is shown to be the fraud you have admitted to.
    That seems to be a little incoherent so I cannot tell what you are >>>>>>> saying yet you are at least attempting to use reasoning.
    I am just saying what the actual x86 machine code actually specifies >>>>>>> therefore any rebuttal is necessarily incorrect.

    And the actual code of DD specifies that it halts.

    *Straw-man deception*

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.

    Strawman. HHH fails to reach the 'ret' instruction, so HHH fails to
    do a compete simulation.

    Simulating termination analyzer HHH

    So you're saying it maps the halting function?

    (<X>,Y) maps to 1 if and only if X(Y) halts when executed directly
    (<X>,Y) maps to 0 if and only if X(Y) does not halt when executed
    directly



    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.


    Yes. And what is the advantage of a simulator HHH that reports that it
    cannot possibly complete the simulation of a proven halting program up
    to the end, because it gets stuck in simulating *itself*?

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Mikko@21:1/5 to olcott on Sat Mar 8 11:07:45 2025
    On 2025-03-07 15:28:38 +0000, olcott said:

    On 3/7/2025 6:32 AM, Richard Damon wrote:
    On 3/6/25 9:31 PM, olcott wrote:
    On 3/6/2025 6:37 PM, Richard Damon wrote:
    On 3/6/25 3:18 PM, olcott wrote:
    On 3/6/2025 3:20 AM, joes wrote:
    Am Wed, 05 Mar 2025 22:03:39 -0600 schrieb olcott:
    On 3/5/2025 9:57 PM, dbush wrote:
    On 3/5/2025 10:53 PM, olcott wrote:
    On 3/5/2025 9:31 PM, dbush wrote:
    On 3/5/2025 10:17 PM, olcott wrote:
    On 3/5/2025 7:10 PM, dbush wrote:

    In other words, you know that what you're working on has nothing to
    do with the halting problem, but you don't care.

    In other words I WILL NOT TOLERATE ANY BULLSHIT DEFLECTION. >>>>>>>>>>> You have proven that you know these things pretty well SO QUIT THE >>>>>>>>>>> SHIT!
    You want people to accept that HHH(DD) does in fact report that >>>>>>>>>> changing the code of HHH to an unconditional simulator and running >>>>>>>>>> HHH(DD) will not halt.

    DD correctly emulated by HHH cannot possibly reach its own "ret" >>>>>>>>> instruction and terminate normally.

    In other words, replacing the code of HHH with an unconditional >>>>>>>> simulator and subsequently running HHH(DD) does not halt, which you >>>>>>>> previously agreed is correct:
    On 2/22/2025 1:02 PM, olcott wrote:
      > On 2/22/2025 11:10 AM, dbush wrote:
      >> On 2/22/2025 11:43 AM, olcott wrote:
      >>> The first point is DD correctly simulated by HHH cannot possibly
      >>> terminate normally by reaching its own "return" instruction. >>>>>>>>   >>
      >> In other words, if the code of HHH is replaced with an
      >> unconditional simulator then it can be shown that DD is
      >> non-halting and therefore HHH(DD)==0 is correct.
      >>
      > Wow finally someone that totally gets it.

    If you disagree, explain why this is different.
    In particular, give an example where X correctly emulated by Y is >>>>>>>> different from replacing the code of Y with an unconditional simulator >>>>>>>> and subsequently running Y(X).

    I may not have enough time left to change the subject and endlessly go >>>>>>> through anything but the exact point.

    You used to have enough time.


    That is before the CAR T cell manufacturing process failed twice.

    Which really means you need to abandon your fraudulent methods

    _DD()
    [00002133] 55         push ebp      ; housekeeping
    [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local
    [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.


    No,

    You could show the machine-address by machine-address
    correct execution trace if i was wrong. You only
    dodge this because you k ow that I am correct.

    and your problem is still that you are trying to hold to you admitted FRAUD.

    Using ad hominem instead of reasoning makes you
    look very foolish.

    No ad hominem above.

    --
    Mikko

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Mikko@21:1/5 to olcott on Sat Mar 8 11:11:23 2025
    On 2025-03-07 14:54:01 +0000, olcott said:

    On 3/7/2025 2:22 AM, Mikko wrote:
    On 2025-03-06 20:09:24 +0000, olcott said:

    On 3/6/2025 1:49 AM, Mikko wrote:
    On 2025-03-04 14:17:56 +0000, olcott said:

    On 3/4/2025 3:14 AM, Fred. Zwarts wrote:
    Op 04.mrt.2025 om 04:07 schreef olcott:
    int DD() { int Halt_Status = HHH(DD); if (Halt_Status) HERE:
    goto HERE; return Halt_Status; }

    _DD() [00002133] 55         push ebp      ; housekeeping [00002134]
    8bec       mov ebp,esp   ; housekeeping [00002136]
    51         push ecx      ; make space for local [00002137] >>>>>>> 6833210000 push 00002133 ; push DD [0000213c] e882f4ffff call
    000015c3 ; call HHH(DD) [00002141] 83c404     add esp,+04 [00002144]
    8945fc     mov [ebp-04],eax [00002147] 837dfc00
    cmp dword [ebp-04],+00 [0000214b] 7402       jz 0000214f [0000214d]
    ebfe       jmp 0000214d [0000214f] 8b45fc     mov
    eax,[ebp-04] [00002152] 8be5       mov esp,ebp [00002154]
    5d         pop ebp [00002155] c3         ret Size in bytes:
    (0035) [00002155]

    DD correctly emulated by HHH cannot possibly reach its own
    "ret" instruction and terminate normally.
    I wonder why Olcott keeps repeating that HHH fails to reach the
    'ret' instruction, where the direct execution or world-class
    simulators have no problem to reach the 'ret' instruction of
    exactly the same finite string as input.

    The only valid rebuttal is to show all of the steps of exactly how
    DD correctly emulated by HHH reaches its own "ret" instruction.

    Not true. A sufficient rebuttal is anything that makes a reader to
    notice that you have not proven one (or more) of your claims.


    A specific rebuttal of this specific claim
    DD correctly emulated by HHH cannot possibly reach its own
    "ret" instruction and terminate normally.
    Requires a specific rebuttal of that claim

    The claim is vacuous as DD correctly emulated by HHH does not exist.

    The code proves otherwise by providing the correct execution
    trace of DD that no one has been able to show any mistake.

    https://github.com/plolcott/x86utm/blob/master/Halt7.c

    That code does not prove anything. In order to prove you need a proof.

    --
    Mikko

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Mikko@21:1/5 to olcott on Sat Mar 8 11:14:59 2025
    On 2025-03-07 14:58:28 +0000, olcott said:

    On 3/7/2025 2:26 AM, Mikko wrote:
    On 2025-03-06 20:11:34 +0000, olcott said:

    On 3/6/2025 2:02 AM, Mikko wrote:
    On 2025-03-04 14:26:39 +0000, olcott said:

    On 3/4/2025 4:36 AM, Mikko wrote:
    On 2025-03-04 03:07:56 +0000, olcott said:

    int DD()
    {
       int Halt_Status = HHH(DD);
       if (Halt_Status)
         HERE: goto HERE;
       return Halt_Status;
    }

    _DD()
    [00002133] 55         push ebp      ; housekeeping
    [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local >>>>>>> [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.

    The only valid rebuttal is to show all of the steps of
    exactly how DD correctly emulated by HHH reaches its
    own "ret" instruction.

    The question whether DD emulated by HHH exists is too uninteresting that >>>>>> it would need a rebuttal, and so is the question that does it reach its >>>>>> "ret" instruction if it exsists.


    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.
    *Proves that the input to HHH(DD) can be rejected as non-halting*

    As "DD correctly emulated by HHH" does not exist

    *No one has made any attempt to show that*

    Maybe not. Perhaps every demonstration of that was just a byproduct of
    some other attempt. Anyway, HHH does not emulate DD correctly to the end.

    Simulating termination analyzer HHH simulates its input DD until HHH correctly determines that DD cannot possibly reach its own "return" instruction and terminate normally.

    Yes, but your HHH does not. In particular, it never correctly determines
    that DD cannot possibly reach its own "return" instruction and terminate normally. It is already known that DD does reach its own "return"
    instruction and terminates normally when linked with your HHH.

    --
    Mikko

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Sat Mar 8 10:12:05 2025
    Op 08.mrt.2025 om 02:48 schreef olcott:
    On 3/7/2025 10:23 AM, Fred. Zwarts wrote:
    Op 07.mrt.2025 om 16:22 schreef olcott:
    On 3/7/2025 3:09 AM, Fred. Zwarts wrote:
    Op 06.mrt.2025 om 21:11 schreef olcott:
    On 3/6/2025 2:02 AM, Mikko wrote:
    On 2025-03-04 14:26:39 +0000, olcott said:

    On 3/4/2025 4:36 AM, Mikko wrote:
    On 2025-03-04 03:07:56 +0000, olcott said:

    int DD()
    {
       int Halt_Status = HHH(DD);
       if (Halt_Status)
         HERE: goto HERE;
       return Halt_Status;
    }

    _DD()
    [00002133] 55         push ebp      ; housekeeping >>>>>>>>> [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local
    [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.

    The only valid rebuttal is to show all of the steps of
    exactly how DD correctly emulated by HHH reaches its
    own "ret" instruction.

    The question whether DD emulated by HHH exists is too
    uninteresting that
    it would need a rebuttal, and so is the question that does it
    reach its
    "ret" instruction if it exsists.


    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.
    *Proves that the input to HHH(DD) can be rejected as non-halting* >>>>>>
    As "DD correctly emulated by HHH" does not exist

    *No one has made any attempt to show that*




    There is no proof that it does exist.

    Failing to understand this code is less than no rebuttal at all.
    https://github.com/plolcott/x86utm/blob/master/Halt7.c
    Failing to understand that no HHH can correctly simulate itself is no
    rebuttal at all.

    Failing to understand that Fred. Zwarts is only
    a not very bright bot is my mistake.


    Irrelevant. Again no rebuttal.

    So, since there is no rebuttal after two reactions from Olcott, I
    conclude that we agree that no HHH exists that correctly simulates
    itself up to the end.
    HHH is correct when it reports that it could not simulate the input up
    to the end. An input that, when given for direct execution or a
    world-class simulator, has no problem to reach its end.

    What next? What is de advantage of knowing that there are simulators
    that are unable to complete the simulation? Didn't we know that already?

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From joes@21:1/5 to All on Sat Mar 8 09:17:38 2025
    Am Fri, 07 Mar 2025 21:40:56 -0600 schrieb olcott:
    On 3/7/2025 8:23 PM, dbush wrote:
    On 3/7/2025 9:19 PM, olcott wrote:
    On 3/7/2025 7:52 PM, dbush wrote:
    On 3/7/2025 8:49 PM, olcott wrote:
    On 3/7/2025 10:25 AM, Fred. Zwarts wrote:
    Op 07.mrt.2025 om 16:17 schreef olcott:
    On 3/7/2025 2:59 AM, Fred. Zwarts wrote:
    Op 06.mrt.2025 om 21:13 schreef olcott:
    On 3/6/2025 3:13 AM, Fred. Zwarts wrote:
    Op 06.mrt.2025 om 04:53 schreef olcott:
    On 3/5/2025 9:31 PM, dbush wrote:
    On 3/5/2025 10:17 PM, olcott wrote:
    On 3/5/2025 7:10 PM, dbush wrote:

    In other words, you know that what you're working on has >>>>>>>>>>>>>> nothing to do with the halting problem, but you don't care. >>>>>>>>>>>>> In other words I WILL NOT TOLERATE ANY BULLSHIT DEFLECTION. >>>>>>>>>>>>> You have proven that you know these things pretty well SO >>>>>>>>>>>>> QUIT THE SHIT!
    You want people to accept that HHH(DD) does in fact report >>>>>>>>>>>> that changing the code of HHH to an unconditional simulator >>>>>>>>>>>> and running HHH(DD) will not halt.
    DD correctly emulated by HHH cannot possibly reach its own >>>>>>>>>>> "ret" instruction and terminate normally.
    Yes, we agree that HHH fails to reach the 'ret' instruction, >>>>>>>>> Despicably dishonest attempt at the straw-man deception.
    No rebuttal. So, we agree that HHH fails to reach the 'ret'
    instruction.
    Not at all. Trying to get away with changing the subject WILL NOT >>>>>>> BE TOLERATED.
    If you do not agree that HHH fails to reach the 'ret' instruction
    (that world-class simulators do reach, just as the direct execution >>>>>> does), show how it reaches the 'ret' instruction.
    *set X*
    When-so-ever any input to any simulating termination analyzer calls
    the simulator that is simulating itself
    Not an issue, since termination analyzers don't exist.
    I thought that you demonstrated knowledge of these things.
    Maybe I was wrong.
    We know termination analyzers don't exist because no algorithm exists
    that maps the halting function:
    (<X>,Y) maps to 1 if and only if X(Y) halts when executed directly
    (<X>,Y) maps to 0 if and only if X(Y) does not halt when executed
    directly
    Automated Termination Analysis of C Programs https://publications.rwth-aachen.de/record/972440/files/972440.pdf
    AProVE seems to be the leading authority on what you say DOES NOT EXIST
    It isn't claimed to be total. Have you tried running it on itself or
    on a program similar to DD (instead of calling HHH, ...)?

    --
    Am Sat, 20 Jul 2024 12:35:31 +0000 schrieb WM in sci.math:
    It is not guaranteed that n+1 exists for every n.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From joes@21:1/5 to All on Sat Mar 8 09:20:20 2025
    Am Fri, 07 Mar 2025 20:53:51 -0600 schrieb olcott:
    On 3/7/2025 8:44 PM, dbush wrote:
    On 3/7/2025 9:42 PM, olcott wrote:
    On 3/7/2025 8:23 PM, dbush wrote:

    We know termination analyzers don't exist because no algorithm exists
    that maps the halting function:
    (<X>,Y) maps to 1 if and only if X(Y) halts when executed directly
    (<X>,Y) maps to 0 if and only if X(Y) does not halt when executed
    directly
    Yes I did grossly over-estimate you technical knowledge.
    Are you a mere troll then?
    That you don't understand that termination analyzers and halt deciders
    are stipulated to map the halting function is not a rebuttal.

    In computer science, termination analysis is program analysis which
    attempts attempts attempts attempts attempts to determine whether the evaluation of a given program halts for each input. https://en.wikipedia.org/wiki/Termination_analysis
    I switched to the term {termination analyzer} because they are not
    required to be infallible.
    infallible or wrong is a stupid dichotomy.
    AHA HAHAHA
    End of discussion then.

    --
    Am Sat, 20 Jul 2024 12:35:31 +0000 schrieb WM in sci.math:
    It is not guaranteed that n+1 exists for every n.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Richard Damon@21:1/5 to olcott on Sat Mar 8 08:54:41 2025
    On 3/7/25 8:57 PM, olcott wrote:
    On 3/7/2025 10:35 AM, Fred. Zwarts wrote:
    Op 07.mrt.2025 om 16:34 schreef olcott:
    On 3/7/2025 9:18 AM, Fred. Zwarts wrote:
    Op 07.mrt.2025 om 15:58 schreef olcott:
    On 3/7/2025 2:26 AM, Mikko wrote:
    On 2025-03-06 20:11:34 +0000, olcott said:

    On 3/6/2025 2:02 AM, Mikko wrote:
    On 2025-03-04 14:26:39 +0000, olcott said:

    On 3/4/2025 4:36 AM, Mikko wrote:
    On 2025-03-04 03:07:56 +0000, olcott said:

    int DD()
    {
       int Halt_Status = HHH(DD);
       if (Halt_Status)
         HERE: goto HERE;
       return Halt_Status;
    }

    _DD()
    [00002133] 55         push ebp      ; housekeeping >>>>>>>>>>> [00002134] 8bec       mov ebp,esp   ; housekeeping >>>>>>>>>>> [00002136] 51         push ecx      ; make space for local
    [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.

    The only valid rebuttal is to show all of the steps of
    exactly how DD correctly emulated by HHH reaches its
    own "ret" instruction.

    The question whether DD emulated by HHH exists is too
    uninteresting that
    it would need a rebuttal, and so is the question that does it >>>>>>>>>> reach its
    "ret" instruction if it exsists.


    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.
    *Proves that the input to HHH(DD) can be rejected as non-halting* >>>>>>>>
    As "DD correctly emulated by HHH" does not exist

    *No one has made any attempt to show that*

    Maybe not. Perhaps every demonstration of that was just a
    byproduct of
    some other attempt. Anyway, HHH does not emulate DD correctly to
    the end.


    Simulating termination analyzer HHH simulates its input DD until
    HHH correctly determines that DD cannot possibly reach its own
    "return" instruction and terminate normally.
    Indeed, HHH reports that it cannot possibly perform a complete
    (correct) simulation of itself.
    This is the only possible correct interpretation of the result of HHH. >>>> Any other interpretation has no grounds.

    No matter how many times you stupidly ignore the verified
    fact that DD calls HHH(DD) in recursive emulation this does
    not change the fact that DD cannot possibly reach its own
    "ret" instruction because it calls HHH(DD) in recursive emulation.

    Why do you ignore the fact that that we agree that HHH fails to reach
    the 'ret' instruction after a finite recursion?
    Agreeing is not a rebuttal.
    We agree that HHH correctly reports that it cannot possibly reach the
    'ret' instruction and that it aborted the simulation before the
    simulation has been completed correctly.

    A smart bot knows better than this.

    https://www.researchgate.net/ publication/385090708_ChatGPT_Analyzes_Simulating_Termination_Analyzer


    That you have fallen for the lie that AI actually "knows" things just
    shows how stupid you are.

    Classic Garbage-In Garbage-Out, when you feed it lies it returns
    untruths, and you have admitted that your whole logic is filled with the changing of the meaning of terms-of-art, that it is just a fraud,

    Note, this is a form of error that AI can be particularly vulnerable to,
    as it doesn't understand the full concept of larger context.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From joes@21:1/5 to All on Sat Mar 8 14:22:42 2025
    Am Sat, 08 Mar 2025 08:06:04 -0600 schrieb olcott:
    On 3/8/2025 3:17 AM, joes wrote:
    Am Fri, 07 Mar 2025 21:40:56 -0600 schrieb olcott:
    On 3/7/2025 8:23 PM, dbush wrote:
    On 3/7/2025 9:19 PM, olcott wrote:
    On 3/7/2025 7:52 PM, dbush wrote:
    On 3/7/2025 8:49 PM, olcott wrote:
    On 3/7/2025 10:25 AM, Fred. Zwarts wrote:
    Op 07.mrt.2025 om 16:17 schreef olcott:
    On 3/7/2025 2:59 AM, Fred. Zwarts wrote:
    Op 06.mrt.2025 om 21:13 schreef olcott:
    On 3/6/2025 3:13 AM, Fred. Zwarts wrote:
    Op 06.mrt.2025 om 04:53 schreef olcott:
    On 3/5/2025 9:31 PM, dbush wrote:
    On 3/5/2025 10:17 PM, olcott wrote:
    On 3/5/2025 7:10 PM, dbush wrote:

    In other words, you know that what you're working on has >>>>>>>>>>>>>>>> nothing to do with the halting problem, but you don't >>>>>>>>>>>>>>>> care.
    In other words I WILL NOT TOLERATE ANY BULLSHIT
    DEFLECTION.
    You have proven that you know these things pretty well SO >>>>>>>>>>>>>>> QUIT THE SHIT!
    You want people to accept that HHH(DD) does in fact report >>>>>>>>>>>>>> that changing the code of HHH to an unconditional simulator >>>>>>>>>>>>>> and running HHH(DD) will not halt.
    DD correctly emulated by HHH cannot possibly reach its own >>>>>>>>>>>>> "ret" instruction and terminate normally.
    Yes, we agree that HHH fails to reach the 'ret' instruction, >>>>>>>>>>> Despicably dishonest attempt at the straw-man deception.
    No rebuttal. So, we agree that HHH fails to reach the 'ret' >>>>>>>>>> instruction.
    Not at all. Trying to get away with changing the subject WILL >>>>>>>>> NOT BE TOLERATED.
    If you do not agree that HHH fails to reach the 'ret' instruction >>>>>>>> (that world-class simulators do reach, just as the direct
    execution does), show how it reaches the 'ret' instruction.
    *set X*
    When-so-ever any input to any simulating termination analyzer
    calls the simulator that is simulating itself
    Not an issue, since termination analyzers don't exist.
    I thought that you demonstrated knowledge of these things.
    Maybe I was wrong.
    We know termination analyzers don't exist because no algorithm exists
    that maps the halting function:
    (<X>,Y) maps to 1 if and only if X(Y) halts when executed directly
    (<X>,Y) maps to 0 if and only if X(Y) does not halt when executed
    directly
    Automated Termination Analysis of C Programs
    https://publications.rwth-aachen.de/record/972440/files/972440.pdf
    AProVE seems to be the leading authority on what you say DOES NOT
    EXIST
    It isn't claimed to be total. Have you tried running it on itself or on
    a program similar to DD (instead of calling HHH, ...)?
    Termination analyzers are not required to be infallible.
    Neither do they disprove the undecidability of halting.

    --
    Am Sat, 20 Jul 2024 12:35:31 +0000 schrieb WM in sci.math:
    It is not guaranteed that n+1 exists for every n.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Sat Mar 8 16:46:14 2025
    Op 08.mrt.2025 om 15:03 schreef olcott:
    On 3/8/2025 2:47 AM, Fred. Zwarts wrote:
    Op 08.mrt.2025 om 02:49 schreef olcott:
    On 3/7/2025 10:25 AM, Fred. Zwarts wrote:
    Op 07.mrt.2025 om 16:17 schreef olcott:
    On 3/7/2025 2:59 AM, Fred. Zwarts wrote:
    Op 06.mrt.2025 om 21:13 schreef olcott:
    On 3/6/2025 3:13 AM, Fred. Zwarts wrote:
    Op 06.mrt.2025 om 04:53 schreef olcott:
    On 3/5/2025 9:31 PM, dbush wrote:
    On 3/5/2025 10:17 PM, olcott wrote:
    On 3/5/2025 7:10 PM, dbush wrote:

    In other words, you know that what you're working on has >>>>>>>>>>>> nothing to do with the halting problem, but you don't care. >>>>>>>>>>>
    In other words I WILL NOT TOLERATE ANY BULLSHIT DEFLECTION. >>>>>>>>>>> You have proven that you know these things pretty well SO >>>>>>>>>>> QUIT THE SHIT!


    You want people to accept that HHH(DD) does in fact report >>>>>>>>>> that changing the code of HHH to an unconditional simulator >>>>>>>>>> and running HHH(DD) will not halt.


    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.

    Yes, we agree that HHH fails to reach the 'ret' instruction,

    Despicably dishonest attempt at the straw-man deception.


    No rebuttal. So, we agree that HHH fails to reach the 'ret'
    instruction.

    Not at all. Trying to get away with changing the subject
    WILL NOT BE TOLERATED.

    If you do not agree that HHH fails to reach the 'ret' instruction
    (that world-class simulators do reach, just as the direct execution
    does), show how it reaches the 'ret' instruction.

    *set X*
    When-so-ever any input to any simulating termination
    analyzer calls the simulator that is simulating itself

    *result of set X*
    this input cannot possibly reach its own final state
    and terminate normally because it remains stuck in
    recursive emulation.


    So, we agree that any simulator that tries to simulate *itself* cannot
    possibly reach the end of its simulation.

    Apparently you don't understand that inputs to a
    simulating termination analyzer specifying infinite
    recursion or recursive emulation cannot possibly
    reach their own final state and terminate normally.

    If we agree, what is the problem?
    We agree that HHH correctly reports that it cannot possibly bring the simulation of itself to a correct end.


    Why would we want to use such an analyser that reports that it fails
    to complete the simulation?

    Perhaps you incorrectly expect infinite loops to end?


    Wrong. I understand perfectly that HHH cannot possible reach the end of
    the simulation of itself and it correctly reports that it could not
    complete the simulation.

    Why disagreeing when I agree with you?

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Sat Mar 8 16:41:06 2025
    Op 08.mrt.2025 om 15:09 schreef olcott:
    On 3/8/2025 3:06 AM, Mikko wrote:
    On 2025-03-07 15:11:53 +0000, olcott said:

    On 3/7/2025 2:58 AM, Fred. Zwarts wrote:
    Op 07.mrt.2025 om 03:31 schreef olcott:
    On 3/6/2025 6:37 PM, Richard Damon wrote:
    On 3/6/25 3:18 PM, olcott wrote:
    On 3/6/2025 3:20 AM, joes wrote:
    Am Wed, 05 Mar 2025 22:03:39 -0600 schrieb olcott:
    On 3/5/2025 9:57 PM, dbush wrote:
    On 3/5/2025 10:53 PM, olcott wrote:
    On 3/5/2025 9:31 PM, dbush wrote:
    On 3/5/2025 10:17 PM, olcott wrote:
    On 3/5/2025 7:10 PM, dbush wrote:

    In other words, you know that what you're working on has >>>>>>>>>>>>>> nothing to
    do with the halting problem, but you don't care.

    In other words I WILL NOT TOLERATE ANY BULLSHIT DEFLECTION. >>>>>>>>>>>>> You have proven that you know these things pretty well SO >>>>>>>>>>>>> QUIT THE
    SHIT!
    You want people to accept that HHH(DD) does in fact report that >>>>>>>>>>>> changing the code of HHH to an unconditional simulator and >>>>>>>>>>>> running
    HHH(DD) will not halt.

    DD correctly emulated by HHH cannot possibly reach its own "ret" >>>>>>>>>>> instruction and terminate normally.

    In other words, replacing the code of HHH with an unconditional >>>>>>>>>> simulator and subsequently running HHH(DD) does not halt,
    which you
    previously agreed is correct:
    On 2/22/2025 1:02 PM, olcott wrote:
      > On 2/22/2025 11:10 AM, dbush wrote:
      >> On 2/22/2025 11:43 AM, olcott wrote:
      >>> The first point is DD correctly simulated by HHH cannot >>>>>>>>>> possibly
      >>> terminate normally by reaching its own "return"
    instruction.
      >>
      >> In other words, if the code of HHH is replaced with an >>>>>>>>>>   >> unconditional simulator then it can be shown that DD is >>>>>>>>>>   >> non-halting and therefore HHH(DD)==0 is correct.
      >>
      > Wow finally someone that totally gets it.

    If you disagree, explain why this is different.
    In particular, give an example where X correctly emulated by Y is >>>>>>>>>> different from replacing the code of Y with an unconditional >>>>>>>>>> simulator
    and subsequently running Y(X).

    I may not have enough time left to change the subject and
    endlessly go
    through anything but the exact point.

    You used to have enough time.


    That is before the CAR T cell manufacturing process failed twice. >>>>>>
    Which really means you need to abandon your fraudulent methods

    _DD()
    [00002133] 55         push ebp      ; housekeeping
    [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local >>>>> [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.


    No such HHH exists.
    The programmer of HHH has the following options when HHH reaches the
    call to HHH:

    1) It just follows the call and starts simulating the code of HHH.
    This might eventually lead to infinite recursion. So, no correct
    simulation.

    The code proves otherwise
    https://github.com/plolcott/x86utm/blob/master/Halt7.c

    A program does not prove. In particular, it does not prove that no
    different program exists.


    The source code 100% perfectly proves exactly what it
    actually does.
    Yes, even if there are error in the program, it does what it does.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Sat Mar 8 16:50:19 2025
    Op 08.mrt.2025 om 15:19 schreef olcott:
    On 3/8/2025 2:54 AM, Fred. Zwarts wrote:
    Op 08.mrt.2025 om 02:09 schreef olcott:
    On 3/7/2025 9:33 AM, dbush wrote:
    On 3/7/2025 10:30 AM, olcott wrote:
    On 3/7/2025 9:15 AM, Fred. Zwarts wrote:
    Op 07.mrt.2025 om 15:49 schreef olcott:
    On 3/7/2025 2:02 AM, joes wrote:
    Am Thu, 06 Mar 2025 20:59:49 -0600 schrieb olcott:
    On 3/6/2025 6:37 PM, Richard Damon wrote:
    On 3/6/25 3:16 PM, olcott wrote:
    On 3/6/2025 3:17 AM, Fred. Zwarts wrote:
    Op 06.mrt.2025 om 05:46 schreef olcott:
    On 3/5/2025 5:36 PM, Richard Damon wrote:
    On 3/5/25 4:03 PM, dbush wrote:
    On 3/5/2025 3:55 PM, olcott wrote:
    On 3/5/2025 10:14 AM, joes wrote:
    Am Wed, 05 Mar 2025 08:10:00 -0600 schrieb olcott: >>>>>>>>>>>>>>>>>> On 3/5/2025 6:19 AM, Richard Damon wrote: >>>>>>>>>>>>>>>>>>> On 3/5/25 12:09 AM, olcott wrote:

    I WILL NOT TOLERATE ANY OTHER ORDER
    In other words, you CAN'T handle any other order, >>>>>>>>>>>>>>>>>>> even though
    logically requried, because you need to hide your fraud. >>>>>>>>>>>>>>>>>> My proof requires a specific  prerequisite order. >>>>>>>>>>>>>>>>>> One cannot learn algebra before one has learned to >>>>>>>>>>>>>>>>>> count to
    ten. DD correctly emulated by HHH cannot possibly >>>>>>>>>>>>>>>>>> reach its own
    "ret" instruction and terminate normally.
    Is the first step of the mandatory prerequisite order >>>>>>>>>>>>>>>>>> of my
    proof
    What is the next step?
    *DD correctly emulated by HHH cannot possibly reach* >>>>>>>>>>>>>>>> *its own "ret" instruction and terminate normally* >>>>>>>>>>>>>>>> It has taken two years to create this first step such >>>>>>>>>>>>>>>> that it is
    the the simplest way to state the key element of the >>>>>>>>>>>>>>>> whole proof
    and make this element impossible to correctly refute. >>>>>>>>>>>>>>>> EVERY ATTEMPT TO CHANGE THE SUBJECT AWAY FROM THIS POINT IS >>>>>>>>>>>>>>>> DISHONEST.
    So what's the next step?

    Before agreeing on an answer, it is first required to >>>>>>>>>>>>>>> agree on the
    question.
    Which is the problem, since you don't have the correct >>>>>>>>>>>>>> question.
    If HHH is a Halt Decider / Termination analyzer, the ONLY >>>>>>>>>>>>>> behavior
    that matters is the behavior of the directly executed >>>>>>>>>>>>>> program whose
    description is provided.
    That is a stupid thing to say.
    HHH computes the mapping to a return value on the basis of >>>>>>>>>>>>> what its
    finite string INPUT specifies.
    Yes, that is the directly executed program.

    THIS IS WHAT IT SPECIFIES *DD correctly emulated by HHH cannot >>>>>>>>>>>>> possibly reach its own "ret" instruction and terminate >>>>>>>>>>>>> normally*
    No, DD doesn't specify anything about what is to simulate it.

    Yes, that is what HHH reports: I cannot complete the
    simulation up to
    the end. No more, no less.
    There are easier ways to make a program to report the
    failure of a
    simulation.
    The finite string of DD correctly emulated by HHH specifies >>>>>>>>>>> recursive
    emulation that cannot possibly reach its own "ret"
    instruction BECAUSE
    IT SPECIFIES RECURSINVE EMULATION.
    No, HHH aborts.

    But the HHH that decides are returns can't be that HHH, so the >>>>>>>>>> DD given
    to that HHH doesn't call the correctly emulating HHH, so you >>>>>>>>>> whole
    argument is shown to be the fraud you have admitted to.
    That seems to be a little incoherent so I cannot tell what you are >>>>>>>>> saying yet you are at least attempting to use reasoning.
    I am just saying what the actual x86 machine code actually
    specifies
    therefore any rebuttal is necessarily incorrect.

    And the actual code of DD specifies that it halts.

    *Straw-man deception*

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.

    Strawman. HHH fails to reach the 'ret' instruction, so HHH fails
    to do a compete simulation.

    Simulating termination analyzer HHH

    So you're saying it maps the halting function?

    (<X>,Y) maps to 1 if and only if X(Y) halts when executed directly
    (<X>,Y) maps to 0 if and only if X(Y) does not halt when executed
    directly



    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.


    Yes. And what is the advantage of a simulator HHH that reports that it
    cannot possibly complete the simulation of a proven halting program up
    to the end, because it gets stuck in simulating *itself*?

    It is ridiculously stupid to expect a simulating
    termination analyzer to continue to simulate an
    input that specifies it cannot possibly reach its
    own final state and terminate normally.
    Did you read what I said, or are your responses from a random sentence selector?
    If we agree, what is the problem?
    We agree that such an analyser, when simulating itself, cannot possibly
    reach the end of the simulation. So, HHH is correct to report that it
    could not continue the simulation up to the end.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Sat Mar 8 16:53:37 2025
    Op 08.mrt.2025 om 15:32 schreef olcott:
    On 3/8/2025 2:59 AM, Fred. Zwarts wrote:
    Op 08.mrt.2025 om 02:57 schreef olcott:
    On 3/7/2025 10:35 AM, Fred. Zwarts wrote:
    Op 07.mrt.2025 om 16:34 schreef olcott:
    On 3/7/2025 9:18 AM, Fred. Zwarts wrote:
    Op 07.mrt.2025 om 15:58 schreef olcott:
    On 3/7/2025 2:26 AM, Mikko wrote:
    On 2025-03-06 20:11:34 +0000, olcott said:

    On 3/6/2025 2:02 AM, Mikko wrote:
    On 2025-03-04 14:26:39 +0000, olcott said:

    On 3/4/2025 4:36 AM, Mikko wrote:
    On 2025-03-04 03:07:56 +0000, olcott said:

    int DD()
    {
       int Halt_Status = HHH(DD);
       if (Halt_Status)
         HERE: goto HERE;
       return Halt_Status;
    }

    _DD()
    [00002133] 55         push ebp      ; housekeeping >>>>>>>>>>>>> [00002134] 8bec       mov ebp,esp   ; housekeeping >>>>>>>>>>>>> [00002136] 51         push ecx      ; make space for local
    [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally. >>>>>>>>>>>>>
    The only valid rebuttal is to show all of the steps of >>>>>>>>>>>>> exactly how DD correctly emulated by HHH reaches its >>>>>>>>>>>>> own "ret" instruction.

    The question whether DD emulated by HHH exists is too
    uninteresting that
    it would need a rebuttal, and so is the question that does >>>>>>>>>>>> it reach its
    "ret" instruction if it exsists.


    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.
    *Proves that the input to HHH(DD) can be rejected as non- >>>>>>>>>>> halting*

    As "DD correctly emulated by HHH" does not exist

    *No one has made any attempt to show that*

    Maybe not. Perhaps every demonstration of that was just a
    byproduct of
    some other attempt. Anyway, HHH does not emulate DD correctly to >>>>>>>> the end.


    Simulating termination analyzer HHH simulates its input DD until >>>>>>> HHH correctly determines that DD cannot possibly reach its own
    "return" instruction and terminate normally.
    Indeed, HHH reports that it cannot possibly perform a complete
    (correct) simulation of itself.
    This is the only possible correct interpretation of the result of
    HHH.
    Any other interpretation has no grounds.

    No matter how many times you stupidly ignore the verified
    fact that DD calls HHH(DD) in recursive emulation this does
    not change the fact that DD cannot possibly reach its own
    "ret" instruction because it calls HHH(DD) in recursive emulation.

    Why do you ignore the fact that that we agree that HHH fails to
    reach the 'ret' instruction after a finite recursion?
    Agreeing is not a rebuttal.
    We agree that HHH correctly reports that it cannot possibly reach
    the 'ret' instruction and that it aborted the simulation before the
    simulation has been completed correctly.

    A smart bot knows better than this.

    Why do you have a problem with my agreement?
    We agree that HHH correctly reports that it cannot possibly reach the
    'ret' instruction and that it aborted the simulation before the
    simulation has been completed correctly.
    I only wonder what you are going to do with this result.


    https://www.researchgate.net/
    publication/385090708_ChatGPT_Analyzes_Simulating_Termination_Analyzer
    Irrelevant! Such smart bots can be trained by an idiot to say anything
    he likes.


    ChagtGPT 100% totally understand my simplified proof in
    its own words. It shows the details of the error of
    any rebuttal.
    Why do you need ChatGPT to prove that we agree?
    We agree that HHH correctly reports that it cannot possibly reach the
    'ret' instruction and that it aborted the simulation before the
    simulation has been completed correctly.
    I only wonder what you are going to do with this result.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Sat Mar 8 17:01:17 2025
    Op 08.mrt.2025 om 16:10 schreef olcott:
    On 3/8/2025 3:12 AM, Fred. Zwarts wrote:
    Op 08.mrt.2025 om 02:48 schreef olcott:
    On 3/7/2025 10:23 AM, Fred. Zwarts wrote:
    Op 07.mrt.2025 om 16:22 schreef olcott:
    On 3/7/2025 3:09 AM, Fred. Zwarts wrote:
    Op 06.mrt.2025 om 21:11 schreef olcott:
    On 3/6/2025 2:02 AM, Mikko wrote:
    On 2025-03-04 14:26:39 +0000, olcott said:

    On 3/4/2025 4:36 AM, Mikko wrote:
    On 2025-03-04 03:07:56 +0000, olcott said:

    int DD()
    {
       int Halt_Status = HHH(DD);
       if (Halt_Status)
         HERE: goto HERE;
       return Halt_Status;
    }

    _DD()
    [00002133] 55         push ebp      ; housekeeping >>>>>>>>>>> [00002134] 8bec       mov ebp,esp   ; housekeeping >>>>>>>>>>> [00002136] 51         push ecx      ; make space for local
    [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.

    The only valid rebuttal is to show all of the steps of
    exactly how DD correctly emulated by HHH reaches its
    own "ret" instruction.

    The question whether DD emulated by HHH exists is too
    uninteresting that
    it would need a rebuttal, and so is the question that does it >>>>>>>>>> reach its
    "ret" instruction if it exsists.


    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.
    *Proves that the input to HHH(DD) can be rejected as non-halting* >>>>>>>>
    As "DD correctly emulated by HHH" does not exist

    *No one has made any attempt to show that*




    There is no proof that it does exist.

    Failing to understand this code is less than no rebuttal at all.
    https://github.com/plolcott/x86utm/blob/master/Halt7.c
    Failing to understand that no HHH can correctly simulate itself is no >>>> rebuttal at all.

    Failing to understand that Fred. Zwarts is only
    a not very bright bot is my mistake.


    Irrelevant. Again no rebuttal.

    So, since there is no rebuttal after two reactions from Olcott, I
    conclude that we agree that no HHH exists that correctly simulates
    itself up to the end.

    There is no end (reaching its final state) to the simulation
    of non-terminating input dumb bunny.

    Is it dumb to agree with Olcott? It seems that he is stuck in rebuttal
    mode, so that, even if I agree with him, he thinks I am wrong.
    Is that a sign of intelligence, or is Olcott just a random sentence
    selector, fed with disagreement sentences?

    We agree that HHH correctly reports that it cannot possibly reach the
    'ret' instruction of a finite string, that, when given for direct
    execution or given to a world-class simulator has no problem to reach
    the end. In other words, HHH correctly reports that it cannot correctly simulate this proven halting input up to the end.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Richard Damon@21:1/5 to olcott on Sat Mar 8 18:11:59 2025
    On 3/8/25 9:09 AM, olcott wrote:
    On 3/8/2025 3:06 AM, Mikko wrote:
    On 2025-03-07 15:11:53 +0000, olcott said:

    On 3/7/2025 2:58 AM, Fred. Zwarts wrote:
    Op 07.mrt.2025 om 03:31 schreef olcott:
    On 3/6/2025 6:37 PM, Richard Damon wrote:
    On 3/6/25 3:18 PM, olcott wrote:
    On 3/6/2025 3:20 AM, joes wrote:
    Am Wed, 05 Mar 2025 22:03:39 -0600 schrieb olcott:
    On 3/5/2025 9:57 PM, dbush wrote:
    On 3/5/2025 10:53 PM, olcott wrote:
    On 3/5/2025 9:31 PM, dbush wrote:
    On 3/5/2025 10:17 PM, olcott wrote:
    On 3/5/2025 7:10 PM, dbush wrote:

    In other words, you know that what you're working on has >>>>>>>>>>>>>> nothing to
    do with the halting problem, but you don't care.

    In other words I WILL NOT TOLERATE ANY BULLSHIT DEFLECTION. >>>>>>>>>>>>> You have proven that you know these things pretty well SO >>>>>>>>>>>>> QUIT THE
    SHIT!
    You want people to accept that HHH(DD) does in fact report that >>>>>>>>>>>> changing the code of HHH to an unconditional simulator and >>>>>>>>>>>> running
    HHH(DD) will not halt.

    DD correctly emulated by HHH cannot possibly reach its own "ret" >>>>>>>>>>> instruction and terminate normally.

    In other words, replacing the code of HHH with an unconditional >>>>>>>>>> simulator and subsequently running HHH(DD) does not halt,
    which you
    previously agreed is correct:
    On 2/22/2025 1:02 PM, olcott wrote:
      > On 2/22/2025 11:10 AM, dbush wrote:
      >> On 2/22/2025 11:43 AM, olcott wrote:
      >>> The first point is DD correctly simulated by HHH cannot >>>>>>>>>> possibly
      >>> terminate normally by reaching its own "return"
    instruction.
      >>
      >> In other words, if the code of HHH is replaced with an >>>>>>>>>>   >> unconditional simulator then it can be shown that DD is >>>>>>>>>>   >> non-halting and therefore HHH(DD)==0 is correct.
      >>
      > Wow finally someone that totally gets it.

    If you disagree, explain why this is different.
    In particular, give an example where X correctly emulated by Y is >>>>>>>>>> different from replacing the code of Y with an unconditional >>>>>>>>>> simulator
    and subsequently running Y(X).

    I may not have enough time left to change the subject and
    endlessly go
    through anything but the exact point.

    You used to have enough time.


    That is before the CAR T cell manufacturing process failed twice. >>>>>>
    Which really means you need to abandon your fraudulent methods

    _DD()
    [00002133] 55         push ebp      ; housekeeping
    [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local >>>>> [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.


    No such HHH exists.
    The programmer of HHH has the following options when HHH reaches the
    call to HHH:

    1) It just follows the call and starts simulating the code of HHH.
    This might eventually lead to infinite recursion. So, no correct
    simulation.

    The code proves otherwise
    https://github.com/plolcott/x86utm/blob/master/Halt7.c

    A program does not prove. In particular, it does not prove that no
    different program exists.


    The source code 100% perfectly proves exactly what it
    actually does. Whenever anyone disagrees with what it
    actually does (as most people here have tried to get
    away with) they are necessarily incorrect.


    Which is that HHH will look at memory not defined to be part of its
    input, and thus HHH is not the pure function you have agreed it must be.

    It also shows that HHH will abort its emulation of the input, and thus
    it doesn't do a correct emulation (which is required to be complete by
    the actual definitions)

    It also can be used to show that the actual behavior of DD is call an
    HHH that will abort its emulation and return 0 to it, so it will return,
    and thus HHH is just wrong.

    Sorry, you are just proving that you think lying is acceptable behavior.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Richard Damon@21:1/5 to olcott on Sat Mar 8 18:12:03 2025
    On 3/8/25 9:06 AM, olcott wrote:
    On 3/8/2025 3:17 AM, joes wrote:
    Am Fri, 07 Mar 2025 21:40:56 -0600 schrieb olcott:
    On 3/7/2025 8:23 PM, dbush wrote:
    On 3/7/2025 9:19 PM, olcott wrote:
    On 3/7/2025 7:52 PM, dbush wrote:
    On 3/7/2025 8:49 PM, olcott wrote:
    On 3/7/2025 10:25 AM, Fred. Zwarts wrote:
    Op 07.mrt.2025 om 16:17 schreef olcott:
    On 3/7/2025 2:59 AM, Fred. Zwarts wrote:
    Op 06.mrt.2025 om 21:13 schreef olcott:
    On 3/6/2025 3:13 AM, Fred. Zwarts wrote:
    Op 06.mrt.2025 om 04:53 schreef olcott:
    On 3/5/2025 9:31 PM, dbush wrote:
    On 3/5/2025 10:17 PM, olcott wrote:
    On 3/5/2025 7:10 PM, dbush wrote:

    In other words, you know that what you're working on has >>>>>>>>>>>>>>>> nothing to do with the halting problem, but you don't care. >>>>>>>>>>>>>>> In other words I WILL NOT TOLERATE ANY BULLSHIT DEFLECTION. >>>>>>>>>>>>>>> You have proven that you know these things pretty well SO >>>>>>>>>>>>>>> QUIT THE SHIT!
    You want people to accept that HHH(DD) does in fact report >>>>>>>>>>>>>> that changing the code of HHH to an unconditional simulator >>>>>>>>>>>>>> and running HHH(DD) will not halt.
    DD correctly emulated by HHH cannot possibly reach its own >>>>>>>>>>>>> "ret" instruction and terminate normally.
    Yes, we agree that HHH fails to reach the 'ret' instruction, >>>>>>>>>>> Despicably dishonest attempt at the straw-man deception.
    No rebuttal. So, we agree that HHH fails to reach the 'ret' >>>>>>>>>> instruction.
    Not at all. Trying to get away with changing the subject WILL NOT >>>>>>>>> BE TOLERATED.
    If you do not agree that HHH fails to reach the 'ret' instruction >>>>>>>> (that world-class simulators do reach, just as the direct execution >>>>>>>> does), show how it reaches the 'ret' instruction.
    *set X*
    When-so-ever any input to any simulating termination analyzer calls >>>>>>> the simulator that is simulating itself
    Not an issue, since termination analyzers don't exist.
    I thought that you demonstrated knowledge of these things.
    Maybe I was wrong.
    We know termination analyzers don't exist because no algorithm exists
    that maps the halting function:
    (<X>,Y) maps to 1 if and only if X(Y) halts when executed directly
    (<X>,Y) maps to 0 if and only if X(Y) does not halt when executed
    directly
    Automated Termination Analysis of C Programs
    https://publications.rwth-aachen.de/record/972440/files/972440.pdf
    AProVE seems to be the leading authority on what you say DOES NOT EXIST
    It isn't claimed to be total. Have you tried running it on itself or
    on a program similar to DD (instead of calling HHH, ...)?


    Termination analyzers are not required to be infallible.


    They are if they are to "correct".

    Of course, that just shows that you are just playing more word games as
    part of your FRAUD.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Richard Damon@21:1/5 to olcott on Sat Mar 8 18:14:28 2025
    On 3/8/25 5:42 PM, olcott wrote:
    On 3/8/2025 9:00 AM, dbush wrote:
    On 3/8/2025 9:03 AM, olcott wrote:

    Apparently you don't understand that inputs to a
    simulating termination analyzer specifying infinite
    recursion or recursive emulation cannot possibly
    reach their own final state and terminate normally.

    Apparently you don't understand that inputs to a termination analyzer,
    simulating or otherwise, are specified by the specification that is
    the halting function:

    (<X>,Y) maps to 1 if and only if X(Y) halts when executed directly
    (<X>,Y) maps to 0 if and only if X(Y) does not halt when executed

    And HHH(DD)==0 fails to meet the above specification

    *THIS IS A SEMANTIC TAUTOLOGY THUS IMPOSSIBLY FALSE*
    DD correctly emulated by HHH cannot possibly reach
    its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.

    It is ridiculously stupid to believe that HHH must
    report on behavior other than the above behavior.


    But HHH isn't the HHH that does an correct emulation, so DD isn't the DD
    that calls such an HHH, and thus HHH is answering about the wrong input.

    Of course, since you admit that you are lying about working in the basic
    system implied, who know what you actually mean, except that it isn't
    the actual Halting Problem.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Richard Damon@21:1/5 to olcott on Sat Mar 8 22:03:40 2025
    On 3/8/25 6:30 PM, olcott wrote:
    On 3/8/2025 5:01 PM, dbush wrote:
    On 3/8/2025 5:47 PM, olcott wrote:
    On 3/8/2025 4:26 PM, dbush wrote:
    On 3/8/2025 11:41 AM, olcott wrote:
    On 3/8/2025 9:01 AM, dbush wrote:
    On 3/8/2025 9:09 AM, olcott wrote:
    On 3/8/2025 3:06 AM, Mikko wrote:
    On 2025-03-07 15:11:53 +0000, olcott said:

    The code proves otherwise
    https://github.com/plolcott/x86utm/blob/master/Halt7.c

    A program does not prove. In particular, it does not prove that no >>>>>>>> different program exists.


    The source code 100% perfectly proves exactly what it
    actually does.

    The source code contains a finite sequence of truth preserving
    steps between axioms and a statement?

    The source code 100% completely specifies every single detail
    of exactly what it does on each specific input.
    Saying that it does not do this is counter-factual.


    In other words, the source code does not meet the definition of a
    proof, so your claim is false.

    Dumb Bunny:
    *Proof[0] is anything that shows that X is necessarily true*
    *and thus impossibly false*

    The source-code in Halt7.c combined with the input to HHH
    conclusively proves every detail of the behavior of HHH on
    this input. Disagreeing this is either foolish or dishonest.


    A proof is a finite sequence of truth preserving steps between the
    axioms of a system and a true statement that show the statement is true.


    Proof[math] tries unsuccessfully to inherit from proof[0].
    I am stipulating that I have always been referring to proof[0].

    And I am pointing out that it IS the same, it is just that you don't
    understand that "Show" implies FINITE.

    You are just proving your stupidity by repeating your disproved claim.


    If you cannot understand the Halt7.c conclusively proves[0]
    the actual behavior of HHH(DD) this is merely your lack of
    understanding and nothing more.



    Sure I can understand what it does, as Halt7.c shows that the behavior
    of the input is to HALT since that is what DD will do when main calls it.

    That you don't undetstand the meaning of the words your are using, or
    are intentionally using the wrong ones, doesn't make you right, just
    ether stupid or a liar.

    The fact you keep on saying I am wrong, but can never actually explain
    what I am saying is wrong, only repeat your vague claims shows that you
    have nothing to back your claims.

    Your problem is if you try to go into more details, you know that your
    LIES become too obvious.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Sun Mar 9 10:07:40 2025
    Op 09.mrt.2025 om 00:41 schreef olcott:
    On 3/8/2025 5:11 PM, Richard Damon wrote:
    On 3/8/25 9:09 AM, olcott wrote:
    On 3/8/2025 3:06 AM, Mikko wrote:
    On 2025-03-07 15:11:53 +0000, olcott said:

    On 3/7/2025 2:58 AM, Fred. Zwarts wrote:
    Op 07.mrt.2025 om 03:31 schreef olcott:
    On 3/6/2025 6:37 PM, Richard Damon wrote:
    On 3/6/25 3:18 PM, olcott wrote:
    On 3/6/2025 3:20 AM, joes wrote:
    Am Wed, 05 Mar 2025 22:03:39 -0600 schrieb olcott:
    On 3/5/2025 9:57 PM, dbush wrote:
    On 3/5/2025 10:53 PM, olcott wrote:
    On 3/5/2025 9:31 PM, dbush wrote:
    On 3/5/2025 10:17 PM, olcott wrote:
    On 3/5/2025 7:10 PM, dbush wrote:

    In other words, you know that what you're working on has >>>>>>>>>>>>>>>> nothing to
    do with the halting problem, but you don't care. >>>>>>>>>>>>>>>
    In other words I WILL NOT TOLERATE ANY BULLSHIT DEFLECTION. >>>>>>>>>>>>>>> You have proven that you know these things pretty well SO >>>>>>>>>>>>>>> QUIT THE
    SHIT!
    You want people to accept that HHH(DD) does in fact report >>>>>>>>>>>>>> that
    changing the code of HHH to an unconditional simulator and >>>>>>>>>>>>>> running
    HHH(DD) will not halt.

    DD correctly emulated by HHH cannot possibly reach its own >>>>>>>>>>>>> "ret"
    instruction and terminate normally.

    In other words, replacing the code of HHH with an unconditional >>>>>>>>>>>> simulator and subsequently running HHH(DD) does not halt, >>>>>>>>>>>> which you
    previously agreed is correct:
    On 2/22/2025 1:02 PM, olcott wrote:
      > On 2/22/2025 11:10 AM, dbush wrote:
      >> On 2/22/2025 11:43 AM, olcott wrote:
      >>> The first point is DD correctly simulated by HHH >>>>>>>>>>>> cannot possibly
      >>> terminate normally by reaching its own "return" >>>>>>>>>>>> instruction.
      >>
      >> In other words, if the code of HHH is replaced with an >>>>>>>>>>>>   >> unconditional simulator then it can be shown that DD is >>>>>>>>>>>>   >> non-halting and therefore HHH(DD)==0 is correct. >>>>>>>>>>>>   >>
      > Wow finally someone that totally gets it.

    If you disagree, explain why this is different.
    In particular, give an example where X correctly emulated by >>>>>>>>>>>> Y is
    different from replacing the code of Y with an unconditional >>>>>>>>>>>> simulator
    and subsequently running Y(X).

    I may not have enough time left to change the subject and >>>>>>>>>>> endlessly go
    through anything but the exact point.

    You used to have enough time.


    That is before the CAR T cell manufacturing process failed twice. >>>>>>>>
    Which really means you need to abandon your fraudulent methods

    _DD()
    [00002133] 55         push ebp      ; housekeeping
    [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local >>>>>>> [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.


    No such HHH exists.
    The programmer of HHH has the following options when HHH reaches
    the call to HHH:

    1) It just follows the call and starts simulating the code of HHH. >>>>>> This might eventually lead to infinite recursion. So, no correct
    simulation.

    The code proves otherwise
    https://github.com/plolcott/x86utm/blob/master/Halt7.c

    A program does not prove. In particular, it does not prove that no
    different program exists.


    The source code 100% perfectly proves exactly what it
    actually does. Whenever anyone disagrees with what it
    actually does (as most people here have tried to get
    away with) they are necessarily incorrect.


    Which is that HHH will look at memory not defined to be part of its
    input, and thus HHH is not the pure function you have agreed it must be.



    THIS IS A SEMANTIC TAUTOLOGY AGREE OR STFU !!!
    DD correctly emulated by HHH  cannot possibly
    reach its own final state and terminate normally.

    Indeed, hat is the only conclusion: HHH correctly reports that it cannot possibly simulate this input correctly up to the end. An end that has
    been proven to be there by direct execution and world-class simulators.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Sun Mar 9 10:12:58 2025
    Op 09.mrt.2025 om 01:10 schreef olcott:
    On 3/8/2025 5:54 PM, dbush wrote:
    On 3/8/2025 6:41 PM, olcott wrote:
    On 3/8/2025 5:11 PM, Richard Damon wrote:
    On 3/8/25 9:09 AM, olcott wrote:
    On 3/8/2025 3:06 AM, Mikko wrote:
    On 2025-03-07 15:11:53 +0000, olcott said:

    On 3/7/2025 2:58 AM, Fred. Zwarts wrote:
    Op 07.mrt.2025 om 03:31 schreef olcott:
    On 3/6/2025 6:37 PM, Richard Damon wrote:
    On 3/6/25 3:18 PM, olcott wrote:
    On 3/6/2025 3:20 AM, joes wrote:
    Am Wed, 05 Mar 2025 22:03:39 -0600 schrieb olcott:
    On 3/5/2025 9:57 PM, dbush wrote:
    On 3/5/2025 10:53 PM, olcott wrote:
    On 3/5/2025 9:31 PM, dbush wrote:
    On 3/5/2025 10:17 PM, olcott wrote:
    On 3/5/2025 7:10 PM, dbush wrote:

    In other words, you know that what you're working on >>>>>>>>>>>>>>>>>> has nothing to
    do with the halting problem, but you don't care. >>>>>>>>>>>>>>>>>
    In other words I WILL NOT TOLERATE ANY BULLSHIT >>>>>>>>>>>>>>>>> DEFLECTION.
    You have proven that you know these things pretty well >>>>>>>>>>>>>>>>> SO QUIT THE
    SHIT!
    You want people to accept that HHH(DD) does in fact >>>>>>>>>>>>>>>> report that
    changing the code of HHH to an unconditional simulator >>>>>>>>>>>>>>>> and running
    HHH(DD) will not halt.

    DD correctly emulated by HHH cannot possibly reach its >>>>>>>>>>>>>>> own "ret"
    instruction and terminate normally.

    In other words, replacing the code of HHH with an
    unconditional
    simulator and subsequently running HHH(DD) does not halt, >>>>>>>>>>>>>> which you
    previously agreed is correct:
    On 2/22/2025 1:02 PM, olcott wrote:
      > On 2/22/2025 11:10 AM, dbush wrote:
      >> On 2/22/2025 11:43 AM, olcott wrote:
      >>> The first point is DD correctly simulated by HHH >>>>>>>>>>>>>> cannot possibly
      >>> terminate normally by reaching its own "return" >>>>>>>>>>>>>> instruction.
      >>
      >> In other words, if the code of HHH is replaced with an >>>>>>>>>>>>>>   >> unconditional simulator then it can be shown that DD is >>>>>>>>>>>>>>   >> non-halting and therefore HHH(DD)==0 is correct. >>>>>>>>>>>>>>   >>
      > Wow finally someone that totally gets it.

    If you disagree, explain why this is different.
    In particular, give an example where X correctly emulated >>>>>>>>>>>>>> by Y is
    different from replacing the code of Y with an
    unconditional simulator
    and subsequently running Y(X).

    I may not have enough time left to change the subject and >>>>>>>>>>>>> endlessly go
    through anything but the exact point.

    You used to have enough time.


    That is before the CAR T cell manufacturing process failed >>>>>>>>>>> twice.

    Which really means you need to abandon your fraudulent methods >>>>>>>>>
    _DD()
    [00002133] 55         push ebp      ; housekeeping >>>>>>>>> [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local
    [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.


    No such HHH exists.
    The programmer of HHH has the following options when HHH reaches >>>>>>>> the call to HHH:

    1) It just follows the call and starts simulating the code of
    HHH. This might eventually lead to infinite recursion. So, no
    correct simulation.

    The code proves otherwise
    https://github.com/plolcott/x86utm/blob/master/Halt7.c

    A program does not prove. In particular, it does not prove that no >>>>>> different program exists.


    The source code 100% perfectly proves exactly what it
    actually does. Whenever anyone disagrees with what it
    actually does (as most people here have tried to get
    away with) they are necessarily incorrect.


    Which is that HHH will look at memory not defined to be part of its
    input, and thus HHH is not the pure function you have agreed it must
    be.



    THIS IS A SEMANTIC TAUTOLOGY AGREE OR STFU !!!
    Replacing the code of HHH with an unconditional simulator and
    subsequently running HHH(DD)  cannot possibly
    reach its own final state and terminate normally.

    Two people with masters degrees in computer science
    agreed. Gaslighting me on this makes you look like
    a complete nitwit.


    I think everyone would agree, as you said, that if the code of HHH is
    replaced with an unconditional simulator and HHH(DD) is run, that it
    will not halt.

    So now what?


    We add the mandatory required details to your simplistic
    idea such that additional elaboration from this full set
    of details:

    DD correctly emulated by HHH cannot possibly reach
    its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.

    COMPLETES MY PROOF


    What has been proven? That HHH does not reach the end of a finite
    recursive simulation. Direct execution and simulation by world-class
    simulators show that there is only a finite recursion. But HHH correctly reports that it cannot possibly simulate this finite recursive
    simulation up to the final 'ret' instruction.
    Nice proof! What next?

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Sun Mar 9 10:05:17 2025
    Op 08.mrt.2025 om 18:47 schreef olcott:
    On 3/8/2025 9:41 AM, Fred. Zwarts wrote:
    Op 08.mrt.2025 om 15:09 schreef olcott:
    On 3/8/2025 3:06 AM, Mikko wrote:
    On 2025-03-07 15:11:53 +0000, olcott said:

    On 3/7/2025 2:58 AM, Fred. Zwarts wrote:
    Op 07.mrt.2025 om 03:31 schreef olcott:
    On 3/6/2025 6:37 PM, Richard Damon wrote:
    On 3/6/25 3:18 PM, olcott wrote:
    On 3/6/2025 3:20 AM, joes wrote:
    Am Wed, 05 Mar 2025 22:03:39 -0600 schrieb olcott:
    On 3/5/2025 9:57 PM, dbush wrote:
    On 3/5/2025 10:53 PM, olcott wrote:
    On 3/5/2025 9:31 PM, dbush wrote:
    On 3/5/2025 10:17 PM, olcott wrote:
    On 3/5/2025 7:10 PM, dbush wrote:

    In other words, you know that what you're working on has >>>>>>>>>>>>>>>> nothing to
    do with the halting problem, but you don't care. >>>>>>>>>>>>>>>
    In other words I WILL NOT TOLERATE ANY BULLSHIT DEFLECTION. >>>>>>>>>>>>>>> You have proven that you know these things pretty well SO >>>>>>>>>>>>>>> QUIT THE
    SHIT!
    You want people to accept that HHH(DD) does in fact report >>>>>>>>>>>>>> that
    changing the code of HHH to an unconditional simulator and >>>>>>>>>>>>>> running
    HHH(DD) will not halt.

    DD correctly emulated by HHH cannot possibly reach its own >>>>>>>>>>>>> "ret"
    instruction and terminate normally.

    In other words, replacing the code of HHH with an unconditional >>>>>>>>>>>> simulator and subsequently running HHH(DD) does not halt, >>>>>>>>>>>> which you
    previously agreed is correct:
    On 2/22/2025 1:02 PM, olcott wrote:
      > On 2/22/2025 11:10 AM, dbush wrote:
      >> On 2/22/2025 11:43 AM, olcott wrote:
      >>> The first point is DD correctly simulated by HHH >>>>>>>>>>>> cannot possibly
      >>> terminate normally by reaching its own "return" >>>>>>>>>>>> instruction.
      >>
      >> In other words, if the code of HHH is replaced with an >>>>>>>>>>>>   >> unconditional simulator then it can be shown that DD is >>>>>>>>>>>>   >> non-halting and therefore HHH(DD)==0 is correct. >>>>>>>>>>>>   >>
      > Wow finally someone that totally gets it.

    If you disagree, explain why this is different.
    In particular, give an example where X correctly emulated by >>>>>>>>>>>> Y is
    different from replacing the code of Y with an unconditional >>>>>>>>>>>> simulator
    and subsequently running Y(X).

    I may not have enough time left to change the subject and >>>>>>>>>>> endlessly go
    through anything but the exact point.

    You used to have enough time.


    That is before the CAR T cell manufacturing process failed twice. >>>>>>>>
    Which really means you need to abandon your fraudulent methods

    _DD()
    [00002133] 55         push ebp      ; housekeeping
    [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local >>>>>>> [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.


    No such HHH exists.
    The programmer of HHH has the following options when HHH reaches
    the call to HHH:

    1) It just follows the call and starts simulating the code of HHH. >>>>>> This might eventually lead to infinite recursion. So, no correct
    simulation.

    The code proves otherwise
    https://github.com/plolcott/x86utm/blob/master/Halt7.c

    A program does not prove. In particular, it does not prove that no
    different program exists.


    The source code 100% perfectly proves exactly what it
    actually does.
    Yes, even if there are error in the program, it does what it does.

    There is no error.


    That is a claim, not a proof. Many errors have been pointed out, but the program was not corrected. Without a proof of correctness, a program
    does not prove anything.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Sun Mar 9 10:19:58 2025
    Op 09.mrt.2025 om 04:40 schreef olcott:
    On 3/8/2025 9:24 PM, dbush wrote:
    On 3/8/2025 10:20 PM, olcott wrote:

    *WHEN YOU UNDERSTAND THIS THEN YOU KNOW YOU WERE WRONG*
    Replacing the code of HHH with an unconditional simulator and
    subsequently running HHH(DD) cannot possibly reach
    its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.


    And when that code is not replaced HHH does a partial simulation of a
    computation that halts, as demonstrated by DD halting when executed
    directly.

    That Straw-man deception looks ridiculously stupid
    when I challenge you to provide the line-by-line
    machine code addresses of DD correctly emulated by
    HHH such that DD reaches its own "ret" instruction
    and terminates normally.

    _DD()
    [00002133] 55         push ebp      ; housekeeping
    [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]


    Strawmen. If there is no correct way, an error can not be corrected by
    showing the correct way.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Sun Mar 9 10:27:24 2025
    Op 08.mrt.2025 om 17:04 schreef olcott:
    On 3/8/2025 8:22 AM, joes wrote:
    Am Sat, 08 Mar 2025 08:06:04 -0600 schrieb olcott:
    On 3/8/2025 3:17 AM, joes wrote:
    Am Fri, 07 Mar 2025 21:40:56 -0600 schrieb olcott:
    On 3/7/2025 8:23 PM, dbush wrote:
    On 3/7/2025 9:19 PM, olcott wrote:
    On 3/7/2025 7:52 PM, dbush wrote:
    On 3/7/2025 8:49 PM, olcott wrote:
    On 3/7/2025 10:25 AM, Fred. Zwarts wrote:
    Op 07.mrt.2025 om 16:17 schreef olcott:
    On 3/7/2025 2:59 AM, Fred. Zwarts wrote:
    Op 06.mrt.2025 om 21:13 schreef olcott:
    On 3/6/2025 3:13 AM, Fred. Zwarts wrote:
    Op 06.mrt.2025 om 04:53 schreef olcott:
    On 3/5/2025 9:31 PM, dbush wrote:
    On 3/5/2025 10:17 PM, olcott wrote:
    On 3/5/2025 7:10 PM, dbush wrote:

    In other words, you know that what you're working on has >>>>>>>>>>>>>>>>>> nothing to do with the halting problem, but you don't >>>>>>>>>>>>>>>>>> care.
    In other words I WILL NOT TOLERATE ANY BULLSHIT >>>>>>>>>>>>>>>>> DEFLECTION.
    You have proven that you know these things pretty well SO >>>>>>>>>>>>>>>>> QUIT THE SHIT!
    You want people to accept that HHH(DD) does in fact report >>>>>>>>>>>>>>>> that changing the code of HHH to an unconditional simulator >>>>>>>>>>>>>>>> and running HHH(DD) will not halt.
    DD correctly emulated by HHH cannot possibly reach its own >>>>>>>>>>>>>>> "ret" instruction and terminate normally.
    Yes, we agree that HHH fails to reach the 'ret' instruction, >>>>>>>>>>>>> Despicably dishonest attempt at the straw-man deception. >>>>>>>>>>>> No rebuttal. So, we agree that HHH fails to reach the 'ret' >>>>>>>>>>>> instruction.
    Not at all. Trying to get away with changing the subject WILL >>>>>>>>>>> NOT BE TOLERATED.
    If you do not agree that HHH fails to reach the 'ret' instruction >>>>>>>>>> (that world-class simulators do reach, just as the direct
    execution does), show how it reaches the 'ret' instruction. >>>>>>>>> *set X*
    When-so-ever any input to any simulating termination analyzer >>>>>>>>> calls the simulator that is simulating itself
    Not an issue, since termination analyzers don't exist.
    I thought that you demonstrated knowledge of these things.
    Maybe I was wrong.
    We know termination analyzers don't exist because no algorithm exists >>>>>> that maps the halting function:
    (<X>,Y) maps to 1 if and only if X(Y) halts when executed directly >>>>>> (<X>,Y) maps to 0 if and only if X(Y) does not halt when executed
    directly
    Automated Termination Analysis of C Programs
    https://publications.rwth-aachen.de/record/972440/files/972440.pdf
    AProVE seems to be the leading authority on what you say DOES NOT
    EXIST
    It isn't claimed to be total. Have you tried running it on itself or on >>>> a program similar to DD (instead of calling HHH, ...)?
    Termination analyzers are not required to be infallible.
    Neither do they disprove the undecidability of halting.


    The actual behavior that Halt7.c specifies combined with
    the semantics of the x86 language conclusively proves:

    DD correctly emulated by HHH cannot possibly reach
    its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.

    Why repeating this over and over again when we agree that HHH correctly
    reports that it cannot reach the 'ret' instruction of the input that,
    when given for direct execution or to world-class simulators has been
    proven to have an end?
    Yes, HHH cannot correctly complete the simulation. What next?

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Sun Mar 9 10:15:42 2025
    Op 09.mrt.2025 om 03:33 schreef olcott:
    On 3/8/2025 7:52 PM, dbush wrote:
    On 3/8/2025 8:19 PM, olcott wrote:
    On 3/8/2025 6:54 PM, dbush wrote:
    On 3/8/2025 7:10 PM, olcott wrote:
    On 3/8/2025 5:54 PM, dbush wrote:
    On 3/8/2025 6:41 PM, olcott wrote:
    On 3/8/2025 5:11 PM, Richard Damon wrote:
    On 3/8/25 9:09 AM, olcott wrote:
    On 3/8/2025 3:06 AM, Mikko wrote:
    On 2025-03-07 15:11:53 +0000, olcott said:

    On 3/7/2025 2:58 AM, Fred. Zwarts wrote:
    Op 07.mrt.2025 om 03:31 schreef olcott:
    On 3/6/2025 6:37 PM, Richard Damon wrote:
    On 3/6/25 3:18 PM, olcott wrote:
    On 3/6/2025 3:20 AM, joes wrote:
    Am Wed, 05 Mar 2025 22:03:39 -0600 schrieb olcott: >>>>>>>>>>>>>>>>> On 3/5/2025 9:57 PM, dbush wrote:
    On 3/5/2025 10:53 PM, olcott wrote:
    On 3/5/2025 9:31 PM, dbush wrote:
    On 3/5/2025 10:17 PM, olcott wrote:
    On 3/5/2025 7:10 PM, dbush wrote:

    In other words, you know that what you're working >>>>>>>>>>>>>>>>>>>>>> on has nothing to
    do with the halting problem, but you don't care. >>>>>>>>>>>>>>>>>>>>>
    In other words I WILL NOT TOLERATE ANY BULLSHIT >>>>>>>>>>>>>>>>>>>>> DEFLECTION.
    You have proven that you know these things pretty >>>>>>>>>>>>>>>>>>>>> well SO QUIT THE
    SHIT!
    You want people to accept that HHH(DD) does in fact >>>>>>>>>>>>>>>>>>>> report that
    changing the code of HHH to an unconditional >>>>>>>>>>>>>>>>>>>> simulator and running
    HHH(DD) will not halt.

    DD correctly emulated by HHH cannot possibly reach >>>>>>>>>>>>>>>>>>> its own "ret"
    instruction and terminate normally.

    In other words, replacing the code of HHH with an >>>>>>>>>>>>>>>>>> unconditional
    simulator and subsequently running HHH(DD) does not >>>>>>>>>>>>>>>>>> halt, which you
    previously agreed is correct:
    On 2/22/2025 1:02 PM, olcott wrote:
      > On 2/22/2025 11:10 AM, dbush wrote:
      >> On 2/22/2025 11:43 AM, olcott wrote: >>>>>>>>>>>>>>>>>>   >>> The first point is DD correctly simulated by HHH >>>>>>>>>>>>>>>>>> cannot possibly
      >>> terminate normally by reaching its own "return" >>>>>>>>>>>>>>>>>> instruction.
      >>
      >> In other words, if the code of HHH is replaced >>>>>>>>>>>>>>>>>> with an
      >> unconditional simulator then it can be shown that >>>>>>>>>>>>>>>>>> DD is
      >> non-halting and therefore HHH(DD)==0 is correct. >>>>>>>>>>>>>>>>>>   >>
      > Wow finally someone that totally gets it. >>>>>>>>>>>>>>>>>>
    If you disagree, explain why this is different. >>>>>>>>>>>>>>>>>> In particular, give an example where X correctly >>>>>>>>>>>>>>>>>> emulated by Y is
    different from replacing the code of Y with an >>>>>>>>>>>>>>>>>> unconditional simulator
    and subsequently running Y(X).

    I may not have enough time left to change the subject >>>>>>>>>>>>>>>>> and endlessly go
    through anything but the exact point.

    You used to have enough time.


    That is before the CAR T cell manufacturing process >>>>>>>>>>>>>>> failed twice.

    Which really means you need to abandon your fraudulent >>>>>>>>>>>>>> methods

    _DD()
    [00002133] 55         push ebp      ; housekeeping >>>>>>>>>>>>> [00002134] 8bec       mov ebp,esp   ; housekeeping >>>>>>>>>>>>> [00002136] 51         push ecx      ; make space for local
    [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally >>>>>>>>>>>>> because DD calls HHH(DD) in recursive emulation.


    No such HHH exists.
    The programmer of HHH has the following options when HHH >>>>>>>>>>>> reaches the call to HHH:

    1) It just follows the call and starts simulating the code >>>>>>>>>>>> of HHH. This might eventually lead to infinite recursion. >>>>>>>>>>>> So, no correct simulation.

    The code proves otherwise
    https://github.com/plolcott/x86utm/blob/master/Halt7.c

    A program does not prove. In particular, it does not prove >>>>>>>>>> that no
    different program exists.


    The source code 100% perfectly proves exactly what it
    actually does. Whenever anyone disagrees with what it
    actually does (as most people here have tried to get
    away with) they are necessarily incorrect.


    Which is that HHH will look at memory not defined to be part of >>>>>>>> its input, and thus HHH is not the pure function you have agreed >>>>>>>> it must be.



    THIS IS A SEMANTIC TAUTOLOGY AGREE OR STFU !!!
    Replacing the code of HHH with an unconditional simulator and
    subsequently running HHH(DD)  cannot possibly
    reach its own final state and terminate normally.

    Two people with masters degrees in computer science
    agreed. Gaslighting me on this makes you look like
    a complete nitwit.


    I think everyone would agree, as you said, that if the code of HHH >>>>>> is replaced with an unconditional simulator and HHH(DD) is run,
    that it will not halt.

    So now what?


    We add the mandatory required details to your simplistic
    idea such that additional elaboration from this full set
    of details:

    Replacing the code of HHH with an unconditional simulator and
    subsequently running HHH(DD) cannot possibly reach
    its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.


    Obviously.  So now what?

    You still don't understand that we get the same effect
    whether we replace the code or not.


    Right, because a partial (and therefore incorrect) simulation doesn't
    prove anything.

    So then what?

    Thus a partial thus incomplete emulation of an
    infinite loop cannot possibly determine that this
    loop will not terminate.

    Dreaming again of an infinite loop, where both direct execution and
    world-class simulators prove that there is only a finite recursion in
    exactly the same input?

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Sun Mar 9 10:18:22 2025
    Op 09.mrt.2025 om 04:20 schreef olcott:
    On 3/8/2025 8:38 PM, dbush wrote:
    On 3/8/2025 9:33 PM, olcott wrote:
    On 3/8/2025 7:52 PM, dbush wrote:
    On 3/8/2025 8:19 PM, olcott wrote:
    On 3/8/2025 6:54 PM, dbush wrote:
    On 3/8/2025 7:10 PM, olcott wrote:
    On 3/8/2025 5:54 PM, dbush wrote:
    On 3/8/2025 6:41 PM, olcott wrote:
    On 3/8/2025 5:11 PM, Richard Damon wrote:
    On 3/8/25 9:09 AM, olcott wrote:
    On 3/8/2025 3:06 AM, Mikko wrote:
    On 2025-03-07 15:11:53 +0000, olcott said:

    On 3/7/2025 2:58 AM, Fred. Zwarts wrote:
    Op 07.mrt.2025 om 03:31 schreef olcott:
    On 3/6/2025 6:37 PM, Richard Damon wrote:
    On 3/6/25 3:18 PM, olcott wrote:
    On 3/6/2025 3:20 AM, joes wrote:
    Am Wed, 05 Mar 2025 22:03:39 -0600 schrieb olcott: >>>>>>>>>>>>>>>>>>> On 3/5/2025 9:57 PM, dbush wrote:
    On 3/5/2025 10:53 PM, olcott wrote:
    On 3/5/2025 9:31 PM, dbush wrote:
    On 3/5/2025 10:17 PM, olcott wrote: >>>>>>>>>>>>>>>>>>>>>>> On 3/5/2025 7:10 PM, dbush wrote: >>>>>>>>>>>>>>>>>>>>>>>>
    In other words, you know that what you're >>>>>>>>>>>>>>>>>>>>>>>> working on has nothing to
    do with the halting problem, but you don't care. >>>>>>>>>>>>>>>>>>>>>>>
    In other words I WILL NOT TOLERATE ANY BULLSHIT >>>>>>>>>>>>>>>>>>>>>>> DEFLECTION.
    You have proven that you know these things pretty >>>>>>>>>>>>>>>>>>>>>>> well SO QUIT THE
    SHIT!
    You want people to accept that HHH(DD) does in >>>>>>>>>>>>>>>>>>>>>> fact report that
    changing the code of HHH to an unconditional >>>>>>>>>>>>>>>>>>>>>> simulator and running
    HHH(DD) will not halt.

    DD correctly emulated by HHH cannot possibly reach >>>>>>>>>>>>>>>>>>>>> its own "ret"
    instruction and terminate normally.

    In other words, replacing the code of HHH with an >>>>>>>>>>>>>>>>>>>> unconditional
    simulator and subsequently running HHH(DD) does not >>>>>>>>>>>>>>>>>>>> halt, which you
    previously agreed is correct:
    On 2/22/2025 1:02 PM, olcott wrote:
      > On 2/22/2025 11:10 AM, dbush wrote: >>>>>>>>>>>>>>>>>>>>   >> On 2/22/2025 11:43 AM, olcott wrote: >>>>>>>>>>>>>>>>>>>>   >>> The first point is DD correctly simulated by >>>>>>>>>>>>>>>>>>>> HHH cannot possibly
      >>> terminate normally by reaching its own >>>>>>>>>>>>>>>>>>>> "return" instruction.
      >>
      >> In other words, if the code of HHH is replaced >>>>>>>>>>>>>>>>>>>> with an
      >> unconditional simulator then it can be shown >>>>>>>>>>>>>>>>>>>> that DD is
      >> non-halting and therefore HHH(DD)==0 is correct. >>>>>>>>>>>>>>>>>>>>   >>
      > Wow finally someone that totally gets it. >>>>>>>>>>>>>>>>>>>>
    If you disagree, explain why this is different. >>>>>>>>>>>>>>>>>>>> In particular, give an example where X correctly >>>>>>>>>>>>>>>>>>>> emulated by Y is
    different from replacing the code of Y with an >>>>>>>>>>>>>>>>>>>> unconditional simulator
    and subsequently running Y(X).

    I may not have enough time left to change the subject >>>>>>>>>>>>>>>>>>> and endlessly go
    through anything but the exact point.

    You used to have enough time.


    That is before the CAR T cell manufacturing process >>>>>>>>>>>>>>>>> failed twice.

    Which really means you need to abandon your fraudulent >>>>>>>>>>>>>>>> methods

    _DD()
    [00002133] 55         push ebp      ; housekeeping >>>>>>>>>>>>>>> [00002134] 8bec       mov ebp,esp   ; housekeeping >>>>>>>>>>>>>>> [00002136] 51         push ecx      ; make space for local
    [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD) >>>>>>>>>>>>>>> [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally >>>>>>>>>>>>>>> because DD calls HHH(DD) in recursive emulation. >>>>>>>>>>>>>>>

    No such HHH exists.
    The programmer of HHH has the following options when HHH >>>>>>>>>>>>>> reaches the call to HHH:

    1) It just follows the call and starts simulating the code >>>>>>>>>>>>>> of HHH. This might eventually lead to infinite recursion. >>>>>>>>>>>>>> So, no correct simulation.

    The code proves otherwise
    https://github.com/plolcott/x86utm/blob/master/Halt7.c >>>>>>>>>>>>
    A program does not prove. In particular, it does not prove >>>>>>>>>>>> that no
    different program exists.


    The source code 100% perfectly proves exactly what it
    actually does. Whenever anyone disagrees with what it
    actually does (as most people here have tried to get
    away with) they are necessarily incorrect.


    Which is that HHH will look at memory not defined to be part >>>>>>>>>> of its input, and thus HHH is not the pure function you have >>>>>>>>>> agreed it must be.



    THIS IS A SEMANTIC TAUTOLOGY AGREE OR STFU !!!
    Replacing the code of HHH with an unconditional simulator and >>>>>>>>> subsequently running HHH(DD)  cannot possibly
    reach its own final state and terminate normally.

    Two people with masters degrees in computer science
    agreed. Gaslighting me on this makes you look like
    a complete nitwit.


    I think everyone would agree, as you said, that if the code of >>>>>>>> HHH is replaced with an unconditional simulator and HHH(DD) is >>>>>>>> run, that it will not halt.

    So now what?


    We add the mandatory required details to your simplistic
    idea such that additional elaboration from this full set
    of details:

    Replacing the code of HHH with an unconditional simulator and
    subsequently running HHH(DD) cannot possibly reach
    its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.


    Obviously.  So now what?

    You still don't understand that we get the same effect
    whether we replace the code or not.


    Right, because a partial (and therefore incorrect) simulation
    doesn't prove anything.

    So then what?

    Thus a partial thus incomplete emulation of an
    infinite loop cannot possibly determine that this
    loop will not terminate.

    It's a partial simulation of a halting computation, as demonstrated by
    DD halting when executed directly.


    *WHEN YOU UNDERSTAND THIS THEN YOU KNOW YOU WERE WRONG*
    DD correctly emulated by HHH cannot possibly reach
    its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.

    A finite recursive simulation, because HHH is programmed to abort, both
    the outer and the inner HHH. Proven by direct execution and world-class simulators.
    So, HHH correctly reports that it cannot possibly simulate this finite recursion up to the end.
    Well done. What next?

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Sun Mar 9 10:31:19 2025
    Op 08.mrt.2025 om 16:52 schreef olcott:
    On 3/8/2025 7:54 AM, Richard Damon wrote:
    On 3/7/25 9:21 PM, olcott wrote:
    On 3/7/2025 8:00 PM, Richard Damon wrote:
    On 3/7/25 8:49 PM, olcott wrote:
    On 3/7/2025 10:25 AM, Fred. Zwarts wrote:
    Op 07.mrt.2025 om 16:17 schreef olcott:
    On 3/7/2025 2:59 AM, Fred. Zwarts wrote:
    Op 06.mrt.2025 om 21:13 schreef olcott:
    On 3/6/2025 3:13 AM, Fred. Zwarts wrote:
    Op 06.mrt.2025 om 04:53 schreef olcott:
    On 3/5/2025 9:31 PM, dbush wrote:
    On 3/5/2025 10:17 PM, olcott wrote:
    On 3/5/2025 7:10 PM, dbush wrote:

    In other words, you know that what you're working on has >>>>>>>>>>>>>> nothing to do with the halting problem, but you don't care. >>>>>>>>>>>>>
    In other words I WILL NOT TOLERATE ANY BULLSHIT DEFLECTION. >>>>>>>>>>>>> You have proven that you know these things pretty well SO >>>>>>>>>>>>> QUIT THE SHIT!


    You want people to accept that HHH(DD) does in fact report >>>>>>>>>>>> that changing the code of HHH to an unconditional simulator >>>>>>>>>>>> and running HHH(DD) will not halt.


    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.

    Yes, we agree that HHH fails to reach the 'ret' instruction, >>>>>>>>>
    Despicably dishonest attempt at the straw-man deception.


    No rebuttal. So, we agree that HHH fails to reach the 'ret'
    instruction.

    Not at all. Trying to get away with changing the subject
    WILL NOT BE TOLERATED.

    If you do not agree that HHH fails to reach the 'ret' instruction
    (that world-class simulators do reach, just as the direct
    execution does), show how it reaches the 'ret' instruction.

    *set X*
    When-so-ever any input to any simulating termination
    analyzer calls the simulator that is simulating itself

    *result of set X*
    this input cannot possibly reach its own final state
    and terminate normally because it remains stuck in
    recursive emulation.

    But the failure of the PARTIAL emulatipon done by the termination
    analyzer doesn't show that the input is non-haltiong


    That is stupidly wrong and you know it.



    What is wrong with it?


    A proof is anything and everything that shows a
    statement is necessarily true and impossibly false.

    The code 100% perfectly proves exactly what it does,
    making any disagreements with what it does necessarily
    incorrect.

    Apparently you don't understand that inputs to a
    simulating termination analyzer specifying infinite
    recursion or recursive emulation cannot possibly
    reach their own final state and terminate normally.

    It is ridiculously stupid to expect a simulating
    termination analyzer to continue to simulate an
    input that specifies it cannot possibly reach its
    own final state and terminate normally.

    When anyone says that DD emulated by HHH according to
    the semantics of the x86 language can possibly reach
    its own"ret" instruction and terminate normally they are
    conclusively proven wrong.



    Olcott removed the text where I agreed with him. He seems to be stuck in rebuttal mode, so he keeps repeating things about which there is no disagreement.
    Yes, Olcott, HHH correctly reports that it cannot reach the end of the simulation of an input. Exactly the same input with which direct
    execution and world-class simulators have no problem to reach the end.
    What next? Come out of rebuttal mode, otherwise you will never complete
    your find peace.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Sun Mar 9 10:36:05 2025
    Op 09.mrt.2025 om 00:23 schreef olcott:
    On 3/8/2025 4:58 PM, dbush wrote:
    On 3/8/2025 5:42 PM, olcott wrote:
    On 3/8/2025 9:00 AM, dbush wrote:
    On 3/8/2025 9:03 AM, olcott wrote:

    Apparently you don't understand that inputs to a
    simulating termination analyzer specifying infinite
    recursion or recursive emulation cannot possibly
    reach their own final state and terminate normally.

    Apparently you don't understand that inputs to a termination
    analyzer, simulating or otherwise, are specified by the
    specification that is the halting function:

    (<X>,Y) maps to 1 if and only if X(Y) halts when executed directly
    (<X>,Y) maps to 0 if and only if X(Y) does not halt when executed

    And HHH(DD)==0 fails to meet the above specification

    *THIS IS A SEMANTIC TAUTOLOGY THUS IMPOSSIBLY FALSE*
    Replacing the code of HHH with an unconditional simulator and
    subsequently running HHH(DD) cannot possibly reach
    its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.

    It is ridiculously stupid to believe that HHH must
    report on behavior other than the above behavior.


    It must if it is to be classified as a halt decider or termination
    analyzer as per the definition.

    In other words you believe that HHH should just ignore the
    fact that DD makes a call that prevents DD from ever reaching
    its own final state? *THAT IS FREAKING MORONIC*

    Indeed. It is also stupid to try to draw a square circle.
    Why are you trying to create something that has been proven to be
    non-existent?

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Mikko@21:1/5 to olcott on Sun Mar 9 11:36:47 2025
    On 2025-03-08 14:09:58 +0000, olcott said:

    On 3/8/2025 3:06 AM, Mikko wrote:
    On 2025-03-07 15:11:53 +0000, olcott said:

    On 3/7/2025 2:58 AM, Fred. Zwarts wrote:
    Op 07.mrt.2025 om 03:31 schreef olcott:
    On 3/6/2025 6:37 PM, Richard Damon wrote:
    On 3/6/25 3:18 PM, olcott wrote:
    On 3/6/2025 3:20 AM, joes wrote:
    Am Wed, 05 Mar 2025 22:03:39 -0600 schrieb olcott:
    On 3/5/2025 9:57 PM, dbush wrote:
    On 3/5/2025 10:53 PM, olcott wrote:
    On 3/5/2025 9:31 PM, dbush wrote:
    On 3/5/2025 10:17 PM, olcott wrote:
    On 3/5/2025 7:10 PM, dbush wrote:

    In other words, you know that what you're working on has nothing to
    do with the halting problem, but you don't care.

    In other words I WILL NOT TOLERATE ANY BULLSHIT DEFLECTION. >>>>>>>>>>>>> You have proven that you know these things pretty well SO QUIT THE
    SHIT!
    You want people to accept that HHH(DD) does in fact report that >>>>>>>>>>>> changing the code of HHH to an unconditional simulator and running >>>>>>>>>>>> HHH(DD) will not halt.

    DD correctly emulated by HHH cannot possibly reach its own "ret" >>>>>>>>>>> instruction and terminate normally.

    In other words, replacing the code of HHH with an unconditional >>>>>>>>>> simulator and subsequently running HHH(DD) does not halt, which you >>>>>>>>>> previously agreed is correct:
    On 2/22/2025 1:02 PM, olcott wrote:
      > On 2/22/2025 11:10 AM, dbush wrote:
      >> On 2/22/2025 11:43 AM, olcott wrote:
      >>> The first point is DD correctly simulated by HHH cannot possibly
      >>> terminate normally by reaching its own "return" instruction. >>>>>>>>>>   >>
      >> In other words, if the code of HHH is replaced with an >>>>>>>>>>   >> unconditional simulator then it can be shown that DD is >>>>>>>>>>   >> non-halting and therefore HHH(DD)==0 is correct.
      >>
      > Wow finally someone that totally gets it.

    If you disagree, explain why this is different.
    In particular, give an example where X correctly emulated by Y is >>>>>>>>>> different from replacing the code of Y with an unconditional simulator
    and subsequently running Y(X).

    I may not have enough time left to change the subject and endlessly go
    through anything but the exact point.

    You used to have enough time.


    That is before the CAR T cell manufacturing process failed twice. >>>>>>
    Which really means you need to abandon your fraudulent methods

    _DD()
    [00002133] 55         push ebp      ; housekeeping
    [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local >>>>> [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.


    No such HHH exists.
    The programmer of HHH has the following options when HHH reaches the
    call to HHH:

    1) It just follows the call and starts simulating the code of HHH. This >>>> might eventually lead to infinite recursion. So, no correct simulation. >>>>
    The code proves otherwise
    https://github.com/plolcott/x86utm/blob/master/Halt7.c

    A program does not prove. In particular, it does not prove that no
    different program exists.


    The source code 100% perfectly proves exactly what it
    actually does. Whenever anyone disagrees with what it
    actually does (as most people here have tried to get
    away with) they are necessarily incorrect.

    No, it does not. It does not even specify any claim. It only specifies
    a behavior, and much of it only inplicitly. A proof ends with the
    sentence that is proven but the source code does not. Unless you only
    want to clalim tnat }.

    --
    Mikko

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Mikko@21:1/5 to olcott on Sun Mar 9 11:42:17 2025
    On 2025-03-08 22:47:01 +0000, olcott said:

    On 3/8/2025 4:26 PM, dbush wrote:
    On 3/8/2025 11:41 AM, olcott wrote:
    On 3/8/2025 9:01 AM, dbush wrote:
    On 3/8/2025 9:09 AM, olcott wrote:
    On 3/8/2025 3:06 AM, Mikko wrote:
    On 2025-03-07 15:11:53 +0000, olcott said:

    The code proves otherwise
    https://github.com/plolcott/x86utm/blob/master/Halt7.c

    A program does not prove. In particular, it does not prove that no >>>>>> different program exists.


    The source code 100% perfectly proves exactly what it
    actually does.

    The source code contains a finite sequence of truth preserving steps
    between axioms and a statement?

    The source code 100% completely specifies every single detail
    of exactly what it does on each specific input.
    Saying that it does not do this is counter-factual.


    In other words, the source code does not meet the definition of a
    proof, so your claim is false.

    Dumb Bunny:
    *Proof[0] is anything that shows that X is necessarily true*
    *and thus impossibly false*

    The source-code in Halt7.c combined with the input to HHH
    conclusively proves every detail of the behavior of HHH on
    this input. Disagreeing this is either foolish or dishonest.

    A proof does not proove any detail of its own behaviour on any input.
    A proof does not even have any behaviour nor any input.

    --
    Mikko

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Sun Mar 9 10:43:06 2025
    Op 09.mrt.2025 om 05:25 schreef olcott:
    On 3/8/2025 10:16 PM, dbush wrote:
    On 3/8/2025 11:07 PM, olcott wrote:
    On 3/8/2025 9:59 PM, dbush wrote:
    On 3/8/2025 10:53 PM, olcott wrote:
    On 3/8/2025 9:49 PM, dbush wrote:
    On 3/8/2025 10:43 PM, olcott wrote:
    On 3/8/2025 9:35 PM, dbush wrote:

    Your copy-paste answer to multiple threads indicates you have no >>>>>>>> real rebuttal for what others have said.


    *This is all you get from me until this point is fully addressed* >>>>>>>
      <copy-paste response>



    In other words, you have no rebuttal.

    *This is all you get from me until this point is fully addressed*

    *UNTIL YOU FULLY UNDERSTAND THIS YOU CAN'T POSSIBLY UNDERSTAND*
    *THE NEXT STEP THAT ADDRESSES ALL OF THE OTHER ISSUES*

    <copy-paste response>



    Doesn't matter, as you've already accepted that your HHH isn't a
    solution to the halting problem

    *I never said that*

    Yes you did, by making no attempt to explain otherwise:


    *This is all you get from me until this point is fully addressed*
    DD correctly emulated by HHH cannot possibly reach
    its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.

    If that is the only thing you can say, we see that HHH correctly reports
    that it cannot possible reach the 'ret' instruction of its input. An
    input for which direct execution and world-class simulators have no
    problem to reach the end of this finite recursion.
    We agree with that. What next? There is no relationship with a halting
    or termination decider, because they should report about the behaviour
    of the input, not about the behaviour of the simulation.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From joes@21:1/5 to All on Sun Mar 9 09:51:52 2025
    Am Sat, 08 Mar 2025 17:23:41 -0600 schrieb olcott:
    On 3/8/2025 4:58 PM, dbush wrote:
    On 3/8/2025 5:42 PM, olcott wrote:
    On 3/8/2025 9:00 AM, dbush wrote:
    On 3/8/2025 9:03 AM, olcott wrote:

    Apparently you don't understand that inputs to a simulating
    termination analyzer specifying infinite recursion or recursive
    emulation cannot possibly reach their own final state and terminate
    normally.

    Apparently you don't understand that inputs to a termination
    analyzer, simulating or otherwise, are specified by the specification
    that is the halting function:
    (<X>,Y) maps to 1 if and only if X(Y) halts when executed directly
    (<X>,Y) maps to 0 if and only if X(Y) does not halt when executed
    And HHH(DD)==0 fails to meet the above specification

    *THIS IS A SEMANTIC TAUTOLOGY THUS IMPOSSIBLY FALSE* Replacing the
    code of HHH with an unconditional simulator and subsequently running
    HHH(DD) cannot possibly reach its own "ret" instruction and terminate
    normally because DD calls HHH(DD) in recursive emulation.

    But HHH is not an unconditional simulator. It is supposed to break the
    cycle.

    It must if it is to be classified as a halt decider or termination
    analyzer as per the definition.

    In other words you believe that HHH should just ignore the fact that DD
    makes a call that prevents DD from ever reaching its own final state?

    On the contrary, the call to HHH is guaranteed to return.

    Neither HHH nor DD have any idea that DD calls its own emulator in
    recursive emulation.
    None-the-less both HHH and anyone with sufficient technical competence
    can see that DD correctly emulated by HHH cannot possibly reach its own
    final state.
    Not reaching *the* final state (which undoubtedly exists) cannot be
    called a correct simulation.

    --
    Am Sat, 20 Jul 2024 12:35:31 +0000 schrieb WM in sci.math:
    It is not guaranteed that n+1 exists for every n.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Sun Mar 9 10:47:25 2025
    Op 08.mrt.2025 om 18:50 schreef olcott:
    On 3/8/2025 9:46 AM, Fred. Zwarts wrote:
    Op 08.mrt.2025 om 15:03 schreef olcott:
    On 3/8/2025 2:47 AM, Fred. Zwarts wrote:
    Op 08.mrt.2025 om 02:49 schreef olcott:
    On 3/7/2025 10:25 AM, Fred. Zwarts wrote:
    Op 07.mrt.2025 om 16:17 schreef olcott:
    On 3/7/2025 2:59 AM, Fred. Zwarts wrote:
    Op 06.mrt.2025 om 21:13 schreef olcott:
    On 3/6/2025 3:13 AM, Fred. Zwarts wrote:
    Op 06.mrt.2025 om 04:53 schreef olcott:
    On 3/5/2025 9:31 PM, dbush wrote:
    On 3/5/2025 10:17 PM, olcott wrote:
    On 3/5/2025 7:10 PM, dbush wrote:

    In other words, you know that what you're working on has >>>>>>>>>>>>>> nothing to do with the halting problem, but you don't care. >>>>>>>>>>>>>
    In other words I WILL NOT TOLERATE ANY BULLSHIT DEFLECTION. >>>>>>>>>>>>> You have proven that you know these things pretty well SO >>>>>>>>>>>>> QUIT THE SHIT!


    You want people to accept that HHH(DD) does in fact report >>>>>>>>>>>> that changing the code of HHH to an unconditional simulator >>>>>>>>>>>> and running HHH(DD) will not halt.


    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally.

    Yes, we agree that HHH fails to reach the 'ret' instruction, >>>>>>>>>
    Despicably dishonest attempt at the straw-man deception.


    No rebuttal. So, we agree that HHH fails to reach the 'ret'
    instruction.

    Not at all. Trying to get away with changing the subject
    WILL NOT BE TOLERATED.

    If you do not agree that HHH fails to reach the 'ret' instruction
    (that world-class simulators do reach, just as the direct
    execution does), show how it reaches the 'ret' instruction.

    *set X*
    When-so-ever any input to any simulating termination
    analyzer calls the simulator that is simulating itself

    *result of set X*
    this input cannot possibly reach its own final state
    and terminate normally because it remains stuck in
    recursive emulation.


    So, we agree that any simulator that tries to simulate *itself*
    cannot possibly reach the end of its simulation.

    Apparently you don't understand that inputs to a
    simulating termination analyzer specifying infinite
    recursion or recursive emulation cannot possibly
    reach their own final state and terminate normally.

    If we agree, what is the problem?
    We agree that HHH correctly reports that it cannot possibly bring the
    simulation of itself to a correct end.


    Why would we want to use such an analyser that reports that it fails
    to complete the simulation?

    Perhaps you incorrectly expect infinite loops to end?


    Wrong. I understand perfectly that HHH cannot possible reach the end
    of the simulation of itself and it correctly reports that it could not
    complete the simulation.


    DD specifies non-termination.


    Just a dream. No proof.
    HHH correctly reports that it could not reach the 'ret' instruction.
    That is a property of the simulation, not of DD, which terminates as
    proven by direct execution and world-class simulators.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Sun Mar 9 10:51:21 2025
    Op 08.mrt.2025 om 18:52 schreef olcott:
    On 3/8/2025 9:50 AM, Fred. Zwarts wrote:
    Op 08.mrt.2025 om 15:19 schreef olcott:
    On 3/8/2025 2:54 AM, Fred. Zwarts wrote:
    Op 08.mrt.2025 om 02:09 schreef olcott:
    On 3/7/2025 9:33 AM, dbush wrote:
    On 3/7/2025 10:30 AM, olcott wrote:
    On 3/7/2025 9:15 AM, Fred. Zwarts wrote:
    Op 07.mrt.2025 om 15:49 schreef olcott:
    On 3/7/2025 2:02 AM, joes wrote:
    Am Thu, 06 Mar 2025 20:59:49 -0600 schrieb olcott:
    On 3/6/2025 6:37 PM, Richard Damon wrote:
    On 3/6/25 3:16 PM, olcott wrote:
    On 3/6/2025 3:17 AM, Fred. Zwarts wrote:
    Op 06.mrt.2025 om 05:46 schreef olcott:
    On 3/5/2025 5:36 PM, Richard Damon wrote:
    On 3/5/25 4:03 PM, dbush wrote:
    On 3/5/2025 3:55 PM, olcott wrote:
    On 3/5/2025 10:14 AM, joes wrote:
    Am Wed, 05 Mar 2025 08:10:00 -0600 schrieb olcott: >>>>>>>>>>>>>>>>>>>> On 3/5/2025 6:19 AM, Richard Damon wrote: >>>>>>>>>>>>>>>>>>>>> On 3/5/25 12:09 AM, olcott wrote:

    I WILL NOT TOLERATE ANY OTHER ORDER >>>>>>>>>>>>>>>>>>>>> In other words, you CAN'T handle any other order, >>>>>>>>>>>>>>>>>>>>> even though
    logically requried, because you need to hide your >>>>>>>>>>>>>>>>>>>>> fraud.
    My proof requires a specific  prerequisite order. >>>>>>>>>>>>>>>>>>>> One cannot learn algebra before one has learned to >>>>>>>>>>>>>>>>>>>> count to
    ten. DD correctly emulated by HHH cannot possibly >>>>>>>>>>>>>>>>>>>> reach its own
    "ret" instruction and terminate normally. >>>>>>>>>>>>>>>>>>>> Is the first step of the mandatory prerequisite >>>>>>>>>>>>>>>>>>>> order of my
    proof
    What is the next step?
    *DD correctly emulated by HHH cannot possibly reach* >>>>>>>>>>>>>>>>>> *its own "ret" instruction and terminate normally* >>>>>>>>>>>>>>>>>> It has taken two years to create this first step such >>>>>>>>>>>>>>>>>> that it is
    the the simplest way to state the key element of the >>>>>>>>>>>>>>>>>> whole proof
    and make this element impossible to correctly refute. >>>>>>>>>>>>>>>>>> EVERY ATTEMPT TO CHANGE THE SUBJECT AWAY FROM THIS >>>>>>>>>>>>>>>>>> POINT IS
    DISHONEST.
    So what's the next step?

    Before agreeing on an answer, it is first required to >>>>>>>>>>>>>>>>> agree on the
    question.
    Which is the problem, since you don't have the correct >>>>>>>>>>>>>>>> question.
    If HHH is a Halt Decider / Termination analyzer, the >>>>>>>>>>>>>>>> ONLY behavior
    that matters is the behavior of the directly executed >>>>>>>>>>>>>>>> program whose
    description is provided.
    That is a stupid thing to say.
    HHH computes the mapping to a return value on the basis >>>>>>>>>>>>>>> of what its
    finite string INPUT specifies.
    Yes, that is the directly executed program.

    THIS IS WHAT IT SPECIFIES *DD correctly emulated by HHH >>>>>>>>>>>>>>> cannot
    possibly reach its own "ret" instruction and terminate >>>>>>>>>>>>>>> normally*
    No, DD doesn't specify anything about what is to simulate it. >>>>>>>>>>
    Yes, that is what HHH reports: I cannot complete the >>>>>>>>>>>>>> simulation up to
    the end. No more, no less.
    There are easier ways to make a program to report the >>>>>>>>>>>>>> failure of a
    simulation.
    The finite string of DD correctly emulated by HHH specifies >>>>>>>>>>>>> recursive
    emulation that cannot possibly reach its own "ret"
    instruction BECAUSE
    IT SPECIFIES RECURSINVE EMULATION.
    No, HHH aborts.

    But the HHH that decides are returns can't be that HHH, so >>>>>>>>>>>> the DD given
    to that HHH doesn't call the correctly emulating HHH, so you >>>>>>>>>>>> whole
    argument is shown to be the fraud you have admitted to. >>>>>>>>>>> That seems to be a little incoherent so I cannot tell what >>>>>>>>>>> you are
    saying yet you are at least attempting to use reasoning. >>>>>>>>>>> I am just saying what the actual x86 machine code actually >>>>>>>>>>> specifies
    therefore any rebuttal is necessarily incorrect.

    And the actual code of DD specifies that it halts.

    *Straw-man deception*

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.

    Strawman. HHH fails to reach the 'ret' instruction, so HHH fails >>>>>>>> to do a compete simulation.

    Simulating termination analyzer HHH

    So you're saying it maps the halting function?

    (<X>,Y) maps to 1 if and only if X(Y) halts when executed directly >>>>>> (<X>,Y) maps to 0 if and only if X(Y) does not halt when executed
    directly



    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.


    Yes. And what is the advantage of a simulator HHH that reports that
    it cannot possibly complete the simulation of a proven halting
    program up to the end, because it gets stuck in simulating *itself*?

    It is ridiculously stupid to expect a simulating
    termination analyzer to continue to simulate an
    input that specifies it cannot possibly reach its
    own final state and terminate normally.
    Did you read what I said, or are your responses from a random sentence
    selector?
    If we agree, what is the problem?

    DD emulated by HHH proves that IT DOES NOT HALT
    DD emulated by HHH proves that IT DOES NOT HALT
    DD emulated by HHH proves that IT DOES NOT HALT
    DD emulated by HHH proves that IT DOES NOT HALT
    DD emulated by HHH proves that IT DOES NOT HALT
    DD emulated by HHH proves that IT DOES NOT HALT
    DD emulated by HHH proves that IT DOES NOT HALT



    OK, is that the next step? I have seen no proof. How does it relate with
    the previous step?
    How does that relates to: HHH only correctly reports that it cannot
    possibly bring the simulation to an correct end and reach the 'ret' instruction? An end that is there as proven by direct execution and
    world-class simulators.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From joes@21:1/5 to All on Sun Mar 9 09:55:31 2025
    Am Sat, 08 Mar 2025 11:50:56 -0600 schrieb olcott:
    On 3/8/2025 9:46 AM, Fred. Zwarts wrote:
    Op 08.mrt.2025 om 15:03 schreef olcott:
    On 3/8/2025 2:47 AM, Fred. Zwarts wrote:
    Op 08.mrt.2025 om 02:49 schreef olcott:
    On 3/7/2025 10:25 AM, Fred. Zwarts wrote:
    Op 07.mrt.2025 om 16:17 schreef olcott:
    On 3/7/2025 2:59 AM, Fred. Zwarts wrote:
    Op 06.mrt.2025 om 21:13 schreef olcott:
    On 3/6/2025 3:13 AM, Fred. Zwarts wrote:
    Op 06.mrt.2025 om 04:53 schreef olcott:
    On 3/5/2025 9:31 PM, dbush wrote:
    On 3/5/2025 10:17 PM, olcott wrote:
    On 3/5/2025 7:10 PM, dbush wrote:

    Apparently you don't understand that inputs to a simulating
    termination analyzer specifying infinite recursion or recursive
    emulation cannot possibly reach their own final state and terminate
    normally.
    If we agree, what is the problem?
    We agree that HHH correctly reports that it cannot possibly bring the
    simulation of itself to a correct end.

    Yeah, so?

    Why would we want to use such an analyser that reports that it fails
    to complete the simulation?
    Perhaps you incorrectly expect infinite loops to end?
    Wrong. I understand perfectly that HHH cannot possible reach the end of
    the simulation of itself and it correctly reports that it could not
    complete the simulation.
    DD specifies non-termination.
    Now that is just wrong.

    --
    Am Sat, 20 Jul 2024 12:35:31 +0000 schrieb WM in sci.math:
    It is not guaranteed that n+1 exists for every n.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From joes@21:1/5 to All on Sun Mar 9 09:58:40 2025
    Am Sat, 08 Mar 2025 22:45:58 -0600 schrieb olcott:
    On 3/8/2025 10:32 PM, dbush wrote:
    On 3/8/2025 11:25 PM, olcott wrote:
    On 3/8/2025 10:16 PM, dbush wrote:
    On 3/8/2025 11:07 PM, olcott wrote:
    On 3/8/2025 9:59 PM, dbush wrote:
    On 3/8/2025 10:53 PM, olcott wrote:
    On 3/8/2025 9:49 PM, dbush wrote:
    On 3/8/2025 10:43 PM, olcott wrote:
    On 3/8/2025 9:35 PM, dbush wrote:

    Your copy-paste answer to multiple threads indicates you have >>>>>>>>>> no real rebuttal for what others have said.

    *This is all you get from me until this point is fully
    addressed*
      <copy-paste response>

    In other words, you have no rebuttal.

    *This is all you get from me until this point is fully addressed* >>>>>>> *UNTIL YOU FULLY UNDERSTAND THIS YOU CAN'T POSSIBLY UNDERSTAND*
    *THE NEXT STEP THAT ADDRESSES ALL OF THE OTHER ISSUES*
    <copy-paste response>

    Doesn't matter, as you've already accepted that your HHH isn't a
    solution to the halting problem
    *I never said that*
    Yes you did, by making no attempt to explain otherwise:

    *This is all you get from me until this point is fully addressed*
    Replacing the code of HHH with an unconditional simulator and
    subsequently running HHH(DD) cannot possibly reach its own "ret"
    instruction and terminate normally because DD calls HHH(DD) in
    recursive emulation.

    In other words, HHH fails to meet the requirement to be classified as a
    solution to the halting problem, as you have already admitted.
    Erasing and replacing my words with your words is a real scumbag move.
    In other words, you realise you're twisting meanings?

    --
    Am Sat, 20 Jul 2024 12:35:31 +0000 schrieb WM in sci.math:
    It is not guaranteed that n+1 exists for every n.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From joes@21:1/5 to All on Sun Mar 9 09:59:20 2025
    Am Sat, 08 Mar 2025 21:53:16 -0600 schrieb olcott:
    On 3/8/2025 9:49 PM, dbush wrote:
    On 3/8/2025 10:43 PM, olcott wrote:
    On 3/8/2025 9:35 PM, dbush wrote:

    Your copy-paste answer to multiple threads indicates you have no real
    rebuttal for what others have said.

    *This is all you get from me until this point is fully addressed*
      <copy-paste response>

    In other words, you have no rebuttal.

    *This is all you get from me until this point is fully addressed*
    *UNTIL YOU FULLY UNDERSTAND THIS YOU CAN'T POSSIBLY UNDERSTAND* *THE
    NEXT STEP THAT ADDRESSES ALL OF THE OTHER ISSUES*
    What is the next step?

    --
    Am Sat, 20 Jul 2024 12:35:31 +0000 schrieb WM in sci.math:
    It is not guaranteed that n+1 exists for every n.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From joes@21:1/5 to All on Sun Mar 9 10:00:27 2025
    Am Sat, 08 Mar 2025 21:40:12 -0600 schrieb olcott:
    On 3/8/2025 9:24 PM, dbush wrote:
    On 3/8/2025 10:20 PM, olcott wrote:

    *WHEN YOU UNDERSTAND THIS THEN YOU KNOW YOU WERE WRONG* Replacing the
    code of HHH with an unconditional simulator and subsequently running
    HHH(DD) cannot possibly reach its own "ret" instruction and terminate
    normally because DD calls HHH(DD) in recursive emulation.

    HHH is still not unconditional.

    And when that code is not replaced HHH does a partial simulation of a
    computation that halts, as demonstrated by DD halting when executed
    directly.
    That Straw-man deception looks ridiculously stupid when I challenge you
    to provide the line-by-line machine code addresses of DD correctly
    emulated by HHH such that DD reaches its own "ret" instruction and
    terminates normally.
    That's the thing, HHH can't do it.

    --
    Am Sat, 20 Jul 2024 12:35:31 +0000 schrieb WM in sci.math:
    It is not guaranteed that n+1 exists for every n.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From joes@21:1/5 to All on Sun Mar 9 10:02:10 2025
    Am Sat, 08 Mar 2025 20:30:32 -0600 schrieb olcott:
    On 3/8/2025 7:43 PM, dbush wrote:
    On 3/8/2025 8:24 PM, olcott wrote:
    On 3/8/2025 6:56 PM, dbush wrote:
    On 3/8/2025 7:29 PM, olcott wrote:
    On 3/8/2025 5:31 PM, dbush wrote:
    On 3/8/2025 6:23 PM, olcott wrote:
    On 3/8/2025 4:58 PM, dbush wrote:
    On 3/8/2025 5:42 PM, olcott wrote:
    On 3/8/2025 9:00 AM, dbush wrote:
    On 3/8/2025 9:03 AM, olcott wrote:

    Apparently you don't understand that inputs to a simulating >>>>>>>>>>> termination analyzer specifying infinite recursion or
    recursive emulation cannot possibly reach their own final >>>>>>>>>>> state and terminate normally.

    Apparently you don't understand that inputs to a termination >>>>>>>>>> analyzer, simulating or otherwise, are specified by the
    specification that is the halting function:
    (<X>,Y) maps to 1 if and only if X(Y) halts when executed
    directly (<X>,Y) maps to 0 if and only if X(Y) does not halt >>>>>>>>>> when executed
    And HHH(DD)==0 fails to meet the above specification

    *THIS IS A SEMANTIC TAUTOLOGY THUS IMPOSSIBLY FALSE* Replacing >>>>>>>>> the code of HHH with an unconditional simulator and subsequently >>>>>>>>> running HHH(DD) cannot possibly reach its own "ret" instruction >>>>>>>>> and terminate normally because DD calls HHH(DD) in recursive >>>>>>>>> emulation.
    It is ridiculously stupid to believe that HHH must report on >>>>>>>>> behavior other than the above behavior.

    It must if it is to be classified as a halt decider or
    termination analyzer as per the definition.

    In other words you believe that HHH

    Is required to map the halting function to meet the requirements to >>>>>> be a halt decider / termination analyzer.

    HHH must map from the input finite string DD to the behavior that
    this finite string specifies

    And what it specifies, to be considered a solution to the halting
    problem, is given by the specification:
    Given any algorithm (i.e. a fixed immutable sequence of instructions)
    X described as <X> with input Y:
    A solution to the halting problem is an algorithm H that computes the
    following mapping:
    (<X>,Y) maps to 1 if and only if X(Y) halts when executed directly
    (<X>,Y) maps to 0 if and only if X(Y) does not halt when executed

    In the same way that Sum(5,3) == 9 That is misconception is very
    widely held does not make it not a misconception.

    In other words, you have no rebuttal to the fact that HHH doesn't meet
    the requirements to be a solution to the halting problem.

    If the halting problem actually requires that the "decider"
    report on behavior other than what the input specifies then its notion
    of a halting decider is not even a decider in computer science.
    Such as your HHH simulating not itself, but *what it would do if it
    were unconditional*

    --
    Am Sat, 20 Jul 2024 12:35:31 +0000 schrieb WM in sci.math:
    It is not guaranteed that n+1 exists for every n.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From joes@21:1/5 to All on Sun Mar 9 10:06:17 2025
    Am Sat, 08 Mar 2025 17:47:24 -0600 schrieb olcott:
    On 3/8/2025 5:12 PM, Richard Damon wrote:
    On 3/8/25 9:37 AM, olcott wrote:
    On 3/8/2025 3:07 AM, Mikko wrote:
    On 2025-03-07 15:28:38 +0000, olcott said:
    On 3/7/2025 6:32 AM, Richard Damon wrote:
    On 3/6/25 9:31 PM, olcott wrote:
    On 3/6/2025 6:37 PM, Richard Damon wrote:
    On 3/6/25 3:18 PM, olcott wrote:
    On 3/6/2025 3:20 AM, joes wrote:

    DD correctly emulated by HHH cannot possibly reach its own "ret" >>>>>>> instruction and terminate normally because DD calls HHH(DD) in
    recursive emulation.
    No,
    You could show the machine-address by machine-address correct
    execution trace if i was wrong. You only dodge this because you k ow >>>>> that I am correct.

    One cannot show the correct trace of an incorrect program.

    Using ad hominem instead of reasoning makes you look very foolish.
    No ad hominem above.
    hehe

    Persistently falling go show the line-by-line execution trace of the
    correct emulation that would prove that the emulation by HHH is
    incorrect
    BECAUSE YOU ALREADY KNOW THAT THE EXECUTION TRACE BY HHH IS CORRECT!!!

    The line-by-line emulation of the equivalemt program has been posted,
    and was even posted by you.

    HHH(DD) is not equivalent to HHH1(DD) and you know that you are lying
    about this because you know that with HHH(DD) DD calls its own emulator
    in recursive emulation and with HHH1(DD) DD DOES NOT CALL HHH1.
    Exactly, and HHH is really not simulating itself but rather DD's call to
    HHH1, changing DD's behaviour.

    --
    Am Sat, 20 Jul 2024 12:35:31 +0000 schrieb WM in sci.math:
    It is not guaranteed that n+1 exists for every n.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From joes@21:1/5 to All on Sun Mar 9 10:10:23 2025
    Am Sat, 08 Mar 2025 19:19:02 -0600 schrieb olcott:
    On 3/8/2025 6:54 PM, dbush wrote:
    On 3/8/2025 7:10 PM, olcott wrote:
    On 3/8/2025 5:54 PM, dbush wrote:
    On 3/8/2025 6:41 PM, olcott wrote:
    On 3/8/2025 5:11 PM, Richard Damon wrote:
    On 3/8/25 9:09 AM, olcott wrote:
    On 3/8/2025 3:06 AM, Mikko wrote:
    On 2025-03-07 15:11:53 +0000, olcott said:
    On 3/7/2025 2:58 AM, Fred. Zwarts wrote:
    Op 07.mrt.2025 om 03:31 schreef olcott:
    On 3/6/2025 6:37 PM, Richard Damon wrote:
    On 3/6/25 3:18 PM, olcott wrote:
    On 3/6/2025 3:20 AM, joes wrote:

    DD correctly emulated by HHH cannot possibly reach its own >>>>>>>>>>> "ret" instruction and terminate normally because DD calls >>>>>>>>>>> HHH(DD) in recursive emulation.

    No such HHH exists.
    The programmer of HHH has the following options when HHH
    reaches the call to HHH:
    1) It just follows the call and starts simulating the code of >>>>>>>>>> HHH. This might eventually lead to infinite recursion. So, no >>>>>>>>>> correct simulation.

    The code proves otherwise
    https://github.com/plolcott/x86utm/blob/master/Halt7.c


    A program does not prove. In particular, it does not prove that >>>>>>>> no different program exists.
    The source code 100% perfectly proves exactly what it actually
    does. Whenever anyone disagrees with what it actually does (as
    most people here have tried to get away with) they are necessarily >>>>>>> incorrect.
    Which is that HHH will look at memory not defined to be part of its >>>>>> input, and thus HHH is not the pure function you have agreed it
    must be.
    THIS IS A SEMANTIC TAUTOLOGY AGREE OR STFU !!!
    Replacing the code of HHH with an unconditional simulator and
    subsequently running HHH(DD)  cannot possibly reach its own final
    state and terminate normally.
    Why change the input though?

    Two people with masters degrees in computer science agreed.
    Gaslighting me on this makes you look like a complete nitwit.
    I think everyone would agree, as you said, that if the code of HHH is
    replaced with an unconditional simulator and HHH(DD) is run, that it
    will not halt. So now what?
    We add the mandatory required details to your simplistic idea such
    that additional elaboration from this full set of details:
    Replacing the code of HHH with an unconditional simulator and
    subsequently running HHH(DD) cannot possibly reach its own "ret"
    instruction and terminate normally because DD calls HHH(DD) in
    recursive emulation.
    Obviously.  So now what?

    You still don't understand that we get the same effect whether we
    replace the code or not.
    That's not true. HHH and HHH1 behave differently.

    --
    Am Sat, 20 Jul 2024 12:35:31 +0000 schrieb WM in sci.math:
    It is not guaranteed that n+1 exists for every n.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Richard Damon@21:1/5 to olcott on Sun Mar 9 07:17:51 2025
    On 3/8/25 10:28 PM, olcott wrote:
    On 3/8/2025 9:03 PM, Richard Damon wrote:
    On 3/8/25 6:41 PM, olcott wrote:
    On 3/8/2025 5:11 PM, Richard Damon wrote:
    On 3/8/25 9:09 AM, olcott wrote:
    On 3/8/2025 3:06 AM, Mikko wrote:
    On 2025-03-07 15:11:53 +0000, olcott said:

    On 3/7/2025 2:58 AM, Fred. Zwarts wrote:
    Op 07.mrt.2025 om 03:31 schreef olcott:
    On 3/6/2025 6:37 PM, Richard Damon wrote:
    On 3/6/25 3:18 PM, olcott wrote:
    On 3/6/2025 3:20 AM, joes wrote:
    Am Wed, 05 Mar 2025 22:03:39 -0600 schrieb olcott:
    On 3/5/2025 9:57 PM, dbush wrote:
    On 3/5/2025 10:53 PM, olcott wrote:
    On 3/5/2025 9:31 PM, dbush wrote:
    On 3/5/2025 10:17 PM, olcott wrote:
    On 3/5/2025 7:10 PM, dbush wrote:

    In other words, you know that what you're working on >>>>>>>>>>>>>>>>>> has nothing to
    do with the halting problem, but you don't care. >>>>>>>>>>>>>>>>>
    In other words I WILL NOT TOLERATE ANY BULLSHIT >>>>>>>>>>>>>>>>> DEFLECTION.
    You have proven that you know these things pretty well >>>>>>>>>>>>>>>>> SO QUIT THE
    SHIT!
    You want people to accept that HHH(DD) does in fact >>>>>>>>>>>>>>>> report that
    changing the code of HHH to an unconditional simulator >>>>>>>>>>>>>>>> and running
    HHH(DD) will not halt.

    DD correctly emulated by HHH cannot possibly reach its >>>>>>>>>>>>>>> own "ret"
    instruction and terminate normally.

    In other words, replacing the code of HHH with an
    unconditional
    simulator and subsequently running HHH(DD) does not halt, >>>>>>>>>>>>>> which you
    previously agreed is correct:
    On 2/22/2025 1:02 PM, olcott wrote:
      > On 2/22/2025 11:10 AM, dbush wrote:
      >> On 2/22/2025 11:43 AM, olcott wrote:
      >>> The first point is DD correctly simulated by HHH >>>>>>>>>>>>>> cannot possibly
      >>> terminate normally by reaching its own "return" >>>>>>>>>>>>>> instruction.
      >>
      >> In other words, if the code of HHH is replaced with an >>>>>>>>>>>>>>   >> unconditional simulator then it can be shown that DD is >>>>>>>>>>>>>>   >> non-halting and therefore HHH(DD)==0 is correct. >>>>>>>>>>>>>>   >>
      > Wow finally someone that totally gets it.

    If you disagree, explain why this is different.
    In particular, give an example where X correctly emulated >>>>>>>>>>>>>> by Y is
    different from replacing the code of Y with an
    unconditional simulator
    and subsequently running Y(X).

    I may not have enough time left to change the subject and >>>>>>>>>>>>> endlessly go
    through anything but the exact point.

    You used to have enough time.


    That is before the CAR T cell manufacturing process failed >>>>>>>>>>> twice.

    Which really means you need to abandon your fraudulent methods >>>>>>>>>
    _DD()
    [00002133] 55         push ebp      ; housekeeping >>>>>>>>> [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local
    [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.


    No such HHH exists.
    The programmer of HHH has the following options when HHH reaches >>>>>>>> the call to HHH:

    1) It just follows the call and starts simulating the code of
    HHH. This might eventually lead to infinite recursion. So, no
    correct simulation.

    The code proves otherwise
    https://github.com/plolcott/x86utm/blob/master/Halt7.c

    A program does not prove. In particular, it does not prove that no >>>>>> different program exists.


    The source code 100% perfectly proves exactly what it
    actually does. Whenever anyone disagrees with what it
    actually does (as most people here have tried to get
    away with) they are necessarily incorrect.


    Which is that HHH will look at memory not defined to be part of its
    input, and thus HHH is not the pure function you have agreed it must
    be.



    THIS IS A SEMANTIC TAUTOLOGY AGREE OR STFU !!!
    DD correctly emulated by HHH  cannot possibly
    reach its own final state and terminate normally.

    Right, but that "TAUTOLOGY" also is about an HHH that isn't the one
    that we have in the problem,

    *WHEN YOU UNDERSTAND THIS THEN YOU KNOW YOU WERE WRONG*
    DD correctly emulated by HHH cannot possibly reach
    its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.

    Which is just irrelevent, as your HHH that answer has been proven to not "Correctly Emulate" its input by the meaning of the term-of-art.

    Of course, the fact that you have admotted that your whole ideas are
    based on the fraud that you can change the meanings of the words and
    still be in the system just shows that you are too stupid to understand
    how logic works.


    and thus isn't actually a real tautology, but a fictional one.


    You have no clue that semantic tautology is any
    expression of language that proves itself completely
    true and thus impossibly false entirely on the basis
    of its meaning.


    Not in Formal Logic. And not even in your correct reasoning. After all,
    I thought truth requied things to derive from a truth-maker? Or does
    that only apply to things you want to say are incorrect.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From joes@21:1/5 to All on Sun Mar 9 15:48:26 2025
    Am Sun, 09 Mar 2025 09:37:12 -0500 schrieb olcott:
    On 3/9/2025 9:28 AM, dbush wrote:
    On 3/9/2025 10:26 AM, olcott wrote:
    On 3/9/2025 9:11 AM, dbush wrote:
    On 3/9/2025 10:08 AM, olcott wrote:
    On 3/9/2025 8:50 AM, dbush wrote:

    When we assume that HHH emulates N steps of DD then
    *DD correctly emulated by HHH cannot possibly reach*
    *its own "ret" instruction and terminate normally*
    *because DD calls HHH(DD) in recursive emulation*
    I am not going to address any other point until this point is fully
    understood because the other points cannot possibly be understood
    until this one is totally understood.
    Whether or not and how it applies to the Halting Theorem cannot
    possibly be understood at all until after the above words are 100%
    totally and perfectly understood.

    It is stipulated that a solution to the halting problem perform the
    following mapping:
    (<X>,Y) maps to 1 if and only if X(Y) halts when executed directly
    (<X>,Y) maps to 0 if and only if X(Y) does not halt when executed
    directly

    If you went to play head games you can play by yourself.
    In other words, you're disagreeing with a stipulative definition.
    As you yourself said:

    You cannot possibly understand anything that I say about that until you
    after you first understand this:
    [spam]
    Oh really? I do understand what you mean. What's next? Or do you have
    nothing?

    --
    Am Sat, 20 Jul 2024 12:35:31 +0000 schrieb WM in sci.math:
    It is not guaranteed that n+1 exists for every n.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Richard Damon@21:1/5 to olcott on Sun Mar 9 15:24:36 2025
    On 3/9/25 11:58 AM, olcott wrote:
    On 3/9/2025 10:48 AM, joes wrote:
    Am Sun, 09 Mar 2025 09:37:12 -0500 schrieb olcott:
    On 3/9/2025 9:28 AM, dbush wrote:
    On 3/9/2025 10:26 AM, olcott wrote:
    On 3/9/2025 9:11 AM, dbush wrote:
    On 3/9/2025 10:08 AM, olcott wrote:
    On 3/9/2025 8:50 AM, dbush wrote:

    When we assume that HHH emulates N steps of DD then
    *DD correctly emulated by HHH cannot possibly reach*
    *its own "ret" instruction and terminate normally*
    *because DD calls HHH(DD) in recursive emulation*
    I am not going to address any other point until this point is fully >>>>>>> understood because the other points cannot possibly be understood >>>>>>> until this one is totally understood.
    Whether or not and how it applies to the Halting Theorem cannot
    possibly be understood at all until after the above words are 100% >>>>>>> totally and perfectly understood.

    It is stipulated that a solution to the halting problem perform the >>>>>> following mapping:
    (<X>,Y) maps to 1 if and only if X(Y) halts when executed directly >>>>>> (<X>,Y) maps to 0 if and only if X(Y) does not halt when executed
    directly

    If you went to play head games you can play by yourself.
    In other words, you're disagreeing with a stipulative definition.
    As you yourself said:

    You cannot possibly understand anything that I say about that until you
    after you first understand this:
    [spam]
    Oh really? I do understand what you mean. What's next? Or do you have
    nothing?


    If you totally understood what I mean you would
    not have given me such a hard time about it.

    When we assume that HHH emulates N steps of DD then
    DD correctly emulated by HHH cannot possibly reach
    its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.

    If you do not agree that HHH it correct to reject
    DD as non-terminating then you do not understand.


    And thus NOTHING You say has anything to do with the Halting Problem and
    is just part of your giant fraud based on lying about working in the
    system becuase you have admitted that you have changed core defintions,
    and thus everything you have done is just a lying fraud.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Richard Damon@21:1/5 to olcott on Sun Mar 9 17:43:03 2025
    On 3/9/25 3:36 PM, olcott wrote:
    On 3/9/2025 2:24 PM, Richard Damon wrote:
    On 3/9/25 9:25 AM, olcott wrote:
    On 3/9/2025 6:17 AM, Richard Damon wrote:
    On 3/8/25 10:24 PM, olcott wrote:
    On 3/8/2025 9:03 PM, Richard Damon wrote:
    On 3/8/25 6:30 PM, olcott wrote:
    On 3/8/2025 5:01 PM, dbush wrote:
    On 3/8/2025 5:47 PM, olcott wrote:
    On 3/8/2025 4:26 PM, dbush wrote:
    On 3/8/2025 11:41 AM, olcott wrote:
    On 3/8/2025 9:01 AM, dbush wrote:
    On 3/8/2025 9:09 AM, olcott wrote:
    On 3/8/2025 3:06 AM, Mikko wrote:
    On 2025-03-07 15:11:53 +0000, olcott said:

    The code proves otherwise
    https://github.com/plolcott/x86utm/blob/master/Halt7.c >>>>>>>>>>>>>>
    A program does not prove. In particular, it does not prove >>>>>>>>>>>>>> that no
    different program exists.


    The source code 100% perfectly proves exactly what it >>>>>>>>>>>>> actually does.

    The source code contains a finite sequence of truth
    preserving steps between axioms and a statement?

    The source code 100% completely specifies every single detail >>>>>>>>>>> of exactly what it does on each specific input.
    Saying that it does not do this is counter-factual.


    In other words, the source code does not meet the definition >>>>>>>>>> of a proof, so your claim is false.

    Dumb Bunny:
    *Proof[0] is anything that shows that X is necessarily true* >>>>>>>>> *and thus impossibly false*

    The source-code in Halt7.c combined with the input to HHH
    conclusively proves every detail of the behavior of HHH on
    this input. Disagreeing this is either foolish or dishonest. >>>>>>>>>

    A proof is a finite sequence of truth preserving steps between >>>>>>>> the axioms of a system and a true statement that show the
    statement is true.


    Proof[math] tries unsuccessfully to inherit from proof[0].
    I am stipulating that I have always been referring to proof[0].

    And I am pointing out that it IS the same, it is just that you
    don't understand that "Show" implies FINITE.


    In that single aspect you are correct.
    Show that X is definitely true and thus impossibly false
    by any means what-so-ever is not proof[math].

    or proof[0], since you can not SHOW something "by any means" if
    those means are not showable due to not being finite.


    You are just proving your stupidity by repeating your disproved
    claim.


    If you cannot understand the Halt7.c conclusively proves[0]
    the actual behavior of HHH(DD) this is merely your lack of
    understanding and nothing more.



    Sure I can understand what it does, as Halt7.c shows that the
    behavior of the input is to HALT since that is what DD will do
    when main calls it.


    *WHEN YOU UNDERSTAND THIS THEN YOU KNOW YOU WERE WRONG*
    DD correctly emulated by HHH cannot possibly reach
    its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.



    But The HHH You are talking about doesn't do a correct simulation,
    so this statment is not applicable.



    _DD()
    [00002133] 55         push ebp      ; housekeeping
    [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local
    [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    WHich is *NOT* a program, as it has an external reference.


    *When we assume that HHH emulates N steps of DD then*

    DD correctly emulated by HHH cannot possibly reach
    its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.

    Wrong, because emulaiting for "N Steps" is NOT correctly emulation.


    Correctly emulating N steps is emulating N steps correctly.

    Which is only partially emulating it correctly, and only partially
    correct is incorrect.


    Everyone here that has sufficient technical competence can
    see that for any N steps of DD correctly emulated by HHH
    that DD cannot possibly reach its own final state and
    terminate normally.



    So? As has been pointed out, since HHH can't do enough steps to get to
    the actual answer, it never CORRECTLY emulated the input enough to get
    the answer if it aborts.

    Your problem is you ADMITTED that you logic is just a FRAUD becasue your definitions are just STRAWMEN becaus you have INCORRECTLY changed the definitions of some of the core definitions (which can not be changed at
    all).

    Thus, you have admitted that you are just a pathetic liar that doesn't
    hae a leg to stand on.

    Go on, try to prove your claims under the real definitions.

    You need to start with fixing DD, since it isn't even a program, so you
    started with a strawman.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Richard Damon@21:1/5 to olcott on Sun Mar 9 21:57:59 2025
    On 3/9/25 6:32 PM, olcott wrote:
    On 3/9/2025 4:43 PM, Richard Damon wrote:
    On 3/9/25 3:36 PM, olcott wrote:
    On 3/9/2025 2:24 PM, Richard Damon wrote:
    On 3/9/25 9:25 AM, olcott wrote:
    On 3/9/2025 6:17 AM, Richard Damon wrote:
    On 3/8/25 10:24 PM, olcott wrote:
    On 3/8/2025 9:03 PM, Richard Damon wrote:
    On 3/8/25 6:30 PM, olcott wrote:
    On 3/8/2025 5:01 PM, dbush wrote:
    On 3/8/2025 5:47 PM, olcott wrote:
    On 3/8/2025 4:26 PM, dbush wrote:
    On 3/8/2025 11:41 AM, olcott wrote:
    On 3/8/2025 9:01 AM, dbush wrote:
    On 3/8/2025 9:09 AM, olcott wrote:
    On 3/8/2025 3:06 AM, Mikko wrote:
    On 2025-03-07 15:11:53 +0000, olcott said:

    The code proves otherwise
    https://github.com/plolcott/x86utm/blob/master/Halt7.c >>>>>>>>>>>>>>>>
    A program does not prove. In particular, it does not >>>>>>>>>>>>>>>> prove that no
    different program exists.


    The source code 100% perfectly proves exactly what it >>>>>>>>>>>>>>> actually does.

    The source code contains a finite sequence of truth >>>>>>>>>>>>>> preserving steps between axioms and a statement?

    The source code 100% completely specifies every single detail >>>>>>>>>>>>> of exactly what it does on each specific input.
    Saying that it does not do this is counter-factual.


    In other words, the source code does not meet the definition >>>>>>>>>>>> of a proof, so your claim is false.

    Dumb Bunny:
    *Proof[0] is anything that shows that X is necessarily true* >>>>>>>>>>> *and thus impossibly false*

    The source-code in Halt7.c combined with the input to HHH >>>>>>>>>>> conclusively proves every detail of the behavior of HHH on >>>>>>>>>>> this input. Disagreeing this is either foolish or dishonest. >>>>>>>>>>>

    A proof is a finite sequence of truth preserving steps between >>>>>>>>>> the axioms of a system and a true statement that show the
    statement is true.


    Proof[math] tries unsuccessfully to inherit from proof[0].
    I am stipulating that I have always been referring to proof[0]. >>>>>>>>
    And I am pointing out that it IS the same, it is just that you >>>>>>>> don't understand that "Show" implies FINITE.


    In that single aspect you are correct.
    Show that X is definitely true and thus impossibly false
    by any means what-so-ever is not proof[math].

    or proof[0], since you can not SHOW something "by any means" if
    those means are not showable due to not being finite.


    You are just proving your stupidity by repeating your disproved >>>>>>>> claim.


    If you cannot understand the Halt7.c conclusively proves[0]
    the actual behavior of HHH(DD) this is merely your lack of
    understanding and nothing more.



    Sure I can understand what it does, as Halt7.c shows that the
    behavior of the input is to HALT since that is what DD will do >>>>>>>> when main calls it.


    *WHEN YOU UNDERSTAND THIS THEN YOU KNOW YOU WERE WRONG*
    DD correctly emulated by HHH cannot possibly reach
    its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.



    But The HHH You are talking about doesn't do a correct simulation, >>>>>> so this statment is not applicable.



    _DD()
    [00002133] 55         push ebp      ; housekeeping
    [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local >>>>> [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    WHich is *NOT* a program, as it has an external reference.


    *When we assume that HHH emulates N steps of DD then*

    DD correctly emulated by HHH cannot possibly reach
    its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.

    Wrong, because emulaiting for "N Steps" is NOT correctly emulation.


    Correctly emulating N steps is emulating N steps correctly.

    Which is only partially emulating it correctly, and only partially
    correct is incorrect.


    Everyone here that has sufficient technical competence can
    see that for any N steps of DD correctly emulated by HHH
    that DD cannot possibly reach its own final state and
    terminate normally.



    So? As has been pointed out, since HHH can't do enough steps to get to
    the actual answer, it never CORRECTLY emulated the input enough to get
    the answer if it aborts.


    If HHH can see the same pattern that every competent
    programmer sees then HHH does not need to emulate DD
    more than twice to know that HHH cannot possibly reach
    its own final state and terminate normally.



    The pattern that HHH sees is IDENTICAL to the pattern that HHH1 saw, up
    to the point it aborts.

    Since HHH1 can continue the simulation to the point of reaching the
    return, it is just a falacy to say the correct simulation must never return,

    Note, your argument makes several errors, that you admit to, you just
    don't understand they are errors, the fact that you ignore them just
    shows you know you don't have a way to answer them.

    Some of the errors:

    You DD, and your HHH do not meet the definition of a PROGRAM per the
    fields term of art, as a program must include all of the code it uses,
    and uses as its data, ONLY the contents of its input, and built in data constants.

    Your DD does not include the code for the HHH that it calls, or your hypothetical case would not change the HHH that it uses, as it was
    previously defined as part of the code of DD.

    HHH is not a program, as it needs to look outside of the input to see
    what is at the location the call HHH refers to.

    Your claim that the context changes the behavior of the program ends up
    being based on the fact that your idea of "context" is to allow changing
    what the input actually is, which is a violation of the terms.

    The definition of "Correct Simulation" in Computation theory only
    include COMPLETE Simulation, which the HHH that answers doesn't do.

    Sorry, until you fix you errors, you are just shows to be a DELIBERATE
    FRAUD and nothing you say has any meaning in the field, as you have
    admitted to not using the language of the field, but your own lies.

    This shows that you don't actually understand how logic works.


    Notice how I make detailed responces pointing out factual details that
    anyone can verify, while your arguement is based on generic claims
    without details that just appeal to some unknowable athority that you
    claim agrees with you.

    Sorry, you are just proving you don't know logic.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Mikko@21:1/5 to olcott on Mon Mar 10 10:59:47 2025
    On 2025-03-09 13:16:20 +0000, olcott said:

    On 3/9/2025 4:36 AM, Mikko wrote:
    On 2025-03-08 14:09:58 +0000, olcott said:

    On 3/8/2025 3:06 AM, Mikko wrote:
    On 2025-03-07 15:11:53 +0000, olcott said:

    On 3/7/2025 2:58 AM, Fred. Zwarts wrote:
    Op 07.mrt.2025 om 03:31 schreef olcott:
    On 3/6/2025 6:37 PM, Richard Damon wrote:
    On 3/6/25 3:18 PM, olcott wrote:
    On 3/6/2025 3:20 AM, joes wrote:
    Am Wed, 05 Mar 2025 22:03:39 -0600 schrieb olcott:
    On 3/5/2025 9:57 PM, dbush wrote:
    On 3/5/2025 10:53 PM, olcott wrote:
    On 3/5/2025 9:31 PM, dbush wrote:
    On 3/5/2025 10:17 PM, olcott wrote:
    On 3/5/2025 7:10 PM, dbush wrote:

    In other words, you know that what you're working on has nothing to
    do with the halting problem, but you don't care. >>>>>>>>>>>>>>>
    In other words I WILL NOT TOLERATE ANY BULLSHIT DEFLECTION. >>>>>>>>>>>>>>> You have proven that you know these things pretty well SO QUIT THE
    SHIT!
    You want people to accept that HHH(DD) does in fact report that >>>>>>>>>>>>>> changing the code of HHH to an unconditional simulator and running
    HHH(DD) will not halt.

    DD correctly emulated by HHH cannot possibly reach its own "ret" >>>>>>>>>>>>> instruction and terminate normally.

    In other words, replacing the code of HHH with an unconditional >>>>>>>>>>>> simulator and subsequently running HHH(DD) does not halt, which you
    previously agreed is correct:
    On 2/22/2025 1:02 PM, olcott wrote:
      > On 2/22/2025 11:10 AM, dbush wrote:
      >> On 2/22/2025 11:43 AM, olcott wrote:
      >>> The first point is DD correctly simulated by HHH cannot possibly
      >>> terminate normally by reaching its own "return" instruction.
      >>
      >> In other words, if the code of HHH is replaced with an >>>>>>>>>>>>   >> unconditional simulator then it can be shown that DD is >>>>>>>>>>>>   >> non-halting and therefore HHH(DD)==0 is correct. >>>>>>>>>>>>   >>
      > Wow finally someone that totally gets it.

    If you disagree, explain why this is different.
    In particular, give an example where X correctly emulated by Y is >>>>>>>>>>>> different from replacing the code of Y with an unconditional simulator
    and subsequently running Y(X).

    I may not have enough time left to change the subject and endlessly go
    through anything but the exact point.

    You used to have enough time.


    That is before the CAR T cell manufacturing process failed twice. >>>>>>>>
    Which really means you need to abandon your fraudulent methods

    _DD()
    [00002133] 55         push ebp      ; housekeeping
    [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local >>>>>>> [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.


    No such HHH exists.
    The programmer of HHH has the following options when HHH reaches the >>>>>> call to HHH:

    1) It just follows the call and starts simulating the code of HHH. This >>>>>> might eventually lead to infinite recursion. So, no correct simulation. >>>>>>
    The code proves otherwise
    https://github.com/plolcott/x86utm/blob/master/Halt7.c

    A program does not prove. In particular, it does not prove that no
    different program exists.


    The source code 100% perfectly proves exactly what it
    actually does. Whenever anyone disagrees with what it
    actually does (as most people here have tried to get
    away with) they are necessarily incorrect.

    No, it does not. It does not even specify any claim. It only specifies
    a behavior, and much of it only inplicitly. A proof ends with the
    sentence that is proven but the source code does not. Unless you only
    want to clalim tnat }.

    _DD()
    [00002133] 55 push ebp ; housekeeping
    [00002134] 8bec mov ebp,esp ; housekeeping
    [00002136] 51 push ecx ; make space for local
    [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404 add esp,+04
    [00002144] 8945fc mov [ebp-04],eax
    [00002147] 837dfc00 cmp dword [ebp-04],+00
    [0000214b] 7402 jz 0000214f
    [0000214d] ebfe jmp 0000214d
    [0000214f] 8b45fc mov eax,[ebp-04]
    [00002152] 8be5 mov esp,ebp
    [00002154] 5d pop ebp
    [00002155] c3 ret
    Size in bytes:(0035) [00002155]

    When we assume that HHH emulates N steps of DD then

    HHH does not present that assumption, which is therefore irrelevant
    to the fact that https://github.com/plolcott/x86utm/blob/master/Halt7.c
    does not prove anything.

    --
    Mikko

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Mon Mar 10 10:14:59 2025
    Op 09.mrt.2025 om 14:11 schreef olcott:
    On 3/9/2025 4:05 AM, Fred. Zwarts wrote:
    Op 08.mrt.2025 om 18:47 schreef olcott:
    On 3/8/2025 9:41 AM, Fred. Zwarts wrote:
    Op 08.mrt.2025 om 15:09 schreef olcott:
    On 3/8/2025 3:06 AM, Mikko wrote:
    On 2025-03-07 15:11:53 +0000, olcott said:



    _DD()
    [00002133] 55         push ebp      ; housekeeping
    [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly reach
    its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.


    Why repeating things we agree with? We agree that HHH correctly reports
    that it cannot possibly complete the simulation to its end. An end that
    exists as proven by direct execution and world-class simulators of
    exactly the same finite string as input.
    So, what next.


    The source code 100% perfectly proves exactly what it
    actually does.
    Yes, even if there are error in the program, it does what it does.

    There is no error.


    That is a claim, not a proof. Many errors have been pointed out, but
    the program was not corrected. Without a proof of correctness, a
    program does not prove anything.

    All the reported "errors" are only your failure  to understand the code.


    The inability to point to a misunderstanding is no rebuttal. It is even
    less a proof of correctness of the program.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Mon Mar 10 10:20:24 2025
    Op 09.mrt.2025 om 14:16 schreef olcott:
    On 3/9/2025 4:36 AM, Mikko wrote:
    On 2025-03-08 14:09:58 +0000, olcott said:

    On 3/8/2025 3:06 AM, Mikko wrote:
    On 2025-03-07 15:11:53 +0000, olcott said:

    On 3/7/2025 2:58 AM, Fred. Zwarts wrote:
    Op 07.mrt.2025 om 03:31 schreef olcott:
    On 3/6/2025 6:37 PM, Richard Damon wrote:
    On 3/6/25 3:18 PM, olcott wrote:
    On 3/6/2025 3:20 AM, joes wrote:
    Am Wed, 05 Mar 2025 22:03:39 -0600 schrieb olcott:
    On 3/5/2025 9:57 PM, dbush wrote:
    On 3/5/2025 10:53 PM, olcott wrote:
    On 3/5/2025 9:31 PM, dbush wrote:
    On 3/5/2025 10:17 PM, olcott wrote:
    On 3/5/2025 7:10 PM, dbush wrote:

    In other words, you know that what you're working on has >>>>>>>>>>>>>>>> nothing to
    do with the halting problem, but you don't care. >>>>>>>>>>>>>>>
    In other words I WILL NOT TOLERATE ANY BULLSHIT DEFLECTION. >>>>>>>>>>>>>>> You have proven that you know these things pretty well SO >>>>>>>>>>>>>>> QUIT THE
    SHIT!
    You want people to accept that HHH(DD) does in fact report >>>>>>>>>>>>>> that
    changing the code of HHH to an unconditional simulator and >>>>>>>>>>>>>> running
    HHH(DD) will not halt.

    DD correctly emulated by HHH cannot possibly reach its own >>>>>>>>>>>>> "ret"
    instruction and terminate normally.

    In other words, replacing the code of HHH with an unconditional >>>>>>>>>>>> simulator and subsequently running HHH(DD) does not halt, >>>>>>>>>>>> which you
    previously agreed is correct:
    On 2/22/2025 1:02 PM, olcott wrote:
      > On 2/22/2025 11:10 AM, dbush wrote:
      >> On 2/22/2025 11:43 AM, olcott wrote:
      >>> The first point is DD correctly simulated by HHH >>>>>>>>>>>> cannot possibly
      >>> terminate normally by reaching its own "return" >>>>>>>>>>>> instruction.
      >>
      >> In other words, if the code of HHH is replaced with an >>>>>>>>>>>>   >> unconditional simulator then it can be shown that DD is >>>>>>>>>>>>   >> non-halting and therefore HHH(DD)==0 is correct. >>>>>>>>>>>>   >>
      > Wow finally someone that totally gets it.

    If you disagree, explain why this is different.
    In particular, give an example where X correctly emulated by >>>>>>>>>>>> Y is
    different from replacing the code of Y with an unconditional >>>>>>>>>>>> simulator
    and subsequently running Y(X).

    I may not have enough time left to change the subject and >>>>>>>>>>> endlessly go
    through anything but the exact point.

    You used to have enough time.


    That is before the CAR T cell manufacturing process failed twice. >>>>>>>>
    Which really means you need to abandon your fraudulent methods

    _DD()
    [00002133] 55         push ebp      ; housekeeping
    [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local >>>>>>> [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly
    reach its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.


    No such HHH exists.
    The programmer of HHH has the following options when HHH reaches
    the call to HHH:

    1) It just follows the call and starts simulating the code of HHH. >>>>>> This might eventually lead to infinite recursion. So, no correct
    simulation.

    The code proves otherwise
    https://github.com/plolcott/x86utm/blob/master/Halt7.c

    A program does not prove. In particular, it does not prove that no
    different program exists.


    The source code 100% perfectly proves exactly what it
    actually does. Whenever anyone disagrees with what it
    actually does (as most people here have tried to get
    away with) they are necessarily incorrect.

    No, it does not. It does not even specify any claim. It only specifies
    a behavior, and much of it only inplicitly. A proof ends with the
    sentence that is proven but the source code does not. Unless you only
    want to clalim tnat }.


    _DD()
    [00002133] 55         push ebp      ; housekeeping
    [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    When we assume that HHH emulates N steps of DD then

    DD correctly emulated by HHH cannot possibly reach
    its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.

    I am not going to address any other point until this
    point is fully understood because the other points
    cannot be understood until this one is understood.

    Apparently this is well understood. We agree that HHH correctly reports
    that it cannot possibly bring the simulation to a correct end. And end
    that exists as proven by direct execution and world-class simulators
    with exactly the same finite string as input.

    It seems that even when we understand this step, Olcott is unable to go
    the the next step. It seems to be an infinite loop and non-halting
    behaviour.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Richard Damon@21:1/5 to olcott on Mon Mar 10 07:04:57 2025
    On 3/9/25 11:10 PM, olcott wrote:
    On 3/9/2025 8:57 PM, Richard Damon wrote:
    On 3/9/25 6:32 PM, olcott wrote:
    On 3/9/2025 4:43 PM, Richard Damon wrote:
    On 3/9/25 3:36 PM, olcott wrote:
    On 3/9/2025 2:24 PM, Richard Damon wrote:
    On 3/9/25 9:25 AM, olcott wrote:
    On 3/9/2025 6:17 AM, Richard Damon wrote:
    On 3/8/25 10:24 PM, olcott wrote:
    On 3/8/2025 9:03 PM, Richard Damon wrote:
    On 3/8/25 6:30 PM, olcott wrote:
    On 3/8/2025 5:01 PM, dbush wrote:
    On 3/8/2025 5:47 PM, olcott wrote:
    On 3/8/2025 4:26 PM, dbush wrote:
    On 3/8/2025 11:41 AM, olcott wrote:
    On 3/8/2025 9:01 AM, dbush wrote:
    On 3/8/2025 9:09 AM, olcott wrote:
    On 3/8/2025 3:06 AM, Mikko wrote:
    On 2025-03-07 15:11:53 +0000, olcott said: >>>>>>>>>>>>>>>>>>
    The code proves otherwise
    https://github.com/plolcott/x86utm/blob/master/Halt7.c >>>>>>>>>>>>>>>>>>
    A program does not prove. In particular, it does not >>>>>>>>>>>>>>>>>> prove that no
    different program exists.


    The source code 100% perfectly proves exactly what it >>>>>>>>>>>>>>>>> actually does.

    The source code contains a finite sequence of truth >>>>>>>>>>>>>>>> preserving steps between axioms and a statement? >>>>>>>>>>>>>>>
    The source code 100% completely specifies every single >>>>>>>>>>>>>>> detail
    of exactly what it does on each specific input.
    Saying that it does not do this is counter-factual. >>>>>>>>>>>>>>>

    In other words, the source code does not meet the
    definition of a proof, so your claim is false.

    Dumb Bunny:
    *Proof[0] is anything that shows that X is necessarily true* >>>>>>>>>>>>> *and thus impossibly false*

    The source-code in Halt7.c combined with the input to HHH >>>>>>>>>>>>> conclusively proves every detail of the behavior of HHH on >>>>>>>>>>>>> this input. Disagreeing this is either foolish or dishonest. >>>>>>>>>>>>>

    A proof is a finite sequence of truth preserving steps >>>>>>>>>>>> between the axioms of a system and a true statement that >>>>>>>>>>>> show the statement is true.


    Proof[math] tries unsuccessfully to inherit from proof[0]. >>>>>>>>>>> I am stipulating that I have always been referring to proof[0]. >>>>>>>>>>
    And I am pointing out that it IS the same, it is just that you >>>>>>>>>> don't understand that "Show" implies FINITE.


    In that single aspect you are correct.
    Show that X is definitely true and thus impossibly false
    by any means what-so-ever is not proof[math].

    or proof[0], since you can not SHOW something "by any means" if >>>>>>>> those means are not showable due to not being finite.


    You are just proving your stupidity by repeating your
    disproved claim.


    If you cannot understand the Halt7.c conclusively proves[0] >>>>>>>>>>> the actual behavior of HHH(DD) this is merely your lack of >>>>>>>>>>> understanding and nothing more.



    Sure I can understand what it does, as Halt7.c shows that the >>>>>>>>>> behavior of the input is to HALT since that is what DD will do >>>>>>>>>> when main calls it.


    *WHEN YOU UNDERSTAND THIS THEN YOU KNOW YOU WERE WRONG*
    DD correctly emulated by HHH cannot possibly reach
    its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.



    But The HHH You are talking about doesn't do a correct
    simulation, so this statment is not applicable.



    _DD()
    [00002133] 55         push ebp      ; housekeeping
    [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local >>>>>>> [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    WHich is *NOT* a program, as it has an external reference.


    *When we assume that HHH emulates N steps of DD then*

    DD correctly emulated by HHH cannot possibly reach
    its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.

    Wrong, because emulaiting for "N Steps" is NOT correctly emulation. >>>>>>

    Correctly emulating N steps is emulating N steps correctly.

    Which is only partially emulating it correctly, and only partially
    correct is incorrect.


    Everyone here that has sufficient technical competence can
    see that for any N steps of DD correctly emulated by HHH
    that DD cannot possibly reach its own final state and
    terminate normally.



    So? As has been pointed out, since HHH can't do enough steps to get
    to the actual answer, it never CORRECTLY emulated the input enough
    to get the answer if it aborts.


    If HHH can see the same pattern that every competent
    programmer sees then HHH does not need to emulate DD
    more than twice to know that HHH cannot possibly reach
    its own final state and terminate normally.



    The pattern that HHH sees is IDENTICAL to the pattern that HHH1 saw,
    up to the point it aborts.


    In other words you do not believe that HHH can see what
    every competent programmer sees.


    The problem is that what "Every Competent Programmer" will see what I described, that since HHH aborts and returns 0, that DD will reach the
    return.

    The problem is your argument is built on FRAUD. First the Fraud that
    "Halting" or "Termination" is based on something other than the behavior
    of the direct exectution of the program itself, which you seem to do as
    you can't imagine something being defined to be something that can't be directly observed by the program.

    The second fraud, which somewhat feeds that first, is you just don't
    understand what a program is, and this is fundamental to your issue here.

    A "Program", as defined everywhere these sorts of problems are defined, requires the specification as part of the program *ALL* the code the
    program uses (and that specification to be compete), and thus your DD
    isn't a program until you add the full and accurate definition of HHH as
    part of the code, and if HHH is defined as part of the code, then you
    don't get to change it as part of the code analysis.

    Your whole analysis is based on looking at some different "program" that
    your fragment DD can become when paired with a different version of HHH
    than what you have in your claimed case.

    This seems to show that you think that two different things are exactly
    the same thing, which is one type of insanity,

    Sorry, you are just proving that you are totally ignorant of what you
    are talking about, or that you have zero regard for what is actually
    true. Either way, no one (with any intelligence) will ever beleive what
    you say,

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Fred. Zwarts@21:1/5 to All on Mon Mar 10 20:24:47 2025
    Op 10.mrt.2025 om 15:01 schreef olcott:
    On 3/10/2025 4:14 AM, Fred. Zwarts wrote:
    Op 09.mrt.2025 om 14:11 schreef olcott:
    On 3/9/2025 4:05 AM, Fred. Zwarts wrote:
    Op 08.mrt.2025 om 18:47 schreef olcott:
    On 3/8/2025 9:41 AM, Fred. Zwarts wrote:
    Op 08.mrt.2025 om 15:09 schreef olcott:
    On 3/8/2025 3:06 AM, Mikko wrote:
    On 2025-03-07 15:11:53 +0000, olcott said:



    _DD()
    [00002133] 55         push ebp      ; housekeeping
    [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local
    [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly reach
    its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.


    Why repeating things we agree with? We agree that HHH correctly
    reports that it cannot possibly complete the simulation to its end.

    You have despicably changed my words.
    It never has been any failure of HHH.
    It has always been that DD calls HHH(DD) in recursive
    emulation thus specifying that it cannot possible reach
    its own final state and terminate normally.

    typedef void (*ptr)();
    int HHH(ptr P);

    int DD()
    {
      int Halt_Status = HHH(DD);
      if (Halt_Status)
        HERE: goto HERE;
      return Halt_Status;
    }

    int main()
    {
      HHH(DD);
    }

    DD correctly emulated by HHH cannot possibly reach
    its own "return" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.

    If HHH can see the same pattern that every competent
    programmer sees then HHH does not need to emulate DD
    more than twice to know that HHH cannot possibly reach
    its own final state and terminate normally.

    Perhaps you are not a competent programmer.

    Why repeating what we agree with?
    Yes, HHH correctly reports that it cannot possibly simulate its input up
    to the end. An end that has been proven to be there after a finite
    recursion by direct execution and by world-class simulators when given
    exactly the same input.
    Olcott must be a very competent programmer to make a simulator that is
    unable to reach the end of the simulation. :)

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Richard Damon@21:1/5 to olcott on Mon Mar 10 18:45:19 2025
    On 3/10/25 10:01 AM, olcott wrote:
    On 3/10/2025 4:14 AM, Fred. Zwarts wrote:
    Op 09.mrt.2025 om 14:11 schreef olcott:
    On 3/9/2025 4:05 AM, Fred. Zwarts wrote:
    Op 08.mrt.2025 om 18:47 schreef olcott:
    On 3/8/2025 9:41 AM, Fred. Zwarts wrote:
    Op 08.mrt.2025 om 15:09 schreef olcott:
    On 3/8/2025 3:06 AM, Mikko wrote:
    On 2025-03-07 15:11:53 +0000, olcott said:



    _DD()
    [00002133] 55         push ebp      ; housekeeping
    [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local
    [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    DD correctly emulated by HHH cannot possibly reach
    its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.


    Why repeating things we agree with? We agree that HHH correctly
    reports that it cannot possibly complete the simulation to its end.

    You have despicably changed my words.
    It never has been any failure of HHH.
    It has always been that DD calls HHH(DD) in recursive
    emulation thus specifying that it cannot possible reach
    its own final state and terminate normally.

    typedef void (*ptr)();
    int HHH(ptr P);

    int DD()
    {
      int Halt_Status = HHH(DD);
      if (Halt_Status)
        HERE: goto HERE;
      return Halt_Status;
    }

    int main()
    {
      HHH(DD);
    }

    DD correctly emulated by HHH cannot possibly reach
    its own "return" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.

    But only if HHH actually does the complete emulation.

    If HHH aborts and returns, as you otherwhere describe it, then it
    doesn't do a correct emulation, so your statement is null as that isn't
    the behavior of *THE* HHH in the system but a correct emulation of that
    input by an actually correct emulator would.


    If HHH can see the same pattern that every competent
    programmer sees then HHH does not need to emulate DD
    more than twice to know that HHH cannot possibly reach
    its own final state and terminate normally.

    Except then it violates its presumption of itself.




    Perhaps you are not a competent programmer.



    The problem is you are not an honest logitian, as you think you are make argiuments with lying premises.

    You have admitted to the use of FRAUD in your logic, and now you show
    you include unsound logic based on lies.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Richard Damon@21:1/5 to olcott on Mon Mar 10 22:21:09 2025
    On 3/10/25 7:04 PM, olcott wrote:
    On 3/10/2025 5:45 PM, Richard Damon wrote:
    On 3/10/25 10:10 AM, olcott wrote:
    On 3/10/2025 6:04 AM, Richard Damon wrote:
    On 3/9/25 11:10 PM, olcott wrote:
    On 3/9/2025 8:57 PM, Richard Damon wrote:
    On 3/9/25 6:32 PM, olcott wrote:
    On 3/9/2025 4:43 PM, Richard Damon wrote:
    On 3/9/25 3:36 PM, olcott wrote:
    On 3/9/2025 2:24 PM, Richard Damon wrote:
    On 3/9/25 9:25 AM, olcott wrote:
    On 3/9/2025 6:17 AM, Richard Damon wrote:
    On 3/8/25 10:24 PM, olcott wrote:
    On 3/8/2025 9:03 PM, Richard Damon wrote:
    On 3/8/25 6:30 PM, olcott wrote:
    On 3/8/2025 5:01 PM, dbush wrote:
    On 3/8/2025 5:47 PM, olcott wrote:
    On 3/8/2025 4:26 PM, dbush wrote:
    On 3/8/2025 11:41 AM, olcott wrote:
    On 3/8/2025 9:01 AM, dbush wrote:
    On 3/8/2025 9:09 AM, olcott wrote:
    On 3/8/2025 3:06 AM, Mikko wrote:
    On 2025-03-07 15:11:53 +0000, olcott said: >>>>>>>>>>>>>>>>>>>>>>
    The code proves otherwise
    https://github.com/plolcott/x86utm/blob/master/ >>>>>>>>>>>>>>>>>>>>>>> Halt7.c

    A program does not prove. In particular, it does >>>>>>>>>>>>>>>>>>>>>> not prove that no
    different program exists.


    The source code 100% perfectly proves exactly what it >>>>>>>>>>>>>>>>>>>>> actually does.

    The source code contains a finite sequence of truth >>>>>>>>>>>>>>>>>>>> preserving steps between axioms and a statement? >>>>>>>>>>>>>>>>>>>
    The source code 100% completely specifies every >>>>>>>>>>>>>>>>>>> single detail
    of exactly what it does on each specific input. >>>>>>>>>>>>>>>>>>> Saying that it does not do this is counter-factual. >>>>>>>>>>>>>>>>>>>

    In other words, the source code does not meet the >>>>>>>>>>>>>>>>>> definition of a proof, so your claim is false. >>>>>>>>>>>>>>>>>
    Dumb Bunny:
    *Proof[0] is anything that shows that X is necessarily >>>>>>>>>>>>>>>>> true*
    *and thus impossibly false*

    The source-code in Halt7.c combined with the input to HHH >>>>>>>>>>>>>>>>> conclusively proves every detail of the behavior of HHH on >>>>>>>>>>>>>>>>> this input. Disagreeing this is either foolish or >>>>>>>>>>>>>>>>> dishonest.


    A proof is a finite sequence of truth preserving steps >>>>>>>>>>>>>>>> between the axioms of a system and a true statement that >>>>>>>>>>>>>>>> show the statement is true.


    Proof[math] tries unsuccessfully to inherit from proof[0]. >>>>>>>>>>>>>>> I am stipulating that I have always been referring to >>>>>>>>>>>>>>> proof[0].

    And I am pointing out that it IS the same, it is just that >>>>>>>>>>>>>> you don't understand that "Show" implies FINITE.


    In that single aspect you are correct.
    Show that X is definitely true and thus impossibly false >>>>>>>>>>>>> by any means what-so-ever is not proof[math].

    or proof[0], since you can not SHOW something "by any means" >>>>>>>>>>>> if those means are not showable due to not being finite. >>>>>>>>>>>>

    You are just proving your stupidity by repeating your >>>>>>>>>>>>>> disproved claim.


    If you cannot understand the Halt7.c conclusively proves[0] >>>>>>>>>>>>>>> the actual behavior of HHH(DD) this is merely your lack of >>>>>>>>>>>>>>> understanding and nothing more.



    Sure I can understand what it does, as Halt7.c shows that >>>>>>>>>>>>>> the behavior of the input is to HALT since that is what DD >>>>>>>>>>>>>> will do when main calls it.


    *WHEN YOU UNDERSTAND THIS THEN YOU KNOW YOU WERE WRONG* >>>>>>>>>>>>> DD correctly emulated by HHH cannot possibly reach
    its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.



    But The HHH You are talking about doesn't do a correct >>>>>>>>>>>> simulation, so this statment is not applicable.



    _DD()
    [00002133] 55         push ebp      ; housekeeping >>>>>>>>>>> [00002134] 8bec       mov ebp,esp   ; housekeeping >>>>>>>>>>> [00002136] 51         push ecx      ; make space for local
    [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    WHich is *NOT* a program, as it has an external reference. >>>>>>>>>>

    *When we assume that HHH emulates N steps of DD then*

    DD correctly emulated by HHH cannot possibly reach
    its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.

    Wrong, because emulaiting for "N Steps" is NOT correctly
    emulation.


    Correctly emulating N steps is emulating N steps correctly.

    Which is only partially emulating it correctly, and only
    partially correct is incorrect.


    Everyone here that has sufficient technical competence can
    see that for any N steps of DD correctly emulated by HHH
    that DD cannot possibly reach its own final state and
    terminate normally.



    So? As has been pointed out, since HHH can't do enough steps to >>>>>>>> get to the actual answer, it never CORRECTLY emulated the input >>>>>>>> enough to get the answer if it aborts.


    If HHH can see the same pattern that every competent
    programmer sees then HHH does not need to emulate DD
    more than twice to know that HHH cannot possibly reach
    its own final state and terminate normally.



    The pattern that HHH sees is IDENTICAL to the pattern that HHH1
    saw, up to the point it aborts.


    In other words you do not believe that HHH can see what
    every competent programmer sees.


    The problem is that what "Every Competent Programmer" will see what
    I described, that since HHH aborts and returns 0, that DD will reach
    the return.


    typedef void (*ptr)();
    int HHH(ptr P);

    int DD()
    {
       int Halt_Status = HHH(DD);
       if (Halt_Status)
         HERE: goto HERE;
       return Halt_Status;
    }

    int main()
    {
       HHH(DD);
    }

    When their only knowledge of HHH is that HHH emulates
    N steps of DD then every competent programmer has
    consistently agreed that DD emulated by HHH cannot
    possibly reach its own "return" instruction and
    terminate normally.



    But if HHH only emulates N steps of DD, then any competent programmer
    knows that it WILL return to DD.


    Factually incorrect proving that the issue has always been
    that you are not a sufficiently competent programmer.

    Then what else does the HHH that DD calls do?

    Your inability to actually show any facts just proves you are just a liar.


    It is only the directly executed HHH that drives the
    emulation of everything else. As soon as this HHH stops
    emulating DD every other emulation immediately stops.



    And where do you get that from?

    That is just part of yoru FRAUD.

    You just don't know what a program is, or what behavior is.

    Your inability to show where you get your statements just illustrates
    that you are just a liar.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Mikko@21:1/5 to olcott on Tue Mar 11 12:07:27 2025
    On 2025-03-10 14:10:10 +0000, olcott said:

    On 3/10/2025 6:04 AM, Richard Damon wrote:
    On 3/9/25 11:10 PM, olcott wrote:
    On 3/9/2025 8:57 PM, Richard Damon wrote:
    On 3/9/25 6:32 PM, olcott wrote:
    On 3/9/2025 4:43 PM, Richard Damon wrote:
    On 3/9/25 3:36 PM, olcott wrote:
    On 3/9/2025 2:24 PM, Richard Damon wrote:
    On 3/9/25 9:25 AM, olcott wrote:
    On 3/9/2025 6:17 AM, Richard Damon wrote:
    On 3/8/25 10:24 PM, olcott wrote:
    On 3/8/2025 9:03 PM, Richard Damon wrote:
    On 3/8/25 6:30 PM, olcott wrote:
    On 3/8/2025 5:01 PM, dbush wrote:
    On 3/8/2025 5:47 PM, olcott wrote:
    On 3/8/2025 4:26 PM, dbush wrote:
    On 3/8/2025 11:41 AM, olcott wrote:
    On 3/8/2025 9:01 AM, dbush wrote:
    On 3/8/2025 9:09 AM, olcott wrote:
    On 3/8/2025 3:06 AM, Mikko wrote:
    On 2025-03-07 15:11:53 +0000, olcott said: >>>>>>>>>>>>>>>>>>>>
    The code proves otherwise
    https://github.com/plolcott/x86utm/blob/master/Halt7.c >>>>>>>>>>>>>>>>>>>>
    A program does not prove. In particular, it does not prove that no
    different program exists.


    The source code 100% perfectly proves exactly what it >>>>>>>>>>>>>>>>>>> actually does.

    The source code contains a finite sequence of truth preserving steps
    between axioms and a statement?

    The source code 100% completely specifies every single detail >>>>>>>>>>>>>>>>> of exactly what it does on each specific input. >>>>>>>>>>>>>>>>> Saying that it does not do this is counter-factual. >>>>>>>>>>>>>>>>>

    In other words, the source code does not meet the definition of a
    proof, so your claim is false.

    Dumb Bunny:
    *Proof[0] is anything that shows that X is necessarily true* >>>>>>>>>>>>>>> *and thus impossibly false*

    The source-code in Halt7.c combined with the input to HHH >>>>>>>>>>>>>>> conclusively proves every detail of the behavior of HHH on >>>>>>>>>>>>>>> this input. Disagreeing this is either foolish or dishonest. >>>>>>>>>>>>>>>

    A proof is a finite sequence of truth preserving steps between the
    axioms of a system and a true statement that show the statement is true.


    Proof[math] tries unsuccessfully to inherit from proof[0]. >>>>>>>>>>>>> I am stipulating that I have always been referring to proof[0]. >>>>>>>>>>>>
    And I am pointing out that it IS the same, it is just that you don't
    understand that "Show" implies FINITE.


    In that single aspect you are correct.
    Show that X is definitely true and thus impossibly false >>>>>>>>>>> by any means what-so-ever is not proof[math].

    or proof[0], since you can not SHOW something "by any means" if those
    means are not showable due to not being finite.


    You are just proving your stupidity by repeating your disproved claim.


    If you cannot understand the Halt7.c conclusively proves[0] >>>>>>>>>>>>> the actual behavior of HHH(DD) this is merely your lack of >>>>>>>>>>>>> understanding and nothing more.



    Sure I can understand what it does, as Halt7.c shows that the behavior
    of the input is to HALT since that is what DD will do when main calls
    it.


    *WHEN YOU UNDERSTAND THIS THEN YOU KNOW YOU WERE WRONG*
    DD correctly emulated by HHH cannot possibly reach
    its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.



    But The HHH You are talking about doesn't do a correct simulation, so
    this statment is not applicable.



    _DD()
    [00002133] 55         push ebp      ; housekeeping >>>>>>>>> [00002134] 8bec       mov ebp,esp   ; housekeeping
    [00002136] 51         push ecx      ; make space for local
    [00002137] 6833210000 push 00002133 ; push DD
    [0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
    [00002141] 83c404     add esp,+04
    [00002144] 8945fc     mov [ebp-04],eax
    [00002147] 837dfc00   cmp dword [ebp-04],+00
    [0000214b] 7402       jz 0000214f
    [0000214d] ebfe       jmp 0000214d
    [0000214f] 8b45fc     mov eax,[ebp-04]
    [00002152] 8be5       mov esp,ebp
    [00002154] 5d         pop ebp
    [00002155] c3         ret
    Size in bytes:(0035) [00002155]

    WHich is *NOT* a program, as it has an external reference.


    *When we assume that HHH emulates N steps of DD then*

    DD correctly emulated by HHH cannot possibly reach
    its own "ret" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.

    Wrong, because emulaiting for "N Steps" is NOT correctly emulation. >>>>>>>>

    Correctly emulating N steps is emulating N steps correctly.

    Which is only partially emulating it correctly, and only partially >>>>>> correct is incorrect.


    Everyone here that has sufficient technical competence can
    see that for any N steps of DD correctly emulated by HHH
    that DD cannot possibly reach its own final state and
    terminate normally.



    So? As has been pointed out, since HHH can't do enough steps to get to >>>>>> the actual answer, it never CORRECTLY emulated the input enough to get >>>>>> the answer if it aborts.


    If HHH can see the same pattern that every competent
    programmer sees then HHH does not need to emulate DD
    more than twice to know that HHH cannot possibly reach
    its own final state and terminate normally.



    The pattern that HHH sees is IDENTICAL to the pattern that HHH1 saw, up >>>> to the point it aborts.


    In other words you do not believe that HHH can see what
    every competent programmer sees.


    The problem is that what "Every Competent Programmer" will see what I
    described, that since HHH aborts and returns 0, that DD will reach the
    return.


    typedef void (*ptr)();
    int HHH(ptr P);

    int DD()
    {
    int Halt_Status = HHH(DD);
    if (Halt_Status)
    HERE: goto HERE;
    return Halt_Status;
    }

    int main()
    {
    HHH(DD);
    }

    When their only knowledge of HHH is that HHH emulates
    N steps of DD then every competent programmer has
    ...

    I.e., they don't know what HHH does after the emulation of N steps of DD, especially whether HHH ever returns or what it returns if it does.
    Consequently they can't know whether the behaviour of DD is terminating
    or non-terminating.

    --
    Mikko

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From joes@21:1/5 to All on Tue Mar 11 10:07:59 2025
    Am Mon, 10 Mar 2025 09:10:10 -0500 schrieb olcott:
    On 3/10/2025 6:04 AM, Richard Damon wrote:
    On 3/9/25 11:10 PM, olcott wrote:
    On 3/9/2025 8:57 PM, Richard Damon wrote:
    On 3/9/25 6:32 PM, olcott wrote:
    On 3/9/2025 4:43 PM, Richard Damon wrote:
    On 3/9/25 3:36 PM, olcott wrote:
    On 3/9/2025 2:24 PM, Richard Damon wrote:
    On 3/9/25 9:25 AM, olcott wrote:
    On 3/9/2025 6:17 AM, Richard Damon wrote:
    On 3/8/25 10:24 PM, olcott wrote:
    On 3/8/2025 9:03 PM, Richard Damon wrote:
    On 3/8/25 6:30 PM, olcott wrote:
    On 3/8/2025 5:01 PM, dbush wrote:
    On 3/8/2025 5:47 PM, olcott wrote:
    On 3/8/2025 4:26 PM, dbush wrote:
    On 3/8/2025 11:41 AM, olcott wrote:
    On 3/8/2025 9:01 AM, dbush wrote:
    On 3/8/2025 9:09 AM, olcott wrote:
    On 3/8/2025 3:06 AM, Mikko wrote:
    On 2025-03-07 15:11:53 +0000, olcott said:

    Sure I can understand what it does, as Halt7.c shows that the >>>>>>>>>>>> behavior of the input is to HALT since that is what DD will >>>>>>>>>>>> do when main calls it.
    *WHEN YOU UNDERSTAND THIS THEN YOU KNOW YOU WERE WRONG* DD >>>>>>>>>>> correctly emulated by HHH cannot possibly reach its own "ret" >>>>>>>>>>> instruction and terminate normally because DD calls HHH(DD) in >>>>>>>>>>> recursive emulation.
    But The HHH You are talking about doesn't do a correct
    simulation, so this statment is not applicable.

    _DD()

    WHich is *NOT* a program, as it has an external reference.

    Wrong, because emulaiting for "N Steps" is NOT correctly
    emulation.
    Correctly emulating N steps is emulating N steps correctly.
    Which is only partially emulating it correctly, and only partially >>>>>> correct is incorrect.

    Everyone here that has sufficient technical competence can see
    that for any N steps of DD correctly emulated by HHH that DD
    cannot possibly reach its own final state and terminate normally. >>>>>> So? As has been pointed out, since HHH can't do enough steps to get >>>>>> to the actual answer, it never CORRECTLY emulated the input enough >>>>>> to get the answer if it aborts.
    If HHH can see the same pattern that every competent programmer sees >>>>> then HHH does not need to emulate DD more than twice to know that
    HHH cannot possibly reach its own final state and terminate
    normally.

    Then HHH is not a decider.

    The pattern that HHH sees is IDENTICAL to the pattern that HHH1 saw,
    up to the point it aborts.
    In other words you do not believe that HHH can see what every
    competent programmer sees.
    The problem is that what "Every Competent Programmer" will see what I
    described, that since HHH aborts and returns 0, that DD will reach the
    return.
    When their only knowledge of HHH is that HHH emulates N steps of DD then every competent programmer has consistently agreed that DD emulated by
    HHH cannot possibly reach its own "return" instruction and terminate normally.
    We also know that HHH definitely returns, *even when simulating itself*.

    --
    Am Sat, 20 Jul 2024 12:35:31 +0000 schrieb WM in sci.math:
    It is not guaranteed that n+1 exists for every n.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Mikko@21:1/5 to olcott on Tue Mar 11 12:19:10 2025
    On 2025-03-10 13:46:43 +0000, olcott said:

    On 3/10/2025 3:59 AM, Mikko wrote:
    On 2025-03-09 13:16:20 +0000, olcott said:>>
    When we assume that HHH emulates N steps of DD then

    HHH does not present that assumption, which is therefore irrelevant
    to the fact that https://github.com/plolcott/x86utm/blob/master/Halt7.c
    does not prove anything.

    typedef void (*ptr)();
    int HHH(ptr P);

    int DD()
    {
    int Halt_Status = HHH(DD);
    if (Halt_Status)
    HERE: goto HERE;
    return Halt_Status;
    }

    int main()
    {
    HHH(DD);
    }

    DD correctly emulated by HHH cannot possibly reach
    its own "retrun" instruction and terminate normally
    because DD calls HHH(DD) in recursive emulation.

    That is not written on https://github.com/plolcott/x86utm/blob/master/Halt7.c so not relevant.

    Perhaps you are not a competent programmer.

    Millions of people use or have used devices that contain programs I have
    made or improved.

    --
    Mikko

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