This is stemming from a programming problem, and I am trying to figure out if there is an easier way to go about the issue.
I need to get $\log_{a/b}(n)$, with $0 < a/b < 1$.
Is is possible to rewrite $\log_{a/b}(n)$ as something along the lines of $\frac{\log_{a}(n_1)}{\log_b(n_2)}$?
Yes I know that $\log_{a/b}(n) \neq \frac{\log_{a}(n_1)}{\log_b(n_2)}$, but I was wondering if there was some conversion that could work, possibly similar to this.
I know that $\frac{\log(a)}{\log(b)} = \log_{b}(a)$ (99% sure at least). but this is different enough that I'm don't really think that this is a similar solution.