I'm sure this is trivial. I want to reform the basis of a logarithm, so that I transform a factor
10.0/log(10.0)
into a factor
1.0/log(x)
so I want to solve x in
1.0/log(x) = 10.0/log(10.0)
I reciprocate and exponentiate
x = exp(log(10.0)/10.0)
= exp(log(10.0)) - exp(10.0) // ?
= 10.0 - exp(10.0)
But this is wrong; it yields -22016.465 instead of the empirical result 1.258926.
Ok, the answer seems to be $\sqrt[10]{10}$. But why?