Is there an efficient way to convert from a high exponent of base $10$, to base $2$? Both in exponent notation. Here's an example:
If I have a number that's $10^5$ or even $10^{100}$, and I wanted to convert that to base $2$, exponent notation, how could I do that? Normally, I would do:
$10^5 = 100000$, then go back and convert it to base $2$, but can I just an operation to the exponent form of $10^5$, and find the answer?
Thanks!
EDIT: Sorry, I think I can make this clearer, how can I solve:
$2^x = 10^{80}$
Take the logarithm of the base that you want with respect to the original base. For example, to convert from base $x$ of a number, say $1234$, to base $y$, do the following: $\frac{\log_x(1234)}{\log_y(1234)}$. The result gives you the exponent $e$ to which $y$ has to be raised to get the number $1234$. Result: $1234 = y^e$.