You should take a look at this MATH,
What the answer says is that the log functions can be achieved through taylor series and a look-up table combined. If there is a look-up table, then it may be hashed and the look-up will be easier than pow which only can be obtained through computation.
so for xy you can write it as
y = log<sub>10</sub> x .
or
y = (ln x)/(ln 10);
now if there is no log implementation for pow then it should be achieved through Addition chain exponentiation Wiki which requires runtime computation which might take longer than finding log.
EDIT : Thanks to @harold exponentiation can be performed more optimally using Exponentiation by squaring.