Rocksolid Light

Welcome to novaBBS (click a section below)

mail  files  register  newsreader  groups  login

Message-ID:  

The biggest difference between time and space is that you can't reuse time. -- Merrick Furst


devel / comp.theory / Re: Three key elements refuting the pseudo-code HP proof

SubjectAuthor
* Three key elements refuting the pseudo-code HP proofolcott
+- Three key elements refuting the pseudo-code HP proofDaniel Pehoushek
`* Three key elements refuting the pseudo-code HP proofRichard Damon
 `* Three key elements refuting the pseudo-code HP proofolcott
  +- Three key elements refuting the pseudo-code HP proofDaniel Pehoushek
  `* Three key elements refuting the pseudo-code HP proofRichard Damon
   +* Three key elements refuting the pseudo-code HP proofDaniel Pehoushek
   |`- Three key elements refuting the pseudo-code HP proofolcott
   `- Three key elements refuting the pseudo-code HP proofolcott

1
Three key elements refuting the pseudo-code HP proof

<46-dnXCWUqaPjlP9nZ2dnUU7-dXNnZ2d@giganews.com>

  copy mid

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

  copy link   Newsgroups: comp.theory comp.ai.philosophy comp.software-eng sci.math
Path: i2pn2.org!i2pn.org!aioe.org!news.uzoreto.com!tr3.eu1.usenetexpress.com!feeder.usenetexpress.com!tr1.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, 19 Jun 2021 10:53:54 -0500
Newsgroups: comp.theory,comp.ai.philosophy,comp.software-eng,sci.math
X-Mozilla-News-Host: news://news.giganews.com:119
From: NoO...@NoWhere.com (olcott)
Subject: Three key elements refuting the pseudo-code HP proof
Date: Sat, 19 Jun 2021 10:54:16 -0500
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Thunderbird/78.11.0
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8; format=flowed
Content-Language: en-US
Content-Transfer-Encoding: 8bit
Message-ID: <46-dnXCWUqaPjlP9nZ2dnUU7-dXNnZ2d@giganews.com>
Lines: 89
X-Usenet-Provider: http://www.giganews.com
X-Trace: sv3-188H0wRv9q8l+XKg1KHOMJAlWUGggCnm8wIwtjkUJlM8DBbpaaWryXw1Oo0NQzHt78uJbdEdyqkMKRG!i+3fAEGYZmyQ9N9WWP0zqi5AqaOdALlDkkU/+79xLIjYnqfCAi0ENHXzXRBDjrqI97cv4EyNgik=
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: 4826
 by: olcott - Sat, 19 Jun 2021 15:54 UTC

P was designed to model the standard pseudo-code halting problem proofs.
P calls H with its own machine address and then the does opposite of
whatever H decides.

These standard proofs have been understood to show that no universal
halt decider could possibly exist because such a decider would have to
be able to correctly decide whether or not an input like P halts.

The simple way around this problem is to define a halt decider that
simulates its inputs as its halt deciding basis. When we do this then an
input such as P can be determined to call H in infinite recursion.

H is able to recognize the infinitely repeating behavior of P and aborts
its simulation of P before ever returning any value to P. This makes it
impossible for P do do the opposite of whatever H decides.

procedure compute_g(i):
if f(i, i) == 0 then
return 0
else
loop forever // (Wikipedia:Halting Problem)

Here is the concrete version of the pseudo-code. It is written in C and
executed in the x86utm operating system.

// Simplified version of the Peter Linz Ĥ
void P(u32 x)
{ u32 Input_Halts = H(x, x);
if (Input_Halts)
HERE: goto HERE;
}

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

The above is fully operational in the x86utm operating system, it is
based on an x86 emulator that does a debug step trace of its input. It
examines the stored execution trace after it simulates each instruction
of this input.

*Three key elements refuting the pseudo-code HP proof*
(a) We can know that the input to H(P,P) is input that never halts with
100% perfect certainty on the basis of the x86 execution trace of P(P)
shown below.

(b) This means that we can know with 100% perfect certainty that a
simulating halt decider must abort its simulation of its input.

(c) This means that we can know with 100% perfect certainty that a
simulating halt decider correctly reports that this input never halts.

Begin Halt Decider Simulation at Machine Address:b10
[00000b10][002115d3][002115d7] 55 push ebp
[00000b11][002115d3][002115d7] 8bec mov ebp,esp
[00000b13][002115cf][002015a3] 51 push ecx
[00000b14][002115cf][002015a3] 8b4508 mov eax,[ebp+08]
[00000b17][002115cb][00000b10] 50 push eax // P
[00000b18][002115cb][00000b10] 8b4d08 mov ecx,[ebp+08]
[00000b1b][002115c7][00000b10] 51 push ecx // P
[00000b1c][002115c3][00000b21] e81ffeffff call 00000940 // H

[00000b10][0025bffb][0025bfff] 55 push ebp
[00000b11][0025bffb][0025bfff] 8bec mov ebp,esp
[00000b13][0025bff7][0024bfcb] 51 push ecx
[00000b14][0025bff7][0024bfcb] 8b4508 mov eax,[ebp+08]
[00000b17][0025bff3][00000b10] 50 push eax // P
[00000b18][0025bff3][00000b10] 8b4d08 mov ecx,[ebp+08]
[00000b1b][0025bfef][00000b10] 51 push ecx // P
[00000b1c][0025bfeb][00000b21] e81ffeffff call 00000940 // H
Infinite Recursion Detected Simulation Stopped

H ignores its own execution trace, thus when P calls H(P,P) this merely
invokes P(P). Anyone knowing the x86 language can easily see that none
of the above repeating eight instructions can possibly break this
repeating cycle.

Halting problem undecidability and infinitely nested simulation
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: Three key elements refuting the pseudo-code HP proof

<458e4aca-6a68-4a6e-bf11-cbeb1ddfb3a1n@googlegroups.com>

  copy mid

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

  copy link   Newsgroups: comp.theory
X-Received: by 2002:ad4:5444:: with SMTP id h4mr11346375qvt.14.1624119207736;
Sat, 19 Jun 2021 09:13:27 -0700 (PDT)
X-Received: by 2002:a25:6183:: with SMTP id v125mr10428854ybb.377.1624119207604;
Sat, 19 Jun 2021 09:13:27 -0700 (PDT)
Path: i2pn2.org!i2pn.org!news.niel.me!usenet.pasdenom.info!usenet-fr.net!proxad.net!feeder1-2.proxad.net!209.85.160.216.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.theory
Date: Sat, 19 Jun 2021 09:13:27 -0700 (PDT)
In-Reply-To: <46-dnXCWUqaPjlP9nZ2dnUU7-dXNnZ2d@giganews.com>
Injection-Info: google-groups.googlegroups.com; posting-host=2600:2b00:770c:a400:713e:9c0a:956:4219;
posting-account=wr2KGQoAAADwR6kcaFpOhQvlGldc1Uke
NNTP-Posting-Host: 2600:2b00:770c:a400:713e:9c0a:956:4219
References: <46-dnXCWUqaPjlP9nZ2dnUU7-dXNnZ2d@giganews.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <458e4aca-6a68-4a6e-bf11-cbeb1ddfb3a1n@googlegroups.com>
Subject: Re: Three key elements refuting the pseudo-code HP proof
From: pehoush...@gmail.com (Daniel Pehoushek)
Injection-Date: Sat, 19 Jun 2021 16:13:27 +0000
Content-Type: text/plain; charset="UTF-8"
 by: Daniel Pehoushek - Sat, 19 Jun 2021 16:13 UTC

olcott is a god damned spammer. do not help him anymore.

Re: Three key elements refuting the pseudo-code HP proof

<nZozI.67024$zx1.4806@fx20.iad>

  copy mid

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

  copy link   Newsgroups: comp.theory
Path: i2pn2.org!i2pn.org!aioe.org!news.uzoreto.com!news-out.netnews.com!news.alt.net!fdc3.netnews.com!peer01.ams1!peer.ams1.xlned.com!news.xlned.com!peer01.iad!feed-me.highwinds-media.com!news.highwinds-media.com!fx20.iad.POSTED!not-for-mail
Subject: Re: Three key elements refuting the pseudo-code HP proof
Newsgroups: comp.theory
References: <46-dnXCWUqaPjlP9nZ2dnUU7-dXNnZ2d@giganews.com>
From: Rich...@Damon-Family.org (Richard Damon)
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:78.0)
Gecko/20100101 Thunderbird/78.11.0
MIME-Version: 1.0
In-Reply-To: <46-dnXCWUqaPjlP9nZ2dnUU7-dXNnZ2d@giganews.com>
Content-Type: text/plain; charset=utf-8
Content-Language: en-US
Content-Transfer-Encoding: 8bit
Lines: 132
Message-ID: <nZozI.67024$zx1.4806@fx20.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, 19 Jun 2021 12:31:18 -0400
X-Received-Bytes: 6249
 by: Richard Damon - Sat, 19 Jun 2021 16:31 UTC

On 6/19/21 11:54 AM, olcott wrote:
> P was designed to model the standard pseudo-code halting problem proofs.
> P calls H with its own machine address and then the does opposite of
> whatever H decides.

First, the proofs are based on Turing Machines, so 'machine address'
isn't a valid concept, and in fact your requirement that P be in the
same code space as H actually means it is IMPOSSIBLE to consider H a
Universal Decider, as it can not be provided a program that overlaps the
address space of the program using the decider.

FATAL FLAW.

You really need to go back to your original concept when H was given the
file containing the COFF file of the program to decide, not the
'address' of the program to decide.

But this then shows the flaw in your design, so you won't do it.

>
> These standard proofs have been understood to show that no universal
> halt decider could possibly exist because such a decider would have to
> be able to correctly decide whether or not an input like P halts.
>
> The simple way around this problem is to define a halt decider that
> simulates its inputs as its halt deciding basis. When we do this then an
> input such as P can be determined to call H in infinite recursion.

No, you incorreected decide that P calls H in infinite recursion, the P
call to H is only infinite recursion if H will never terminate its
simulation, but then H will fail to provide an answer for deciding on P(P)

Once H does decide that it will abort at some point the simulation of P,
the we no longer actually have the infinite recursion that H thought it
detected, and thus it is incorrect.

>
> H is able to recognize the infinitely repeating behavior of P and aborts
> its simulation of P before ever returning any value to P. This makes it
> impossible for P do do the opposite of whatever H decides.

But since the first H still must return an answer to its caller (or it
won't be a decider) it still must return that answer to the top most P
when P is run as the machine, and that allows that P to still act
contrary to what H predicts.

>
> procedure compute_g(i):
>   if f(i, i) == 0 then
>     return 0
>   else
>     loop forever    // (Wikipedia:Halting Problem)
>
> Here is the concrete version of the pseudo-code. It is written in C and
> executed in the x86utm operating system.
>
> // Simplified version of the Peter Linz Ĥ
> void P(u32 x)
> {
>   u32 Input_Halts = H(x, x);
>   if (Input_Halts)
>     HERE: goto HERE;
> }
>
> int main()
> {
>   u32 Input_Halts = H((u32)P, (u32)P);
>   Output("Input_Halts = ", Input_Halts);
> }

Which is of course the wrong test program.

We need to see what

int main()
{ P(u32)P);
Output("P Halted");
}

does too, as THAT is the real question being asked.

It WILL Halt. Thus H was wrong.

>
> The above is fully operational in the x86utm operating system, it is
> based on an x86 emulator that does a debug step trace of its input. It
> examines the stored execution trace after it simulates each instruction
> of this input.
>
> *Three key elements refuting the pseudo-code HP proof*
> (a) We can know that the input to H(P,P) is input that never halts with
> 100% perfect certainty on the basis of the x86 execution trace of P(P)
> shown below.
>
> (b) This means that we can know with 100% perfect certainty that a
> simulating halt decider must abort its simulation of its input.
>
> (c) This means that we can know with 100% perfect certainty that a
> simulating halt decider correctly reports that this input never halts.
>
> Begin Halt Decider Simulation at Machine Address:b10
> [00000b10][002115d3][002115d7] 55         push ebp
> [00000b11][002115d3][002115d7] 8bec       mov ebp,esp
> [00000b13][002115cf][002015a3] 51         push ecx
> [00000b14][002115cf][002015a3] 8b4508     mov eax,[ebp+08]
> [00000b17][002115cb][00000b10] 50         push eax          // P
> [00000b18][002115cb][00000b10] 8b4d08     mov ecx,[ebp+08]
> [00000b1b][002115c7][00000b10] 51         push ecx          // P
> [00000b1c][002115c3][00000b21] e81ffeffff call 00000940     // H
>
> [00000b10][0025bffb][0025bfff] 55         push ebp
> [00000b11][0025bffb][0025bfff] 8bec       mov ebp,esp
> [00000b13][0025bff7][0024bfcb] 51         push ecx
> [00000b14][0025bff7][0024bfcb] 8b4508     mov eax,[ebp+08]
> [00000b17][0025bff3][00000b10] 50         push eax         // P
> [00000b18][0025bff3][00000b10] 8b4d08     mov ecx,[ebp+08]
> [00000b1b][0025bfef][00000b10] 51         push ecx         // P
> [00000b1c][0025bfeb][00000b21] e81ffeffff call 00000940    // H
> Infinite Recursion Detected Simulation Stopped
>
> H ignores its own execution trace, thus when P calls H(P,P) this merely
> invokes P(P). Anyone knowing the x86 language can easily see that none
> of the above repeating eight instructions can possibly break this
> repeating cycle.
>
>
> Halting problem undecidability and infinitely nested simulation
> https://www.researchgate.net/publication/351947980_Halting_problem_undecidability_and_infinitely_nested_simulation
>
>

Re: Three key elements refuting the pseudo-code HP proof

<4fudnR-MYPwNgFP9nZ2dnUU7-LtQAAAA@giganews.com>

  copy mid

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

  copy link   Newsgroups: comp.theory
Path: i2pn2.org!i2pn.org!aioe.org!feeder1.feed.usenet.farm!feed.usenet.farm!tr1.eu1.usenetexpress.com!feeder.usenetexpress.com!tr2.iad1.usenetexpress.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, 19 Jun 2021 11:38:40 -0500
Subject: Re: Three key elements refuting the pseudo-code HP proof
Newsgroups: comp.theory
References: <46-dnXCWUqaPjlP9nZ2dnUU7-dXNnZ2d@giganews.com> <nZozI.67024$zx1.4806@fx20.iad>
From: NoO...@NoWhere.com (olcott)
Date: Sat, 19 Jun 2021 11:39:02 -0500
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Thunderbird/78.11.0
MIME-Version: 1.0
In-Reply-To: <nZozI.67024$zx1.4806@fx20.iad>
Content-Type: text/plain; charset=utf-8; format=flowed
Content-Language: en-US
Content-Transfer-Encoding: 7bit
Message-ID: <4fudnR-MYPwNgFP9nZ2dnUU7-LtQAAAA@giganews.com>
Lines: 18
X-Usenet-Provider: http://www.giganews.com
X-Trace: sv3-ORpp8gHI+aDjhKs+kc7SHCb73U5R5rDK6NGtO6PWrYRdhrzK9Fk990Jfvhz5ULDnyztq1B6RxDZtNII!gUh7q2H5qVeeEGXS5vQ8ZOhVa8W+WD4Rt16bmrFA/T/mZrRkkPPZdHTW9i5kqJ4a+yzi6cykpYc=
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: 1885
 by: olcott - Sat, 19 Jun 2021 16:39 UTC

On 6/19/2021 11:31 AM, Richard Damon wrote:
> On 6/19/21 11:54 AM, olcott wrote:
>> P was designed to model the standard pseudo-code halting problem proofs.
>> P calls H with its own machine address and then the does opposite of
>> whatever H decides.
>
> First, the proofs are based on Turing Machines,
I say the house across the street is red and you say no I disagree the
house up the street two blocks away is not red.

The pseudo-code halting problem proofs are based on freaking pseudo-code
nitwit.

--
Copyright 2021 Pete Olcott

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

Re: Three key elements refuting the pseudo-code HP proof

<35adeead-b13c-4571-9c3b-9874dfc1fee1n@googlegroups.com>

  copy mid

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

  copy link   Newsgroups: comp.theory
X-Received: by 2002:a05:6214:b26:: with SMTP id w6mr11338841qvj.61.1624121021334;
Sat, 19 Jun 2021 09:43:41 -0700 (PDT)
X-Received: by 2002:a25:d44f:: with SMTP id m76mr9963506ybf.198.1624121021172;
Sat, 19 Jun 2021 09:43:41 -0700 (PDT)
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!proxad.net!feeder1-2.proxad.net!209.85.160.216.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.theory
Date: Sat, 19 Jun 2021 09:43:40 -0700 (PDT)
In-Reply-To: <4fudnR-MYPwNgFP9nZ2dnUU7-LtQAAAA@giganews.com>
Injection-Info: google-groups.googlegroups.com; posting-host=2600:2b00:770c:a400:713e:9c0a:956:4219;
posting-account=wr2KGQoAAADwR6kcaFpOhQvlGldc1Uke
NNTP-Posting-Host: 2600:2b00:770c:a400:713e:9c0a:956:4219
References: <46-dnXCWUqaPjlP9nZ2dnUU7-dXNnZ2d@giganews.com>
<nZozI.67024$zx1.4806@fx20.iad> <4fudnR-MYPwNgFP9nZ2dnUU7-LtQAAAA@giganews.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <35adeead-b13c-4571-9c3b-9874dfc1fee1n@googlegroups.com>
Subject: Re: Three key elements refuting the pseudo-code HP proof
From: pehoush...@gmail.com (Daniel Pehoushek)
Injection-Date: Sat, 19 Jun 2021 16:43:41 +0000
Content-Type: text/plain; charset="UTF-8"
 by: Daniel Pehoushek - Sat, 19 Jun 2021 16:43 UTC

On Saturday, June 19, 2021 at 12:38:47 PM UTC-4, olcott wrote:
> On 6/19/2021 11:31 AM, Richard Damon wrote:
> > On 6/19/21 11:54 AM, olcott wrote:
> >> P was designed to model the standard pseudo-code halting problem proofs.
> >> P calls H with its own machine address and then the does opposite of
> >> whatever H decides.
> >
> > First, the proofs are based on Turing Machines,
> I say the house across the street is red and you say no I disagree the
> house up the street two blocks away is not red.
>
> The pseudo-code halting problem proofs are based on freaking pseudo-code
> nitwit.
> --
> Copyright 2021 Pete Olcott
>
> "Great spirits have always encountered violent opposition from mediocre
> minds." Einstein
olcott is a god damned spammer. do not help him anymore.

Re: Three key elements refuting the pseudo-code HP proof

<frpzI.53000$J21.38094@fx40.iad>

  copy mid

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

  copy link   Newsgroups: comp.theory
Path: i2pn2.org!i2pn.org!paganini.bofh.team!news.dns-netz.com!news.freedyn.net!newsfeed.xs4all.nl!newsfeed9.news.xs4all.nl!news-out.netnews.com!news.alt.net!fdc3.netnews.com!peer02.ams1!peer.ams1.xlned.com!news.xlned.com!peer03.iad!feed-me.highwinds-media.com!news.highwinds-media.com!fx40.iad.POSTED!not-for-mail
Subject: Re: Three key elements refuting the pseudo-code HP proof
Newsgroups: comp.theory
References: <46-dnXCWUqaPjlP9nZ2dnUU7-dXNnZ2d@giganews.com>
<nZozI.67024$zx1.4806@fx20.iad>
<4fudnR-MYPwNgFP9nZ2dnUU7-LtQAAAA@giganews.com>
From: Rich...@Damon-Family.org (Richard Damon)
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:78.0)
Gecko/20100101 Thunderbird/78.11.0
MIME-Version: 1.0
In-Reply-To: <4fudnR-MYPwNgFP9nZ2dnUU7-LtQAAAA@giganews.com>
Content-Type: text/plain; charset=utf-8
Content-Language: en-US
Content-Transfer-Encoding: 7bit
Lines: 25
Message-ID: <frpzI.53000$J21.38094@fx40.iad>
X-Complaints-To: abuse@easynews.com
Organization: Forte - www.forteinc.com
X-Complaints-Info: Please be sure to forward a copy of ALL headers otherwise we will be unable to process your complaint properly.
Date: Sat, 19 Jun 2021 13:03:11 -0400
X-Received-Bytes: 1948
 by: Richard Damon - Sat, 19 Jun 2021 17:03 UTC

On 6/19/21 12:39 PM, olcott wrote:
> On 6/19/2021 11:31 AM, Richard Damon wrote:
>> On 6/19/21 11:54 AM, olcott wrote:
>>> P was designed to model the standard pseudo-code halting problem proofs.
>>> P calls H with its own machine address and then the does opposite of
>>> whatever H decides.
>>
>> First, the proofs are based on Turing Machines,
> I say the house across the street is red and you say no I disagree the
> house up the street two blocks away is not red.
>
> The pseudo-code halting problem proofs are based on freaking pseudo-code
> nitwit.
>

No, They are all based on Turing Machines. READ THEM. Note, they might
use the term Computation, but that is a technical term in this context,
and it can be shown that all computation can be calculated by a Turing
Machine.

Show a REAL halting problem proof that doesn't refer back to Turing
Machines or Computation in the technical sense.

Re: Three key elements refuting the pseudo-code HP proof

<226b4e00-33fe-437a-bedc-748b4b9b2990n@googlegroups.com>

  copy mid

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

  copy link   Newsgroups: comp.theory
X-Received: by 2002:a05:6214:b26:: with SMTP id w6mr11585372qvj.61.1624124967587;
Sat, 19 Jun 2021 10:49:27 -0700 (PDT)
X-Received: by 2002:a25:5c8:: with SMTP id 191mr11656640ybf.251.1624124967455;
Sat, 19 Jun 2021 10:49:27 -0700 (PDT)
Path: i2pn2.org!i2pn.org!paganini.bofh.team!usenet.pasdenom.info!usenet-fr.net!proxad.net!feeder1-2.proxad.net!209.85.160.216.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.theory
Date: Sat, 19 Jun 2021 10:49:27 -0700 (PDT)
In-Reply-To: <frpzI.53000$J21.38094@fx40.iad>
Injection-Info: google-groups.googlegroups.com; posting-host=2600:2b00:770c:a400:713e:9c0a:956:4219;
posting-account=wr2KGQoAAADwR6kcaFpOhQvlGldc1Uke
NNTP-Posting-Host: 2600:2b00:770c:a400:713e:9c0a:956:4219
References: <46-dnXCWUqaPjlP9nZ2dnUU7-dXNnZ2d@giganews.com>
<nZozI.67024$zx1.4806@fx20.iad> <4fudnR-MYPwNgFP9nZ2dnUU7-LtQAAAA@giganews.com>
<frpzI.53000$J21.38094@fx40.iad>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <226b4e00-33fe-437a-bedc-748b4b9b2990n@googlegroups.com>
Subject: Re: Three key elements refuting the pseudo-code HP proof
From: pehoush...@gmail.com (Daniel Pehoushek)
Injection-Date: Sat, 19 Jun 2021 17:49:27 +0000
Content-Type: text/plain; charset="UTF-8"
 by: Daniel Pehoushek - Sat, 19 Jun 2021 17:49 UTC

olcott is a god damned spammer. do not help him.
team of russian trolls

Re: Three key elements refuting the pseudo-code HP proof

<-YWdnaL83tt9rlP9nZ2dnUU7-eGdnZ2d@giganews.com>

  copy mid

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

  copy link   Newsgroups: comp.theory
Path: i2pn2.org!i2pn.org!aioe.org!feeder1.feed.usenet.farm!feed.usenet.farm!tr2.eu1.usenetexpress.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, 19 Jun 2021 13:13:51 -0500
Subject: Re: Three key elements refuting the pseudo-code HP proof
Newsgroups: comp.theory
References: <46-dnXCWUqaPjlP9nZ2dnUU7-dXNnZ2d@giganews.com> <nZozI.67024$zx1.4806@fx20.iad> <4fudnR-MYPwNgFP9nZ2dnUU7-LtQAAAA@giganews.com> <frpzI.53000$J21.38094@fx40.iad> <226b4e00-33fe-437a-bedc-748b4b9b2990n@googlegroups.com>
From: NoO...@NoWhere.com (olcott)
Date: Sat, 19 Jun 2021 13:14:14 -0500
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Thunderbird/78.11.0
MIME-Version: 1.0
In-Reply-To: <226b4e00-33fe-437a-bedc-748b4b9b2990n@googlegroups.com>
Content-Type: text/plain; charset=utf-8; format=flowed
Content-Language: en-US
Content-Transfer-Encoding: 7bit
Message-ID: <-YWdnaL83tt9rlP9nZ2dnUU7-eGdnZ2d@giganews.com>
Lines: 16
X-Usenet-Provider: http://www.giganews.com
X-Trace: sv3-2nv3IP7cXSs3S2UZ1h3B+2LlC9R9tzTSbzE6XqY3TFs9Xh83zdAwctAvVwfY/5fu7KHschzCSXZ5PIj!vi+b5UpmbpWufu/ZPBaZeYXGhUz1vWr1FF4pdjq0Iw/lRZcqtn4Cb/WVSCxLCEWAG3ZhFxyrQvI=
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: 1905
 by: olcott - Sat, 19 Jun 2021 18:14 UTC

On 6/19/2021 12:49 PM, Daniel Pehoushek wrote:
> olcott is a god damned spammer. do not help him.
> team of russian trolls
>

This is my 2004 work on the same problem:
https://groups.google.com/g/comp.theory/c/RO9Z9eCabeE/m/Ka8-xS2rdEEJ

Russian trolls on Facebook did not prove to be a problem until it was
shown that they interferred with the 2016 election.

--
Copyright 2021 Pete Olcott

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

Re: Three key elements refuting the pseudo-code HP proof

<zKidnYeyxp2np1P9nZ2dnUU7-ROdnZ2d@giganews.com>

  copy mid

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

  copy link   Newsgroups: comp.theory
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!news.snarked.org!border2.nntp.dca1.giganews.com!nntp.giganews.com!buffer2.nntp.dca1.giganews.com!news.giganews.com.POSTED!not-for-mail
NNTP-Posting-Date: Sat, 19 Jun 2021 13:40:58 -0500
Subject: Re: Three key elements refuting the pseudo-code HP proof
Newsgroups: comp.theory
References: <46-dnXCWUqaPjlP9nZ2dnUU7-dXNnZ2d@giganews.com>
<nZozI.67024$zx1.4806@fx20.iad>
<4fudnR-MYPwNgFP9nZ2dnUU7-LtQAAAA@giganews.com>
<frpzI.53000$J21.38094@fx40.iad>
From: NoO...@NoWhere.com (olcott)
Date: Sat, 19 Jun 2021 13:41:21 -0500
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101
Thunderbird/78.11.0
MIME-Version: 1.0
In-Reply-To: <frpzI.53000$J21.38094@fx40.iad>
Content-Type: text/plain; charset=utf-8; format=flowed
Content-Language: en-US
Content-Transfer-Encoding: 7bit
Message-ID: <zKidnYeyxp2np1P9nZ2dnUU7-ROdnZ2d@giganews.com>
Lines: 65
X-Usenet-Provider: http://www.giganews.com
X-Trace: sv3-Qmcs1W+LOJccHztiF5L2XTgigeabu4a2ZfQVqaVjiY4odHFd3USokmTskp6GL5Hj5kKQbUC9VIYCsW+!XsoPOww0+YCG+LqkB9U+ehO4RQ7+N4V0hsgV//8CuYg6xkcRJx2kBRNU2tkKt8vXVt9e3lAe+Ts=
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: 3636
 by: olcott - Sat, 19 Jun 2021 18:41 UTC

On 6/19/2021 12:03 PM, Richard Damon wrote:
> On 6/19/21 12:39 PM, olcott wrote:
>> On 6/19/2021 11:31 AM, Richard Damon wrote:
>>> On 6/19/21 11:54 AM, olcott wrote:
>>>> P was designed to model the standard pseudo-code halting problem proofs.
>>>> P calls H with its own machine address and then the does opposite of
>>>> whatever H decides.
>>>
>>> First, the proofs are based on Turing Machines,
>> I say the house across the street is red and you say no I disagree the
>> house up the street two blocks away is not red.
>>
>> The pseudo-code halting problem proofs are based on freaking pseudo-code
>> nitwit.
>>
>
> No, They are all based on Turing Machines. READ THEM. Note, they might
> use the term Computation, but that is a technical term in this context,
> and it can be shown that all computation can be calculated by a Turing
> Machine.
>
> Show a REAL halting problem proof that doesn't refer back to Turing
> Machines or Computation in the technical sense.

void P(u32 x)
{ u32 Input_Halts = H(x, x);
Output("P:Input_Halts:", Input_Halts);
if (Input_Halts)
HERE: goto HERE;
}

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

(a) We can know that the simulation of the input to H(P,P) never halts
with 100% perfect certainty on the basis of its x86 execution trace.

(b) This means that we can know with 100% perfect certainty that
simulating halt decider H must abort its simulation of its input (P,P).

(c) This means that we can know with 100% perfect certainty that
simulating halt decider H correctly reports that its input: (P,P) never
halts.

Clueless wonders can deny any one of these three steps on the basis of
ignorance or simply not paying attention.

What no one can do is point out any actual error in any of the above
steps because each of the above steps can be verified as completely true
entirely on the basis of the meaning of its words.

Halting problem undecidability and infinitely nested simulation

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


devel / comp.theory / Re: Three key elements refuting the pseudo-code HP proof

1
server_pubkey.txt

rocksolid light 0.9.81
clearnet tor