Jump to content

Daedalus' Seventh Challenge


Recommended Posts

In my sixth challenge, which is based upon the Collatz conjecture, I found a way to determine the odd numbers that reduce to one given a count of the odd numbers within their Hailstone sequences. The reason why I focused my efforts on odd numbers is because all even numbers will reduce to an odd number by dividing it by two until an odd number is reached. As I was analyzing the sequence of exponents generated by recursively dividing even numbers by two, I noticed an interesting pattern and derived a formula to predict these exponents. Not only did I discover how to predict powers of two, but also for any other factor as well. The following image shows the exponents for factors of two, three, and four:

 

post-51329-0-74534500-1374889696_thumb.png

 

As you can see, the first sequence is based on factors of two for the function [math]f(x)=2\,x[/math], the second sequence is based on factors of three for the function [math]f(x)=3\,x[/math], etc... Of course, the inputs and outputs are restricted to the set of integers. The challenge is to find a formula that predicts these exponent given the [math]x[/math] location and the factor. In other words, find the equation that predicts the values of [math]n[/math] given a factor [math]a[/math] and the variable [math]x[/math] for

 

[math]\frac{a\, x}{a^n}[/math]

 

Reputation awaits the one who can complete the challenge first.

Edited by Daedalus
Link to comment
Share on other sites

Instead of looking at all of the numbers as if they are all part of the same group(though they are), look at them individually.

 

v8r6.png

 

This will help in the development of an equation. Ask questions if needed.

 

And notice how the order seems to correlate with each other.

 

n+4: 1->

6/2 = 3, 10/2 = 5, 14/2 = 7, 18/2 = 9...

n+8: 2->

12/4 = 3, 20/4 = 5, 28/4 = 7, 36/4 = 9...

n+16: 3->

24/8 = 3, 40/8 = 5...

n+32: 4->

48/16 = 3...

Edited by Unity+
Link to comment
Share on other sites

Don't forget that you have to provide a single formula that works for any factor and value of [math]x[/math]. Not just powers of two.


Just so there is no confusion as to what numbers your formula should generate, I am posting this image showing the exponents for factors of 2 through 8.

 

post-51329-0-30819000-1374906115_thumb.png

Link to comment
Share on other sites

  • 3 weeks later...

I realize now that after having to write the solution for this challenge, that it was probably harder to solve than most of my challenges. Nevertheless, I am posting the solution because no one solved it, or shown interest in trying to solve it. biggrin.png

 

 

 

When I analyzed the sequence of exponents for the factors 2 through 8, I noticed that the ones repeat themselves in a regular pattern. This led me to look for a pattern in the twos, threes, and so forth. As expected, the exponents cover the entire set of natural number and repeat in regular patterns.

{1, 2, 1, 3, 1, 2, 1, 4, 1, 2, 1, 3, 1, 2, 1, 5, 1, 2, 1, 3, 1, 2, 1, 4, 1, 2, 1, 3, 1, 2, 1, 6, ...}
{1, 1, 2, 1, 1, 2, 1, 1, 3, 1, 1, 2, 1, 1, 2, 1, 1, 3, 1, 1, 2, 1, 1, 2, 1, 1, 4, 1, 1, 2, 1, 1, ...}
{1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 3, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 3, ...}
{1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 3, 1, 1, 1, 1, 2, 1, 1, ...}
{1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 2, 1, 1, ...}
{1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, ...}
{1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, ...}

Let's look at the sequence of exponents for factors of two.

{1, 2, 1, 3, 1, 2, 1, 4, 1, 2, 1, 3, 1, 2, 1, 5, 1, 2, 1, 3, 1, 2, 1, 4, 1, 2, 1, 3, 1, 2, 1, 6, ...}

We can easily see that the ones begin at the first position and repeat every other number. The twos begin at the second position and repeat every four numbers, and the threes begin at the fourth position and repeat every eight numbers. If we chart this out we'll get:

{1, 2, 1, 3, 1, 2, 1, 4, 1, 2, 1, 3, 1, 2, 1, 5, 1, 2, 1, 3, 1, 2, 1, 4, 1, 2, 1, 3, 1, 2, 1, 6, ...}
{1, 2, 1, 3, 1, 2, 1, 4, 1, 2, 1, 3, 1, 2, 1, 5, 1, 2, 1, 3, 1, 2, 1, 4, 1, 2, 1, 3, 1, 2, 1, 6, ...}
{1, 2, 1, 3, 1, 2, 1, 4, 1, 2, 1, 3, 1, 2, 1, 5, 1, 2, 1, 3, 1, 2, 1, 4, 1, 2, 1, 3, 1, 2, 1, 6, ...}
{1, 2, 1, 3, 1, 2, 1, 4, 1, 2, 1, 3, 1, 2, 1, 5, 1, 2, 1, 3, 1, 2, 1, 4, 1, 2, 1, 3, 1, 2, 1, 6, ...}

[math]\begin{matrix}\text{exp}&\text{start}&\text{spacing}\\1&1&2\\2&2&4\\3&4&8\\4&8&16\\...&...&...\end{matrix}[/math]

If you look at the sequence of exponents for factors of three, you will notice that the ones are doubled up in the sequence:

{1, 1, 2, 1, 1, 2, 1, 1, 3, 1, 1, 2, 1, 1, 2, 1, 1, 3, 1, 1, 2, 1, 1, 2, 1, 1, 4, 1, 1, 2, 1, 1, ...}

This means that there are two equations that predict the positions of the ones, twos, threes, etc... And once again, if we chart this out, we get:

{1, 1, 2, 1, 1, 2, 1, 1, 3, 1, 1, 2, 1, 1, 2, 1, 1, 3, 1, 1, 2, 1, 1, 2, 1, 1, 4, 1, 1, 2, 1, 1, ...}
{1, 1, 2, 1, 1, 2, 1, 1, 3, 1, 1, 2, 1, 1, 2, 1, 1, 3, 1, 1, 2, 1, 1, 2, 1, 1, 4, 1, 1, 2, 1, 1, ...}

{1, 1, 2, 1, 1, 2, 1, 1, 3, 1, 1, 2, 1, 1, 2, 1, 1, 3, 1, 1, 2, 1, 1, 2, 1, 1, 4, 1, 1, 2, 1, 1, ...}
{1, 1, 2, 1, 1, 2, 1, 1, 3, 1, 1, 2, 1, 1, 2, 1, 1, 3, 1, 1, 2, 1, 1, 2, 1, 1, 4, 1, 1, 2, 1, 1, ...}

{1, 1, 2, 1, 1, 2, 1, 1, 3, 1, 1, 2, 1, 1, 2, 1, 1, 3, 1, 1, 2, 1, 1, 2, 1, 1, 4, 1, 1, 2, 1, 1, ...}
{1, 1, 2, 1, 1, 2, 1, 1, 3, 1, 1, 2, 1, 1, 2, 1, 1, 3, 1, 1, 2, 1, 1, 2, 1, 1, 4, 1, 1, 2, 1, 1, ...}

[math]\begin{matrix}\text{exp}&\text{start}&\text{spacing}\\1&1&3\\1&2&3\\2&3&9\\2&6&9\\3&9&27\\3&18&27\\...&...&...\end{matrix}[/math]

We can see that exponential equations govern the pattern as well as the start indices and spacings. Furthermore, if we had an equation that would produce the red highlighted numbers in their exact position, but be zero everywhere else, then we could sum all the sequences together to have a generating function.

{1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, ...} +
{0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, ...} +
{0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, ...} +
{0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, ...} =

{1, 2, 1, 3, 1, 2, 1, 4, 1, 2, 1, 3, 1, 2, 1, 5, 1, 2, 1, 3, 1, 2, 1, 4, 1, 2, 1, 3, 1, 2, 1, ...}

This is where the modulo operation comes into play. If we use Mathematica, we can see that Mod[x,2] generates the sequence of ones as found in the exponents for the factors of two.

{1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, ...}

However, the sequence generated by Mod[x,3] has a bunch of twos in it, and we need a sequence of ones and zeros.

{1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 2, ...}

Here's the trick. We know that Mod[1,3] = 1 and that Mod[3x, 3]=0. So if we take the factor 3 and raise it to the power of Mod[x,3], [math]3^{\text{Mod[}x\text{,3]}}[/math], we'll get a one when Mod[x,3]=0, and a multiple of 3 everywhere else:

{3, 9, 1, 3, 9, 1, 3, 9, 1, 3, 9, 1, 3, 9, 1, 3, 9, 1, 3, 9, ...}

If we apply the modulo operation again, we get [math]\text{Mod[ }3^{\text{Mod[}x\text{, 3]}}\text{, 3 ]}[/math] :

{0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, ...}

This allows us to generate a one every three numbers and a zero everywhere else. This works for any factor, and by using the floor function instead of the modulo operator, we arrive at a function that generates any spacing of ones that we need with zeroes everywhere else:

[math]\text{FactorMap}\left(x, n\right)=n\left(\frac{n^{x-1}}{n^{n\left\lfloor\frac{x}{n}\right\rfloor}}-\left\lfloor\frac{n^{x-1}}{n^{n\left\lfloor\frac{x}{n}\right\rfloor}}\right\rfloor\right)[/math]

 

If you prefer, you can still use the following in Mathematica:

 

[math]\text{FactorMap}\left(x, n\right)=\text{Mod[ }n^{\text{Mod[}x\text{, n]}}\text{, n ]}[/math]

 

The reason I call this function the FactorMap is because it produces a 1 whenever a number contains the factor or a zero otherwise. Furthermore, if we sum the sequences produced by the function, we'll get a count of unique factors for each number.

 

numbers

1 2 3 4 5 6 7 8 9 ...

2 {0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1}

3 {0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0}

Factors: 4 {0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1}

5 {0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1}

6 {0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0}

 

Now that we have this function, we can choose the correct spacing, multiply it by the value of our exponents, and set the correct start indices. By using the charts we made earlier, we can derive such a function ([math]i[/math] and [math]j[/math] are indices used to offset to the correct start position and choose the proper spacing):

 

[math]F(x,n,i,j)=j\,\text{FactorMap}\left(x-i\,n^{j-1}, n^{j}\right)[/math]

 

The only thing left is to determine how many times we need to sum [math]F[/math] in order to create the generating function. The key is knowing where the ones, twos, threes, etc... start. Look at the sequence of exponents for factors of two:

 

{1, 2, 1, 3, 1, 2, 1, 4, 1, 2, 1, 3, 1, 2, 1, 5, 1, 2, 1, 3, 1, 2, 1, 4, 1, 2, 1, 3, 1, 2, 1, 6, ...}

 

Since every exponent is represented by its own equation, we would have to add a sum whenever a one, two, three, etc..., occurred. The following formula accomplishes this feat for any factor, [math]n[/math]:

 

[math]\left\lfloor\text{log}_{\,n}\,x\right\rfloor+1[/math]

 

Regarding the sequence of exponents for factors of two, we can see this formula in action:

 

{1, 2, 1, 3, 1, 2, 1, 4, 1, 2, 1, 3, 1, 2, 1, 5, 1, 2, 1, 3, 1, 2, 1, 4, 1, 2, 1, 3, 1, 2, 1, 6, ...}

{1, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, ...}

 

Now we can put all of the pieces of the puzzle together, and arrive at the solution for the challenge:

 

[math]\text{Factors}(x, n)=\sum_{i=1}^{n-1}\left(\sum_{j=1}^{\left\lfloor\text{log}_{\,n}\,x\right\rfloor+1}F(x,n,i,j)\right)[/math]

 

As a bonus, if we subtract one from our Factors function, then we get an algorithm that can tell us how many times a factor occurs.

 

[math]\text{Factors}(x, n)=\sum_{i=1}^{n-1}\left(\sum_{j=1}^{\left\lfloor\text{log}_{\,n}\,x\right\rfloor+1}F(x,n,i,j)\right)-1[/math]

 

numbers

1 2 3 4 5 6 7 8 9 10 ...

2 {0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, 4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0, 5}

3 {0, 0, 1, 0, 0, 1, 0, 0, 2, 0, 0, 1, 0, 0, 1, 0, 0, 2, 0, 0, 1, 0, 0, 1, 0, 0, 3, 0, 0, 1, 0, 0}

4 {0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 2}

Factors: 5 {0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0}

6 {0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0}

7 {0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0}

8 {0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1}

 

 

 

I've attached the Mathematica 7 file for those who wish to download it. happy.png

 

FactorMap.zip

Edited by Daedalus
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.