Rocksolid Light

Welcome to novaBBS (click a section below)

mail  files  register  newsreader  groups  login

Message-ID:  

Remember: use logout to logout.


devel / comp.theory / Concise refutation of halting problem proofs V2 [ H(P,P)==0 is correct by logical necessity ]

SubjectAuthor
* Concise refutation of halting problem proofs V2 [ H(P,P)==0 isolcott
+- Concise refutation of halting problem proofs V2 [ H(P,P)==0 isRichard Damon
`* Concise refutation of halting problem proofs V2 [ H(P,P)==0 is correct by logicaBen Bacarisse
 `* Concise refutation of halting problem proofs V2 [ H(P,P)==0 isolcott
  +- Concise refutation of halting problem proofs V2 [ H(P,P)==0 isRichard Damon
  `* Concise refutation of halting problem proofs V2 [ H(P,P)==0 is correct by logicaBen Bacarisse
   `* Concise refutation of halting problem proofs V2 [ H(P,P)==0 isolcott
    `- Concise refutation of halting problem proofs V2 [ H(P,P)==0 is correct by logicaBen Bacarisse

1
Concise refutation of halting problem proofs V2 [ H(P,P)==0 is correct by logical necessity ]

<h8KdnV0u2LQyJhv8nZ2dnUU7-bnNnZ2d@giganews.com>

  copy mid

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

  copy link   Newsgroups: comp.theory comp.ai.philosophy sci.logic sci.math
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, 06 Nov 2021 12:30:23 -0500
Date: Sat, 6 Nov 2021 12:30:20 -0500
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Thunderbird/91.2.1
Newsgroups: comp.theory,comp.ai.philosophy,sci.logic,sci.math
Content-Language: en-US
From: NoO...@NoWhere.com (olcott)
Subject: Concise refutation of halting problem proofs V2 [ H(P,P)==0 is
correct by logical necessity ]
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Message-ID: <h8KdnV0u2LQyJhv8nZ2dnUU7-bnNnZ2d@giganews.com>
Lines: 86
X-Usenet-Provider: http://www.giganews.com
X-Trace: sv3-hGo//srqzYn+Dbq4wZjVjG+ylXVuG/zgbdI5R0zBz9QVyunQla+AQJCKabGOy8dEPFeA3xYutBj4iEf!ah0RNPEYlOLyr0G/y0iAX/bd+hlWGuSGOwmTA1h/MIOYYG38edEYZuJvV0135QOUy4Liv8j1gJaS!Jw==
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: 4598
 by: olcott - Sat, 6 Nov 2021 17:30 UTC

// Simplified Linz Ĥ (Linz:1990:319)
// Strachey(1965) CPL translated to C
void P(u32 x)
{
if (H(x, x))
HERE: goto HERE;
}

This is the assembly language of the above function after it has been
translated by the Microsoft C compiler.

_P()
[00000c36](01) 55 push ebp
[00000c37](02) 8bec mov ebp,esp
[00000c39](03) 8b4508 mov eax,[ebp+08] // 2nd Param
[00000c3c](01) 50 push eax
[00000c3d](03) 8b4d08 mov ecx,[ebp+08] // 1st Param
[00000c40](01) 51 push ecx
[00000c41](05) e820fdffff call 00000966 // call H
[00000c46](03) 83c408 add esp,+08
[00000c49](02) 85c0 test eax,eax
[00000c4b](02) 7402 jz 00000c4f
[00000c4d](02) ebfe jmp 00000c4d
[00000c4f](01) 5d pop ebp
[00000c50](01) c3 ret
Size in bytes:(0027) [00000c50]

Begin Local Halt Decider Simulation at Machine Address:c36

machine stack stack machine assembly
address address data code language
======== ======== ======== ========= =============
[00000c36][002117ca][002117ce] 55 push ebp
[00000c37][002117ca][002117ce] 8bec mov ebp,esp
[00000c39][002117ca][002117ce] 8b4508 mov eax,[ebp+08]
[00000c3c][002117c6][00000c36] 50 push eax // push P
[00000c3d][002117c6][00000c36] 8b4d08 mov ecx,[ebp+08]
[00000c40][002117c2][00000c36] 51 push ecx // push P
[00000c41][002117be][00000c46] e820fdffff call 00000966 // call H(P,P)

[00000c36][0025c1f2][0025c1f6] 55 push ebp
[00000c37][0025c1f2][0025c1f6] 8bec mov ebp,esp
[00000c39][0025c1f2][0025c1f6] 8b4508 mov eax,[ebp+08]
[00000c3c][0025c1ee][00000c36] 50 push eax // push P
[00000c3d][0025c1ee][00000c36] 8b4d08 mov ecx,[ebp+08]
[00000c40][0025c1ea][00000c36] 51 push ecx // push P
[00000c41][0025c1e6][00000c46] e820fdffff call 00000966 // call H(P,P)

The above conclusively proves that the pure simulation of the input to
H(P,P) never reaches its final state.

We don't even have to see that the first seven x86 instructions of P
actually repeat. We can know by logical necessity that a pure simulation
of the input to H(P,P) by H never reaches any final state of P on the
basis of the x86 source code of P and the fact that the seventh
instruction of P calls H.

This conclusively proves that H(P,P)==0 is the correct return value for
its input even if H never returns.

If there is no simulating halt decider H in the universe that correctly
decides that its input (P,P) never reaches its final state then the
input (P,P) remains undecidable, none-the-less H(P,P)==0 is still correct.

Strachey, C 1965. An impossible program The Computer Journal, Volume 7,
Issue 4, January 1965, Page 313, https://doi.org/10.1093/comjnl/7.4.313

Linz, Peter 1990. An Introduction to Formal Languages and Automata.
Lexington/Toronto: D. C. Heath and Company. (318-320)

Halting problem undecidability and infinitely nested simulation
May 2021 PL Olcott

https://www.researchgate.net/publication/351947980_Halting_problem_undecidability_and_infinitely_nested_simulation

--
Copyright 2021 Pete Olcott

"Great spirits have always encountered violent opposition from mediocre
minds." Einstein

Re: Concise refutation of halting problem proofs V2 [ H(P,P)==0 is correct by logical necessity ]

<whzhJ.5618$g81.5338@fx19.iad>

  copy mid

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

  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!peer01.iad!feed-me.highwinds-media.com!news.highwinds-media.com!fx19.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.0
Subject: Re: Concise refutation of halting problem proofs V2 [ H(P,P)==0 is
correct by logical necessity ]
Content-Language: en-US
Newsgroups: comp.theory
References: <h8KdnV0u2LQyJhv8nZ2dnUU7-bnNnZ2d@giganews.com>
From: Rich...@Damon-Family.org (Richard Damon)
In-Reply-To: <h8KdnV0u2LQyJhv8nZ2dnUU7-bnNnZ2d@giganews.com>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Lines: 123
Message-ID: <whzhJ.5618$g81.5338@fx19.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, 6 Nov 2021 13:52:27 -0400
X-Received-Bytes: 5748
X-Original-Bytes: 5615
 by: Richard Damon - Sat, 6 Nov 2021 17:52 UTC

On 11/6/21 1:30 PM, olcott wrote:
> // Simplified Linz Ĥ (Linz:1990:319)
>  // Strachey(1965) CPL translated to C
>  void P(u32 x)
>  {
>   if (H(x, x))
>     HERE: goto HERE;
>  }
>
> This is the assembly language of the above function after it has been
> translated by the Microsoft C compiler.
>
> _P()
>  [00000c36](01)  55          push ebp
>  [00000c37](02)  8bec        mov ebp,esp
>  [00000c39](03)  8b4508      mov eax,[ebp+08] // 2nd Param
>  [00000c3c](01)  50          push eax
>  [00000c3d](03)  8b4d08      mov ecx,[ebp+08] // 1st Param
>  [00000c40](01)  51          push ecx
>  [00000c41](05)  e820fdffff  call 00000966    // call H
>  [00000c46](03)  83c408      add esp,+08
>  [00000c49](02)  85c0        test eax,eax
>  [00000c4b](02)  7402        jz 00000c4f
>  [00000c4d](02)  ebfe        jmp 00000c4d
>  [00000c4f](01)  5d          pop ebp
>  [00000c50](01)  c3          ret
>  Size in bytes:(0027) [00000c50]
>
> Begin Local Halt Decider Simulation at Machine Address:c36
>
>  machine   stack     stack     machine    assembly
>  address   address   data      code       language
>  ========  ========  ========  =========  =============
>  [00000c36][002117ca][002117ce] 55          push ebp
>  [00000c37][002117ca][002117ce] 8bec        mov ebp,esp
>  [00000c39][002117ca][002117ce] 8b4508      mov eax,[ebp+08]
>  [00000c3c][002117c6][00000c36] 50          push eax       // push P
>  [00000c3d][002117c6][00000c36] 8b4d08      mov ecx,[ebp+08]
>  [00000c40][002117c2][00000c36] 51          push ecx       // push P
>  [00000c41][002117be][00000c46] e820fdffff  call 00000966  // call H(P,P)
>
>  [00000c36][0025c1f2][0025c1f6] 55          push ebp
>  [00000c37][0025c1f2][0025c1f6] 8bec        mov ebp,esp
>  [00000c39][0025c1f2][0025c1f6] 8b4508      mov eax,[ebp+08]
>  [00000c3c][0025c1ee][00000c36] 50          push eax       // push P
>  [00000c3d][0025c1ee][00000c36] 8b4d08      mov ecx,[ebp+08]
>  [00000c40][0025c1ea][00000c36] 51          push ecx       // push P
>  [00000c41][0025c1e6][00000c46] e820fdffff  call 00000966  // call H(P,P)
>
> The above conclusively proves that the pure simulation of the input to
> H(P,P) never reaches its final state.
>

No, it doesn't

A Call to 0966 does not go to 0C36.

Unless H is LITERALLY just the equivalent of calling P agian, this is
not a proper trace.

If H IS that function, then H(P,P) will never return an answer and thus
fail.

> We don't even have to see that the first seven x86 instructions of P
> actually repeat. We can know by logical necessity that a pure simulation
> of the input to H(P,P) by H never reaches any final state of P on the
> basis of the x86 source code of P and the fact that the seventh
> instruction of P calls H.

Thus, if H IS a pure simulation, then P(P) is non-halting but H(P,P)
never answers

If H(P,P) ever answers non-Halting, then H is NOT a pure simulator, and
your simulation is incorrect and does not prove the results you claim.

FAIL.

>
> This conclusively proves that H(P,P)==0 is the correct return value for
> its input even if H never returns.
>

Yes, if H actually never returns, then 0 would have been the right answer.

But if H does return, that logic doesn't work.

> If there is no simulating halt decider H in the universe that correctly
> decides that its input (P,P) never reaches its final state then the
> input (P,P) remains undecidable, none-the-less H(P,P)==0 is still correct.
>

But since no H(P,P) ever gives that answer, H was never correct.

It doesn't matter that we know the answer for this particular case, what
matters is that H could never have given it.

You have failed to prove what you need to prove. Maybe you mean to be
proving something different, but your statement does not prove what you
seem to be claiming.

I think you just don't know exactly what the terms you are using mean.

>
>
>
> Strachey, C 1965.  An impossible program The Computer Journal, Volume 7,
> Issue 4, January 1965, Page 313, https://doi.org/10.1093/comjnl/7.4.313
>
> Linz, Peter 1990. An Introduction to Formal Languages and Automata.
> Lexington/Toronto: D. C. Heath and Company. (318-320)
>
> Halting problem undecidability and infinitely nested simulation
> May 2021 PL Olcott
>
> https://www.researchgate.net/publication/351947980_Halting_problem_undecidability_and_infinitely_nested_simulation
>
>
>
>
>

Re: Concise refutation of halting problem proofs V2 [ H(P,P)==0 is correct by logical necessity ]

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

  copy mid

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

  copy link   Newsgroups: comp.theory
Followup: 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 V2 [ H(P,P)==0 is correct by logical necessity ]
Followup-To: comp.theory
Date: Sat, 06 Nov 2021 20:04:03 +0000
Organization: A noiseless patient Spider
Lines: 22
Message-ID: <87sfw96ogc.fsf@bsb.me.uk>
References: <h8KdnV0u2LQyJhv8nZ2dnUU7-bnNnZ2d@giganews.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 8bit
Injection-Info: reader02.eternal-september.org; posting-host="05b9fa80338c97d653a7fb8fdb205590";
logging-data="7139"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18KvDOdn46YHJm5GgEm3Rr5UKlBJH6FarA="
Cancel-Lock: sha1:vrC3P+s2W8vHgx8IDcHaQp5FoV4=
sha1:Rc8O+iUBmwiSbMPzKkqqmrNNztk=
X-BSB-Auth: 1.a74a4e74c73f548a1db9.20211106200403GMT.87sfw96ogc.fsf@bsb.me.uk
 by: Ben Bacarisse - Sat, 6 Nov 2021 20:04 UTC

olcott <NoOne@NoWhere.com> writes:

Another thread! This will be the one, will it?

> This conclusively proves that H(P,P)==0 is the correct return value
> for its input even if H never returns.

The fact is that H /does/ return. H(P,P) returns 0 which, because P(P)
halts, makes H not meet Linz's specs:

"Everyone has claimed that H on input pair (Ĥ, Ĥ) meeting the Linz
specs does not exist. I now have a fully encoded pair of Turing
Machines H / Ĥ proving them wrong."

Message-ID: <JbydneYGrrpProjBnZ2dnUU7-X3NnZ2d@giganews.com>

Those were the days, eh? You could just boast about having such a
Turing machine and how you have almost finished the UTM to execute it on
(Ĥ, Ĥ). That was all before you told the world that H was wrong.

--
Ben.

Re: Concise refutation of halting problem proofs V2 [ H(P,P)==0 is correct by logical necessity ]

<T8ydnYRwV7_xfxv8nZ2dnUU7-N3NnZ2d@giganews.com>

  copy mid

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

  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, 06 Nov 2021 15:15:40 -0500
Date: Sat, 6 Nov 2021 15:15:39 -0500
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Thunderbird/91.2.1
Subject: Re: Concise refutation of halting problem proofs V2 [ H(P,P)==0 is
correct by logical necessity ]
Content-Language: en-US
Newsgroups: comp.theory
References: <h8KdnV0u2LQyJhv8nZ2dnUU7-bnNnZ2d@giganews.com>
<87sfw96ogc.fsf@bsb.me.uk>
From: NoO...@NoWhere.com (olcott)
In-Reply-To: <87sfw96ogc.fsf@bsb.me.uk>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Message-ID: <T8ydnYRwV7_xfxv8nZ2dnUU7-N3NnZ2d@giganews.com>
Lines: 37
X-Usenet-Provider: http://www.giganews.com
X-Trace: sv3-JKwSQBrU0U0N7fynWDEhy9osbb5aYUMLB/rEVUz5rpKt71YG9wU+ertYCRbzROMkdv6x8ZL2yuBAa1s!4jLSNiwrJwalAwnmooJHOhV3vicavLNeI9RJ4+KnKDcXPK1pYFeIlk+aSjRYX9ZlWiJGpQEERGo4!mQ==
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: 2499
 by: olcott - Sat, 6 Nov 2021 20:15 UTC

On 11/6/2021 3:04 PM, Ben Bacarisse wrote:
> olcott <NoOne@NoWhere.com> writes:
>
> Another thread! This will be the one, will it?
>
>> This conclusively proves that H(P,P)==0 is the correct return value
>> for its input even if H never returns.
>
> The fact is that H /does/ return.

In this thread I am not assuming that. In this thread I prove that
H(P,P)==0 is the correct return value even if H never returns.

This proof requires a good knowledge of the x86 language as a mandatory
prerequisite.

> H(P,P) returns 0 which, because P(P)
> halts, makes H not meet Linz's specs:
>
> "Everyone has claimed that H on input pair (Ĥ, Ĥ) meeting the Linz
> specs does not exist. I now have a fully encoded pair of Turing
> Machines H / Ĥ proving them wrong."
>
> Message-ID: <JbydneYGrrpProjBnZ2dnUU7-X3NnZ2d@giganews.com>
>
> Those were the days, eh? You could just boast about having such a
> Turing machine and how you have almost finished the UTM to execute it on
> (Ĥ, Ĥ). That was all before you told the world that H was wrong.
>

--
Copyright 2021 Pete Olcott

"Great spirits have always encountered violent opposition from mediocre
minds." Einstein

Re: Concise refutation of halting problem proofs V2 [ H(P,P)==0 is correct by logical necessity ]

<G_BhJ.40759$SR4.30737@fx43.iad>

  copy mid

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

  copy link   Newsgroups: comp.theory
Path: i2pn2.org!i2pn.org!news.uzoreto.com!news-out.netnews.com!news.alt.net!fdc2.netnews.com!peer01.ams1!peer.ams1.xlned.com!news.xlned.com!peer01.iad!feed-me.highwinds-media.com!news.highwinds-media.com!fx43.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.0
Subject: Re: Concise refutation of halting problem proofs V2 [ H(P,P)==0 is
correct by logical necessity ]
Content-Language: en-US
Newsgroups: comp.theory
References: <h8KdnV0u2LQyJhv8nZ2dnUU7-bnNnZ2d@giganews.com>
<87sfw96ogc.fsf@bsb.me.uk> <T8ydnYRwV7_xfxv8nZ2dnUU7-N3NnZ2d@giganews.com>
From: Rich...@Damon-Family.org (Richard Damon)
In-Reply-To: <T8ydnYRwV7_xfxv8nZ2dnUU7-N3NnZ2d@giganews.com>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Lines: 47
Message-ID: <G_BhJ.40759$SR4.30737@fx43.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, 6 Nov 2021 16:57:10 -0400
X-Received-Bytes: 2625
 by: Richard Damon - Sat, 6 Nov 2021 20:57 UTC

On 11/6/21 4:15 PM, olcott wrote:
> On 11/6/2021 3:04 PM, Ben Bacarisse wrote:
>> olcott <NoOne@NoWhere.com> writes:
>>
>> Another thread!  This will be the one, will it?
>>
>>> This conclusively proves that H(P,P)==0 is the correct return value
>>> for its input even if H never returns.
>>
>> The fact is that H /does/ return.
>
> In this thread I am not assuming that. In this thread I prove that
> H(P,P)==0 is the correct return value even if H never returns.

It is agreed that if H really doesn't abort its simulation of P EVER,
then Not_Halting is the right answer.

To say H(P,P) == 0 is correct is a bit of a problematic statement, as
this H(P,P) never returns that 0 to be correct.

The Truth of an impossible condition isn't really relevent. I thought
you didn't like that sort of statement.

>
> This proof requires a good knowledge of the x86 language as a mandatory
> prerequisite.

No, it doesn't

>
>
>>  H(P,P) returns 0 which, because P(P)
>> halts, makes H not meet Linz's specs:
>>
>>    "Everyone has claimed that H on input pair (Ĥ, Ĥ) meeting the Linz
>>    specs does not exist. I now have a fully encoded pair of Turing
>>    Machines H / Ĥ proving them wrong."
>>
>>    Message-ID: <JbydneYGrrpProjBnZ2dnUU7-X3NnZ2d@giganews.com>
>>
>> Those were the days, eh?  You could just boast about having such a
>> Turing machine and how you have almost finished the UTM to execute it on
>> (Ĥ, Ĥ).  That was all before you told the world that H was wrong.
>>
>
>

Re: Concise refutation of halting problem proofs V2 [ H(P,P)==0 is correct by logical necessity ]

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

  copy mid

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

  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 V2 [ H(P,P)==0 is correct by logical necessity ]
Date: Sun, 07 Nov 2021 01:54:32 +0000
Organization: A noiseless patient Spider
Lines: 23
Message-ID: <87y2604tnr.fsf@bsb.me.uk>
References: <h8KdnV0u2LQyJhv8nZ2dnUU7-bnNnZ2d@giganews.com>
<87sfw96ogc.fsf@bsb.me.uk>
<T8ydnYRwV7_xfxv8nZ2dnUU7-N3NnZ2d@giganews.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 8bit
Injection-Info: reader02.eternal-september.org; posting-host="14cbb517b2490b19a82ecd6051397a44";
logging-data="19727"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19eSCTzT+mtec/NnKRTq0jjUsmmxxKGD/M="
Cancel-Lock: sha1:b/I/ne80kPDmOeqxme7kOs7/pzo=
sha1:gEiXE+PLcimDsYa5j7Zi5kyixqk=
X-BSB-Auth: 1.a122a05740e6ce4eb884.20211107015432GMT.87y2604tnr.fsf@bsb.me.uk
 by: Ben Bacarisse - Sun, 7 Nov 2021 01:54 UTC

olcott <NoOne@NoWhere.com> writes:

> On 11/6/2021 3:04 PM, Ben Bacarisse wrote:
>> olcott <NoOne@NoWhere.com> writes:
>> Another thread! This will be the one, will it?
>>
>>> This conclusively proves that H(P,P)==0 is the correct return value
>>> for its input even if H never returns.
>>
>> The fact is that H /does/ return.
>
> In this thread I am not assuming that.

So H does not meet Linz's specs. Ten-a-penny... (You know there are
other names. You don't have to call you dog H.)

>> "Everyone has claimed that H on input pair (Ĥ, Ĥ) meeting the Linz
>> specs does not exist. I now have a fully encoded pair of Turing
>> Machines H / Ĥ proving them wrong."
>> Message-ID: <JbydneYGrrpProjBnZ2dnUU7-X3NnZ2d@giganews.com>

--
Ben.

Re: Concise refutation of halting problem proofs V2 [ H(P,P)==0 is correct by logical necessity ]

<C5ydnYeEG7df0hr8nZ2dnUU7-bnNnZ2d@giganews.com>

  copy mid

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

  copy link   Newsgroups: comp.theory sci.logic
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, 06 Nov 2021 23:02:09 -0500
Date: Sat, 6 Nov 2021 23:02:09 -0500
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Thunderbird/91.2.1
Subject: Re: Concise refutation of halting problem proofs V2 [ H(P,P)==0 is
correct by logical necessity ]
Content-Language: en-US
Newsgroups: comp.theory,sci.logic
References: <h8KdnV0u2LQyJhv8nZ2dnUU7-bnNnZ2d@giganews.com>
<87sfw96ogc.fsf@bsb.me.uk> <T8ydnYRwV7_xfxv8nZ2dnUU7-N3NnZ2d@giganews.com>
<87y2604tnr.fsf@bsb.me.uk>
From: NoO...@NoWhere.com (olcott)
In-Reply-To: <87y2604tnr.fsf@bsb.me.uk>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Message-ID: <C5ydnYeEG7df0hr8nZ2dnUU7-bnNnZ2d@giganews.com>
Lines: 35
X-Usenet-Provider: http://www.giganews.com
X-Trace: sv3-pSX1iltKvRZWVuUD1kyuyRqXmkiSUhyrPKqIK/EfCIa8/ankxElABLtBxtNvzUlRxFV2lwp3ONlBK52!nRvgQKQkyJHXMoWkETaI6zJllv1g77TmCfIXZCSAbjt0l4QPg2qtEuTbzfJRDj7m0eQwV3txtDzM!6g==
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: 2619
 by: olcott - Sun, 7 Nov 2021 04:02 UTC

On 11/6/2021 8:54 PM, Ben Bacarisse wrote:
> olcott <NoOne@NoWhere.com> writes:
>
>> On 11/6/2021 3:04 PM, Ben Bacarisse wrote:
>>> olcott <NoOne@NoWhere.com> writes:
>>> Another thread! This will be the one, will it?
>>>
>>>> This conclusively proves that H(P,P)==0 is the correct return value
>>>> for its input even if H never returns.
>>>
>>> The fact is that H /does/ return.
>>
>> In this thread I am not assuming that.
>
> So H does not meet Linz's specs. Ten-a-penny... (You know there are
> other names. You don't have to call you dog H.)
>

I did not say that H meets the Linz specs or fails to meet the Linz
specs. I am saying that the pure simulation of the input to H(P,P) never
reaches its final state either way. This claim is very easily
empirically verifiable if you had the mandatory prerequisite knowledge.

>>> "Everyone has claimed that H on input pair (Ĥ, Ĥ) meeting the Linz
>>> specs does not exist. I now have a fully encoded pair of Turing
>>> Machines H / Ĥ proving them wrong."
>>> Message-ID: <JbydneYGrrpProjBnZ2dnUU7-X3NnZ2d@giganews.com>
>

--
Copyright 2021 Pete Olcott

"Great spirits have always encountered violent opposition from mediocre
minds." Einstein

Re: Concise refutation of halting problem proofs V2 [ H(P,P)==0 is correct by logical necessity ]

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

  copy mid

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

  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 V2 [ H(P,P)==0 is correct by logical necessity ]
Date: Sun, 07 Nov 2021 14:01:15 +0000
Organization: A noiseless patient Spider
Lines: 27
Message-ID: <87bl2w3w0k.fsf@bsb.me.uk>
References: <h8KdnV0u2LQyJhv8nZ2dnUU7-bnNnZ2d@giganews.com>
<87sfw96ogc.fsf@bsb.me.uk>
<T8ydnYRwV7_xfxv8nZ2dnUU7-N3NnZ2d@giganews.com>
<87y2604tnr.fsf@bsb.me.uk>
<C5ydnYeEG7df0hr8nZ2dnUU7-bnNnZ2d@giganews.com>
Mime-Version: 1.0
Content-Type: text/plain
Injection-Info: reader02.eternal-september.org; posting-host="14cbb517b2490b19a82ecd6051397a44";
logging-data="14568"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19ZZA4RbFTh9ssLzU1IqnBV51AUf8ntsCQ="
Cancel-Lock: sha1:7KuOb/6REJK3e1+ge27wEJ9bk2I=
sha1:BpIxdD+BCeRsrzbhimD4Jc41YA4=
X-BSB-Auth: 1.cbe2738705816cadf88f.20211107140115GMT.87bl2w3w0k.fsf@bsb.me.uk
 by: Ben Bacarisse - Sun, 7 Nov 2021 14:01 UTC

olcott <NoOne@NoWhere.com> writes:

> On 11/6/2021 8:54 PM, Ben Bacarisse wrote:
>> olcott <NoOne@NoWhere.com> writes:
>>
>>> On 11/6/2021 3:04 PM, Ben Bacarisse wrote:
>>>> olcott <NoOne@NoWhere.com> writes:
>>>> Another thread! This will be the one, will it?
>>>>
>>>>> This conclusively proves that H(P,P)==0 is the correct return value
>>>>> for its input even if H never returns.
>>>>
>>>> The fact is that H /does/ return.
>>>
>>> In this thread I am not assuming that.
>> So H does not meet Linz's specs. Ten-a-penny... (You know there are
>> other names. You don't have to call you dog H.)
>
> I did not say that H meets the Linz specs or fails to meet the Linz
> specs.

I know. I'm just pointing it out so you know that whatever you say
about it can be safely ignored -- at least in the context of the subject
line of the post.

--
Ben.


devel / comp.theory / Concise refutation of halting problem proofs V2 [ H(P,P)==0 is correct by logical necessity ]

1
server_pubkey.txt

rocksolid light 0.9.81
clearnet tor