Quote (Onimo @ Sep 19 2013 08:15am)
Log() is the equivalence to natural logarithm, it gives you back the natural base to e.
Edit: sorry, was writing this before seeing your edit. Will look into how to explain though.
If your question is, what log() does, is lg(x) / lg(e)
For a question about the divison:
log( u : v ) = log(u) - log(v)
Wait, don't we assume base 10 for log? And ln is natural logarithm? :S
Either way, it's irrelevant in this problem if you keep things consistent, since your expression is equivalent to
(log(1071.8)-log(500))/log(1.01) = log base 1.01 of 1071.8 - log base 1.01 of 500, so a change of base happens anyway.
log(a) = b, this means that 10^b = a (because logs are base 10)
so if you were wondering 10 to the what power gives you a, you would take the log of a
LOG PROPERTIES
log(a)/log(c) = log base c of a
log base c of a = b, this means that c^b = a
log(x*y) = log(x) + log(y) (can be used to derive the below properties)
log(x^z) = log(x*x*x*x z times) = z * log(x)
log(x/y) = log(x * 1/y) = log(x) + log(1/y) = log(x) + log(y^-1) = log(x) + -1*log(y) (what Onimo posted)
Edit:
btw, if you wanna know why log(x*y) = log(x)+log(y)
log(x)+log(y) = z
10^(log x + log y) = 10^z
10^log(x) * 10^log(y) = 10^z
x*y = 10^z now log both sides
log(x*y) = z
This post was edited by zackill4 on Sep 19 2013 09:03am