Processing math: 100%

[Solution] Digits in 2n

Problem statement here.

an is the number of odd digits in 2n (in base 10). bn is the number of digits in 2n.

For part A)
We have the following curious reciprocity property.

The parity of the jth digit (from the right, starting with j=0) of 2n is the same as the nth digit after the decimal place of 10j in base-2.

For eg, 102=.00000010100011110101110000 and the first few powers of 2 are

2,4,8,16,32,64,128,256,512,1024,2048,4096,8192

and the corresponding parities of the seconds digits (note starting with 0).

0,0,0,0,0,0,1,0,1,0,0,0,1 which exactly matches the first few digits of 102.

The proof is pretty simple. We have that the parity of the jth digit of 2n is basically

2n10jmod2.

Which is exactly the same as the nth digit of 10j in base-2. 2n just shifts the decimal point of 10j right by n places and that digit gives us the parity of 10j2n.

Call this number f(n,j). Thus

n=1an2n=n=1j=0f(n,j)2n

Exchanging the order of summation gives

j=0n=1f(n,j)2n

By the above reciprocity property, we have that n=1f(n,j)2n=10j.

Thus the sum is essentially j=010j=19.

-------------

For Part B)

To show that S=bn2n is irrational.

Consider the positions where the number of digits in 2n increases. Define dn=1 if
 bn>bn1 and dn=0 otherwise.

By considering 2S and subtracting we see that it is enough to show that

dn2n is irrational.

dn=1 iff n1 is the integer part of klog2(10)  for some kN, because then we have that 2n<10k<2n+1.

Since log2(10) is irrational the sequence of 0's and 1's which is dn is infinite and non-periodic* and hence the number dn2n is irrational when we look at it as a number in base-2.

*It is non-periodic because the sequence kγ,kN for some irrational γ has an irrational density. Which will not be the case if it were periodic.

------------

For Part C).

If we look at the n such that dn+1=1, then we see that n is a multiple of 3 for a good few terms (till 99) and then becomes 101.

The number in question is what we get if we assume that the pattern of multiples of 3 continues, so 102 instead of 101. Since we get 102 instead of 101, the irrational number is larger.


No comments:

Post a Comment