How many digits does the following number have?
⎣ ⎢ ⎢ ⎢ k = 1 ∏ 1 0 0 0 k 1 0 ⎦ ⎥ ⎥ ⎥
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
You forgot to add one more bracket in the 5th line of you working. Plus, how do you know that by adding " γ " into 5th line wouldn't alter the total number of digits of P ?
Can this question be solved without knowing exact values such as ln ( 1 0 0 0 ) , or using calculator power? I personally used https://oeis.org/A002387 .
Note that the product notation can be rewritten as floor( 10 * 10^ 2 1 * 10^ 3 1 * ... * 10^ 1 0 0 0 1 ).
Since the number of digits in N is given by floor( log(N) ) + 1, so:
log( 10 * 10^ 2 1 * 10^ 3 1 * ... * 10^ 1 0 0 0 1 )
= log(10) + log(10^ 2 1 ) + log(10^ 3 1 ) + ... + log(10^ 1 0 0 0 1 )
= 1 + 2 1 + 3 1 + ... + 1 0 0 0 1 .
... which is approximately equal to 7.485. (I used Desmos. There's probably a more math-y way to do it that I don't know about =/. ) Taking the floor function and adding 1 gives 8 .
anyone can do it using desmos.
Problem Loading...
Note Loading...
Set Loading...
Relevant wiki: Harmonic Number
P = k = 1 ∏ 1 0 0 0 k 1 0 = exp ( ln k = 1 ∏ 1 0 0 0 1 0 k 1 ) = exp ( ln 1 0 k = 1 ∑ 1 0 0 0 k 1 ) = exp ( ln 1 0 ⋅ H 1 0 0 0 ) ≈ exp ( ln 1 0 ⋅ ( γ + ln 1 0 0 0 ) ) ≈ exp ( ln 1 0 ⋅ ( 0 . 5 7 7 2 + 6 . 9 0 7 8 ) ) ≈ exp ( ln 1 0 ⋅ 7 . 4 8 5 0 ) ≈ 1 0 7 . 4 8 5 0 where H n is the n th harmonic number. By: Euler-Macheroni constant γ = n → ∞ lim ( H n − ln n )
⟹ ⌊ P ⌋ = ⌊ 1 0 7 . 4 8 5 0 ⌋ has 8 digits.