Earlier quoted context omitted.
This was the key missing part for me; the program can’t exist, whether we can prove it is beside the point. Thanks.
I think the issue is related to notion of a "direct" proof vs "proof by contradiction". What I gave was a proof by contradiction. Once you start thinking about the philosophy of proofs it, it's an interesting question to ask whether or not proofs by contradiction should really count. I don't know much about this but you can search up the term "Law of the excluded middle" is a good place to start reading about these c…
Why Busy Beaver hunters fear the Antihydra
71–80 of 80 posts
Re: Why Busy Beaver hunters fear the Antihydra
#72Earlier quoted context omitted.
Ok, I read this post quite a while ago and something about the reasoning bothered me then, and it still bothers me now. In short, my read is that the argument does not rule out that there is a computable function that grows faster than BB(N), but rather it shows that it is impossible to prove or “decide” whether a given computable function grows faster than BB(N). Maybe this is equivalent to the conclusion stated? Am…
I think Scott's reasoning is correct in the end. If you suppose you had a computable function f(N) such that f(N) is always greater than BB(N). Then you could exploit the function f to solve the halting problem. Given a program of length N, run the program for f(N) steps. If it halts within that time, you know it's a halting program. If it doesn't halt within that time you know it will never halt.
Re: Why Busy Beaver hunters fear the Antihydra
#73Immediately implements the Antihydra in Fractran 13122 -> 50/18, 55/42, 539/2, 297/275, 2/55, 2/11
50/18 reduces to 25/9 right?
15/6 red [green] > blue [green]
5/2 red > blue
red green
These two fractions are not equal and reducing the first into the second, eliminates the capability to match against it only when the catalyst green is present in the accumulator.Re: Why Busy Beaver hunters fear the Antihydra
#74Earlier quoted context omitted.
This is cool, could you please explain your implementation?
For sure, here are the registers used for each fraction: comp h^2 > comp H^2 comp h c > done H comp > done c^2 done H^2 > done h^3 done H > comp done > comp Accumulator: comp h^8 The first two does the comparison for odd/even, the h register is moved to the H register during the comparison, then done does H += H>>2, and then keep trying. https://wiki.xxiivv.com/site/fractran.html
Re: Why Busy Beaver hunters fear the Antihydra
#75Earlier quoted context omitted.
For sure, here are the registers used for each fraction: comp h^2 > comp H^2 comp h c > done H comp > done c^2 done H^2 > done h^3 done H > comp done > comp Accumulator: comp h^8 The first two does the comparison for odd/even, the h register is moved to the H register during the comparison, then done does H += H>>2, and then keep trying. https://wiki.xxiivv.com/site/fractran.html
Do you happen to know what the smallest/first (by some measure) Fractran program is of which it is unknown whether it halts or not? Or even undecidable?
Re: Why Busy Beaver hunters fear the Antihydra
#76Earlier quoted context omitted.
50/18 reduces to 25/9 right?
Conway's Fractran traditionally compares the accumulator against reduced fractions, but computationally-speaking, getting to the gcd of a fraction does little more than getting rid of otherwise valuable information used during comparison to match against a restricted set of fractions. The support for catalysts, symbols found on both sides of a rewrite rule, makes for a simpler and faster implementation. 15/6 red [gre…
> The same variable cannot be both decremented and incremented in a single instruction (otherwise the fraction representing that instruction would not be in its lowest terms). Therefore each FRACTRAN instruction consumes variables as it tests them.
Re: Why Busy Beaver hunters fear the Antihydra
#77Earlier quoted context omitted.
I think Scott's reasoning is correct in the end. If you suppose you had a computable function f(N) such that f(N) is always greater than BB(N). Then you could exploit the function f to solve the halting problem. Given a program of length N, run the program for f(N) steps. If it halts within that time, you know it's a halting program. If it doesn't halt within that time you know it will never halt.
But does "a computable function that grows faster than BB(N)" actually mean that f(N) is always greater than BB(N), or could it be taken to simply mean that f(N) > BB(N) for a proportion of N that trends towards 1? In other words, could you have a function that almost always upper bounds BB(N), except for a tiny (but still technically infinite) proportion of exceptions? Such a function would be larger than BB in a me…
In the context that Scott Aaronson was using it probably yes as that is necessary for the most straightforward /obvious proof to work.
Re: Why Busy Beaver hunters fear the Antihydra
#78Earlier quoted context omitted.
Conway's Fractran traditionally compares the accumulator against reduced fractions, but computationally-speaking, getting to the gcd of a fraction does little more than getting rid of otherwise valuable information used during comparison to match against a restricted set of fractions. The support for catalysts, symbols found on both sides of a rewrite rule, makes for a simpler and faster implementation. 15/6 red [gre…
I see, so you are using a different model for computation that does not use rational numbers, but instead pairs of integers. From a computational point of view, that makes a lot of sense, disallowing catalysts is quite annoying, but I would not call this Fractran, instead I would call it something like a prioritized chemical reaction network or something like this. The wikipedia article explicitly states: > The same…
Re: Why Busy Beaver hunters fear the Antihydra
#79Earlier quoted context omitted.
But does "a computable function that grows faster than BB(N)" actually mean that f(N) is always greater than BB(N), or could it be taken to simply mean that f(N) > BB(N) for a proportion of N that trends towards 1? In other words, could you have a function that almost always upper bounds BB(N), except for a tiny (but still technically infinite) proportion of exceptions? Such a function would be larger than BB in a me…
> "a computable function that grows faster than BB(N)" In the context that Scott Aaronson was using it probably yes as that is necessary for the most straightforward /obvious proof to work.
Re: Why Busy Beaver hunters fear the Antihydra
#80Earlier quoted context omitted.
Sure, but I only asked about the single case x=6.
The point stands: the hard part is proving that all the programs with longer runtime than your upper bound will never terminate, and once you've solved that, getting the exact value is just a little extra work