• Re: What I told ChatGPT is essentially identical to the first page of m

    From Richard Damon@21:1/5 to olcott on Sun Oct 20 15:13:33 2024
    On 10/20/24 1:33 PM, olcott wrote:
    This is the only new material that sums up the
    essence of what a simulating termination analyzer is.

    Termination Analyzer HHH simulates its input until
    it detects a non-terminating behavior pattern. When
    HHH detects such a pattern it aborts its simulation
    and returns 0.

    But for the pattern that it detects to be correct, it must be that all
    input that exhibit that pattern must never halt when run.


    All of the follows is simply cut-and-paste from my paper
    except that I added DDD(DDD) call in main(). https://chatgpt.com/share/6709e046-4794-8011-98b7-27066fb49f3e

    But your input LIES, as you say:

    When this is construed as non-halting criteria then simulating
    termination analyzer HHH is correct to reject this input as non-halting
    by returning 0 to its caller.

    We get the same repetitive pattern when DDD is correctly emulated by
    HHH. HHH emulates DDD that calls HHH(DDD) to do this again.



    But the emulaiton of infinite+_recursion show a trace that has infinite_recursion calling in that execution context another copy of infinite_recursion with nothing in the loop that could break the pattern.

    When we emulate DDD, we NEVER get to a point where we ever see in that execution context a call to DDD, only the code begin to emulate that
    code, and the emulation of the emulator shows that such emulation is
    being done conditionally, and if the proper conditions are meet, that
    emulation WILL abort its emulation and return.

    And, we can see that if this HHH has code to terminate its emulation,
    and that HHH is the exact same code, and that code is actually a pure
    function, then that emulated copy of HHH will also eventually reach that
    point if we emulated it far enough past the point the outer was was
    programmed to abort.

    The fact that the outer HHH can't do that as it isn't what it was
    programmed to do, doesn't undo the fact that we can see that this *IS*
    the behavior of a correct and complete emulation of the input actually
    given to HHH.

    So, you claim is a LIE when it says that "when HHH does a correct
    emulation" when you HHH actually never DOES a correct emualation per the definitions of an emulation that shows "never halts" (and thus by the
    acrtual definition you are trying to use, we can make a trivial version
    that reports (virtually) all machines as non-halting)

    All you have done is proved that you LIED about the conditions, and LIED
    that the "finite-string" you gave as the input was actually a proper representation of the input PROGRAM.

    Thus proving you don't understand what a PROGRAM actually is, and that
    you have been lying that you have followed the methods described in the
    paper you are trying to refute.


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

    Everything below is verbatim cut-and-paste from my above paper.

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

    void Infinite_Recursion()
    {
      Infinite_Recursion();
    }

    void DDD()
    {
      HHH(DDD);
      return;
    }

    int main()
    {
      HHH(Infinite_Recursion);
      HHH(DDD);
      DDD(DDD);
    }

    Every C programmer that knows that when HHH emulates the machine
    language of, Infinite_Recursion it must abort this emulation so that
    itself can terminate normally.

    When this is construed as non-halting criteria then simulating
    termination analyzer HHH is correct to reject this input as non-halting
    by returning 0 to its caller.

    We get the same repetitive pattern when DDD is correctly emulated by
    HHH. HHH emulates DDD that calls HHH(DDD) to do this again.

    Do the function calls from main() return to main() ?


    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From joes@21:1/5 to All on Sun Oct 20 21:00:46 2024
    Am Sun, 20 Oct 2024 15:23:28 -0500 schrieb olcott:
    On 10/20/2024 2:13 PM, Richard Damon wrote:
    On 10/20/24 1:33 PM, olcott wrote:
    This is the only new material that sums up the essence of what a
    simulating termination analyzer is.

    Termination Analyzer HHH simulates its input until it detects a
    non-terminating behavior pattern. When HHH detects such a pattern it
    aborts its simulation and returns 0.
    But for the pattern that it detects to be correct, it must be that all
    input that exhibit that pattern must never halt when run.
    If your try to get away with telling ChatGPT that it will explain your
    error in great detail as it already does when I brought that up. https://chatgpt.com/share/6709e046-4794-8011-98b7-27066fb49f3e
    Why don't the nested HHHs abort?

    Also what is DDD(DDD)? It doesn't take a parameter.
    --
    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 Oct 20 17:41:51 2024
    On 10/20/24 4:23 PM, olcott wrote:
    On 10/20/2024 2:13 PM, Richard Damon wrote:
    On 10/20/24 1:33 PM, olcott wrote:
    This is the only new material that sums up the
    essence of what a simulating termination analyzer is.

    Termination Analyzer HHH simulates its input until
    it detects a non-terminating behavior pattern. When
    HHH detects such a pattern it aborts its simulation
    and returns 0.

    But for the pattern that it detects to be correct, it must be that all
    input that exhibit that pattern must never halt when run.


    If your try to get away with telling ChatGPT that it
    will explain your error in great detail as it already
    does when I brought that up.

    https://chatgpt.com/share/6709e046-4794-8011-98b7-27066fb49f3e


    Righr, you LIED tl Chat GPT about it, and being an AI, it is dumb enough
    to believe it.

    Note, I DID tell that to Chat GPT, and it agrees that DDD, when the
    criteria is what does DDD actually do, which is what the question MUST
    be about to be about the Termination or Halting problem, then DDD WILL
    HALT since HHH(DDD) will return 0 to it.

    So, your claims are just proven to be lies.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Richard Damon@21:1/5 to olcott on Sun Oct 20 23:19:37 2024
    On 10/20/24 6:36 PM, olcott wrote:
    On 10/20/2024 4:41 PM, Richard Damon wrote:
    On 10/20/24 4:23 PM, olcott wrote:
    On 10/20/2024 2:13 PM, Richard Damon wrote:
    On 10/20/24 1:33 PM, olcott wrote:
    This is the only new material that sums up the
    essence of what a simulating termination analyzer is.

    Termination Analyzer HHH simulates its input until
    it detects a non-terminating behavior pattern. When
    HHH detects such a pattern it aborts its simulation
    and returns 0.

    But for the pattern that it detects to be correct, it must be that
    all input that exhibit that pattern must never halt when run.


    If your try to get away with telling ChatGPT that it
    will explain your error in great detail as it already
    does when I brought that up.

    https://chatgpt.com/share/6709e046-4794-8011-98b7-27066fb49f3e


    Righr, you LIED tl Chat GPT about it, and being an AI, it is dumb
    enough to believe it.


    If that was true then you could convince it that it is wrong.

    I did.

    It admitted that DDD halts and HHH was wrong to say so.

    You are just proving that you are nothing but a stupid liar.


    Note, I DID tell that to Chat GPT, and it agrees that DDD, when the
    criteria is what does DDD actually do, which is what the question MUST
    be about to be about the Termination or Halting problem, then DDD WILL
    HALT since HHH(DDD) will return 0 to it.

    So, your claims are just proven to be lies.

    No one ever bother to notice that
    (a) A decider cannot have its actual self as its input.

    Well, no program takes a program as an input, only a representation of
    the program.

    And once you try to change that to

    (a1) A decidee cannot have a representation of its actual self as its input

    That is just a false statement.

    Why can't you give a decider the representation of itself as an input?




    When a simulating halt decider has its own TM description
    as its input the behavior of its directly executed self
    can vary from the behavior of its correctly simulated self
    as proven concretely below.

    Nope.

    How does the behavior differ?

    What instruction correctly simulated differed from that same instruction actually executed?

    Your failure to answer just shows that you know you are lying.


    (b) In the case of the pathological input DDD to emulating
    termination analyzer HHH the behavior of the directly
    executed DDD (not an input to HHH) is different than the
    behavior of DDD that is an input to HHH.


    But if the input doesn't represent the DDD, then you lied about the
    problem you were working on.

    Sorry, you are just proving that everything you have said is based on lies.

    The DEFINITION of Halt Deciders and Termination Analyzers are that they
    are given a repreentation/description of the program they are to
    anaylyze. If the input to HHH isn't that for DDD, then why have you
    wasted the last two decades saying that you have been working on the
    problem that you haven't been doing?

    The executed DDD calls HHH() and this call returns. The
    emulated DDD calls HHH(DDD) and this call cannot possibly
    return.


    Of course it can return, just not in the partial emulation that HHH does.

    Since that can't be a correct emulation that determines final behavior,
    the fact that the emulation doens't return is irrelevent. The actual
    correct and complete emulation of that input does return, so the input represents a terminating program, and thus HHH should have returned 1.

    You just are proving you don't even understand the most basic terms of
    the field, and just misuse them and try to replace them with LIES.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From joes@21:1/5 to All on Mon Oct 21 08:39:38 2024
    Am Sun, 20 Oct 2024 17:36:25 -0500 schrieb olcott:
    On 10/20/2024 4:41 PM, Richard Damon wrote:
    On 10/20/24 4:23 PM, olcott wrote:
    On 10/20/2024 2:13 PM, Richard Damon wrote:
    On 10/20/24 1:33 PM, olcott wrote:

    Note, I DID tell that to Chat GPT, and it agrees that DDD, when the
    criteria is what does DDD actually do, which is what the question MUST
    be about to be about the Termination or Halting problem, then DDD WILL
    HALT since HHH(DDD) will return 0 to it.
    No one ever bother to notice that (a) A decider cannot have its actual
    self as its input.
    lolwut? A decider is a normal program, and it should be handled like every other input.

    (b) In the case of the pathological input DDD to emulating termination analyzer HHH the behavior of the directly executed DDD (not an input to
    HHH) is different than the behavior of DDD that is an input to HHH.
    DDD *is* the input to HHH.

    The executed DDD calls HHH() and this call returns. The emulated DDD
    calls HHH(DDD) and this call cannot possibly return.
    But whyyy doesn't HHH abort?

    --
    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 Mon Oct 21 07:24:34 2024
    On 10/21/24 12:12 AM, olcott wrote:
    On 10/20/2024 10:19 PM, Richard Damon wrote:
    On 10/20/24 6:26 PM, olcott wrote:
    On 10/20/2024 4:00 PM, joes wrote:
    Am Sun, 20 Oct 2024 15:23:28 -0500 schrieb olcott:
    On 10/20/2024 2:13 PM, Richard Damon wrote:
    On 10/20/24 1:33 PM, olcott wrote:
    This is the only new material that sums up the essence of what a >>>>>>> simulating termination analyzer is.

    Termination Analyzer HHH simulates its input until it detects a
    non-terminating behavior pattern. When HHH detects such a pattern it >>>>>>> aborts its simulation and returns 0.
    But for the pattern that it detects to be correct, it must be that >>>>>> all
    input that exhibit that pattern must never halt when run.
    If your try to get away with telling ChatGPT that it will explain your >>>>> error in great detail as it already does when I brought that up.
    https://chatgpt.com/share/6709e046-4794-8011-98b7-27066fb49f3e
    Why don't the nested HHHs abort?


    Why don't the nested instances of HHH abort their input?
    *It answered this quite well*

    No, you don't, you LIE about it becuase you don't know what a program is


    Let us all see how effective your double-talk is against
    ChatGPT 4.0. Are you chicken?


    I guess you can't read, as I already got it to admit that you were wrong
    and I was right, and posted that.

    Your ignoring of evidence is just more proof that you are nothing but a pathological liar, worse than the election deniers and climate change
    deniers.

    Sorry, you are just showing how brainwashed you have made yourself. It
    seems your mind is impervious to facts.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From joes@21:1/5 to All on Mon Oct 21 15:17:49 2024
    Am Mon, 21 Oct 2024 08:41:11 -0500 schrieb olcott:
    On 10/21/2024 3:39 AM, joes wrote:
    Am Sun, 20 Oct 2024 17:36:25 -0500 schrieb olcott:
    On 10/20/2024 4:41 PM, Richard Damon wrote:
    On 10/20/24 4:23 PM, olcott wrote:
    On 10/20/2024 2:13 PM, Richard Damon wrote:
    On 10/20/24 1:33 PM, olcott wrote:

    Note, I DID tell that to Chat GPT, and it agrees that DDD, when the
    criteria is what does DDD actually do, which is what the question
    MUST be about to be about the Termination or Halting problem, then
    DDD WILL HALT since HHH(DDD) will return 0 to it.
    No one ever bother to notice that (a) A decider cannot have its actual
    self as its input.
    lolwut? A decider is a normal program, and it should be handled like
    every other input.

    (b) In the case of the pathological input DDD to emulating termination
    analyzer HHH the behavior of the directly executed DDD (not an input
    to HHH) is different than the behavior of DDD that is an input to HHH.
    DDD *is* the input to HHH.

    The executed DDD calls HHH() and this call returns. The emulated DDD
    calls HHH(DDD) and this call cannot possibly return.
    But whyyy doesn't HHH abort?
    You can click on the link and cut-and-paste the question to see the
    whole answer in compete detail.
    I am not interested in arguing with a chatbot. Make the points yourself.


    1. **Nature of `DDD()`**:
    - `DDD()` simply calls `HHH(DDD)`. It does not perform any additional operations that could create a loop or prevent it from returning.
    - If `HHH` returns (whether by aborting or completing its simulation), `DDD()` can return to its caller.

    2. **Behavior of `HHH`**:
    - If `HHH` is able to simulate `DDD()` and return, it should report
    that `DDD()` terminates. If `HHH` aborts due to detecting non-termination,
    it does not reflect the actual execution of `DDD()`; it leads to a
    conclusion that may not align with the true behavior.

    3. **Contradiction in Results**:
    - If `HHH` claims that `DDD()` does not halt, but in reality, `DDD()`
    can terminate once `HHH` returns, then `HHH` is providing an incorrect analysis.
    - The contradiction lies in the ability of `HHH` to detect non-
    termination theoretically while simultaneously allowing `DDD()` to halt in practical execution.

    ### Conclusion:
    Given the nature of `DDD()` and how `HHH` operates, it becomes clear that
    `HHH` cannot consistently provide a correct answer about whether `DDD()`
    halts. The dynamics of calling and returning create a scenario where the outcomes conflict. Thus, `HHH` is fundamentally flawed in its role as a termination analyzer for functions like `DDD()`.
    --
    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 Mon Oct 21 18:34:41 2024
    On 10/21/24 12:29 PM, olcott wrote:
    On 10/21/2024 10:17 AM, joes wrote:
    Am Mon, 21 Oct 2024 08:41:11 -0500 schrieb olcott:
    On 10/21/2024 3:39 AM, joes wrote:
    Am Sun, 20 Oct 2024 17:36:25 -0500 schrieb olcott:
    On 10/20/2024 4:41 PM, Richard Damon wrote:
    On 10/20/24 4:23 PM, olcott wrote:
    On 10/20/2024 2:13 PM, Richard Damon wrote:
    On 10/20/24 1:33 PM, olcott wrote:

    Note, I DID tell that to Chat GPT, and it agrees that DDD, when the >>>>>> criteria is what does DDD actually do, which is what the question
    MUST be about to be about the Termination or Halting problem, then >>>>>> DDD WILL HALT since HHH(DDD) will return 0 to it.
    No one ever bother to notice that (a) A decider cannot have its actual >>>>> self as its input.
    lolwut? A decider is a normal program, and it should be handled like
    every other input.

    (b) In the case of the pathological input DDD to emulating termination >>>>> analyzer HHH the behavior of the directly executed DDD (not an input >>>>> to HHH) is different than the behavior of DDD that is an input to HHH. >>>> DDD *is* the input to HHH.

    The executed DDD calls HHH() and this call returns. The emulated DDD >>>>> calls HHH(DDD) and this call cannot possibly return.
    But whyyy doesn't HHH abort?
    You can click on the link and cut-and-paste the question to see the
    whole answer in compete detail.
    I am not interested in arguing with a chatbot. Make the points yourself.


    1. **Nature of `DDD()`**:
        - `DDD()` simply calls `HHH(DDD)`. It does not perform any additional >> operations that could create a loop or prevent it from returning.
        - If `HHH` returns (whether by aborting or completing its
    simulation),
    `DDD()` can return to its caller.

    2. **Behavior of `HHH`**:
        - If `HHH` is able to simulate `DDD()` and return, it should report >> that `DDD()` terminates. If `HHH` aborts due to detecting non-
    termination,
    it does not reflect the actual execution of `DDD()`; it leads to a
    conclusion that may not align with the true behavior.

    3. **Contradiction in Results**:
        - If `HHH` claims that `DDD()` does not halt, but in reality, `DDD()` >> can terminate once `HHH` returns, then `HHH` is providing an incorrect
    analysis.
        - The contradiction lies in the ability of `HHH` to detect non-
    termination theoretically while simultaneously allowing `DDD()` to
    halt in
    practical execution.

    ### Conclusion:
    Given the nature of `DDD()` and how `HHH` operates, it becomes clear that
    `HHH` cannot consistently provide a correct answer about whether `DDD()`
    halts. The dynamics of calling and returning create a scenario where the
    outcomes conflict. Thus, `HHH` is fundamentally flawed in its role as a
    termination analyzer for functions like `DDD()`.

    Did ChatGPT generate that?
    If it did then I need *ALL the input that caused it to generate that*

    https://chatgpt.com/share/6709e046-4794-8011-98b7-27066fb49f3e
    If you did not start with the basis of this link then you cheated.

    No, someone using some REAL INTELEGENCE, as opposed to a program using "artificial intelegence" that had been loaded with false premises and
    other lies.

    Sorry, you are just showing that you have NO intelegence, and are
    depending on a program that includes a disclaimed on every page that its answers may have mistakes.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Richard Damon@21:1/5 to olcott on Mon Oct 21 19:05:08 2024
    On 10/21/24 6:48 PM, olcott wrote:
    On 10/21/2024 5:34 PM, Richard Damon wrote:
    On 10/21/24 12:29 PM, olcott wrote:
    On 10/21/2024 10:17 AM, joes wrote:
    Am Mon, 21 Oct 2024 08:41:11 -0500 schrieb olcott:
    On 10/21/2024 3:39 AM, joes wrote:
    Am Sun, 20 Oct 2024 17:36:25 -0500 schrieb olcott:
    On 10/20/2024 4:41 PM, Richard Damon wrote:
    On 10/20/24 4:23 PM, olcott wrote:
    On 10/20/2024 2:13 PM, Richard Damon wrote:
    On 10/20/24 1:33 PM, olcott wrote:

    Note, I DID tell that to Chat GPT, and it agrees that DDD, when the >>>>>>>> criteria is what does DDD actually do, which is what the question >>>>>>>> MUST be about to be about the Termination or Halting problem, then >>>>>>>> DDD WILL HALT since HHH(DDD) will return 0 to it.
    No one ever bother to notice that (a) A decider cannot have its
    actual
    self as its input.
    lolwut? A decider is a normal program, and it should be handled like >>>>>> every other input.

    (b) In the case of the pathological input DDD to emulating
    termination
    analyzer HHH the behavior of the directly executed DDD (not an input >>>>>>> to HHH) is different than the behavior of DDD that is an input to >>>>>>> HHH.
    DDD *is* the input to HHH.

    The executed DDD calls HHH() and this call returns. The emulated DDD >>>>>>> calls HHH(DDD) and this call cannot possibly return.
    But whyyy doesn't HHH abort?
    You can click on the link and cut-and-paste the question to see the
    whole answer in compete detail.
    I am not interested in arguing with a chatbot. Make the points
    yourself.


    1. **Nature of `DDD()`**:
        - `DDD()` simply calls `HHH(DDD)`. It does not perform any
    additional
    operations that could create a loop or prevent it from returning.
        - If `HHH` returns (whether by aborting or completing its
    simulation),
    `DDD()` can return to its caller.

    2. **Behavior of `HHH`**:
        - If `HHH` is able to simulate `DDD()` and return, it should report >>>> that `DDD()` terminates. If `HHH` aborts due to detecting non-
    termination,
    it does not reflect the actual execution of `DDD()`; it leads to a
    conclusion that may not align with the true behavior.

    3. **Contradiction in Results**:
        - If `HHH` claims that `DDD()` does not halt, but in reality,
    `DDD()`
    can terminate once `HHH` returns, then `HHH` is providing an incorrect >>>> analysis.
        - The contradiction lies in the ability of `HHH` to detect non- >>>> termination theoretically while simultaneously allowing `DDD()` to
    halt in
    practical execution.

    ### Conclusion:
    Given the nature of `DDD()` and how `HHH` operates, it becomes clear
    that
    `HHH` cannot consistently provide a correct answer about whether
    `DDD()`
    halts. The dynamics of calling and returning create a scenario where
    the
    outcomes conflict. Thus, `HHH` is fundamentally flawed in its role as a >>>> termination analyzer for functions like `DDD()`.

    Did ChatGPT generate that?
    If it did then I need *ALL the input that caused it to generate that*

    https://chatgpt.com/share/6709e046-4794-8011-98b7-27066fb49f3e
    If you did not start with the basis of this link then you cheated.

    No, someone using some REAL INTELEGENCE, as opposed to a program using
    "artificial intelegence" that had been loaded with false premises and
    other lies.

    Sorry, you are just showing that you have NO intelegence, and are
    depending on a program that includes a disclaimed on every page that
    its answers may have mistakes.

    I specifically asked it to verify that its key
    assumption is correct and it did.

    No, it said that given what you told it (which was a lie) the results
    were correct. Arguememnts, even if valid, that are based on incorrect
    premises don't prove anything.


    Could it be correct for HHH(DDD) to report on the behavior
    of the directly executed DDD()?

    https://chatgpt.com/share/67158ec6-3398-8011-98d1-41198baa29f2


    Which is only correct if your misdefine what that that means.

    Sorry, getting an AI to beleive your lies does NOT prove your statements
    are correct, only that you just totally don't understand how logic works.

    You are showing that you are nothing but an ignorant patholgical lying
    idiot.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Richard Damon@21:1/5 to olcott on Mon Oct 21 22:42:01 2024
    On 10/21/24 7:08 PM, olcott wrote:
    On 10/21/2024 6:05 PM, Richard Damon wrote:
    On 10/21/24 6:48 PM, olcott wrote:
    On 10/21/2024 5:34 PM, Richard Damon wrote:
    On 10/21/24 12:29 PM, olcott wrote:
    On 10/21/2024 10:17 AM, joes wrote:
    Am Mon, 21 Oct 2024 08:41:11 -0500 schrieb olcott:
    On 10/21/2024 3:39 AM, joes wrote:
    Am Sun, 20 Oct 2024 17:36:25 -0500 schrieb olcott:
    On 10/20/2024 4:41 PM, Richard Damon wrote:
    On 10/20/24 4:23 PM, olcott wrote:
    On 10/20/2024 2:13 PM, Richard Damon wrote:
    On 10/20/24 1:33 PM, olcott wrote:

    Note, I DID tell that to Chat GPT, and it agrees that DDD, >>>>>>>>>> when the
    criteria is what does DDD actually do, which is what the question >>>>>>>>>> MUST be about to be about the Termination or Halting problem, >>>>>>>>>> then
    DDD WILL HALT since HHH(DDD) will return 0 to it.
    No one ever bother to notice that (a) A decider cannot have its >>>>>>>>> actual
    self as its input.
    lolwut? A decider is a normal program, and it should be handled >>>>>>>> like
    every other input.

    (b) In the case of the pathological input DDD to emulating
    termination
    analyzer HHH the behavior of the directly executed DDD (not an >>>>>>>>> input
    to HHH) is different than the behavior of DDD that is an input >>>>>>>>> to HHH.
    DDD *is* the input to HHH.

    The executed DDD calls HHH() and this call returns. The
    emulated DDD
    calls HHH(DDD) and this call cannot possibly return.
    But whyyy doesn't HHH abort?
    You can click on the link and cut-and-paste the question to see the >>>>>>> whole answer in compete detail.
    I am not interested in arguing with a chatbot. Make the points
    yourself.


    1. **Nature of `DDD()`**:
        - `DDD()` simply calls `HHH(DDD)`. It does not perform any
    additional
    operations that could create a loop or prevent it from returning.
        - If `HHH` returns (whether by aborting or completing its
    simulation),
    `DDD()` can return to its caller.

    2. **Behavior of `HHH`**:
        - If `HHH` is able to simulate `DDD()` and return, it should >>>>>> report
    that `DDD()` terminates. If `HHH` aborts due to detecting non-
    termination,
    it does not reflect the actual execution of `DDD()`; it leads to a >>>>>> conclusion that may not align with the true behavior.

    3. **Contradiction in Results**:
        - If `HHH` claims that `DDD()` does not halt, but in reality, >>>>>> `DDD()`
    can terminate once `HHH` returns, then `HHH` is providing an
    incorrect
    analysis.
        - The contradiction lies in the ability of `HHH` to detect non- >>>>>> termination theoretically while simultaneously allowing `DDD()` to >>>>>> halt in
    practical execution.

    ### Conclusion:
    Given the nature of `DDD()` and how `HHH` operates, it becomes
    clear that
    `HHH` cannot consistently provide a correct answer about whether
    `DDD()`
    halts. The dynamics of calling and returning create a scenario
    where the
    outcomes conflict. Thus, `HHH` is fundamentally flawed in its role >>>>>> as a
    termination analyzer for functions like `DDD()`.

    Did ChatGPT generate that?
    If it did then I need *ALL the input that caused it to generate that* >>>>>
    https://chatgpt.com/share/6709e046-4794-8011-98b7-27066fb49f3e
    If you did not start with the basis of this link then you cheated.

    No, someone using some REAL INTELEGENCE, as opposed to a program
    using "artificial intelegence" that had been loaded with false
    premises and other lies.

    Sorry, you are just showing that you have NO intelegence, and are
    depending on a program that includes a disclaimed on every page that
    its answers may have mistakes.

    I specifically asked it to verify that its key
    assumption is correct and it did.

    No, it said that given what you told it (which was a lie)

    I asked it if what it was told was a lie and it
    explained how what it was told is correct.

    Because Chat GPT doesn't care about lying.


    Instead of me having to repeat the same thing to
    you fifty times why don't you do what I do to
    focus my own concentration read what I say many
    times over and over until you at least see what
    I said.

    Because what you are asking for is nonsense.

    Of course an AI that has been programmed with lies might repeat the lies.

    When it is told the actual definition, after being told your lies, and
    asked if your conclusion could be right, it said No.

    Thus, it seems by your logic, you have to admit defeat, as the AI, after
    being told your lies, still was able to come up with the correct answer,
    that DDD will halt, and that HHH is just incorrect to say it doesn't.

    If you want me to pay more attention to what you say, you first need to
    return the favor, and at least TRY to find an error in what I say, and
    be based on more than just that you think that can't be right.

    But you can't do that, as you don't actually know any facts about the
    field that you can point to qualified references.

    Sorry, you are just proving tha that you are nothing but a pathetic pathological lying idiot.


    the results were correct. Arguememnts, even if valid, that are based
    on incorrect premises don't prove anything.


    Could it be correct for HHH(DDD) to report on the behavior
    of the directly executed DDD()?

    https://chatgpt.com/share/67158ec6-3398-8011-98d1-41198baa29f2


    Which is only correct if your misdefine what that that means.

    Sorry, getting an AI to beleive your lies does NOT prove your
    statements are correct, only that you just totally don't understand
    how logic works.

    You are showing that you are nothing but an ignorant patholgical lying
    idiot.



    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From joes@21:1/5 to All on Tue Oct 22 20:56:23 2024
    Am Sun, 20 Oct 2024 23:08:19 -0500 schrieb olcott:
    On 10/20/2024 10:19 PM, Richard Damon wrote:
    On 10/20/24 6:42 PM, olcott wrote:
    On 10/20/2024 4:41 PM, Richard Damon wrote:
    On 10/20/24 4:23 PM, olcott wrote:
    On 10/20/2024 2:13 PM, Richard Damon wrote:
    On 10/20/24 1:33 PM, olcott wrote:
    This is the only new material that sums up the essence of what a >>>>>>> simulating termination analyzer is.

    Termination Analyzer HHH simulates its input until it detects a
    non-terminating behavior pattern. When HHH detects such a pattern >>>>>>> it aborts its simulation and returns 0.

    But for the pattern that it detects to be correct, it must be that >>>>>> all input that exhibit that pattern must never halt when run.

    If your try to get away with telling ChatGPT that it will explain
    your error in great detail as it already does when I brought that
    up.

    https://chatgpt.com/share/6709e046-4794-8011-98b7-27066fb49f3e

    Righr, you LIED tl Chat GPT about it, and being an AI, it is dumb
    enough to believe it.

    Note, I DID tell that to Chat GPT, and it agrees that DDD, when the
    criteria is what does DDD actually do, which is what the question
    MUST be about to be about the Termination or Halting problem, then
    DDD WILL HALT since HHH(DDD) will return 0 to it.

    So, your claims are just proven to be lies.

    Could it be correct for HHH(DDD) to report on the behavior of the
    directly executed DDD()?

    Since you keep on LYING about what "terminating behavior" is, of course
    you keep getting the wrong answers.

    I only gave it less than the same half page of basis and it explained
    the details of your error very well when it answered the above question: Could it be correct for HHH(DDD) to report on the behavior of the
    directly executed DDD()? https://chatgpt.com/share/67158ec6-3398-8011-98d1-41198baa29f2





    You said:


    void DDD()
    {
    HHH(DDD);
    return;
    }

    int main()
    {
    HHH(Infinite_Recursion);
    HHH(DDD);
    DDD(DDD);
    }

    Do the function calls from main() return to main() ?


    ChatGPT said:
    Yes, the function calls from main() do return to main(), but only after
    they have executed completely. Let's break it down.


    2. HHH(DDD);
    DDD calls HHH(DDD).
    When HHH(DDD) is executed, HHH will start simulating DDD, but DDD itself
    calls HHH(DDD) again. This creates a repetitive, self-referencing pattern.
    The termination analyzer HHH detects this repetitive behavior and
    recognizes it as non-terminating. So, it aborts the simulation of DDD and returns 0 to main().




    You said:
    HHH(DDD) reports that its input does not halt.
    ChatGPT said:
    ChatGPT


    So, in summary, HHH(DDD) correctly identifies that DDD does not halt and returns 0 to indicate this non-halting behavior.

    You said:
    DDD() invoked from main() halts.
    ChatGPT said:
    ChatGPT
    No, DDD() invoked from main() does not halt.

    Function Behavior of DDD():
    The function DDD() contains the statement HHH(DDD);. This means that when
    DDD() is called, it calls HHH(DDD).
    Now, HHH(DDD) simulates DDD, and in that simulation, DDD calls HHH(DDD)
    again, leading to an infinite cycle of calling itself.
    Role of the Termination Analyzer HHH:
    The termination analyzer HHH is designed to detect non-terminating
    behavior. When HHH simulates DDD and sees this pattern of infinite
    recursive calls, it identifies that DDD will not terminate on its own.
    HHH then aborts the simulation of DDD and returns 0 to signal non-
    termination.
    Invoking DDD() from main():
    When main() calls DDD(), DDD() immediately calls HHH(DDD), which leads to
    HHH detecting the non-terminating behavior of DDD.
    While HHH itself will terminate by returning 0, the function DDD() is intrinsically non-terminating because of its recursive structure (calling HHH(DDD) infinitely).
    Thus, while HHH detects the non-termination and returns, the function
    DDD() itself does not halt—it has a built-in infinite recursive loop of calling HHH(DDD). Therefore, invoking DDD() from main() will lead to a situation where HHH detects non-termination, but the function DDD() does
    not halt on its own.

    You said:
    What do you mean the function DDD() does not halt on its own?
    ChatGPT said:
    ChatGPT
    When I say that DDD() does not halt "on its own," I mean that the function DDD() itself contains behavior that, if left unchecked, would lead to
    infinite recursion and thus would never terminate.

    Function DDD():
    c
    Copy code
    void DDD() {
    HHH(DDD);
    return;
    }
    DDD() calls HHH(DDD), which means that the termination analyzer HHH is
    asked to analyze whether DDD() halts.
    What does HHH(DDD) do? It simulates DDD(). But in simulating DDD(), it
    runs into the same call: HHH(DDD). This recursive pattern means that if
    you just keep simulating DDD(), it will lead to a never-ending cycle of
    calling HHH(DDD) again and again. This would cause infinite recursion if
    it weren’t for HHH's ability to detect non-terminating behavior.
    Role of HHH:
    The key role of HHH is that it can detect this infinite recursive pattern.
    When HHH simulates DDD() and sees that it keeps calling HHH(DDD) (i.e., creating a loop), it recognizes this as non-terminating behavior and stops
    the simulation. It returns 0 to signal that DDD() does not halt.
    What Would Happen Without HHH?
    Without the termination analyzer HHH, if DDD() simply called itself in an unbounded manner, this would result in infinite recursion.
    In normal circumstances, an infinitely recursive function like DDD() would never terminate (i.e., it would not "halt"). Eventually, it would cause a
    stack overflow, where the program runs out of memory due to the infinite
    chain of function calls.
    Summary:
    "On its own": DDD() would infinitely call HHH(DDD) recursively, never
    reaching an end.
    With HHH: The analyzer intervenes, detects the infinite loop, and
    terminates the simulation by returning 0.
    So, DDD() does not halt naturally due to its recursive structure. The only reason DDD() doesn't cause an infinite recursion is that HHH detects this
    and stops the simulation. That’s why I said it doesn’t halt "on its own"— it's HHH that prevents the infinite recursion by identifying the non-
    halting behavior and aborting.

    You said:
    Can the DDD simulated by HHH ever reach its own return instruction?
    ChatGPT said:
    No, the DDD() function, as simulated by HHH, can never reach its own
    return instruction.

    DDD() immediately calls HHH(DDD) at the beginning of its execution. This
    means that, in order to reach the return statement, the call to HHH(DDD)
    must first complete.
    However, when HHH is called to simulate DDD(), it starts simulating the behavior of DDD() again, which involves calling HHH(DDD) once more. This
    leads to a repetitive, recursive cycle.
    Why DDD() Never Reaches return:
    In the real execution of DDD(): Before DDD() can reach the return
    statement, it must wait for HHH(DDD) to complete.

    In the simulation by HHH(DDD): HHH begins simulating DDD(), but during
    that simulation, it encounters HHH(DDD) again (because DDD() contains this recursive call). This creates an infinite loop of simulating DDD(),
    calling HHH(DDD), which simulates DDD() again, and so on.

    What happens: The termination analyzer HHH detects this infinite recursion pattern and aborts the simulation. It returns 0 to signal non-termination, meaning HHH itself halts, but the actual simulation of DDD() never reaches
    the return statement inside DDD().

    Key Point:
    The moment DDD() is simulated by HHH, it gets stuck in a cycle of calling itself through HHH(DDD), which prevents it from ever completing its
    execution and reaching the return statement.
    HHH can detect this non-halting behavior and stop the simulation, but that
    does not mean the function DDD() ever actually reaches its return
    instruction. It’s the analyzer (HHH) that terminates the simulation, not
    the function itself reaching completion.
    Conclusion:
    No, the DDD() simulated by HHH will never reach its own return instruction because the recursive call to HHH(DDD) creates a non-terminating loop that prevents it from ever finishing naturally.

    You said:
    Can the DDD() executed in main() reach its return instruction?
    ChatGPT said:
    ChatGPT
    Yes, the DDD() function executed in main() can reach its return
    instruction, but only because the termination analyzer HHH detects non- terminating behavior and returns control to DDD().

    As HHH simulates DDD(), it again encounters the call HHH(DDD). This
    creates a recursive pattern, where HHH keeps simulating DDD() and calling itself indefinitely.
    However, HHH is designed to detect non-terminating behavior. When HHH
    realizes that this recursive pattern will never halt, it aborts the
    simulation and returns 0 to signal non-termination.

    Key Point:
    The function DDD() doesn't infinitely recurse by itself because HHH
    detects the infinite recursion and aborts.
    As a result, the DDD() executed in main() does indeed reach its return instruction after HHH(DDD) returns.
    Conclusion:
    Yes, the DDD() function executed in main() can reach its return statement because the termination analyzer HHH detects the non-terminating behavior within HHH(DDD) and returns control back to DDD(), allowing it to complete
    and return to main().

    You said:
    Doesn't this mean that the DDD() executed in main() halts?
    ChatGPT said:
    Yes, you're absolutely right—since the DDD() function invoked in main()
    can reach its return statement, this means that the DDD() executed in
    main() halts.

    When DDD() is called from main(), the first thing it does is call
    HHH(DDD).
    HHH simulates DDD(), and in doing so, detects that DDD() would lead to
    infinite recursion (because of the repetitive call to HHH(DDD) inside
    DDD()).

    Termination Detection by HHH:
    The key point is that HHH is able to detect that this pattern of calling HHH(DDD) creates non-terminating behavior.
    Once HHH identifies this, it aborts the simulation and returns 0,
    signaling that DDD() would not halt if executed further.
    Returning Control to DDD():

    After HHH(DDD) returns 0, control goes back to DDD().
    Now, there are no more recursive calls, so DDD() can proceed to its
    return; statement.
    Reaching the return Instruction:

    The execution of DDD() reaches the return statement and exits the
    function.
    Result:
    Since DDD() successfully reaches its return statement, it halts after completing its execution.
    The reason it halts is that HHH steps in and detects non-terminating
    behavior, allowing DDD() to avoid getting stuck in an infinite recursion.
    This makes DDD() halt when invoked from main().
    Conclusion:
    Yes, the DDD() function executed in main() halts because the termination analyzer HHH detects the infinite recursion and allows the function to
    complete normally by returning control to DDD(), which then reaches its
    return instruction and exits.

    You said:
    How do you resolve the contradiction that the DDD() executed in main halts
    and DDD simulated by HHH does not halt?
    ChatGPT said:
    The apparent contradiction—that the DDD() executed in main() halts, but
    the DDD() simulated by HHH does not halt—can be resolved by understanding
    the different contexts in which each is being evaluated.

    DDD() executed in main():
    When DDD() is called in main(), it simply invokes HHH(DDD) and waits for
    HHH to return.
    The function HHH(DDD) runs and detects that simulating DDD() creates an infinite recursive pattern, leading to non-termination.
    However, HHH is designed to stop simulating when it detects non-
    termination. It aborts the simulation and returns 0.
    Once HHH(DDD) returns, DDD() itself continues execution and reaches its
    return; statement, allowing it to halt normally in this context.

    DDD() simulated by HHH:
    When HHH simulates DDD(), it treats DDD() as if it is running indefinitely
    in an infinite recursive pattern.
    Each time HHH simulates DDD(), it sees that DDD() calls HHH(DDD) again,
    which leads to another simulation of DDD(), and this continues
    indefinitely.
    As a result, the simulation of DDD() never halts because it keeps
    recursively simulating the same function call pattern. This is what makes
    HHH conclude that DDD() does not halt.
    The Apparent Contradiction:
    It seems contradictory because DDD() halts when executed from main() but
    does not halt when simulated by HHH.

    Resolution of the Contradiction:
    The key is to understand that the two cases involve different
    perspectives:
    In the context of real execution (when DDD() is called in main()), DDD()
    halts because HHH detects the non-terminating behavior and prevents
    infinite recursion by aborting the simulation and returning a value,
    allowing DDD() to complete and return.

    In the context of simulation (when HHH analyzes DDD()), HHH is tasked with determining whether DDD() would halt if allowed to run indefinitely
    without any intervention. The result of this simulation shows that DDD()
    would not halt due to its recursive nature. HHH simulates as if DDD()
    keeps calling itself, leading to infinite recursion.

    Simplified Analogy:
    Think of HHH as a "watchdog" that steps in during real execution to stop
    DDD() from running forever. But when HHH simulates DDD(), it's analyzing
    an "idealized" version of DDD() where nothing stops the recursion. In the simulation, DDD() is seen as endlessly recursive, so HHH concludes that it would not halt without external intervention.

    Thus, the contradiction is resolved by recognizing that HHH interrupts the
    real execution to prevent non-termination, allowing DDD() to halt, whereas
    in simulation, it treats DDD() as potentially infinite, leading to the conclusion that DDD() doesn't halt in principle.

    Conclusion:
    In real execution, DDD() halts because HHH steps in and prevents infinite recursion by returning.
    In simulation, HHH concludes that DDD() would not halt because it
    simulates the infinite recursive behavior without intervention.
    You said:
    The executed DDD() halts and HHH reports that it will not halt. Doesn't
    that make HHH wrong?
    ChatGPT said:
    ChatGPT
    It may seem like a contradiction, but it's not that HHH is wrong; rather,
    the behavior of HHH is entirely consistent with how a termination analyzer operates. The confusion arises because HHH is detecting non-termination in principle during its simulation, but the actual execution of DDD() in
    main() terminates due to external intervention by HHH.

    Understanding the Role of HHH:
    HHH as a Termination Analyzer:

    HHH is designed to simulate a function and determine whether the function,
    if allowed to run indefinitely, would terminate or not.
    During the simulation, HHH detects that the function DDD() calls itself recursively through HHH(DDD), leading to infinite recursion. Therefore,
    HHH correctly concludes that DDD() would not halt if it were allowed to
    run without intervention.
    Why DDD() Halts in Execution:

    When DDD() is executed in main(), the function HHH(DDD) is called, and HHH detects the non-terminating pattern inside DDD().
    After detecting the infinite recursion, HHH aborts the simulation and
    returns 0, effectively stopping DDD() from getting stuck in the infinite recursion. This allows DDD() to continue its execution and reach the
    return; statement.
    Therefore, the actual execution of DDD() halts, but only because HHH steps
    in and terminates the recursive process.
    Key Point:
    HHH reports that DDD() would not halt if allowed to run forever, because
    the function is inherently recursive. This is correct from the perspective
    of a termination analyzer.
    In actual execution, DDD() halts only because HHH intervenes and prevents
    the infinite recursion from occurring.
    Does This Make HHH Wrong?
    No, HHH is not wrong. Here's why:

    Correct in Simulation: HHH is simulating DDD() and determining whether, in principle, the function would halt. Since DDD() contains infinite
    recursion (via the call to HHH(DDD)), the analyzer correctly reports that
    DDD() does not halt on its own.
    Intervention in Real Execution: When DDD() is executed in main(), the only reason it halts is because HHH intervenes and prevents the non-termination
    by stopping the recursive simulation. The halting behavior in real
    execution is due to HHH's ability to detect non-termination and return
    control to DDD().
    Analogy:
    Imagine a device that simulates a machine's behavior to see if it would
    crash if left running indefinitely. The device might correctly predict
    that the machine would crash under certain conditions (because of an
    internal loop), even though in real life, the machine doesn't crash
    because the device steps in and stops it before the crash happens. This
    doesn't mean the prediction was wrong—it just means the device intervened
    to stop the crash.

    Conclusion:
    HHH is correct when it reports that DDD() does not halt, because it's
    analyzing the function's behavior in principle. The fact that DDD() halts
    in real execution is because HHH intervenes to prevent infinite recursion,
    not because DDD() halts on its own. Therefore, HHH is behaving as expected
    for a termination analyzer.

    You said:
    Could it be correct for HHH(DDD) to report on the behavior of the directly executed DDD()?
    ChatGPT said:
    ChatGPT
    No, it would not be correct for HHH(DDD) to report on the behavior of the directly executed DDD() in the specific case of the real-time execution, because HHH is designed to analyze a function in an abstract sense,
    predicting what the function would do if allowed to run indefinitely
    without intervention. It should not base its result on the fact that it is itself intervening and altering the actual behavior of DDD() during
    execution.

    Why HHH(DDD) Should Not Report Based on Real-Time Execution:
    Purpose of HHH:

    The role of HHH is to predict whether a function will halt or not by
    simulating it and analyzing its behavior in principle, without external intervention. It is essentially answering the question: "If we let this function run, will it eventually stop on its own, or will it run forever?"
    If DDD() contains infinite recursion, HHH should detect this pattern and conclude that DDD() does not halt when considered in isolation.
    What Happens in Real Execution:

    In real execution, DDD() halts only because HHH intervenes by detecting
    the non-terminating recursion and stopping it. This allows DDD() to reach
    its return statement.
    However, the fact that HHH steps in and prevents the non-termination is
    not part of the intrinsic behavior of DDD(). It’s an external intervention that alters the outcome.
    The Role of an Abstract Analysis:

    The purpose of HHH(DDD) is to analyze DDD() as it would behave without
    external intervention. If HHH were to report based on what happens during real-time execution (i.e., where HHH intervenes), it would be circular reasoning:
    HHH predicts that DDD() will not halt (because of infinite recursion).
    HHH intervenes in real execution to ensure that DDD() halts (by stopping
    the recursion).
    If HHH were to report that DDD() halts based on its intervention, it would obscure the fact that DDD() only halts because HHH altered the process.
    Why HHH Reporting "Non-Halting" Is Correct:

    HHH detects the potential behavior of DDD() if left to run indefinitely.
    It correctly reports that DDD() would not halt on its own because it
    contains recursive calls to HHH(DDD).
    The fact that HHH stops the recursion and allows DDD() to halt in real-
    time execution is not part of what the analyzer should report on, since
    it’s an external intervention that changes the natural flow of DDD().
    The Function DDD() In Principle:
    The core issue is that DDD() is recursively calling itself through
    HHH(DDD), which would lead to infinite recursion if allowed to continue.
    HHH detects this pattern and predicts that DDD() would not halt on its
    own.
    Therefore, HHH correctly reports that DDD() does not halt, even though in
    the actual execution, it halts because HHH steps in and prevents the
    infinite recursion.

    Conclusion:
    It would not be correct for HHH(DDD) to report on the behavior of the
    directly executed DDD(), because that behavior is altered by HHH's own intervention. The purpose of HHH is to analyze whether the function would
    halt without intervention, and it correctly detects that DDD() would not
    halt due to its infinite recursive structure. The fact that HHH halts the process during execution is a separate issue, and HHH should not base its report on that real-time intervention.


    --
    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 Oct 23 06:56:30 2024
    Am Tue, 22 Oct 2024 16:30:12 -0500 schrieb olcott:
    On 10/22/2024 3:56 PM, joes wrote:
    Am Sun, 20 Oct 2024 23:08:19 -0500 schrieb olcott:
    On 10/20/2024 10:19 PM, Richard Damon wrote:
    On 10/20/24 6:42 PM, olcott wrote:
    On 10/20/2024 4:41 PM, Richard Damon wrote:
    On 10/20/24 4:23 PM, olcott wrote:
    On 10/20/2024 2:13 PM, Richard Damon wrote:
    On 10/20/24 1:33 PM, olcott wrote:
    This is the only new material that sums up the essence of what a >>>>>>>>> simulating termination analyzer is.

    Termination Analyzer HHH simulates its input until it detects a >>>>>>>>> non-terminating behavior pattern. When HHH detects such a
    pattern it aborts its simulation and returns 0.

    But for the pattern that it detects to be correct, it must be
    that all input that exhibit that pattern must never halt when
    run.

    If your try to get away with telling ChatGPT that it will explain >>>>>>> your error in great detail as it already does when I brought that >>>>>>> up.

    https://chatgpt.com/share/6709e046-4794-8011-98b7-27066fb49f3e

    Righr, you LIED tl Chat GPT about it, and being an AI, it is dumb
    enough to believe it.

    Note, I DID tell that to Chat GPT, and it agrees that DDD, when the >>>>>> criteria is what does DDD actually do, which is what the question
    MUST be about to be about the Termination or Halting problem, then >>>>>> DDD WILL HALT since HHH(DDD) will return 0 to it.

    So, your claims are just proven to be lies.

    Could it be correct for HHH(DDD) to report on the behavior of the
    directly executed DDD()?

    Since you keep on LYING about what "terminating behavior" is, of
    course you keep getting the wrong answers.

    I only gave it less than the same half page of basis and it explained
    the details of your error very well when it answered the above
    question:
    Could it be correct for HHH(DDD) to report on the behavior of the
    directly executed DDD()?
    https://chatgpt.com/share/67158ec6-3398-8011-98d1-41198baa29f2


    You said:
    void DDD()
    {
    HHH(DDD);
    return;
    }
    int main()
    {
    HHH(Infinite_Recursion);
    HHH(DDD);
    DDD(DDD);
    }
    Do the function calls from main() return to main() ?

    That is how you cheated. https://chatgpt.com/share/6709e046-4794-8011-98b7-27066fb49f3e *Here is
    what I actually said*

    Yeah, we know you mangle quotes. Sorry if I actually didn't paste the
    whole thing yet another time. You do realise your link doesn't allow
    changing the previous input? Even so, it don't see how that would
    constitute "cheating", if ChatGPT supposedly "knows the truth".

    --
    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 Oct 23 19:18:17 2024
    On 10/23/24 8:44 AM, olcott wrote:
    On 10/23/2024 1:56 AM, joes wrote:
    Am Tue, 22 Oct 2024 16:30:12 -0500 schrieb olcott:
    On 10/22/2024 3:56 PM, joes wrote:
    Am Sun, 20 Oct 2024 23:08:19 -0500 schrieb olcott:
    On 10/20/2024 10:19 PM, Richard Damon wrote:
    On 10/20/24 6:42 PM, olcott wrote:
    On 10/20/2024 4:41 PM, Richard Damon wrote:
    On 10/20/24 4:23 PM, olcott wrote:
    On 10/20/2024 2:13 PM, Richard Damon wrote:
    On 10/20/24 1:33 PM, olcott wrote:
    This is the only new material that sums up the essence of what a >>>>>>>>>>> simulating termination analyzer is.

    Termination Analyzer HHH simulates its input until it detects a >>>>>>>>>>> non-terminating behavior pattern. When HHH detects such a >>>>>>>>>>> pattern it aborts its simulation and returns 0.

    But for the pattern that it detects to be correct, it must be >>>>>>>>>> that all input that exhibit that pattern must never halt when >>>>>>>>>> run.

    If your try to get away with telling ChatGPT that it will explain >>>>>>>>> your error in great detail as it already does when I brought that >>>>>>>>> up.

    https://chatgpt.com/share/6709e046-4794-8011-98b7-27066fb49f3e >>>>>>>>>
    Righr, you LIED tl Chat GPT about it, and being an AI, it is dumb >>>>>>>> enough to believe it.

    Note, I DID tell that to Chat GPT, and it agrees that DDD, when the >>>>>>>> criteria is what does DDD actually do, which is what the question >>>>>>>> MUST be about to be about the Termination or Halting problem, then >>>>>>>> DDD WILL HALT since HHH(DDD) will return 0 to it.

    So, your claims are just proven to be lies.

    Could it be correct for HHH(DDD) to report on the behavior of the >>>>>>> directly executed DDD()?

    Since you keep on LYING about what "terminating behavior" is, of
    course you keep getting the wrong answers.

    I only gave it less than the same half page of basis and it explained >>>>> the details of your error very well when it answered the above
    question:
    Could it be correct for HHH(DDD) to report on the behavior of the
    directly executed DDD()?
    https://chatgpt.com/share/67158ec6-3398-8011-98d1-41198baa29f2


    You said:
    void DDD()
    {
        HHH(DDD);
        return;
    }
    int main()
    {
        HHH(Infinite_Recursion);
        HHH(DDD);
        DDD(DDD);
    }
    Do the function calls from main() return to main() ?

    That is how you cheated.
    https://chatgpt.com/share/6709e046-4794-8011-98b7-27066fb49f3e *Here is
    what I actually said*

    Yeah, we know you mangle quotes.

    When a quote is less than 100% precisely correct I call it you.
    Most of the rebuttal of my work are the strawman deception of
    rebutting an incorrect paraphrase of what I am saying.

    Because you did not provide the input that derived the output
    you made your result unable to be reproduced. Unless and until
    I can reproduce your result I must assume that it is somehow
    erroneous. I tried and tried to get that result and every time
    ChatGPT 4 found an error in every rebuttal of my work.

    Sorry if I actually didn't paste the
    whole thing yet another time. You do realise your link doesn't allow
    changing the previous input? Even so, it don't see how that would
    constitute "cheating", if ChatGPT supposedly "knows the truth".




    And when your logic isn't preciesely correct, but based on INCORRECT definitions, we call you on it, and you just whine and complain that we
    are being unfair and not letting you change the rules.

    Sorry, but all youi are talking about is Olcott's theory of POOP, and
    that dirty diaper is all it is worth.

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