Rocksolid Light

Welcome to novaBBS (click a section below)

mail  files  register  newsreader  groups  login

Message-ID:  

Never trust an operating system.


tech / sci.logic / Re: Ben Bacarisse specifically targets my posts to discourage honest dialogue

SubjectAuthor
* Ben Bacarisse specifically targets my posts to discourage honest dialogueolcott
`* polcott thinks "ad nauseum" is a valid strategy (was: Re: Ben Bacarisse specificvallor
 `* Re: Ben Bacarisse specifically targets my posts to discourage honest dialogueolcott
  `* Re: Ben Bacarisse specifically targets my posts to discourage honest dialogueFritz Feldhase
   `- Re: Ben Bacarisse specifically targets my posts to discourage honest dialogueolcott

1
Ben Bacarisse specifically targets my posts to discourage honest dialogue

<u6qm47$26do1$2@dont-email.me>

  copy mid

https://www.novabbs.com/tech/article-flat.php?id=1742&group=sci.logic#1742

  copy link   Newsgroups: comp.theory sci.logic comp.ai.philosophy
Path: i2pn2.org!i2pn.org!eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: polco...@gmail.com (olcott)
Newsgroups: comp.theory,sci.logic,comp.ai.philosophy
Subject: Ben Bacarisse specifically targets my posts to discourage honest
dialogue
Date: Mon, 19 Jun 2023 17:50:47 -0500
Organization: A noiseless patient Spider
Lines: 54
Message-ID: <u6qm47$26do1$2@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Mon, 19 Jun 2023 22:50:47 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="09a376d1ca8466ab1cfa2e779f87b5bd";
logging-data="2307841"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/tCtdKNE6SkpIC65QY1W8z"
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101
Thunderbird/102.12.0
Cancel-Lock: sha1:IPox8o59L8/nsaHVqMMAM0dv+PA=
Content-Language: en-US
 by: olcott - Mon, 19 Jun 2023 22:50 UTC

Ben keeps trying to show that I am incorrect and I have finally found a
way to utterly refute his rebuttal.

The behavior of the directly executed D(D) is different than the
behavior of D(D) correctly simulated by H because in the first case H
has already aborted its simulation of its input and in the second case
this has not yet occurred.

Can D correctly simulated by H terminate normally?
No it cannot see the details below.

The x86utm operating system based on an open source x86 emulator. This
system enables one C function to execute another C function in debug
step mode. When H simulates D it creates a separate process context for
D with its own memory, stack and virtual registers. H is able to
simulate D simulating itself, thus the only limit to recursive
simulations is RAM.

// The following is written in C
//
01 typedef int (*ptr)(); // pointer to int function
02 int H(ptr x, ptr y) // uses x86 emulator to simulate its input
03
04 int D(ptr x)
05 {
06 int Halt_Status = H(x, x);
07 if (Halt_Status)
08 HERE: goto HERE;
09 return Halt_Status;
10 }
11
12 void main()
13 {
14 D(D);
15 }

D correctly simulated by H cannot possibly terminate normally by
reaching its own final state at line 09.

We can easily fix what Ben has misconstrued as a contradiction by
defining the return value of 0 from H as meaning:
(a) the input does not halt <or>
(b) the input is defined to have a pathological relationship to H.

Since it is true that D was defined to do the opposite of whatever
Boolean value that H returns H is correct to return 0.

*Termination Analyzer H is Not Fooled by Pathological Input D*
https://www.researchgate.net/publication/369971402_Termination_Analyzer_H_is_Not_Fooled_by_Pathological_Input_D

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

polcott thinks "ad nauseum" is a valid strategy (was: Re: Ben Bacarisse specifically targets my posts to discourage honest dialogue

<u6qnvc$24pl7$1@dont-email.me>

  copy mid

https://www.novabbs.com/tech/article-flat.php?id=1743&group=sci.logic#1743

  copy link   Newsgroups: comp.theory sci.logic comp.ai.philosophy
Followup: alt.dev.null
Path: i2pn2.org!i2pn.org!eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: val...@cultnix.org (vallor)
Newsgroups: comp.theory,sci.logic,comp.ai.philosophy
Subject: polcott thinks "ad nauseum" is a valid strategy (was: Re: Ben
Bacarisse specifically targets my posts to discourage honest dialogue
Followup-To: alt.dev.null
Date: Mon, 19 Jun 2023 23:22:21 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 17
Message-ID: <u6qnvc$24pl7$1@dont-email.me>
References: <u6qm47$26do1$2@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Mon, 19 Jun 2023 23:22:21 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="b153a2d808bcd355c38f00d1bb0455ce";
logging-data="2254503"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+QWpnnMEl3QdGslm7dFDV6"
User-Agent: Pan/0.154 (Izium; dfc8674 gitlab.gnome.org/GNOME/pan.git)
Cancel-Lock: sha1:a3GZPumOUHBlGYpzDlooF3jdKxE=
X-Face: \}2`P"_@pS86<'EM:'b.Ml}8IuMK"pV"?FReF$'c.S%u9<Q#U*4QO)$l81M`{Q/n
XL'`91kd%N::LG:=*\35JS0prp\VJN^<s"b#bff@fA7]5lJA.jn,x_d%Md$,{.EZ
 by: vallor - Mon, 19 Jun 2023 23:22 UTC

On Mon, 19 Jun 2023 17:50:47 -0500, olcott wrote:

> thus the only limit to recursive simulations is RAM

You might as well set an arbitrary limit on recursion, because
that's what you are, in effect, doing.

C'mon, back to the drawing board.

Meanwhile, the logical fallacy you employ:

https://infidels.org/library/modern/constructing-a-logical-argument/#nauseam

fu2: alt.dev.null

--
-v

Re: Ben Bacarisse specifically targets my posts to discourage honest dialogue

<u6qq1r$26scm$1@dont-email.me>

  copy mid

https://www.novabbs.com/tech/article-flat.php?id=1744&group=sci.logic#1744

  copy link   Newsgroups: comp.theory sci.logic comp.ai.philosophy
Path: i2pn2.org!i2pn.org!eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: polco...@gmail.com (olcott)
Newsgroups: comp.theory,sci.logic,comp.ai.philosophy
Subject: Re: Ben Bacarisse specifically targets my posts to discourage honest
dialogue
Date: Mon, 19 Jun 2023 18:57:45 -0500
Organization: A noiseless patient Spider
Lines: 40
Message-ID: <u6qq1r$26scm$1@dont-email.me>
References: <u6qm47$26do1$2@dont-email.me> <u6qnvc$24pl7$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Mon, 19 Jun 2023 23:57:47 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="09a376d1ca8466ab1cfa2e779f87b5bd";
logging-data="2322838"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/AXM7Qg9G/GCM1uME/Wu5m"
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101
Thunderbird/102.12.0
Cancel-Lock: sha1:z2jTwkv39dUAZbkddB8F3nOvK8A=
In-Reply-To: <u6qnvc$24pl7$1@dont-email.me>
Content-Language: en-US
 by: olcott - Mon, 19 Jun 2023 23:57 UTC

On 6/19/2023 6:22 PM, vallor wrote:
> On Mon, 19 Jun 2023 17:50:47 -0500, olcott wrote:
>
>> thus the only limit to recursive simulations is RAM
>
> You might as well set an arbitrary limit on recursion, because
> that's what you are, in effect, doing.
>
> C'mon, back to the drawing board.
>
> Meanwhile, the logical fallacy you employ:
>
> https://infidels.org/library/modern/constructing-a-logical-argument/#nauseam
>
> fu2: alt.dev.null
>

I have brand new ideas in this thread that have never been properly
reviewed.

It is the case that when D is correctly simulated by H that D cannot
possibly terminate normally.

It is the case that when a termination analyzer H uses this criteria
that it is not fooled by the pathological input D.

It is the case that when H returns 0 this could be interpreted as
meaning either the input does not halt or the input has defined a
pathological relationship to H.

It is the case that within the above definition that Ben's lost standing
rebuttal utterly fails.

*Termination Analyzer H is Not Fooled by Pathological Input D*
https://www.researchgate.net/publication/369971402_Termination_Analyzer_H_is_Not_Fooled_by_Pathological_Input_D

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

Re: Ben Bacarisse specifically targets my posts to discourage honest dialogue

<f7657cfb-7c57-44f3-b9e5-15787737f307n@googlegroups.com>

  copy mid

https://www.novabbs.com/tech/article-flat.php?id=1746&group=sci.logic#1746

  copy link   Newsgroups: sci.logic
X-Received: by 2002:a37:4458:0:b0:762:652:cd03 with SMTP id r85-20020a374458000000b007620652cd03mr1806418qka.3.1687220477256;
Mon, 19 Jun 2023 17:21:17 -0700 (PDT)
X-Received: by 2002:a81:e24a:0:b0:56d:2abf:f0c with SMTP id
z10-20020a81e24a000000b0056d2abf0f0cmr4505027ywl.10.1687220476987; Mon, 19
Jun 2023 17:21:16 -0700 (PDT)
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!1.us.feeder.erje.net!feeder.erje.net!usenet.blueworldhosting.com!diablo1.usenet.blueworldhosting.com!peer02.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: sci.logic
Date: Mon, 19 Jun 2023 17:21:16 -0700 (PDT)
In-Reply-To: <u6qq1r$26scm$1@dont-email.me>
Injection-Info: google-groups.googlegroups.com; posting-host=79.206.206.253; posting-account=-75WZwoAAABL0f0-07Kn6tvNHWg7W9AE
NNTP-Posting-Host: 79.206.206.253
References: <u6qm47$26do1$2@dont-email.me> <u6qnvc$24pl7$1@dont-email.me> <u6qq1r$26scm$1@dont-email.me>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <f7657cfb-7c57-44f3-b9e5-15787737f307n@googlegroups.com>
Subject: Re: Ben Bacarisse specifically targets my posts to discourage honest dialogue
From: franz.fr...@gmail.com (Fritz Feldhase)
Injection-Date: Tue, 20 Jun 2023 00:21:17 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Received-Bytes: 2023
 by: Fritz Feldhase - Tue, 20 Jun 2023 00:21 UTC

On Tuesday, June 20, 2023 at 1:57:50 AM UTC+2, olcott wrote:

> I have brand new ideas in this thread that have never been properly reviewed.

Might be an indication of some progress. :-)

> It is the case that when D is correctly simulated by H that D cannot
> possibly terminate normally.

??? When D(D) is "correctly simulated by H" then this simulated D(D) either terminates or not.

-> "terminate(s) normally" is meaningless here.

Yes, you can terminate _the simulation_, but this does not mean that the simulated D(D) terminates.

> It is the case <bla bla bla>

No, it's not the case.

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

And cranks hit targets which aren't there.

Re: Ben Bacarisse specifically targets my posts to discourage honest dialogue

<u6qsqf$273dd$1@dont-email.me>

  copy mid

https://www.novabbs.com/tech/article-flat.php?id=1749&group=sci.logic#1749

  copy link   Newsgroups: sci.logic
Path: i2pn2.org!i2pn.org!eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: polco...@gmail.com (olcott)
Newsgroups: sci.logic
Subject: Re: Ben Bacarisse specifically targets my posts to discourage honest
dialogue
Date: Mon, 19 Jun 2023 19:45:03 -0500
Organization: A noiseless patient Spider
Lines: 40
Message-ID: <u6qsqf$273dd$1@dont-email.me>
References: <u6qm47$26do1$2@dont-email.me> <u6qnvc$24pl7$1@dont-email.me>
<u6qq1r$26scm$1@dont-email.me>
<f7657cfb-7c57-44f3-b9e5-15787737f307n@googlegroups.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Tue, 20 Jun 2023 00:45:03 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="09a376d1ca8466ab1cfa2e779f87b5bd";
logging-data="2330029"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+DvRAZe+2Syo793RiPVNAi"
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101
Thunderbird/102.12.0
Cancel-Lock: sha1:INPRucHAbFZmtsMYSa+f16mV63Q=
In-Reply-To: <f7657cfb-7c57-44f3-b9e5-15787737f307n@googlegroups.com>
Content-Language: en-US
 by: olcott - Tue, 20 Jun 2023 00:45 UTC

On 6/19/2023 7:21 PM, Fritz Feldhase wrote:
> On Tuesday, June 20, 2023 at 1:57:50 AM UTC+2, olcott wrote:
>
>> I have brand new ideas in this thread that have never been properly reviewed.
>
> Might be an indication of some progress. :-)
>
>> It is the case that when D is correctly simulated by H that D cannot
>> possibly terminate normally.
>
> ??? When D(D) is "correctly simulated by H" then this simulated D(D) either terminates or not.
>
> -> "terminate(s) normally" is meaningless here.
>

What I mean is that D correctly simulated by H cannot possibly reach
its own last instruction in any finite number of steps of correct
simulation.

To address the people (like Ben) that say that H reports not-halting and
D(D) halts we say that H reports either not-halting or that D was
defined to do the opposite of whatever Boolean value that H returns.

This conquers the one remaining last rebuttal that has persisted for two
years.

> Yes, you can terminate _the simulation_, but this does not mean that the simulated D(D) terminates.
>
>> It is the case <bla bla bla>
>
> No, it's not the case.
>
>> "Talent hits a target no one else can hit; Genius hits a target no one else can see." Arthur Schopenhauer
>
> And cranks hit targets which aren't there.

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


tech / sci.logic / Re: Ben Bacarisse specifically targets my posts to discourage honest dialogue

1
server_pubkey.txt

rocksolid light 0.9.81
clearnet tor