Calculator Function Refrence

Function Reference >Calculator Function Reference >General Math>Logorithms

Logorithms

There are two logorithm functions supported.
  • log(b, x), log(x)
  • ln(x)
log(b, x) accepts two parameters. b is the base of the logorithm. x is the value to take the log of. log will also accept a single parameter and a base of 10 will be assumed and the paramter will be passed as x.
log(2, 8)=3
log(100)=2

ln(x) is the natural log and is the equivalent of log(e, x).

Both ln() and log() can accept complex and negitive numbers.