LOG()

Syntax. LOG(number,base)

Definition. This function returns the logarithm of a number to the given base.

Arguments

BackgroundLOG() is the inverse function of EXP().

Example. The exponential function a = bx can use the logarithm as follows:

x = logba

The logarithm of a product (quotient) is the sum (difference) of the logarithms from the factors (dividend and divisor):

lg(a b) = lg a + lg b

lg(a : b) = lg a – lg b

Logarithms return:

Logarithms simplify calculations with multidigit numbers. Unlike the LN() and LOG10() functions, the LOG() function allows you to specify the base. If you don’t specify the base, the LOG() function equals LOG10().

See Also

EXP(), IMLN(), IMLOG10(), IMLOG2(), LN(), LOG10()