Re: How do simulating termination analyzers work? ---Truth Maker Maximalism FULL_TRACE

Liste des GroupesRevenir à c theory 
Sujet : Re: How do simulating termination analyzers work? ---Truth Maker Maximalism FULL_TRACE
De : acm (at) *nospam* muc.de (Alan Mackenzie)
Groupes : comp.theory
Date : 06. Jul 2025, 18:52:20
Autres entêtes
Organisation : muc.de e.V.
Message-ID : <104ed4k$223c$1@news.muc.de>
References : 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
User-Agent : tin/2.6.4-20241224 ("Helmsdale") (FreeBSD/14.2-RELEASE-p1 (amd64))
olcott <polcott333@gmail.com> wrote:
On 7/6/2025 11:02 AM, Alan Mackenzie wrote:
[ Followup-To: set ]

In comp.theory olcott <polcott333@gmail.com> wrote:
On 7/6/2025 5:16 AM, Alan Mackenzie wrote:
olcott <polcott333@gmail.com> wrote:
On 7/5/2025 2:07 PM, Alan Mackenzie wrote:

[ .... ]

That's what I'm saying.  Those proofs of the halting theorem are free
from mistakes.

More to the point, it is YOU who cannot point to any mistakes in them.

[ .... ]

They are valid proofs.  Your work, if it contradicts those proofs (which
isn't at all clear) can thus be dismissed without further consideration.


The is the ad ignorantiam error.
https://en.wikipedia.org/wiki/Argument_from_ignorance
Atheists have made that their doctrine.

Garbage!  I say again, if your proposition contradicts a known truth,
then it is necessarily false, and can be discarded.

[ .... ]

Turing machine partial halt deciders compute the mapping
from their actual inputs to the actual behavior that these
inputs specify.

And a fourth.  There's some semblance of truth in there, but it's very
confused.


It is not at all confused. I know exactly what it means.

It's very confused to everybody but you, then.

Sloppy wording is your technique to get people to go down to your level
of discussion.  That involves many posts trying just to tie you down to
specific word meanings, and is very tiresome and unrewarding.  I decline
to get involved any further.


*Yet as I claimed you found no actual mistake*

I've found plenty of actual mistakes.  I was a software developer by
profession.


int DD()
{
  int Halt_Status = HHH(DD);
  if (Halt_Status)
    HERE: goto HERE;
  return Halt_Status;
}

Then you should know that DD simulated by HHH
according to the semantics of the C programming
language cannot possibly reach its own "return"
statement final halt state.

An argument like this is at such a low level of abstraction as to be near
valuless.  But analysing it a bit further, it is not clear exactly what
you mean by "simulated by HHH".  It's quite clear that DD will reach its
return statement if HHH(DD) returns 0.

Let me tell you the punchline so that you can
see why I said those things.

Despite what I said last post, I will actually go to the trouble of
analysing your sloppy expression.

Because directly executed Turing machines cannot
possibly be inputs to Turing machine deciders this
makes them outside of the domain of these deciders.

It's entirely unclear what a "directly executed Turing machine" is.  Most
of the time turing machines are theoretical constructs used for proving
theorems.  They can be executed, but rarely are.

No reply to this?  Do you agree with me that "directly executed turning
machine" is not a coherent notion?

typedef void (*ptr)();
int HHH(ptr P);

void DDD()
{
  HHH(DDD);
  return;
}

int main()
{
  HHH(DDD);  // DDD finite string of x86 code emulated by HHH
  DDD();     // DDD directly executed
}

It's unclear what you mean by a turing machine being an input to a turing
machine.  Read up about universal turing machines to get a bit of
background.


The directly executed DDD() is not an input to HHH.

Vague word salad again.

We have the exact same thing in the Linz proof.

You do not.  There is no concept of "directly executed" in turing
machines, and Linz's proof concerns turing machines.  Other people here
have said that one of the reasons you present your propositions as C, and
even some x86 assembly language, is to avoid the precision afforded by
turing machines.  I'd tend to agree with them, here.


When Ĥ is applied to ⟨Ĥ⟩     // adapted from bottom of page 319
Ĥ.q0 ⟨Ĥ⟩ ⊢* Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ ⊢* Ĥ.∞
  if Ĥ applied to ⟨Ĥ⟩ halts
Ĥ.q0 ⟨Ĥ⟩ ⊢* Ĥ.embedded_H ⟨Ĥ⟩ ⟨Ĥ⟩ ⊢* Ĥ.qn
  if Ĥ applied to ⟨Ĥ⟩ does not halt

Ĥ applied to ⟨Ĥ⟩ is the directly executed Ĥ ⟨Ĥ⟩
not ⟨Ĥ⟩ ⟨Ĥ⟩ correctly simulated by Ĥ.embedded_H.

https://www.liarparadox.org/Peter_Linz_HP_317-320.pdf
 >> When a partial halt decider is required to report
on the direct execution of a machine this requirement
is bogus.

See above.  That paragraph is meaningless.


That you do not understand a paragraph does not entail
that it is meaningless.

That paragraph has no precise meaning.  You could chose to reformulate it
so that it does, but I don't think you want to do that.

This means that the behavior of DD() is none of the damn
business of HHH, thus does not contradict HHH(DD)==0.
*If you disagree this only proves that you do not understand*

It's fully obscure what DD() and HHH mean, and thus impossible to
affirm or contradict the meaningless "HHH(DD)==0".


int DD()
{
  int Halt_Status = HHH(DD);
  if (Halt_Status)
    HERE: goto HERE;
  return Halt_Status;
}

Termination Analyzer HHH simulates its input until
it detects a non-terminating behavior pattern. When
HHH detects such a pattern it aborts its simulation
and returns 0. (HHH1 has identical code).

Again, it is impossible to "detect" many non-terminating patterns and (as
you have found out here) it is easy mistakenly to "detect" such a
pattern when it's not there at all.

HHH(DD) does correctly detect that DD simulated by HHH
according to the semantics pf the C programming language
cannot possibly reach its own "return"statement final
halt state.

See above.  By the way, people concerned with computation theory use
turing machines, which are well-defined, simple, and powerful.  They lack
the complexity, ambiguity, and unsuitability for theoretical work of real
world programming languages like C.


Yet they have vagueness that C does not have.

They do not.  That assertion is down to your general lack of
understanding of abstract things.

C is a fully operational high level programming language.

Yes.  Which makes it unsuitable for proving things in computation theory.

TM's are at such a low level that it could take hundreds
of instructions to just move a single value in memory.

That assertion is down to your general lack of understanding of abstract
things.  Although true, it is utterly irrelevant to the normal use of
turing machines.

[ .... ]

Any mindless idiot can disagree. Showing an error and proving
that it is an actual mistake requires much more than this.

Indeed.  All you have done is disagree with one of the proofs of the
halting theorem.  You have yet to show an error in it.  That will be
difficult, because there aren't any.


There are two errors:
(1) The false assumption that TM's report on the behavior
    of the directly executed machine "if Ĥ applied to ⟨Ĥ⟩ halts"
    (see above).

That assumption does not appear in the pertinent proofs.  Indeed, those
proofs concern turing machines, which have no concept of "directly
executed", as explained above.

(2) That simulating partial halt decider Ĥ.embedded_H is
    incorrect to transition to Ĥ.qn on input ⟨Ĥ⟩ ⟨Ĥ⟩.

The proofs concern purported halt deciders, not partial halt deciders.

As I said, these proofs are correct.

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

--
Alan Mackenzie (Nuremberg, Germany).


Date Sujet#  Auteur
17 Jun 25 * How do simulating termination analyzers work?166olcott
18 Jun 25 +* Re: How do simulating termination analyzers work?161Richard Damon
18 Jun 25 i`* Re: How do simulating termination analyzers work?160olcott
18 Jun 25 i +* Re: How do simulating termination analyzers work?133Fred. Zwarts
18 Jun 25 i i`* Re: How do simulating termination analyzers work?132olcott
18 Jun 25 i i +* Re: How do simulating termination analyzers work?6joes
18 Jun 25 i i i`* Re: How do simulating termination analyzers work?5olcott
18 Jun 25 i i i +* Re: How do simulating termination analyzers work?3joes
18 Jun 25 i i i i`* Re: How do simulating termination analyzers work?2olcott
19 Jun 25 i i i i `- Re: How do simulating termination analyzers work?1Richard Damon
19 Jun 25 i i i `- Re: How do simulating termination analyzers work?1Richard Damon
19 Jun 25 i i +* Re: How do simulating termination analyzers work?15Richard Damon
19 Jun 25 i i i`* Re: How do simulating termination analyzers work?14olcott
19 Jun 25 i i i +* Re: How do simulating termination analyzers work?7Fred. Zwarts
19 Jun 25 i i i i`* Re: How do simulating termination analyzers work?6olcott
20 Jun 25 i i i i +- Re: How do simulating termination analyzers work?1Richard Damon
20 Jun 25 i i i i `* Re: How do simulating termination analyzers work?4Fred. Zwarts
20 Jun 25 i i i i  `* Re: How do simulating termination analyzers work?3olcott
21 Jun 25 i i i i   +- Re: How do simulating termination analyzers work?1Richard Damon
22 Jun 25 i i i i   `- Re: How do simulating termination analyzers work?1Fred. Zwarts
20 Jun 25 i i i `* Re: How do simulating termination analyzers work?6Richard Damon
20 Jun 25 i i i  `* Re: How do simulating termination analyzers work?5olcott
20 Jun 25 i i i   `* Re: How do simulating termination analyzers work?4Fred. Zwarts
20 Jun 25 i i i    `* Re: How do simulating termination analyzers work?3olcott
21 Jun 25 i i i     +- Re: How do simulating termination analyzers work?1Richard Damon
22 Jun 25 i i i     `- Re: How do simulating termination analyzers work?1Fred. Zwarts
19 Jun 25 i i +* Re: How do simulating termination analyzers work?19Mikko
19 Jun 25 i i i`* Re: How do simulating termination analyzers work?18olcott
19 Jun 25 i i i +* Re: How do simulating termination analyzers work?16Fred. Zwarts
19 Jun 25 i i i i+* Re: How do simulating termination analyzers work?2olcott
20 Jun 25 i i i ii`- Re: How do simulating termination analyzers work?1Fred. Zwarts
20 Jun 25 i i i i`* Re: How do simulating termination analyzers work?13Mikko
20 Jun 25 i i i i `* Re: How do simulating termination analyzers work?12olcott
21 Jun 25 i i i i  +- Re: How do simulating termination analyzers work?1Richard Damon
21 Jun 25 i i i i  `* Re: How do simulating termination analyzers work?10Mikko
21 Jun 25 i i i i   `* Re: How do simulating termination analyzers work?9olcott
21 Jun 25 i i i i    +- Re: How do simulating termination analyzers work?1Richard Damon
22 Jun 25 i i i i    `* Re: How do simulating termination analyzers work?7Mikko
22 Jun 25 i i i i     `* Re: How do simulating termination analyzers work?6olcott
23 Jun 25 i i i i      `* Re: How do simulating termination analyzers work?5Mikko
23 Jun 25 i i i i       `* Re: How do simulating termination analyzers work?4olcott
24 Jun 25 i i i i        `* Re: How do simulating termination analyzers work?3Mikko
24 Jun 25 i i i i         `* Re: How do simulating termination analyzers work?2olcott
25 Jun 25 i i i i          `- Re: How do simulating termination analyzers work?1Mikko
20 Jun 25 i i i `- Re: How do simulating termination analyzers work?1Richard Damon
19 Jun 25 i i `* Re: How do simulating termination analyzers work?91Fred. Zwarts
19 Jun 25 i i  `* Re: How do simulating termination analyzers work?90olcott
20 Jun 25 i i   `* Re: How do simulating termination analyzers work?89Fred. Zwarts
20 Jun 25 i i    `* Re: How do simulating termination analyzers work?88olcott
21 Jun 25 i i     +- Re: How do simulating termination analyzers work?1Richard Damon
21 Jun 25 i i     `* Re: How do simulating termination analyzers work?86Mikko
21 Jun 25 i i      `* Re: How do simulating termination analyzers work?85olcott
21 Jun 25 i i       +- Re: How do simulating termination analyzers work?1Richard Damon
22 Jun 25 i i       +* Re: How do simulating termination analyzers work?78Mikko
22 Jun 25 i i       i`* Re: How do simulating termination analyzers work?77olcott
23 Jun 25 i i       i `* Re: How do simulating termination analyzers work?76Mikko
23 Jun 25 i i       i  `* Re: How do simulating termination analyzers work?75olcott
24 Jun 25 i i       i   `* Re: How do simulating termination analyzers work?74Mikko
24 Jun 25 i i       i    `* Re: How do simulating termination analyzers work?73olcott
25 Jun 25 i i       i     `* Re: How do simulating termination analyzers work?72Mikko
26 Jun 25 i i       i      `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism71Mikko
28 Jun 25 i i       i       `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism70olcott
28 Jun 25 i i       i        `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism69Mikko
28 Jun 25 i i       i         `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism68olcott
29 Jun 25 i i       i          `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism67Mikko
29 Jun 25 i i       i           `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism66olcott
30 Jun 25 i i       i            `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism65olcott
1 Jul 25 i i       i             `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism64Mikko
1 Jul 25 i i       i              `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism63olcott
2 Jul 25 i i       i               `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism62Mikko
3 Jul23:11 i i       i                `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism61olcott
3 Jul23:58 i i       i                 +- Re: How do simulating termination analyzers work? ---Truth Maker Maximalism1Richard Damon
4 Jul08:25 i i       i                 +* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism43Mikko
4 Jul13:34 i i       i                 i`* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism42olcott
4 Jul14:33 i i       i                 i +* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism37joes
4 Jul18:19 i i       i                 i i`* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism FULL_TRACE36olcott
5 Jul13:26 i i       i                 i i `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism FULL_TRACE35Alan Mackenzie
5 Jul16:00 i i       i                 i i  `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism FULL_TRACE34olcott
5 Jul20:07 i i       i                 i i   `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism FULL_TRACE33Alan Mackenzie
5 Jul20:34 i i       i                 i i    `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism FULL_TRACE32olcott
6 Jul10:50 i i       i                 i i     +- Re: How do simulating termination analyzers work? ---Truth Maker Maximalism FULL_TRACE1Fred. Zwarts
6 Jul11:16 i i       i                 i i     `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism FULL_TRACE30Alan Mackenzie
6 Jul15:28 i i       i                 i i      `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism FULL_TRACE29olcott
6 Jul17:02 i i       i                 i i       `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism FULL_TRACE28Alan Mackenzie
6 Jul17:43 i i       i                 i i        `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism FULL_TRACE27olcott
6 Jul18:52 i i       i                 i i         `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism FULL_TRACE26Alan Mackenzie
6 Jul20:14 i i       i                 i i          `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism FULL_TRACE25olcott
6 Jul22:23 i i       i                 i i           `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism FULL_TRACE24Alan Mackenzie
7 Jul04:07 i i       i                 i i            `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism FULL_TRACE23olcott
7 Jul08:49 i i       i                 i i             +* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism FULL_TRACE20Fred. Zwarts
7 Jul19:40 i i       i                 i i             i`* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism FULL_TRACE19olcott
7 Jul23:34 i i       i                 i i             i +- Re: How do simulating termination analyzers work? ---Truth Maker Maximalism FULL_TRACE1Richard Damon
8 Jul09:22 i i       i                 i i             i `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism FULL_TRACE17Fred. Zwarts
8 Jul15:33 i i       i                 i i             i  +* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism FULL_TRACE9olcott
9 Jul09:26 i i       i                 i i             i  i+* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism FULL_TRACE4Mikko
9 Jul13:26 i i       i                 i i             i  ii`* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism FULL_TRACE3olcott
10 Jul09:48 i i       i                 i i             i  ii +- Re: How do simulating termination analyzers work? ---Truth Maker Maximalism FULL_TRACE1Mikko
10 Jul12:30 i i       i                 i i             i  ii `- Re: How do simulating termination analyzers work? ---Truth Maker Maximalism FULL_TRACE1Richard Damon
9 Jul09:53 i i       i                 i i             i  i+* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism FULL_TRACE3Fred. Zwarts
9 Jul13:56 i i       i                 i i             i  ii`* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism FULL_TRACE2olcott
10 Jul12:27 i i       i                 i i             i  ii `- Re: How do simulating termination analyzers work? ---Truth Maker Maximalism FULL_TRACE1Fred. Zwarts
9 Jul12:20 i i       i                 i i             i  i`- Re: How do simulating termination analyzers work? ---Truth Maker Maximalism FULL_TRACE1Richard Damon
8 Jul16:03 i i       i                 i i             i  `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism FULL_TRACE7olcott
7 Jul15:07 i i       i                 i i             `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism FULL_TRACE2Alan Mackenzie
5 Jul09:32 i i       i                 i `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism4Mikko
4 Jul09:55 i i       i                 `* Re: How do simulating termination analyzers work? ---Truth Maker Maximalism16joes
29 Jun 25 i i       `* Re: How do simulating termination analyzers work?5Mikko
18 Jun 25 i `* Re: How do simulating termination analyzers work?26Richard Damon
18 Jun 25 +- Re: How do simulating termination analyzers work?1Mikko
19 Jun 25 `* Re: How do simulating termination analyzers work?3Mikko

Haut de la page

Les messages affichés proviennent d'usenet.

NewsPortal