Re: Can D simulated by H terminate normally?

Liste des GroupesRevenir à theory 
Sujet : Re: Can D simulated by H terminate normally?
De : polcott333 (at) *nospam* gmail.com (olcott)
Groupes : comp.theory
Date : 01. May 2024, 17:20:51
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <v0tmkj$37lgj$3@dont-email.me>
References : 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
User-Agent : Mozilla Thunderbird
On 5/1/2024 4:02 AM, Fred. Zwarts wrote:
Op 30.apr.2024 om 20:26 schreef olcott:
On 4/30/2024 12:38 PM, Fred. Zwarts wrote:
Op 30.apr.2024 om 18:27 schreef olcott:
On 4/30/2024 11:24 AM, Fred. Zwarts wrote:
Op 30.apr.2024 om 18:10 schreef olcott:
On 4/30/2024 10:37 AM, Fred. Zwarts wrote:
Op 30.apr.2024 om 17:18 schreef olcott:
On 4/30/2024 3:46 AM, Fred. Zwarts wrote:
Op 29.apr.2024 om 21:04 schreef olcott:
On 4/29/2024 1:19 PM, Alan Mackenzie wrote:
olcott <polcott333@gmail.com> wrote:
On 4/29/2024 11:17 AM, Alan Mackenzie wrote:
olcott <polcott333@gmail.com> wrote:
On 4/29/2024 10:23 AM, Alan Mackenzie wrote:
olcott <polcott333@gmail.com> wrote:
On 4/29/2024 9:37 AM, Alan Mackenzie wrote:
In comp.theory olcott <polcott333@gmail.com> wrote:
On 4/28/2024 1:39 PM, Richard Damon wrote:
On 4/28/24 2:19 PM, olcott wrote:
>
[ .... ]
>
Even the term "halting" is problematic.
For 15 years I thought it means stops running for any reason.
>
[ .... ]
>
Having been aborted (if such were possible) is merely another final
state for a TM.
>
No it definitely is not.
>
In a TM, each state is either a final state or a non-final state. Are
you arguing for a third alternative, or do you think that "having been
aborted" is a non-final state?  If the latter, what state does the TM
change to next?
>
Aborted means completely dead as if you pulled the power cord
on your computer.
>
A turing machine has no power cord to pull.  You didn't answer my point;
you evaded it.
>
When the payroll system crashes 10% of the way through calculating
payroll we cannot say that everyone has been paid.
>
Of course not, but it has nevertheless reached a final state, an
unsatisfactory one, since it is no longer running on the computer.
>
That is not what "theory of computation" {final state} means.
>
I think it is.  What do you think "final state" means, and how is "having
been aborted" not one?
>
Core dump abnormal termination does not count as the program
correctly finished its processing.
>
There is no notion of "correct" in a turing machine.
>
In other words when a TM computes the sum of 2 + 3 and derives
999999999999999999999999999 then that is just fine.
>
Don't be idiotic.  A TM that gets that answer from those starting
conditions isn't calculating their sum; it's doing something else.
>
>
The ONLY way that we can determine if any computation is correct
is when it meets its specification. When a TM is specified to
calculate the sum of a pair of decimal integers and it derives
any decimal integer other than 5 from inputs 2,3 then it is incorrect.
>
>
Changing the subject. The question is not whether it is correct, but whether it halts. Incorrect programs exist and even those program may halt.
>
>
I had to address this:
>
On 4/29/2024 11:17 AM, Alan Mackenzie wrote:
 > There is no notion of "correct" in a turing machine.  It is either
 > running, or has reached a final state.  In the TM equivalent of "core
 > dump", a final state has most definitely been reached.
>
>
Yes, he did that because olcott changed subject from halting to 'halting with a correct result'. Does it mean that olcott is now no longer working on a halting decider, but a '"correct halting" decider', or even a 'correct decider'?
>
Alan changed the subject I addressed that point and then moved on.
If someone does not even know what "correct" means then they can't
know what "halting" means.
>
>
Again an undefined term. There are many contexts where 'correct' is not clear. It is very useful.
>
I have already proven otherwise and you simply ignored this proof.
>
If 'correct' is so easy to define, olcott must be able to provide a 'simulating correct decider', which for any given program returns whether it is correct or not.
>
I only addressed the notion of correct as an aspect of the basis
of the definition of halting
>
>
Does that mean that, according to olcott, the program
>
int main () {
   printf ("Welcom\n");
}
>
does not halt, because it is incorrect? It has a spelling error!
>
>
int H(ptr x, ptr y); // ptr is pointer to int function
>
01 int D(ptr x)
02 {
03   int Halt_Status = H(x, x);
04   if (Halt_Status)
05     HERE: goto HERE;
06   return Halt_Status;
07 }
08
09 void main()
10 {
11   H(D,D);
12 }
>
(a) It is a verified fact that D(D) simulated by H cannot
possibly reach past line 03 of D(D) simulated by H whether H
aborts its simulation or not.
>
Before we can get into the computer science of a simulating
termination analyzer we must first have mutual agreement on
the software engineering of it.
>
ONLY when we mutually agree on the (a) point can we proceed to
the next point. If we don't do it this way then everyone simply
leaps to the conclusion that I must be wrong without ever fully
understanding what I am saying.
>
 Does that mean that, according to olcott, the program
 int main () {
   printf ("Welcom\n");
}
 does not halt, because it is incorrect? It has a spelling error!
 
I will ignore replies that are silly head games.

ONLY if we agree on this point, can we continue to point (a). If we don't do it this way, then everybody can leap to the conclusion that olcott does not understand what 'correct' means and then further discussion is pointless.
--
Copyright 2024 Olcott "Talent hits a target no one else can hit; Genius
hits a target no one else can see." Arthur Schopenhauer

Date Sujet#  Auteur
28 Apr 24 * Can D simulated by H terminate normally?351olcott
28 Apr 24 +* Re: Can D simulated by H terminate normally?35Richard Damon
28 Apr 24 i`* Re: Can D simulated by H terminate normally?34olcott
28 Apr 24 i `* Re: Can D simulated by H terminate normally?33Richard Damon
28 Apr 24 i  `* Re: Can D simulated by H terminate normally?32olcott
28 Apr 24 i   +* Re: Can D simulated by H terminate normally?28Richard Damon
28 Apr 24 i   i`* Re: Can D simulated by H terminate normally?27olcott
28 Apr 24 i   i `* Re: Can D simulated by H terminate normally?26Richard Damon
28 Apr 24 i   i  `* Re: Can D simulated by H terminate normally?25olcott
28 Apr 24 i   i   `* Re: Can D simulated by H terminate normally?24Richard Damon
28 Apr 24 i   i    `* Re: Can D simulated by H terminate normally?23olcott
28 Apr 24 i   i     `* Re: Can D simulated by H terminate normally?22Richard Damon
28 Apr 24 i   i      `* Re: Can D simulated by H terminate normally?21olcott
28 Apr 24 i   i       `* Re: Can D simulated by H terminate normally?20Richard Damon
28 Apr 24 i   i        `* Re: Can D simulated by H terminate normally?19olcott
28 Apr 24 i   i         +* Re: Can D simulated by H terminate normally?13Richard Damon
28 Apr 24 i   i         i`* Re: Can D simulated by H terminate normally?12olcott
28 Apr 24 i   i         i `* Re: Can D simulated by H terminate normally?11Richard Damon
28 Apr 24 i   i         i  `* Re: Can D simulated by H terminate normally? POE10olcott
28 Apr 24 i   i         i   `* Re: Can D simulated by H terminate normally? POE9Richard Damon
28 Apr 24 i   i         i    +* Re: Can D simulated by H terminate normally? POE2olcott
29 Apr 24 i   i         i    i`- Re: Can D simulated by H terminate normally? POE1Richard Damon
29 Apr 24 i   i         i    `* Re: Can D simulated by H terminate normally? POE6olcott
29 Apr 24 i   i         i     `* Re: Can D simulated by H terminate normally? POE5Richard Damon
29 Apr 24 i   i         i      `* Re: Can D simulated by H terminate normally? POE4olcott
29 Apr 24 i   i         i       `* Re: Can D simulated by H terminate normally? POE3Richard Damon
29 Apr 24 i   i         i        `* Re: Can D simulated by H terminate normally? POE2olcott
30 Apr 24 i   i         i         `- Re: Can D simulated by H terminate normally? POE1Richard Damon
28 Apr 24 i   i         `* Re: Can D simulated by H terminate normally?5Richard Damon
28 Apr 24 i   i          `* Re: Can D simulated by H terminate normally?4olcott
28 Apr 24 i   i           `* Re: Can D simulated by H terminate normally?3Richard Damon
28 Apr 24 i   i            `* Re: Can D simulated by H terminate normally?2olcott
28 Apr 24 i   i             `- Re: Can D simulated by H terminate normally?1Richard Damon
28 Apr 24 i   `* Re: Can D simulated by H terminate normally?3Mikko
28 Apr 24 i    `* Re: Can D simulated by H terminate normally?2olcott
28 Apr 24 i     `- Re: Can D simulated by H terminate normally?1Richard Damon
28 Apr 24 `* Re: Can D simulated by H terminate normally?315Mikko
28 Apr 24  `* Re: Can D simulated by H terminate normally?314olcott
28 Apr 24   +* Re: Can D simulated by H terminate normally?311Richard Damon
28 Apr 24   i`* Re: Can D simulated by H terminate normally?310olcott
28 Apr 24   i `* Re: Can D simulated by H terminate normally?309Richard Damon
28 Apr 24   i  `* Re: Can D simulated by H terminate normally?308olcott
28 Apr 24   i   +* Re: Can D simulated by H terminate normally?305Richard Damon
28 Apr 24   i   i`* Re: Can D simulated by H terminate normally?304olcott
28 Apr 24   i   i `* Re: Can D simulated by H terminate normally?303Richard Damon
28 Apr 24   i   i  `* Re: Can D simulated by H terminate normally?302olcott
28 Apr 24   i   i   `* Re: Can D simulated by H terminate normally?301Richard Damon
28 Apr 24   i   i    +* Re: Can D simulated by H terminate normally?251olcott
28 Apr 24   i   i    i+* Re: Can D simulated by H terminate normally?99Richard Damon
28 Apr 24   i   i    ii`* Re: Can D simulated by H terminate normally?98olcott
28 Apr 24   i   i    ii `* Re: Can D simulated by H terminate normally?97Richard Damon
28 Apr 24   i   i    ii  `* Re: Can D simulated by H terminate normally?96olcott
29 Apr 24   i   i    ii   `* Re: Can D simulated by H terminate normally?95Richard Damon
29 Apr 24   i   i    ii    `* Re: Can D simulated by H terminate normally?94olcott
29 Apr 24   i   i    ii     `* Re: Can D simulated by H terminate normally?93Richard Damon
29 Apr 24   i   i    ii      `* Re: Can D simulated by H terminate normally?92olcott
30 Apr 24   i   i    ii       `* Re: Can D simulated by H terminate normally?91Richard Damon
30 Apr 24   i   i    ii        `* Re: Can D simulated by H terminate normally?90olcott
30 Apr 24   i   i    ii         `* Re: Can D simulated by H terminate normally?89Richard Damon
30 Apr 24   i   i    ii          `* Re: Can D simulated by H terminate normally?88olcott
1 May 24   i   i    ii           `* Re: Can D simulated by H terminate normally?87Richard Damon
1 May 24   i   i    ii            `* Re: Can D simulated by H terminate normally?86olcott
1 May 24   i   i    ii             `* Re: Can D simulated by H terminate normally?85Richard Damon
1 May 24   i   i    ii              `* Re: Can D simulated by H terminate normally?84olcott
2 May 24   i   i    ii               `* Re: Can D simulated by H terminate normally?83Richard Damon
2 May 24   i   i    ii                +* Re: Can D simulated by H terminate normally?6olcott
2 May 24   i   i    ii                i`* Re: Can D simulated by H terminate normally?5Richard Damon
2 May 24   i   i    ii                i `* Re: Can D simulated by H terminate normally?4olcott
2 May 24   i   i    ii                i  `* Re: Can D simulated by H terminate normally?3Richard Damon
2 May 24   i   i    ii                i   `* Re: Can D simulated by H terminate normally?2olcott
2 May 24   i   i    ii                i    `- Re: Can D simulated by H terminate normally?1Richard Damon
18 May 24   i   i    ii                +- Re: Can D simulated by H terminate normally?1Richard Damon
18 May 24   i   i    ii                +* Re: Can D simulated by H terminate normally? --- Message-ID provided4olcott
18 May 24   i   i    ii                i`* Re: Can D simulated by H terminate normally? --- Message-ID provided3Richard Damon
18 May 24   i   i    ii                i `* Re: Can D simulated by H terminate normally? --- Message-ID provided2olcott
18 May 24   i   i    ii                i  `- Re: Can D simulated by H terminate normally? --- Message-ID provided1Richard Damon
18 May 24   i   i    ii                +* Re: Can D simulated by H terminate normally? --- Message_ID Provided7olcott
18 May 24   i   i    ii                i+* Re: Can D simulated by H terminate normally? --- Message_ID Provided3Richard Damon
18 May 24   i   i    ii                ii`* Re: Can D simulated by H terminate normally? --- Message_ID Provided2olcott
18 May 24   i   i    ii                ii `- Re: Can D simulated by H terminate normally? --- Message_ID Provided1Richard Damon
18 May 24   i   i    ii                i`* Re: Can D simulated by H terminate normally? --- Message_ID Provided3Richard Damon
18 May 24   i   i    ii                i `* Re: Can D simulated by H terminate normally? --- Message_ID Provided2olcott
18 May 24   i   i    ii                i  `- Re: Can D simulated by H terminate normally? --- Message_ID Provided1Richard Damon
18 May 24   i   i    ii                +* Re: Can D simulated by H terminate normally? --- Message_ID Provided31olcott
18 May 24   i   i    ii                i`* Re: Can D simulated by H terminate normally? --- Message_ID Provided30Richard Damon
18 May 24   i   i    ii                i +* Re: Can D simulated by H terminate normally? --- Message_ID Provided2olcott
19 May 24   i   i    ii                i i`- Re: Can D simulated by H terminate normally? --- Message_ID Provided1Richard Damon
19 May 24   i   i    ii                i `* Re: Can D simulated by H terminate normally? --- Message_ID Provided27olcott
19 May 24   i   i    ii                i  `* Re: Can D simulated by H terminate normally? --- Message_ID Provided26Richard Damon
19 May 24   i   i    ii                i   `* Re: Can D simulated by H terminate normally? --- Message_ID Provided25olcott
19 May 24   i   i    ii                i    `* Re: Can D simulated by H terminate normally? --- Message_ID Provided24Richard Damon
19 May 24   i   i    ii                i     `* Re: Can D simulated by H terminate normally? --- Message_ID Provided23olcott
19 May 24   i   i    ii                i      +* Re: Can D simulated by H terminate normally? --- Message_ID Provided15immibis
19 May 24   i   i    ii                i      i+* Re: Can D simulated by H terminate normally? --- Message_ID Provided9olcott
20 May 24   i   i    ii                i      ii`* Re: Can D simulated by H terminate normally? --- Message_ID Provided8immibis
20 May 24   i   i    ii                i      ii `* Re: Can D simulated by H terminate normally? --- Message_ID Provided7olcott
20 May 24   i   i    ii                i      ii  +* Re: Can D simulated by H terminate normally? --- Message_ID Provided3immibis
20 May 24   i   i    ii                i      ii  i`* Re: Can D simulated by H terminate normally? --- Message_ID Provided2olcott
21 May 24   i   i    ii                i      ii  i `- Re: Can D simulated by H terminate normally? --- Message_ID Provided1Richard Damon
20 May 24   i   i    ii                i      ii  `* Re: Can D simulated by H terminate normally? --- Message_ID Provided3Richard Damon
20 May 24   i   i    ii                i      ii   `* Re: Can D simulated by H terminate normally? --- Message_ID Provided2olcott
19 May 24   i   i    ii                i      i`* Re: Can D simulated by H terminate normally? --- Message_ID Provided5olcott
19 May 24   i   i    ii                i      `* Re: Can D simulated by H terminate normally? --- Message_ID Provided7Richard Damon
20 May 24   i   i    ii                `* Re: Can D simulated by H terminate normally? Message_ID Provided V233olcott
29 Apr 24   i   i    i+* Re: Can D simulated by H terminate normally?44Mikko
29 Apr 24   i   i    i`* Re: Can D simulated by H terminate normally?107Alan Mackenzie
28 Apr 24   i   i    +* Re: Can D simulated by H terminate normally?2olcott
28 Apr 24   i   i    `* Re: Can D simulated by H terminate normally?47olcott
29 Apr 24   i   `* Re: Can D simulated by H terminate normally?2Mikko
29 Apr 24   `* Re: Can D simulated by H terminate normally?2Mikko

Haut de la page

Les messages affichés proviennent d'usenet.

NewsPortal