Rocksolid Light

Welcome to novaBBS (click a section below)

mail  files  register  newsreader  groups  login

Message-ID:  

"Our vision is to speed up time, eventually eliminating it." -- Alex Schure


computers / comp.ai.philosophy / H(D,D)==0 is correct is proven in more detail

SubjectAuthor
* H(D,D)==0 is correct is proven in more detailolcott
`- Re: H(D,D)==0 is correct is proven in more detailRichard Damon

1
H(D,D)==0 is correct is proven in more detail

<tv332t$2703s$1@dont-email.me>

  copy mid

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

  copy link   Newsgroups: comp.theory sci.logic sci.math comp.ai.philosophy
Path: i2pn2.org!i2pn.org!eternal-september.org!reader01.eternal-september.org!.POSTED!not-for-mail
From: polco...@gmail.com (olcott)
Newsgroups: comp.theory,sci.logic,sci.math,comp.ai.philosophy
Subject: H(D,D)==0 is correct is proven in more detail
Date: Fri, 17 Mar 2023 20:10:52 -0500
Organization: A noiseless patient Spider
Lines: 38
Message-ID: <tv332t$2703s$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Sat, 18 Mar 2023 01:10:53 -0000 (UTC)
Injection-Info: reader01.eternal-september.org; posting-host="610acb0f773d704d22548a3cd13607fe";
logging-data="2326652"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19Na2Q/agjrBaog7XGOZo7s"
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101
Thunderbird/102.8.0
Cancel-Lock: sha1:G/t+Amrmsa3EddNeBES1m0YktZs=
Content-Language: en-US
 by: olcott - Sat, 18 Mar 2023 01:10 UTC

01 int D(int (*x)())
02 {
03 int Halt_Status = H(x, x);
04 if (Halt_Status)
05 HERE: goto HERE;
06 return Halt_Status;
07 }
08
09 void main()
10 {
11 H(D,D);
12 }

Here is the sequence when H never aborts it simulation:
main() calls H(D,D) that simulates D(D) at line 11
keeps repeating: simulated D(D) calls simulated H(D,D) that simulates
D(D) at line 03 ...

When it is understood that halting requires reaching a final state and
stopping for any other reason does not count as halting then

The fact that D correctly simulated by H cannot possibly reach its own
final state at line 6 conclusively proves that this simulated D does not
halt.

*When H returns 0 it is only affirming this verified fact*

The notion of a UTM conclusively proves that D correctly simulated by H
does derive the behavior that a simulating halt decider must measure.

Because all deciders must compute the mapping from their inputs to their
own accept or reject state anyone and anything that says that H must
report on the behavior of non-inputs contradicts the definition of a
decider.

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

Re: H(D,D)==0 is correct is proven in more detail

<IR8RL.1107081$8_id.749493@fx09.iad>

  copy mid

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

  copy link   Newsgroups: comp.theory sci.logic sci.math comp.ai.philosophy
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!feed1.usenet.blueworldhosting.com!peer01.iad!feed-me.highwinds-media.com!news.highwinds-media.com!fx09.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.9.0
Subject: Re: H(D,D)==0 is correct is proven in more detail
Content-Language: en-US
Newsgroups: comp.theory,sci.logic,sci.math,comp.ai.philosophy
References: <tv332t$2703s$1@dont-email.me>
From: Rich...@Damon-Family.org (Richard Damon)
In-Reply-To: <tv332t$2703s$1@dont-email.me>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Lines: 70
Message-ID: <IR8RL.1107081$8_id.749493@fx09.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, 17 Mar 2023 21:54:48 -0400
X-Received-Bytes: 3085
 by: Richard Damon - Sat, 18 Mar 2023 01:54 UTC

On 3/17/23 9:10 PM, olcott wrote:
> 01 int D(int (*x)())
> 02 {
> 03   int Halt_Status = H(x, x);
> 04   if (Halt_Status)
> 05     HERE: goto HERE;
> 06   return Halt_Status;
> 07 }
> 08
> 09 void main()
> 10 {
> 11   H(D,D);
> 12 }
>
> Here is the sequence when H never aborts it simulation:
>   main() calls H(D,D) that simulates D(D) at line 11
>   keeps repeating: simulated D(D) calls simulated H(D,D) that simulates
> D(D) at line 03 ...

Which only happen if H will NEVER abort it simulation.

>
> When it is understood that halting requires reaching a final state and
> stopping for any other reason does not count as halting then

Right, so the question is will main calling D(D) see D return.

THAT is the machine presented to the input of H.

And THAT return, as you have admitted.

>
> The fact that D correctly simulated by H cannot possibly reach its own
> final state at line 6 conclusively proves that this simulated D does not
> halt.

No, since this isn't the H that correct simulates its input, it isn't
reelvent.

>
> *When H returns 0 it is only affirming this verified fact*

No, it afferms that the condition assumed at the begining was a FALSEHOOD.

>
> The notion of a UTM conclusively proves that D correctly simulated by H
> does derive the behavior that a simulating halt decider must measure.

Nope, because H isn't a UTM.

>
> Because all deciders must compute the mapping from their inputs to their
> own accept or reject state anyone and anything that says that H must
> report on the behavior of non-inputs contradicts the definition of a
> decider.
>

Right, and since the input to H was the description of the machine D(D),
and you have admitted that this halts, the correct answer is Halting.

Your the one that says you H looks at something that isn't its input, in
that it presumes that the H called by D isn't the actual H that exists
in this prograam.

Thus you are admitting you H isn't a decider.

You are just proving you don't understand what you are talking about.

This is just poisoning your ideas of "Correct Reasoning" which are
looking more like "Unsound Reasoning".

1
server_pubkey.txt

rocksolid light 0.9.8
clearnet tor