NOTE elog(81) is actually 4.3944... Your calculator's log function returns 10log(81)
A logarithm without base can mean many different things, to mathematicians the base is e, to computer scienctists the base is 2, to economists the base is 10...
To a mathetaician 10log(81)=1.908... is not obtained somehow, it is just the eternal truth.
To a computer or a person who wants to see the actual number it is more difficult. There is no easy way to find a logarithm. There are algorithms that can calculate them, but that is not something you want to do yourself. A simple algorithm you could use yourself is simply trying:
Code:
10log(81) = x
10^x = 81
try 1:
10^1 = 10 (too small)
try 2:
10^2 = 100 (too large)
try 1.5:
10^1.5 = 31.. (too small)
try 1.75:
10^1.75 = 56.2... (too small)
etc.
So basicly log(81)=1.908... because your calculator says so and because 10log(81)=81
Your calculator probably does not have a logarithm key for any base, in that case you can use the formula:
blog(x) = log(x)/log(b)
This works regardless of the base of the logarithm used.