Re: Halting Problem: What Constitutes Pathological Input

Liste des GroupesRevenir à theory 
Sujet : Re: Halting Problem: What Constitutes Pathological Input
De : richard (at) *nospam* damon-family.org (Richard Damon)
Groupes : comp.theory
Date : 07. May 2025, 03:34:24
Autres entêtes
Organisation : i2pn2 (i2pn.org)
Message-ID : <dabb21b6077fbe3c2496ef84da115e6db6370bc4@i2pn2.org>
References : 1 2 3 4 5 6 7 8 9 10
User-Agent : Mozilla Thunderbird
On 5/6/25 9:47 PM, olcott wrote:
On 5/6/2025 5:43 PM, Richard Damon wrote:
On 5/6/25 11:10 AM, olcott wrote:
On 5/6/2025 4:26 AM, Mikko wrote:
On 2025-05-05 18:14:25 +0000, olcott said:
>
On 5/5/2025 11:16 AM, dbush wrote:
On 5/5/2025 12:13 PM, Mr Flibble wrote:
On Mon, 05 May 2025 11:58:50 -0400, dbush wrote:
>
On 5/5/2025 11:51 AM, olcott wrote:
On 5/5/2025 10:17 AM, Mr Flibble wrote:
What constitutes halting problem pathological input:
>
Input that would cause infinite recursion when using a decider of the
simulating kind.
>
Such input forms a category error which results in the halting problem
being ill-formed as currently defined.
>
/Flibble
>
I prefer to look at it as a counter-example that refutes all of the
halting problem proofs.
>
Which start with the assumption that the following mapping is computable
and that (in this case) HHH computes it:
>
>
Given any algorithm (i.e. a fixed immutable sequence of instructions) X
described as <X> with input Y:
>
A solution to the halting problem is an algorithm H that computes the
following mapping:
>
(<X>,Y) maps to 1 if and only if X(Y) halts when executed directly
(<X>,Y) maps to 0 if and only if X(Y) does not halt when executed
directly
>
>
>
int DD()
{
    int Halt_Status = HHH(DD);
    if (Halt_Status)
      HERE: goto HERE;
    return Halt_Status;
}
>
https://github.com/plolcott/x86utm
>
The x86utm operating system includes fully operational HHH and DD.
https://github.com/plolcott/x86utm/blob/master/Halt7.c
>
When HHH computes the mapping from *its input* to the behavior of DD
emulated by HHH this includes HHH emulating itself emulating DD. This
matches the infinite recursion behavior pattern.
>
Thus the Halting Problem's "impossible" input is correctly determined
to be non-halting.
>
>
>
Which is a contradiction.  Therefore the assumption that the above
mapping is computable is proven false, as Linz and others have proved
and as you have *explicitly* agreed is correct.
>
The category (type) error manifests in all extant halting problem proofs
including Linz.  It is impossible to prove something which is ill- formed
in the first place.
>
/Flibble
>
All algorithms either halt or do not halt when executed directly. Therefore the problem is not ill formed.
>
When BOTH Boolean RETURN VALUES are the wrong answer
THEN THE PROBLEM IS ILL-FORMED. Self-contradiction must
be screened out as semantically incorrect.
>
Irrelevant. One of the boolean values (the one not returned) is the
right one as can be determined e.g. with an UTM.
>
You only get something that appears that way when a false assumption is made, namely that the halting function is computable.
>
The mapping from the input HHH(DD) finite string of
machine code to DOES SPECIFY RECURSIVE EMULATION
THAT WOULD PREVENT DD FROM EVER HALTING.
>
No, it does not. HHH returns 0 and DD halts.
>
>
You can't show the detailed steps of the execution
trace of DD emulated by HHH (according to the rules
of the x86 language) where DD halts because you are wrong.
>
Because a trace of DD correctly emulatd by HHH doesn't exist as HHH doesn't correctly emulate DD
>
 Show what the execution trace of DD emulated by HHH
according to the rules of the x86 language should be
 
Since HHH doesn't do that, you are just proving that your "logic" is based on the assumption of the impossible.
As I pointed out elsewhere, you have published the trace of the CORRECT emulation of DD yourself (it just isn't done by HHH, which never does it).
Either look at your trace generated by main calling DD directly.
Or look at the trace of main calling HHH(DD) and change the address if main prior to that call to be the address of DD
Try to show the error in that.

_DD()
[00002133] 55         push ebp      ; housekeeping
[00002134] 8bec       mov ebp,esp   ; housekeeping
[00002136] 51         push ecx      ; make space for local
[00002137] 6833210000 push 00002133 ; push DD
[0000213c] e882f4ffff call 000015c3 ; call HHH(DD)
[00002141] 83c404     add esp,+04
[00002144] 8945fc     mov [ebp-04],eax
[00002147] 837dfc00   cmp dword [ebp-04],+00
[0000214b] 7402       jz 0000214f
[0000214d] ebfe       jmp 0000214d
[0000214f] 8b45fc     mov eax,[ebp-04]
[00002152] 8be5       mov esp,ebp
[00002154] 5d         pop ebp
[00002155] c3         ret
Size in bytes:(0035) [00002155]
 

Date Sujet#  Auteur
5 May 25 * Re: Halting Problem: What Constitutes Pathological Input334olcott
5 May 25 +* Re: Halting Problem: What Constitutes Pathological Input308dbush
5 May 25 i+* Re: Halting Problem: What Constitutes Pathological Input44dbush
5 May 25 ii`* Re: Halting Problem: What Constitutes Pathological Input43olcott
5 May 25 ii +* Re: Halting Problem: What Constitutes Pathological Input23dbush
5 May 25 ii i+* Re: Halting Problem: What Constitutes Pathological Input21olcott
5 May 25 ii ii`* Re: Halting Problem: What Constitutes Pathological Input20dbush
5 May 25 ii ii `* Re: Halting Problem: What Constitutes Pathological Input19olcott
5 May 25 ii ii  +- Re: Halting Problem: What Constitutes Pathological Input1dbush
6 May 25 ii ii  +* Re: Halting Problem: What Constitutes Pathological Input16Mikko
6 May 25 ii ii  i`* Re: Halting Problem: What Constitutes Pathological Input15olcott
6 May 25 ii ii  i +* Re: Halting Problem: What Constitutes Pathological Input9Richard Damon
7 May 25 ii ii  i i`* Re: Halting Problem: What Constitutes Pathological Input8olcott
7 May 25 ii ii  i i +- Re: Halting Problem: What Constitutes Pathological Input1Mikko
7 May 25 ii ii  i i `* Re: Halting Problem: What Constitutes Pathological Input6Fred. Zwarts
7 May 25 ii ii  i i  `* Re: Halting Problem: What Constitutes Pathological Input5Richard Heathfield
7 May 25 ii ii  i i   +* Re: Halting Problem: What Constitutes Pathological Input2Richard Heathfield
7 May 25 ii ii  i i   i`- Re: Halting Problem: What Constitutes Pathological Input1Richard Heathfield
7 May 25 ii ii  i i   +- Re: Halting Problem: What Constitutes Pathological Input1Richard Damon
8 May 25 ii ii  i i   `- Re: Halting Problem: What Constitutes Pathological Input1Mikko
7 May 25 ii ii  i +- Re: Halting Problem: What Constitutes Pathological Input1Mikko
7 May 25 ii ii  i `* Re: Halting Problem: What Constitutes Pathological Input4joes
7 May 25 ii ii  i  `* Re: Halting Problem: What Constitutes Pathological Input3olcott
7 May 25 ii ii  i   +- Re: Halting Problem: What Constitutes Pathological Input1dbush
8 May 25 ii ii  i   `- Re: Halting Problem: What Constitutes Pathological Input1Richard Damon
6 May 25 ii ii  `- Re: Halting Problem: What Constitutes Pathological Input1joes
6 May 25 ii i`- Re: Halting Problem: What Constitutes Pathological Input1joes
6 May 25 ii +* Re: Halting Problem: What Constitutes Pathological Input2Fred. Zwarts
6 May 25 ii i`- Re: Halting Problem: What Constitutes Pathological Input1Richard Heathfield
6 May 25 ii +* Re: Halting Problem: What Constitutes Pathological Input16Mikko
6 May 25 ii i`* Re: Halting Problem: What Constitutes Pathological Input15olcott
6 May 25 ii i `* Re: Halting Problem: What Constitutes Pathological Input14Richard Damon
7 May 25 ii i  +* Re: Halting Problem: What Constitutes Pathological Input6olcott
7 May 25 ii i  i+- Re: Halting Problem: What Constitutes Pathological Input1dbush
7 May 25 ii i  i`* Re: Halting Problem: What Constitutes Pathological Input4Richard Damon
7 May 25 ii i  i `* Re: Halting Problem: What Constitutes Pathological Input3olcott
7 May 25 ii i  i  +- Re: Halting Problem: What Constitutes Pathological Input1dbush
7 May 25 ii i  i  `- Re: Halting Problem: What Constitutes Pathological Input1Richard Damon
7 May 25 ii i  `* Re: Halting Problem: What Constitutes Pathological Input7Richard Damon
7 May 25 ii i   `* Re: Halting Problem: What Constitutes Pathological Input6olcott
7 May 25 ii i    +* Re: Halting Problem: What Constitutes Pathological Input4dbush
7 May 25 ii i    i`* Re: Halting Problem: What Constitutes Pathological Input3olcott
7 May 25 ii i    i +- Re: Halting Problem: What Constitutes Pathological Input1Richard Damon
7 May 25 ii i    i `- Re: Halting Problem: What Constitutes Pathological Input1dbush
7 May 25 ii i    `- Re: Halting Problem: What Constitutes Pathological Input1Richard Damon
6 May 25 ii `- Re: Halting Problem: What Constitutes Pathological Input1joes
5 May 25 i`* Re: Halting Problem: What Constitutes Pathological Input263olcott
5 May 25 i +* Re: Halting Problem: What Constitutes Pathological Input231dbush
5 May 25 i i+* Re: Halting Problem: What Constitutes Pathological Input2olcott
6 May 25 i ii`- Re: Halting Problem: What Constitutes Pathological Input1Fred. Zwarts
5 May 25 i i+* Re: Halting Problem: What Constitutes Pathological Input226olcott
5 May 25 i ii+* Re: Halting Problem: What Constitutes Pathological Input224dbush
5 May 25 i iii`* Re: Halting Problem: What Constitutes Pathological Input223olcott
5 May 25 i iii +* Re: Halting Problem: What Constitutes Pathological Input219Richard Heathfield
5 May 25 i iii i`* Re: Halting Problem: What Constitutes Pathological Input218olcott
5 May 25 i iii i +* Re: Halting Problem: What Constitutes Pathological Input195dbush
5 May 25 i iii i i`* Re: Halting Problem: What Constitutes Pathological Input194olcott
5 May 25 i iii i i +* Re: Halting Problem: What Constitutes Pathological Input186dbush
5 May 25 i iii i i i+* Re: Halting Problem: What Constitutes Pathological Input172olcott
5 May 25 i iii i i ii+* Re: Halting Problem: What Constitutes Pathological Input170dbush
5 May 25 i iii i i iii`* Re: Halting Problem: What Constitutes Pathological Input169olcott
5 May 25 i iii i i iii `* Re: Halting Problem: What Constitutes Pathological Input168dbush
5 May 25 i iii i i iii  +* Re: Halting Problem: What Constitutes Pathological Input151olcott
5 May 25 i iii i i iii  i+- Re: Halting Problem: What Constitutes Pathological Input1Richard Heathfield
5 May 25 i iii i i iii  i`* Re: Halting Problem: What Constitutes Pathological Input149dbush
5 May 25 i iii i i iii  i `* Re: Halting Problem: What Constitutes Pathological Input148olcott
5 May 25 i iii i i iii  i  `* Re: Halting Problem: What Constitutes Pathological Input147dbush
6 May 25 i iii i i iii  i   `* Re: Halting Problem: What Constitutes Pathological Input146olcott
6 May 25 i iii i i iii  i    +* Re: Halting Problem: What Constitutes Pathological Input73dbush
6 May 25 i iii i i iii  i    i`* Re: Halting Problem: What Constitutes Pathological Input72olcott
6 May 25 i iii i i iii  i    i `* Re: Halting Problem: What Constitutes Pathological Input71dbush
6 May 25 i iii i i iii  i    i  `* Re: Halting Problem: What Constitutes Pathological Input70olcott
6 May 25 i iii i i iii  i    i   `* Re: Halting Problem: What Constitutes Pathological Input69dbush
6 May 25 i iii i i iii  i    i    `* Re: Halting Problem: What Constitutes Pathological Input68olcott
6 May 25 i iii i i iii  i    i     `* Re: Halting Problem: What Constitutes Pathological Input67dbush
6 May 25 i iii i i iii  i    i      `* Re: Halting Problem: What Constitutes Pathological Input66olcott
6 May 25 i iii i i iii  i    i       +* Re: Halting Problem: What Constitutes Pathological Input11dbush
6 May 25 i iii i i iii  i    i       i`* Re: Halting Problem: What Constitutes Pathological Input10olcott
6 May 25 i iii i i iii  i    i       i `* Re: Halting Problem: What Constitutes Pathological Input9dbush
6 May 25 i iii i i iii  i    i       i  `* Re: Halting Problem: What Constitutes Pathological Input8olcott
6 May 25 i iii i i iii  i    i       i   `* Re: Halting Problem: What Constitutes Pathological Input7dbush
6 May 25 i iii i i iii  i    i       i    `* Re: Halting Problem: What Constitutes Pathological Input6olcott
6 May 25 i iii i i iii  i    i       i     `* Re: Halting Problem: What Constitutes Pathological Input5dbush
6 May 25 i iii i i iii  i    i       i      `* Re: Halting Problem: What Constitutes Pathological Input4olcott
6 May 25 i iii i i iii  i    i       i       `* Re: Halting Problem: What Constitutes Pathological Input3dbush
6 May 25 i iii i i iii  i    i       i        `* Re: Halting Problem: What Constitutes Pathological Input2olcott
6 May 25 i iii i i iii  i    i       i         `- Re: Halting Problem: What Constitutes Pathological Input1dbush
6 May 25 i iii i i iii  i    i       `* Re: Halting Problem: What Constitutes Pathological Input54Richard Damon
6 May 25 i iii i i iii  i    i        `* Re: Halting Problem: What Constitutes Pathological Input53olcott
6 May 25 i iii i i iii  i    i         +- Re: Halting Problem: What Constitutes Pathological Input1Fred. Zwarts
6 May 25 i iii i i iii  i    i         +* Re: Halting Problem: What Constitutes Pathological Input31joes
6 May 25 i iii i i iii  i    i         i`* Re: Halting Problem: What Constitutes Pathological Input30olcott
6 May 25 i iii i i iii  i    i         i +* Re: Halting Problem: What Constitutes Pathological Input13dbush
6 May 25 i iii i i iii  i    i         i i`* Re: Halting Problem: What Constitutes Pathological Input12olcott
6 May 25 i iii i i iii  i    i         i i +* Re: Halting Problem: What Constitutes Pathological Input7dbush
6 May 25 i iii i i iii  i    i         i i i`* Re: Halting Problem: What Constitutes Pathological Input6olcott
6 May 25 i iii i i iii  i    i         i i i +* Re: Halting Problem: What Constitutes Pathological Input4Richard Damon
7 May 25 i iii i i iii  i    i         i i i i`* Re: Halting Problem: What Constitutes Pathological Input3olcott
7 May 25 i iii i i iii  i    i         i i i i +- Re: Halting Problem: What Constitutes Pathological Input1joes
7 May 25 i iii i i iii  i    i         i i i i `- Re: Halting Problem: What Constitutes Pathological Input1Richard Damon
7 May 25 i iii i i iii  i    i         i i i `- Re: Halting Problem: What Constitutes Pathological Input1dbush
6 May 25 i iii i i iii  i    i         i i `* Re: Halting Problem: What Constitutes Pathological Input4Richard Damon
6 May 25 i iii i i iii  i    i         i `* Re: Halting Problem: What Constitutes Pathological Input16Richard Damon
6 May 25 i iii i i iii  i    i         +* Re: Halting Problem: What Constitutes Pathological Input13Richard Damon
7 May 25 i iii i i iii  i    i         `* Re: Halting Problem: What Constitutes Pathological Input7Mikko
6 May 25 i iii i i iii  i    `* Re: Halting Problem: What Constitutes Pathological Input72Richard Heathfield
5 May 25 i iii i i iii  `* Re: Halting Problem: What Constitutes Pathological Input16Richard Heathfield
5 May 25 i iii i i ii`- Re: Halting Problem: What Constitutes Pathological Input1Richard Heathfield
5 May 25 i iii i i i+* Re: Halting Problem: What Constitutes Pathological Input3Alan Mackenzie
5 May 25 i iii i i i`* Re: Halting Problem: What Constitutes Pathological Input10Richard Heathfield
6 May 25 i iii i i +- Re: Halting Problem: What Constitutes Pathological Input1Fred. Zwarts
6 May 25 i iii i i `* Re: Halting Problem: What Constitutes Pathological Input6Mikko
5 May 25 i iii i +* Re: Halting Problem: What Constitutes Pathological Input20Richard Heathfield
6 May 25 i iii i `* Re: Halting Problem: What Constitutes Pathological Input2joes
5 May 25 i iii +- Re: Halting Problem: What Constitutes Pathological Input1dbush
6 May 25 i iii +- Re: Halting Problem: What Constitutes Pathological Input1Fred. Zwarts
6 May 25 i iii `- Re: Halting Problem: What Constitutes Pathological Input1Fred. Zwarts
6 May 25 i ii`- Re: Halting Problem: What Constitutes Pathological Input1Fred. Zwarts
6 May 25 i i+- Re: Halting Problem: What Constitutes Pathological Input1Fred. Zwarts
6 May 25 i i`- Re: Halting Problem: What Constitutes Pathological Input1Mikko
6 May 25 i `* Re: Halting Problem: What Constitutes Pathological Input31Mikko
5 May 25 +- Re: Halting Problem: What Constitutes Pathological Input1Richard Heathfield
5 May 25 +* Re: Halting Problem: What Constitutes Pathological Input2olcott
6 May 25 +* Re: Halting Problem: What Constitutes Pathological Input21Richard Damon
6 May 25 `- Re: Halting Problem: What Constitutes Pathological Input1joes

Haut de la page

Les messages affichés proviennent d'usenet.

NewsPortal