Rocksolid Light

Welcome to novaBBS (click a section below)

mail  files  register  newsreader  groups  login

Message-ID:  

I'm still waiting for the advent of the computer science groupie.


devel / comp.lang.c / Re: General Undecidable Axiom(2021 WIJ)

SubjectAuthor
* General Undecidable Axiom(2021 WIJ)wij
+- Re: General Undecidable Axiom(2021 WIJ)wij
`* Re: General Undecidable Axiom(2021 WIJ)Ben Bacarisse
 +* Re: General Undecidable Axiom(2021 WIJ)wij
 |`* Re: General Undecidable Axiom(2021 WIJ)Ben Bacarisse
 | `- Re: General Undecidable Axiom(2021 WIJ)wij
 `* Re: General Undecidable Axiom(2021 WIJ)Real Troll
  `- Re: General Undecidable Axiom(2021 WIJ)wij

1
General Undecidable Axiom(2021 WIJ)

<dcb3ec62-d6a3-464f-ba13-1beb1861128dn@googlegroups.com>

  copy mid

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

  copy link   Newsgroups: comp.lang.c
X-Received: by 2002:ad4:456d:: with SMTP id o13mr12972940qvu.48.1625938706919; Sat, 10 Jul 2021 10:38:26 -0700 (PDT)
X-Received: by 2002:a05:620a:84b:: with SMTP id u11mr45298816qku.348.1625938706759; Sat, 10 Jul 2021 10:38:26 -0700 (PDT)
Path: i2pn2.org!i2pn.org!aioe.org!feeder1.feed.usenet.farm!feed.usenet.farm!tr3.eu1.usenetexpress.com!feeder.usenetexpress.com!tr2.iad1.usenetexpress.com!border1.nntp.dca1.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.c
Date: Sat, 10 Jul 2021 10:38:26 -0700 (PDT)
Injection-Info: google-groups.googlegroups.com; posting-host=58.115.187.102; posting-account=QJ9iEwoAAACyjkKjQAWQOwSEULNvZZkc
NNTP-Posting-Host: 58.115.187.102
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <dcb3ec62-d6a3-464f-ba13-1beb1861128dn@googlegroups.com>
Subject: General Undecidable Axiom(2021 WIJ)
From: wyni...@gmail.com (wij)
Injection-Date: Sat, 10 Jul 2021 17:38:26 +0000
Content-Type: text/plain; charset="UTF-8"
Lines: 37
 by: wij - Sat, 10 Jul 2021 17:38 UTC

Since the conventional HP only mentions a specific halting problem, which is
often believed to be an invalid proof.
See https://groups.google.com/g/comp.theory/c/RO9Z9eCabeE/m/Ka8-xS2rdEEJ

I hereby claims the General Undecidable Axiom(2021 WIJ):
+--------------------------------------------------------------------------------+
| No TM U can decide the property of a TM P if that property can be defied by TM P. |
+--------------------------------------------------------------------------------+

// Example1:
// [Ret] true: f prints 'Y'
// false: f does not print 'Y'
bool U(Func f);

void P() {
if(U(P)) {
printf("b");
} else {
printf("Y");
}
} //---

// Example2:
// [Ret] true: f is a "pathological self-reference" function
// false: otherwise
bool U(Func f);

void P() {
if(U(P)) {
return;
} else {
P(); // if "pathological self-reference" is so defined, whatever.
}
};

--
Copyright 2021 WIJ

Re: General Undecidable Axiom(2021 WIJ)

<f2c3812c-b91c-404c-987e-2094ae330441n@googlegroups.com>

  copy mid

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

  copy link   Newsgroups: comp.lang.c
X-Received: by 2002:ac8:744d:: with SMTP id h13mr18056039qtr.308.1625968354370;
Sat, 10 Jul 2021 18:52:34 -0700 (PDT)
X-Received: by 2002:a0c:d805:: with SMTP id h5mr44363608qvj.53.1625968354245;
Sat, 10 Jul 2021 18:52:34 -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.lang.c
Date: Sat, 10 Jul 2021 18:52:33 -0700 (PDT)
In-Reply-To: <dcb3ec62-d6a3-464f-ba13-1beb1861128dn@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=58.115.187.102; posting-account=QJ9iEwoAAACyjkKjQAWQOwSEULNvZZkc
NNTP-Posting-Host: 58.115.187.102
References: <dcb3ec62-d6a3-464f-ba13-1beb1861128dn@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <f2c3812c-b91c-404c-987e-2094ae330441n@googlegroups.com>
Subject: Re: General Undecidable Axiom(2021 WIJ)
From: wyni...@gmail.com (wij)
Injection-Date: Sun, 11 Jul 2021 01:52:34 +0000
Content-Type: text/plain; charset="UTF-8"
 by: wij - Sun, 11 Jul 2021 01:52 UTC

On Sunday, 11 July 2021 at 01:38:34 UTC+8, wij wrote:
> Since the conventional HP only mentions a specific halting problem, which is
> often believed to be an invalid proof.
> See https://groups.google.com/g/comp.theory/c/RO9Z9eCabeE/m/Ka8-xS2rdEEJ
>
> I hereby claims the General Undecidable Axiom(2021 WIJ):
> +--------------------------------------------------------------------------------+
> | No TM U can decide the property of a TM P if that property can be defied by TM P. |
> +--------------------------------------------------------------------------------+
>
> // Example1:
> // [Ret] true: f prints 'Y'
> // false: f does not print 'Y'
> bool U(Func f);
>
> void P() {
> if(U(P)) {
> printf("b");
> } else {
> printf("Y");
> }
> }
> //---
>
> // Example2:
> // [Ret] true: f is a "pathological self-reference" function
> // false: otherwise
> bool U(Func f);
>
> void P() {
> if(U(P)) {
> return;
> } else {
> P(); // if "pathological self-reference" is so defined, whatever.
> }
> };
>
> --
> Copyright 2021 WIJ

The construct of P (proof of General Undecidable Axiom) is 100% correct,
intuitive and above all, REPRODUCIBLE, VERIFIABLE.

// [Ret] true: f has the (dynamic)property Q
// false: otherwise
bool U(Func f);

void P() {
if(U(P)) {
// do whatever Q defines false
} else {
// do whatever Q defines
}
};

Note: I would like to acknowledge Olcott tirelessly refuted various conventional
HP proofs over these years. So I need not to do the same work again, though not necessary.

--
Copyright 2021 WIJ

Re: General Undecidable Axiom(2021 WIJ)

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

  copy mid

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

  copy link   Newsgroups: comp.lang.c
Path: i2pn2.org!i2pn.org!eternal-september.org!reader02.eternal-september.org!.POSTED!not-for-mail
From: ben.use...@bsb.me.uk (Ben Bacarisse)
Newsgroups: comp.lang.c
Subject: Re: General Undecidable Axiom(2021 WIJ)
Date: Sun, 11 Jul 2021 03:23:18 +0100
Organization: A noiseless patient Spider
Lines: 9
Message-ID: <87pmvpy4fd.fsf@bsb.me.uk>
References: <dcb3ec62-d6a3-464f-ba13-1beb1861128dn@googlegroups.com>
Mime-Version: 1.0
Content-Type: text/plain
Injection-Info: reader02.eternal-september.org; posting-host="5b0a93f32d51033d1e588d0a2f6a1fd7";
logging-data="30097"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/IvV6KdQvOJ9gf260t7yk9zks22iaiR+4="
Cancel-Lock: sha1:/30JJcDfnAWoi01erI2rL9lT0Vo=
sha1:Y0mAp6cJR4sB0jsfg+MofpU7oa4=
X-BSB-Auth: 1.b45c607764cc0731298c.20210711032318BST.87pmvpy4fd.fsf@bsb.me.uk
 by: Ben Bacarisse - Sun, 11 Jul 2021 02:23 UTC

wij <wyniijj@gmail.com> writes:

> Since the conventional HP only mentions a specific halting problem...

Why did you post this here? You should consider topicality if you want
to be a good netizen.

--
Ben.

Re: General Undecidable Axiom(2021 WIJ)

<5de26e09-61fa-46ec-890b-fe8b389345ffn@googlegroups.com>

  copy mid

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

  copy link   Newsgroups: comp.lang.c
X-Received: by 2002:a05:620a:90c:: with SMTP id v12mr4945547qkv.190.1625970883184;
Sat, 10 Jul 2021 19:34:43 -0700 (PDT)
X-Received: by 2002:a05:620a:4e8:: with SMTP id b8mr6754748qkh.357.1625970883041;
Sat, 10 Jul 2021 19:34:43 -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.lang.c
Date: Sat, 10 Jul 2021 19:34:42 -0700 (PDT)
In-Reply-To: <87pmvpy4fd.fsf@bsb.me.uk>
Injection-Info: google-groups.googlegroups.com; posting-host=58.115.187.102; posting-account=QJ9iEwoAAACyjkKjQAWQOwSEULNvZZkc
NNTP-Posting-Host: 58.115.187.102
References: <dcb3ec62-d6a3-464f-ba13-1beb1861128dn@googlegroups.com> <87pmvpy4fd.fsf@bsb.me.uk>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <5de26e09-61fa-46ec-890b-fe8b389345ffn@googlegroups.com>
Subject: Re: General Undecidable Axiom(2021 WIJ)
From: wyni...@gmail.com (wij)
Injection-Date: Sun, 11 Jul 2021 02:34:43 +0000
Content-Type: text/plain; charset="UTF-8"
 by: wij - Sun, 11 Jul 2021 02:34 UTC

On Sunday, 11 July 2021 at 10:23:28 UTC+8, Ben Bacarisse wrote:
> wij <wyn...@gmail.com> writes:
>
> > Since the conventional HP only mentions a specific halting problem...
>
> Why did you post this here? You should consider topicality if you want
> to be a good netizen.
>
> --
> Ben.

The axiom GUA is the computation theory EVERY C programmer should know.
Because of olcott's case, I think 'some' C programmer may be not be clear
about the essential general idea and make programming mistakes.

https://groups.google.com/g/comp.theory/c/65ZaXe9Sabk
--
Copyright 2021 WIJ

Re: General Undecidable Axiom(2021 WIJ)

<scdlo3$1lq2$1@gioia.aioe.org>

  copy mid

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

  copy link   Newsgroups: comp.lang.c
Path: i2pn2.org!i2pn.org!aioe.org!IVdaTq0uPOvf5C+aclrKzQ.user.gioia.aioe.org.POSTED!not-for-mail
From: real.tr...@trolls.com (Real Troll)
Newsgroups: comp.lang.c
Subject: Re: General Undecidable Axiom(2021 WIJ)
Date: Sun, 11 Jul 2021 02:40:44 +0000
Organization: Aioe.org NNTP Server
Lines: 14
Message-ID: <scdlo3$1lq2$1@gioia.aioe.org>
References: <dcb3ec62-d6a3-464f-ba13-1beb1861128dn@googlegroups.com>
<87pmvpy4fd.fsf@bsb.me.uk>
NNTP-Posting-Host: IVdaTq0uPOvf5C+aclrKzQ.user.gioia.aioe.org
Mime-Version: 1.0
Content-Type: text/plain;
Content-Transfer-Encoding: 7bit
X-Complaints-To: abuse@aioe.org
Content-Language: en-US
X-Notice: Filtered by postfilter v. 0.9.2
 by: Real Troll - Sun, 11 Jul 2021 02:40 UTC

On 11/07/2021 03:23, Ben Bacarisse wrote:
> Why did you post this here? You should consider topicality if you want
> to be a good netizen.
>

He is the same guy who has been flooding this newsgroup. This time he
used a VPN and the posting was done through a service in Taiwan. The link given in the
post is the clue. Who in their right mind would know that 2004 link!

I think we should just stop responding and from time to time they should
be reported to their ISP or News service provider. For too long we have
been very tolerant.

Re: General Undecidable Axiom(2021 WIJ)

<30c3f945-7738-4419-9dc6-e852c0548e51n@googlegroups.com>

  copy mid

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

  copy link   Newsgroups: comp.lang.c
X-Received: by 2002:ac8:5949:: with SMTP id 9mr38905809qtz.222.1625972782745;
Sat, 10 Jul 2021 20:06:22 -0700 (PDT)
X-Received: by 2002:a05:6214:224c:: with SMTP id c12mr44279339qvc.7.1625972782576;
Sat, 10 Jul 2021 20:06:22 -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.lang.c
Date: Sat, 10 Jul 2021 20:06:22 -0700 (PDT)
In-Reply-To: <scdlo3$1lq2$1@gioia.aioe.org>
Injection-Info: google-groups.googlegroups.com; posting-host=58.115.187.102; posting-account=QJ9iEwoAAACyjkKjQAWQOwSEULNvZZkc
NNTP-Posting-Host: 58.115.187.102
References: <dcb3ec62-d6a3-464f-ba13-1beb1861128dn@googlegroups.com>
<87pmvpy4fd.fsf@bsb.me.uk> <scdlo3$1lq2$1@gioia.aioe.org>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <30c3f945-7738-4419-9dc6-e852c0548e51n@googlegroups.com>
Subject: Re: General Undecidable Axiom(2021 WIJ)
From: wyni...@gmail.com (wij)
Injection-Date: Sun, 11 Jul 2021 03:06:22 +0000
Content-Type: text/plain; charset="UTF-8"
 by: wij - Sun, 11 Jul 2021 03:06 UTC

On Sunday, 11 July 2021 at 10:41:21 UTC+8, Real Troll wrote:
> On 11/07/2021 03:23, Ben Bacarisse wrote:
> > Why did you post this here? You should consider topicality if you want
> > to be a good netizen.
> >
> He is the same guy who has been flooding this newsgroup. This time he
> used a VPN and the posting was done through a service in Taiwan. The link given in the
> post is the clue. Who in their right mind would know that 2004 link!
>
> I think we should just stop responding and from time to time they should
> be reported to their ISP or News service provider. For too long we have
> been very tolerant.

Recently the 'nation' concept in my place has been manipulated vaguely.
I would like the full name: Republic Of China (Taiwan)

Re: General Undecidable Axiom(2021 WIJ)

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

  copy mid

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

  copy link   Newsgroups: comp.lang.c
Path: i2pn2.org!i2pn.org!eternal-september.org!reader02.eternal-september.org!.POSTED!not-for-mail
From: ben.use...@bsb.me.uk (Ben Bacarisse)
Newsgroups: comp.lang.c
Subject: Re: General Undecidable Axiom(2021 WIJ)
Date: Sun, 11 Jul 2021 10:05:01 +0100
Organization: A noiseless patient Spider
Lines: 25
Message-ID: <87eec5xltu.fsf@bsb.me.uk>
References: <dcb3ec62-d6a3-464f-ba13-1beb1861128dn@googlegroups.com>
<87pmvpy4fd.fsf@bsb.me.uk>
<5de26e09-61fa-46ec-890b-fe8b389345ffn@googlegroups.com>
Mime-Version: 1.0
Content-Type: text/plain
Injection-Info: reader02.eternal-september.org; posting-host="5b0a93f32d51033d1e588d0a2f6a1fd7";
logging-data="13372"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+5SYfu+m80varPitRc5kX7CWOqToCHnUY="
Cancel-Lock: sha1:h/eTbY2HPKQwkG9LPZyPuH9HxRQ=
sha1:yiX58F21IYk/K7wMEa92/jqp88s=
X-BSB-Auth: 1.f90c18575ed08f3df405.20210711100501BST.87eec5xltu.fsf@bsb.me.uk
 by: Ben Bacarisse - Sun, 11 Jul 2021 09:05 UTC

wij <wyniijj@gmail.com> writes:

> On Sunday, 11 July 2021 at 10:23:28 UTC+8, Ben Bacarisse wrote:
>> wij <wyn...@gmail.com> writes:
>>
>> > Since the conventional HP only mentions a specific halting problem...
>>
>> Why did you post this here? You should consider topicality if you want
>> to be a good netizen.
>>
>> --
>> Ben.

It's better to trim sigs. Mine's short, but even so...

> The axiom GUA is the computation theory EVERY C programmer should
> know.

The list of things every C programmer should know that are not topical
on comp.lang.c is almost endless. Anyway, I won't go on about it. Like
PO you don't want to stay on-topic so all I can do is fix my side of the
bargain.

--
Ben.

Re: General Undecidable Axiom(2021 WIJ)

<98441224-d0b1-43ba-860d-7912c8db980bn@googlegroups.com>

  copy mid

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

  copy link   Newsgroups: comp.lang.c
X-Received: by 2002:a05:622a:34c:: with SMTP id r12mr42982684qtw.196.1626013601338;
Sun, 11 Jul 2021 07:26:41 -0700 (PDT)
X-Received: by 2002:a05:620a:11b4:: with SMTP id c20mr30518558qkk.83.1626013601164;
Sun, 11 Jul 2021 07:26: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.lang.c
Date: Sun, 11 Jul 2021 07:26:40 -0700 (PDT)
In-Reply-To: <87eec5xltu.fsf@bsb.me.uk>
Injection-Info: google-groups.googlegroups.com; posting-host=58.115.187.102; posting-account=QJ9iEwoAAACyjkKjQAWQOwSEULNvZZkc
NNTP-Posting-Host: 58.115.187.102
References: <dcb3ec62-d6a3-464f-ba13-1beb1861128dn@googlegroups.com>
<87pmvpy4fd.fsf@bsb.me.uk> <5de26e09-61fa-46ec-890b-fe8b389345ffn@googlegroups.com>
<87eec5xltu.fsf@bsb.me.uk>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <98441224-d0b1-43ba-860d-7912c8db980bn@googlegroups.com>
Subject: Re: General Undecidable Axiom(2021 WIJ)
From: wyni...@gmail.com (wij)
Injection-Date: Sun, 11 Jul 2021 14:26:41 +0000
Content-Type: text/plain; charset="UTF-8"
 by: wij - Sun, 11 Jul 2021 14:26 UTC

On Sunday, 11 July 2021 at 17:05:13 UTC+8, Ben Bacarisse wrote:
> wij <wyn...@gmail.com> writes:
>
> > On Sunday, 11 July 2021 at 10:23:28 UTC+8, Ben Bacarisse wrote:
> >> wij <wyn...@gmail.com> writes:
> >>
> >> > Since the conventional HP only mentions a specific halting problem...
> >>
> >> Why did you post this here? You should consider topicality if you want
> >> to be a good netizen.
> >>
> >> --
> >> Ben.
> It's better to trim sigs. Mine's short, but even so...

Which one? Do you mean "Copyright 2021 WIJ"? (this one must be visible to
prevent from hijack)

> > The axiom GUA is the computation theory EVERY C programmer should
> > know.
> The list of things every C programmer should know that are not topical
> on comp.lang.c is almost endless. Anyway, I won't go on about it. Like
> PO you don't want to stay on-topic so all I can do is fix my side of the
> bargain.
>
> --
> Ben.

Are one line of statement and two C-examples not enough?

From Olcott's Incident, I am surprised that many 'C/C++ programmers' do not
really understand the meaning of the Halting Problem, quite a phenomenon.
I would rather believe this is only special in comp.lang.c.

1
server_pubkey.txt

rocksolid light 0.9.8
clearnet tor