Bowers' Arrays are very useful and interesting tools for producing absolutely immense numbers. This note will tell you about this insanely fast-growing function, so you too can experience the fun of really big numbers.
Anyway, let's start with the simplest array, (the empty array). This is defined as:
=
Not very big, is it? Don't run away yet, and instead observe the might of a one entry array!
=
I'm not really making a good impression, am I? Don't worry, because they get bigger.
=
That's more like it! These three arrays (, , and ), along with their definitions, make up Rule 1 of Bowers' Arrays. Rule 1 is used to deal with arrays of length 0, 1 or 2.
Rule 2 is simply = . In other words, any trailing s in the array can and must be removed without affecting its value.
Rule 3 is = . If the second entry in the array is a , then the overall value of the array is . This is somewhat similar to how = .
Rule 4 is where the more interesting behaviour of Bowers' Arrays come in, and is much more complex that the previous three rules. = .
Said in natural language, if the third entry is , then the final one in the unbroken chain of 1s following from the third entry (e.g. the 6th entry in , and the 3rd entry in ) is replaced by a copy of the entire array but with the second entry decremented by 1, and the entry after the chain of 1s decremented by 1. Additionally, all entries before the one changed to a modified copy of the array are replaced with .
As a simple example of the fourth rule in action, = .
The fifth and final rule is that = . In natural language, that means that if rules one through four do not apply, the the second entry is replaced by a copy of the array but with the second entry decremented by , and the third entry of the original array is decremented by .
As a quick task, try simplifying a small array like with a repeated application of these rules. You will soon find that it becomes unmanageably huge. And if only a three entry array with small numbers in it makes such a huge number, imagine how big a ten entry array full of tens would be!
Easy Math Editor
This discussion board is a place to discuss our Daily Challenges and the math and science related to those challenges. Explanations are more than just a solution — they should explain the steps and thinking strategies that you used to obtain the solution. Comments should further the discussion of math and science.
When posting on Brilliant:
*italics*
or_italics_
**bold**
or__bold__
paragraph 1
paragraph 2
[example link](https://brilliant.org)
> This is a quote
\(
...\)
or\[
...\]
to ensure proper formatting.2 \times 3
2^{34}
a_{i-1}
\frac{2}{3}
\sqrt{2}
\sum_{i=1}^3
\sin \theta
\boxed{123}
Comments
What got you interested in Bowers' Arrays? They are not a topic that people usually come across.
Log in to reply
I was once a fan of higher dimensional shapes, and in my googling for more information I stumbled across Bower's website. I explored that website a bit, and soon discovered the Infinity Scrapers page. From there, I was hooked.
Do you know if Bower arrays are always computable and do they always (in principle) end up yielding a number? What might I use Bower arrays to do (other than construct fantastically large quantities)?
Log in to reply
For the first, yes as long as each entry is greater than or equal to 1. For the second, I haven't a clue. That oen's left as an exercise for the reader.
Log in to reply
I think he is referring to turing computability. This array computation seems to have a remote connection with the computability of Ackermann function.
Question - what if the second entry is an array?
Like, what about this: {3, {3, 2, 3}, 2}
Just making sure I got the idea down for this..
Log in to reply
You can't simplify the whole array yet. But you can simplify the inner array to {3, {3, 1, 3}, 2} = {3, 3, 2}.