Re: What I told ChatGPT is essentially identical to the first page of my paper

Liste des GroupesRevenir à c theory 
Sujet : Re: What I told ChatGPT is essentially identical to the first page of my paper
De : noreply (at) *nospam* example.org (joes)
Groupes : comp.theory
Date : 22. Oct 2024, 21:56:23
Autres entêtes
Organisation : i2pn2 (i2pn.org)
Message-ID : <a8cafad455bad368fdea48bd420331d128f40c66@i2pn2.org>
References : 1 2 3 4 5 6 7
User-Agent : Pan/0.145 (Duplicitous mercenary valetism; d7e168a git.gnome.org/pan2)
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.

Date Sujet#  Auteur
20 Oct 24 * What I told ChatGPT is essentially identical to the first page of my paper110olcott
20 Oct 24 `* Re: What I told ChatGPT is essentially identical to the first page of my paper109Richard Damon
20 Oct 24  `* Re: What I told ChatGPT is essentially identical to the first page of my paper108olcott
20 Oct 24   +* Re: What I told ChatGPT is essentially identical to the first page of my paper5joes
21 Oct 24   i`* Re: What I told ChatGPT is essentially identical to the first page of my paper4olcott
21 Oct 24   i `* Re: What I told ChatGPT is essentially identical to the first page of my paper3Richard Damon
21 Oct 24   i  `* Re: What I told ChatGPT is essentially identical to the first page of my paper2olcott
21 Oct 24   i   `- Re: What I told ChatGPT is essentially identical to the first page of my paper1Richard Damon
20 Oct 24   `* Re: What I told ChatGPT is essentially identical to the first page of my paper102Richard Damon
21 Oct 24    +* Re: What I told ChatGPT is essentially identical to the first page of my paper89olcott
21 Oct 24    i+* Re: What I told ChatGPT is essentially identical to the first page of my paper3Richard Damon
21 Oct 24    ii`* Re: What I told ChatGPT is essentially identical to the first page of my paper2olcott
21 Oct 24    ii `- Re: What I told ChatGPT is essentially identical to the first page of my paper1Richard Damon
21 Oct 24    i`* Re: What I told ChatGPT is essentially identical to the first page of my paper85joes
21 Oct 24    i `* Re: What I told ChatGPT is essentially identical to the first page of my paper84olcott
21 Oct 24    i  +* Re: What I told ChatGPT is essentially identical to the first page of my paper82joes
21 Oct 24    i  i`* Re: What I told ChatGPT is essentially identical to the first page of my paper81olcott
22 Oct 24    i  i `* Re: What I told ChatGPT is essentially identical to the first page of my paper80Richard Damon
22 Oct 24    i  i  `* Re: What I told ChatGPT is essentially identical to the first page of my paper79olcott
22 Oct 24    i  i   `* Re: What I told ChatGPT is essentially identical to the first page of my paper78Richard Damon
22 Oct 24    i  i    `* Re: What I told ChatGPT is essentially identical to the first page of my paper77olcott
22 Oct 24    i  i     `* Re: What I told ChatGPT is essentially identical to the first page of my paper76Richard Damon
22 Oct 24    i  i      `* Premises cannot be shown to be false without proving that they contradict each other75olcott
22 Oct 24    i  i       +* Re: Premises cannot be shown to be false without proving that they contradict each other71joes
22 Oct 24    i  i       i`* Re: Premises cannot be shown to be false without proving that they contradict each other70olcott
22 Oct 24    i  i       i `* Re: Premises cannot be shown to be false without proving that they contradict each other69joes
22 Oct 24    i  i       i  +- Re: Premises cannot be shown to be false without proving that they contradict each other1olcott
22 Oct 24    i  i       i  +* Verified facts regarding the software engineering of DDD, HHH, and HHH165olcott
23 Oct 24    i  i       i  i`* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH164Richard Damon
23 Oct 24    i  i       i  i `* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH163olcott
23 Oct 24    i  i       i  i  `* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH162Richard Damon
23 Oct 24    i  i       i  i   +- Re: Verified facts regarding the software engineering of DDD, HHH, and HHH11olcott
23 Oct 24    i  i       i  i   `* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 --- TYPO60olcott
23 Oct 24    i  i       i  i    `* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 --- TYPO59Richard Damon
23 Oct 24    i  i       i  i     `* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 --- TYPO58olcott
24 Oct 24    i  i       i  i      `* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 --- TYPO57Richard Damon
24 Oct 24    i  i       i  i       +* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 --- TYPO14olcott
24 Oct 24    i  i       i  i       i`* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 --- TYPO13Richard Damon
24 Oct 24    i  i       i  i       i `* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 --- TYPO12olcott
25 Oct 24    i  i       i  i       i  `* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 --- TYPO11Richard Damon
25 Oct 24    i  i       i  i       i   `* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 --- TYPO10olcott
25 Oct 24    i  i       i  i       i    `* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 --- TYPO9Richard Damon
25 Oct 24    i  i       i  i       i     `* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 --- TYPO8olcott
25 Oct 24    i  i       i  i       i      `* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 --- TYPO7Richard Damon
26 Oct 24    i  i       i  i       i       `* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 --- TYPO6olcott
26 Oct 24    i  i       i  i       i        `* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 --- TYPO5Richard Damon
26 Oct 24    i  i       i  i       i         `* Foundation of formal logic systems --- finite string transformation rules applied to finite strings.4olcott
26 Oct 24    i  i       i  i       i          +* Every computable function can be construed as --- finite string transformation rules applied to finite strings.2olcott
26 Oct 24    i  i       i  i       i          i`- Re: Every computable function can be construed as --- finite string transformation rules applied to finite strings.1Richard Damon
26 Oct 24    i  i       i  i       i          `- Re: Foundation of formal logic systems --- finite string transformation rules applied to finite strings.1Richard Damon
24 Oct 24    i  i       i  i       `* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 --- TYPO42olcott
24 Oct 24    i  i       i  i        `* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 --- TYPO41Richard Damon
24 Oct 24    i  i       i  i         `* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 --- TYPO40olcott
25 Oct 24    i  i       i  i          `* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 --- TYPO39Richard Damon
25 Oct 24    i  i       i  i           `* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 --- TYPO38olcott
25 Oct 24    i  i       i  i            `* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 --- TYPO37Richard Damon
25 Oct 24    i  i       i  i             `* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 --- TYPO36olcott
25 Oct 24    i  i       i  i              `* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 --- TYPO35Richard Damon
25 Oct 24    i  i       i  i               `* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 --- TYPO34olcott
26 Oct 24    i  i       i  i                `* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 --- TYPO33Richard Damon
26 Oct 24    i  i       i  i                 +* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 --- TYPO18olcott
26 Oct 24    i  i       i  i                 i`* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 --- TYPO17Richard Damon
26 Oct 24    i  i       i  i                 i `* Verified facts regarding the software engineering of DDD, HHH, and HHH1 ---16olcott
26 Oct 24    i  i       i  i                 i  +* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 ---5joes
26 Oct 24    i  i       i  i                 i  i`* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 ---4olcott
26 Oct 24    i  i       i  i                 i  i `* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 ---3Richard Damon
26 Oct 24    i  i       i  i                 i  i  `* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 ---2olcott
27 Oct 24    i  i       i  i                 i  i   `- Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 ---1Richard Damon
26 Oct 24    i  i       i  i                 i  `* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 ---10Richard Damon
26 Oct 24    i  i       i  i                 i   `* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 ---9olcott
26 Oct 24    i  i       i  i                 i    +* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 ---6Richard Damon
26 Oct 24    i  i       i  i                 i    i`* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 ---5olcott
26 Oct 24    i  i       i  i                 i    i +* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 ---3joes
26 Oct 24    i  i       i  i                 i    i i`* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 ---2olcott
27 Oct 24    i  i       i  i                 i    i i `- Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 ---1Richard Damon
27 Oct 24    i  i       i  i                 i    i `- Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 ---1Richard Damon
26 Oct 24    i  i       i  i                 i    `* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 ---2joes
26 Oct 24    i  i       i  i                 i     `- Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 ---1olcott
26 Oct 24    i  i       i  i                 `* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 --- TYPO14Richard Damon
26 Oct 24    i  i       i  i                  `* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 --- TYPO13olcott
26 Oct 24    i  i       i  i                   `* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 --- TYPO12Richard Damon
26 Oct 24    i  i       i  i                    `* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 --- TYPO11olcott
26 Oct 24    i  i       i  i                     `* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 --- TYPO10Richard Damon
26 Oct 24    i  i       i  i                      `* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 --- TYPO9olcott
27 Oct 24    i  i       i  i                       `* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 --- TYPO8Richard Damon
27 Oct 24    i  i       i  i                        `* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 --- TYPO7olcott
27 Oct 24    i  i       i  i                         `* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 --- TYPO6Richard Damon
27 Oct 24    i  i       i  i                          `* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 --- TYPO5olcott
27 Oct 24    i  i       i  i                           +- Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 --- TYPO1joes
27 Oct 24    i  i       i  i                           `* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 --- TYPO3Richard Damon
27 Oct 24    i  i       i  i                            `* Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 --- TYPO2olcott
27 Oct 24    i  i       i  i                             `- Re: Verified facts regarding the software engineering of DDD, HHH, and HHH1 --- TYPO1Richard Damon
23 Oct 24    i  i       i  `* Re: Premises cannot be shown to be false without proving that they contradict each other2Mike Terry
23 Oct 24    i  i       i   `- Re: Premises cannot be shown to be false without proving that they contradict each other1olcott
22 Oct 24    i  i       `* Re: Premises cannot be shown to be false without proving that they contradict each other3Richard Damon
22 Oct 24    i  i        `* Re: Premises cannot be shown to be false without proving that they contradict each other2olcott
23 Oct 24    i  i         `- Re: Premises cannot be shown to be false without proving that they contradict each other1Richard Damon
22 Oct 24    i  `- Re: What I told ChatGPT is essentially identical to the first page of my paper1Richard Damon
21 Oct 24    +* Re: What I told ChatGPT is essentially identical to the first page of my paper10olcott
21 Oct 24    i`* Re: What I told ChatGPT is essentially identical to the first page of my paper9Richard Damon
21 Oct 24    i `* Re: What I told ChatGPT is essentially identical to the first page of my paper8olcott
21 Oct 24    +- Re: What I told ChatGPT is essentially identical to the first page of my paper1olcott
21 Oct 24    `- ChatGPT input is essentially page(1) of my paper -- clean update1olcott

Haut de la page

Les messages affichés proviennent d'usenet.

NewsPortal