Rocksolid Light

Welcome to novaBBS (click a section below)

mail  files  register  newsreader  groups  login

Message-ID:  

<Overfiend> Joy: Hey, I'm an asshole. Assholes emit odious gas. That's what we do.


devel / comp.lang.c / Re: Halting problem proofs refuted on the basis of software engineering

SubjectAuthor
* Halting problem proofs refuted on the basis of software engineeringolcott
+* Re: Halting problem proofs refuted on the basis of softwareMr Flibble
|`- Re: Halting problem proofs refuted on the basis of softwareolcott
+* Re: Halting problem proofs refuted on the basis of softwareRichard Damon
|`* Re: Halting problem proofs refuted on the basis of softwareolcott
| +- Re: Halting problem proofs refuted on the basis of softwareBonita Montero
| `- Re: Halting problem proofs refuted on the basis of softwareRichard Damon
+- Re: Halting problem proofs refuted on the basis of software engineering [ Irrefuolcott
+- Re: Halting problem proofs refuted on the basis of softwareolcott
+- Re: Halting problem proofs refuted on the basis of softwareolcott
`* Re: Halting problem proofs refuted on the basis of softwareRichard Damon
 `* Re: Halting problem proofs refuted on the basis of softwareolcott
  `* Re: Halting problem proofs refuted on the basis of softwareRichard Damon
   `- Re: Halting problem proofs refuted on the basis of softwareolcott

1
Halting problem proofs refuted on the basis of software engineering

<EPWdnbcVB5MW-F3_nZ2dnUU7_83NnZ2d@giganews.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=22108&group=comp.lang.c#22108

  copy link   Newsgroups: comp.theory comp.lang.c comp.lang.c++ comp.software-eng
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!usenet.blueworldhosting.com!feed1.usenet.blueworldhosting.com!peer02.iad!feed-me.highwinds-media.com!news.highwinds-media.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, 02 Jul 2022 10:34:35 -0500
Date: Sat, 2 Jul 2022 10:34:34 -0500
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Thunderbird/91.11.0
Newsgroups: comp.theory,comp.lang.c,comp.lang.c++,comp.software-eng
Content-Language: en-US
From: NoO...@NoWhere.com (olcott)
Subject: Halting problem proofs refuted on the basis of software engineering
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Message-ID: <EPWdnbcVB5MW-F3_nZ2dnUU7_83NnZ2d@giganews.com>
Lines: 45
X-Usenet-Provider: http://www.giganews.com
X-Trace: sv3-SUid2CSyPNA58Mhr0+uWP12vodiCXLZZN8YjS84yYXdZUsV0bSEdaR5Z8XSSoq9lCQyHvV5MJgpvxRJ!FVTGQWB8kMxDmaaCQ4n0PUAL1D0YqR8vnK6fZxwUjPNAAbDCqH9xaP2B9KyWKF94Fh+U4vELcFqZ
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: 2577
X-Received-Bytes: 2699
 by: olcott - Sat, 2 Jul 2022 15:34 UTC

This much more concise version of my paper focuses on the actual
execution of three fully operational examples.

H0 correctly determines that Infinite_Loop() never halts
H correctly determines that Infinite_Recursion() never halts
H correctly determines that P() never halts

void P(u32 x)
{
if (H(x, x))
HERE: goto HERE;
return;
}

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

As shown below the above P and H have the required (halting problem)
pathological relationship to each other:

For any program H that might determine if programs halt, a
"pathological"
program P, called with some input, can pass its own source and its
input to
H and then specifically do the opposite of what H predicts P will
do. No H
can exist that handles this case.
https://en.wikipedia.org/wiki/Halting_problem

I really need software engineers to verify that H does correctly predict
that its complete and correct x86 emulation of its input would never
reach the "ret" instruction of this input.

*Halting problem proofs refuted on the basis of software engineering*
https://www.researchgate.net/publication/361701808_Halting_problem_proofs_refuted_on_the_basis_of_software_engineering

--
Copyright 2022 Pete Olcott

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

Re: Halting problem proofs refuted on the basis of software engineering

<20220702172644.00004e9c@reddwarf.jmc>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=22109&group=comp.lang.c#22109

  copy link   Newsgroups: comp.theory comp.lang.c comp.lang.c++ comp.software-eng
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.ams4!peer.am4.highwinds-media.com!news.highwinds-media.com!fx07.ams4.POSTED!not-for-mail
From: flib...@reddwarf.jmc (Mr Flibble)
Newsgroups: comp.theory,comp.lang.c,comp.lang.c++,comp.software-eng
Subject: Re: Halting problem proofs refuted on the basis of software
engineering
Message-ID: <20220702172644.00004e9c@reddwarf.jmc>
References: <EPWdnbcVB5MW-F3_nZ2dnUU7_83NnZ2d@giganews.com>
Organization: Jupiter Mining Corp
X-Newsreader: Claws Mail 3.17.8 (GTK+ 2.24.33; x86_64-w64-mingw32)
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Lines: 70
X-Complaints-To: abuse@eweka.nl
NNTP-Posting-Date: Sat, 02 Jul 2022 16:26:38 UTC
Date: Sat, 2 Jul 2022 17:26:44 +0100
X-Received-Bytes: 3168
 by: Mr Flibble - Sat, 2 Jul 2022 16:26 UTC

On Sat, 2 Jul 2022 10:34:34 -0500
olcott <NoOne@NoWhere.com> wrote:

> This much more concise version of my paper focuses on the actual
> execution of three fully operational examples.
>
> H0 correctly determines that Infinite_Loop() never halts
> H correctly determines that Infinite_Recursion() never halts
> H correctly determines that P() never halts
>
> void P(u32 x)
> {
> if (H(x, x))
> HERE: goto HERE;
> return;
> }
>
> int main()
> {
> Output("Input_Halts = ", H((u32)P, (u32)P));
> }
>
> As shown below the above P and H have the required (halting problem)
> pathological relationship to each other:
>
> For any program H that might determine if programs halt, a
> "pathological"
> program P, called with some input, can pass its own source and
> its input to
> H and then specifically do the opposite of what H predicts P
> will do. No H
> can exist that handles this case.
> https://en.wikipedia.org/wiki/Halting_problem
>
> I really need software engineers to verify that H does correctly
> predict that its complete and correct x86 emulation of its input
> would never reach the "ret" instruction of this input.
>
> *Halting problem proofs refuted on the basis of software engineering*
> https://www.researchgate.net/publication/361701808_Halting_problem_proofs_refuted_on_the_basis_of_software_engineering

void Px(u32 x)
{ H(x, x);
return;
}

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

....[000013e8][00102357][00000000] 83c408 add esp,+08
....[000013eb][00102353][00000000] 50 push eax
....[000013ec][0010234f][00000427] 6827040000 push 00000427
---[000013f1][0010234f][00000427] e880f0ffff call 00000476
Input_Halts = 0
....[000013f6][00102357][00000000] 83c408 add esp,+08
....[000013f9][00102357][00000000] 33c0 xor eax,eax
....[000013fb][0010235b][00100000] 5d pop ebp
....[000013fc][0010235f][00000004] c3 ret
Number of Instructions Executed(16120)

As can be seen above Olcott's H decides that Px does not halt but it is
obvious that Px should always halt if H is a valid halt decider that
always returns a decision to its caller (Px). Olcott's H does not
return a decision to its caller (Px) and is thus invalid.

/Flibble

Re: Halting problem proofs refuted on the basis of software engineering

<orWdnUII9umx613_nZ2dnUU7_8xh4p2d@giganews.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=22111&group=comp.lang.c#22111

  copy link   Newsgroups: comp.lang.c
Followup: comp.theory
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!1.us.feeder.erje.net!feeder.erje.net!border1.nntp.dca1.giganews.com!nntp.giganews.com!buffer1.nntp.dca1.giganews.com!news.giganews.com.POSTED!not-for-mail
NNTP-Posting-Date: Sat, 02 Jul 2022 11:45:32 -0500
Date: Sat, 2 Jul 2022 11:45:32 -0500
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Thunderbird/91.11.0
Subject: Re: Halting problem proofs refuted on the basis of software
engineering
Content-Language: en-US
Newsgroups: comp.lang.c
References: <EPWdnbcVB5MW-F3_nZ2dnUU7_83NnZ2d@giganews.com>
<20220702172644.00004e9c@reddwarf.jmc>
Followup-To: comp.theory
From: NoO...@NoWhere.com (olcott)
In-Reply-To: <20220702172644.00004e9c@reddwarf.jmc>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Message-ID: <orWdnUII9umx613_nZ2dnUU7_8xh4p2d@giganews.com>
Lines: 165
X-Usenet-Provider: http://www.giganews.com
X-Trace: sv3-zwNyZ5TsT9QkLNvF6TVgLYq5Y5QWDb/YSDMDt8SmoRUzv/KoKb3RT9acK+CMoLX8tlG/xN66ck3P7Z2!ncx/9UyvFinTmtBuKrceSKLwb57LcA3Gc1o2AazymHpxjDhfewTojk+1IpRFOmjikxXSm4QRDD3A
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: 7135
 by: olcott - Sat, 2 Jul 2022 16:45 UTC

On 7/2/2022 11:26 AM, Mr Flibble wrote:
> On Sat, 2 Jul 2022 10:34:34 -0500
> olcott <NoOne@NoWhere.com> wrote:
>
>> This much more concise version of my paper focuses on the actual
>> execution of three fully operational examples.
>>
>> H0 correctly determines that Infinite_Loop() never halts
>> H correctly determines that Infinite_Recursion() never halts
>> H correctly determines that P() never halts
>>
>> void P(u32 x)
>> {
>> if (H(x, x))
>> HERE: goto HERE;
>> return;
>> }
>>
>> int main()
>> {
>> Output("Input_Halts = ", H((u32)P, (u32)P));
>> }
>>
>> As shown below the above P and H have the required (halting problem)
>> pathological relationship to each other:
>>
>> For any program H that might determine if programs halt, a
>> "pathological"
>> program P, called with some input, can pass its own source and
>> its input to
>> H and then specifically do the opposite of what H predicts P
>> will do. No H
>> can exist that handles this case.
>> https://en.wikipedia.org/wiki/Halting_problem
>>
>> I really need software engineers to verify that H does correctly
>> predict that its complete and correct x86 emulation of its input
>> would never reach the "ret" instruction of this input.
>>
>> *Halting problem proofs refuted on the basis of software engineering*
>> https://www.researchgate.net/publication/361701808_Halting_problem_proofs_refuted_on_the_basis_of_software_engineering
>
> void Px(u32 x)
> {
> H(x, x);
> return;
> }
>
> int main()
> {
> Output("Input_Halts = ", H((u32)Px, (u32)Px));
> }
>
> ...[000013e8][00102357][00000000] 83c408 add esp,+08
> ...[000013eb][00102353][00000000] 50 push eax
> ...[000013ec][0010234f][00000427] 6827040000 push 00000427
> ---[000013f1][0010234f][00000427] e880f0ffff call 00000476
> Input_Halts = 0
> ...[000013f6][00102357][00000000] 83c408 add esp,+08
> ...[000013f9][00102357][00000000] 33c0 xor eax,eax
> ...[000013fb][0010235b][00100000] 5d pop ebp
> ...[000013fc][0010235f][00000004] c3 ret
> Number of Instructions Executed(16120)
>
> As can be seen above Olcott's H decides that Px does not halt but it is
> obvious that Px should always halt if H is a valid halt decider that
> always returns a decision to its caller (Px). Olcott's H does not
> return a decision to its caller (Px) and is thus invalid.
>
> /Flibble
>

>

Your false assumptions are directly contradicted by the semantics of the
x86 programming language.

*x86 Instruction Set Reference* https://c9x.me/x86/

void Px(u32 x)
{ H(x, x);
return;
}

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

_Px()
[00001192](01) 55 push ebp
[00001193](02) 8bec mov ebp,esp
[00001195](03) 8b4508 mov eax,[ebp+08]
[00001198](01) 50 push eax
[00001199](03) 8b4d08 mov ecx,[ebp+08]
[0000119c](01) 51 push ecx
[0000119d](05) e8d0fdffff call 00000f72
[000011a2](03) 83c408 add esp,+08
[000011a5](01) 5d pop ebp
[000011a6](01) c3 ret
Size in bytes:(0021) [000011a6]

_main()
[000011d2](01) 55 push ebp
[000011d3](02) 8bec mov ebp,esp
[000011d5](05) 6892110000 push 00001192
[000011da](05) 6892110000 push 00001192
[000011df](05) e88efdffff call 00000f72
[000011e4](03) 83c408 add esp,+08
[000011e7](01) 50 push eax
[000011e8](05) 68a3040000 push 000004a3
[000011ed](05) e800f3ffff call 000004f2
[000011f2](03) 83c408 add esp,+08
[000011f5](02) 33c0 xor eax,eax
[000011f7](01) 5d pop ebp
[000011f8](01) c3 ret
Size in bytes:(0039) [000011f8]

machine stack stack machine assembly
address address data code language
======== ======== ======== ========= =============
[000011d2][00101f7f][00000000] 55 push ebp
[000011d3][00101f7f][00000000] 8bec mov ebp,esp
[000011d5][00101f7b][00001192] 6892110000 push 00001192
[000011da][00101f77][00001192] 6892110000 push 00001192
[000011df][00101f73][000011e4] e88efdffff call 00000f72

H: Begin Simulation Execution Trace Stored at:11202b
Address_of_H:f72
[00001192][00112017][0011201b] 55 push ebp
[00001193][00112017][0011201b] 8bec mov ebp,esp
[00001195][00112017][0011201b] 8b4508 mov eax,[ebp+08]
[00001198][00112013][00001192] 50 push eax // push Px
[00001199][00112013][00001192] 8b4d08 mov ecx,[ebp+08]
[0000119c][0011200f][00001192] 51 push ecx // push Px
[0000119d][0011200b][000011a2] e8d0fdffff call 00000f72 // call H(Px,Px)
H: Infinitely Recursive Simulation Detected Simulation Stopped

H knows its own machine address and on this basis it can easily
examine its stored execution_trace of Px (see above) to determine:
(a) Px is calling H with the same arguments that H was called with.
(b) No instructions in Px could possibly escape this otherwise
infinitely recursive emulation.
(c) H aborts its emulation of Px before its call to H is emulated.

[000011e4][00101f7f][00000000] 83c408 add esp,+08
[000011e7][00101f7b][00000000] 50 push eax
[000011e8][00101f77][000004a3] 68a3040000 push 000004a3
[000011ed][00101f77][000004a3] e800f3ffff call 000004f2
Input_Halts = 0
[000011f2][00101f7f][00000000] 83c408 add esp,+08
[000011f5][00101f7f][00000000] 33c0 xor eax,eax
[000011f7][00101f83][00000018] 5d pop ebp
[000011f8][00101f87][00000000] c3 ret
Number of Instructions Executed(880) == 13 Pages

--
Copyright 2022 Pete Olcott

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

Re: Halting problem proofs refuted on the basis of software engineering

<6i0wK.31269$Qd2.9293@fx37.iad>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=22112&group=comp.lang.c#22112

  copy link   Newsgroups: comp.theory comp.lang.c comp.lang.c++
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!usenet.blueworldhosting.com!feed1.usenet.blueworldhosting.com!peer03.iad!feed-me.highwinds-media.com!news.highwinds-media.com!fx37.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.11.0
Subject: Re: Halting problem proofs refuted on the basis of software
engineering
Content-Language: en-US
Newsgroups: comp.theory,comp.lang.c,comp.lang.c++
References: <EPWdnbcVB5MW-F3_nZ2dnUU7_83NnZ2d@giganews.com>
From: Rich...@Damon-Family.org (Richard Damon)
In-Reply-To: <EPWdnbcVB5MW-F3_nZ2dnUU7_83NnZ2d@giganews.com>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Lines: 55
Message-ID: <6i0wK.31269$Qd2.9293@fx37.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, 2 Jul 2022 14:40:02 -0400
X-Received-Bytes: 2876
 by: Richard Damon - Sat, 2 Jul 2022 18:40 UTC

On 7/2/22 11:34 AM, olcott wrote:
> This much more concise version of my paper focuses on the actual
> execution of three fully operational examples.
>
> H0 correctly determines that Infinite_Loop() never halts
> H correctly determines that Infinite_Recursion() never halts
> H correctly determines that P() never halts

Except that if H(P,P) actually returns 0, then P(P) will halt, so H is
wrong.

You can't just define the wrong answer to be right. And, your dishonest
dodge that H(P,P) doesn't actually refer to P(P) says that P isn't the
program you claim, as the P is DEFINED to ask H about ITSELF with its
input, so if H(P,P) doesn't mean that, then you have defined something
wrong.

The problem is your logic doesn't actually correctly consider the
behavior of the H being called, so doesn't actually do a correct x86
emulation of its input.

>
> void P(u32 x)
>  {
>   if (H(x, x))
>     HERE: goto HERE;
>   return;
>  }
>
> int main()
>  {
>   Output("Input_Halts = ", H((u32)P, (u32)P));
>  }
>
> As shown below the above P and H have the required (halting problem)
> pathological relationship to each other:
>
>      For any program H that might determine if programs halt, a
> "pathological"
>      program P, called with some input, can pass its own source and its
> input to
>      H and then specifically do the opposite of what H predicts P will
> do. No H
>      can exist that handles this case.
> https://en.wikipedia.org/wiki/Halting_problem
>
> I really need software engineers to verify that H does correctly predict
> that its complete and correct x86 emulation of its input would never
> reach the "ret" instruction of this input.
>
> *Halting problem proofs refuted on the basis of software engineering*
> https://www.researchgate.net/publication/361701808_Halting_problem_proofs_refuted_on_the_basis_of_software_engineering
>
>

Re: Halting problem proofs refuted on the basis of software engineering [ Irrefutably Correct ]

<eI6dnTXVdv0z4lT_nZ2dnUU7_83NnZ2d@giganews.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=22148&group=comp.lang.c#22148

  copy link   Newsgroups: comp.theory sci.logic comp.lang.c comp.lang.c++
Followup: comp.theory
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!feed1.usenet.blueworldhosting.com!peer01.iad!feed-me.highwinds-media.com!news.highwinds-media.com!feeder.usenetexpress.com!tr3.iad1.usenetexpress.com!border1.nntp.dca1.giganews.com!nntp.giganews.com!buffer1.nntp.dca1.giganews.com!news.giganews.com.POSTED!not-for-mail
NNTP-Posting-Date: Sat, 09 Jul 2022 08:16:30 -0500
Date: Sat, 9 Jul 2022 08:16:29 -0500
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Thunderbird/91.11.0
Subject: Re: Halting problem proofs refuted on the basis of software engineering [ Irrefutably Correct ]
Content-Language: en-US
Newsgroups: comp.theory,sci.logic,comp.lang.c,comp.lang.c++
References: <EPWdnbcVB5MW-F3_nZ2dnUU7_83NnZ2d@giganews.com> <SYWdnQoA9L5I717_nZ2dnUU7_83NnZ2d@giganews.com> <811d7421-acdc-4586-a027-15f5faf7ee3fn@googlegroups.com> <87zghnxgjq.fsf@bsb.me.uk> <19idnQ_DrKFbTVn_nZ2dnUU7_8zNnZ2d@giganews.com> <b5370a42-896a-4abe-8db4-5e2f3368c0ebn@googlegroups.com> <yJCdnUdnU97QlFj_nZ2dnUU7_8xh4p2d@giganews.com> <cbe68e6a-ae31-4920-8bf2-e150b4b6953dn@googlegroups.com> <KeadnaibXr-ZZlj_nZ2dnUU7_83NnZ2d@giganews.com> <60aeb6e9-b6d2-4529-8f13-c56e8a03df5cn@googlegroups.com> <btKdnT3NMOfuq1r_nZ2dnUU7_8xh4p2d@giganews.com> <f044e3d5-9c8d-4d02-a28e-c3664dff9cben@googlegroups.com> <1v2dnYG44Zah1lr_nZ2dnUU7_8zNnZ2d@giganews.com> <8a399114-5a55-409d-bbb5-da6a842f38ean@googlegroups.com> <nLKdnWzS7d48FFr_nZ2dnUU7_83NnZ2d@giganews.com> <faeb1bc5-3052-40b1-8243-2ad069a1c6e6n@googlegroups.com> <A_adncjcX-yXKlr_nZ2dnUU7_8zNnZ2d@giganews.com> <031a9bed-bb0b-4c19-b346-757a0ecce943n@googlegroups.com> <ttqdnRASAbPZKVX_nZ2dnUU7_83NnZ2d@giganews.com>
From: NoO...@NoWhere.com (olcott)
Followup-To: comp.theory
In-Reply-To: <ttqdnRASAbPZKVX_nZ2dnUU7_83NnZ2d@giganews.com>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Message-ID: <eI6dnTXVdv0z4lT_nZ2dnUU7_83NnZ2d@giganews.com>
Lines: 111
X-Usenet-Provider: http://www.giganews.com
X-Trace: sv3-GriYFn27Ai9YOr+WDw5FdXimFdTTLxw9mIkRQbAtWMib3lZJvXD/giRVPibxljYKh/c153EIPXPfGOM!qNjEteGIwHdDzA/4jOd6rxQS/Qq6luck/pUgzzr3Wo2wkRfg1F5DxxklT//rdPQBzobXicNamCH+!Hw==
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: 6507
X-Received-Bytes: 6612
 by: olcott - Sat, 9 Jul 2022 13:16 UTC

On 7/8/2022 5:48 PM, olcott wrote:
> On 7/8/2022 1:09 AM, dklei...@gmail.com wrote:
>> On Thursday, July 7, 2022 at 9:48:17 PM UTC-7, olcott wrote:
>>> On 7/7/2022 11:35 PM, dklei...@gmail.com wrote:
>>>
>>>> int Strachey_P(void) {
>>>> if (T(&Strachey_P)) return 1;
>>>> else return 0; }
>>>>
>>>> int main() {
>>>> if (T(&Strachey_P)) Output("Halts");
>>>> else Output ("Does not halt");}
>>>>
>>>> Without the definition of T this is just boiler plate.
>>>
>>> Yours is incorrect:
>>
>> How? I assume C89.
>
> typedef void (*ptr)();
>
> int Strachey_P2(void) {
> if (T(&Strachey_P2)) return 1;
> else return 0; }
>
> int main()
> {
>  if (T(Strachey_P2)) OutputString("Halts\n");
>  else OutputString("Does not halt\n");
> }
>
> _Strachey_P2()
> [0000134e](01)  55         push ebp
> [0000134f](02)  8bec       mov ebp,esp
> [00001351](05)  684e130000 push 0000134e
> [00001356](05)  e893fbffff call 00000eee
> [0000135b](03)  83c404     add esp,+04
> [0000135e](02)  85c0       test eax,eax
> [00001360](02)  7409       jz 0000136b
> [00001362](05)  b801000000 mov eax,00000001
> [00001367](02)  eb04       jmp 0000136d
> [00001369](02)  eb02       jmp 0000136d
> [0000136b](02)  33c0       xor eax,eax
> [0000136d](01)  5d         pop ebp
> [0000136e](01)  c3         ret
> Size in bytes:(0033) [0000136e]
>
> _main()
> [0000137e](01)  55         push ebp
> [0000137f](02)  8bec       mov ebp,esp
> [00001381](05)  684e130000 push 0000134e
> [00001386](05)  e863fbffff call 00000eee
> [0000138b](03)  83c404     add esp,+04
> [0000138e](02)  85c0       test eax,eax
> [00001390](02)  740f       jz 000013a1
> [00001392](05)  6817050000 push 00000517
> [00001397](05)  e8c2f1ffff call 0000055e
> [0000139c](03)  83c404     add esp,+04
> [0000139f](02)  eb0d       jmp 000013ae
> [000013a1](05)  681f050000 push 0000051f
> [000013a6](05)  e8b3f1ffff call 0000055e
> [000013ab](03)  83c404     add esp,+04
> [000013ae](02)  33c0       xor eax,eax
> [000013b0](01)  5d         pop ebp
> [000013b1](01)  c3         ret
> Size in bytes:(0052) [000013b1]
>
>  machine   stack     stack     machine    assembly
>  address   address   data      code       language
>  ========  ========  ========  =========  =============
> [0000137e][001022be][00000000] 55         push ebp
> [0000137f][001022be][00000000] 8bec       mov ebp,esp
> [00001381][001022ba][0000134e] 684e130000 push 0000134e
> [00001386][001022b6][0000138b] e863fbffff call 00000eee
>
> T: Begin Simulation   Execution Trace Stored at:11236a
> Address_of_T:eee
> [0000134e][0011235a][0011235e] 55         push ebp
> [0000134f][0011235a][0011235e] 8bec       mov ebp,esp
> [00001351][00112356][0000134e] 684e130000 push 0000134e
> [00001356][00112352][0000135b] e893fbffff call 00000eee
> T: Infinitely Recursive Simulation Detected Simulation Stopped
>
> [0000138b][001022be][00000000] 83c404     add esp,+04
> [0000138e][001022be][00000000] 85c0       test eax,eax
> [00001390][001022be][00000000] 740f       jz 000013a1
> [000013a1][001022ba][0000051f] 681f050000 push 0000051f
> [000013a6][001022ba][0000051f] e8b3f1ffff call 0000055e
> Does not halt
> [000013ab][001022be][00000000] 83c404     add esp,+04
> [000013ae][001022be][00000000] 33c0       xor eax,eax
> [000013b0][001022c2][00000018] 5d         pop ebp
> [000013b1][001022c6][00000000] c3         ret
> Number of Instructions Executed(539) == 8 Pages
>

*THIS IS IRREFUTABLY CORRECT*
From a purely software engineering perspective T(Strachey_P) does
correctly predict that its complete and correct x86 emulation of its
input would never reach the "ret" instruction (final state) of this
input, therefore T(Strachey_P) correctly rejects this input as non-halting.

--
Copyright 2022 Pete Olcott

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

Re: Halting problem proofs refuted on the basis of software engineering

<zaqdnf1059gcP1D_nZ2dnUU7-K3NnZ2d@giganews.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=22176&group=comp.lang.c#22176

  copy link   Newsgroups: comp.theory comp.lang.c comp.lang.c++
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: Tue, 12 Jul 2022 11:34:09 -0500
Date: Tue, 12 Jul 2022 11:34:06 -0500 (CDT)
From: polco...@gmail.com (olcott)
References: <EPWdnbcVB5MW-F3_nZ2dnUU7_83NnZ2d@giganews.com> <6i0wK.31269$Qd2.9293@fx37.iad>
Subject: Re: Halting problem proofs refuted on the basis of software
engineering
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
Newsgroups: comp.theory,comp.lang.c,comp.lang.c++
Organization: news.giganews.com
X-Newsreader: PiaoHong.Usenet.Client.Free:2.02
Message-ID: <zaqdnf1059gcP1D_nZ2dnUU7-K3NnZ2d@giganews.com>
Lines: 12
X-Usenet-Provider: http://www.giganews.com
X-Trace: sv3-Xdp15sbQrlxxpOQ6iqRTOccrlL6C7w0rCSy4oH1cFzkk7E26WrVql86s48/uHGkEpLGCa0wrHw2Xa0x!3f9eRUnsD9Dq2pEycCITsikjA6aunPwVuvFGZy7nfpC1ffNSg8toMthwPEKTFAtK6PTjm6isK5HI!aQ==
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: 3352
 by: olcott - Tue, 12 Jul 2022 16:34 UTC

Richard Damon <Richard@Damon-Family.org> Wrote in message:r
> On 7/2/22 11:34 AM, olcott wrote:> This much more concise version of my paper focuses on the actual> execution of three fully operational examples.> > H0 correctly determines that Infinite_Loop() never halts> H correctly determines that Infinite_Recursion() never halts> H correctly determines that P() never haltsExcept that if H(P,P) actually returns 0, then P(P) will halt, so H is wrong.You can't just define the wrong answer to be right. And, your dishonest dodge that H(P,P) doesn't actually refer to P(P) says that P isn't the program you claim, as the P is DEFINED to ask H about ITSELF with its input, so if H(P,P) doesn't mean that, then you have defined something wrong.The problem is your logic doesn't actually correctly consider the behavior of the H being called, so doesn't actually do a correct x86 emulation of its input.> > void P(u32 x)> {> if (H(x, x))> HERE: goto HERE;> return;> }> > int main()> {> Output("Input_Halts = ", H((u32)P, (u32)P));> }> > As shown below the above P and H have the required (halting problem) > pathological relationship to each other:> > For any program H that might determine if programs halt, a > "pathological">
program P, called with some input, can pass its own source and its > input to> H and then specifically do the opposite of what H predicts P will > do. No H> can exist that handles this case. > https://en.wikipedia.org/wiki/Halting_problem> > I really need software engineers to verify that H does correctly predict > that its complete and correct x86 emulation of its input would never > reach the "ret" instruction of this input.> > *Halting problem proofs refuted on the basis of software engineering*> https://www.researchgate.net/publication/361701808_Halting_problem_proofs_refuted_on_the_basis_of_software_engineering > >

You are simply not bright enough to understand that every function
called (what is essentially) infinite never returns any value to
it's caller.

--

----Android NewsGroup Reader----
https://piaohong.s3-us-west-2.amazonaws.com/usenet/index.html

Re: Halting problem proofs refuted on the basis of software engineering

<takc5k$23k3j$1@dont-email.me>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=22177&group=comp.lang.c#22177

  copy link   Newsgroups: comp.lang.c comp.lang.c++
Path: i2pn2.org!i2pn.org!aioe.org!eternal-september.org!reader01.eternal-september.org!.POSTED!not-for-mail
From: Bonita.M...@gmail.com (Bonita Montero)
Newsgroups: comp.lang.c,comp.lang.c++
Subject: Re: Halting problem proofs refuted on the basis of software
engineering
Date: Tue, 12 Jul 2022 19:49:26 +0200
Organization: A noiseless patient Spider
Lines: 41
Message-ID: <takc5k$23k3j$1@dont-email.me>
References: <EPWdnbcVB5MW-F3_nZ2dnUU7_83NnZ2d@giganews.com>
<6i0wK.31269$Qd2.9293@fx37.iad>
<zaqdnf1059gcP1D_nZ2dnUU7-K3NnZ2d@giganews.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: base64
Injection-Date: Tue, 12 Jul 2022 17:48:36 -0000 (UTC)
Injection-Info: reader01.eternal-september.org; posting-host="0454da47e465dde55fb414335e372e2b";
logging-data="2216051"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/kq/cJUTWlRorn9EyqdqQtMWh9GCF1mHM="
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Thunderbird/91.11.0
Cancel-Lock: sha1:sY0bCs1EPWIWjoD9xNTvxQbznTU=
In-Reply-To: <zaqdnf1059gcP1D_nZ2dnUU7-K3NnZ2d@giganews.com>
Content-Language: de-DE
 by: Bonita Montero - Tue, 12 Jul 2022 17:49 UTC

Am 12.07.2022 um 18:34 schrieb olcott:
> Richard Damon <Richard@Damon-Family.org> Wrote in message:r
>> On 7/2/22 11:34 AM, olcott wrote:> This much more concise version of my paper focuses on the actual> execution of three fully operational examples.> > H0 correctly determines that Infinite_Loop() never halts> H correctly determines that Infinite_Recursion() never halts> H correctly determines that P() never haltsExcept that if H(P,P) actually returns 0, then P(P) will halt, so H is wrong.You can't just define the wrong answer to be right. And, your dishonest dodge that H(P,P) doesn't actually refer to P(P) says that P isn't the program you claim, as the P is DEFINED to ask H about ITSELF with its input, so if H(P,P) doesn't mean that, then you have defined something wrong.The problem is your logic doesn't actually correctly consider the behavior of the H being called, so doesn't actually do a correct x86 emulation of its input.> > void P(u32 x)> {> if (H(x, x))> HERE: goto HERE;> return;> }> > int main()> {> Output("Input_Halts = ", H((u32)P, (u32)P));> }> > As shown below the above P and H have the required (halting problem) > pathological relationship to each other:> > For any program H that might determine if programs halt, a > "pathological"> program P, called with some input, can pass its own source and its > input to> H and then specifically do the opposite of what H predicts P will > do. No H> can exist that handles this case. > https://en.wikipedia.org/wiki/Halting_problem> > I really need software engineers to verify that H does correctly predict > that its complete and correct x86 emulation of its input would never > reach the "ret" instruction of this input.> > *Halting problem proofs refuted on the basis of software engineering*> https://www.researchgate.net/publication/361701808_Halting_problem_proofs_refuted_on_the_basis_of_software_engineering > >
>
> You are simply not bright enough to understand that every function
> called (what is essentially) infinite never returns any value to
> it's caller.
Come back when you've got sth. that's really related to C or C++.

Re: Halting problem proofs refuted on the basis of software engineering

<E7nzK.43079$vd2.18835@fx39.iad>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=22184&group=comp.lang.c#22184

  copy link   Newsgroups: comp.theory comp.lang.c comp.lang.c++
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!feed1.usenet.blueworldhosting.com!peer03.iad!feed-me.highwinds-media.com!news.highwinds-media.com!fx39.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.11.0
Subject: Re: Halting problem proofs refuted on the basis of software
engineering
Content-Language: en-US
Newsgroups: comp.theory,comp.lang.c,comp.lang.c++
References: <EPWdnbcVB5MW-F3_nZ2dnUU7_83NnZ2d@giganews.com>
<6i0wK.31269$Qd2.9293@fx37.iad>
<zaqdnf1059gcP1D_nZ2dnUU7-K3NnZ2d@giganews.com>
From: Rich...@Damon-Family.org (Richard Damon)
In-Reply-To: <zaqdnf1059gcP1D_nZ2dnUU7-K3NnZ2d@giganews.com>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: base64
Lines: 49
Message-ID: <E7nzK.43079$vd2.18835@fx39.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: Tue, 12 Jul 2022 19:06:11 -0400
X-Received-Bytes: 4563
 by: Richard Damon - Tue, 12 Jul 2022 23:06 UTC

On 7/12/22 12:34 PM, olcott wrote:
> Richard Damon <Richard@Damon-Family.org> Wrote in message:r
>> On 7/2/22 11:34 AM, olcott wrote:> This much more concise version of my paper focuses on the actual> execution of three fully operational examples.> > H0 correctly determines that Infinite_Loop() never halts> H correctly determines that Infinite_Recursion() never halts> H correctly determines that P() never haltsExcept that if H(P,P) actually returns 0, then P(P) will halt, so H is wrong.You can't just define the wrong answer to be right. And, your dishonest dodge that H(P,P) doesn't actually refer to P(P) says that P isn't the program you claim, as the P is DEFINED to ask H about ITSELF with its input, so if H(P,P) doesn't mean that, then you have defined something wrong.The problem is your logic doesn't actually correctly consider the behavior of the H being called, so doesn't actually do a correct x86 emulation of its input.> > void P(u32 x)> {> if (H(x, x))> HERE: goto HERE;> return;> }> > int main()> {> Output("Input_Halts = ", H((u32)P, (u32)P));> }> > As shown below the above P and H have the required (halting problem) > pathological relationship to each other:> > For any program H that might determine if programs halt, a > "pathological"> program P, called with some input, can pass its own source and its > input to> H and then specifically do the opposite of what H predicts P will > do. No H> can exist that handles this case. > https://en.wikipedia.org/wiki/Halting_problem> > I really need software engineers to verify that H does correctly predict > that its complete and correct x86 emulation of its input would never > reach the "ret" instruction of this input.> > *Halting problem proofs refuted on the basis of software engineering*> https://www.researchgate.net/publication/361701808_Halting_problem_proofs_refuted_on_the_basis_of_software_engineering > >
>
> You are simply not bright enough to understand that every function
> called (what is essentially) infinite never returns any value to
> it's caller.
>
And you seem to think that what at first seems to be infinite recursion,
might not be because H is "smart" enough to abort its simulation, but
not smart enough to understand that the H that P/D calls will too.
Since one copy of H does this, all copies will, or H isn't a
computation/pure function.
Tht, or H is just plain incorrect about what its input does, because it
uses incorrect logic about what copies of it does (since in never
actually sees what those copies will do).

Re: Halting problem proofs refuted on the basis of software engineering (Mike fails to comprehend)

<cNqdndVCLrUNhk7_nZ2dnUU7_8zNnZ2d@giganews.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=22374&group=comp.lang.c#22374

  copy link   Newsgroups: comp.theory comp.lang.c comp.lang.c++ sci.logic
Followup: comp.theory
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!feed1.usenet.blueworldhosting.com!peer02.iad!feed-me.highwinds-media.com!news.highwinds-media.com!border1.nntp.dca1.giganews.com!nntp.giganews.com!buffer1.nntp.dca1.giganews.com!news.giganews.com.POSTED!not-for-mail
NNTP-Posting-Date: Sat, 16 Jul 2022 15:12:00 -0500
Date: Sat, 16 Jul 2022 15:12:00 -0500
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Thunderbird/91.11.0
Subject: Re: Halting problem proofs refuted on the basis of software
engineering (Mike fails to comprehend)
Content-Language: en-US
Newsgroups: comp.theory,comp.lang.c,comp.lang.c++,sci.logic
References: <EPWdnbcVB5MW-F3_nZ2dnUU7_83NnZ2d@giganews.com>
<405eb97d-b657-4090-b17d-459e64617010n@googlegroups.com>
<H_ydndfeFPdwpVP_nZ2dnUU7_83NnZ2d@giganews.com>
<706ee73d-22f4-412c-bba5-32aa77409858n@googlegroups.com>
<YKCdnbWsdrhAcFP_nZ2dnUU7_8zNnZ2d@giganews.com>
<ef5fdbbb-a19f-47f5-b2f6-bb9253000d8fn@googlegroups.com>
<A8CdnSusUaJ_g1L_nZ2dnUU7_8zNnZ2d@giganews.com>
<677b9171-b785-4c61-8d7c-1ad0e5aab634n@googlegroups.com>
<BY2dnctqJflD6U3_nZ2dnUU7_8zNnZ2d@giganews.com>
<2c68fba2-c0c4-41e9-bf67-b5c64eebfb95n@googlegroups.com>
<Z-Cdnesq2--h5kz_nZ2dnUU7_8zNnZ2d@giganews.com>
<47dc4226-b73d-42cd-81aa-7b31b554ef5an@googlegroups.com>
<QvednSpQ2vbfCEz_nZ2dnUU7_83NnZ2d@giganews.com>
<37ffd9c1-9751-4ed4-a036-0a83bb02783dn@googlegroups.com>
<gMudnZK_8_u5Qk__nZ2dnUU7-SfNnZ2d@brightview.co.uk>
<bSBAK.186899$9j2.125246@fx33.iad>
<FPednY0U5a_-jE7_nZ2dnUU7-WXNnZ2d@brightview.co.uk>
Followup-To: comp.theory
From: NoO...@NoWhere.com (olcott)
In-Reply-To: <FPednY0U5a_-jE7_nZ2dnUU7-WXNnZ2d@brightview.co.uk>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Message-ID: <cNqdndVCLrUNhk7_nZ2dnUU7_8zNnZ2d@giganews.com>
Lines: 157
X-Usenet-Provider: http://www.giganews.com
X-Trace: sv3-jccpVopy/SfL4iDK+C7PK+J3WQAM4FQy7WLBYVa6tC7xBCa5d06tT9edAsGaDyMG1vagZ9yZqHoIJdQ!ViS8F0SKE9eUOQOYjV9MqddjaqkdRcGUj5kAS5ph4xkTOV13+uk72S/ay02P+IgdBa28/Zc43Qx9!Xg==
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: 9084
X-Received-Bytes: 9175
 by: olcott - Sat, 16 Jul 2022 20:12 UTC

On 7/16/2022 2:28 PM, Mike Terry wrote:
> On 16/07/2022 17:40, Richard Damon wrote:
>> On 7/16/22 11:54 AM, Mike Terry wrote:
>>> On 16/07/2022 12:23, Paul N wrote:
>>>> On Friday, July 15, 2022 at 5:26:49 PM UTC+1, olcott wrote:
>>>>> On 7/15/2022 11:17 AM, Paul N wrote:
>>>>>> On Friday, July 15, 2022 at 3:35:47 PM UTC+1, olcott wrote:
>>>>>>> On 7/15/2022 7:34 AM, Paul N wrote:
>>>>>>>> Do you accept that if H were required to report on the behaviour
>>>>>>>> of the direct execution of P(P) then it would not be possible to
>>>>>>>> write such an H?
>>>>>>> That would require H to be a mind reader and report on something
>>>>>>> other
>>>>>>> than the actual behavior of its actual input.
>>>>>>
>>>>>> There's no mind involved. If P is a computer program then P(P) is
>>>>>> perfectly well defined. Either H can work out what it will do, or
>>>>>> it can't.
>>>>
>>>> You haven't said in what way a "mind" is involved in the direct
>>>> execution of P(P).
>>>>
>>>>> It is like you ask your wife to go to the store and buy "a dozen eggs"
>>>>> fully expecting her to understand that what you mean by "a dozen eggs"
>>>>> is {a half gallon of grape juice}. When she gets back with the eggs
>>>>> you
>>>>> ask her where is the grape juice?
>>>>
>>>> No, you are the one who is twisting the meaning of words. When I
>>>> talk about the actual behaviour of P(P) I mean what actually happens
>>>> when P(P) is executed. That's what the words "actual" and
>>>> "behaviour" mean.
>>>>
>>>> You are using the words "actual behavior" to mean something else
>>>> which is clearly different. It seems to relate to some sort of
>>>> simulator, which you simultaneously claim to be correct while
>>>> acknowledging it produces different results from executing P(P)
>>>> directly.
>>>>
>>>> Can you tell us if that "actual behavior" does actually happen in
>>>> any circumstances, or is it (despite the name) just a theoretical
>>>> thing?
>>>>
>>>>> A halt decider must compute the mapping from its inputs to an
>>>>> accept or
>>>>> reject state on the basis of the actual behavior that is actually
>>>>> specified by these inputs.
>>>>
>>>> Yes, where the actual behaviour is the behaviour that actually happens.
>>>>
>>>>> It is common knowledge that a correct simulation of a program is a
>>>>> correct measure of the behavior of this program.
>>>>
>>>> Yes, if the simulation is correct. You've insisted numerous times
>>>> that your own simulator is incorrect.
>>>
>>> PO's simulation is correct at the individual instruction level.  His
>>> H steps the simulation forward a number of steps, and each of those
>>> steps exactly matches the P(P) calculation steps.  At some point
>>> before the final P RET instruction, his H decides to stop stepping
>>> (for whatever reason), so H's simulation is *incomplete*.
>>>
>>> That is the only sense in which P(P) and "the simulated input to
>>> H(P,P)" differ - H simply stops simulating before P(P) terminates.
>>
>> But "incomplete" is incorrect if your logic assumes that the
>> simulation not reaching the final state PROVES non-halting.
>
> I don't believe PO thinks that, irrespective of how badly he explains
> things.  I think he believes that the simulation would never halt
> *because his never-halting-abort test matched*, NOT simply as a
> consequence of aborting.  E.g. he seems to understand that a simulator
> that steps 10 steps then stops regardless, does not imply that the
> simulated computation does not halt.
>
> Although... he doesn't properly understand what halting means, and gets
> hopelessly confused by various wordings, so discussing any of this with
> him is quite futile.  Seriously - just don't bother!!
>
>> "Simulation" as a word by itself implies complete and correct, and
>> "Correct Simulation" implies Complete in normal English usage.
>
> That's an opinion, and it's one way to go.  To me "simulating" is an
> /activity/ that H performs - it means calcultating succesive steps of a
> given computation.  (Without implied /completeness/.)
>>
>> Yes, to be very precise we could everywhere say complete and correct
>> simulation, but that gets wordy.
>
> No need - everywhere in these threads where "H simulates..." is used,
> the meaning is nearly always my interpretation, not yours.  I don't
> agree yours is the default/correct interpretation - at least it's not
> the useful one.  In the event that you want to refer to a complete
> simulation, you can just say "full simulation" or "complete simulation",
> but that IMO hardly ever arises.  (Or we could make the most common
> scenario more wordy, by always emphasising "partial simulation".)
> Anyway, this seems to be a non-issue...
>
>>
>> The key point is that H stops its simulating, AND THEN PRESUMES that
>> this simulation, if continued correctly, would never halt.
>
> Yes, all the regulars here understand this mistake, if not it's origin.
> BUT THERE IS NO POINT TRYING TO EXPLAIN THE PROBLEM TO PO - HE IS
> INTELLECTUALLY INCAPABLE OF FOLLOWING ABSTRACT REASONING OR
> UNDERSTANDING THE REQUIRED CONCEPTS.  Surely you must have come to this
> conclusion after all this time?
>

A computation is said to terminate normally when it completes all of its
steps by reaching its last instruction. It is shown below that P
essentially calls H in infinite recursion and is rejected by H as
non-halting on that basis.

*Mike doesn't seem to comprehend this*
*Mike doesn't seem to comprehend this*
*Mike doesn't seem to comprehend this*
*Mike doesn't seem to comprehend this*

typedef void (*ptr)();
int H(ptr p, ptr i); // simulating halt decider

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

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

When simulating halt decider H(P,P) simulates its input it can see that:
(1) Function H() is called from P().
(2) With the same arguments to H().
(3) With no instructions in P preceding its invocation of H(P,P) that
could escape repeated simulations.

The above shows that the simulated P cannot possibly (reachs it “return”
instruction and) terminate normally. H(P,P) simulates its input then P
calls H(P,P) to simulate itself again. When H sees that this otherwise
infinitely nested simulation would never end it aborts its simulation of
P and rejects P as non-halting.

Halting problem proofs refuted on the basis of software engineering

https://www.researchgate.net/publication/361701808_Halting_problem_proofs_refuted_on_the_basis_of_software_engineering

--
Copyright 2022 Pete Olcott

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

Re: Halting problem proofs refuted on the basis of software engineering

<bPGdnaVT0MEx-U7_nZ2dnUU7_81j4p2d@giganews.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=22382&group=comp.lang.c#22382

  copy link   Newsgroups: comp.lang.c comp.lang.c++
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, 16 Jul 2022 20:23:56 -0500
Date: Sat, 16 Jul 2022 20:23:56 -0500
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Thunderbird/91.11.0
Subject: Re: Halting problem proofs refuted on the basis of software
engineering
Content-Language: en-US
Newsgroups: comp.lang.c,comp.lang.c++
References: <EPWdnbcVB5MW-F3_nZ2dnUU7_83NnZ2d@giganews.com>
<405eb97d-b657-4090-b17d-459e64617010n@googlegroups.com>
<H_ydndfeFPdwpVP_nZ2dnUU7_83NnZ2d@giganews.com>
<706ee73d-22f4-412c-bba5-32aa77409858n@googlegroups.com>
<YKCdnbWsdrhAcFP_nZ2dnUU7_8zNnZ2d@giganews.com>
<ef5fdbbb-a19f-47f5-b2f6-bb9253000d8fn@googlegroups.com>
<A8CdnSusUaJ_g1L_nZ2dnUU7_8zNnZ2d@giganews.com>
<677b9171-b785-4c61-8d7c-1ad0e5aab634n@googlegroups.com>
<BY2dnctqJflD6U3_nZ2dnUU7_8zNnZ2d@giganews.com>
<2c68fba2-c0c4-41e9-bf67-b5c64eebfb95n@googlegroups.com>
<Z-Cdnesq2--h5kz_nZ2dnUU7_8zNnZ2d@giganews.com>
<47dc4226-b73d-42cd-81aa-7b31b554ef5an@googlegroups.com>
<QvednSpQ2vbfCEz_nZ2dnUU7_83NnZ2d@giganews.com>
<37ffd9c1-9751-4ed4-a036-0a83bb02783dn@googlegroups.com>
<gMudnZK_8_u5Qk__nZ2dnUU7-SfNnZ2d@brightview.co.uk>
<VOidnTs2WMbOyE7_nZ2dnUU7_83NnZ2d@giganews.com>
<xSIAK.56979$sZ1.52752@fx07.iad>
From: NoO...@NoWhere.com (olcott)
In-Reply-To: <xSIAK.56979$sZ1.52752@fx07.iad>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Message-ID: <bPGdnaVT0MEx-U7_nZ2dnUU7_81j4p2d@giganews.com>
Lines: 84
X-Usenet-Provider: http://www.giganews.com
X-Trace: sv3-Dl0Yt3xB/0tnjN6QV9QNHlY/ZrY/2mxkDB+R2x3+5j9JYY31cS0EPW5mey+0YuZkEDFes3gLO6vZpz7!uNmWYqN7ibxzawFyGOg7xPjof6X+yAjV5CBWSEQKnCO457LiNC7P+uVHuyTzMee0HN+VkwALJ9al!7g==
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: 5666
 by: olcott - Sun, 17 Jul 2022 01:23 UTC

On 7/16/2022 7:38 PM, Richard Damon wrote:
> On 7/16/22 8:18 PM, olcott wrote:
>> On 7/16/2022 10:54 AM, Mike Terry wrote:
>>> On 16/07/2022 12:23, Paul N wrote:
>>>> On Friday, July 15, 2022 at 5:26:49 PM UTC+1, olcott wrote:
>>>>> On 7/15/2022 11:17 AM, Paul N wrote:
>>>>>> On Friday, July 15, 2022 at 3:35:47 PM UTC+1, olcott wrote:
>>>>>>> On 7/15/2022 7:34 AM, Paul N wrote:
>>>>>>>> Do you accept that if H were required to report on the behaviour
>>>>>>>> of the direct execution of P(P) then it would not be possible to
>>>>>>>> write such an H?
>>>>>>> That would require H to be a mind reader and report on something
>>>>>>> other
>>>>>>> than the actual behavior of its actual input.
>>>>>>
>>>>>> There's no mind involved. If P is a computer program then P(P) is
>>>>>> perfectly well defined. Either H can work out what it will do, or
>>>>>> it can't.
>>>>
>>>> You haven't said in what way a "mind" is involved in the direct
>>>> execution of P(P).
>>>>
>>>>> It is like you ask your wife to go to the store and buy "a dozen eggs"
>>>>> fully expecting her to understand that what you mean by "a dozen eggs"
>>>>> is {a half gallon of grape juice}. When she gets back with the eggs
>>>>> you
>>>>> ask her where is the grape juice?
>>>>
>>>> No, you are the one who is twisting the meaning of words. When I
>>>> talk about the actual behaviour of P(P) I mean what actually happens
>>>> when P(P) is executed. That's what the words "actual" and
>>>> "behaviour" mean.
>>>>
>>>> You are using the words "actual behavior" to mean something else
>>>> which is clearly different. It seems to relate to some sort of
>>>> simulator, which you simultaneously claim to be correct while
>>>> acknowledging it produces different results from executing P(P)
>>>> directly.
>>>>
>>>> Can you tell us if that "actual behavior" does actually happen in
>>>> any circumstances, or is it (despite the name) just a theoretical
>>>> thing?
>>>>
>>>>> A halt decider must compute the mapping from its inputs to an
>>>>> accept or
>>>>> reject state on the basis of the actual behavior that is actually
>>>>> specified by these inputs.
>>>>
>>>> Yes, where the actual behaviour is the behaviour that actually happens.
>>>>
>>>>> It is common knowledge that a correct simulation of a program is a
>>>>> correct measure of the behavior of this program.
>>>>
>>>> Yes, if the simulation is correct. You've insisted numerous times
>>>> that your own simulator is incorrect.
>>>
>>> PO's simulation is correct at the individual instruction level.  His
>>> H steps the simulation forward a number of steps, and each of those
>>> steps exactly matches the P(P) calculation steps.  At some point
>>> before the final P RET instruction, his H decides to stop stepping
>>> (for whatever reason), so H's simulation is *incomplete*.
>>>
>>
>> This review was very helpful thanks.
>>
>>> That is the only sense in which P(P) and "the simulated input to
>>> H(P,P)" differ - H simply stops simulating before P(P) terminates.
>>
>> *If you carefully examine this you will see that the simulated P cannot*
>> *possibly ever terminate normally by reaching its "return" instruction*
>
>
> Which just doesn't matter as Halting is defined based on the actual
> machine and not a simulation.
>

Then the whole idea of a UTM would be totally bogus.

--
Copyright 2022 Pete Olcott

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

Re: Halting problem proofs refuted on the basis of software engineering

<DUJAK.483226$J0r9.152764@fx11.iad>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=22383&group=comp.lang.c#22383

  copy link   Newsgroups: comp.lang.c comp.lang.c++
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!feed1.usenet.blueworldhosting.com!peer01.iad!feed-me.highwinds-media.com!news.highwinds-media.com!fx11.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.11.0
Subject: Re: Halting problem proofs refuted on the basis of software
engineering
Content-Language: en-US
Newsgroups: comp.lang.c,comp.lang.c++
References: <EPWdnbcVB5MW-F3_nZ2dnUU7_83NnZ2d@giganews.com>
<405eb97d-b657-4090-b17d-459e64617010n@googlegroups.com>
<H_ydndfeFPdwpVP_nZ2dnUU7_83NnZ2d@giganews.com>
<706ee73d-22f4-412c-bba5-32aa77409858n@googlegroups.com>
<YKCdnbWsdrhAcFP_nZ2dnUU7_8zNnZ2d@giganews.com>
<ef5fdbbb-a19f-47f5-b2f6-bb9253000d8fn@googlegroups.com>
<A8CdnSusUaJ_g1L_nZ2dnUU7_8zNnZ2d@giganews.com>
<677b9171-b785-4c61-8d7c-1ad0e5aab634n@googlegroups.com>
<BY2dnctqJflD6U3_nZ2dnUU7_8zNnZ2d@giganews.com>
<2c68fba2-c0c4-41e9-bf67-b5c64eebfb95n@googlegroups.com>
<Z-Cdnesq2--h5kz_nZ2dnUU7_8zNnZ2d@giganews.com>
<47dc4226-b73d-42cd-81aa-7b31b554ef5an@googlegroups.com>
<QvednSpQ2vbfCEz_nZ2dnUU7_83NnZ2d@giganews.com>
<37ffd9c1-9751-4ed4-a036-0a83bb02783dn@googlegroups.com>
<gMudnZK_8_u5Qk__nZ2dnUU7-SfNnZ2d@brightview.co.uk>
<VOidnTs2WMbOyE7_nZ2dnUU7_83NnZ2d@giganews.com>
<xSIAK.56979$sZ1.52752@fx07.iad>
<bPGdnapT0ME5_k7_nZ2dnUU7_81j4p2d@giganews.com>
From: Rich...@Damon-Family.org (Richard Damon)
In-Reply-To: <bPGdnapT0ME5_k7_nZ2dnUU7_81j4p2d@giganews.com>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Lines: 109
Message-ID: <DUJAK.483226$J0r9.152764@fx11.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, 16 Jul 2022 21:49:23 -0400
X-Received-Bytes: 6808
 by: Richard Damon - Sun, 17 Jul 2022 01:49 UTC

On 7/16/22 9:19 PM, olcott wrote:
> On 7/16/2022 7:38 PM, Richard Damon wrote:
>> On 7/16/22 8:18 PM, olcott wrote:
>>> On 7/16/2022 10:54 AM, Mike Terry wrote:
>>>> On 16/07/2022 12:23, Paul N wrote:
>>>>> On Friday, July 15, 2022 at 5:26:49 PM UTC+1, olcott wrote:
>>>>>> On 7/15/2022 11:17 AM, Paul N wrote:
>>>>>>> On Friday, July 15, 2022 at 3:35:47 PM UTC+1, olcott wrote:
>>>>>>>> On 7/15/2022 7:34 AM, Paul N wrote:
>>>>>>>>> Do you accept that if H were required to report on the
>>>>>>>>> behaviour of the direct execution of P(P) then it would not be
>>>>>>>>> possible to write such an H?
>>>>>>>> That would require H to be a mind reader and report on something
>>>>>>>> other
>>>>>>>> than the actual behavior of its actual input.
>>>>>>>
>>>>>>> There's no mind involved. If P is a computer program then P(P) is
>>>>>>> perfectly well defined. Either H can work out what it will do, or
>>>>>>> it can't.
>>>>>
>>>>> You haven't said in what way a "mind" is involved in the direct
>>>>> execution of P(P).
>>>>>
>>>>>> It is like you ask your wife to go to the store and buy "a dozen
>>>>>> eggs"
>>>>>> fully expecting her to understand that what you mean by "a dozen
>>>>>> eggs"
>>>>>> is {a half gallon of grape juice}. When she gets back with the
>>>>>> eggs you
>>>>>> ask her where is the grape juice?
>>>>>
>>>>> No, you are the one who is twisting the meaning of words. When I
>>>>> talk about the actual behaviour of P(P) I mean what actually
>>>>> happens when P(P) is executed. That's what the words "actual" and
>>>>> "behaviour" mean.
>>>>>
>>>>> You are using the words "actual behavior" to mean something else
>>>>> which is clearly different. It seems to relate to some sort of
>>>>> simulator, which you simultaneously claim to be correct while
>>>>> acknowledging it produces different results from executing P(P)
>>>>> directly.
>>>>>
>>>>> Can you tell us if that "actual behavior" does actually happen in
>>>>> any circumstances, or is it (despite the name) just a theoretical
>>>>> thing?
>>>>>
>>>>>> A halt decider must compute the mapping from its inputs to an
>>>>>> accept or
>>>>>> reject state on the basis of the actual behavior that is actually
>>>>>> specified by these inputs.
>>>>>
>>>>> Yes, where the actual behaviour is the behaviour that actually
>>>>> happens.
>>>>>
>>>>>> It is common knowledge that a correct simulation of a program is a
>>>>>> correct measure of the behavior of this program.
>>>>>
>>>>> Yes, if the simulation is correct. You've insisted numerous times
>>>>> that your own simulator is incorrect.
>>>>
>>>> PO's simulation is correct at the individual instruction level.  His
>>>> H steps the simulation forward a number of steps, and each of those
>>>> steps exactly matches the P(P) calculation steps.  At some point
>>>> before the final P RET instruction, his H decides to stop stepping
>>>> (for whatever reason), so H's simulation is *incomplete*.
>>>>
>>>
>>> This review was very helpful thanks.
>>>
>>>> That is the only sense in which P(P) and "the simulated input to
>>>> H(P,P)" differ - H simply stops simulating before P(P) terminates.
>>>
>>> *If you carefully examine this you will see that the simulated P cannot*
>>> *possibly ever terminate normally by reaching its "return" instruction*
>>
>>
>> Which just doesn't matter as Halting is defined based on the actual
>> machine and not a simulation.
>>
> Then the whole idea of a UTM would be totally bogus.
>

Why? Just because Halting is defined by the actual machine, why does
that make a UTM bogus?

Note, since a UTM, BY DEFINITION, generates the equivalent output as the
machine it is simuating, you can use valid logic between them, so if
UTM(M,x) Halts, then you can use the definition of a UTM to say that
this means that M(x) will halt too.

That doesn't change the fact that Halting is DEFINED by the machine, it
just says you don't base things on what the UTM said, you base it on
what the UTM proves the machine will say.

Big Note, that equivalence ONLY holds for something that IS a UTM, and
not something based on a UTM that might chose to stop it processing,
then you need to find logic rules that deal with that case.

This is why halting isn't based on the results of the simulaiton by the
Halting decider, since BY DEFINITION, a halting decider must answer in
finite time, a simulation by a Halt Decider can NEVER, by itself, prove
non-halting. It might provide evidence based on valid rules to let you
prove non-halting, but that deduction will be able to be tested by
running the actual machine (or simulation by an actual UTM which by
definition gives the same answer).

There is no wouldn't halt unless the halt decider aborted, as since the
halt decider WILL abort in that case, there never was the case that the
halt decider didn't abort, since that isn't the machine we are looking at.

Re: Halting problem proofs refuted on the basis of software engineering

<fr-dncePJ4ml8k7_nZ2dnUU7_81j4p2d@giganews.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=22384&group=comp.lang.c#22384

  copy link   Newsgroups: comp.lang.c comp.lang.c++
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!feed1.usenet.blueworldhosting.com!peer03.iad!feed-me.highwinds-media.com!news.highwinds-media.com!border1.nntp.dca1.giganews.com!nntp.giganews.com!buffer1.nntp.dca1.giganews.com!news.giganews.com.POSTED!not-for-mail
NNTP-Posting-Date: Sat, 16 Jul 2022 21:08:56 -0500
Date: Sat, 16 Jul 2022 21:08:55 -0500
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Thunderbird/91.11.0
Subject: Re: Halting problem proofs refuted on the basis of software
engineering
Content-Language: en-US
Newsgroups: comp.lang.c,comp.lang.c++
References: <EPWdnbcVB5MW-F3_nZ2dnUU7_83NnZ2d@giganews.com>
<405eb97d-b657-4090-b17d-459e64617010n@googlegroups.com>
<H_ydndfeFPdwpVP_nZ2dnUU7_83NnZ2d@giganews.com>
<706ee73d-22f4-412c-bba5-32aa77409858n@googlegroups.com>
<YKCdnbWsdrhAcFP_nZ2dnUU7_8zNnZ2d@giganews.com>
<ef5fdbbb-a19f-47f5-b2f6-bb9253000d8fn@googlegroups.com>
<A8CdnSusUaJ_g1L_nZ2dnUU7_8zNnZ2d@giganews.com>
<677b9171-b785-4c61-8d7c-1ad0e5aab634n@googlegroups.com>
<BY2dnctqJflD6U3_nZ2dnUU7_8zNnZ2d@giganews.com>
<2c68fba2-c0c4-41e9-bf67-b5c64eebfb95n@googlegroups.com>
<Z-Cdnesq2--h5kz_nZ2dnUU7_8zNnZ2d@giganews.com>
<47dc4226-b73d-42cd-81aa-7b31b554ef5an@googlegroups.com>
<QvednSpQ2vbfCEz_nZ2dnUU7_83NnZ2d@giganews.com>
<37ffd9c1-9751-4ed4-a036-0a83bb02783dn@googlegroups.com>
<gMudnZK_8_u5Qk__nZ2dnUU7-SfNnZ2d@brightview.co.uk>
<VOidnTs2WMbOyE7_nZ2dnUU7_83NnZ2d@giganews.com>
<xSIAK.56979$sZ1.52752@fx07.iad>
<bPGdnapT0ME5_k7_nZ2dnUU7_81j4p2d@giganews.com>
<DUJAK.483226$J0r9.152764@fx11.iad>
From: NoO...@NoWhere.com (olcott)
In-Reply-To: <DUJAK.483226$J0r9.152764@fx11.iad>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Message-ID: <fr-dncePJ4ml8k7_nZ2dnUU7_81j4p2d@giganews.com>
Lines: 97
X-Usenet-Provider: http://www.giganews.com
X-Trace: sv3-8TAwBRxKgT4j+GKpdXFLOp7P5/vs+uuAEoeNwlUjr5Qw4BY5vjITuhYIdrxQ+h1EV6w+OP7NLJ68x0E!2Uk+Zp9RvOrAZ3hzMce78lxBk8MZ4Lm/AWTJAspbeyaK0v80Bs8qPcvgJiBqi8GdHHNfMAl4C2La!Ew==
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: 6292
X-Received-Bytes: 6383
 by: olcott - Sun, 17 Jul 2022 02:08 UTC

On 7/16/2022 8:49 PM, Richard Damon wrote:
> On 7/16/22 9:19 PM, olcott wrote:
>> On 7/16/2022 7:38 PM, Richard Damon wrote:
>>> On 7/16/22 8:18 PM, olcott wrote:
>>>> On 7/16/2022 10:54 AM, Mike Terry wrote:
>>>>> On 16/07/2022 12:23, Paul N wrote:
>>>>>> On Friday, July 15, 2022 at 5:26:49 PM UTC+1, olcott wrote:
>>>>>>> On 7/15/2022 11:17 AM, Paul N wrote:
>>>>>>>> On Friday, July 15, 2022 at 3:35:47 PM UTC+1, olcott wrote:
>>>>>>>>> On 7/15/2022 7:34 AM, Paul N wrote:
>>>>>>>>>> Do you accept that if H were required to report on the
>>>>>>>>>> behaviour of the direct execution of P(P) then it would not be
>>>>>>>>>> possible to write such an H?
>>>>>>>>> That would require H to be a mind reader and report on
>>>>>>>>> something other
>>>>>>>>> than the actual behavior of its actual input.
>>>>>>>>
>>>>>>>> There's no mind involved. If P is a computer program then P(P)
>>>>>>>> is perfectly well defined. Either H can work out what it will
>>>>>>>> do, or it can't.
>>>>>>
>>>>>> You haven't said in what way a "mind" is involved in the direct
>>>>>> execution of P(P).
>>>>>>
>>>>>>> It is like you ask your wife to go to the store and buy "a dozen
>>>>>>> eggs"
>>>>>>> fully expecting her to understand that what you mean by "a dozen
>>>>>>> eggs"
>>>>>>> is {a half gallon of grape juice}. When she gets back with the
>>>>>>> eggs you
>>>>>>> ask her where is the grape juice?
>>>>>>
>>>>>> No, you are the one who is twisting the meaning of words. When I
>>>>>> talk about the actual behaviour of P(P) I mean what actually
>>>>>> happens when P(P) is executed. That's what the words "actual" and
>>>>>> "behaviour" mean.
>>>>>>
>>>>>> You are using the words "actual behavior" to mean something else
>>>>>> which is clearly different. It seems to relate to some sort of
>>>>>> simulator, which you simultaneously claim to be correct while
>>>>>> acknowledging it produces different results from executing P(P)
>>>>>> directly.
>>>>>>
>>>>>> Can you tell us if that "actual behavior" does actually happen in
>>>>>> any circumstances, or is it (despite the name) just a theoretical
>>>>>> thing?
>>>>>>
>>>>>>> A halt decider must compute the mapping from its inputs to an
>>>>>>> accept or
>>>>>>> reject state on the basis of the actual behavior that is actually
>>>>>>> specified by these inputs.
>>>>>>
>>>>>> Yes, where the actual behaviour is the behaviour that actually
>>>>>> happens.
>>>>>>
>>>>>>> It is common knowledge that a correct simulation of a program is a
>>>>>>> correct measure of the behavior of this program.
>>>>>>
>>>>>> Yes, if the simulation is correct. You've insisted numerous times
>>>>>> that your own simulator is incorrect.
>>>>>
>>>>> PO's simulation is correct at the individual instruction level.
>>>>> His H steps the simulation forward a number of steps, and each of
>>>>> those steps exactly matches the P(P) calculation steps.  At some
>>>>> point before the final P RET instruction, his H decides to stop
>>>>> stepping (for whatever reason), so H's simulation is *incomplete*.
>>>>>
>>>>
>>>> This review was very helpful thanks.
>>>>
>>>>> That is the only sense in which P(P) and "the simulated input to
>>>>> H(P,P)" differ - H simply stops simulating before P(P) terminates.
>>>>
>>>> *If you carefully examine this you will see that the simulated P
>>>> cannot*
>>>> *possibly ever terminate normally by reaching its "return" instruction*
>>>
>>>
>>> Which just doesn't matter as Halting is defined based on the actual
>>> machine and not a simulation.
>>>
>> Then the whole idea of a UTM would be totally bogus.
>>
>
> Why? Just because Halting is defined by the actual machine, why does
> that make a UTM bogus?
>
If the correct simulation of a machine description does not specify the
actual underlying computation then the concept of a UTM fails to remain
coherent.

--
Copyright 2022 Pete Olcott

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

Re: Halting problem proofs refuted on the basis of software engineering

<CiKAK.480510$70j.170547@fx16.iad>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=22385&group=comp.lang.c#22385

  copy link   Newsgroups: comp.lang.c comp.lang.c++
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!feed1.usenet.blueworldhosting.com!peer01.iad!feed-me.highwinds-media.com!news.highwinds-media.com!fx16.iad.POSTED!not-for-mail
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:91.0)
Gecko/20100101 Thunderbird/91.11.0
Subject: Re: Halting problem proofs refuted on the basis of software
engineering
Content-Language: en-US
Newsgroups: comp.lang.c,comp.lang.c++
References: <EPWdnbcVB5MW-F3_nZ2dnUU7_83NnZ2d@giganews.com>
<H_ydndfeFPdwpVP_nZ2dnUU7_83NnZ2d@giganews.com>
<706ee73d-22f4-412c-bba5-32aa77409858n@googlegroups.com>
<YKCdnbWsdrhAcFP_nZ2dnUU7_8zNnZ2d@giganews.com>
<ef5fdbbb-a19f-47f5-b2f6-bb9253000d8fn@googlegroups.com>
<A8CdnSusUaJ_g1L_nZ2dnUU7_8zNnZ2d@giganews.com>
<677b9171-b785-4c61-8d7c-1ad0e5aab634n@googlegroups.com>
<BY2dnctqJflD6U3_nZ2dnUU7_8zNnZ2d@giganews.com>
<2c68fba2-c0c4-41e9-bf67-b5c64eebfb95n@googlegroups.com>
<Z-Cdnesq2--h5kz_nZ2dnUU7_8zNnZ2d@giganews.com>
<47dc4226-b73d-42cd-81aa-7b31b554ef5an@googlegroups.com>
<QvednSpQ2vbfCEz_nZ2dnUU7_83NnZ2d@giganews.com>
<37ffd9c1-9751-4ed4-a036-0a83bb02783dn@googlegroups.com>
<gMudnZK_8_u5Qk__nZ2dnUU7-SfNnZ2d@brightview.co.uk>
<VOidnTs2WMbOyE7_nZ2dnUU7_83NnZ2d@giganews.com>
<xSIAK.56979$sZ1.52752@fx07.iad>
<bPGdnapT0ME5_k7_nZ2dnUU7_81j4p2d@giganews.com>
<DUJAK.483226$J0r9.152764@fx11.iad>
<fr-dncePJ4ml8k7_nZ2dnUU7_81j4p2d@giganews.com>
From: Rich...@Damon-Family.org (Richard Damon)
In-Reply-To: <fr-dncePJ4ml8k7_nZ2dnUU7_81j4p2d@giganews.com>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Lines: 116
Message-ID: <CiKAK.480510$70j.170547@fx16.iad>
X-Complaints-To: abuse@easynews.com
Organization: Forte - www.forteinc.com
X-Complaints-Info: Please be sure to forward a copy of ALL headers otherwise we will be unable to process your complaint properly.
Date: Sat, 16 Jul 2022 22:17:04 -0400
X-Received-Bytes: 6996
 by: Richard Damon - Sun, 17 Jul 2022 02:17 UTC

On 7/16/22 10:08 PM, olcott wrote:
> On 7/16/2022 8:49 PM, Richard Damon wrote:
>> On 7/16/22 9:19 PM, olcott wrote:
>>> On 7/16/2022 7:38 PM, Richard Damon wrote:
>>>> On 7/16/22 8:18 PM, olcott wrote:
>>>>> On 7/16/2022 10:54 AM, Mike Terry wrote:
>>>>>> On 16/07/2022 12:23, Paul N wrote:
>>>>>>> On Friday, July 15, 2022 at 5:26:49 PM UTC+1, olcott wrote:
>>>>>>>> On 7/15/2022 11:17 AM, Paul N wrote:
>>>>>>>>> On Friday, July 15, 2022 at 3:35:47 PM UTC+1, olcott wrote:
>>>>>>>>>> On 7/15/2022 7:34 AM, Paul N wrote:
>>>>>>>>>>> Do you accept that if H were required to report on the
>>>>>>>>>>> behaviour of the direct execution of P(P) then it would not
>>>>>>>>>>> be possible to write such an H?
>>>>>>>>>> That would require H to be a mind reader and report on
>>>>>>>>>> something other
>>>>>>>>>> than the actual behavior of its actual input.
>>>>>>>>>
>>>>>>>>> There's no mind involved. If P is a computer program then P(P)
>>>>>>>>> is perfectly well defined. Either H can work out what it will
>>>>>>>>> do, or it can't.
>>>>>>>
>>>>>>> You haven't said in what way a "mind" is involved in the direct
>>>>>>> execution of P(P).
>>>>>>>
>>>>>>>> It is like you ask your wife to go to the store and buy "a dozen
>>>>>>>> eggs"
>>>>>>>> fully expecting her to understand that what you mean by "a dozen
>>>>>>>> eggs"
>>>>>>>> is {a half gallon of grape juice}. When she gets back with the
>>>>>>>> eggs you
>>>>>>>> ask her where is the grape juice?
>>>>>>>
>>>>>>> No, you are the one who is twisting the meaning of words. When I
>>>>>>> talk about the actual behaviour of P(P) I mean what actually
>>>>>>> happens when P(P) is executed. That's what the words "actual" and
>>>>>>> "behaviour" mean.
>>>>>>>
>>>>>>> You are using the words "actual behavior" to mean something else
>>>>>>> which is clearly different. It seems to relate to some sort of
>>>>>>> simulator, which you simultaneously claim to be correct while
>>>>>>> acknowledging it produces different results from executing P(P)
>>>>>>> directly.
>>>>>>>
>>>>>>> Can you tell us if that "actual behavior" does actually happen in
>>>>>>> any circumstances, or is it (despite the name) just a theoretical
>>>>>>> thing?
>>>>>>>
>>>>>>>> A halt decider must compute the mapping from its inputs to an
>>>>>>>> accept or
>>>>>>>> reject state on the basis of the actual behavior that is actually
>>>>>>>> specified by these inputs.
>>>>>>>
>>>>>>> Yes, where the actual behaviour is the behaviour that actually
>>>>>>> happens.
>>>>>>>
>>>>>>>> It is common knowledge that a correct simulation of a program is a
>>>>>>>> correct measure of the behavior of this program.
>>>>>>>
>>>>>>> Yes, if the simulation is correct. You've insisted numerous times
>>>>>>> that your own simulator is incorrect.
>>>>>>
>>>>>> PO's simulation is correct at the individual instruction level.
>>>>>> His H steps the simulation forward a number of steps, and each of
>>>>>> those steps exactly matches the P(P) calculation steps.  At some
>>>>>> point before the final P RET instruction, his H decides to stop
>>>>>> stepping (for whatever reason), so H's simulation is *incomplete*.
>>>>>>
>>>>>
>>>>> This review was very helpful thanks.
>>>>>
>>>>>> That is the only sense in which P(P) and "the simulated input to
>>>>>> H(P,P)" differ - H simply stops simulating before P(P) terminates.
>>>>>
>>>>> *If you carefully examine this you will see that the simulated P
>>>>> cannot*
>>>>> *possibly ever terminate normally by reaching its "return"
>>>>> instruction*
>>>>
>>>>
>>>> Which just doesn't matter as Halting is defined based on the actual
>>>> machine and not a simulation.
>>>>
>>> Then the whole idea of a UTM would be totally bogus.
>>>
>>
>> Why? Just because Halting is defined by the actual machine, why does
>> that make a UTM bogus?
>>
> If the correct simulation of a machine description does not specify the
> actual underlying computation then the concept of a UTM fails to remain
> coherent.
>

The issue is what you have been running into, defining what "correct
simulation" means. The definition of Halting says it is the behavior of
the actual machine that matters, and "correct simulation" means that
simulation matched that behavior, so can be also used.

This is your fundamental problem, you keep on trying to claim that the
input to H(P,P) doesn't actually match the machine it is supposed to be
the description of, all that means is that your simulation isn't correct.

By making the DEFINITION the actual machine, games like that become
impossible, as the machine IS the machine.

Remeber: By design P(P) WILL Halt if H(P,P) rejects, therefore since the
definition of a correct halt decider is that H is will accept halting
inputs, H gave the wrong answer and is not a correct halt decider.

That is just simple DEFINITIONS.

We don't need to worry if your rules that you try to use to prove that H
is corrct are right or not, the defined test is run the machine.

Since P(P) halts when H(P,P) returns 0, H was just wrong.

Re: Halting problem proofs refuted on the basis of software engineering

<eOmdnYVn7PWr607_nZ2dnUU7_8zNnZ2d@giganews.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=22388&group=comp.lang.c#22388

  copy link   Newsgroups: comp.lang.c comp.lang.c++
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!feed1.usenet.blueworldhosting.com!peer02.iad!feed-me.highwinds-media.com!news.highwinds-media.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, 16 Jul 2022 21:38:46 -0500
Date: Sat, 16 Jul 2022 21:38:45 -0500
MIME-Version: 1.0
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Thunderbird/91.11.0
Subject: Re: Halting problem proofs refuted on the basis of software
engineering
Content-Language: en-US
Newsgroups: comp.lang.c,comp.lang.c++
References: <EPWdnbcVB5MW-F3_nZ2dnUU7_83NnZ2d@giganews.com>
<H_ydndfeFPdwpVP_nZ2dnUU7_83NnZ2d@giganews.com>
<706ee73d-22f4-412c-bba5-32aa77409858n@googlegroups.com>
<YKCdnbWsdrhAcFP_nZ2dnUU7_8zNnZ2d@giganews.com>
<ef5fdbbb-a19f-47f5-b2f6-bb9253000d8fn@googlegroups.com>
<A8CdnSusUaJ_g1L_nZ2dnUU7_8zNnZ2d@giganews.com>
<677b9171-b785-4c61-8d7c-1ad0e5aab634n@googlegroups.com>
<BY2dnctqJflD6U3_nZ2dnUU7_8zNnZ2d@giganews.com>
<2c68fba2-c0c4-41e9-bf67-b5c64eebfb95n@googlegroups.com>
<Z-Cdnesq2--h5kz_nZ2dnUU7_8zNnZ2d@giganews.com>
<47dc4226-b73d-42cd-81aa-7b31b554ef5an@googlegroups.com>
<QvednSpQ2vbfCEz_nZ2dnUU7_83NnZ2d@giganews.com>
<37ffd9c1-9751-4ed4-a036-0a83bb02783dn@googlegroups.com>
<gMudnZK_8_u5Qk__nZ2dnUU7-SfNnZ2d@brightview.co.uk>
<VOidnTs2WMbOyE7_nZ2dnUU7_83NnZ2d@giganews.com>
<xSIAK.56979$sZ1.52752@fx07.iad>
<bPGdnapT0ME5_k7_nZ2dnUU7_81j4p2d@giganews.com>
<DUJAK.483226$J0r9.152764@fx11.iad>
<fr-dncePJ4ml8k7_nZ2dnUU7_81j4p2d@giganews.com>
<CiKAK.480510$70j.170547@fx16.iad>
From: NoO...@NoWhere.com (olcott)
In-Reply-To: <CiKAK.480510$70j.170547@fx16.iad>
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Message-ID: <eOmdnYVn7PWr607_nZ2dnUU7_8zNnZ2d@giganews.com>
Lines: 115
X-Usenet-Provider: http://www.giganews.com
X-Trace: sv3-8qSe3ZZDn0W7W1IMoGs0b8vwU/UysBrXZCdBTJqC/qU/k2O/aXH5QQPoP0jkqUic3SfMUBB0dM1Wuv6!YfKw6yG6/R1wBRFm+pW9hdKezCRPbKvZ5rMnBHu3cTTo59fKU090wxt+Rag8oXA2g/QMT8aBSCXd!Ig==
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: 7048
X-Received-Bytes: 7170
 by: olcott - Sun, 17 Jul 2022 02:38 UTC

On 7/16/2022 9:17 PM, Richard Damon wrote:
> On 7/16/22 10:08 PM, olcott wrote:
>> On 7/16/2022 8:49 PM, Richard Damon wrote:
>>> On 7/16/22 9:19 PM, olcott wrote:
>>>> On 7/16/2022 7:38 PM, Richard Damon wrote:
>>>>> On 7/16/22 8:18 PM, olcott wrote:
>>>>>> On 7/16/2022 10:54 AM, Mike Terry wrote:
>>>>>>> On 16/07/2022 12:23, Paul N wrote:
>>>>>>>> On Friday, July 15, 2022 at 5:26:49 PM UTC+1, olcott wrote:
>>>>>>>>> On 7/15/2022 11:17 AM, Paul N wrote:
>>>>>>>>>> On Friday, July 15, 2022 at 3:35:47 PM UTC+1, olcott wrote:
>>>>>>>>>>> On 7/15/2022 7:34 AM, Paul N wrote:
>>>>>>>>>>>> Do you accept that if H were required to report on the
>>>>>>>>>>>> behaviour of the direct execution of P(P) then it would not
>>>>>>>>>>>> be possible to write such an H?
>>>>>>>>>>> That would require H to be a mind reader and report on
>>>>>>>>>>> something other
>>>>>>>>>>> than the actual behavior of its actual input.
>>>>>>>>>>
>>>>>>>>>> There's no mind involved. If P is a computer program then P(P)
>>>>>>>>>> is perfectly well defined. Either H can work out what it will
>>>>>>>>>> do, or it can't.
>>>>>>>>
>>>>>>>> You haven't said in what way a "mind" is involved in the direct
>>>>>>>> execution of P(P).
>>>>>>>>
>>>>>>>>> It is like you ask your wife to go to the store and buy "a
>>>>>>>>> dozen eggs"
>>>>>>>>> fully expecting her to understand that what you mean by "a
>>>>>>>>> dozen eggs"
>>>>>>>>> is {a half gallon of grape juice}. When she gets back with the
>>>>>>>>> eggs you
>>>>>>>>> ask her where is the grape juice?
>>>>>>>>
>>>>>>>> No, you are the one who is twisting the meaning of words. When I
>>>>>>>> talk about the actual behaviour of P(P) I mean what actually
>>>>>>>> happens when P(P) is executed. That's what the words "actual"
>>>>>>>> and "behaviour" mean.
>>>>>>>>
>>>>>>>> You are using the words "actual behavior" to mean something else
>>>>>>>> which is clearly different. It seems to relate to some sort of
>>>>>>>> simulator, which you simultaneously claim to be correct while
>>>>>>>> acknowledging it produces different results from executing P(P)
>>>>>>>> directly.
>>>>>>>>
>>>>>>>> Can you tell us if that "actual behavior" does actually happen
>>>>>>>> in any circumstances, or is it (despite the name) just a
>>>>>>>> theoretical thing?
>>>>>>>>
>>>>>>>>> A halt decider must compute the mapping from its inputs to an
>>>>>>>>> accept or
>>>>>>>>> reject state on the basis of the actual behavior that is actually
>>>>>>>>> specified by these inputs.
>>>>>>>>
>>>>>>>> Yes, where the actual behaviour is the behaviour that actually
>>>>>>>> happens.
>>>>>>>>
>>>>>>>>> It is common knowledge that a correct simulation of a program is a
>>>>>>>>> correct measure of the behavior of this program.
>>>>>>>>
>>>>>>>> Yes, if the simulation is correct. You've insisted numerous
>>>>>>>> times that your own simulator is incorrect.
>>>>>>>
>>>>>>> PO's simulation is correct at the individual instruction level.
>>>>>>> His H steps the simulation forward a number of steps, and each of
>>>>>>> those steps exactly matches the P(P) calculation steps.  At some
>>>>>>> point before the final P RET instruction, his H decides to stop
>>>>>>> stepping (for whatever reason), so H's simulation is *incomplete*.
>>>>>>>
>>>>>>
>>>>>> This review was very helpful thanks.
>>>>>>
>>>>>>> That is the only sense in which P(P) and "the simulated input to
>>>>>>> H(P,P)" differ - H simply stops simulating before P(P) terminates.
>>>>>>
>>>>>> *If you carefully examine this you will see that the simulated P
>>>>>> cannot*
>>>>>> *possibly ever terminate normally by reaching its "return"
>>>>>> instruction*
>>>>>
>>>>>
>>>>> Which just doesn't matter as Halting is defined based on the actual
>>>>> machine and not a simulation.
>>>>>
>>>> Then the whole idea of a UTM would be totally bogus.
>>>>
>>>
>>> Why? Just because Halting is defined by the actual machine, why does
>>> that make a UTM bogus?
>>>
>> If the correct simulation of a machine description does not specify
>> the actual underlying computation then the concept of a UTM fails to
>> remain coherent.
>>
>
> The issue is what you have been running into, defining what "correct
> simulation" means.

Mike already correctly addressed this in his reply to Paul N:

On 7/16/2022 10:54 AM, Mike Terry wrote:
> On 16/07/2022 12:23, Paul N wrote:
> PO's simulation is correct at the individual instruction level.
> His H steps the simulation forward a number of steps, and each
> of those steps exactly matches the P(P) calculation steps.

--
Copyright 2022 Pete Olcott

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

1
server_pubkey.txt

rocksolid light 0.9.81
clearnet tor