3

I found a couple of questions where, for example, they ask you to calculate the number of digits in $18^{200}$ and only the value of $\log 18$ is given. Can anyone tell me a way?

gt6989b
  • 54,422

1 Answers1

5

It is not too tough to find the # of digits in $200\times\ log_{10}(18)$ = 251.05...

You might recall that the integer portion of the logarithm is called the characteristic, and the decimal part, the mantissa

You would also recall that: log(10) = 1, and the logarithm remains less than 2 as long as N<100, log(100) = 2, and so on.

The simple rule that emerges is: Add 1 to the characteristic to get the # of digits in the number.

Or, in briefer mathematical notation, using the floor function, D = $\lfloor \log_{10} N \rfloor+1$