Rocksolid Light

Welcome to novaBBS (click a section below)

mail  files  register  newsreader  groups  login

Message-ID:  

Perl will always provide the null. -- Larry Wall in <199801151818.KAA14538@wall.org>


devel / comp.theory / Concise refutation of halting problem proofs V20 [ Ben Bacarisse ]

SubjectAuthor
* Concise refutation of halting problem proofs V20 [ Ben Bacarisse ]olcott
+* Concise refutation of halting problem proofs V20 [ Ben Bacarisse ]Ben Bacarisse
|`* Concise refutation of halting problem proofs V20 [ Ben Bacarisseolcott
| +- Concise refutation of halting problem proofs V20 [ Ben BacarisseRichard Damon
| `* Concise refutation of halting problem proofs V20Ben Bacarisse
|  `* Concise refutation of halting problem proofs V20olcott
|   `* Concise refutation of halting problem proofs V20Richard Damon
|    `* Concise refutation of halting problem proofs V20olcott
|     `* Concise refutation of halting problem proofs V20Richard Damon
|      `* Concise refutation of halting problem proofs V20olcott
|       +* Concise refutation of halting problem proofs V20Richard Damon
|       |`* Concise refutation of halting problem proofs V20olcott
|       | `* Concise refutation of halting problem proofs V20Richard Damon
|       |  `* Concise refutation of halting problem proofs V20 [ Richard FAILSolcott
|       |   `* Concise refutation of halting problem proofs V20 [ Richard FAILSRichard Damon
|       |    `* Concise refutation of halting problem proofs V20 [ Richard FAILSolcott
|       |     `* Concise refutation of halting problem proofs V20 [ Richard FAILSRichard Damon
|       |      +- Concise refutation of halting problem proofs V20 [ Richard FAILSolcott
|       |      `* Concise refutation of halting problem proofs V20 [ Richard FAILSolcott
|       |       `* Concise refutation of halting problem proofs V20 [ Richard FAILSRichard Damon
|       |        `* Concise refutation of halting problem proofs V20 [ Richard FAILSolcott
|       |         `- Concise refutation of halting problem proofs V20 [ Richard FAILSRichard Damon
|       `* Concise refutation of halting problem proofs V20André G. Isaak
|        `- Concise refutation of halting problem proofs V20olcott
`- Concise refutation of halting problem proofs V20 [ Ben BacarisseRichard Damon

1
Concise refutation of halting problem proofs V20 [ Ben Bacarisse ]

<gKadnXaES8VF4QX8nZ2dnUU7-bfNnZ2d@giganews.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=23719&group=comp.theory#23719

  copy link   Newsgroups: comp.theory comp.ai.philosophy sci.logic sci.math
Followup: comp.theory
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!news.misty.com!border2.nntp.dca1.giganews.com!nntp.giganews.com!buffer2.nntp.dca1.giganews.com!news.giganews.com.POSTED!not-for-mail
NNTP-Posting-Date: Fri, 19 Nov 2021 22:43:04 -0600
Date: Fri, 19 Nov 2021 22:43:01 -0600
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Thunderbird/91.3.2
Newsgroups: comp.theory,comp.ai.philosophy,sci.logic,sci.math
Content-Language: en-US
Followup-To: comp.theory
From: NoO...@NoWhere.com (olcott)
Subject: Concise refutation of halting problem proofs V20 [ Ben Bacarisse ]
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Message-ID: <gKadnXaES8VF4QX8nZ2dnUU7-bfNnZ2d@giganews.com>
Lines: 58
X-Usenet-Provider: http://www.giganews.com
X-Trace: sv3-z0S1IiONfTg3evU/B5XCU5wO39eEQE8pMCA/YArFNuQYJus1h/fsL5ulgwayYci2cZRYCCKPf6WHDVA!llph4hoYlg86RSq/Y5Mc1zKSbZv+ZYf5/n4iX/yjQmDa6HekO/oIeWvbpKeDDf5z+nprU6U4GfHw!cg==
X-Complaints-To: abuse@giganews.com
X-DMCA-Notifications: http://www.giganews.com/info/dmca.html
X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers
X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly
X-Postfilter: 1.3.40
X-Original-Bytes: 2835
 by: olcott - Sat, 20 Nov 2021 04:43 UTC

#include <stdint.h>
#include <stdio.h>
typedef int (*ptr)();

int H(ptr x, ptr y)
{ x(y); // direct execution of P(P)
return 1;
}

// Minimal essence of Linz(1990) Ĥ
// and Strachey(1965) P
int P(ptr x)
{ H(x, x);
return 1; // Give P a last instruction at the "c" level
}

int main(void)
{ H(P, P);
}

Computation that halts
a computation is said to halt whenever it enters a final state.
(Linz:1990:234)

PSR set: Combinations of H/P having pathological self-reference
For every possible H of H(P,P) invoked from main() where P(P) calls this
same H(P,P) and H simulates or executes its input and aborts or does not
abort its input P never reaches its last instruction.

PSR subset: Because we know that the input to H(P,P) never halts for the
whole PSR set and a subset of these H/P combinations aborts the
execution or simulation of its input then we know that for this entire
subset the input to H(P,P) never halts and H(P,P) halts.

When int main(void) { P(P); } is invoked on H/P elements of the above
PSR subset, then we have a cases where the input to H(P,P) never halts
and P(P) halts.

This conclusively proves when the input to H(P,P) never halts and the
same P(P) does halt that this does not form a contradiction.

Halting problem undecidability and infinitely nested simulation (V2)
November 2021 PL Olcott

https://www.researchgate.net/publication/356105750_Halting_problem_undecidability_and_infinitely_nested_simulation_V2

--
Copyright 2021 Pete Olcott

Talent hits a target no one else can hit;
Genius hits a target no one else can see.
Arthur Schopenhauer

Re: Concise refutation of halting problem proofs V20 [ Ben Bacarisse ]

<87ee7bhz7h.fsf@bsb.me.uk>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=23725&group=comp.theory#23725

  copy link   Newsgroups: comp.theory
Path: i2pn2.org!i2pn.org!eternal-september.org!reader02.eternal-september.org!.POSTED!not-for-mail
From: ben.use...@bsb.me.uk (Ben Bacarisse)
Newsgroups: comp.theory
Subject: Re: Concise refutation of halting problem proofs V20 [ Ben Bacarisse ]
Date: Sat, 20 Nov 2021 10:57:06 +0000
Organization: A noiseless patient Spider
Lines: 10
Message-ID: <87ee7bhz7h.fsf@bsb.me.uk>
References: <gKadnXaES8VF4QX8nZ2dnUU7-bfNnZ2d@giganews.com>
Mime-Version: 1.0
Content-Type: text/plain
Injection-Info: reader02.eternal-september.org; posting-host="e4ec6f8cee676bc3835ecd7a344c2f63";
logging-data="18433"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/YzeJ9Vw7pFv1uLIuCzgtb51XTjBuweZk="
Cancel-Lock: sha1:jYb+Onk5hlUNjS0nrYyQjbD75VU=
sha1:bjWdJYOL/MdHW1ODQQl4qnL/yFg=
X-BSB-Auth: 1.656caf245154f86e1f51.20211120105706GMT.87ee7bhz7h.fsf@bsb.me.uk
 by: Ben Bacarisse - Sat, 20 Nov 2021 10:57 UTC

olcott <NoOne@NoWhere.com> writes:

Subject:
Re: Concise refutation of halting problem proofs V20 [ Ben Bacarisse ]

I would appreciate it if you would not use my name in connection with
your "work". Thank you.

--
Ben.

Re: Concise refutation of halting problem proofs V20 [ Ben Bacarisse ]

<BV4mJ.3487$1d1.140@fx99.iad>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=23727&group=comp.theory#23727

  copy link   Newsgroups: comp.theory
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!news.misty.com!border2.nntp.dca1.giganews.com!border1.nntp.dca1.giganews.com!nntp.giganews.com!peer02.iad!feed-me.highwinds-media.com!news.highwinds-media.com!fx99.iad.POSTED!not-for-mail
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:91.0)
Gecko/20100101 Thunderbird/91.3.2
Subject: Re: Concise refutation of halting problem proofs V20 [ Ben Bacarisse
]
Content-Language: en-US
Newsgroups: comp.theory
References: <gKadnXaES8VF4QX8nZ2dnUU7-bfNnZ2d@giganews.com>
From: Rich...@Damon-Family.org (Richard Damon)
In-Reply-To: <gKadnXaES8VF4QX8nZ2dnUU7-bfNnZ2d@giganews.com>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Lines: 76
Message-ID: <BV4mJ.3487$1d1.140@fx99.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: Sat, 20 Nov 2021 06:24:16 -0500
X-Received-Bytes: 3154
X-Original-Bytes: 3021
 by: Richard Damon - Sat, 20 Nov 2021 11:24 UTC

On 11/19/21 11:43 PM, olcott wrote:
> #include <stdint.h>
> #include <stdio.h>
> typedef int (*ptr)();
>
> int H(ptr x, ptr y)
> {
>   x(y); // direct execution of P(P)
>   return 1;
> }
>
> // Minimal essence of Linz(1990) Ĥ
> // and Strachey(1965) P
> int P(ptr x)
> {
>   H(x, x);
>   return 1; // Give P a last instruction at the "c" level
> }
>
> int main(void)
> {
>   H(P, P);
> }
>
> Computation that halts
> a computation is said to halt whenever it enters a final state.
> (Linz:1990:234)
>
> PSR set: Combinations of H/P having pathological self-reference
> For every possible H of H(P,P) invoked from main() where P(P) calls this
> same H(P,P) and H simulates or executes its input and aborts or does not
> abort its input P never reaches its last instruction.
>
> PSR subset: Because we know that the input to H(P,P) never halts for the
> whole PSR set and a subset of these H/P combinations aborts the
> execution or simulation of its input then we know that for this entire
> subset the input to H(P,P) never halts and H(P,P) halts.
>
> When int main(void) { P(P); } is invoked on H/P elements of the above
> PSR subset, then we have a cases where the input to H(P,P) never halts
> and P(P) halts.
>
> This conclusively proves when the input to H(P,P) never halts and the
> same P(P) does halt that this does not form a contradiction.
>

LIE.

The input to H(P,P) when directly executed runs P(P) which we have many
times showed to halt if H(P,P) returns 0.

Your 'definition' is based on a false definition of halting, saying
Halting is H's simulation not reaching its final state, even if this is
because it aborted it before it reaches the halting state that does
exist in the actual pure exectution of that input.

Thus either H fails to return an answer or its input Halts when it says
non-halting.

Thus ALL H(P,P) fail to give the right answer.

FAIL.

LIE.

You are intentionally misusing an incorrect definition.

>
>
> Halting problem undecidability and infinitely nested simulation (V2)
> November 2021 PL Olcott
>
> https://www.researchgate.net/publication/356105750_Halting_problem_undecidability_and_infinitely_nested_simulation_V2
>
>

Re: Concise refutation of halting problem proofs V20 [ Ben Bacarisse ]

<wrOdnc55NeLphwT8nZ2dnUU7-N-dnZ2d@giganews.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=23730&group=comp.theory#23730

  copy link   Newsgroups: comp.theory
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!news.misty.com!border2.nntp.dca1.giganews.com!nntp.giganews.com!buffer2.nntp.dca1.giganews.com!news.giganews.com.POSTED!not-for-mail
NNTP-Posting-Date: Sat, 20 Nov 2021 09:55:32 -0600
Date: Sat, 20 Nov 2021 09:55:32 -0600
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Thunderbird/91.3.2
Subject: Re: Concise refutation of halting problem proofs V20 [ Ben Bacarisse
]
Content-Language: en-US
Newsgroups: comp.theory
References: <gKadnXaES8VF4QX8nZ2dnUU7-bfNnZ2d@giganews.com>
<87ee7bhz7h.fsf@bsb.me.uk>
From: NoO...@NoWhere.com (olcott)
In-Reply-To: <87ee7bhz7h.fsf@bsb.me.uk>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Message-ID: <wrOdnc55NeLphwT8nZ2dnUU7-N-dnZ2d@giganews.com>
Lines: 19
X-Usenet-Provider: http://www.giganews.com
X-Trace: sv3-vMZytJdDIuvv9d+zJ9TYkNB/86iSTXTGK3bq/6WtdDKpPdAyLqf3wPgT3M3InThZdUzZCf0oTrXoVwm!deUPVd8O9901yz15c8vH8zkCuutNNnAVUO8LXH5lPOwU7zAfEB2UmVmJSvQ70zreOafpHMzWinqY!tA==
X-Complaints-To: abuse@giganews.com
X-DMCA-Notifications: http://www.giganews.com/info/dmca.html
X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers
X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly
X-Postfilter: 1.3.40
X-Original-Bytes: 1797
 by: olcott - Sat, 20 Nov 2021 15:55 UTC

On 11/20/2021 4:57 AM, Ben Bacarisse wrote:
> olcott <NoOne@NoWhere.com> writes:
>
> Subject:
> Re: Concise refutation of halting problem proofs V20 [ Ben Bacarisse ]
>
> I would appreciate it if you would not use my name in connection with
> your "work". Thank you.
>

I have finally made it clear that when the input to H(P,P) never halts
the fact that (P) halts does not contradict this.

--
Copyright 2021 Pete Olcott

Talent hits a target no one else can hit;
Genius hits a target no one else can see.
Arthur Schopenhauer

Re: Concise refutation of halting problem proofs V20 [ Ben Bacarisse ]

<g39mJ.48692$3q9.22796@fx47.iad>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=23732&group=comp.theory#23732

  copy link   Newsgroups: comp.theory
Path: i2pn2.org!i2pn.org!paganini.bofh.team!news.dns-netz.com!news.freedyn.net!newsfeed.xs4all.nl!newsfeed8.news.xs4all.nl!news-out.netnews.com!news.alt.net!fdc2.netnews.com!peer02.ams1!peer.ams1.xlned.com!news.xlned.com!peer01.iad!feed-me.highwinds-media.com!news.highwinds-media.com!fx47.iad.POSTED!not-for-mail
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:91.0)
Gecko/20100101 Thunderbird/91.3.2
Subject: Re: Concise refutation of halting problem proofs V20 [ Ben Bacarisse
]
Content-Language: en-US
Newsgroups: comp.theory
References: <gKadnXaES8VF4QX8nZ2dnUU7-bfNnZ2d@giganews.com>
<87ee7bhz7h.fsf@bsb.me.uk> <wrOdnc55NeLphwT8nZ2dnUU7-N-dnZ2d@giganews.com>
From: Rich...@Damon-Family.org (Richard Damon)
In-Reply-To: <wrOdnc55NeLphwT8nZ2dnUU7-N-dnZ2d@giganews.com>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Lines: 22
Message-ID: <g39mJ.48692$3q9.22796@fx47.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: Sat, 20 Nov 2021 11:07:40 -0500
X-Received-Bytes: 1757
 by: Richard Damon - Sat, 20 Nov 2021 16:07 UTC

On 11/20/21 10:55 AM, olcott wrote:
> On 11/20/2021 4:57 AM, Ben Bacarisse wrote:
>> olcott <NoOne@NoWhere.com> writes:
>>
>> Subject:
>> Re: Concise refutation of halting problem proofs V20 [ Ben Bacarisse ]
>>
>> I would appreciate it if you would not use my name in connection with
>> your "work".  Thank you.
>>
>
> I have finally made it clear that when the input to H(P,P) never halts
> the fact that (P) halts does not contradict this.
>

Except that by definition the input to H(P,P) IS the representation of
P(P), so you LIE when you say it behaves differently.

FAIL. LIAR.

Or is it idiot because you don't know what you are talking about and it
is just a mistake of ignorance?

Re: Concise refutation of halting problem proofs V20

<878rxiixkd.fsf_-_@bsb.me.uk>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=23733&group=comp.theory#23733

  copy link   Newsgroups: comp.theory
Path: i2pn2.org!i2pn.org!eternal-september.org!reader02.eternal-september.org!.POSTED!not-for-mail
From: ben.use...@bsb.me.uk (Ben Bacarisse)
Newsgroups: comp.theory
Subject: Re: Concise refutation of halting problem proofs V20
Date: Sat, 20 Nov 2021 16:47:14 +0000
Organization: A noiseless patient Spider
Lines: 18
Message-ID: <878rxiixkd.fsf_-_@bsb.me.uk>
References: <gKadnXaES8VF4QX8nZ2dnUU7-bfNnZ2d@giganews.com>
<87ee7bhz7h.fsf@bsb.me.uk>
<wrOdnc55NeLphwT8nZ2dnUU7-N-dnZ2d@giganews.com>
Mime-Version: 1.0
Content-Type: text/plain
Injection-Info: reader02.eternal-september.org; posting-host="e4ec6f8cee676bc3835ecd7a344c2f63";
logging-data="4739"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18AhHKcPmJpiQR/dEbMflof1lYEHqqCMSE="
Cancel-Lock: sha1:z0p1dahxsquV/KHI3QUIvlHatiA=
sha1:yu2s7znk/7iFFrBSH9HZWLGsJw0=
X-BSB-Auth: 1.fecf0c5936825bb3d7eb.20211120164714GMT.878rxiixkd.fsf_-_@bsb.me.uk
 by: Ben Bacarisse - Sat, 20 Nov 2021 16:47 UTC

olcott <NoOne@NoWhere.com> writes:

> On 11/20/2021 4:57 AM, Ben Bacarisse wrote:
>> olcott <NoOne@NoWhere.com> writes:
>> Subject:
>> Re: Concise refutation of halting problem proofs V20 [ Ben Bacarisse ]
>> I would appreciate it if you would not use my name in connection with
>> your "work". Thank you.
>
> I have finally made it clear that when the input to H(P,P) never halts
> the fact that (P) halts does not contradict this.

I would appreciate it if you would not use my name in connection with
your "work". I can't make you, but I trust you have some sense of
propriety. Thank you.

--
Ben.

Re: Concise refutation of halting problem proofs V20

<KPmdna0icsBPqQT8nZ2dnUU7-cVQAAAA@giganews.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=23736&group=comp.theory#23736

  copy link   Newsgroups: comp.theory
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!news.misty.com!border2.nntp.dca1.giganews.com!nntp.giganews.com!buffer2.nntp.dca1.giganews.com!news.giganews.com.POSTED!not-for-mail
NNTP-Posting-Date: Sat, 20 Nov 2021 11:48:02 -0600
Date: Sat, 20 Nov 2021 11:48:01 -0600
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Thunderbird/91.3.2
Subject: Re: Concise refutation of halting problem proofs V20
Content-Language: en-US
Newsgroups: comp.theory
References: <gKadnXaES8VF4QX8nZ2dnUU7-bfNnZ2d@giganews.com>
<87ee7bhz7h.fsf@bsb.me.uk> <wrOdnc55NeLphwT8nZ2dnUU7-N-dnZ2d@giganews.com>
<878rxiixkd.fsf_-_@bsb.me.uk>
From: NoO...@NoWhere.com (olcott)
In-Reply-To: <878rxiixkd.fsf_-_@bsb.me.uk>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Message-ID: <KPmdna0icsBPqQT8nZ2dnUU7-cVQAAAA@giganews.com>
Lines: 27
X-Usenet-Provider: http://www.giganews.com
X-Trace: sv3-u7kSUWG9ryRkWJRJQSZOeTKnYof0Xyls4pHasco4HJNtA9h8c5gukEwCvvyFq2vRKkhKPpWbcib3k+M!+vO1fzJBCJop+jCZf7oEabZtrNHudi2UH9OnB8Wx59fFOOmPTN5DNI/9wcl46D2UXMy8uanrcFNH!WA==
X-Complaints-To: abuse@giganews.com
X-DMCA-Notifications: http://www.giganews.com/info/dmca.html
X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers
X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly
X-Postfilter: 1.3.40
X-Original-Bytes: 2240
 by: olcott - Sat, 20 Nov 2021 17:48 UTC

On 11/20/2021 10:47 AM, Ben Bacarisse wrote:
> olcott <NoOne@NoWhere.com> writes:
>
>> On 11/20/2021 4:57 AM, Ben Bacarisse wrote:
>>> olcott <NoOne@NoWhere.com> writes:
>>> Subject:
>>> Re: Concise refutation of halting problem proofs V20 [ Ben Bacarisse ]
>>> I would appreciate it if you would not use my name in connection with
>>> your "work". Thank you.
>>
>> I have finally made it clear that when the input to H(P,P) never halts
>> the fact that (P) halts does not contradict this.
>
> I would appreciate it if you would not use my name in connection with
> your "work". I can't make you, but I trust you have some sense of
> propriety. Thank you.
>

Not in this case. You have only unfairly evaluated my work.
Now is your chance for an accurate review.

--
Copyright 2021 Pete Olcott

Talent hits a target no one else can hit;
Genius hits a target no one else can see.
Arthur Schopenhauer

Re: Concise refutation of halting problem proofs V20

<rZdmJ.57389$SW5.45297@fx45.iad>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=23740&group=comp.theory#23740

  copy link   Newsgroups: comp.theory
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!newsreader4.netcologne.de!news.netcologne.de!peer01.ams1!peer.ams1.xlned.com!news.xlned.com!peer02.iad!feed-me.highwinds-media.com!news.highwinds-media.com!fx45.iad.POSTED!not-for-mail
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:91.0)
Gecko/20100101 Thunderbird/91.3.2
Subject: Re: Concise refutation of halting problem proofs V20
Content-Language: en-US
Newsgroups: comp.theory
References: <gKadnXaES8VF4QX8nZ2dnUU7-bfNnZ2d@giganews.com>
<87ee7bhz7h.fsf@bsb.me.uk> <wrOdnc55NeLphwT8nZ2dnUU7-N-dnZ2d@giganews.com>
<878rxiixkd.fsf_-_@bsb.me.uk> <KPmdna0icsBPqQT8nZ2dnUU7-cVQAAAA@giganews.com>
From: Rich...@Damon-Family.org (Richard Damon)
In-Reply-To: <KPmdna0icsBPqQT8nZ2dnUU7-cVQAAAA@giganews.com>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Lines: 30
Message-ID: <rZdmJ.57389$SW5.45297@fx45.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: Sat, 20 Nov 2021 16:42:47 -0500
X-Received-Bytes: 2193
 by: Richard Damon - Sat, 20 Nov 2021 21:42 UTC

On 11/20/21 12:48 PM, olcott wrote:
> On 11/20/2021 10:47 AM, Ben Bacarisse wrote:
>> olcott <NoOne@NoWhere.com> writes:
>>
>>> On 11/20/2021 4:57 AM, Ben Bacarisse wrote:
>>>> olcott <NoOne@NoWhere.com> writes:
>>>> Subject:
>>>> Re: Concise refutation of halting problem proofs V20 [ Ben Bacarisse ]
>>>> I would appreciate it if you would not use my name in connection with
>>>> your "work".  Thank you.
>>>
>>> I have finally made it clear that when the input to H(P,P) never halts
>>> the fact that (P) halts does not contradict this.
>>
>> I would appreciate it if you would not use my name in connection with
>> your "work".  I can't make you, but I trust you have some sense of
>> propriety.  Thank you.
>>
>
> Not in this case. You have only unfairly evaluated my work.
> Now is your chance for an accurate review.
>

No, your 'proof' is still a lie based on using the wrong definitions of
words.

The computation that is the input to H(P,P) WILL halt if H(P,P) returns
the value 0 as long as P is the required computation based on that H.

FAIL.

Re: Concise refutation of halting problem proofs V20

<mdmdnfK4uJV-8wT8nZ2dnUU7-dHNnZ2d@giganews.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=23742&group=comp.theory#23742

  copy link   Newsgroups: comp.theory
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!news.misty.com!border2.nntp.dca1.giganews.com!nntp.giganews.com!buffer2.nntp.dca1.giganews.com!news.giganews.com.POSTED!not-for-mail
NNTP-Posting-Date: Sat, 20 Nov 2021 15:55:47 -0600
Date: Sat, 20 Nov 2021 15:55:46 -0600
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Thunderbird/91.3.2
Subject: Re: Concise refutation of halting problem proofs V20
Content-Language: en-US
Newsgroups: comp.theory
References: <gKadnXaES8VF4QX8nZ2dnUU7-bfNnZ2d@giganews.com>
<87ee7bhz7h.fsf@bsb.me.uk> <wrOdnc55NeLphwT8nZ2dnUU7-N-dnZ2d@giganews.com>
<878rxiixkd.fsf_-_@bsb.me.uk> <KPmdna0icsBPqQT8nZ2dnUU7-cVQAAAA@giganews.com>
<rZdmJ.57389$SW5.45297@fx45.iad>
From: NoO...@NoWhere.com (olcott)
In-Reply-To: <rZdmJ.57389$SW5.45297@fx45.iad>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Message-ID: <mdmdnfK4uJV-8wT8nZ2dnUU7-dHNnZ2d@giganews.com>
Lines: 52
X-Usenet-Provider: http://www.giganews.com
X-Trace: sv3-pfxfaMtuYNTTTaKEEkhBFaUnSms6w6Nr010t5Ww1Y2hb9sDF2mHo7joDPpfcRC5BiTp8g6dZIEHWaeK!K13AfVEMJFkgLPLwCgEY6xQjsnv1Joqsb8yX9Fpn2c7dDbVT9yr9BK6pjpQdYQ1HuSJWcZaD8M5Y!2g==
X-Complaints-To: abuse@giganews.com
X-DMCA-Notifications: http://www.giganews.com/info/dmca.html
X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers
X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly
X-Postfilter: 1.3.40
X-Original-Bytes: 3155
 by: olcott - Sat, 20 Nov 2021 21:55 UTC

On 11/20/2021 3:42 PM, Richard Damon wrote:
> On 11/20/21 12:48 PM, olcott wrote:
>> On 11/20/2021 10:47 AM, Ben Bacarisse wrote:
>>> olcott <NoOne@NoWhere.com> writes:
>>>
>>>> On 11/20/2021 4:57 AM, Ben Bacarisse wrote:
>>>>> olcott <NoOne@NoWhere.com> writes:
>>>>> Subject:
>>>>> Re: Concise refutation of halting problem proofs V20 [ Ben Bacarisse ]
>>>>> I would appreciate it if you would not use my name in connection with
>>>>> your "work".  Thank you.
>>>>
>>>> I have finally made it clear that when the input to H(P,P) never halts
>>>> the fact that (P) halts does not contradict this.
>>>
>>> I would appreciate it if you would not use my name in connection with
>>> your "work".  I can't make you, but I trust you have some sense of
>>> propriety.  Thank you.
>>>
>>
>> Not in this case. You have only unfairly evaluated my work.
>> Now is your chance for an accurate review.
>>
>
> No, your 'proof' is still a lie based on using the wrong definitions of
> words.
>
> The computation that is the input to H(P,P) WILL halt if H(P,P) returns
> the value 0 as long as P is the required computation based on that H.
>
> FAIL.

Everyone here defines the domain of function H to contain elements that
are only vague ideas.

The domain of function H must actually be a set of elements that each
specify a sequence of configurations.

Function H maps elements of its domain D to {0,1}
Domain D is comprised of elements that specify a sequence of
configurations.
H maps elements E of D to {0,1} on the basis of whether or not E reaches
its final state.

--
Copyright 2021 Pete Olcott

Talent hits a target no one else can hit;
Genius hits a target no one else can see.
Arthur Schopenhauer

Re: Concise refutation of halting problem proofs V20

<rjemJ.126018$831.69198@fx40.iad>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=23744&group=comp.theory#23744

  copy link   Newsgroups: comp.theory
Path: i2pn2.org!i2pn.org!paganini.bofh.team!news.dns-netz.com!news.freedyn.net!newsfeed.xs4all.nl!newsfeed7.news.xs4all.nl!news-out.netnews.com!news.alt.net!fdc2.netnews.com!peer02.ams1!peer.ams1.xlned.com!news.xlned.com!peer02.iad!feed-me.highwinds-media.com!news.highwinds-media.com!fx40.iad.POSTED!not-for-mail
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:91.0)
Gecko/20100101 Thunderbird/91.3.2
Subject: Re: Concise refutation of halting problem proofs V20
Content-Language: en-US
Newsgroups: comp.theory
References: <gKadnXaES8VF4QX8nZ2dnUU7-bfNnZ2d@giganews.com>
<87ee7bhz7h.fsf@bsb.me.uk> <wrOdnc55NeLphwT8nZ2dnUU7-N-dnZ2d@giganews.com>
<878rxiixkd.fsf_-_@bsb.me.uk> <KPmdna0icsBPqQT8nZ2dnUU7-cVQAAAA@giganews.com>
<rZdmJ.57389$SW5.45297@fx45.iad>
<mdmdnfK4uJV-8wT8nZ2dnUU7-dHNnZ2d@giganews.com>
From: Rich...@Damon-Family.org (Richard Damon)
In-Reply-To: <mdmdnfK4uJV-8wT8nZ2dnUU7-dHNnZ2d@giganews.com>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Lines: 64
Message-ID: <rjemJ.126018$831.69198@fx40.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: Sat, 20 Nov 2021 17:06:15 -0500
X-Received-Bytes: 3287
 by: Richard Damon - Sat, 20 Nov 2021 22:06 UTC

On 11/20/21 4:55 PM, olcott wrote:
> On 11/20/2021 3:42 PM, Richard Damon wrote:
>> On 11/20/21 12:48 PM, olcott wrote:
>>> On 11/20/2021 10:47 AM, Ben Bacarisse wrote:
>>>> olcott <NoOne@NoWhere.com> writes:
>>>>
>>>>> On 11/20/2021 4:57 AM, Ben Bacarisse wrote:
>>>>>> olcott <NoOne@NoWhere.com> writes:
>>>>>> Subject:
>>>>>> Re: Concise refutation of halting problem proofs V20 [ Ben
>>>>>> Bacarisse ]
>>>>>> I would appreciate it if you would not use my name in connection with
>>>>>> your "work".  Thank you.
>>>>>
>>>>> I have finally made it clear that when the input to H(P,P) never halts
>>>>> the fact that (P) halts does not contradict this.
>>>>
>>>> I would appreciate it if you would not use my name in connection with
>>>> your "work".  I can't make you, but I trust you have some sense of
>>>> propriety.  Thank you.
>>>>
>>>
>>> Not in this case. You have only unfairly evaluated my work.
>>> Now is your chance for an accurate review.
>>>
>>
>> No, your 'proof' is still a lie based on using the wrong definitions
>> of words.
>>
>> The computation that is the input to H(P,P) WILL halt if H(P,P)
>> returns the value 0 as long as P is the required computation based on
>> that H.
>>
>> FAIL.
>
> Everyone here defines the domain of function H to contain elements that
> are only vague ideas.
>

LIE.

The Domain of a proper Halt decider is PRECISELY defined.

> The domain of function H must actually be a set of elements that each
> specify a sequence of configurations.

And they do.

>
> Function H maps elements of its domain D to {0,1}
> Domain D is comprised of elements that specify a sequence of
> configurations.
> H maps elements E of D to {0,1} on the basis of whether or not E reaches
> its final state.
>

Except that for the Computation P(P) we KNOW that since H(P,P) returns a
value in finite time, your defined P(P) above WILL ALWAYS return in
finite time and thus is Halting.

What doesn't reach the final state is the aborted internal computation
in H which nobody cares about.

Re: Concise refutation of halting problem proofs V20

<N6adnS8fSrBW7wT8nZ2dnUU7-SPNnZ2d@giganews.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=23745&group=comp.theory#23745

  copy link   Newsgroups: comp.theory
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!news.misty.com!border2.nntp.dca1.giganews.com!nntp.giganews.com!buffer2.nntp.dca1.giganews.com!news.giganews.com.POSTED!not-for-mail
NNTP-Posting-Date: Sat, 20 Nov 2021 16:12:27 -0600
Date: Sat, 20 Nov 2021 16:12:26 -0600
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Thunderbird/91.3.2
Subject: Re: Concise refutation of halting problem proofs V20
Content-Language: en-US
Newsgroups: comp.theory
References: <gKadnXaES8VF4QX8nZ2dnUU7-bfNnZ2d@giganews.com>
<87ee7bhz7h.fsf@bsb.me.uk> <wrOdnc55NeLphwT8nZ2dnUU7-N-dnZ2d@giganews.com>
<878rxiixkd.fsf_-_@bsb.me.uk> <KPmdna0icsBPqQT8nZ2dnUU7-cVQAAAA@giganews.com>
<rZdmJ.57389$SW5.45297@fx45.iad>
<mdmdnfK4uJV-8wT8nZ2dnUU7-dHNnZ2d@giganews.com>
<rjemJ.126018$831.69198@fx40.iad>
From: NoO...@NoWhere.com (olcott)
In-Reply-To: <rjemJ.126018$831.69198@fx40.iad>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Message-ID: <N6adnS8fSrBW7wT8nZ2dnUU7-SPNnZ2d@giganews.com>
Lines: 85
X-Usenet-Provider: http://www.giganews.com
X-Trace: sv3-V4eqtEnXIwYEDv/pRB+ypxeAz9dKdy4qCoukj9zT8tBVxj/QpQDpIDi2kZic7fGkvH8rscUYHrazRHg!8JrgvQZQvR3Vz+R+DT4bCT7KsQsZsxqsKEyYimIdw7NXpFatADAPWhdn7fJJ8MZlnJDp1Swu8co4!Pg==
X-Complaints-To: abuse@giganews.com
X-DMCA-Notifications: http://www.giganews.com/info/dmca.html
X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers
X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly
X-Postfilter: 1.3.40
X-Original-Bytes: 4152
 by: olcott - Sat, 20 Nov 2021 22:12 UTC

On 11/20/2021 4:06 PM, Richard Damon wrote:
> On 11/20/21 4:55 PM, olcott wrote:
>> On 11/20/2021 3:42 PM, Richard Damon wrote:
>>> On 11/20/21 12:48 PM, olcott wrote:
>>>> On 11/20/2021 10:47 AM, Ben Bacarisse wrote:
>>>>> olcott <NoOne@NoWhere.com> writes:
>>>>>
>>>>>> On 11/20/2021 4:57 AM, Ben Bacarisse wrote:
>>>>>>> olcott <NoOne@NoWhere.com> writes:
>>>>>>> Subject:
>>>>>>> Re: Concise refutation of halting problem proofs V20 [ Ben
>>>>>>> Bacarisse ]
>>>>>>> I would appreciate it if you would not use my name in connection
>>>>>>> with
>>>>>>> your "work".  Thank you.
>>>>>>
>>>>>> I have finally made it clear that when the input to H(P,P) never
>>>>>> halts
>>>>>> the fact that (P) halts does not contradict this.
>>>>>
>>>>> I would appreciate it if you would not use my name in connection with
>>>>> your "work".  I can't make you, but I trust you have some sense of
>>>>> propriety.  Thank you.
>>>>>
>>>>
>>>> Not in this case. You have only unfairly evaluated my work.
>>>> Now is your chance for an accurate review.
>>>>
>>>
>>> No, your 'proof' is still a lie based on using the wrong definitions
>>> of words.
>>>
>>> The computation that is the input to H(P,P) WILL halt if H(P,P)
>>> returns the value 0 as long as P is the required computation based on
>>> that H.
>>>
>>> FAIL.
>>
>> Everyone here defines the domain of function H to contain elements
>> that are only vague ideas.
>>
>
> LIE.
>
>
> The Domain of a proper Halt decider is PRECISELY defined.
>
>> The domain of function H must actually be a set of elements that each
>> specify a sequence of configurations.
>
> And they do.
>
>>
>> Function H maps elements of its domain D to {0,1}
>> Domain D is comprised of elements that specify a sequence of
>> configurations.
>> H maps elements E of D to {0,1} on the basis of whether or not E
>> reaches its final state.
>>
>
> Except that for the Computation P(P)

This is the exact vague idea that cannot possibly exist in the domain of H.

The sequence of configurations specified by the x86 machine language of
P is in the domain of H.

Some vague idea about what P(P) is supposed to do cannot possibly be in
the domain of H.

>> we KNOW that since H(P,P) returns a
> value in finite time, your defined P(P) above WILL ALWAYS return in
> finite time and thus is Halting.
>
> What doesn't reach the final state is the aborted internal computation
> in H which nobody cares about.
>

--
Copyright 2021 Pete Olcott

Talent hits a target no one else can hit;
Genius hits a target no one else can see.
Arthur Schopenhauer

Re: Concise refutation of halting problem proofs V20

<ZCemJ.57451$SW5.24714@fx45.iad>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=23746&group=comp.theory#23746

  copy link   Newsgroups: comp.theory
Path: i2pn2.org!i2pn.org!aioe.org!news.uzoreto.com!newsfeed.xs4all.nl!newsfeed8.news.xs4all.nl!news-out.netnews.com!news.alt.net!fdc2.netnews.com!peer02.ams1!peer.ams1.xlned.com!news.xlned.com!peer02.iad!feed-me.highwinds-media.com!news.highwinds-media.com!fx45.iad.POSTED!not-for-mail
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:91.0)
Gecko/20100101 Thunderbird/91.3.2
Subject: Re: Concise refutation of halting problem proofs V20
Content-Language: en-US
Newsgroups: comp.theory
References: <gKadnXaES8VF4QX8nZ2dnUU7-bfNnZ2d@giganews.com>
<87ee7bhz7h.fsf@bsb.me.uk> <wrOdnc55NeLphwT8nZ2dnUU7-N-dnZ2d@giganews.com>
<878rxiixkd.fsf_-_@bsb.me.uk> <KPmdna0icsBPqQT8nZ2dnUU7-cVQAAAA@giganews.com>
<rZdmJ.57389$SW5.45297@fx45.iad>
<mdmdnfK4uJV-8wT8nZ2dnUU7-dHNnZ2d@giganews.com>
<rjemJ.126018$831.69198@fx40.iad>
<N6adnS8fSrBW7wT8nZ2dnUU7-SPNnZ2d@giganews.com>
From: Rich...@Damon-Family.org (Richard Damon)
In-Reply-To: <N6adnS8fSrBW7wT8nZ2dnUU7-SPNnZ2d@giganews.com>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Lines: 112
Message-ID: <ZCemJ.57451$SW5.24714@fx45.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: Sat, 20 Nov 2021 17:27:04 -0500
X-Received-Bytes: 4804
 by: Richard Damon - Sat, 20 Nov 2021 22:27 UTC

On 11/20/21 5:12 PM, olcott wrote:
> On 11/20/2021 4:06 PM, Richard Damon wrote:
>> On 11/20/21 4:55 PM, olcott wrote:
>>> On 11/20/2021 3:42 PM, Richard Damon wrote:
>>>> On 11/20/21 12:48 PM, olcott wrote:
>>>>> On 11/20/2021 10:47 AM, Ben Bacarisse wrote:
>>>>>> olcott <NoOne@NoWhere.com> writes:
>>>>>>
>>>>>>> On 11/20/2021 4:57 AM, Ben Bacarisse wrote:
>>>>>>>> olcott <NoOne@NoWhere.com> writes:
>>>>>>>> Subject:
>>>>>>>> Re: Concise refutation of halting problem proofs V20 [ Ben
>>>>>>>> Bacarisse ]
>>>>>>>> I would appreciate it if you would not use my name in connection
>>>>>>>> with
>>>>>>>> your "work".  Thank you.
>>>>>>>
>>>>>>> I have finally made it clear that when the input to H(P,P) never
>>>>>>> halts
>>>>>>> the fact that (P) halts does not contradict this.
>>>>>>
>>>>>> I would appreciate it if you would not use my name in connection with
>>>>>> your "work".  I can't make you, but I trust you have some sense of
>>>>>> propriety.  Thank you.
>>>>>>
>>>>>
>>>>> Not in this case. You have only unfairly evaluated my work.
>>>>> Now is your chance for an accurate review.
>>>>>
>>>>
>>>> No, your 'proof' is still a lie based on using the wrong definitions
>>>> of words.
>>>>
>>>> The computation that is the input to H(P,P) WILL halt if H(P,P)
>>>> returns the value 0 as long as P is the required computation based
>>>> on that H.
>>>>
>>>> FAIL.
>>>
>>> Everyone here defines the domain of function H to contain elements
>>> that are only vague ideas.
>>>
>>
>> LIE.
>>
>>
>> The Domain of a proper Halt decider is PRECISELY defined.
>>
>>> The domain of function H must actually be a set of elements that each
>>> specify a sequence of configurations.
>>
>> And they do.
>>
>>>
>>> Function H maps elements of its domain D to {0,1}
>>> Domain D is comprised of elements that specify a sequence of
>>> configurations.
>>> H maps elements E of D to {0,1} on the basis of whether or not E
>>> reaches its final state.
>>>
>>
>> Except that for the Computation P(P)
>
> This is the exact vague idea that cannot possibly exist in the domain of H.

This is NOT a 'vague idea', P, which Linz describes as H^, is PRECISELY
defined in terms of H, which you claim to have a definition of.

>
> The sequence of configurations specified by the x86 machine language of
> P is in the domain of H.

And, the x86 machine language of ALL of the execution of P is exactly
what the computation of P is. Note, this includes ALL the x86 machine
language of H and anything that H itself calls.

This is NOT 'vague'

>
> Some vague idea about what P(P) is supposed to do cannot possibly be in
> the domain of H.

If P is vague, then H must be vague too, as Linz defines EXACTLY how to
build H^ (which you are calling P) from ANY H that could exist.

Thus, you calling P 'vague' means either:

1) YOU are LYING,

2) YOU don't understand what Linz has described to do, and thus are not
qualified to say you have come up with a counter for his proof, or

3) The problem is that you H is actually just some 'vague' description
and you have been lying about its existance for all this time.

Which is it?

FAIL

>
>>> we KNOW that since H(P,P) returns a
>> value in finite time, your defined P(P) above WILL ALWAYS return in
>> finite time and thus is Halting.
>>
>> What doesn't reach the final state is the aborted internal computation
>> in H which nobody cares about.
>>
>
>

Re: Concise refutation of halting problem proofs V20

<f-mdncpGXqfE5gT8nZ2dnUU7-QnNnZ2d@giganews.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=23747&group=comp.theory#23747

  copy link   Newsgroups: comp.theory
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!news.misty.com!border2.nntp.dca1.giganews.com!nntp.giganews.com!buffer2.nntp.dca1.giganews.com!news.giganews.com.POSTED!not-for-mail
NNTP-Posting-Date: Sat, 20 Nov 2021 16:48:57 -0600
Date: Sat, 20 Nov 2021 16:48:56 -0600
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Thunderbird/91.3.2
Subject: Re: Concise refutation of halting problem proofs V20
Content-Language: en-US
Newsgroups: comp.theory
References: <gKadnXaES8VF4QX8nZ2dnUU7-bfNnZ2d@giganews.com>
<87ee7bhz7h.fsf@bsb.me.uk> <wrOdnc55NeLphwT8nZ2dnUU7-N-dnZ2d@giganews.com>
<878rxiixkd.fsf_-_@bsb.me.uk> <KPmdna0icsBPqQT8nZ2dnUU7-cVQAAAA@giganews.com>
<rZdmJ.57389$SW5.45297@fx45.iad>
<mdmdnfK4uJV-8wT8nZ2dnUU7-dHNnZ2d@giganews.com>
<rjemJ.126018$831.69198@fx40.iad>
<N6adnS8fSrBW7wT8nZ2dnUU7-SPNnZ2d@giganews.com>
<ZCemJ.57451$SW5.24714@fx45.iad>
From: NoO...@NoWhere.com (olcott)
In-Reply-To: <ZCemJ.57451$SW5.24714@fx45.iad>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Message-ID: <f-mdncpGXqfE5gT8nZ2dnUU7-QnNnZ2d@giganews.com>
Lines: 128
X-Usenet-Provider: http://www.giganews.com
X-Trace: sv3-QbK7xaiOGn83rJGKNrGhykxfb5aqOwh44z7MntIcxUzCMe6N8yNcFTwnJuaiDEWRQt+fwhj7ikmN4Yd!1zlcjd62mbHyRpLXrwahH3IjfMhuPdlRvi5VzfB5FAGfqApJra2kK/oUi6Tgs/+yt4JQFi4hvKTX!PQ==
X-Complaints-To: abuse@giganews.com
X-DMCA-Notifications: http://www.giganews.com/info/dmca.html
X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers
X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly
X-Postfilter: 1.3.40
X-Original-Bytes: 5605
 by: olcott - Sat, 20 Nov 2021 22:48 UTC

On 11/20/2021 4:27 PM, Richard Damon wrote:
> On 11/20/21 5:12 PM, olcott wrote:
>> On 11/20/2021 4:06 PM, Richard Damon wrote:
>>> On 11/20/21 4:55 PM, olcott wrote:
>>>> On 11/20/2021 3:42 PM, Richard Damon wrote:
>>>>> On 11/20/21 12:48 PM, olcott wrote:
>>>>>> On 11/20/2021 10:47 AM, Ben Bacarisse wrote:
>>>>>>> olcott <NoOne@NoWhere.com> writes:
>>>>>>>
>>>>>>>> On 11/20/2021 4:57 AM, Ben Bacarisse wrote:
>>>>>>>>> olcott <NoOne@NoWhere.com> writes:
>>>>>>>>> Subject:
>>>>>>>>> Re: Concise refutation of halting problem proofs V20 [ Ben
>>>>>>>>> Bacarisse ]
>>>>>>>>> I would appreciate it if you would not use my name in
>>>>>>>>> connection with
>>>>>>>>> your "work".  Thank you.
>>>>>>>>
>>>>>>>> I have finally made it clear that when the input to H(P,P) never
>>>>>>>> halts
>>>>>>>> the fact that (P) halts does not contradict this.
>>>>>>>
>>>>>>> I would appreciate it if you would not use my name in connection
>>>>>>> with
>>>>>>> your "work".  I can't make you, but I trust you have some sense of
>>>>>>> propriety.  Thank you.
>>>>>>>
>>>>>>
>>>>>> Not in this case. You have only unfairly evaluated my work.
>>>>>> Now is your chance for an accurate review.
>>>>>>
>>>>>
>>>>> No, your 'proof' is still a lie based on using the wrong
>>>>> definitions of words.
>>>>>
>>>>> The computation that is the input to H(P,P) WILL halt if H(P,P)
>>>>> returns the value 0 as long as P is the required computation based
>>>>> on that H.
>>>>>
>>>>> FAIL.
>>>>
>>>> Everyone here defines the domain of function H to contain elements
>>>> that are only vague ideas.
>>>>
>>>
>>> LIE.
>>>
>>>
>>> The Domain of a proper Halt decider is PRECISELY defined.
>>>
>>>> The domain of function H must actually be a set of elements that
>>>> each specify a sequence of configurations.
>>>
>>> And they do.
>>>
>>>>
>>>> Function H maps elements of its domain D to {0,1}
>>>> Domain D is comprised of elements that specify a sequence of
>>>> configurations.
>>>> H maps elements E of D to {0,1} on the basis of whether or not E
>>>> reaches its final state.
>>>>
>>>
>>> Except that for the Computation P(P)
>>
>> This is the exact vague idea that cannot possibly exist in the domain
>> of H.
>
> This is NOT a 'vague idea', P, which Linz describes as H^, is PRECISELY
> defined in terms of H, which you claim to have a definition of.
>

A specified sequence of configurations can be an element of the domain
of H. Some belief about how P(P) is supposed to behave cannot be such an
element.

>>
>> The sequence of configurations specified by the x86 machine language
>> of P is in the domain of H.
>
> And, the x86 machine language of ALL of the execution of P is exactly
> what the computation of P is. Note, this includes ALL the x86 machine
> language of H and anything that H itself calls.
>
> This is NOT 'vague'
>
>>
>> Some vague idea about what P(P) is supposed to do cannot possibly be
>> in the domain of H.
>
> If P is vague, then H must be vague too, as Linz defines EXACTLY how to
> build H^ (which you are calling P) from ANY H that could exist.
>
> Thus, you calling P 'vague' means either:
>
> 1) YOU are LYING,
>
> 2) YOU don't understand what Linz has described to do, and thus are not
> qualified to say you have come up with a counter for his proof, or
>
> 3) The problem is that you H is actually just some 'vague' description
> and you have been lying about its existance for all this time.
>
>
> Which is it?
>
>
> FAIL
>
>>
>>>> we KNOW that since H(P,P) returns a
>>> value in finite time, your defined P(P) above WILL ALWAYS return in
>>> finite time and thus is Halting.
>>>
>>> What doesn't reach the final state is the aborted internal
>>> computation in H which nobody cares about.
>>>
>>
>>
>

--
Copyright 2021 Pete Olcott

Talent hits a target no one else can hit;
Genius hits a target no one else can see.
Arthur Schopenhauer

Re: Concise refutation of halting problem proofs V20

<VBfmJ.148748$I%1.2962@fx36.iad>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=23751&group=comp.theory#23751

  copy link   Newsgroups: comp.theory
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!newsreader4.netcologne.de!news.netcologne.de!peer01.ams1!peer.ams1.xlned.com!news.xlned.com!peer03.iad!feed-me.highwinds-media.com!news.highwinds-media.com!fx36.iad.POSTED!not-for-mail
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:91.0)
Gecko/20100101 Thunderbird/91.3.2
Subject: Re: Concise refutation of halting problem proofs V20
Content-Language: en-US
Newsgroups: comp.theory
References: <gKadnXaES8VF4QX8nZ2dnUU7-bfNnZ2d@giganews.com>
<87ee7bhz7h.fsf@bsb.me.uk> <wrOdnc55NeLphwT8nZ2dnUU7-N-dnZ2d@giganews.com>
<878rxiixkd.fsf_-_@bsb.me.uk> <KPmdna0icsBPqQT8nZ2dnUU7-cVQAAAA@giganews.com>
<rZdmJ.57389$SW5.45297@fx45.iad>
<mdmdnfK4uJV-8wT8nZ2dnUU7-dHNnZ2d@giganews.com>
<rjemJ.126018$831.69198@fx40.iad>
<N6adnS8fSrBW7wT8nZ2dnUU7-SPNnZ2d@giganews.com>
<ZCemJ.57451$SW5.24714@fx45.iad>
<f-mdncpGXqfE5gT8nZ2dnUU7-QnNnZ2d@giganews.com>
From: Rich...@Damon-Family.org (Richard Damon)
In-Reply-To: <f-mdncpGXqfE5gT8nZ2dnUU7-QnNnZ2d@giganews.com>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Lines: 97
Message-ID: <VBfmJ.148748$I%1.2962@fx36.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: Sat, 20 Nov 2021 18:34:06 -0500
X-Received-Bytes: 4933
 by: Richard Damon - Sat, 20 Nov 2021 23:34 UTC

On 11/20/21 5:48 PM, olcott wrote:
> On 11/20/2021 4:27 PM, Richard Damon wrote:
>> On 11/20/21 5:12 PM, olcott wrote:
>>> On 11/20/2021 4:06 PM, Richard Damon wrote:
>>>> On 11/20/21 4:55 PM, olcott wrote:
>>>>> On 11/20/2021 3:42 PM, Richard Damon wrote:
>>>>>> On 11/20/21 12:48 PM, olcott wrote:
>>>>>>> On 11/20/2021 10:47 AM, Ben Bacarisse wrote:
>>>>>>>> olcott <NoOne@NoWhere.com> writes:
>>>>>>>>
>>>>>>>>> On 11/20/2021 4:57 AM, Ben Bacarisse wrote:
>>>>>>>>>> olcott <NoOne@NoWhere.com> writes:
>>>>>>>>>> Subject:
>>>>>>>>>> Re: Concise refutation of halting problem proofs V20 [ Ben
>>>>>>>>>> Bacarisse ]
>>>>>>>>>> I would appreciate it if you would not use my name in
>>>>>>>>>> connection with
>>>>>>>>>> your "work".  Thank you.
>>>>>>>>>
>>>>>>>>> I have finally made it clear that when the input to H(P,P)
>>>>>>>>> never halts
>>>>>>>>> the fact that (P) halts does not contradict this.
>>>>>>>>
>>>>>>>> I would appreciate it if you would not use my name in connection
>>>>>>>> with
>>>>>>>> your "work".  I can't make you, but I trust you have some sense of
>>>>>>>> propriety.  Thank you.
>>>>>>>>
>>>>>>>
>>>>>>> Not in this case. You have only unfairly evaluated my work.
>>>>>>> Now is your chance for an accurate review.
>>>>>>>
>>>>>>
>>>>>> No, your 'proof' is still a lie based on using the wrong
>>>>>> definitions of words.
>>>>>>
>>>>>> The computation that is the input to H(P,P) WILL halt if H(P,P)
>>>>>> returns the value 0 as long as P is the required computation based
>>>>>> on that H.
>>>>>>
>>>>>> FAIL.
>>>>>
>>>>> Everyone here defines the domain of function H to contain elements
>>>>> that are only vague ideas.
>>>>>
>>>>
>>>> LIE.
>>>>
>>>>
>>>> The Domain of a proper Halt decider is PRECISELY defined.
>>>>
>>>>> The domain of function H must actually be a set of elements that
>>>>> each specify a sequence of configurations.
>>>>
>>>> And they do.
>>>>
>>>>>
>>>>> Function H maps elements of its domain D to {0,1}
>>>>> Domain D is comprised of elements that specify a sequence of
>>>>> configurations.
>>>>> H maps elements E of D to {0,1} on the basis of whether or not E
>>>>> reaches its final state.
>>>>>
>>>>
>>>> Except that for the Computation P(P)
>>>
>>> This is the exact vague idea that cannot possibly exist in the domain
>>> of H.
>>
>> This is NOT a 'vague idea', P, which Linz describes as H^, is
>> PRECISELY defined in terms of H, which you claim to have a definition of.
>>
>
> A specified sequence of configurations can be an element of the domain
> of H. Some belief about how P(P) is supposed to behave cannot be such an
> element.

And what is 'vague' about Linz's description of how to build H^, which
you call P.

It isn't just 'Some belief', it is PRECISELY defined (but you actually
don't follow it, because your simulator model is broken).

Even with your simulation error, the precise definition of P is
available, and you in fact generate code that does it, you just ignore
the fact that P includes ALL of H and everything it uses.

The ONLY way for H^/P to be vague, is if your H is still some vague
definition, which is what it seems to be at times, after all, you keep
talking about this whole set of things called H.

H is NOT a 'set' of machines, it is a precisely specified machine.

You make H vague to LIE about what it does, as EVERY H gets defeated,
but you mixing Hs you can try to throw up smoke about using different Hs
in different parts of the proof.

Re: Concise refutation of halting problem proofs V20 [ Richard FAILS ]

<xs2dnfyiUecRFQT8nZ2dnUU7-dvNnZ2d@giganews.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=23753&group=comp.theory#23753

  copy link   Newsgroups: comp.theory
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!news.misty.com!border2.nntp.dca1.giganews.com!nntp.giganews.com!buffer2.nntp.dca1.giganews.com!buffer1.nntp.dca1.giganews.com!news.giganews.com.POSTED!not-for-mail
NNTP-Posting-Date: Sat, 20 Nov 2021 17:45:16 -0600
Date: Sat, 20 Nov 2021 17:45:15 -0600
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Thunderbird/91.3.2
Subject: Re: Concise refutation of halting problem proofs V20 [ Richard FAILS
]
Content-Language: en-US
Newsgroups: comp.theory
References: <gKadnXaES8VF4QX8nZ2dnUU7-bfNnZ2d@giganews.com>
<87ee7bhz7h.fsf@bsb.me.uk> <wrOdnc55NeLphwT8nZ2dnUU7-N-dnZ2d@giganews.com>
<878rxiixkd.fsf_-_@bsb.me.uk> <KPmdna0icsBPqQT8nZ2dnUU7-cVQAAAA@giganews.com>
<rZdmJ.57389$SW5.45297@fx45.iad>
<mdmdnfK4uJV-8wT8nZ2dnUU7-dHNnZ2d@giganews.com>
<rjemJ.126018$831.69198@fx40.iad>
<N6adnS8fSrBW7wT8nZ2dnUU7-SPNnZ2d@giganews.com>
<ZCemJ.57451$SW5.24714@fx45.iad>
<f-mdncpGXqfE5gT8nZ2dnUU7-QnNnZ2d@giganews.com>
<VBfmJ.148748$I%1.2962@fx36.iad>
From: NoO...@NoWhere.com (olcott)
In-Reply-To: <VBfmJ.148748$I%1.2962@fx36.iad>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Message-ID: <xs2dnfyiUecRFQT8nZ2dnUU7-dvNnZ2d@giganews.com>
Lines: 107
X-Usenet-Provider: http://www.giganews.com
X-Trace: sv3-TTYLSy3MF892RLENXBNa5KijKwOhvWGyF/5Yf6piPtPAlIUoz+HzBeDL7Id5kTg6r8JAlEw5SstI47V!SUzD2YADyLTCYOYxcavcy0S3d9eZv0d3BxeU3bbMtM5LgCU0nvCqDa1RlBaJkZL40GcFEY761Yl9!PA==
X-Complaints-To: abuse@giganews.com
X-DMCA-Notifications: http://www.giganews.com/info/dmca.html
X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers
X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly
X-Postfilter: 1.3.40
X-Original-Bytes: 5321
 by: olcott - Sat, 20 Nov 2021 23:45 UTC

On 11/20/2021 5:34 PM, Richard Damon wrote:
>
> On 11/20/21 5:48 PM, olcott wrote:
>> On 11/20/2021 4:27 PM, Richard Damon wrote:
>>> On 11/20/21 5:12 PM, olcott wrote:
>>>> On 11/20/2021 4:06 PM, Richard Damon wrote:
>>>>> On 11/20/21 4:55 PM, olcott wrote:
>>>>>> On 11/20/2021 3:42 PM, Richard Damon wrote:
>>>>>>> On 11/20/21 12:48 PM, olcott wrote:
>>>>>>>> On 11/20/2021 10:47 AM, Ben Bacarisse wrote:
>>>>>>>>> olcott <NoOne@NoWhere.com> writes:
>>>>>>>>>
>>>>>>>>>> On 11/20/2021 4:57 AM, Ben Bacarisse wrote:
>>>>>>>>>>> olcott <NoOne@NoWhere.com> writes:
>>>>>>>>>>> Subject:
>>>>>>>>>>> Re: Concise refutation of halting problem proofs V20 [ Ben
>>>>>>>>>>> Bacarisse ]
>>>>>>>>>>> I would appreciate it if you would not use my name in
>>>>>>>>>>> connection with
>>>>>>>>>>> your "work".  Thank you.
>>>>>>>>>>
>>>>>>>>>> I have finally made it clear that when the input to H(P,P)
>>>>>>>>>> never halts
>>>>>>>>>> the fact that (P) halts does not contradict this.
>>>>>>>>>
>>>>>>>>> I would appreciate it if you would not use my name in
>>>>>>>>> connection with
>>>>>>>>> your "work".  I can't make you, but I trust you have some sense of
>>>>>>>>> propriety.  Thank you.
>>>>>>>>>
>>>>>>>>
>>>>>>>> Not in this case. You have only unfairly evaluated my work.
>>>>>>>> Now is your chance for an accurate review.
>>>>>>>>
>>>>>>>
>>>>>>> No, your 'proof' is still a lie based on using the wrong
>>>>>>> definitions of words.
>>>>>>>
>>>>>>> The computation that is the input to H(P,P) WILL halt if H(P,P)
>>>>>>> returns the value 0 as long as P is the required computation
>>>>>>> based on that H.
>>>>>>>
>>>>>>> FAIL.
>>>>>>
>>>>>> Everyone here defines the domain of function H to contain elements
>>>>>> that are only vague ideas.
>>>>>>
>>>>>
>>>>> LIE.
>>>>>
>>>>>
>>>>> The Domain of a proper Halt decider is PRECISELY defined.
>>>>>
>>>>>> The domain of function H must actually be a set of elements that
>>>>>> each specify a sequence of configurations.
>>>>>
>>>>> And they do.
>>>>>
>>>>>>
>>>>>> Function H maps elements of its domain D to {0,1}
>>>>>> Domain D is comprised of elements that specify a sequence of
>>>>>> configurations.
>>>>>> H maps elements E of D to {0,1} on the basis of whether or not E
>>>>>> reaches its final state.
>>>>>>
>>>>>
>>>>> Except that for the Computation P(P)
>>>>
>>>> This is the exact vague idea that cannot possibly exist in the
>>>> domain of H.
>>>
>>> This is NOT a 'vague idea', P, which Linz describes as H^, is
>>> PRECISELY defined in terms of H, which you claim to have a definition
>>> of.
>>>
>>
>> A specified sequence of configurations can be an element of the domain
>> of H. Some belief about how P(P) is supposed to behave cannot be such
>> an element.
>
> And what is 'vague' about Linz's description of how to build H^, which
> you call P.

On 11/20/2021 5:02 PM, Richard Damon wrote:
> Remember,the FUNDAMENTAL question being asked of a Halt
> Decider is does a given computation, when run independently
> Halt or not when run.

When you try and find a way to translate that into an element of the
domain of function H

YOU FAIL
YOU FAIL
YOU FAIL

halt decider (Olcott 2021)
Function H maps elements of its domain D to {0,1}
Domain D is comprised of elements that specify a sequence of configurations.
H maps elements E of D to {0,1} on the basis of whether or not E reaches
its final state.

--
Copyright 2021 Pete Olcott

Talent hits a target no one else can hit;
Genius hits a target no one else can see.
Arthur Schopenhauer

Re: Concise refutation of halting problem proofs V20 [ Richard FAILS ]

<72gmJ.13543$G996.9456@fx31.iad>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=23757&group=comp.theory#23757

  copy link   Newsgroups: comp.theory
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!ecngs!feeder2.ecngs.de!178.20.174.213.MISMATCH!feeder1.feed.usenet.farm!feed.usenet.farm!peer02.ams4!peer.am4.highwinds-media.com!peer03.iad!feed-me.highwinds-media.com!news.highwinds-media.com!fx31.iad.POSTED!not-for-mail
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:91.0)
Gecko/20100101 Thunderbird/91.3.2
Subject: Re: Concise refutation of halting problem proofs V20 [ Richard FAILS
]
Content-Language: en-US
Newsgroups: comp.theory
References: <gKadnXaES8VF4QX8nZ2dnUU7-bfNnZ2d@giganews.com>
<87ee7bhz7h.fsf@bsb.me.uk> <wrOdnc55NeLphwT8nZ2dnUU7-N-dnZ2d@giganews.com>
<878rxiixkd.fsf_-_@bsb.me.uk> <KPmdna0icsBPqQT8nZ2dnUU7-cVQAAAA@giganews.com>
<rZdmJ.57389$SW5.45297@fx45.iad>
<mdmdnfK4uJV-8wT8nZ2dnUU7-dHNnZ2d@giganews.com>
<rjemJ.126018$831.69198@fx40.iad>
<N6adnS8fSrBW7wT8nZ2dnUU7-SPNnZ2d@giganews.com>
<ZCemJ.57451$SW5.24714@fx45.iad>
<f-mdncpGXqfE5gT8nZ2dnUU7-QnNnZ2d@giganews.com>
<VBfmJ.148748$I%1.2962@fx36.iad>
<xs2dnfyiUecRFQT8nZ2dnUU7-dvNnZ2d@giganews.com>
From: Rich...@Damon-Family.org (Richard Damon)
In-Reply-To: <xs2dnfyiUecRFQT8nZ2dnUU7-dvNnZ2d@giganews.com>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Lines: 132
Message-ID: <72gmJ.13543$G996.9456@fx31.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: Sat, 20 Nov 2021 19:04:19 -0500
X-Received-Bytes: 6075
 by: Richard Damon - Sun, 21 Nov 2021 00:04 UTC

On 11/20/21 6:45 PM, olcott wrote:
> On 11/20/2021 5:34 PM, Richard Damon wrote:
>>
>> On 11/20/21 5:48 PM, olcott wrote:
>>> On 11/20/2021 4:27 PM, Richard Damon wrote:
>>>> On 11/20/21 5:12 PM, olcott wrote:
>>>>> On 11/20/2021 4:06 PM, Richard Damon wrote:
>>>>>> On 11/20/21 4:55 PM, olcott wrote:
>>>>>>> On 11/20/2021 3:42 PM, Richard Damon wrote:
>>>>>>>> On 11/20/21 12:48 PM, olcott wrote:
>>>>>>>>> On 11/20/2021 10:47 AM, Ben Bacarisse wrote:
>>>>>>>>>> olcott <NoOne@NoWhere.com> writes:
>>>>>>>>>>
>>>>>>>>>>> On 11/20/2021 4:57 AM, Ben Bacarisse wrote:
>>>>>>>>>>>> olcott <NoOne@NoWhere.com> writes:
>>>>>>>>>>>> Subject:
>>>>>>>>>>>> Re: Concise refutation of halting problem proofs V20 [ Ben
>>>>>>>>>>>> Bacarisse ]
>>>>>>>>>>>> I would appreciate it if you would not use my name in
>>>>>>>>>>>> connection with
>>>>>>>>>>>> your "work".  Thank you.
>>>>>>>>>>>
>>>>>>>>>>> I have finally made it clear that when the input to H(P,P)
>>>>>>>>>>> never halts
>>>>>>>>>>> the fact that (P) halts does not contradict this.
>>>>>>>>>>
>>>>>>>>>> I would appreciate it if you would not use my name in
>>>>>>>>>> connection with
>>>>>>>>>> your "work".  I can't make you, but I trust you have some
>>>>>>>>>> sense of
>>>>>>>>>> propriety.  Thank you.
>>>>>>>>>>
>>>>>>>>>
>>>>>>>>> Not in this case. You have only unfairly evaluated my work.
>>>>>>>>> Now is your chance for an accurate review.
>>>>>>>>>
>>>>>>>>
>>>>>>>> No, your 'proof' is still a lie based on using the wrong
>>>>>>>> definitions of words.
>>>>>>>>
>>>>>>>> The computation that is the input to H(P,P) WILL halt if H(P,P)
>>>>>>>> returns the value 0 as long as P is the required computation
>>>>>>>> based on that H.
>>>>>>>>
>>>>>>>> FAIL.
>>>>>>>
>>>>>>> Everyone here defines the domain of function H to contain
>>>>>>> elements that are only vague ideas.
>>>>>>>
>>>>>>
>>>>>> LIE.
>>>>>>
>>>>>>
>>>>>> The Domain of a proper Halt decider is PRECISELY defined.
>>>>>>
>>>>>>> The domain of function H must actually be a set of elements that
>>>>>>> each specify a sequence of configurations.
>>>>>>
>>>>>> And they do.
>>>>>>
>>>>>>>
>>>>>>> Function H maps elements of its domain D to {0,1}
>>>>>>> Domain D is comprised of elements that specify a sequence of
>>>>>>> configurations.
>>>>>>> H maps elements E of D to {0,1} on the basis of whether or not E
>>>>>>> reaches its final state.
>>>>>>>
>>>>>>
>>>>>> Except that for the Computation P(P)
>>>>>
>>>>> This is the exact vague idea that cannot possibly exist in the
>>>>> domain of H.
>>>>
>>>> This is NOT a 'vague idea', P, which Linz describes as H^, is
>>>> PRECISELY defined in terms of H, which you claim to have a
>>>> definition of.
>>>>
>>>
>>> A specified sequence of configurations can be an element of the
>>> domain of H. Some belief about how P(P) is supposed to behave cannot
>>> be such an element.
>>
>> And what is 'vague' about Linz's description of how to build H^, which
>> you call P.
>
> On 11/20/2021 5:02 PM, Richard Damon wrote:
> > Remember,the FUNDAMENTAL question being asked of a Halt
> > Decider is does a given computation, when run independently
> > Halt or not when run.
>
> When you try and find a way to translate that into an element of the
> domain of function H
>
> YOU FAIL
> YOU FAIL
> YOU FAIL

LIE.

Is the domain of H not representations of Computations?
If not the H fails to meet the requirement of a Halt Decider and you
have lied about what you are doing.

Is the input to H not the representation of the Computation P(P)?
If not, you have formed the input incorrectly and you have lied about
what you are doing,

If P(P) not a Computation?
If not, why?

Was P not formed by the proper sequence as defined by Linz?
If not, then you have LIED about what you are doing.

If you claim you did, then by the basic properties of Computations, the
only ppossible reason is that H is not a computation, is that the reason?
If that it the reason, then you LIE that H is a candidate to be a
Decider, since only computation are eligable to be deciders.

If there is some other reason, what is it?
THe IS not other grounds for the input to not be in the domain of H.

THUS, YOU LIE and have failed.

>
> halt decider (Olcott 2021)
> Function H maps elements of its domain D to {0,1}
> Domain D is comprised of elements that specify a sequence of
> configurations.
> H maps elements E of D to {0,1} on the basis of whether or not E reaches
> its final state.
>

Re: Concise refutation of halting problem proofs V20 [ Richard FAILS ]

<Gr2dnRapptD9DAT8nZ2dnUU7-dHNnZ2d@giganews.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=23759&group=comp.theory#23759

  copy link   Newsgroups: comp.theory
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!news.misty.com!border2.nntp.dca1.giganews.com!nntp.giganews.com!buffer2.nntp.dca1.giganews.com!news.giganews.com.POSTED!not-for-mail
NNTP-Posting-Date: Sat, 20 Nov 2021 18:22:56 -0600
Date: Sat, 20 Nov 2021 18:22:55 -0600
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Thunderbird/91.3.2
Subject: Re: Concise refutation of halting problem proofs V20 [ Richard FAILS
]
Content-Language: en-US
Newsgroups: comp.theory
References: <gKadnXaES8VF4QX8nZ2dnUU7-bfNnZ2d@giganews.com>
<87ee7bhz7h.fsf@bsb.me.uk> <wrOdnc55NeLphwT8nZ2dnUU7-N-dnZ2d@giganews.com>
<878rxiixkd.fsf_-_@bsb.me.uk> <KPmdna0icsBPqQT8nZ2dnUU7-cVQAAAA@giganews.com>
<rZdmJ.57389$SW5.45297@fx45.iad>
<mdmdnfK4uJV-8wT8nZ2dnUU7-dHNnZ2d@giganews.com>
<rjemJ.126018$831.69198@fx40.iad>
<N6adnS8fSrBW7wT8nZ2dnUU7-SPNnZ2d@giganews.com>
<ZCemJ.57451$SW5.24714@fx45.iad>
<f-mdncpGXqfE5gT8nZ2dnUU7-QnNnZ2d@giganews.com>
<VBfmJ.148748$I%1.2962@fx36.iad>
<xs2dnfyiUecRFQT8nZ2dnUU7-dvNnZ2d@giganews.com>
<72gmJ.13543$G996.9456@fx31.iad>
From: NoO...@NoWhere.com (olcott)
In-Reply-To: <72gmJ.13543$G996.9456@fx31.iad>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Message-ID: <Gr2dnRapptD9DAT8nZ2dnUU7-dHNnZ2d@giganews.com>
Lines: 160
X-Usenet-Provider: http://www.giganews.com
X-Trace: sv3-uRs3Zme6AgTqGZ464WADAbHnC0EbQRURl8n/fI2U4qGXAwqd5SEh4Z0W+8p/RfVgUNhm29V026vrxKn!mb6vUcwmv9eUdLFjxK7XwWuW2Cafdjwi4jbBxtq9QOP4I+pmZoMZtdYr9w0msrSZg+7BOFwEM/Ze!8A==
X-Complaints-To: abuse@giganews.com
X-DMCA-Notifications: http://www.giganews.com/info/dmca.html
X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers
X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly
X-Postfilter: 1.3.40
X-Original-Bytes: 7409
 by: olcott - Sun, 21 Nov 2021 00:22 UTC

On 11/20/2021 6:04 PM, Richard Damon wrote:
> On 11/20/21 6:45 PM, olcott wrote:
>> On 11/20/2021 5:34 PM, Richard Damon wrote:
>>>
>>> On 11/20/21 5:48 PM, olcott wrote:
>>>> On 11/20/2021 4:27 PM, Richard Damon wrote:
>>>>> On 11/20/21 5:12 PM, olcott wrote:
>>>>>> On 11/20/2021 4:06 PM, Richard Damon wrote:
>>>>>>> On 11/20/21 4:55 PM, olcott wrote:
>>>>>>>> On 11/20/2021 3:42 PM, Richard Damon wrote:
>>>>>>>>> On 11/20/21 12:48 PM, olcott wrote:
>>>>>>>>>> On 11/20/2021 10:47 AM, Ben Bacarisse wrote:
>>>>>>>>>>> olcott <NoOne@NoWhere.com> writes:
>>>>>>>>>>>
>>>>>>>>>>>> On 11/20/2021 4:57 AM, Ben Bacarisse wrote:
>>>>>>>>>>>>> olcott <NoOne@NoWhere.com> writes:
>>>>>>>>>>>>> Subject:
>>>>>>>>>>>>> Re: Concise refutation of halting problem proofs V20 [ Ben
>>>>>>>>>>>>> Bacarisse ]
>>>>>>>>>>>>> I would appreciate it if you would not use my name in
>>>>>>>>>>>>> connection with
>>>>>>>>>>>>> your "work".  Thank you.
>>>>>>>>>>>>
>>>>>>>>>>>> I have finally made it clear that when the input to H(P,P)
>>>>>>>>>>>> never halts
>>>>>>>>>>>> the fact that (P) halts does not contradict this.
>>>>>>>>>>>
>>>>>>>>>>> I would appreciate it if you would not use my name in
>>>>>>>>>>> connection with
>>>>>>>>>>> your "work".  I can't make you, but I trust you have some
>>>>>>>>>>> sense of
>>>>>>>>>>> propriety.  Thank you.
>>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> Not in this case. You have only unfairly evaluated my work.
>>>>>>>>>> Now is your chance for an accurate review.
>>>>>>>>>>
>>>>>>>>>
>>>>>>>>> No, your 'proof' is still a lie based on using the wrong
>>>>>>>>> definitions of words.
>>>>>>>>>
>>>>>>>>> The computation that is the input to H(P,P) WILL halt if H(P,P)
>>>>>>>>> returns the value 0 as long as P is the required computation
>>>>>>>>> based on that H.
>>>>>>>>>
>>>>>>>>> FAIL.
>>>>>>>>
>>>>>>>> Everyone here defines the domain of function H to contain
>>>>>>>> elements that are only vague ideas.
>>>>>>>>
>>>>>>>
>>>>>>> LIE.
>>>>>>>
>>>>>>>
>>>>>>> The Domain of a proper Halt decider is PRECISELY defined.
>>>>>>>
>>>>>>>> The domain of function H must actually be a set of elements that
>>>>>>>> each specify a sequence of configurations.
>>>>>>>
>>>>>>> And they do.
>>>>>>>
>>>>>>>>
>>>>>>>> Function H maps elements of its domain D to {0,1}
>>>>>>>> Domain D is comprised of elements that specify a sequence of
>>>>>>>> configurations.
>>>>>>>> H maps elements E of D to {0,1} on the basis of whether or not E
>>>>>>>> reaches its final state.
>>>>>>>>
>>>>>>>
>>>>>>> Except that for the Computation P(P)
>>>>>>
>>>>>> This is the exact vague idea that cannot possibly exist in the
>>>>>> domain of H.
>>>>>
>>>>> This is NOT a 'vague idea', P, which Linz describes as H^, is
>>>>> PRECISELY defined in terms of H, which you claim to have a
>>>>> definition of.
>>>>>
>>>>
>>>> A specified sequence of configurations can be an element of the
>>>> domain of H. Some belief about how P(P) is supposed to behave cannot
>>>> be such an element.
>>>
>>> And what is 'vague' about Linz's description of how to build H^,
>>> which you call P.
>>
>> On 11/20/2021 5:02 PM, Richard Damon wrote:
>>  > Remember,the FUNDAMENTAL question being asked of a Halt
>>  > Decider is does a given computation, when run independently
>>  > Halt or not when run.
>>
>> When you try and find a way to translate that into an element of the
>> domain of function H
>>
>> YOU FAIL
>> YOU FAIL
>> YOU FAIL
>
> LIE.
>
> Is the domain of H not representations of Computations?

The domain of H is sets of specified sequences of configurations that
may not be computations. (A computation is defined to halt).

It is the subtle difference between representation and specification
that causes you to get the wrong answer.

There is no mathematically precise way to say this:
> Remember,the FUNDAMENTAL question being asked of a
> Halt Decider is does a given computation, when run
> independently Halt or not when run.

There is no way to put [when run independently]
into any specified sequence of configurations.

Function H only applies to the specified sequence
of configurations not any different sequence that
you only have in your head.

> If not the H fails to meet the requirement of a Halt Decider and you
> have lied about what you are doing.
>
> Is the input to H not the representation of the Computation P(P)?
> If not, you have formed the input incorrectly and you have lied about
> what you are doing,
>
> If P(P) not a Computation?
> If not, why?
>
> Was P not formed by the proper sequence as defined by Linz?
> If not, then you have LIED about what you are doing.
>
> If you claim you did, then by the basic properties of Computations, the
> only ppossible reason is that H is not a computation, is that the reason?
> If that it the reason, then you LIE that H is a candidate to be a
> Decider, since only computation are eligable to be deciders.
>
> If there is some other reason, what is it?
> THe IS not other grounds for the input to not be in the domain of H.
>
> THUS, YOU LIE and have failed.
>
>>
>> halt decider (Olcott 2021)
>> Function H maps elements of its domain D to {0,1}
>> Domain D is comprised of elements that specify a sequence of
>> configurations.
>> H maps elements E of D to {0,1} on the basis of whether or not E
>> reaches its final state.
>>
>

--
Copyright 2021 Pete Olcott

Talent hits a target no one else can hit;
Genius hits a target no one else can see.
Arthur Schopenhauer

Re: Concise refutation of halting problem proofs V20 [ Richard FAILS ]

<KrgmJ.30302$L_2.5241@fx04.iad>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=23761&group=comp.theory#23761

  copy link   Newsgroups: comp.theory
Path: i2pn2.org!i2pn.org!paganini.bofh.team!news.dns-netz.com!news.freedyn.net!newsfeed.xs4all.nl!newsfeed8.news.xs4all.nl!news-out.netnews.com!news.alt.net!fdc2.netnews.com!peer01.ams1!peer.ams1.xlned.com!news.xlned.com!peer03.iad!feed-me.highwinds-media.com!news.highwinds-media.com!fx04.iad.POSTED!not-for-mail
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:91.0)
Gecko/20100101 Thunderbird/91.3.2
Subject: Re: Concise refutation of halting problem proofs V20 [ Richard FAILS
]
Content-Language: en-US
Newsgroups: comp.theory
References: <gKadnXaES8VF4QX8nZ2dnUU7-bfNnZ2d@giganews.com>
<87ee7bhz7h.fsf@bsb.me.uk> <wrOdnc55NeLphwT8nZ2dnUU7-N-dnZ2d@giganews.com>
<878rxiixkd.fsf_-_@bsb.me.uk> <KPmdna0icsBPqQT8nZ2dnUU7-cVQAAAA@giganews.com>
<rZdmJ.57389$SW5.45297@fx45.iad>
<mdmdnfK4uJV-8wT8nZ2dnUU7-dHNnZ2d@giganews.com>
<rjemJ.126018$831.69198@fx40.iad>
<N6adnS8fSrBW7wT8nZ2dnUU7-SPNnZ2d@giganews.com>
<ZCemJ.57451$SW5.24714@fx45.iad>
<f-mdncpGXqfE5gT8nZ2dnUU7-QnNnZ2d@giganews.com>
<VBfmJ.148748$I%1.2962@fx36.iad>
<xs2dnfyiUecRFQT8nZ2dnUU7-dvNnZ2d@giganews.com>
<72gmJ.13543$G996.9456@fx31.iad>
<Gr2dnRapptD9DAT8nZ2dnUU7-dHNnZ2d@giganews.com>
From: Rich...@Damon-Family.org (Richard Damon)
In-Reply-To: <Gr2dnRapptD9DAT8nZ2dnUU7-dHNnZ2d@giganews.com>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Lines: 136
Message-ID: <KrgmJ.30302$L_2.5241@fx04.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: Sat, 20 Nov 2021 19:31:38 -0500
X-Received-Bytes: 6405
 by: Richard Damon - Sun, 21 Nov 2021 00:31 UTC

On 11/20/21 7:22 PM, olcott wrote:
> On 11/20/2021 6:04 PM, Richard Damon wrote:
>> On 11/20/21 6:45 PM, olcott wrote:
>>> On 11/20/2021 5:34 PM, Richard Damon wrote:
>>>>
>>>> On 11/20/21 5:48 PM, olcott wrote:
>>>>> On 11/20/2021 4:27 PM, Richard Damon wrote:
>>>>>> On 11/20/21 5:12 PM, olcott wrote:
>>>>>>> On 11/20/2021 4:06 PM, Richard Damon wrote:
>>>>>>>> On 11/20/21 4:55 PM, olcott wrote:
>>>>>>>>> On 11/20/2021 3:42 PM, Richard Damon wrote:
>>>>>>>>>> On 11/20/21 12:48 PM, olcott wrote:
>>>>>>>>>>> On 11/20/2021 10:47 AM, Ben Bacarisse wrote:
>>>>>>>>>>>> olcott <NoOne@NoWhere.com> writes:
>>>>>>>>>>>>
>>>>>>>>>>>>> On 11/20/2021 4:57 AM, Ben Bacarisse wrote:
>>>>>>>>>>>>>> olcott <NoOne@NoWhere.com> writes:
>>>>>>>>>>>>>> Subject:
>>>>>>>>>>>>>> Re: Concise refutation of halting problem proofs V20 [ Ben
>>>>>>>>>>>>>> Bacarisse ]
>>>>>>>>>>>>>> I would appreciate it if you would not use my name in
>>>>>>>>>>>>>> connection with
>>>>>>>>>>>>>> your "work".  Thank you.
>>>>>>>>>>>>>
>>>>>>>>>>>>> I have finally made it clear that when the input to H(P,P)
>>>>>>>>>>>>> never halts
>>>>>>>>>>>>> the fact that (P) halts does not contradict this.
>>>>>>>>>>>>
>>>>>>>>>>>> I would appreciate it if you would not use my name in
>>>>>>>>>>>> connection with
>>>>>>>>>>>> your "work".  I can't make you, but I trust you have some
>>>>>>>>>>>> sense of
>>>>>>>>>>>> propriety.  Thank you.
>>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> Not in this case. You have only unfairly evaluated my work.
>>>>>>>>>>> Now is your chance for an accurate review.
>>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> No, your 'proof' is still a lie based on using the wrong
>>>>>>>>>> definitions of words.
>>>>>>>>>>
>>>>>>>>>> The computation that is the input to H(P,P) WILL halt if
>>>>>>>>>> H(P,P) returns the value 0 as long as P is the required
>>>>>>>>>> computation based on that H.
>>>>>>>>>>
>>>>>>>>>> FAIL.
>>>>>>>>>
>>>>>>>>> Everyone here defines the domain of function H to contain
>>>>>>>>> elements that are only vague ideas.
>>>>>>>>>
>>>>>>>>
>>>>>>>> LIE.
>>>>>>>>
>>>>>>>>
>>>>>>>> The Domain of a proper Halt decider is PRECISELY defined.
>>>>>>>>
>>>>>>>>> The domain of function H must actually be a set of elements
>>>>>>>>> that each specify a sequence of configurations.
>>>>>>>>
>>>>>>>> And they do.
>>>>>>>>
>>>>>>>>>
>>>>>>>>> Function H maps elements of its domain D to {0,1}
>>>>>>>>> Domain D is comprised of elements that specify a sequence of
>>>>>>>>> configurations.
>>>>>>>>> H maps elements E of D to {0,1} on the basis of whether or not
>>>>>>>>> E reaches its final state.
>>>>>>>>>
>>>>>>>>
>>>>>>>> Except that for the Computation P(P)
>>>>>>>
>>>>>>> This is the exact vague idea that cannot possibly exist in the
>>>>>>> domain of H.
>>>>>>
>>>>>> This is NOT a 'vague idea', P, which Linz describes as H^, is
>>>>>> PRECISELY defined in terms of H, which you claim to have a
>>>>>> definition of.
>>>>>>
>>>>>
>>>>> A specified sequence of configurations can be an element of the
>>>>> domain of H. Some belief about how P(P) is supposed to behave
>>>>> cannot be such an element.
>>>>
>>>> And what is 'vague' about Linz's description of how to build H^,
>>>> which you call P.
>>>
>>> On 11/20/2021 5:02 PM, Richard Damon wrote:
>>>  > Remember,the FUNDAMENTAL question being asked of a Halt
>>>  > Decider is does a given computation, when run independently
>>>  > Halt or not when run.
>>>
>>> When you try and find a way to translate that into an element of the
>>> domain of function H
>>>
>>> YOU FAIL
>>> YOU FAIL
>>> YOU FAIL
>>
>> LIE.
>>
>> Is the domain of H not representations of Computations?
>
> The domain of H is sets of specified sequences of configurations that
> may not be computations. (A computation is defined to halt).
>
> It is the subtle difference between representation and specification
> that causes you to get the wrong answer.
>
> There is no mathematically precise way to say this:
> > Remember,the FUNDAMENTAL question being asked of a
> > Halt Decider is does a given computation, when run
> > independently Halt or not when run.
>
> There is no way to put [when run independently]
> into any specified sequence of configurations.

Why not?

I guess you just don't understand computations.

If your H can't handle the actual computation P, then it just fails to
be the example needed.

>
> Function H only applies to the specified sequence
> of configurations not any different sequence that
> you only have in your head.
>

If H can not accept the computation built by the Linz H^ transformation,
then it can not be a counter example for the Linz Proof.

PERIOD.

I guess you put your foot into your mouth with that one.

Re: Concise refutation of halting problem proofs V20 [ Richard FAILS ]

<kZWdnam9o8bFCAT8nZ2dnUU7-dudnZ2d@giganews.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=23763&group=comp.theory#23763

  copy link   Newsgroups: comp.theory
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!news.misty.com!border2.nntp.dca1.giganews.com!nntp.giganews.com!buffer2.nntp.dca1.giganews.com!buffer1.nntp.dca1.giganews.com!news.giganews.com.POSTED!not-for-mail
NNTP-Posting-Date: Sat, 20 Nov 2021 18:39:52 -0600
Date: Sat, 20 Nov 2021 18:39:51 -0600
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Thunderbird/91.3.2
Subject: Re: Concise refutation of halting problem proofs V20 [ Richard FAILS
]
Content-Language: en-US
Newsgroups: comp.theory
References: <gKadnXaES8VF4QX8nZ2dnUU7-bfNnZ2d@giganews.com>
<87ee7bhz7h.fsf@bsb.me.uk> <wrOdnc55NeLphwT8nZ2dnUU7-N-dnZ2d@giganews.com>
<878rxiixkd.fsf_-_@bsb.me.uk> <KPmdna0icsBPqQT8nZ2dnUU7-cVQAAAA@giganews.com>
<rZdmJ.57389$SW5.45297@fx45.iad>
<mdmdnfK4uJV-8wT8nZ2dnUU7-dHNnZ2d@giganews.com>
<rjemJ.126018$831.69198@fx40.iad>
<N6adnS8fSrBW7wT8nZ2dnUU7-SPNnZ2d@giganews.com>
<ZCemJ.57451$SW5.24714@fx45.iad>
<f-mdncpGXqfE5gT8nZ2dnUU7-QnNnZ2d@giganews.com>
<VBfmJ.148748$I%1.2962@fx36.iad>
<xs2dnfyiUecRFQT8nZ2dnUU7-dvNnZ2d@giganews.com>
<72gmJ.13543$G996.9456@fx31.iad>
<Gr2dnRapptD9DAT8nZ2dnUU7-dHNnZ2d@giganews.com>
<KrgmJ.30302$L_2.5241@fx04.iad>
From: NoO...@NoWhere.com (olcott)
In-Reply-To: <KrgmJ.30302$L_2.5241@fx04.iad>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Message-ID: <kZWdnam9o8bFCAT8nZ2dnUU7-dudnZ2d@giganews.com>
Lines: 151
X-Usenet-Provider: http://www.giganews.com
X-Trace: sv3-uhfzDRKj341HiOQj9p3Q7INHHVNs1+2ydnw+BiGZIaOOHpgxCxKCu//hJrsNeQ4V8Zbq2ns0t20QQjg!P1qq6H08fkW1fvTRL31qCb2YO8ui8SJSUlnj54D2Em09GLOGtxyitax8sJ3PWfL43IQ25hBi6zXh!Bg==
X-Complaints-To: abuse@giganews.com
X-DMCA-Notifications: http://www.giganews.com/info/dmca.html
X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers
X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly
X-Postfilter: 1.3.40
X-Original-Bytes: 7283
 by: olcott - Sun, 21 Nov 2021 00:39 UTC

On 11/20/2021 6:31 PM, Richard Damon wrote:
> On 11/20/21 7:22 PM, olcott wrote:
>> On 11/20/2021 6:04 PM, Richard Damon wrote:
>>> On 11/20/21 6:45 PM, olcott wrote:
>>>> On 11/20/2021 5:34 PM, Richard Damon wrote:
>>>>>
>>>>> On 11/20/21 5:48 PM, olcott wrote:
>>>>>> On 11/20/2021 4:27 PM, Richard Damon wrote:
>>>>>>> On 11/20/21 5:12 PM, olcott wrote:
>>>>>>>> On 11/20/2021 4:06 PM, Richard Damon wrote:
>>>>>>>>> On 11/20/21 4:55 PM, olcott wrote:
>>>>>>>>>> On 11/20/2021 3:42 PM, Richard Damon wrote:
>>>>>>>>>>> On 11/20/21 12:48 PM, olcott wrote:
>>>>>>>>>>>> On 11/20/2021 10:47 AM, Ben Bacarisse wrote:
>>>>>>>>>>>>> olcott <NoOne@NoWhere.com> writes:
>>>>>>>>>>>>>
>>>>>>>>>>>>>> On 11/20/2021 4:57 AM, Ben Bacarisse wrote:
>>>>>>>>>>>>>>> olcott <NoOne@NoWhere.com> writes:
>>>>>>>>>>>>>>> Subject:
>>>>>>>>>>>>>>> Re: Concise refutation of halting problem proofs V20 [
>>>>>>>>>>>>>>> Ben Bacarisse ]
>>>>>>>>>>>>>>> I would appreciate it if you would not use my name in
>>>>>>>>>>>>>>> connection with
>>>>>>>>>>>>>>> your "work".  Thank you.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> I have finally made it clear that when the input to H(P,P)
>>>>>>>>>>>>>> never halts
>>>>>>>>>>>>>> the fact that (P) halts does not contradict this.
>>>>>>>>>>>>>
>>>>>>>>>>>>> I would appreciate it if you would not use my name in
>>>>>>>>>>>>> connection with
>>>>>>>>>>>>> your "work".  I can't make you, but I trust you have some
>>>>>>>>>>>>> sense of
>>>>>>>>>>>>> propriety.  Thank you.
>>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>> Not in this case. You have only unfairly evaluated my work.
>>>>>>>>>>>> Now is your chance for an accurate review.
>>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> No, your 'proof' is still a lie based on using the wrong
>>>>>>>>>>> definitions of words.
>>>>>>>>>>>
>>>>>>>>>>> The computation that is the input to H(P,P) WILL halt if
>>>>>>>>>>> H(P,P) returns the value 0 as long as P is the required
>>>>>>>>>>> computation based on that H.
>>>>>>>>>>>
>>>>>>>>>>> FAIL.
>>>>>>>>>>
>>>>>>>>>> Everyone here defines the domain of function H to contain
>>>>>>>>>> elements that are only vague ideas.
>>>>>>>>>>
>>>>>>>>>
>>>>>>>>> LIE.
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> The Domain of a proper Halt decider is PRECISELY defined.
>>>>>>>>>
>>>>>>>>>> The domain of function H must actually be a set of elements
>>>>>>>>>> that each specify a sequence of configurations.
>>>>>>>>>
>>>>>>>>> And they do.
>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> Function H maps elements of its domain D to {0,1}
>>>>>>>>>> Domain D is comprised of elements that specify a sequence of
>>>>>>>>>> configurations.
>>>>>>>>>> H maps elements E of D to {0,1} on the basis of whether or not
>>>>>>>>>> E reaches its final state.
>>>>>>>>>>
>>>>>>>>>
>>>>>>>>> Except that for the Computation P(P)
>>>>>>>>
>>>>>>>> This is the exact vague idea that cannot possibly exist in the
>>>>>>>> domain of H.
>>>>>>>
>>>>>>> This is NOT a 'vague idea', P, which Linz describes as H^, is
>>>>>>> PRECISELY defined in terms of H, which you claim to have a
>>>>>>> definition of.
>>>>>>>
>>>>>>
>>>>>> A specified sequence of configurations can be an element of the
>>>>>> domain of H. Some belief about how P(P) is supposed to behave
>>>>>> cannot be such an element.
>>>>>
>>>>> And what is 'vague' about Linz's description of how to build H^,
>>>>> which you call P.
>>>>
>>>> On 11/20/2021 5:02 PM, Richard Damon wrote:
>>>>  > Remember,the FUNDAMENTAL question being asked of a Halt
>>>>  > Decider is does a given computation, when run independently
>>>>  > Halt or not when run.
>>>>
>>>> When you try and find a way to translate that into an element of the
>>>> domain of function H
>>>>
>>>> YOU FAIL
>>>> YOU FAIL
>>>> YOU FAIL
>>>
>>> LIE.
>>>
>>> Is the domain of H not representations of Computations?
>>
>> The domain of H is sets of specified sequences of configurations that
>> may not be computations. (A computation is defined to halt).
>>
>> It is the subtle difference between representation and specification
>> that causes you to get the wrong answer.
>>
>> There is no mathematically precise way to say this:
>>  > Remember,the FUNDAMENTAL question being asked of a
>>  > Halt Decider is does a given computation, when run
>>  > independently Halt or not when run.
>>
>> There is no way to put [when run independently]
>> into any specified sequence of configurations.
>
> Why not?
>

How do you tell a mathematical function that it is not allowed to base
its halt status decision on the sequence of configurations specified by
(P, I) and instead must base its halt status decision on P(I) [when run
independently] ???

> I guess you just don't understand computations.
>
> If your H can't handle the actual computation P, then it just fails to
> be the example needed.
>
>>
>> Function H only applies to the specified sequence
>> of configurations not any different sequence that
>> you only have in your head.
>>
>
> If H can not accept the computation built by the Linz H^ transformation,
> then it can not be a counter example for the Linz Proof.
>
> PERIOD.
>
> I guess you put your foot into your mouth with that one.

--
Copyright 2021 Pete Olcott

Talent hits a target no one else can hit;
Genius hits a target no one else can see.
Arthur Schopenhauer

Re: Concise refutation of halting problem proofs V20 [ Richard FAILS ]

<kZWdnai9o8YWCwT8nZ2dnUU7-dudnZ2d@giganews.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=23765&group=comp.theory#23765

  copy link   Newsgroups: comp.theory comp.ai.philosophy sci.logic sci.math
Followup: comp.theory
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!news.misty.com!border2.nntp.dca1.giganews.com!border1.nntp.dca1.giganews.com!nntp.giganews.com!buffer1.nntp.dca1.giganews.com!buffer2.nntp.dca1.giganews.com!news.giganews.com.POSTED!not-for-mail
NNTP-Posting-Date: Sat, 20 Nov 2021 18:44:59 -0600
Date: Sat, 20 Nov 2021 18:44:58 -0600
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Thunderbird/91.3.2
Subject: Re: Concise refutation of halting problem proofs V20 [ Richard FAILS
]
Content-Language: en-US
Newsgroups: comp.theory,comp.ai.philosophy,sci.logic,sci.math
References: <gKadnXaES8VF4QX8nZ2dnUU7-bfNnZ2d@giganews.com>
<87ee7bhz7h.fsf@bsb.me.uk> <wrOdnc55NeLphwT8nZ2dnUU7-N-dnZ2d@giganews.com>
<878rxiixkd.fsf_-_@bsb.me.uk> <KPmdna0icsBPqQT8nZ2dnUU7-cVQAAAA@giganews.com>
<rZdmJ.57389$SW5.45297@fx45.iad>
<mdmdnfK4uJV-8wT8nZ2dnUU7-dHNnZ2d@giganews.com>
<rjemJ.126018$831.69198@fx40.iad>
<N6adnS8fSrBW7wT8nZ2dnUU7-SPNnZ2d@giganews.com>
<ZCemJ.57451$SW5.24714@fx45.iad>
<f-mdncpGXqfE5gT8nZ2dnUU7-QnNnZ2d@giganews.com>
<VBfmJ.148748$I%1.2962@fx36.iad>
<xs2dnfyiUecRFQT8nZ2dnUU7-dvNnZ2d@giganews.com>
<72gmJ.13543$G996.9456@fx31.iad>
<Gr2dnRapptD9DAT8nZ2dnUU7-dHNnZ2d@giganews.com>
<KrgmJ.30302$L_2.5241@fx04.iad>
Followup-To: comp.theory
From: NoO...@NoWhere.com (olcott)
In-Reply-To: <KrgmJ.30302$L_2.5241@fx04.iad>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Message-ID: <kZWdnai9o8YWCwT8nZ2dnUU7-dudnZ2d@giganews.com>
Lines: 133
X-Usenet-Provider: http://www.giganews.com
X-Trace: sv3-PsWiz5t66/SkTlHaBzw2cFl2WTm59atKDXnYQA4U7X1wGlLaGXbxLWzKElrcIe5HjZ9uhs0gCqsrBbZ!QLadtXRTaVatQyCQ8/ZKT7JhYTWwsDnMils3MUIjX3eKf3eqtCmw29uTEr+6tWFRx0cVNBs3LYFP!Qg==
X-Complaints-To: abuse@giganews.com
X-DMCA-Notifications: http://www.giganews.com/info/dmca.html
X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers
X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly
X-Postfilter: 1.3.40
X-Original-Bytes: 6817
 by: olcott - Sun, 21 Nov 2021 00:44 UTC

On 11/20/2021 6:31 PM, Richard Damon wrote:
> On 11/20/21 7:22 PM, olcott wrote:
>> On 11/20/2021 6:04 PM, Richard Damon wrote:
>>> On 11/20/21 6:45 PM, olcott wrote:
>>>> On 11/20/2021 5:34 PM, Richard Damon wrote:
>>>>>
>>>>> On 11/20/21 5:48 PM, olcott wrote:
>>>>>> On 11/20/2021 4:27 PM, Richard Damon wrote:
>>>>>>> On 11/20/21 5:12 PM, olcott wrote:
>>>>>>>> On 11/20/2021 4:06 PM, Richard Damon wrote:
>>>>>>>>> On 11/20/21 4:55 PM, olcott wrote:
>>>>>>>>>> On 11/20/2021 3:42 PM, Richard Damon wrote:
>>>>>>>>>>> On 11/20/21 12:48 PM, olcott wrote:
>>>>>>>>>>>> On 11/20/2021 10:47 AM, Ben Bacarisse wrote:
>>>>>>>>>>>>> olcott <NoOne@NoWhere.com> writes:
>>>>>>>>>>>>>
>>>>>>>>>>>>>> On 11/20/2021 4:57 AM, Ben Bacarisse wrote:
>>>>>>>>>>>>>>> olcott <NoOne@NoWhere.com> writes:
>>>>>>>>>>>>>>> Subject:
>>>>>>>>>>>>>>> Re: Concise refutation of halting problem proofs V20 [
>>>>>>>>>>>>>>> Ben Bacarisse ]
>>>>>>>>>>>>>>> I would appreciate it if you would not use my name in
>>>>>>>>>>>>>>> connection with
>>>>>>>>>>>>>>> your "work".  Thank you.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> I have finally made it clear that when the input to H(P,P)
>>>>>>>>>>>>>> never halts
>>>>>>>>>>>>>> the fact that (P) halts does not contradict this.
>>>>>>>>>>>>>
>>>>>>>>>>>>> I would appreciate it if you would not use my name in
>>>>>>>>>>>>> connection with
>>>>>>>>>>>>> your "work".  I can't make you, but I trust you have some
>>>>>>>>>>>>> sense of
>>>>>>>>>>>>> propriety.  Thank you.
>>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>> Not in this case. You have only unfairly evaluated my work.
>>>>>>>>>>>> Now is your chance for an accurate review.
>>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> No, your 'proof' is still a lie based on using the wrong
>>>>>>>>>>> definitions of words.
>>>>>>>>>>>
>>>>>>>>>>> The computation that is the input to H(P,P) WILL halt if
>>>>>>>>>>> H(P,P) returns the value 0 as long as P is the required
>>>>>>>>>>> computation based on that H.
>>>>>>>>>>>
>>>>>>>>>>> FAIL.
>>>>>>>>>>
>>>>>>>>>> Everyone here defines the domain of function H to contain
>>>>>>>>>> elements that are only vague ideas.
>>>>>>>>>>
>>>>>>>>>
>>>>>>>>> LIE.
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> The Domain of a proper Halt decider is PRECISELY defined.
>>>>>>>>>
>>>>>>>>>> The domain of function H must actually be a set of elements
>>>>>>>>>> that each specify a sequence of configurations.
>>>>>>>>>
>>>>>>>>> And they do.
>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> Function H maps elements of its domain D to {0,1}
>>>>>>>>>> Domain D is comprised of elements that specify a sequence of
>>>>>>>>>> configurations.
>>>>>>>>>> H maps elements E of D to {0,1} on the basis of whether or not
>>>>>>>>>> E reaches its final state.
>>>>>>>>>>
>>>>>>>>>
>>>>>>>>> Except that for the Computation P(P)
>>>>>>>>
>>>>>>>> This is the exact vague idea that cannot possibly exist in the
>>>>>>>> domain of H.
>>>>>>>
>>>>>>> This is NOT a 'vague idea', P, which Linz describes as H^, is
>>>>>>> PRECISELY defined in terms of H, which you claim to have a
>>>>>>> definition of.
>>>>>>>
>>>>>>
>>>>>> A specified sequence of configurations can be an element of the
>>>>>> domain of H. Some belief about how P(P) is supposed to behave
>>>>>> cannot be such an element.
>>>>>
>>>>> And what is 'vague' about Linz's description of how to build H^,
>>>>> which you call P.
>>>>
>>>> On 11/20/2021 5:02 PM, Richard Damon wrote:
>>>>  > Remember,the FUNDAMENTAL question being asked of a Halt
>>>>  > Decider is does a given computation, when run independently
>>>>  > Halt or not when run.
>>>>
>>>> When you try and find a way to translate that into an element of the
>>>> domain of function H
>>>>
>>>> YOU FAIL
>>>> YOU FAIL
>>>> YOU FAIL
>>>
>>> LIE.
>>>
>>> Is the domain of H not representations of Computations?
>>
>> The domain of H is sets of specified sequences of configurations that
>> may not be computations. (A computation is defined to halt).
>>
>> It is the subtle difference between representation and specification
>> that causes you to get the wrong answer.
>>
>> There is no mathematically precise way to say this:
>>  > Remember,the FUNDAMENTAL question being asked of a
>>  > Halt Decider is does a given computation, when run
>>  > independently Halt or not when run.
>>
>> There is no way to put [when run independently]
>> into any specified sequence of configurations.
>
> Why not?
>

How do you tell a mathematical function that it is not allowed to base
its halt status decision on the sequence of configurations specified by
(P, I) and instead must base its halt status decision on P(I) [when run
independently] ???

--
Copyright 2021 Pete Olcott

Talent hits a target no one else can hit;
Genius hits a target no one else can see.
Arthur Schopenhauer

Re: Concise refutation of halting problem proofs V20

<snc4vs$f87$1@dont-email.me>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=23766&group=comp.theory#23766

  copy link   Newsgroups: comp.theory
Path: i2pn2.org!i2pn.org!eternal-september.org!reader02.eternal-september.org!.POSTED!not-for-mail
From: agis...@gm.invalid (André G. Isaak)
Newsgroups: comp.theory
Subject: Re: Concise refutation of halting problem proofs V20
Date: Sat, 20 Nov 2021 17:47:54 -0700
Organization: Christians and Atheists United Against Creeping Agnosticism
Lines: 90
Message-ID: <snc4vs$f87$1@dont-email.me>
References: <gKadnXaES8VF4QX8nZ2dnUU7-bfNnZ2d@giganews.com>
<87ee7bhz7h.fsf@bsb.me.uk> <wrOdnc55NeLphwT8nZ2dnUU7-N-dnZ2d@giganews.com>
<878rxiixkd.fsf_-_@bsb.me.uk> <KPmdna0icsBPqQT8nZ2dnUU7-cVQAAAA@giganews.com>
<rZdmJ.57389$SW5.45297@fx45.iad>
<mdmdnfK4uJV-8wT8nZ2dnUU7-dHNnZ2d@giganews.com>
<rjemJ.126018$831.69198@fx40.iad>
<N6adnS8fSrBW7wT8nZ2dnUU7-SPNnZ2d@giganews.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=utf-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Sun, 21 Nov 2021 00:47:56 -0000 (UTC)
Injection-Info: reader02.eternal-september.org; posting-host="290cbe712fdb20c8ed03be1a04c0932b";
logging-data="15623"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/cRTtKEzECnYPaMHNyKmIz"
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:78.0)
Gecko/20100101 Thunderbird/78.14.0
Cancel-Lock: sha1:G3sOu6Lz16Ap0QTMtatulO695BM=
In-Reply-To: <N6adnS8fSrBW7wT8nZ2dnUU7-SPNnZ2d@giganews.com>
Content-Language: en-US
 by: André G. Isaak - Sun, 21 Nov 2021 00:47 UTC

On 2021-11-20 15:12, olcott wrote:
> On 11/20/2021 4:06 PM, Richard Damon wrote:
>> On 11/20/21 4:55 PM, olcott wrote:
>>> On 11/20/2021 3:42 PM, Richard Damon wrote:
>>>> On 11/20/21 12:48 PM, olcott wrote:
>>>>> On 11/20/2021 10:47 AM, Ben Bacarisse wrote:
>>>>>> olcott <NoOne@NoWhere.com> writes:
>>>>>>
>>>>>>> On 11/20/2021 4:57 AM, Ben Bacarisse wrote:
>>>>>>>> olcott <NoOne@NoWhere.com> writes:
>>>>>>>> Subject:
>>>>>>>> Re: Concise refutation of halting problem proofs V20 [ Ben
>>>>>>>> Bacarisse ]
>>>>>>>> I would appreciate it if you would not use my name in connection
>>>>>>>> with
>>>>>>>> your "work".  Thank you.
>>>>>>>
>>>>>>> I have finally made it clear that when the input to H(P,P) never
>>>>>>> halts
>>>>>>> the fact that (P) halts does not contradict this.
>>>>>>
>>>>>> I would appreciate it if you would not use my name in connection with
>>>>>> your "work".  I can't make you, but I trust you have some sense of
>>>>>> propriety.  Thank you.
>>>>>>
>>>>>
>>>>> Not in this case. You have only unfairly evaluated my work.
>>>>> Now is your chance for an accurate review.
>>>>>
>>>>
>>>> No, your 'proof' is still a lie based on using the wrong definitions
>>>> of words.
>>>>
>>>> The computation that is the input to H(P,P) WILL halt if H(P,P)
>>>> returns the value 0 as long as P is the required computation based
>>>> on that H.
>>>>
>>>> FAIL.
>>>
>>> Everyone here defines the domain of function H to contain elements
>>> that are only vague ideas.
>>>
>>
>> LIE.
>>
>>
>> The Domain of a proper Halt decider is PRECISELY defined.
>>
>>> The domain of function H must actually be a set of elements that each
>>> specify a sequence of configurations.
>>
>> And they do.
>>
>>>
>>> Function H maps elements of its domain D to {0,1}
>>> Domain D is comprised of elements that specify a sequence of
>>> configurations.
>>> H maps elements E of D to {0,1} on the basis of whether or not E
>>> reaches its final state.
>>>
>>
>> Except that for the Computation P(P)
>
> This is the exact vague idea that cannot possibly exist in the domain of H.
>
> The sequence of configurations specified by the x86 machine language of
> P is in the domain of H.
>
> Some vague idea about what P(P) is supposed to do cannot possibly be in
> the domain of H.

Which 'vague idea'?

A halt decider doesn't decide what P(P) is "supposed" to do. It decides
what it actually *does* do when run directly from main. There's nothing
remotely vague about that.

I think you are confusing the term 'domain' with the term 'scope'. When
you call P(P) from within H it is within the scope of H. when you
execute it directly from main it is not within the scope of H. Scope and
domain are entirely different things.

And a halt decider describes the behaviour of independent computations,
not of functions called from within the scope of the decider.

André

--
To email remove 'invalid' & replace 'gm' with well known Google mail
service.

Re: Concise refutation of halting problem proofs V20

<VM-dnWJ8ofqsBQT8nZ2dnUU7-S-dnZ2d@giganews.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=23768&group=comp.theory#23768

  copy link   Newsgroups: comp.theory comp.ai.philosophy sci.logic sci.math
Followup: comp.theory
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!news.misty.com!border2.nntp.dca1.giganews.com!nntp.giganews.com!buffer2.nntp.dca1.giganews.com!news.giganews.com.POSTED!not-for-mail
NNTP-Posting-Date: Sat, 20 Nov 2021 18:52:01 -0600
Date: Sat, 20 Nov 2021 18:52:00 -0600
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Thunderbird/91.3.2
Subject: Re: Concise refutation of halting problem proofs V20
Content-Language: en-US
Newsgroups: comp.theory,comp.ai.philosophy,sci.logic,sci.math
References: <gKadnXaES8VF4QX8nZ2dnUU7-bfNnZ2d@giganews.com>
<87ee7bhz7h.fsf@bsb.me.uk> <wrOdnc55NeLphwT8nZ2dnUU7-N-dnZ2d@giganews.com>
<878rxiixkd.fsf_-_@bsb.me.uk> <KPmdna0icsBPqQT8nZ2dnUU7-cVQAAAA@giganews.com>
<rZdmJ.57389$SW5.45297@fx45.iad>
<mdmdnfK4uJV-8wT8nZ2dnUU7-dHNnZ2d@giganews.com>
<rjemJ.126018$831.69198@fx40.iad>
<N6adnS8fSrBW7wT8nZ2dnUU7-SPNnZ2d@giganews.com> <snc4vs$f87$1@dont-email.me>
Followup-To: comp.theory
From: NoO...@NoWhere.com (olcott)
In-Reply-To: <snc4vs$f87$1@dont-email.me>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Message-ID: <VM-dnWJ8ofqsBQT8nZ2dnUU7-S-dnZ2d@giganews.com>
Lines: 103
X-Usenet-Provider: http://www.giganews.com
X-Trace: sv3-Z3gOP+E3yk9BETE1gCQVM8pMvLRHFpNWmOyELLVvhrBWBG4NWxnK7PPyxxbq6101/4ES29/Jy+HAJmy!zK01CWucPZm+WTxu1j78hdAD0XG4rHJ4HuSrB9TKHD3OUCSiHk3eDBCF1S4FjWzN8/1UEbKrQGVM!vg==
X-Complaints-To: abuse@giganews.com
X-DMCA-Notifications: http://www.giganews.com/info/dmca.html
X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers
X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly
X-Postfilter: 1.3.40
X-Original-Bytes: 5147
 by: olcott - Sun, 21 Nov 2021 00:52 UTC

On 11/20/2021 6:47 PM, André G. Isaak wrote:
> On 2021-11-20 15:12, olcott wrote:
>> On 11/20/2021 4:06 PM, Richard Damon wrote:
>>> On 11/20/21 4:55 PM, olcott wrote:
>>>> On 11/20/2021 3:42 PM, Richard Damon wrote:
>>>>> On 11/20/21 12:48 PM, olcott wrote:
>>>>>> On 11/20/2021 10:47 AM, Ben Bacarisse wrote:
>>>>>>> olcott <NoOne@NoWhere.com> writes:
>>>>>>>
>>>>>>>> On 11/20/2021 4:57 AM, Ben Bacarisse wrote:
>>>>>>>>> olcott <NoOne@NoWhere.com> writes:
>>>>>>>>> Subject:
>>>>>>>>> Re: Concise refutation of halting problem proofs V20 [ Ben
>>>>>>>>> Bacarisse ]
>>>>>>>>> I would appreciate it if you would not use my name in
>>>>>>>>> connection with
>>>>>>>>> your "work".  Thank you.
>>>>>>>>
>>>>>>>> I have finally made it clear that when the input to H(P,P) never
>>>>>>>> halts
>>>>>>>> the fact that (P) halts does not contradict this.
>>>>>>>
>>>>>>> I would appreciate it if you would not use my name in connection
>>>>>>> with
>>>>>>> your "work".  I can't make you, but I trust you have some sense of
>>>>>>> propriety.  Thank you.
>>>>>>>
>>>>>>
>>>>>> Not in this case. You have only unfairly evaluated my work.
>>>>>> Now is your chance for an accurate review.
>>>>>>
>>>>>
>>>>> No, your 'proof' is still a lie based on using the wrong
>>>>> definitions of words.
>>>>>
>>>>> The computation that is the input to H(P,P) WILL halt if H(P,P)
>>>>> returns the value 0 as long as P is the required computation based
>>>>> on that H.
>>>>>
>>>>> FAIL.
>>>>
>>>> Everyone here defines the domain of function H to contain elements
>>>> that are only vague ideas.
>>>>
>>>
>>> LIE.
>>>
>>>
>>> The Domain of a proper Halt decider is PRECISELY defined.
>>>
>>>> The domain of function H must actually be a set of elements that
>>>> each specify a sequence of configurations.
>>>
>>> And they do.
>>>
>>>>
>>>> Function H maps elements of its domain D to {0,1}
>>>> Domain D is comprised of elements that specify a sequence of
>>>> configurations.
>>>> H maps elements E of D to {0,1} on the basis of whether or not E
>>>> reaches its final state.
>>>>
>>>
>>> Except that for the Computation P(P)
>>
>> This is the exact vague idea that cannot possibly exist in the domain
>> of H.
>>
>> The sequence of configurations specified by the x86 machine language
>> of P is in the domain of H.
>>
>> Some vague idea about what P(P) is supposed to do cannot possibly be
>> in the domain of H.
>
> Which 'vague idea'?
>
> A halt decider doesn't decide what P(P) is "supposed" to do. It decides
> what it actually *does* do when run directly from main. There's nothing
> remotely vague about that.
>
> I think you are confusing the term 'domain' with the term 'scope'. When
> you call P(P) from within H it is within the scope of H. when you
> execute it directly from main it is not within the scope of H. Scope and
> domain are entirely different things.
>
> And a halt decider describes the behaviour of independent computations,
> not of functions called from within the scope of the decider.
>
> André
>

How do you tell a mathematical function that it is not allowed to base
its halt status decision on the sequence of configurations specified by
(P, I) and instead must base its halt status decision on P(I) [when run
independently] ???

--
Copyright 2021 Pete Olcott

Talent hits a target no one else can hit;
Genius hits a target no one else can see.
Arthur Schopenhauer

Re: Concise refutation of halting problem proofs V20 [ Richard FAILS ]

<ZnhmJ.22640$452.6370@fx22.iad>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=23775&group=comp.theory#23775

  copy link   Newsgroups: comp.theory
Path: i2pn2.org!i2pn.org!aioe.org!news.uzoreto.com!news-out.netnews.com!news.alt.net!fdc2.netnews.com!peer02.ams1!peer.ams1.xlned.com!news.xlned.com!peer03.iad!feed-me.highwinds-media.com!news.highwinds-media.com!fx22.iad.POSTED!not-for-mail
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:91.0)
Gecko/20100101 Thunderbird/91.3.2
Subject: Re: Concise refutation of halting problem proofs V20 [ Richard FAILS
]
Content-Language: en-US
Newsgroups: comp.theory
References: <gKadnXaES8VF4QX8nZ2dnUU7-bfNnZ2d@giganews.com>
<87ee7bhz7h.fsf@bsb.me.uk> <wrOdnc55NeLphwT8nZ2dnUU7-N-dnZ2d@giganews.com>
<878rxiixkd.fsf_-_@bsb.me.uk> <KPmdna0icsBPqQT8nZ2dnUU7-cVQAAAA@giganews.com>
<rZdmJ.57389$SW5.45297@fx45.iad>
<mdmdnfK4uJV-8wT8nZ2dnUU7-dHNnZ2d@giganews.com>
<rjemJ.126018$831.69198@fx40.iad>
<N6adnS8fSrBW7wT8nZ2dnUU7-SPNnZ2d@giganews.com>
<ZCemJ.57451$SW5.24714@fx45.iad>
<f-mdncpGXqfE5gT8nZ2dnUU7-QnNnZ2d@giganews.com>
<VBfmJ.148748$I%1.2962@fx36.iad>
<xs2dnfyiUecRFQT8nZ2dnUU7-dvNnZ2d@giganews.com>
<72gmJ.13543$G996.9456@fx31.iad>
<Gr2dnRapptD9DAT8nZ2dnUU7-dHNnZ2d@giganews.com>
<KrgmJ.30302$L_2.5241@fx04.iad>
<kZWdnai9o8YWCwT8nZ2dnUU7-dudnZ2d@giganews.com>
From: Rich...@Damon-Family.org (Richard Damon)
In-Reply-To: <kZWdnai9o8YWCwT8nZ2dnUU7-dudnZ2d@giganews.com>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Lines: 36
Message-ID: <ZnhmJ.22640$452.6370@fx22.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: Sat, 20 Nov 2021 20:35:53 -0500
X-Received-Bytes: 2997
 by: Richard Damon - Sun, 21 Nov 2021 01:35 UTC

On 11/20/21 7:44 PM, olcott wrote:
>>
>
> How do you tell a mathematical function that it is not allowed to base
> its halt status decision on the sequence of configurations specified by
> (P, I) and instead must base its halt status decision on P(I) [when run
> independently] ???
>

That is a silly question and shows you don't know what you are talking
about.

H is a specific algorigthm, chosen by its designer to try to solve a
problem.

The programmer tells H what steps it is supposed to do, and then the
machine that is programmed with H runs those steps with the input it is
given.

"Get the right answer" is NOT an algorithm.

H of course has to base its answer on the stuff it does on its input,
but the RIGHT answer is based on the specifications the programmer was
trying to meet.

After it does its stuff, then a PERSON can look at what H said, and look
at what the computation the input was a representation of will do when
it is computed, and see if H was right.

Since if H(P,P) answers 0, we can easily see (and you even admit) that
when we run P(P) as an independent program it will halt in finite time
(even just slightly longer than it took H to answer wrongly). Thus it is
easy to see that H was WRONG.

Maybe you just don't understand what it means to write a program to some
specifications.

Re: Concise refutation of halting problem proofs V20 [ Richard FAILS ]

<WdKdnSWzHPuaPgT8nZ2dnUU7-QWdnZ2d@giganews.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=23778&group=comp.theory#23778

  copy link   Newsgroups: comp.theory
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!news.misty.com!border2.nntp.dca1.giganews.com!nntp.giganews.com!buffer2.nntp.dca1.giganews.com!news.giganews.com.POSTED!not-for-mail
NNTP-Posting-Date: Sat, 20 Nov 2021 19:38:15 -0600
Date: Sat, 20 Nov 2021 19:38:14 -0600
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Thunderbird/91.3.2
Subject: Re: Concise refutation of halting problem proofs V20 [ Richard FAILS
]
Content-Language: en-US
Newsgroups: comp.theory
References: <gKadnXaES8VF4QX8nZ2dnUU7-bfNnZ2d@giganews.com>
<87ee7bhz7h.fsf@bsb.me.uk> <wrOdnc55NeLphwT8nZ2dnUU7-N-dnZ2d@giganews.com>
<878rxiixkd.fsf_-_@bsb.me.uk> <KPmdna0icsBPqQT8nZ2dnUU7-cVQAAAA@giganews.com>
<rZdmJ.57389$SW5.45297@fx45.iad>
<mdmdnfK4uJV-8wT8nZ2dnUU7-dHNnZ2d@giganews.com>
<rjemJ.126018$831.69198@fx40.iad>
<N6adnS8fSrBW7wT8nZ2dnUU7-SPNnZ2d@giganews.com>
<ZCemJ.57451$SW5.24714@fx45.iad>
<f-mdncpGXqfE5gT8nZ2dnUU7-QnNnZ2d@giganews.com>
<VBfmJ.148748$I%1.2962@fx36.iad>
<xs2dnfyiUecRFQT8nZ2dnUU7-dvNnZ2d@giganews.com>
<72gmJ.13543$G996.9456@fx31.iad>
<Gr2dnRapptD9DAT8nZ2dnUU7-dHNnZ2d@giganews.com>
<KrgmJ.30302$L_2.5241@fx04.iad>
<kZWdnai9o8YWCwT8nZ2dnUU7-dudnZ2d@giganews.com>
<ZnhmJ.22640$452.6370@fx22.iad>
From: NoO...@NoWhere.com (olcott)
In-Reply-To: <ZnhmJ.22640$452.6370@fx22.iad>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Message-ID: <WdKdnSWzHPuaPgT8nZ2dnUU7-QWdnZ2d@giganews.com>
Lines: 22
X-Usenet-Provider: http://www.giganews.com
X-Trace: sv3-GGkcVIHShn8poKX7DzyafPgRI5KFNoKhe7yGqIHqg8hgMtMNHk38I1LooSLF8zTDS69qWcJMnkhOvCA!okPN2ZM/+V88EDMNVPob3rQOyqFXCkNW5WflAjNvJPif2CYJ3tKvhhy+SxC/SxlpkRhvBp4w1rV4!cQ==
X-Complaints-To: abuse@giganews.com
X-DMCA-Notifications: http://www.giganews.com/info/dmca.html
X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers
X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly
X-Postfilter: 1.3.40
X-Original-Bytes: 2608
 by: olcott - Sun, 21 Nov 2021 01:38 UTC

On 11/20/2021 7:35 PM, Richard Damon wrote:
> On 11/20/21 7:44 PM, olcott wrote:
>>>
>>
>> How do you tell a mathematical function that it is not allowed to base
>> its halt status decision on the sequence of configurations specified
>> by (P, I) and instead must base its halt status decision on P(I) [when
>> run independently] ???
>>
>
> That is a silly question and shows you don't know what you are talking
> about.
>
For mathematical function H:
specified sequences of configurations reach their final state or not

--
Copyright 2021 Pete Olcott

Talent hits a target no one else can hit;
Genius hits a target no one else can see.
Arthur Schopenhauer

Re: Concise refutation of halting problem proofs V20 [ Richard FAILS ]

<USimJ.48968$3q9.13203@fx47.iad>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=23790&group=comp.theory#23790

  copy link   Newsgroups: comp.theory
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!newsreader4.netcologne.de!news.netcologne.de!peer02.ams1!peer.ams1.xlned.com!news.xlned.com!peer01.iad!feed-me.highwinds-media.com!news.highwinds-media.com!fx47.iad.POSTED!not-for-mail
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:91.0)
Gecko/20100101 Thunderbird/91.3.2
Subject: Re: Concise refutation of halting problem proofs V20 [ Richard FAILS
]
Content-Language: en-US
Newsgroups: comp.theory
References: <gKadnXaES8VF4QX8nZ2dnUU7-bfNnZ2d@giganews.com>
<87ee7bhz7h.fsf@bsb.me.uk> <wrOdnc55NeLphwT8nZ2dnUU7-N-dnZ2d@giganews.com>
<878rxiixkd.fsf_-_@bsb.me.uk> <KPmdna0icsBPqQT8nZ2dnUU7-cVQAAAA@giganews.com>
<rZdmJ.57389$SW5.45297@fx45.iad>
<mdmdnfK4uJV-8wT8nZ2dnUU7-dHNnZ2d@giganews.com>
<rjemJ.126018$831.69198@fx40.iad>
<N6adnS8fSrBW7wT8nZ2dnUU7-SPNnZ2d@giganews.com>
<ZCemJ.57451$SW5.24714@fx45.iad>
<f-mdncpGXqfE5gT8nZ2dnUU7-QnNnZ2d@giganews.com>
<VBfmJ.148748$I%1.2962@fx36.iad>
<xs2dnfyiUecRFQT8nZ2dnUU7-dvNnZ2d@giganews.com>
<72gmJ.13543$G996.9456@fx31.iad>
<Gr2dnRapptD9DAT8nZ2dnUU7-dHNnZ2d@giganews.com>
<KrgmJ.30302$L_2.5241@fx04.iad>
<kZWdnai9o8YWCwT8nZ2dnUU7-dudnZ2d@giganews.com>
<ZnhmJ.22640$452.6370@fx22.iad>
<WdKdnSWzHPuaPgT8nZ2dnUU7-QWdnZ2d@giganews.com>
From: Rich...@Damon-Family.org (Richard Damon)
In-Reply-To: <WdKdnSWzHPuaPgT8nZ2dnUU7-QWdnZ2d@giganews.com>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Lines: 20
Message-ID: <USimJ.48968$3q9.13203@fx47.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: Sat, 20 Nov 2021 22:17:08 -0500
X-Received-Bytes: 2398
 by: Richard Damon - Sun, 21 Nov 2021 03:17 UTC

On 11/20/21 8:38 PM, olcott wrote:
> On 11/20/2021 7:35 PM, Richard Damon wrote:
>> On 11/20/21 7:44 PM, olcott wrote:
>>>>
>>>
>>> How do you tell a mathematical function that it is not allowed to
>>> base its halt status decision on the sequence of configurations
>>> specified by (P, I) and instead must base its halt status decision on
>>> P(I) [when run independently] ???
>>>
>>
>> That is a silly question and shows you don't know what you are talking
>> about.
>>
> For mathematical function H:
> specified sequences of configurations reach their final state or not
>

So you are just talking POOP and lying about you working on the Halting
Problem.

1
server_pubkey.txt

rocksolid light 0.9.81
clearnet tor