What rules can i use to simplify $b^\frac{\ln a}{\ln b}$ for $a,b>1$ ?
4 Answers
An alternative route to the answers already present is as follows:
$$b^{\frac{\log a}{\log b}} = \exp\left(\log b \left(\frac{\log a}{\log b}\right)\right) = \exp( \log a ) = a$$
which may have the advantage of not requiring the knowledge that $\frac{\log a}{\log b} = \log_b a$.
- 17,743
$b^{\frac{\ln a}{\ln b}}=b^{\log_ba}=a$.
- 4,485
-
How do you get to $b^{log_{b}a}$ ? – Devid Apr 03 '13 at 13:23
-
3@Devid, let $\frac{\ln a}{\ln b}=t$, then $\ln a=\ln b^t$, and so $a=b^t$, yielding the result. – Easy Apr 03 '13 at 13:26
-
1@Devid. This technique involves a very useful result that isn't well enough known, namely that $(\log_pq)(\log_qr)=\log_pr$. To help remember this, there's a kind of cancellation involving the $q$s. A consequence is that log functions to different bases are essentially the same, up to constant multiples. – Rick Decker Apr 03 '13 at 14:54
To get an equation that you can manipulate, let $x$ denote the expression you have. $$x \; = \; b^{\frac{\ln a}{\ln b}}$$ Take the natural logarithm of both sides. Note that this is a natural thing to try, since doing this will convert the "harder" exponentiation operation on the right side into an "easier" multiplication operation. $$\ln x \; = \; \ln \left( b^{\frac{\ln a}{\ln b}} \right)$$ Use a logarithm rule to rewrite the right side. $$\ln x \; = \; \left( \frac{\ln a}{\ln b} \right) \cdot \ln b$$ Cancel common factors on the right side. $$\ln x \; = \; \ln a$$ Use the fact that the natural logarithm function has the one-to-one property. $$x = a$$
- 36,843