Re: Respect [was: The halting problem as defined is a category error]

Liste des GroupesRevenir à s logic 
Sujet : Re: Respect [was: The halting problem as defined is a category error]
De : richard (at) *nospam* damon-family.org (Richard Damon)
Groupes : comp.theory sci.logic comp.ai.philosophy
Date : 21. Jul 2025, 00:28:43
Autres entêtes
Organisation : i2pn2 (i2pn.org)
Message-ID : <fb75ab913a4481e3789415696aa8d01a6d2d0bc0@i2pn2.org>
References : 1 2 3 4 5 6 7 8 9 10 11 12
User-Agent : Mozilla Thunderbird
On 7/20/25 10:30 AM, olcott wrote:
On 7/20/2025 6:13 AM, Richard Damon wrote:
On 7/19/25 11:20 PM, olcott wrote:
On 7/19/2025 9:12 PM, Richard Damon wrote:
On 7/19/25 5:18 PM, olcott wrote:
On 7/19/2025 4:00 PM, Alan Mackenzie wrote:
Mike Terry <news.dead.person.stones@darjeeling.plus.com> wrote:
>
[ .... ]
>
ps. learn to post more respectfully.
>
You've hit the nail on the head, there.  Peter Olcott doesn't show
respect here for anybody.  Because of this he isn't shown any respect
back - he hasn't earned any.  I don't think he understands the concept
of respect any more than he understands the concept of truth.
>
If he were to show repect, he'd repect knowledge, truth, and learning,
and strive to acquire these qualities.  Instead he displays contempt for
them.  This is a large part of what makes him a crank.  It is
a large part of what makes it such a waste of time trying to correct
him, something that you've sensibly given up.
>
>
Now that chat bots have proven that they understand
what I am saying I can rephrase my words to be more
clear.
>
>
They have done no such thing, because they can't
>
Since yoiu feed them lies, all you have done is shown that you think lies are valid logic.
>
I have been rude because I cannot interpret the
rebuttal to this statement as anything besides
a despicable lie for the sole purpose of sadistic
pleasure of gaslighting:
>
Because you are just too stupid.
>
How is the "pattern" that HHH detects a non-halting pattern, when non- halting is DEFINED by the behavior of the directly executed machine, and the pattern you are thinking of exists in the execution of the DDD that halts because it was built on the same HHH you claim is correct to return 0,
>
Thus, your claim *IS* just a lie, and you shows your ignorance by saying you can't undetstand how it is one.
>
>
<input to chat bots>
typedef void (*ptr)();
int HHH(ptr P);
>
void DDD()
{
   HHH(DDD);
   return;
}
>
int main()
{
   HHH(DDD);
   DDD();
}
>
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.
</input to chat bots>
>
Every chatbot figures out on its own that HHH
correctly rejects DDD as non-terminating because
the input to HHH(DDD) specifies recursive simulation.
>
>
BECAUSE YOU LIE TO THEM, and a prime training parameter is to give an answer the user is apt to like, and thus will tend to just accept lies and errors provided.
>
>
I only defined the hypothetical possibility of a simulating
termination analyzer. This cannot possibly be a lie. They
figured out all the rest on their own.
>
No, you stated that it DOES something that it doesn't.
>
 Unlike a halt decider that must be correct
on every input a simulating termination analyzer
only needs be correct on at least one input.
WRONG. (Full details in another post)
That you can't show a reliable source for your definition just proves you just make things up, because you are just a pathological liar.
You may have THOUGHT you read that somewhere, but that was probably because you misunderstood what you were reading or took something out of context.

 void Infinite_Recursion()
{
   Infinite_Recursion();
}
 void Infinite_Loop()
{
   HERE: goto HERE;
   return;
}
 void Infinite_Loop2()
{
L1: goto L3;
L2: goto L1;
L3: goto L2;
}
 HHH correctly determines the halt status of
the above three functions.
So?
Proof by example of a universal condition is just a logical fallacy.
Shows you don't understand how logic works.

 
Also, you imply that your "input" isn't the input that actually needs to be given, as without the code of the specific HHH that this DDD calls, no Simulating Halt Decider could do the simulation that you talk about.
>
 Your brain damage causes you to keep forgetting
that DDD has access to all of the machine code
in Halt7.obj. I told you this dozens of times
and you already forget by the time you reply.
And thus you are admitting that all of that is "part of the input", as in computability theory, programs can only access things that are part of thier input.
It seems you just don't undetstand that.

 
It should be noted that it is a well known property of Artifical Intelegence, and in particular, Large Languge Models, are built not to give a "correct" answer, but an answer the user will like. And thus they will pick up on the subtle clues of how things are worded to give the responce that seems to be desired, even if it is just wrong.
>
 That is an incorrect assessment of how LLM systems work
and you can't show otherwise because you are wrong.
Look at the training regimine and traineer instructions,
The people "grading" the results were often specifically told not to worry about if the details were factually correct, just if the answer seemed plausible.
Maybe you just never looked into the full process of building an AI. THe issue is that it is a very abstract process, and many of the mechanisms not well understood.

 
When you add to the input the actual definition of "Non-Halting", as being that the exectuion of the program or its complete simulation will NEVER halt, even if carried out to an unbounded number of steps, they will give a different answer.
>
 This is a whole other issue that I have addressed.
 They figured out on their own that if DDD was correctly
simulated by HHH for an infinite number of steps that
DDD would never stop running.
But that is a different input.
THe problem is you LIED about the input, because you omitted that DDD and HHH had access to a fixed halt7.c file, which actually means that there is no HHH that simluates for an infinite number of steps, as the definition of HHH was fixed by your problem specification, as it is in that fixed Halt7.c

 
If you disagree with that definition, then you are admitting that you don't know the meaning of the terms-of-art of the system, but are just admitting to being the lying bastard that you are.
>
 Two different LLM systems both agree that the halting
problem definition is wrong.
So? You lie to them.
Sorry, you just are proving you don't know what it means to actually PROVE something, which makes you worse than the Climate change deniers or the election denies. They at least try to use mostly proper logic, just pull in questionable interpresations of data.
You just ignore the basics of the system.

 <ChatGPT>
   The standard proof assumes a decider
   H(M,x) that determines whether machine
   M halts on input x.
    But this formulation is flawed, because:
   Turing machines can only process finite
   encodings (e.g. ⟨M⟩), not executable entities
   like M.
    So the valid formulation must be
   H(⟨M⟩,x), where ⟨M⟩ is a string.
</ChatGPT>
 You cannot point out any error with that because
it is correct.
 
>
>
All you are doing is showing you don't understand how Artificiial Intelegence actualy works, showing your Natural Stupidity.
>
That they provided all of the reasoning why DDD correctly
simulated by HHH does not halt proves that they do have
the functional equivalent of human understanding.
>
But the problem is that your HHH that answers doesn't do a correct simulation.
>
 All simulating termination analyzers only predict
what would happen if they did a complete simulation
on non terminating inputs.
But of the SPECIFIC input they are given, which must be a PROGRAM, and thus for DDD, contains the exact code of the HHH that you claim gives the corect answer, and NOT change to this hypothetical decider.

 It has always been completely nuts to require a non
terminating input to be simulating until its non-existent
completion.
And never was the requreiment, only that it decides on the basis of what a complete and correct simulation of its exact input would do, and that will still be the DDD that calls the original HHH, not the UTM.

 
Yes, if *THE* HHH is one that correctly simulates the input (that has been fixed to include the code of HHH) then that simulation will not halt and be non-halting, but that HHH never answers.
>
 Correctly *predict* the behavior of unlimited simulation,
not actually do an infinite simulation.
Right, OF THE PROGRAM whose descxription it was given,
That is the DDD that calls the HHH that gives the answer you claim to be correct.
The unlimited simulation of that input halts, as you admit.
Your problem is you try to make category errors by changing the input and the decider to not be programs, and thus you just go into non-sense.

 
Since that input included the code for the HHH that doesn't abort, it isn't the input that any of your HHHs that do abort has been given.
>
 Correctly *predict* the behavior of unlimited simulation,
not actually do an infinite simulation.
Right, and the unlimited simulation of this exact program given as the input, which for D/DD/DDD calls the HHH that you claim is getting the righrt asnwer (and not changed to call the unlimited simulator) and thus that simulation does halt.
All you are doing is admitting to you don't know what you are talking about and it has been shown that you logic is just full of errors.

 
Thus, the reason you need to LIE about what the input is.
>
>
That everyone here denies what every first year CS student
would understand seems to prove that they know that they
are liars.
>
>
The problem is that a first year CS Student would see your mistake. (or would be destined to fail out of the program).
>
Your use of arguments like that is what shows that you don't understand
 

Date Sujet#  Auteur
17 Jul19:01 * The halting problem as defined is a category error65olcott
21 Jul13:30 +* Re: The halting problem as defined is a category error2Mild Shock
21 Jul13:59 i`- Re: The halting problem as defined is a category error1olcott
18 Jul00:47 +* Re: The halting problem as defined is a category error --- Flibble is correct44olcott
19 Jul15:42 i+* Re: The halting problem as defined is a category error --- Flibble is correct18olcott
19 Jul18:02 ii`* Re: The halting problem as defined is a category error --- Flibble is correct17Richard Damon
19 Jul20:19 ii `* Four Chatbots figure out on their own without prompting that HHH(DDD)==016olcott
20 Jul08:57 ii  +* Re: Four Chatbots figure out on their own without prompting that HHH(DDD)==05Fred. Zwarts
20 Jul16:18 ii  i`* Re: Four Chatbots figure out on their own without prompting that HHH(DDD)==04olcott
20 Jul23:50 ii  i +- Re: Four Chatbots figure out on their own without prompting that HHH(DDD)==01Richard Damon
21 Jul09:38 ii  i `* Re: Four Chatbots figure out on their own without prompting that HHH(DDD)==02Fred. Zwarts
21 Jul15:25 ii  i  `- Re: Four Chatbots figure out on their own without prompting that HHH(DDD)==01olcott
19 Jul20:47 ii  `* Re: Four Chatbots figure out on their own without prompting that HHH(DDD)==010olcott
19 Jul21:01 ii   +* Re: Four Chatbots figure out on their own without prompting that HHH(DDD)==08olcott
19 Jul21:41 ii   i+* Re: Four Chatbots figure out on their own without prompting that HHH(DDD)==06olcott
19 Jul22:05 ii   ii`* Re: Four Chatbots figure out on their own without prompting that HHH(DDD)==05olcott
20 Jul15:33 ii   ii `* Re: Four Chatbots figure out on their own without prompting that HHH(DDD)==04olcott
20 Jul23:11 ii   ii  `* Re: Four Chatbots figure out on their own without prompting that HHH(DDD)==03Richard Damon
20 Jul23:57 ii   ii   `* Re: Four Chatbots figure out on their own without prompting that HHH(DDD)==02olcott
21 Jul01:24 ii   ii    `- Re: Four Chatbots figure out on their own without prompting that HHH(DDD)==01Richard Damon
20 Jul03:23 ii   i`- Re: Four Chatbots figure out on their own without prompting that HHH(DDD)==01Richard Damon
20 Jul03:23 ii   `- Re: Four Chatbots figure out on their own without prompting that HHH(DDD)==01Richard Damon
19 Jul22:18 i+* Re: Respect [was: The halting problem as defined is a category error]24olcott
20 Jul03:12 ii+* Re: Respect [was: The halting problem as defined is a category error]19Richard Damon
20 Jul04:20 iii+* Re: Respect [was: The halting problem as defined is a category error]16olcott
20 Jul12:13 iiii+* Re: Respect [was: The halting problem as defined is a category error]3Richard Damon
20 Jul15:30 iiiii`* Re: Respect [was: The halting problem as defined is a category error]2olcott
21 Jul00:28 iiiii `- Re: Respect [was: The halting problem as defined is a category error]1Richard Damon
20 Jul08:38 iiii`* Re: Respect [was: The halting problem as defined is a category error]12Fred. Zwarts
20 Jul15:08 iiii `* Re: Respect [was: The halting problem as defined is a category error]11olcott
21 Jul09:24 iiii  +- Re: Respect [was: The halting problem as defined is a category error]1Fred. Zwarts
21 Jul00:13 iiii  `* Re: Respect [was: The halting problem as defined is a category error]9Richard Damon
21 Jul00:54 iiii   `* Re: Respect [was: The halting problem as defined is a category error]8olcott
21 Jul01:29 iiii    `* Re: Respect [was: The halting problem as defined is a category error]7Richard Damon
21 Jul01:45 iiii     +* Re: Respect [was: The halting problem as defined is a category error]4olcott
21 Jul02:58 iiii     i`* Re: Respect [was: The halting problem as defined is a category error]3Richard Damon
21 Jul03:05 iiii     i `* Re: Respect [was: The halting problem as defined is a category error]2olcott
21 Jul14:26 iiii     i  `- Re: Respect [was: The halting problem as defined is a category error]1olcott
21 Jul01:48 iiii     `* Re: Respect [was: The halting problem as defined is a category error]2olcott
21 Jul02:58 iiii      `- Re: Respect [was: The halting problem as defined is a category error]1Richard Damon
20 Jul04:21 iii`* Re: Respect [was: The halting problem as defined is a category error]2olcott
20 Jul12:18 iii `- Re: Respect [was: The halting problem as defined is a category error]1Richard Damon
20 Jul08:44 ii`* Re: Respect [was: The halting problem as defined is a category error]4Fred. Zwarts
20 Jul16:07 ii `* Re: Respect [was: The halting problem as defined is a category error]3olcott
21 Jul07:39 ii  `* Re: Respect [was: The halting problem as defined is a category error]2Fred. Zwarts
21 Jul14:03 ii   `- Re: Respect [was: The halting problem as defined is a category error]1olcott
21 Jul15:19 i`- Re: The halting problem as defined is a category error --- Flibble is correct1olcott
17 Jul20:22 +* Re: The halting problem as defined is a category error9olcott
18 Jul00:26 i+* Re: The halting problem as defined is a category error5Richard Damon
18 Jul00:49 ii`* Re: The halting problem as defined is a category error -- Flibble is correct4olcott
18 Jul14:13 ii `* Re: The halting problem as defined is a category error -- Flibble is correct3Richard Damon
18 Jul14:58 ii  `* Re: The halting problem as defined is a category error -- Flibble is correct2olcott
18 Jul18:26 ii   `- Re: The halting problem as defined is a category error -- Flibble is correct1Richard Damon
19 Jul03:15 i+- Re: The halting problem as defined is a category error1Richard Damon
18 Jul23:52 i`* Re: The halting problem as defined is a category error2olcott
19 Jul03:19 i `- Re: The halting problem as defined is a category error1Richard Damon
18 Jul00:10 +- Re: The halting problem as defined is a category error1Richard Damon
19 Jul03:25 +* Re: The halting problem as defined is a category error6Richard Damon
19 Jul04:39 i`* Re: The halting problem as defined is a category error5olcott
19 Jul13:50 i `* Re: The halting problem as defined is a category error4Richard Damon
19 Jul15:15 i  +* Re: The halting problem as defined is a category error2olcott
19 Jul18:17 i  i`- Re: The halting problem as defined is a category error1Richard Damon
19 Jul18:15 i  `- Re: The halting problem as defined is a category error1Richard Damon
18 Jul23:54 +- Re: The halting problem as defined is a category error1olcott
21 Jul15:07 `- Re: The halting problem as defined is a category error1olcott

Haut de la page

Les messages affichés proviennent d'usenet.

NewsPortal