Rocksolid Light

Welcome to novaBBS (click a section below)

mail  files  register  newsreader  groups  login

Message-ID:  

"Were there no women, men might live like gods." -- Thomas Dekker


computers / comp.ai.philosophy / ChatGPT and MIT professor Michael Sipser both agree that the essence of my HP refution is correct.

SubjectAuthor
* ChatGPT and MIT professor Michael Sipser both agree that the essenceolcott
`- Re: ChatGPT and MIT professor Michael Sipser both agree that theRichard Damon

1
ChatGPT and MIT professor Michael Sipser both agree that the essence of my HP refution is correct.

<tr1p0t$1sbft$5@dont-email.me>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=10476&group=comp.ai.philosophy#10476

  copy link   Newsgroups: comp.theory comp.ai.philosophy sci.logic sci.math
Path: i2pn2.org!i2pn.org!eternal-september.org!reader01.eternal-september.org!.POSTED!not-for-mail
From: polco...@gmail.com (olcott)
Newsgroups: comp.theory,comp.ai.philosophy,sci.logic,sci.math
Subject: ChatGPT and MIT professor Michael Sipser both agree that the essence
of my HP refution is correct.
Date: Fri, 27 Jan 2023 18:07:56 -0600
Organization: A noiseless patient Spider
Lines: 63
Message-ID: <tr1p0t$1sbft$5@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Sat, 28 Jan 2023 00:07:57 -0000 (UTC)
Injection-Info: reader01.eternal-september.org; posting-host="321046284d693c60139c274618d15913";
logging-data="1977853"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18f7P6pkPgo5e/7kfDHJAYp"
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101
Thunderbird/102.6.1
Cancel-Lock: sha1:c2dc/FYDJNxFEXMaR3lMuONqo7c=
Content-Language: en-US
 by: olcott - Sat, 28 Jan 2023 00:07 UTC

Professor Sipser is not aware that he agreed with the essence of my
proof. What he did agree to is a single paragraph on page one of my
paper linked below. This paragraph is the essence of my proof.

MIT Professor Michael Sipser has agreed that the following verbatim
paragraph is correct (he has not reviewed or agreed to anything else):

If simulating halt decider H correctly simulates its input D until
H correctly determines that its simulated D would never stop running
unless aborted then H can abort its simulation of D and correctly
report that D specifies a non-halting sequence of configurations.

People that are not Hell bent on being disagreeable realize that the
paragraph that professor Sipser agreed to is a tautology.

People that are Hell bent on being disagreeable indicate that a
simulation is not necessarily correct even if the simulator does
correctly simulate the exact instructions that are specified by the
machine code being simulated.

I challenge them to provide an example of a specific line of machine
code showing this and they dodge because they already know that what
they said is not true.

void D(void (*x)())
{ int Halt_Status = H(x, x);
if (Halt_Status)
HERE: goto HERE;
return;
}

int main()
{ Output("Input_Halts = ", H(D, D));
}

olcott
This first sentence is an established fact: When H(D,D) correctly
simulates its input the execution trace of this simulated input proves
that it would never stop running because D continues to call H in
recursive simulation. Then H aborts its simulation of D and returns 0 to
main, indicating that D would never stop running unless aborted. Is H
correct?

ChatGPT
It is a well-established fact that the program H is a variant of the
classic example of the "halting problem", which is used to demonstrate
that there is no general algorithm that can determine, for any given
program and input, whether or not that program halts on that input. In
the specific code you provided, the function D calls itself recursively
through the function H, creating an infinite loop that never halts.
Therefore, if the function H correctly simulates the behavior of D, it
should correctly determine that D never halts, and return 0 to main. So
in this case, H is correct.

Simulating Halt Decider Applied to the Halting Theorem
https://www.researchgate.net/publication/364657019_Simulating_Halt_Decider_Applied_to_the_Halting_Theorem

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

Re: ChatGPT and MIT professor Michael Sipser both agree that the essence of my HP refution is correct.

<8v0BL.452930$iS99.420568@fx16.iad>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=10484&group=comp.ai.philosophy#10484

  copy link   Newsgroups: comp.theory comp.ai.philosophy sci.logic sci.math
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!feed1.usenet.blueworldhosting.com!peer01.iad!feed-me.highwinds-media.com!news.highwinds-media.com!fx16.iad.POSTED!not-for-mail
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:102.0)
Gecko/20100101 Thunderbird/102.6.1
Subject: Re: ChatGPT and MIT professor Michael Sipser both agree that the
essence of my HP refution is correct.
Content-Language: en-US
Newsgroups: comp.theory,comp.ai.philosophy,sci.logic,sci.math
References: <tr1p0t$1sbft$5@dont-email.me>
From: Rich...@Damon-Family.org (Richard Damon)
In-Reply-To: <tr1p0t$1sbft$5@dont-email.me>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Lines: 76
Message-ID: <8v0BL.452930$iS99.420568@fx16.iad>
X-Complaints-To: abuse@easynews.com
Organization: Forte - www.forteinc.com
X-Complaints-Info: Please be sure to forward a copy of ALL headers otherwise we will be unable to process your complaint properly.
Date: Fri, 27 Jan 2023 22:19:32 -0500
X-Received-Bytes: 4165
 by: Richard Damon - Sat, 28 Jan 2023 03:19 UTC

On 1/27/23 7:07 PM, olcott wrote:
> Professor Sipser is not aware that he agreed with the essence of my
> proof. What he did agree to is a single paragraph on page one of my
> paper linked below. This paragraph is the essence of my proof.
>
> MIT Professor Michael Sipser has agreed that the following verbatim
> paragraph is correct (he has not reviewed or agreed to anything else):
>
>     If simulating halt decider H correctly simulates its input D until
>     H correctly determines that its simulated D would never stop running
>     unless aborted then H can abort its simulation of D and correctly
>     report that D specifies a non-halting sequence of configurations.
>
> People that are not Hell bent on being disagreeable realize that the
> paragraph that professor Sipser agreed to is a tautology.
>
> People that are Hell bent on being disagreeable indicate that a
> simulation is not necessarily correct even if the simulator does
> correctly simulate the exact instructions that are specified by the
> machine code being simulated.
>
> I challenge them to provide an example of a specific line of machine
> code showing this and they dodge because they already know that what
> they said is not true.
>
> void D(void (*x)())
> {
>   int Halt_Status = H(x, x);
>   if (Halt_Status)
>     HERE: goto HERE;
>   return;
> }
>
> int main()
> {
>   Output("Input_Halts = ", H(D, D));
> }
>
> olcott
> This first sentence is an established fact: When H(D,D) correctly
> simulates its input the execution trace of this simulated input proves
> that it would never stop running because D continues to call H in
> recursive simulation. Then H aborts its simulation of D and returns 0 to
> main, indicating that D would never stop running unless aborted. Is H
> correct?
>
> ChatGPT
> It is a well-established fact that the program H is a variant of the
> classic example of the "halting problem", which is used to demonstrate
> that there is no general algorithm that can determine, for any given
> program and input, whether or not that program halts on that input. In
> the specific code you provided, the function D calls itself recursively
> through the function H, creating an infinite loop that never halts.
> Therefore, if the function H correctly simulates the behavior of D, it
> should correctly determine that D never halts, and return 0 to main. So
> in this case, H is correct.
>
> Simulating Halt Decider Applied to the Halting Theorem
> https://www.researchgate.net/publication/364657019_Simulating_Halt_Decider_Applied_to_the_Halting_Theorem
>

So, you can confuse the AI just like you have done to yourself.

You still haven't answerd my question, which shows you don't HAVE an
answer and you whole arguement is smoke and mirrors.

Your published code shows that H(D,D) WILL return 0 whether main calls
D(D) which calls H(D,D) and thus D(D) halts, or it main cals H(D,D)
directly,

THus the correct answer to the Halting question is Halting, and thus H
is wrong.

Until you show where that logic is in error, you are just a LIAR.

A Damned Hypocritical Pathological Lying Idiot in particular.

1
server_pubkey.txt

rocksolid light 0.9.8
clearnet tor