Rocksolid Light

Welcome to novaBBS (click a section below)

mail  files  register  newsreader  groups  login

Message-ID:  

Help! I'm trapped in a Chinese computer factory!


devel / comp.lang.c / representing binary number naturally

SubjectAuthor
* representing binary number naturallyPrometheus
+* Re: representing binary number naturallyLew Pitcher
|`- Re: The Halting Problem proofs have a fatal flaw [ Visual Studioolcott
`- Re: representing binary number naturallyBart

1
representing binary number naturally

<09b41edc-a57b-4521-ba66-8517b55f2e69n@googlegroups.com>

  copy mid

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

  copy link   Newsgroups: comp.lang.c
X-Received: by 2002:a05:622a:150:b0:35d:4775:53be with SMTP id v16-20020a05622a015000b0035d477553bemr587133qtw.35.1664191893351;
Mon, 26 Sep 2022 04:31:33 -0700 (PDT)
X-Received: by 2002:a9d:6c58:0:b0:65b:e62a:cdcf with SMTP id
g24-20020a9d6c58000000b0065be62acdcfmr8859267otq.331.1664191893021; Mon, 26
Sep 2022 04:31:33 -0700 (PDT)
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!feed1.usenet.blueworldhosting.com!peer03.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.c
Date: Mon, 26 Sep 2022 04:31:32 -0700 (PDT)
Injection-Info: google-groups.googlegroups.com; posting-host=157.245.34.74; posting-account=DbFc4woAAAAdT4e2Z_5sQo4vY5iRbZQq
NNTP-Posting-Host: 157.245.34.74
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <09b41edc-a57b-4521-ba66-8517b55f2e69n@googlegroups.com>
Subject: representing binary number naturally
From: okpala...@gmail.com (Prometheus)
Injection-Date: Mon, 26 Sep 2022 11:31:33 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Received-Bytes: 2317
 by: Prometheus - Mon, 26 Sep 2022 11:31 UTC

# REPRESENTING BINARY NUMBERS NATURALLY.

What is the Problem?
-------------------
In Computer Science, we have various ways to represent numbers.

However,we have to choose the best way to represent numbers.This is especially true in strongly typed high level abstract languages like C/C++/Java etc.Futhermore, computer sciencient developed a binary number system called two complement;it is used to perform arthematic on binary numbers which can be transferred to other systems.This include decimal(base 10), hexadecimal(base 16), octal(base 8) etc.Two complement enables us to represent negative numbers with a signifance of the right most bit being a 1.

Is there a data structure and algorithm extension of two complement that handle overflow in such way that is indiscremnint of the type of data(binary number type) provided not occupy memory thier should not?

For example,and 8 ,and 16 bit can be stored together under one class(blueprint for an object) and support the performing of operations that will not result any overflow. The importance of this data structure is that binary number should apper naturally looking and be more effient as if their were represented as regular numbers , not taking memory their should not occupy.

Re: representing binary number naturally

<tgsbuj$3o239$1@dont-email.me>

  copy mid

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

  copy link   Newsgroups: comp.lang.c comp.theory
Followup: comp.theory
Path: i2pn2.org!i2pn.org!eternal-september.org!reader01.eternal-september.org!.POSTED!not-for-mail
From: lew.pitc...@digitalfreehold.ca (Lew Pitcher)
Newsgroups: comp.lang.c, comp.theory
Subject: Re: representing binary number naturally
Followup-To: comp.theory
Date: Mon, 26 Sep 2022 14:11:31 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 39
Message-ID: <tgsbuj$3o239$1@dont-email.me>
References: <09b41edc-a57b-4521-ba66-8517b55f2e69n@googlegroups.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Mon, 26 Sep 2022 14:11:31 -0000 (UTC)
Injection-Info: reader01.eternal-september.org; posting-host="9904aa31678d4c538eac8ad9984582a0";
logging-data="3934313"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18ddSmETwrgwss76To6xDWOODyJUHMQzYU="
User-Agent: Pan/0.139 (Sexual Chocolate; GIT bf56508
git://git.gnome.org/pan2)
Cancel-Lock: sha1:of3bKRHt7uXMfJ0/KNt+cIsTsS0=
 by: Lew Pitcher - Mon, 26 Sep 2022 14:11 UTC

Sorry, guy, but comp.lang.c is not the place to discuss this
sort of thing. Why don't you try comp.theory ?

(Followups set to comp.theory)

On Mon, 26 Sep 2022 04:31:32 -0700, Prometheus wrote:

> # REPRESENTING BINARY NUMBERS NATURALLY.
>
> What is the Problem?
> -------------------
> In Computer Science, we have various ways to represent numbers.
>
> However,we have to choose the best way to represent numbers.This is
> especially true in strongly typed high level abstract languages like
> C/C++/Java etc.Futhermore, computer sciencient developed a binary number
> system called two complement;it is used to perform arthematic on binary
> numbers which can be transferred to other systems.This include
> decimal(base 10), hexadecimal(base 16), octal(base 8) etc.Two complement
> enables us to represent negative numbers with a signifance of the right
> most bit being a 1.
>
> Is there a data structure and algorithm extension of two complement that
> handle overflow in such way that is indiscremnint of the type of
> data(binary number type) provided not occupy memory thier should not?
>
> For example,and 8 ,and 16 bit can be stored together under one
> class(blueprint for an object) and support the performing of operations
> that will not result any overflow. The importance of this data structure
> is that binary number should apper naturally looking and be more effient
> as if their were represented as regular numbers , not taking memory
> their should not occupy.

--
Lew Pitcher
"In Skills, We Trust"

Re: representing binary number naturally

<tgsbu9$1r1$1@gioia.aioe.org>

  copy mid

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

  copy link   Newsgroups: comp.lang.c
Path: i2pn2.org!i2pn.org!aioe.org!uabYU4OOdxBKlV2hpj27FQ.user.46.165.242.75.POSTED!not-for-mail
From: bc...@freeuk.com (Bart)
Newsgroups: comp.lang.c
Subject: Re: representing binary number naturally
Date: Mon, 26 Sep 2022 15:11:22 +0100
Organization: Aioe.org NNTP Server
Message-ID: <tgsbu9$1r1$1@gioia.aioe.org>
References: <09b41edc-a57b-4521-ba66-8517b55f2e69n@googlegroups.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Info: gioia.aioe.org; logging-data="1889"; posting-host="uabYU4OOdxBKlV2hpj27FQ.user.gioia.aioe.org"; mail-complaints-to="abuse@aioe.org";
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101
Thunderbird/91.13.1
X-Notice: Filtered by postfilter v. 0.9.2
 by: Bart - Mon, 26 Sep 2022 14:11 UTC

On 26/09/2022 12:31, Prometheus wrote:
> # REPRESENTING BINARY NUMBERS NATURALLY.
>
> What is the Problem?
> -------------------
> In Computer Science, we have various ways to represent numbers.
>
> However,we have to choose the best way to represent numbers.This is especially true in strongly typed high level abstract languages like C/C++/Java etc.Futhermore, computer sciencient developed a binary number system called two complement;it is used to perform arthematic on binary numbers which can be transferred to other systems.This include decimal(base 10), hexadecimal(base 16), octal(base 8) etc.Two complement enables us to represent negative numbers with a signifance of the right most bit being a 1.
>
> Is there a data structure and algorithm extension of two complement that handle overflow in such way that is indiscremnint of the type of data(binary number type) provided not occupy memory thier should not?
>
> For example,and 8 ,and 16 bit can be stored together under one class(blueprint for an object) and support the performing of operations that will not result any overflow. The importance of this data structure is that binary number should apper naturally looking and be more effient as if their were represented as regular numbers , not taking memory their should not occupy.

8-bit and 16-bit integers will usually occupy one byte and two bytes
respectively. They're not going to use any more memory than that, on any
sane byte-addressed machine, which is nearly all of them these days.

Overflow (both signed and unsigned) can be usually detected by processor
flags, but this is up to the language to take care of.

In C, unsigned overflow is legal behaviour, and signed overflow is
undefined.

For anything different, you need to program it yourself. Or some C
compilers have options to detect and trap signed overflow.

Do you have a particular problem to solve, or are writing an article
about the subject, or just quoting one?

Re: The Halting Problem proofs have a fatal flaw [ Visual Studio c/c++ project ]

<tgv4ah$3a6r$2@dont-email.me>

  copy mid

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

  copy link   Newsgroups: comp.theory sci.logic comp.lang.c comp.lang.c++
Followup: comp.theory
Path: i2pn2.org!i2pn.org!eternal-september.org!reader01.eternal-september.org!.POSTED!not-for-mail
From: polco...@gmail.com (olcott)
Newsgroups: comp.theory,sci.logic,comp.lang.c,comp.lang.c++
Subject: Re: The Halting Problem proofs have a fatal flaw [ Visual Studio
c/c++ project ]
Followup-To: comp.theory
Date: Tue, 27 Sep 2022 10:19:44 -0500
Organization: A noiseless patient Spider
Lines: 245
Message-ID: <tgv4ah$3a6r$2@dont-email.me>
References: <09b41edc-a57b-4521-ba66-8517b55f2e69n@googlegroups.com>
<tgsbuj$3o239$1@dont-email.me> <20220926090445.547@kylheku.com>
<tgsmn5$1f9f$1@gioia.aioe.org> <20220926181945.00004bd9@reddwarf.jmc.corp>
<tgso9c$3pmcj$1@dont-email.me> <20220926184828.00006118@reddwarf.jmc.corp>
<tgsphq$3pmcj$2@dont-email.me> <plqYK.699456$%q2.567937@fx15.ams1>
<tgtdjp$k83$1@gioia.aioe.org> <w1rYK.918307$%fx6.414214@fx14.ams1>
<tgtftj$3rs8a$1@dont-email.me> <0ArYK.1232167$Eeb3.1026224@fx05.ams1>
<tgthrr$1rdj$1@gioia.aioe.org> <C8sYK.918322$%fx6.826267@fx14.ams1>
<tgtjg9$bor$1@gioia.aioe.org> <sEsYK.1635575$ulh3.952349@fx06.ams1>
<tgtmhj$3v66k$1@dont-email.me> <f8tYK.543903$wkZ5.502025@fx11.ams1>
<tgtntf$3v66k$3@dont-email.me> <8FtYK.699498$%q2.43782@fx15.ams1>
<tgtp7j$5p8$1@gioia.aioe.org> <o6uYK.242772$YVsf.228210@fx01.ams1>
<tgtrs5$rgq$1@gioia.aioe.org> <%IAYK.567410$YC96.259830@fx12.ams1>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Tue, 27 Sep 2022 15:19:45 -0000 (UTC)
Injection-Info: reader01.eternal-september.org; posting-host="32504491b556e3cdf04c29005970a890";
logging-data="108763"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX186vgKrtDKsxtlAfTt4HO4m"
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101
Thunderbird/102.3.0
Cancel-Lock: sha1:Et9eQOxg5yRKRa7w6bK7Kvjawro=
In-Reply-To: <%IAYK.567410$YC96.259830@fx12.ams1>
Content-Language: en-US
 by: olcott - Tue, 27 Sep 2022 15:19 UTC

On 9/27/2022 6:00 AM, Richard Damon wrote:
> On 9/26/22 11:49 PM, olcott wrote:
>> On 9/26/2022 10:29 PM, Richard Damon wrote:
>>> On 9/26/22 11:04 PM, olcott wrote:
>>>> On 9/26/2022 9:58 PM, Richard Damon wrote:
>>>>>
>>>>> On 9/26/22 10:41 PM, olcott wrote:
>>>>>> On 9/26/2022 9:23 PM, Richard Damon wrote:
>>>>>>> On 9/26/22 10:18 PM, olcott wrote:
>>>>>>>> On 9/26/2022 8:49 PM, Richard Damon wrote:
>>>>>>>>> On 9/26/22 9:26 PM, olcott wrote:
>>>>>>>>>> On 9/26/2022 8:15 PM, Richard Damon wrote:
>>>>>>>>>>> On 9/26/22 8:58 PM, olcott wrote:
>>>>>>>>>>>> On 9/26/2022 7:36 PM, Richard Damon wrote:
>>>>>>>>>>>>> On 9/26/22 8:25 PM, olcott wrote:
>>>>>>>>>>>>>> On 9/26/2022 6:59 PM, Richard Damon wrote:
>>>>>>>>>>>>>>> On 9/26/22 7:46 PM, olcott wrote:
>>>>>>>>>>>>>>>> On 9/26/2022 6:12 PM, Richard Damon wrote:
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> On 9/26/22 2:03 PM, olcott wrote:
>>>>>>>>>>>>>>>>>> On 9/26/2022 12:48 PM, Mr Flibble wrote:
>>>>>>>>>>>>>>>>>>> On Mon, 26 Sep 2022 12:42:02 -0500
>>>>>>>>>>>>>>>>>>> olcott <polcott2@gmail.com> wrote:
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>> On 9/26/2022 12:19 PM, Mr Flibble wrote:
>>>>>>>>>>>>>>>>>>>>> On Mon, 26 Sep 2022 12:15:15 -0500
>>>>>>>>>>>>>>>>>>>>> olcott <none-ya@beez-waxes.com> wrote:
>>>>>>>>>>>>>>>>>>>>>> On 9/26/2022 11:05 AM, Kaz Kylheku wrote:
>>>>>>>>>>>>>>>>>>>>>>> On 2022-09-26, Lew Pitcher
>>>>>>>>>>>>>>>>>>>>>>> <lew.pitcher@digitalfreehold.ca>
>>>>>>>>>>>>>>>>>>>>>>> wrote:
>>>>>>>>>>>>>>>>>>>>>>>> Sorry, guy, but comp.lang.c is not the place to
>>>>>>>>>>>>>>>>>>>>>>>> discuss this
>>>>>>>>>>>>>>>>>>>>>>>> sort of thing. Why don't you try comp.theory ?
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>> Because Olcott postings will push you out of
>>>>>>>>>>>>>>>>>>>>>>> visibility?
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>> If people would give me a fair and honest review I
>>>>>>>>>>>>>>>>>>>>>> could quit
>>>>>>>>>>>>>>>>>>>>>> posting. You gave up on me before I could point
>>>>>>>>>>>>>>>>>>>>>> out the error with
>>>>>>>>>>>>>>>>>>>>>> the diagonalization argument that you relied on
>>>>>>>>>>>>>>>>>>>>>> for your rebuttal:
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>> The diagonalization argument merely proves that no
>>>>>>>>>>>>>>>>>>>>>> value returned
>>>>>>>>>>>>>>>>>>>>>> to P from its call to H can possibly be correct.
>>>>>>>>>>>>>>>>>>>>>> This argument
>>>>>>>>>>>>>>>>>>>>>> totally ignores that the return value from H is
>>>>>>>>>>>>>>>>>>>>>> unreachable by its
>>>>>>>>>>>>>>>>>>>>>> simulated P caller when H is based on a simulating
>>>>>>>>>>>>>>>>>>>>>> halt decider.
>>>>>>>>>>>>>>>>>>>>>> This makes it impossible for P to do the opposite
>>>>>>>>>>>>>>>>>>>>>> of whatever H
>>>>>>>>>>>>>>>>>>>>>> decides.
>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>> Complete halt deciding system (Visual Studio Project)
>>>>>>>>>>>>>>>>>>>>>> (a) x86utm operating system
>>>>>>>>>>>>>>>>>>>>>> (b) complete x86 emulator
>>>>>>>>>>>>>>>>>>>>>> (c) Several halt deciders and their inputs
>>>>>>>>>>>>>>>>>>>>>> contained within Halt7.c
>>>>>>>>>>>>>>>>>>>>>> https://liarparadox.org/2022_09_07.zip
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>> You keep making the same mistake again and again. H
>>>>>>>>>>>>>>>>>>>>> IS NOT SUPPOSED
>>>>>>>>>>>>>>>>>>>>> TO BE RECURSIVE.
>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>> H(P,P) is not recursive.
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> Your H is recursive because P isn't recursive and yet
>>>>>>>>>>>>>>>>>>> you have to abort
>>>>>>>>>>>>>>>>>>> your infinite recursion: the recursion is caused by
>>>>>>>>>>>>>>>>>>> your H and not by
>>>>>>>>>>>>>>>>>>> P.  Nowhere in any halting problem proof does it
>>>>>>>>>>>>>>>>>>> state that the call to
>>>>>>>>>>>>>>>>>>> H by P is recursive in nature BECAUSE H IS NOT
>>>>>>>>>>>>>>>>>>> SUPPOSED TO EXECUTE P, H
>>>>>>>>>>>>>>>>>>> IS SUPPOSED TO *ANALYSE* P.
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>> /Flibble
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> Nowhere in any HP proof (besides mine) is the idea of
>>>>>>>>>>>>>>>>>> a simulating halt decider (SHD) ever thought all the
>>>>>>>>>>>>>>>>>> way through.
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> Because the proof doesn't care at all how the decider
>>>>>>>>>>>>>>>>> got the answer,
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> Because the definition of a UTM specifies that the
>>>>>>>>>>>>>>>>>> correct simulation of a machine description provides
>>>>>>>>>>>>>>>>>> the actual behavior of the underlying machine whenever
>>>>>>>>>>>>>>>>>> any simulating halt decider must abort its simulation
>>>>>>>>>>>>>>>>>> to prevent infinite simulation it is necessarily
>>>>>>>>>>>>>>>>>> correct to report that this input does not halt.
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>> Right, which means it CAN'T be a UTM, and thus *ITS*
>>>>>>>>>>>>>>>>> simulation does not define the "behavior of the input".
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> The behavior of the correct simulation of the input is
>>>>>>>>>>>>>>>> its actual behavior. That H correctly predicts that its
>>>>>>>>>>>>>>>> correct simulation never stops running unless aborted
>>>>>>>>>>>>>>>> conclusively proves that this correctly simulated input
>>>>>>>>>>>>>>>> would never reach its own final state in 1 to ∞ steps of
>>>>>>>>>>>>>>>> correct simulation.
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>> But the behavior the halting problem is asking for is the
>>>>>>>>>>>>>>> behavior of the actual machine.
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> Only within the context that no one ever bothered to think
>>>>>>>>>>>>>> the application of a simulating halt decider all the way
>>>>>>>>>>>>>> through.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>
>>>>>>>>>>>>> No, the DEFINITION of a Halt Decider is to decide on the
>>>>>>>>>>>>> behavior of the Actual Machine.
>>>>>>>>>>>>>
>>>>>>>>>>>> That definition is made obsolete by a simulating halt decider.
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> Nope, the definition IS the definition.
>>>>>>>>>>>
>>>>>>>>>>> You don't get to change it.
>>>>>>>>>>>
>>>>>>>>>> I created a new concept that makes earlier ideas about this
>>>>>>>>>> obsolete:
>>>>>>>>>>
>>>>>>>>>> Because the definition of a UTM specifies that the correct
>>>>>>>>>> simulation of a machine description provides the actual
>>>>>>>>>> behavior of the underlying machine whenever any simulating
>>>>>>>>>> halt decider must abort its simulation to prevent infinite
>>>>>>>>>> simulation it is necessarily correct to report that this input
>>>>>>>>>> does not halt.
>>>>>>>>>>
>>>>>>>>>> Because the above is verified as correct on the basis of the
>>>>>>>>>> meaning of its words it is irrefutable.
>>>>>>>>>>
>>>>>>>>>
>>>>>>>>> Right, but H isn't a UTM, so its simulation doesn't matter.
>>>>>>>>>
>>>>>>>>
>>>>>>>> Unless you can specify that material difference between the two,
>>>>>>>> that would seem to prove that you are technically incompetent.
>>>>>>>
>>>>>>> H doesn't correctly repoduce the behavior of a non-halting input.
>>>>>>>
>>>>>>> Thus, it isn't a UTM.
>>>>>>>
>>>>>>
>>>>>> Ĥ.q0 ⟨Ĥ⟩ ⊢* H ⟨Ĥ⟩ ⟨Ĥ⟩ ⊢* Ĥ.qy
>>>>>> Ĥ.q0 ⟨Ĥ⟩ ⊢* H ⟨Ĥ⟩ ⟨Ĥ⟩ ⊢* Ĥ.qn
>>>>>>
>>>>>> When Ĥ is applied to ⟨Ĥ⟩      // subscripts indicate unique finite
>>>>>> strings
>>>>>> Ĥ copies its input ⟨Ĥ0⟩ to ⟨Ĥ1⟩ then H simulates ⟨Ĥ0⟩ ⟨Ĥ1⟩
>>>>>>
>>>>>> Then these steps would keep repeating: (unless their simulation is
>>>>>> aborted)
>>>>>
>>>>> Note, you say "unless their simulation is aborted" but your
>>>>> defiition of H DOES abort its simulation, thus this doesn't occur.
>>>>>
>>>>> FAIL.
>>>>>
>>>>>> Ĥ0 copies its input ⟨Ĥ1⟩ to ⟨Ĥ2⟩ then H0 simulates ⟨Ĥ1⟩ ⟨Ĥ2⟩
>>>>>> Ĥ1 copies its input ⟨Ĥ2⟩ to ⟨Ĥ3⟩ then H1 simulates ⟨Ĥ2⟩ ⟨Ĥ3⟩
>>>>>> Ĥ2 copies its input ⟨Ĥ3⟩ to ⟨Ĥ4⟩ then H2 simulates ⟨Ĥ3⟩ ⟨Ĥ4⟩...
>>>>>>
>>>>>> This exact same behavior occurs when we replace H with a UTM.
>>>>>>
>>>>>
>>>>> But since H ISN'T a UTM, you can't assume that it is.
>>>>>
>>>>
>>>> H is designed to predict the result of 1 to ∞ correctly simulated
>>>> steps, thus predict the behavior of a UTM simulation.
>>>>
>>> Except it doesn't do that.
>>>
>> H does correctly predict the actual behavior of 1 to ∞ simulated steps
>> of P.
>>
>
> Nope, since we have shown that if H(P,P) returns 0, then P(P) will Halt.
>


Click here to read the complete article
1
server_pubkey.txt

rocksolid light 0.9.81
clearnet tor