Rocksolid Light

Welcome to novaBBS (click a section below)

mail  files  register  newsreader  groups  login

Message-ID:  

The following statement is not true. The previous statement is true.


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

SubjectAuthor
* General Undecidable Axiom(2021 WIJ)wij
`- General Undecidable Axiom(2021 WIJ)wij

1
General Undecidable Axiom(2021 WIJ)

<1bf9566e-67b8-41b1-a43c-f2bcb63697c0n@googlegroups.com>

  copy mid

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

  copy link   Newsgroups: comp.theory
X-Received: by 2002:ac8:4a18:: with SMTP id x24mr38796084qtq.239.1625937830202;
Sat, 10 Jul 2021 10:23:50 -0700 (PDT)
X-Received: by 2002:a05:6902:4c4:: with SMTP id v4mr50476555ybs.360.1625937830028;
Sat, 10 Jul 2021 10:23:50 -0700 (PDT)
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!news.mixmin.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, 10 Jul 2021 10:23:49 -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: <1bf9566e-67b8-41b1-a43c-f2bcb63697c0n@googlegroups.com>
Subject: General Undecidable Axiom(2021 WIJ)
From: wyni...@gmail.com (wij)
Injection-Date: Sat, 10 Jul 2021 17:23:50 +0000
Content-Type: text/plain; charset="UTF-8"
 by: wij - Sat, 10 Jul 2021 17:23 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)

<de468d60-0b08-4501-a34a-fa3f006b0cecn@googlegroups.com>

  copy mid

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

  copy link   Newsgroups: comp.theory
X-Received: by 2002:a37:9e07:: with SMTP id h7mr21819675qke.481.1625968225517;
Sat, 10 Jul 2021 18:50:25 -0700 (PDT)
X-Received: by 2002:a25:3787:: with SMTP id e129mr55646580yba.459.1625968225258;
Sat, 10 Jul 2021 18:50:25 -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, 10 Jul 2021 18:50:24 -0700 (PDT)
In-Reply-To: <1bf9566e-67b8-41b1-a43c-f2bcb63697c0n@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: <1bf9566e-67b8-41b1-a43c-f2bcb63697c0n@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <de468d60-0b08-4501-a34a-fa3f006b0cecn@googlegroups.com>
Subject: Re: General Undecidable Axiom(2021 WIJ)
From: wyni...@gmail.com (wij)
Injection-Date: Sun, 11 Jul 2021 01:50:25 +0000
Content-Type: text/plain; charset="UTF-8"
 by: wij - Sun, 11 Jul 2021 01:50 UTC

On Sunday, 11 July 2021 at 01:23:51 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


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

1
server_pubkey.txt

rocksolid light 0.9.81
clearnet tor