For any real number x and any integer exponent m,
xm = x*x*x*...*x
(m times). So
exponentiation is a form of repeated multiplication.
The rules
xm * xn = xm+n
xm / xn = xm-n
(xm)n = xm*n
where
x-m = 1 / xm
follow from this definition. These rules also hold for any real exponents m and n.
So, if
x = by
then
y = lnb(x).
This provides a way to perform multiplication (or division) by table lookup and addition (or subtraction).
What is the simplified or reduced value of the following expression?
ln2(128)
ln2(128)
= ln2(27)
= 7
For example, suppose that you wish to compute the quantity z where
z = x*y.
Take the logarithm of both sides to get
ln(z) = ln(x*y) = ln(x)+ln(y).
Now take the exponential (the inverse function of the logarithm function, or
antilog function) of both sides to get
eln(z) = e(ln(x)+ln(y))
so that
z = e(ln(x)+ln(y)).