• Why Is it correct for HHH(DD) to reject its input as non-halting whenDD() halts?

    From olcott@polcott333@gmail.com to comp.theory on Wed Aug 20 11:20:21 2025
    From Newsgroup: comp.theory

    Turing machine deciders only compute the mapping
    from their inputs...

    Thus HHH(DD) is not supposed to report on the behavior
    of its caller because its caller *IS NOT ITS INPUT*

    <Input to LLM systems>
    Simulating Termination Analyzer HHH correctly simulates its input until:
    (a) Detects a non-terminating behavior pattern:
    abort simulation and return 0.
    (b) Simulated input reaches its simulated "return" statement:
    return 1.

    typedef int (*ptr)();
    int HHH(ptr P);

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

    What value should HHH(DD) correctly return?
    <Input to LLM systems>

    Three different LLM systems figured out that the execution
    trace of DD correctly simulated by HHH does match the
    *recursive simulation non-halting behavior pattern*
    on their own without prompting that such a pattern even
    exists. They also figured out that HHH(DD)==0 is correct.

    https://claude.ai/share/da9e56ba-f4e9-45ee-9f2c-dc5ffe10f00c

    https://chatgpt.com/share/68939ee5-e2f8-8011-837d-438fe8e98b9c

    https://grok.com/share/c2hhcmQtMg%3D%3D_810120bb-5ab5-4bf8-af21-eedd0f09e141


    Two other LLM systems ChatGPT 5.0 and Gemini did the
    same thing yet had to be explicitly told not to guess.
    ChatGPT 5.0 admitted that guessing is its new default.

    It also wrote a script that forces it and every other
    LLM system into *think it through do not guess* mode.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mr Flibble@flibble@red-dwarf.jmc.corp to comp.theory on Wed Aug 20 17:50:28 2025
    From Newsgroup: comp.theory

    On Wed, 20 Aug 2025 11:20:21 -0500, olcott wrote:

    Turing machine deciders only compute the mapping from their inputs...

    Thus HHH(DD) is not supposed to report on the behavior of its caller
    because its caller *IS NOT ITS INPUT*

    Wrong, DD is *both* the input to HHH *and* the caller of HHH; it takes on
    both roles as the roles are not mutually exclusive; HHH doesn't care about what is calling it, all it cares about is the behaviour of DD using a *description* of DD -- but it must report a decision to its caller, which
    is DD.

    You have failed to and continue to fail to refute the extant Halting
    Problem proofs.

    /Flibble
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Richard Damon@Richard@Damon-Family.org to comp.theory on Wed Aug 20 22:06:09 2025
    From Newsgroup: comp.theory

    On 8/20/25 12:20 PM, olcott wrote:
    Turing machine deciders only compute the mapping
    from their inputs...

    But to be correct, that answer must be a correct answer for the question
    that was presented to them, likely via a representation.


    Thus HHH(DD) is not supposed to report on the behavior
    of its caller because its caller *IS NOT ITS INPUT*

    Sure it i9s, you are just showing you don't understand what the words
    you are using mean.

    You confuse capability with requirements.


    <Input to LLM systems>
    Simulating Termination Analyzer HHH correctly simulates its input until:
    (a) Detects a non-terminating behavior pattern:
        abort simulation and return 0.
    (b) Simulated input reaches its simulated "return" statement:
        return 1.

    typedef int (*ptr)();
    int HHH(ptr P);

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

    What value should HHH(DD) correctly return?
    <Input to LLM systems>

    Three different LLM systems figured out that the execution
    trace of DD correctly simulated by HHH does match the
    *recursive simulation non-halting behavior pattern*
    on their own without prompting that such a pattern even
    exists. They also figured out that HHH(DD)==0 is correct.

    https://claude.ai/share/da9e56ba-f4e9-45ee-9f2c-dc5ffe10f00c

    https://chatgpt.com/share/68939ee5-e2f8-8011-837d-438fe8e98b9c

    https://grok.com/share/c2hhcmQtMg%3D%3D_810120bb-5ab5-4bf8-af21- eedd0f09e141

    Two other LLM systems ChatGPT 5.0 and Gemini did the
    same thing yet had to be explicitly told not to guess.
    ChatGPT 5.0 admitted that guessing is its new default.

    It also wrote a script that forces it and every other
    LLM system into *think it through do not guess* mode.



    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Fred. Zwarts@F.Zwarts@HetNet.nl to comp.theory on Thu Aug 21 09:55:39 2025
    From Newsgroup: comp.theory

    Op 20.aug.2025 om 18:20 schreef olcott:
    Turing machine deciders only compute the mapping
    from their inputs...

    Thus HHH(DD) is not supposed to report on the behavior
    of its caller because its caller *IS NOT ITS INPUT*

    <Input to LLM systems>
    Simulating Termination Analyzer HHH correctly simulates its input until:
    (a) Detects a non-terminating behavior pattern:
        abort simulation and return 0.

    Here Olcott injects his prejudice in the input.
    When HHH returns 0, it did not detect a non-termination behaviour
    pattern, but it incorrectly assumes a non-termination behaviour pattern.
    HHH does not analyse the conditional branch instructions encountered
    during the simulation and it does not prove that the conditions for
    alternate branches will not be met when the simulation would be continued. Therefore, the abort is premature, and the return value is based on
    incorrect assumptions.

    (b) Simulated input reaches its simulated "return" statement:
        return 1.

    typedef int (*ptr)();
    int HHH(ptr P);

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

    What value should HHH(DD) correctly return?
    <Input to LLM systems>

    Three different LLM systems figured out that the execution
    trace of DD correctly simulated by HHH does match the
    *recursive simulation non-halting behavior pattern*
    on their own without prompting that such a pattern even
    exists. They also figured out that HHH(DD)==0 is correct.

    Which follows directly from the incorrect input. The conclusion that HHH
    is correct is based on the assumption that HHH is correct. A circular reasoning, that is not a proof.


    https://claude.ai/share/da9e56ba-f4e9-45ee-9f2c-dc5ffe10f00c

    https://chatgpt.com/share/68939ee5-e2f8-8011-837d-438fe8e98b9c

    https://grok.com/share/c2hhcmQtMg%3D%3D_810120bb-5ab5-4bf8-af21- eedd0f09e141

    Two other LLM systems ChatGPT 5.0 and Gemini did the
    same thing yet had to be explicitly told not to guess.
    ChatGPT 5.0 admitted that guessing is its new default.

    It also wrote a script that forces it and every other
    LLM system into *think it through do not guess* mode.



    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Richard Heathfield@rjh@cpax.org.uk to comp.theory on Thu Aug 21 09:15:58 2025
    From Newsgroup: comp.theory

    On 21/08/2025 08:55, Fred. Zwarts wrote:
    Op 20.aug.2025 om 18:20 schreef olcott:
    Turing machine deciders only compute the mapping
    from their inputs...

    Thus HHH(DD) is not supposed to report on the behavior
    of its caller because its caller *IS NOT ITS INPUT*

    <Input to LLM systems>
    Simulating Termination Analyzer HHH correctly simulates its
    input until:
    (a) Detects a non-terminating behavior pattern:
         abort simulation and return 0.

    Here Olcott injects his prejudice in the input.
    When HHH returns 0, it did not detect a non-termination behaviour
    pattern, but it incorrectly assumes a non-termination behaviour
    pattern.

    ...which is odd, because it then terminates DD. Since DD calls
    HHH in the first place (and whether directly or in simulation
    shouldn't matter if the simulation is faithful), we may
    reasonably deduce that DD exhibits terminating behaviour. HHH is
    therefore duty-bound to report to its caller that DD halts.

    HHH does not analyse the conditional branch instructions
    encountered during the simulation and it does not prove that the
    conditions for alternate branches will not be met when the
    simulation would be continued.

    Agreed.

    Therefore, the abort is premature, and the return value is based
    on incorrect assumptions.

    Agreed.

    Three different LLM systems figured out that the execution
    trace of DD correctly simulated by HHH does match the
    *recursive simulation non-halting behavior pattern*
    on their own without prompting that such a pattern even
    exists. They also figured out that HHH(DD)==0 is correct.

    Should be 1, of course.

    Which follows directly from the incorrect input. The conclusion
    that HHH is correct is based on the assumption that HHH is
    correct. A circular reasoning, that is not a proof.

    Agreed.
    --
    Richard Heathfield
    Email: rjh at cpax dot org dot uk
    "Usenet is a strange place" - dmr 29 July 1999
    Sig line 4 vacant - apply within

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to comp.theory on Thu Aug 21 10:23:31 2025
    From Newsgroup: comp.theory

    On 8/21/2025 3:15 AM, Richard Heathfield wrote:
    On 21/08/2025 08:55, Fred. Zwarts wrote:
    Op 20.aug.2025 om 18:20 schreef olcott:
    Turing machine deciders only compute the mapping
    from their inputs...

    Thus HHH(DD) is not supposed to report on the behavior
    of its caller because its caller *IS NOT ITS INPUT*

    <Input to LLM systems>
    Simulating Termination Analyzer HHH correctly simulates its input until: >>> (a) Detects a non-terminating behavior pattern:
         abort simulation and return 0.

    Here Olcott injects his prejudice in the input.
    When HHH returns 0, it did not detect a non-termination behaviour
    pattern, but it incorrectly assumes a non-termination behaviour pattern.


    I did not even tell the LLM systems whether not
    not DD halts. They figured out that DD matches the
    *recursive simulation non-halting behavior pattern*
    on their own and I did not even tell them that this
    pattern exists. They figured out the HHH(DD)==0 is
    correct and I did not even tell them that DD doesn't halt.

    ...which is odd, because it then terminates DD. Since DD calls HHH in
    the first place (and whether directly or in simulation shouldn't matter
    if the simulation is faithful), we may reasonably deduce that DD
    exhibits terminating behaviour. HHH is therefore duty-bound to report to
    its caller that DD halts.


    HOW MANY TIMES DO I HAVE TO SAY THIS BEFORE
    YOU NOTICE THAT I EVER SAID IT AT LEAST ONCE?
    Turing machine deciders only compute the mapping
    from their inputs...

    HHH does not analyse the conditional branch instructions encountered
    during the simulation and it does not prove that the conditions for
    alternate branches will not be met when the simulation would be
    continued.

    Agreed.

    All that HHH need know is that DD correctly simulated
    by HHH cannot possibly reach its own "return" instruction
    final halt state NO MATTER WHAT HHH DOES.

    I keep telling you that stopping does not
    DOES NOT COUNT AS HALTING and you keep forgetting.


    Therefore, the abort is premature, and the return value is based on
    incorrect assumptions.

    Agreed.

    Three different LLM systems figured out that the execution
    trace of DD correctly simulated by HHH does match the
    *recursive simulation non-halting behavior pattern*
    on their own without prompting that such a pattern even
    exists. They also figured out that HHH(DD)==0 is correct.

    Should be 1, of course.

    Which follows directly from the incorrect input. The conclusion that
    HHH is correct is based on the assumption that HHH is correct. A
    circular reasoning, that is not a proof.

    Agreed.

    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From dbush@dbush.mobile@gmail.com to comp.theory on Thu Aug 21 11:30:42 2025
    From Newsgroup: comp.theory

    On 8/21/2025 11:23 AM, olcott wrote:

    All that HHH need know is that DD correctly simulated
    by HHH
    Changes the input.

    Changing the input is not allowed.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Alan Mackenzie@acm@muc.de to comp.theory on Thu Aug 21 15:54:22 2025
    From Newsgroup: comp.theory

    olcott <polcott333@gmail.com> wrote:

    [ .... ]

    HOW MANY TIMES DO I HAVE TO SAY THIS BEFORE
    YOU NOTICE THAT I EVER SAID IT AT LEAST ONCE?
    Turing machine deciders only compute the mapping
    from their inputs...

    Why do you bother saying it at all? How could it be otherwise? From the
    very definition of a turing machine, it does nothing but move from state
    to state and read from, write to, and move a tape of unbounded length.

    When you write stuff like the above, people just filter it out because it
    is meaninglessly tautological. And boring.

    [ .... ]

    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --
    Alan Mackenzie (Nuremberg, Germany).

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to comp.theory on Thu Aug 21 11:13:38 2025
    From Newsgroup: comp.theory

    On 8/21/2025 10:54 AM, Alan Mackenzie wrote:
    olcott <polcott333@gmail.com> wrote:

    [ .... ]

    HOW MANY TIMES DO I HAVE TO SAY THIS BEFORE
    YOU NOTICE THAT I EVER SAID IT AT LEAST ONCE?
    Turing machine deciders only compute the mapping
    from their inputs...

    Why do you bother saying it at all? How could it be otherwise?

    That all the proofs that I know of Linz in
    particular require that mapping from non-input
    Turing machines that are not mere descriptions.

    Linz requires Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ to report on
    the behavior of Ĥ applied to ⟨Ĥ⟩

    *From the bottom of page 319 has been adapted to this* https://www.liarparadox.org/Peter_Linz_HP_317-320.pdf

    Turing Machine Linz Ĥ applied to its own machine description ⟨Ĥ⟩
    Ĥ.q0 ⟨Ĥ⟩ ⊢* Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ ⊢* Ĥ.∞,
    Ĥ.q0 ⟨Ĥ⟩ ⊢* Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ ⊢* Ĥ.qn

    *When Ĥ.embedded_H is based on a UTM*

    *Repeats until aborted*
    (a) Ĥ copies its input ⟨Ĥ⟩
    (b) Ĥ invokes embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩
    (c) embedded_H simulates ⟨Ĥ⟩ ⟨Ĥ⟩

    If Ĥ.embedded_H cannot possibly see the repeating
    state then we know something we never knew before:
    that Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ ⊢* Ĥ.qn would be correct.

    From the
    very definition of a turing machine, it does nothing but move from state
    to state and read from, write to, and move a tape of unbounded length.

    When you write stuff like the above, people just filter it out because it
    is meaninglessly tautological. And boring.


    They don't pay close enough attention to see the
    significance of it as I outlined above.

    If Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ is smart enough to see the
    repeating state then the repeating state in the
    correct simulation of the input supersedes the
    behavior of non-input Ĥ applied to ⟨Ĥ⟩.


    [ .... ]

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

    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From dbush@dbush.mobile@gmail.com to comp.theory on Thu Aug 21 12:20:08 2025
    From Newsgroup: comp.theory

    On 8/21/2025 12:13 PM, olcott wrote:
    That all the proofs that I know of Linz in
    particular require that mapping from non-input
    Turing machines that are not mere descriptions.


    In other words, you're saying Turing machines can't do arithmetic
    because that would require mapping from non-input numbers that are not
    mere descriptions.

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to comp.theory on Thu Aug 21 11:23:25 2025
    From Newsgroup: comp.theory

    On 8/21/2025 11:20 AM, dbush wrote:
    On 8/21/2025 12:13 PM, olcott wrote:
    That all the proofs that I know of Linz in
    particular require that mapping from non-input
    Turing machines that are not mere descriptions.


    In other words, you're saying Turing machines can't do arithmetic
    because that would require mapping from non-input numbers that are not
    mere descriptions.


    I am saying that when DD calls HHH(DD)
    in recursive simulation that this cannot
    f-cking be simply ignored.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From dbush@dbush.mobile@gmail.com to comp.theory on Thu Aug 21 12:26:32 2025
    From Newsgroup: comp.theory

    On 8/21/2025 12:23 PM, olcott wrote:
    On 8/21/2025 11:20 AM, dbush wrote:
    On 8/21/2025 12:13 PM, olcott wrote:
    That all the proofs that I know of Linz in
    particular require that mapping from non-input
    Turing machines that are not mere descriptions.


    In other words, you're saying Turing machines can't do arithmetic
    because that would require mapping from non-input numbers that are not
    mere descriptions.


    I am saying that when DD calls HHH(DD)
    in recursive simulation that this cannot
    f-cking be simply ignored.


    Then you agree that Turing machines can't do arithmetic, as you made no attempt to refute the above.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From wij@wyniijj5@gmail.com to comp.theory on Fri Aug 22 00:28:47 2025
    From Newsgroup: comp.theory

    On Thu, 2025-08-21 at 11:13 -0500, olcott wrote:
    On 8/21/2025 10:54 AM, Alan Mackenzie wrote:
    olcott <polcott333@gmail.com> wrote:

    [ .... ]

    HOW MANY TIMES DO I HAVE TO SAY THIS BEFORE
    YOU NOTICE THAT I EVER SAID IT AT LEAST ONCE?
    Turing machine deciders only compute the mapping
    from their inputs...

    Why do you bother saying it at all?  How could it be otherwise? 

    That all the proofs that I know of Linz in
    particular require that mapping from non-input
    Turing machines that are not mere descriptions.

    Linz requires Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ to report on
    the behavior of Ĥ applied to ⟨Ĥ⟩

    *From the bottom of page 319 has been adapted to this* https://www.liarparadox.org/Peter_Linz_HP_317-320.pdf

    Turing Machine Linz Ĥ applied to its own machine description ⟨Ĥ⟩
    Ĥ.q0 ⟨Ĥ⟩ ⊢* Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ ⊢* Ĥ.∞,
    Ĥ.q0 ⟨Ĥ⟩ ⊢* Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ ⊢* Ĥ.qn

    *When Ĥ.embedded_H is based on a UTM*

    *Repeats until aborted*
    (a) Ĥ copies its input ⟨Ĥ⟩
    (b) Ĥ invokes embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩
    (c) embedded_H simulates ⟨Ĥ⟩ ⟨Ĥ⟩

    If Ĥ.embedded_H cannot possibly see the repeating
    state then we know something we never knew before:
    that Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ ⊢* Ĥ.qn would be correct.

    From the
    very definition of a turing machine, it does nothing but move from state
    to state and read from, write to, and move a tape of unbounded length.

    When you write stuff like the above, people just filter it out because it is meaninglessly tautological.  And boring.


    They don't pay close enough attention to see the
    significance of it as I outlined above.
    It is because you don't know logic IF/AND/OR/NOT. People have difficulty discussing with you. Let's try this one:
    Q: What is the value of proposition X&~X, why? True,False (You can answer
    Undecidable if none of the two fits)
    If Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ is smart enough to see the
    repeating state then the repeating state in the
    correct simulation of the input supersedes the
    behavior of non-input Ĥ applied to ⟨Ĥ⟩.


    [ .... ]

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


    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to comp.theory on Thu Aug 21 11:36:26 2025
    From Newsgroup: comp.theory

    On 8/21/2025 2:55 AM, Fred. Zwarts wrote:
    Op 20.aug.2025 om 18:20 schreef olcott:
    Turing machine deciders only compute the mapping
    from their inputs...

    Thus HHH(DD) is not supposed to report on the behavior
    of its caller because its caller *IS NOT ITS INPUT*

    <Input to LLM systems>
    Simulating Termination Analyzer HHH correctly simulates its input until:
    (a) Detects a non-terminating behavior pattern:
         abort simulation and return 0.

    Here Olcott injects his prejudice in the input.

    Incorrect. I just defined the notion of
    Simulating Termination Analyzer HHH.

    They figured out the *recursive simulation non-halting behavior pattern* entirely on their own without prompting and figured out that HHH(DD)==0
    is correct also without prompting. I gave then no hint about whether
    DD correctly simulated by HHH halts.
    > When HHH returns 0, it did not detect a non-termination behaviour
    pattern, but it incorrectly assumes a non-termination behaviour pattern.
    HHH does not analyse the conditional branch instructions encountered
    during the simulation and it does not prove that the conditions for alternate branches will not be met when the simulation would be continued. Therefore, the abort is premature, and the return value is based on incorrect assumptions.

    (b) Simulated input reaches its simulated "return" statement:
         return 1.

    typedef int (*ptr)();
    int HHH(ptr P);

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

    What value should HHH(DD) correctly return?
    <Input to LLM systems>

    Three different LLM systems figured out that the execution
    trace of DD correctly simulated by HHH does match the
    *recursive simulation non-halting behavior pattern*
    on their own without prompting that such a pattern even
    exists. They also figured out that HHH(DD)==0 is correct.

    Which follows directly from the incorrect input. The conclusion that HHH
    is correct is based on the assumption that HHH is correct. A circular reasoning, that is not a proof.


    https://claude.ai/share/da9e56ba-f4e9-45ee-9f2c-dc5ffe10f00c

    https://chatgpt.com/share/68939ee5-e2f8-8011-837d-438fe8e98b9c

    https://grok.com/share/c2hhcmQtMg%3D%3D_810120bb-5ab5-4bf8-af21-
    eedd0f09e141

    Two other LLM systems ChatGPT 5.0 and Gemini did the
    same thing yet had to be explicitly told not to guess.
    ChatGPT 5.0 admitted that guessing is its new default.

    It also wrote a script that forces it and every other
    LLM system into *think it through do not guess* mode.



    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Mr Flibble@flibble@red-dwarf.jmc.corp to comp.theory on Thu Aug 21 16:37:33 2025
    From Newsgroup: comp.theory

    On Thu, 21 Aug 2025 11:23:25 -0500, olcott wrote:

    On 8/21/2025 11:20 AM, dbush wrote:
    On 8/21/2025 12:13 PM, olcott wrote:
    That all the proofs that I know of Linz in particular require that
    mapping from non-input Turing machines that are not mere descriptions.


    In other words, you're saying Turing machines can't do arithmetic
    because that would require mapping from non-input numbers that are not
    mere descriptions.


    I am saying that when DD calls HHH(DD) in recursive simulation that this cannot f-cking be simply ignored.

    But that is exactly what you are doing by aborting the simulation you are SIMPLY IGNORING simulation steps.

    /Flibble
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Richard Heathfield@rjh@cpax.org.uk to comp.theory on Thu Aug 21 17:46:11 2025
    From Newsgroup: comp.theory

    On 21/08/2025 16:23, olcott wrote:
    On 8/21/2025 3:15 AM, Richard Heathfield wrote:
    On 21/08/2025 08:55, Fred. Zwarts wrote:
    Op 20.aug.2025 om 18:20 schreef olcott:
    Turing machine deciders only compute the mapping
    from their inputs...

    Thus HHH(DD) is not supposed to report on the behavior
    of its caller because its caller *IS NOT ITS INPUT*

    <Input to LLM systems>
    Simulating Termination Analyzer HHH correctly simulates its
    input until:
    (a) Detects a non-terminating behavior pattern:
         abort simulation and return 0.

    Here Olcott injects his prejudice in the input.
    When HHH returns 0, it did not detect a non-termination
    behaviour pattern, but it incorrectly assumes a
    non-termination behaviour pattern.


    I did not even tell the LLM systems whether not
    not DD halts. They figured out that DD matches the
    *recursive simulation non-halting behavior pattern*
    on their own and I did not even tell them that this
    pattern exists. They figured out the HHH(DD)==0 is
    correct and I did not even tell them that DD doesn't halt.

    ...which is odd, because it then terminates DD. Since DD calls
    HHH in the first place (and whether directly or in simulation
    shouldn't matter if the simulation is faithful), we may
    reasonably deduce that DD exhibits terminating behaviour. HHH
    is therefore duty-bound to report to its caller that DD halts.


    HOW MANY TIMES DO I HAVE TO SAY THIS BEFORE
    YOU NOTICE THAT I EVER SAID IT AT LEAST ONCE?

    Capitals, eh?

    Turing machine deciders only compute the mapping
    from their inputs...

    HHH isn't a TM, but let's run with it. HHH's input is DD, so
    that's what HHH has to work with.

    DD calls HHH, so HHH is therefore part of what HHH has to work
    with, and its behaviour affects DD's behaviour. You need to
    account for that, but you don't seem terribly interested. You
    just want to exercise your caps lock. Wake me up when you find
    your ears.

    I keep telling you that stopping does not
    DOES NOT COUNT AS HALTING

    Yeah it does.

    Verb

    stop (third-person singular simple present stops, present
    participle stopping, simple past and past participle stopped)

    Meanings include:

    To cease moving, not to continue, to cause (something) to cease
    moving or progressing, to cease, to no longer continue (doing
    something, especially something wrong or undesirable, or
    something causing irritation or annoyance), to cause (something)
    to come to an end, to end someone else's activity, to close or
    block an opening, to adjust the aperture of a camera lens, to
    stay, to spend a short time, to reside or tarry temporarily, to
    regulate the sounds of (musical strings, etc.) by pressing them
    against the fingerboard with the finger, or otherwise shortening
    the vibrating part, to punctuate, to make fast, to stopper, to
    pronounce (a phoneme) as a stop.

    Verb

    halt (third-person singular simple present halts, present
    participle halting, simple past and past participle halted)

    Meanings include:

    To stop marching, to stop either temporarily or permanently, to
    bring to a stop, to cause to discontinue.

    You cannot reasonably distinguish between 'stop' and 'halt' and
    expect to be taken seriously.

    On the other hand, you can't reasonably claim to be correctly
    simulating a program that halts itself by saying it will never halt.
    --
    Richard Heathfield
    Email: rjh at cpax dot org dot uk
    "Usenet is a strange place" - dmr 29 July 1999
    Sig line 4 vacant - apply within

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to comp.theory on Thu Aug 21 12:00:26 2025
    From Newsgroup: comp.theory

    On 8/21/2025 11:46 AM, Richard Heathfield wrote:
    On 21/08/2025 16:23, olcott wrote:
    On 8/21/2025 3:15 AM, Richard Heathfield wrote:
    On 21/08/2025 08:55, Fred. Zwarts wrote:
    Op 20.aug.2025 om 18:20 schreef olcott:
    Turing machine deciders only compute the mapping
    from their inputs...

    Thus HHH(DD) is not supposed to report on the behavior
    of its caller because its caller *IS NOT ITS INPUT*

    <Input to LLM systems>
    Simulating Termination Analyzer HHH correctly simulates its input
    until:
    (a) Detects a non-terminating behavior pattern:
         abort simulation and return 0.

    Here Olcott injects his prejudice in the input.
    When HHH returns 0, it did not detect a non-termination behaviour
    pattern, but it incorrectly assumes a non-termination behaviour
    pattern.


    I did not even tell the LLM systems whether not
    not DD halts. They figured out that DD matches the
    *recursive simulation non-halting behavior pattern*
    on their own and I did not even tell them that this
    pattern exists. They figured out the HHH(DD)==0 is
    correct and I did not even tell them that DD doesn't halt.

    ...which is odd, because it then terminates DD. Since DD calls HHH in
    the first place (and whether directly or in simulation shouldn't
    matter if the simulation is faithful), we may reasonably deduce that
    DD exhibits terminating behaviour. HHH is therefore duty-bound to
    report to its caller that DD halts.


    HOW MANY TIMES DO I HAVE TO SAY THIS BEFORE
    YOU NOTICE THAT I EVER SAID IT AT LEAST ONCE?

    Capitals, eh?

    Turing machine deciders only compute the mapping
    from their inputs...

    HHH isn't a TM, but let's run with it. HHH's input is DD, so that's what
    HHH has to work with.

    DD calls HHH, so HHH is therefore part of what HHH has to work with, and
    its behaviour affects DD's behaviour. You need to account for that, but
    you don't seem terribly interested. You just want to exercise your caps lock. Wake me up when you find your ears.

    I keep telling you that stopping does not
    DOES NOT COUNT AS HALTING

    Yeah it does.


    counter-factual.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Alan Mackenzie@acm@muc.de to comp.theory on Thu Aug 21 22:27:30 2025
    From Newsgroup: comp.theory

    olcott <polcott333@gmail.com> wrote:
    On 8/21/2025 10:54 AM, Alan Mackenzie wrote:
    olcott <polcott333@gmail.com> wrote:
    [ .... ]
    HOW MANY TIMES DO I HAVE TO SAY THIS BEFORE
    YOU NOTICE THAT I EVER SAID IT AT LEAST ONCE?
    Turing machine deciders only compute the mapping
    from their inputs...
    Why do you bother saying it at all? How could it be otherwise?
    That all the proofs that I know of Linz in
    particular require that mapping from non-input
    Turing machines that are not mere descriptions.
    Either you've misunderstood those proofs, or the authors of those proofs misunderstood turing machines. My bet is on the former.
    What does "non-input turing machine" even mean?
    Linz requires Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ to report on
    the behavior of Ĥ applied to ⟨Ĥ⟩
    At the risk of repeating myself, a turing machine is a system of states
    and a tape which can be moved and both read from and written to. The
    tape has an initial content, and there is an initial state. Given these
    the machine changes state step by step.
    There is no "can", there is no "is permitted to", there is no "input"
    (except for the initial contents of the tape), there is no need to write
    "only ... from their inputs". The turing machine, including its tape
    contents, is a mathematical abstraction which is fully determined.
    *From the bottom of page 319 has been adapted to this* https://www.liarparadox.org/Peter_Linz_HP_317-320.pdf
    [ Irrelevant material removed. ]
    From the very definition of a turing machine, it does nothing but move
    from state to state and read from, write to, and move a tape of
    unbounded length.
    When you write stuff like the above, people just filter it out because
    it is meaninglessly tautological. And boring.
    They don't pay close enough attention to see the
    significance of it as I outlined above.
    No, I think you have failed to grasp the concept of the turing machine.
    It was conceived to be as economical as possible whilst still being able
    to model any computation. This makes it the standard thing for
    discussing computations and proving things about them.
    I was just trying to explain to you why people appeared not to notice you writing truisms about turing machines. They ignore them because they're
    of no interest. There's nothing to discuss about these truisms. If you repeatedly wrote 2 + 2 = 4, that would likewise get ignored. It's not interesting either.
    [ .... ]
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --
    Alan Mackenzie (Nuremberg, Germany).
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to comp.theory on Thu Aug 21 17:50:00 2025
    From Newsgroup: comp.theory

    On 8/21/2025 5:27 PM, Alan Mackenzie wrote:
    olcott <polcott333@gmail.com> wrote:
    On 8/21/2025 10:54 AM, Alan Mackenzie wrote:
    olcott <polcott333@gmail.com> wrote:

    [ .... ]

    HOW MANY TIMES DO I HAVE TO SAY THIS BEFORE
    YOU NOTICE THAT I EVER SAID IT AT LEAST ONCE?
    Turing machine deciders only compute the mapping
    from their inputs...

    Why do you bother saying it at all? How could it be otherwise?

    That all the proofs that I know of Linz in
    particular require that mapping from non-input
    Turing machines that are not mere descriptions.

    Either you've misunderstood those proofs, or the authors of those proofs misunderstood turing machines. My bet is on the former.

    What does "non-input turing machine" even mean?

    Linz requires Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ to report on
    the behavior of Ĥ applied to ⟨Ĥ⟩

    At the risk of repeating myself, a turing machine is a system of states
    and a tape which can be moved and both read from and written to. The
    tape has an initial content, and there is an initial state. Given these
    the machine changes state step by step.

    There is no "can", there is no "is permitted to", there is no "input"
    (except for the initial contents of the tape), there is no need to write "only ... from their inputs". The turing machine, including its tape contents, is a mathematical abstraction which is fully determined.

    *From the bottom of page 319 has been adapted to this*
    https://www.liarparadox.org/Peter_Linz_HP_317-320.pdf

    [ Irrelevant material removed. ]

    From the very definition of a turing machine, it does nothing but move
    from state to state and read from, write to, and move a tape of
    unbounded length.

    When you write stuff like the above, people just filter it out because
    it is meaninglessly tautological. And boring.

    They don't pay close enough attention to see the
    significance of it as I outlined above.

    No, I think you have failed to grasp the concept of the turing machine.
    It was conceived to be as economical as possible whilst still being able
    to model any computation. This makes it the standard thing for
    discussing computations and proving things about them.

    I was just trying to explain to you why people appeared not to notice you writing truisms about turing machines. They ignore them because they're
    of no interest. There's nothing to discuss about these truisms. If you repeatedly wrote 2 + 2 = 4, that would likewise get ignored. It's not interesting either.


    Ĥ.q0 ⟨Ĥ⟩ ⊢* Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ ⊢* Ĥ.∞,
    Ĥ.q0 ⟨Ĥ⟩ ⊢* Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ ⊢* Ĥ.qn

    No Turing machine can see its own behavior
    thus no Turing machine can report on its
    own behavior thus Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ cannot
    report on Ĥ applied to ⟨Ĥ⟩ even if Linz and
    other proofs say that it must.

    On the other hand when Ĥ.embedded_H correctly
    simulates its input ⟨Ĥ⟩ ⟨Ĥ⟩ this results in a
    non-halting sequence of steps.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From wij@wyniijj5@gmail.com to comp.theory on Fri Aug 22 07:02:30 2025
    From Newsgroup: comp.theory

    On Thu, 2025-08-21 at 17:50 -0500, olcott wrote:
    On 8/21/2025 5:27 PM, Alan Mackenzie wrote:
    olcott <polcott333@gmail.com> wrote:
    On 8/21/2025 10:54 AM, Alan Mackenzie wrote:
    olcott <polcott333@gmail.com> wrote:

    [ .... ]

    HOW MANY TIMES DO I HAVE TO SAY THIS BEFORE
    YOU NOTICE THAT I EVER SAID IT AT LEAST ONCE?
    Turing machine deciders only compute the mapping
    from their inputs...

    Why do you bother saying it at all?  How could it be otherwise?

    That all the proofs that I know of Linz in
    particular require that mapping from non-input
    Turing machines that are not mere descriptions.

    Either you've misunderstood those proofs, or the authors of those proofs misunderstood turing machines.  My bet is on the former.

    What does "non-input turing machine" even mean?

    Linz requires Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ to report on
    the behavior of Ĥ applied to ⟨Ĥ⟩

    At the risk of repeating myself, a turing machine is a system of states
    and a tape which can be moved and both read from and written to.  The
    tape has an initial content, and there is an initial state.  Given these the machine changes state step by step.

    There is no "can", there is no "is permitted to", there is no "input" (except for the initial contents of the tape), there is no need to write "only ... from their inputs".  The turing machine, including its tape contents, is a mathematical abstraction which is fully determined.

    *From the bottom of page 319 has been adapted to this* https://www.liarparadox.org/Peter_Linz_HP_317-320.pdf

    [ Irrelevant material removed. ]

     From the very definition of a turing machine, it does nothing but move
    from state to state and read from, write to, and move a tape of unbounded length.

    When you write stuff like the above, people just filter it out because it is meaninglessly tautological.  And boring.

    They don't pay close enough attention to see the
    significance of it as I outlined above.

    No, I think you have failed to grasp the concept of the turing machine.
    It was conceived to be as economical as possible whilst still being able
    to model any computation.  This makes it the standard thing for
    discussing computations and proving things about them.

    I was just trying to explain to you why people appeared not to notice you writing truisms about turing machines.  They ignore them because they're of no interest.  There's nothing to discuss about these truisms.  If you repeatedly wrote 2 + 2 = 4, that would likewise get ignored.  It's not interesting either.


    Ĥ.q0 ⟨Ĥ⟩ ⊢* Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ ⊢* Ĥ.∞,
    Ĥ.q0 ⟨Ĥ⟩ ⊢* Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ ⊢* Ĥ.qn

    No Turing machine can see its own behavior
    Nope, TM cannot see, TM reads symbols on its tape.
    thus no Turing machine can report on its
    own behavior thus Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ cannot
    report on Ĥ applied to ⟨Ĥ⟩ even if Linz and
    other proofs say that it must.

    On the other hand when Ĥ.embedded_H correctly
    simulates its input ⟨Ĥ⟩ ⟨Ĥ⟩ this results in a
    non-halting sequence of steps.
    So, all your deduction are base on false assumption and dogma
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to comp.theory on Thu Aug 21 18:06:41 2025
    From Newsgroup: comp.theory

    On 8/21/2025 6:02 PM, wij wrote:
    On Thu, 2025-08-21 at 17:50 -0500, olcott wrote:
    On 8/21/2025 5:27 PM, Alan Mackenzie wrote:
    olcott <polcott333@gmail.com> wrote:
    On 8/21/2025 10:54 AM, Alan Mackenzie wrote:
    olcott <polcott333@gmail.com> wrote:

    [ .... ]

    HOW MANY TIMES DO I HAVE TO SAY THIS BEFORE
    YOU NOTICE THAT I EVER SAID IT AT LEAST ONCE?
    Turing machine deciders only compute the mapping
    from their inputs...

    Why do you bother saying it at all?  How could it be otherwise?

    That all the proofs that I know of Linz in
    particular require that mapping from non-input
    Turing machines that are not mere descriptions.

    Either you've misunderstood those proofs, or the authors of those proofs >>> misunderstood turing machines.  My bet is on the former.

    What does "non-input turing machine" even mean?

    Linz requires Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ to report on
    the behavior of Ĥ applied to ⟨Ĥ⟩

    At the risk of repeating myself, a turing machine is a system of states
    and a tape which can be moved and both read from and written to.  The
    tape has an initial content, and there is an initial state.  Given these >>> the machine changes state step by step.

    There is no "can", there is no "is permitted to", there is no "input"
    (except for the initial contents of the tape), there is no need to write >>> "only ... from their inputs".  The turing machine, including its tape
    contents, is a mathematical abstraction which is fully determined.

    *From the bottom of page 319 has been adapted to this*
    https://www.liarparadox.org/Peter_Linz_HP_317-320.pdf

    [ Irrelevant material removed. ]

     From the very definition of a turing machine, it does nothing but move >>>>> from state to state and read from, write to, and move a tape of
    unbounded length.

    When you write stuff like the above, people just filter it out because >>>>> it is meaninglessly tautological.  And boring.

    They don't pay close enough attention to see the
    significance of it as I outlined above.

    No, I think you have failed to grasp the concept of the turing machine.
    It was conceived to be as economical as possible whilst still being able >>> to model any computation.  This makes it the standard thing for
    discussing computations and proving things about them.

    I was just trying to explain to you why people appeared not to notice you >>> writing truisms about turing machines.  They ignore them because they're >>> of no interest.  There's nothing to discuss about these truisms.  If you >>> repeatedly wrote 2 + 2 = 4, that would likewise get ignored.  It's not
    interesting either.


    Ĥ.q0 ⟨Ĥ⟩ ⊢* Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ ⊢* Ĥ.∞,
    Ĥ.q0 ⟨Ĥ⟩ ⊢* Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ ⊢* Ĥ.qn

    No Turing machine can see its own behavior

    Nope, TM cannot see, TM reads symbols on its tape.


    The symbols on its tape are not its actual self.

    thus no Turing machine can report on its
    own behavior thus Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ cannot
    report on Ĥ applied to ⟨Ĥ⟩ even if Linz and
    other proofs say that it must.

    On the other hand when Ĥ.embedded_H correctly
    simulates its input ⟨Ĥ⟩ ⟨Ĥ⟩ this results in a
    non-halting sequence of steps.

    So, all your deduction are base on false assumption and dogma


    No, yet again you do not pay enough attention.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From wij@wyniijj5@gmail.com to comp.theory on Fri Aug 22 07:10:59 2025
    From Newsgroup: comp.theory

    On Thu, 2025-08-21 at 18:06 -0500, olcott wrote:
    On 8/21/2025 6:02 PM, wij wrote:
    On Thu, 2025-08-21 at 17:50 -0500, olcott wrote:
    On 8/21/2025 5:27 PM, Alan Mackenzie wrote:
    olcott <polcott333@gmail.com> wrote:
    On 8/21/2025 10:54 AM, Alan Mackenzie wrote:
    olcott <polcott333@gmail.com> wrote:

    [ .... ]

    HOW MANY TIMES DO I HAVE TO SAY THIS BEFORE
    YOU NOTICE THAT I EVER SAID IT AT LEAST ONCE?
    Turing machine deciders only compute the mapping
    from their inputs...

    Why do you bother saying it at all?  How could it be otherwise?

    That all the proofs that I know of Linz in
    particular require that mapping from non-input
    Turing machines that are not mere descriptions.

    Either you've misunderstood those proofs, or the authors of those proofs
    misunderstood turing machines.  My bet is on the former.

    What does "non-input turing machine" even mean?

    Linz requires Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ to report on
    the behavior of Ĥ applied to ⟨Ĥ⟩

    At the risk of repeating myself, a turing machine is a system of states and a tape which can be moved and both read from and written to.  The tape has an initial content, and there is an initial state.  Given these
    the machine changes state step by step.

    There is no "can", there is no "is permitted to", there is no "input" (except for the initial contents of the tape), there is no need to write
    "only ... from their inputs".  The turing machine, including its tape contents, is a mathematical abstraction which is fully determined.

    *From the bottom of page 319 has been adapted to this* https://www.liarparadox.org/Peter_Linz_HP_317-320.pdf

    [ Irrelevant material removed. ]

      From the very definition of a turing machine, it does nothing but move
    from state to state and read from, write to, and move a tape of unbounded length.

    When you write stuff like the above, people just filter it out because
    it is meaninglessly tautological.  And boring.

    They don't pay close enough attention to see the
    significance of it as I outlined above.

    No, I think you have failed to grasp the concept of the turing machine. It was conceived to be as economical as possible whilst still being able
    to model any computation.  This makes it the standard thing for discussing computations and proving things about them.

    I was just trying to explain to you why people appeared not to notice you
    writing truisms about turing machines.  They ignore them because they're
    of no interest.  There's nothing to discuss about these truisms.  If you
    repeatedly wrote 2 + 2 = 4, that would likewise get ignored.  It's not interesting either.


    Ĥ.q0 ⟨Ĥ⟩ ⊢* Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ ⊢* Ĥ.∞,
    Ĥ.q0 ⟨Ĥ⟩ ⊢* Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ ⊢* Ĥ.qn

    No Turing machine can see its own behavior

    Nope, TM cannot see, TM reads symbols on its tape.


    The symbols on its tape are not its actual self.
    What is exactly "its actual self" on its tape?
    It seems you don't know, right.
    thus no Turing machine can report on its
    own behavior thus Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ cannot
    report on Ĥ applied to ⟨Ĥ⟩ even if Linz and
    other proofs say that it must.

    On the other hand when Ĥ.embedded_H correctly
    simulates its input ⟨Ĥ⟩ ⟨Ĥ⟩ this results in a
    non-halting sequence of steps.

    So, all your deduction are base on false assumption and dogma


    No, yet again you do not pay enough attention.

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Fred. Zwarts@F.Zwarts@HetNet.nl to comp.theory on Fri Aug 22 09:50:00 2025
    From Newsgroup: comp.theory

    Op 22.aug.2025 om 00:50 schreef olcott:
    On 8/21/2025 5:27 PM, Alan Mackenzie wrote:
    olcott <polcott333@gmail.com> wrote:
    On 8/21/2025 10:54 AM, Alan Mackenzie wrote:
    olcott <polcott333@gmail.com> wrote:

    [ .... ]

    HOW MANY TIMES DO I HAVE TO SAY THIS BEFORE
    YOU NOTICE THAT I EVER SAID IT AT LEAST ONCE?
    Turing machine deciders only compute the mapping
    from their inputs...

    Why do you bother saying it at all?  How could it be otherwise?

    That all the proofs that I know of Linz in
    particular require that mapping from non-input
    Turing machines that are not mere descriptions.

    Either you've misunderstood those proofs, or the authors of those proofs
    misunderstood turing machines.  My bet is on the former.

    What does "non-input turing machine" even mean?

    Linz requires Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ to report on
    the behavior of Ĥ applied to ⟨Ĥ⟩

    At the risk of repeating myself, a turing machine is a system of states
    and a tape which can be moved and both read from and written to.  The
    tape has an initial content, and there is an initial state.  Given these
    the machine changes state step by step.

    There is no "can", there is no "is permitted to", there is no "input"
    (except for the initial contents of the tape), there is no need to write
    "only ... from their inputs".  The turing machine, including its tape
    contents, is a mathematical abstraction which is fully determined.

    *From the bottom of page 319 has been adapted to this*
    https://www.liarparadox.org/Peter_Linz_HP_317-320.pdf

    [ Irrelevant material removed. ]

     From the very definition of a turing machine, it does nothing but move >>>> from state to state and read from, write to, and move a tape of
    unbounded length.

    When you write stuff like the above, people just filter it out because >>>> it is meaninglessly tautological.  And boring.

    They don't pay close enough attention to see the
    significance of it as I outlined above.

    No, I think you have failed to grasp the concept of the turing machine.
    It was conceived to be as economical as possible whilst still being able
    to model any computation.  This makes it the standard thing for
    discussing computations and proving things about them.

    I was just trying to explain to you why people appeared not to notice you
    writing truisms about turing machines.  They ignore them because they're
    of no interest.  There's nothing to discuss about these truisms.  If you >> repeatedly wrote 2 + 2 = 4, that would likewise get ignored.  It's not
    interesting either.


    Ĥ.q0 ⟨Ĥ⟩ ⊢* Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ ⊢* Ĥ.∞,
    Ĥ.q0 ⟨Ĥ⟩ ⊢* Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ ⊢* Ĥ.qn

    No Turing machine can see its own behavior
    thus no Turing machine can report on its
    own behavior thus Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ cannot
    report on Ĥ applied to ⟨Ĥ⟩ even if Linz and
    other proofs say that it must.

    Incorrect. There is no need to report on its own behaviour. It must
    report the behaviour specified in the input.
    Further it does not need to report on its own behaviour, but on the
    behaviour of a copy of the code specified in the input. This input has everything needed to analyse the behaviour.


    On the other hand when Ĥ.embedded_H correctly
    simulates its input ⟨Ĥ⟩ ⟨Ĥ⟩ this results in a
    non-halting sequence of steps.


    Incorrect, it results in a finite recursion.

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Fred. Zwarts@F.Zwarts@HetNet.nl to comp.theory on Fri Aug 22 09:54:26 2025
    From Newsgroup: comp.theory

    Op 21.aug.2025 om 18:36 schreef olcott:
    On 8/21/2025 2:55 AM, Fred. Zwarts wrote:
    Op 20.aug.2025 om 18:20 schreef olcott:
    Turing machine deciders only compute the mapping
    from their inputs...

    Thus HHH(DD) is not supposed to report on the behavior
    of its caller because its caller *IS NOT ITS INPUT*

    <Input to LLM systems>
    Simulating Termination Analyzer HHH correctly simulates its input until: >>> (a) Detects a non-terminating behavior pattern:
         abort simulation and return 0.

    Here Olcott injects his prejudice in the input.

    Incorrect. I just defined the notion of
    Simulating Termination Analyzer HHH.

    Pretending that such a thing exists is a prejudice.
    A simulating Termination Analyser does not exist.
    Assuming that it exists, is not a proof that it does exist. That is an
    invalid circular reasoning.
    It does not exist, therefore all conclusions are void.


    They figured out the *recursive simulation non-halting behavior pattern* entirely on their own without prompting and figured out that HHH(DD)==0
    is correct also without prompting. I gave then no hint about whether
    DD correctly simulated by HHH halts.
    ; When HHH returns 0, it did not detect a non-termination behaviour
    pattern, but it incorrectly assumes a non-termination behaviour pattern.
    HHH does not analyse the conditional branch instructions encountered
    during the simulation and it does not prove that the conditions for
    alternate branches will not be met when the simulation would be
    continued.
    Therefore, the abort is premature, and the return value is based on
    incorrect assumptions.

    (b) Simulated input reaches its simulated "return" statement:
         return 1.

    typedef int (*ptr)();
    int HHH(ptr P);

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

    What value should HHH(DD) correctly return?
    <Input to LLM systems>

    Three different LLM systems figured out that the execution
    trace of DD correctly simulated by HHH does match the
    *recursive simulation non-halting behavior pattern*
    on their own without prompting that such a pattern even
    exists. They also figured out that HHH(DD)==0 is correct.

    Which follows directly from the incorrect input. The conclusion that
    HHH is correct is based on the assumption that HHH is correct. A
    circular reasoning, that is not a proof.


    https://claude.ai/share/da9e56ba-f4e9-45ee-9f2c-dc5ffe10f00c

    https://chatgpt.com/share/68939ee5-e2f8-8011-837d-438fe8e98b9c

    https://grok.com/share/c2hhcmQtMg%3D%3D_810120bb-5ab5-4bf8-af21-
    eedd0f09e141

    Two other LLM systems ChatGPT 5.0 and Gemini did the
    same thing yet had to be explicitly told not to guess.
    ChatGPT 5.0 admitted that guessing is its new default.

    It also wrote a script that forces it and every other
    LLM system into *think it through do not guess* mode.






    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Richard Damon@Richard@Damon-Family.org to comp.theory on Fri Aug 22 11:45:35 2025
    From Newsgroup: comp.theory

    On 8/21/25 11:23 AM, olcott wrote:
    On 8/21/2025 3:15 AM, Richard Heathfield wrote:
    On 21/08/2025 08:55, Fred. Zwarts wrote:
    Op 20.aug.2025 om 18:20 schreef olcott:
    Turing machine deciders only compute the mapping
    from their inputs...

    Thus HHH(DD) is not supposed to report on the behavior
    of its caller because its caller *IS NOT ITS INPUT*

    <Input to LLM systems>
    Simulating Termination Analyzer HHH correctly simulates its input
    until:
    (a) Detects a non-terminating behavior pattern:
         abort simulation and return 0.

    Here Olcott injects his prejudice in the input.
    When HHH returns 0, it did not detect a non-termination behaviour
    pattern, but it incorrectly assumes a non-termination behaviour pattern.


    I did not even tell the LLM systems whether not
    not DD halts. They figured out that DD matches the
    *recursive simulation non-halting behavior pattern*
    on their own and I did not even tell them that this
    pattern exists. They figured out the HHH(DD)==0 is
    correct and I did not even tell them that DD doesn't halt.

    Because you lied as persented that either HHH could simulate the input
    to the end, or it WILL find a pattern that indicates non-halting.

    Since that is a lie, the answer isn't correct.


    ...which is odd, because it then terminates DD. Since DD calls HHH in
    the first place (and whether directly or in simulation shouldn't
    matter if the simulation is faithful), we may reasonably deduce that
    DD exhibits terminating behaviour. HHH is therefore duty-bound to
    report to its caller that DD halts.


    HOW MANY TIMES DO I HAVE TO SAY THIS BEFORE
    YOU NOTICE THAT I EVER SAID IT AT LEAST ONCE?
    Turing machine deciders only compute the mapping
    from their inputs...

    And how many times do you need to be told that this is a statement of
    ABILITY, and not on REQUIREMENTS.

    The required mapping of input to output does not need to be "computable"
    to ask a decider to perform it, on for it to be able to succeed.

    You are just proving you don't understand the nature of the problem you
    are talking about.


    HHH does not analyse the conditional branch instructions encountered
    during the simulation and it does not prove that the conditions for
    alternate branches will not be met when the simulation would be
    continued.

    Agreed.

    All that HHH need know is that DD correctly simulated
    by HHH cannot possibly reach its own "return" instruction
    final halt state NO MATTER WHAT HHH DOES.

    Nope, just shows that you have lied to yourself. If that WAS the
    condition, then HHH would need to be required to be a correct
    simulatior, and not allowed to abort its simulation.

    The closest correct criteria is that HHH needs to know if DD correctly simulated (by a correct simulator, not necessarily itself) would reach
    its own return statement.

    Sorry, by lying about the requriements, you just prove that you are a liar.


    I keep telling you that stopping does not
    DOES NOT COUNT AS HALTING and you keep forgetting.

    And stopping simulation also doesn't count an not-halting.

    We need to look at a correct simulation if this exact input, which uses
    the HHH that stops it simulation, to determine the correct answer.

    All you are doing is showing you don't know what a program is.



    Therefore, the abort is premature, and the return value is based on
    incorrect assumptions.

    Agreed.

    Three different LLM systems figured out that the execution
    trace of DD correctly simulated by HHH does match the
    *recursive simulation non-halting behavior pattern*
    on their own without prompting that such a pattern even
    exists. They also figured out that HHH(DD)==0 is correct.

    Should be 1, of course.

    Which follows directly from the incorrect input. The conclusion that
    HHH is correct is based on the assumption that HHH is correct. A
    circular reasoning, that is not a proof.

    Agreed.




    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to comp.theory on Fri Aug 22 11:09:34 2025
    From Newsgroup: comp.theory

    On 8/22/2025 2:50 AM, Fred. Zwarts wrote:
    Op 22.aug.2025 om 00:50 schreef olcott:
    On 8/21/2025 5:27 PM, Alan Mackenzie wrote:
    olcott <polcott333@gmail.com> wrote:
    On 8/21/2025 10:54 AM, Alan Mackenzie wrote:
    olcott <polcott333@gmail.com> wrote:

    [ .... ]

    HOW MANY TIMES DO I HAVE TO SAY THIS BEFORE
    YOU NOTICE THAT I EVER SAID IT AT LEAST ONCE?
    Turing machine deciders only compute the mapping
    from their inputs...

    Why do you bother saying it at all?  How could it be otherwise?

    That all the proofs that I know of Linz in
    particular require that mapping from non-input
    Turing machines that are not mere descriptions.

    Either you've misunderstood those proofs, or the authors of those proofs >>> misunderstood turing machines.  My bet is on the former.

    What does "non-input turing machine" even mean?

    Linz requires Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ to report on
    the behavior of Ĥ applied to ⟨Ĥ⟩

    At the risk of repeating myself, a turing machine is a system of states
    and a tape which can be moved and both read from and written to.  The
    tape has an initial content, and there is an initial state.  Given these >>> the machine changes state step by step.

    There is no "can", there is no "is permitted to", there is no "input"
    (except for the initial contents of the tape), there is no need to write >>> "only ... from their inputs".  The turing machine, including its tape
    contents, is a mathematical abstraction which is fully determined.

    *From the bottom of page 319 has been adapted to this*
    https://www.liarparadox.org/Peter_Linz_HP_317-320.pdf

    [ Irrelevant material removed. ]

     From the very definition of a turing machine, it does nothing but >>>>> move
    from state to state and read from, write to, and move a tape of
    unbounded length.

    When you write stuff like the above, people just filter it out because >>>>> it is meaninglessly tautological.  And boring.

    They don't pay close enough attention to see the
    significance of it as I outlined above.

    No, I think you have failed to grasp the concept of the turing machine.
    It was conceived to be as economical as possible whilst still being able >>> to model any computation.  This makes it the standard thing for
    discussing computations and proving things about them.

    I was just trying to explain to you why people appeared not to notice
    you
    writing truisms about turing machines.  They ignore them because they're >>> of no interest.  There's nothing to discuss about these truisms.  If you >>> repeatedly wrote 2 + 2 = 4, that would likewise get ignored.  It's not
    interesting either.


    Ĥ.q0 ⟨Ĥ⟩ ⊢* Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ ⊢* Ĥ.∞,
    Ĥ.q0 ⟨Ĥ⟩ ⊢* Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ ⊢* Ĥ.qn

    No Turing machine can see its own behavior
    thus no Turing machine can report on its
    own behavior thus Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ cannot
    report on Ĥ applied to ⟨Ĥ⟩ even if Linz and
    other proofs say that it must.

    Incorrect. There is no need to report on its own behaviour. It must
    report the behaviour specified in the input.
    Further it does not need to report on its own behaviour, but on the behaviour of a copy of the code specified in the input. This input has everything needed to analyse the behaviour.


    On the other hand when Ĥ.embedded_H correctly
    simulates its input ⟨Ĥ⟩ ⟨Ĥ⟩ this results in a
    non-halting sequence of steps.


    Incorrect, it results in a finite recursion.


    It *is* an infinite recursion behavior pattern that
    is recognized in a finite number of steps the same
    way that this infinite recursion behavior pattern
    is recognized in a finite number of steps:

    void Infinite_Recursion()
    {
    Infinite_Recursion();
    return;
    }

    *Simply detect the repeating state*
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to comp.theory on Fri Aug 22 11:27:31 2025
    From Newsgroup: comp.theory

    On 8/22/2025 2:54 AM, Fred. Zwarts wrote:
    Op 21.aug.2025 om 18:36 schreef olcott:
    On 8/21/2025 2:55 AM, Fred. Zwarts wrote:
    Op 20.aug.2025 om 18:20 schreef olcott:
    Turing machine deciders only compute the mapping
    from their inputs...

    Thus HHH(DD) is not supposed to report on the behavior
    of its caller because its caller *IS NOT ITS INPUT*

    <Input to LLM systems>
    Simulating Termination Analyzer HHH correctly simulates its input
    until:
    (a) Detects a non-terminating behavior pattern:
         abort simulation and return 0.

    Here Olcott injects his prejudice in the input.

    Incorrect. I just defined the notion of
    Simulating Termination Analyzer HHH.

    Pretending that such a thing exists is a prejudice.
    A simulating Termination Analyser does not exist.
    Assuming that it exists, is not a proof that it does exist. That is an invalid circular reasoning.
    It does not exist, therefore all conclusions are void.


    Unlike a halt decider that is required to be all
    knowing and correctly decide every input a
    termination analyzer only needs to get one input
    and all of the inputs to this input correctly.

    Since HHH() only takes inputs having no inputs
    HHH is a termination analyzer for:
    void Infinite_Recursion()
    void Infinite_Loop()
    int factorial_caller()

    void Infinite_Recursion()
    {
    Infinite_Recursion();
    return;
    }

    void Infinite_Loop()
    {
    HERE: goto HERE;
    return;
    }

    int factorial(int n)
    {
    if (n >= 1)
    return n*factorial(n-1);
    else
    return 1;
    }

    int factorial_caller()
    {
    factorial(5);
    }
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Richard Heathfield@rjh@cpax.org.uk to comp.theory on Fri Aug 22 17:36:29 2025
    From Newsgroup: comp.theory

    On 22/08/2025 17:09, olcott wrote:
    On 8/22/2025 2:50 AM, Fred. Zwarts wrote:
    Op 22.aug.2025 om 00:50 schreef olcott:

    On the other hand when Ĥ.embedded_H correctly
    simulates its input ⟨Ĥ⟩ ⟨Ĥ⟩ this results in a
    non-halting sequence of steps.


    Incorrect, it results in a finite recursion.


    It *is* an infinite recursion behavior pattern that
    is recognized in a finite number of steps the same
    way that this infinite recursion behavior pattern
    is recognized in a finite number of steps:

    void Infinite_Recursion()
    {
      Infinite_Recursion();
      return;
    }

    It's /not/ the same, though, is it?

    Infinite_Recursion() doesn't take any steps to avoid infinite
    recursion. INFINITE

    expr() { term(); op(); term(); }

    term() { factor(); op(); factor(); }

    factor() { expr(); /* or number */}

    /looks/ like infinite recursion, but of course the grammar will
    stop it. NOT INFINITE

    factorial() { while not base case{calc * factorial()}} stops
    itself with a base case. NOT INFINITE

    DD() { HHH(); } NOT INFINITE because it has a built-in brake
    called HHH.


    Conclusion: if HHH detects runaway recursion, it does so
    erroneously. DD can't runaway recurse because HHH stops it by
    erroneously detecting non-existent runaway recursion and aborting
    the run.
    --
    Richard Heathfield
    Email: rjh at cpax dot org dot uk
    "Usenet is a strange place" - dmr 29 July 1999
    Sig line 4 vacant - apply within

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to comp.theory on Fri Aug 22 12:02:21 2025
    From Newsgroup: comp.theory

    On 8/22/2025 11:36 AM, Richard Heathfield wrote:
    On 22/08/2025 17:09, olcott wrote:
    On 8/22/2025 2:50 AM, Fred. Zwarts wrote:
    Op 22.aug.2025 om 00:50 schreef olcott:

    On the other hand when Ĥ.embedded_H correctly
    simulates its input ⟨Ĥ⟩ ⟨Ĥ⟩ this results in a
    non-halting sequence of steps.


    Incorrect, it results in a finite recursion.


    It *is* an infinite recursion behavior pattern that
    is recognized in a finite number of steps the same
    way that this infinite recursion behavior pattern
    is recognized in a finite number of steps:

    void Infinite_Recursion()
    {
       Infinite_Recursion();
       return;
    }

    It's /not/ the same, though, is it?

    Infinite_Recursion() doesn't take any steps to avoid infinite recursion. INFINITE

    expr() { term(); op(); term(); }

    term() { factor(); op(); factor(); }

    factor() { expr(); /* or number */}

    /looks/ like infinite recursion, but of course the grammar will stop it.
    NOT INFINITE

    factorial() { while not base case{calc * factorial()}} stops itself with
    a base case.  NOT INFINITE

    DD() { HHH(); }  NOT INFINITE because it has a built-in brake called HHH.


    Conclusion: if HHH detects runaway recursion, it does so erroneously. DD can't runaway recurse because HHH stops it by erroneously detecting non- existent runaway recursion and aborting the run.


    When-so-ever HHH correctly predicts that DD
    correctly simulated by HHH cannot possibly
    reach its own simulated "return" statement
    final halt state then HHH is correct to kill
    its entire simulation process and return 0.
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Richard Heathfield@rjh@cpax.org.uk to comp.theory on Fri Aug 22 18:12:06 2025
    From Newsgroup: comp.theory

    On 22/08/2025 18:02, olcott wrote:
    On 8/22/2025 11:36 AM, Richard Heathfield wrote:

    <snip>

    DD() { HHH(); }  NOT INFINITE because it has a built-in brake
    called HHH.


    Conclusion: if HHH detects runaway recursion, it does so
    erroneously. DD can't runaway recurse because HHH stops it by
    erroneously detecting non- existent runaway recursion and
    aborting the run.


    When-so-ever HHH correctly predicts that DD
    correctly simulated by HHH cannot possibly
    reach its own simulated "return" statement

    "correctly simulates" begs the question. Try again.
    --
    Richard Heathfield
    Email: rjh at cpax dot org dot uk
    "Usenet is a strange place" - dmr 29 July 1999
    Sig line 4 vacant - apply within

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From dbush@dbush.mobile@gmail.com to comp.theory on Fri Aug 22 13:27:23 2025
    From Newsgroup: comp.theory

    On 8/22/2025 12:09 PM, olcott wrote:
    On 8/22/2025 2:50 AM, Fred. Zwarts wrote:
    Op 22.aug.2025 om 00:50 schreef olcott:
    On 8/21/2025 5:27 PM, Alan Mackenzie wrote:
    olcott <polcott333@gmail.com> wrote:
    On 8/21/2025 10:54 AM, Alan Mackenzie wrote:
    olcott <polcott333@gmail.com> wrote:

    [ .... ]

    HOW MANY TIMES DO I HAVE TO SAY THIS BEFORE
    YOU NOTICE THAT I EVER SAID IT AT LEAST ONCE?
    Turing machine deciders only compute the mapping
    from their inputs...

    Why do you bother saying it at all?  How could it be otherwise?

    That all the proofs that I know of Linz in
    particular require that mapping from non-input
    Turing machines that are not mere descriptions.

    Either you've misunderstood those proofs, or the authors of those
    proofs
    misunderstood turing machines.  My bet is on the former.

    What does "non-input turing machine" even mean?

    Linz requires Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ to report on
    the behavior of Ĥ applied to ⟨Ĥ⟩

    At the risk of repeating myself, a turing machine is a system of states >>>> and a tape which can be moved and both read from and written to.  The >>>> tape has an initial content, and there is an initial state.  Given
    these
    the machine changes state step by step.

    There is no "can", there is no "is permitted to", there is no "input"
    (except for the initial contents of the tape), there is no need to
    write
    "only ... from their inputs".  The turing machine, including its tape >>>> contents, is a mathematical abstraction which is fully determined.

    *From the bottom of page 319 has been adapted to this*
    https://www.liarparadox.org/Peter_Linz_HP_317-320.pdf

    [ Irrelevant material removed. ]

     From the very definition of a turing machine, it does nothing but >>>>>> move
    from state to state and read from, write to, and move a tape of
    unbounded length.

    When you write stuff like the above, people just filter it out
    because
    it is meaninglessly tautological.  And boring.

    They don't pay close enough attention to see the
    significance of it as I outlined above.

    No, I think you have failed to grasp the concept of the turing machine. >>>> It was conceived to be as economical as possible whilst still being
    able
    to model any computation.  This makes it the standard thing for
    discussing computations and proving things about them.

    I was just trying to explain to you why people appeared not to
    notice you
    writing truisms about turing machines.  They ignore them because
    they're
    of no interest.  There's nothing to discuss about these truisms.  If >>>> you
    repeatedly wrote 2 + 2 = 4, that would likewise get ignored.  It's not >>>> interesting either.


    Ĥ.q0 ⟨Ĥ⟩ ⊢* Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ ⊢* Ĥ.∞,
    Ĥ.q0 ⟨Ĥ⟩ ⊢* Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ ⊢* Ĥ.qn

    No Turing machine can see its own behavior
    thus no Turing machine can report on its
    own behavior thus Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ cannot
    report on Ĥ applied to ⟨Ĥ⟩ even if Linz and
    other proofs say that it must.

    Incorrect. There is no need to report on its own behaviour. It must
    report the behaviour specified in the input.
    Further it does not need to report on its own behaviour, but on the
    behaviour of a copy of the code specified in the input. This input has
    everything needed to analyse the behaviour.


    On the other hand when Ĥ.embedded_H correctly
    simulates its input ⟨Ĥ⟩ ⟨Ĥ⟩ this results in a
    non-halting sequence of steps.


    Incorrect, it results in a finite recursion.


    It *is* an infinite recursion behavior pattern
    False, as you have admitted on the record (see below):


    On 8/15/2025 11:37 AM, dbush wrote:
    On 8/15/2025 10:24 AM, olcott wrote:
    On 8/15/2025 7:58 AM, dbush wrote:
    On 8/15/2025 8:48 AM, olcott wrote:
    <Input to LLM systems>
    Simulating Termination Analyzer HHH correctly simulates its input
    until:
    (a) Detects a non-terminating behavior pattern:
    abort simulation and return 0.
    (b) Simulated input reaches its simulated "return" statement:
    return 1.

    And HHH fails to do so as the pattern it detects exists in the
    halting program DD and is therefore not a non-halting behavior pattern.

    Failing to explain why this is wrong in your next reply or within one
    hour of your next post in this newsgroup will be taken as your
    official on-the-record admission that the pattern HHH detects is NOT
    a non- halting behavior pattern

    Let the record show that Peter Olcott made no attempt to explain why the above is wrong. Therefore:

    Let The Record Show:

    That Peter Olcott

    Has *officially* admitted

    That the pattern detected by HHH is in fact NOT a non-halting behavior pattern because it exists in the halting computation DD, and furthermore than HHH fails to meet the specification that he gave.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From dbush@dbush.mobile@gmail.com to comp.theory on Fri Aug 22 13:30:29 2025
    From Newsgroup: comp.theory

    On 8/22/2025 1:02 PM, olcott wrote:
    On 8/22/2025 11:36 AM, Richard Heathfield wrote:
    On 22/08/2025 17:09, olcott wrote:
    On 8/22/2025 2:50 AM, Fred. Zwarts wrote:
    Op 22.aug.2025 om 00:50 schreef olcott:

    On the other hand when Ĥ.embedded_H correctly
    simulates its input ⟨Ĥ⟩ ⟨Ĥ⟩ this results in a
    non-halting sequence of steps.


    Incorrect, it results in a finite recursion.


    It *is* an infinite recursion behavior pattern that
    is recognized in a finite number of steps the same
    way that this infinite recursion behavior pattern
    is recognized in a finite number of steps:

    void Infinite_Recursion()
    {
       Infinite_Recursion();
       return;
    }

    It's /not/ the same, though, is it?

    Infinite_Recursion() doesn't take any steps to avoid infinite
    recursion. INFINITE

    expr() { term(); op(); term(); }

    term() { factor(); op(); factor(); }

    factor() { expr(); /* or number */}

    /looks/ like infinite recursion, but of course the grammar will stop
    it. NOT INFINITE

    factorial() { while not base case{calc * factorial()}} stops itself
    with a base case.  NOT INFINITE

    DD() { HHH(); }  NOT INFINITE because it has a built-in brake called HHH. >>

    Conclusion: if HHH detects runaway recursion, it does so erroneously.
    DD can't runaway recurse because HHH stops it by erroneously detecting
    non- existent runaway recursion and aborting the run.


    When-so-ever HHH correctly predicts that DD
    correctly simulated by HHH cannot possibly
    reach its own simulated "return" statement
    final halt state

    In other words, when HHH reports on a non-input.

    Reporting on non-inputs is not allowed.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From olcott@polcott333@gmail.com to comp.theory on Fri Aug 22 12:31:35 2025
    From Newsgroup: comp.theory

    On 8/22/2025 12:27 PM, dbush wrote:
    On 8/22/2025 12:09 PM, olcott wrote:
    On 8/22/2025 2:50 AM, Fred. Zwarts wrote:
    Op 22.aug.2025 om 00:50 schreef olcott:
    On 8/21/2025 5:27 PM, Alan Mackenzie wrote:
    olcott <polcott333@gmail.com> wrote:
    On 8/21/2025 10:54 AM, Alan Mackenzie wrote:
    olcott <polcott333@gmail.com> wrote:

    [ .... ]

    HOW MANY TIMES DO I HAVE TO SAY THIS BEFORE
    YOU NOTICE THAT I EVER SAID IT AT LEAST ONCE?
    Turing machine deciders only compute the mapping
    from their inputs...

    Why do you bother saying it at all?  How could it be otherwise?

    That all the proofs that I know of Linz in
    particular require that mapping from non-input
    Turing machines that are not mere descriptions.

    Either you've misunderstood those proofs, or the authors of those
    proofs
    misunderstood turing machines.  My bet is on the former.

    What does "non-input turing machine" even mean?

    Linz requires Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ to report on
    the behavior of Ĥ applied to ⟨Ĥ⟩

    At the risk of repeating myself, a turing machine is a system of
    states
    and a tape which can be moved and both read from and written to.  The >>>>> tape has an initial content, and there is an initial state.  Given >>>>> these
    the machine changes state step by step.

    There is no "can", there is no "is permitted to", there is no "input" >>>>> (except for the initial contents of the tape), there is no need to
    write
    "only ... from their inputs".  The turing machine, including its tape >>>>> contents, is a mathematical abstraction which is fully determined.

    *From the bottom of page 319 has been adapted to this*
    https://www.liarparadox.org/Peter_Linz_HP_317-320.pdf

    [ Irrelevant material removed. ]

     From the very definition of a turing machine, it does nothing >>>>>>> but move
    from state to state and read from, write to, and move a tape of
    unbounded length.

    When you write stuff like the above, people just filter it out
    because
    it is meaninglessly tautological.  And boring.

    They don't pay close enough attention to see the
    significance of it as I outlined above.

    No, I think you have failed to grasp the concept of the turing
    machine.
    It was conceived to be as economical as possible whilst still being >>>>> able
    to model any computation.  This makes it the standard thing for
    discussing computations and proving things about them.

    I was just trying to explain to you why people appeared not to
    notice you
    writing truisms about turing machines.  They ignore them because
    they're
    of no interest.  There's nothing to discuss about these truisms.
    If you
    repeatedly wrote 2 + 2 = 4, that would likewise get ignored.  It's not >>>>> interesting either.


    Ĥ.q0 ⟨Ĥ⟩ ⊢* Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ ⊢* Ĥ.∞,
    Ĥ.q0 ⟨Ĥ⟩ ⊢* Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ ⊢* Ĥ.qn

    No Turing machine can see its own behavior
    thus no Turing machine can report on its
    own behavior thus Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ cannot
    report on Ĥ applied to ⟨Ĥ⟩ even if Linz and
    other proofs say that it must.

    Incorrect. There is no need to report on its own behaviour. It must
    report the behaviour specified in the input.
    Further it does not need to report on its own behaviour, but on the
    behaviour of a copy of the code specified in the input. This input
    has everything needed to analyse the behaviour.


    On the other hand when Ĥ.embedded_H correctly
    simulates its input ⟨Ĥ⟩ ⟨Ĥ⟩ this results in a
    non-halting sequence of steps.


    Incorrect, it results in a finite recursion.


    It *is* an infinite recursion behavior pattern
    False, as you have admitted on the record (see below):



    Liar
    --
    Copyright 2025 Olcott "Talent hits a target no one else can hit; Genius
    hits a target no one else can see." Arthur Schopenhauer
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From dbush@dbush.mobile@gmail.com to comp.theory on Fri Aug 22 13:36:25 2025
    From Newsgroup: comp.theory

    On 8/22/2025 1:31 PM, olcott wrote:
    On 8/22/2025 12:27 PM, dbush wrote:
    On 8/22/2025 12:09 PM, olcott wrote:
    On 8/22/2025 2:50 AM, Fred. Zwarts wrote:
    Op 22.aug.2025 om 00:50 schreef olcott:
    On 8/21/2025 5:27 PM, Alan Mackenzie wrote:
    olcott <polcott333@gmail.com> wrote:
    On 8/21/2025 10:54 AM, Alan Mackenzie wrote:
    olcott <polcott333@gmail.com> wrote:

    [ .... ]

    HOW MANY TIMES DO I HAVE TO SAY THIS BEFORE
    YOU NOTICE THAT I EVER SAID IT AT LEAST ONCE?
    Turing machine deciders only compute the mapping
    from their inputs...

    Why do you bother saying it at all?  How could it be otherwise? >>>>>>
    That all the proofs that I know of Linz in
    particular require that mapping from non-input
    Turing machines that are not mere descriptions.

    Either you've misunderstood those proofs, or the authors of those >>>>>> proofs
    misunderstood turing machines.  My bet is on the former.

    What does "non-input turing machine" even mean?

    Linz requires Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ to report on
    the behavior of Ĥ applied to ⟨Ĥ⟩

    At the risk of repeating myself, a turing machine is a system of
    states
    and a tape which can be moved and both read from and written to.  The >>>>>> tape has an initial content, and there is an initial state.  Given >>>>>> these
    the machine changes state step by step.

    There is no "can", there is no "is permitted to", there is no "input" >>>>>> (except for the initial contents of the tape), there is no need to >>>>>> write
    "only ... from their inputs".  The turing machine, including its tape >>>>>> contents, is a mathematical abstraction which is fully determined. >>>>>>
    *From the bottom of page 319 has been adapted to this*
    https://www.liarparadox.org/Peter_Linz_HP_317-320.pdf

    [ Irrelevant material removed. ]

     From the very definition of a turing machine, it does nothing >>>>>>>> but move
    from state to state and read from, write to, and move a tape of >>>>>>>> unbounded length.

    When you write stuff like the above, people just filter it out >>>>>>>> because
    it is meaninglessly tautological.  And boring.

    They don't pay close enough attention to see the
    significance of it as I outlined above.

    No, I think you have failed to grasp the concept of the turing
    machine.
    It was conceived to be as economical as possible whilst still
    being able
    to model any computation.  This makes it the standard thing for
    discussing computations and proving things about them.

    I was just trying to explain to you why people appeared not to
    notice you
    writing truisms about turing machines.  They ignore them because >>>>>> they're
    of no interest.  There's nothing to discuss about these truisms. >>>>>> If you
    repeatedly wrote 2 + 2 = 4, that would likewise get ignored.  It's >>>>>> not
    interesting either.


    Ĥ.q0 ⟨Ĥ⟩ ⊢* Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ ⊢* Ĥ.∞,
    Ĥ.q0 ⟨Ĥ⟩ ⊢* Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ ⊢* Ĥ.qn

    No Turing machine can see its own behavior
    thus no Turing machine can report on its
    own behavior thus Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ cannot
    report on Ĥ applied to ⟨Ĥ⟩ even if Linz and
    other proofs say that it must.

    Incorrect. There is no need to report on its own behaviour. It must
    report the behaviour specified in the input.
    Further it does not need to report on its own behaviour, but on the
    behaviour of a copy of the code specified in the input. This input
    has everything needed to analyse the behaviour.


    On the other hand when Ĥ.embedded_H correctly
    simulates its input ⟨Ĥ⟩ ⟨Ĥ⟩ this results in a
    non-halting sequence of steps.


    Incorrect, it results in a finite recursion.


    It *is* an infinite recursion behavior pattern
    False, as you have admitted on the record (see below):



    Liar

    And *once again* you lie that you made such an admission when the
    evidence is right there below in black and white for all to see.

    And given that you erased that evidence in your reply, I'll let you
    respond to yourself:

    On 8/10/2025 5:42 PM, olcott wrote:
    Erasing the immediate context that you are
    responding to is deceitful and dishonest.

    Your deceit and dishonesty know no bounds.


    On 8/15/2025 11:37 AM, dbush wrote:
    On 8/15/2025 10:24 AM, olcott wrote:
    On 8/15/2025 7:58 AM, dbush wrote:
    On 8/15/2025 8:48 AM, olcott wrote:
    <Input to LLM systems>
    Simulating Termination Analyzer HHH correctly simulates its input
    until:
    (a) Detects a non-terminating behavior pattern:
    abort simulation and return 0.
    (b) Simulated input reaches its simulated "return" statement:
    return 1.

    And HHH fails to do so as the pattern it detects exists in the
    halting program DD and is therefore not a non-halting behavior
    pattern.

    Failing to explain why this is wrong in your next reply or within one >> >>> hour of your next post in this newsgroup will be taken as your
    official on-the-record admission that the pattern HHH detects is NOT
    a non- halting behavior pattern

    Let the record show that Peter Olcott made no attempt to explain why the >> > above is wrong. Therefore:

    Let The Record Show:

    That Peter Olcott

    Has *officially* admitted

    That the pattern detected by HHH is in fact NOT a non-halting behavior
    pattern because it exists in the halting computation DD, and furthermore> >> > than HHH fails to meet the specification that he gave.

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Richard Damon@Richard@Damon-Family.org to comp.theory on Fri Aug 22 15:06:45 2025
    From Newsgroup: comp.theory

    On 8/22/25 1:31 PM, olcott wrote:

    Liar


    Projection.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Richard Damon@Richard@Damon-Family.org to comp.theory on Fri Aug 22 15:08:18 2025
    From Newsgroup: comp.theory

    On 8/22/25 1:02 PM, olcott wrote:
    On 8/22/2025 11:36 AM, Richard Heathfield wrote:


    When-so-ever HHH correctly predicts that DD
    correctly simulated by HHH cannot possibly
    reach its own simulated "return" statement
    final halt state then HHH is correct to kill
    its entire simulation process and return 0.



    Except that you claim is based on the idea that there can be two diffent program HHH and just one DD that calls THAT HHH.

    One input program can't call two different deciders.

    You claim is just based on lies and category errors.

    This shows your utter stupidity.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Fred. Zwarts@F.Zwarts@HetNet.nl to comp.theory on Sat Aug 23 10:38:22 2025
    From Newsgroup: comp.theory

    Op 22.aug.2025 om 18:27 schreef olcott:
    On 8/22/2025 2:54 AM, Fred. Zwarts wrote:
    Op 21.aug.2025 om 18:36 schreef olcott:
    On 8/21/2025 2:55 AM, Fred. Zwarts wrote:
    Op 20.aug.2025 om 18:20 schreef olcott:
    Turing machine deciders only compute the mapping
    from their inputs...

    Thus HHH(DD) is not supposed to report on the behavior
    of its caller because its caller *IS NOT ITS INPUT*

    <Input to LLM systems>
    Simulating Termination Analyzer HHH correctly simulates its input
    until:
    (a) Detects a non-terminating behavior pattern:
         abort simulation and return 0.

    Here Olcott injects his prejudice in the input.

    Incorrect. I just defined the notion of
    Simulating Termination Analyzer HHH.

    Pretending that such a thing exists is a prejudice.
    A simulating Termination Analyser does not exist.
    Assuming that it exists, is not a proof that it does exist. That is an
    invalid circular reasoning.
    It does not exist, therefore all conclusions are void.


    Unlike a halt decider that is required to be all
    knowing and correctly decide every input a
    termination analyzer only needs to get one input
    and all of the inputs to this input correctly.

    Since HHH() only takes inputs having no inputs
    HHH is a termination analyzer for:
    void Infinite_Recursion()
    void Infinite_Loop()
    int factorial_caller()

    void Infinite_Recursion()
    {
      Infinite_Recursion();
      return;
    }

    void Infinite_Loop()
    {
      HERE: goto HERE;
      return;
    }

    int factorial(int n)
    {
      if (n >= 1)
        return n*factorial(n-1);
      else
        return 1;
    }

    int factorial_caller()
    {
      factorial(5);
    }



    As usual irrelevant claims.
    That a buggy program produces a few correct reports by chance is not a
    proof that a correct simulating termination analyser exists.
    HHH fails for DD, as has been proven many times.
    --- Synchronet 3.21a-Linux NewsLink 1.2