I was solving some "Big-Oh" algorithm asymptotic complexity problems, when I discovered that for some constant $c$ and some variable $x$:
$$c^{\log(x)}$$ and $$x^{\log(c)}$$
grow at the same rate. When figuring this out I ended up with the expression:
$$\frac{\ln(x)}{\log(x)}=\frac{\ln(c)}{\log(c)}\approx 2.3025$$
This result was surpirsing and somewhat baffling to me. This might seem like a naive question, but could someone help me understand how the ratio of $\log_{10}(x)$ and $\ln(x)$ ends up being a constant value?
For all $x\neq1$, $x>0$ we have: $$\frac{\ln{x}}{\log{x}}=\frac{\ln{x}}{\frac{\log_ex}{\log_e{10}}}=\log_e10=\ln10.$$