I'm having a mental block here, and algebra not really being my thing, can you tell me how to re-write the JavaScript code below to derive the variable, c, in terms of a and b?:

a = Math.pow(b, c);
c = ?

Thanks!

link|improve this question

feedback

3 Answers

up vote 7 down vote accepted
c = Math.log(a)/Math.log(b)
link|improve this answer
Spot on. Thanks! – Premasagar Oct 25 '10 at 16:00
feedback

Logarithms. You want the logarithm of a. B is the base, c is the exponent, so

logb a = c

link|improve this answer
Logs! Of course. Thanks, Charlie. – Premasagar Oct 25 '10 at 16:01
feedback

A logarithm is the inverse of an exponent, you can do, for example:

>>> x = math.pow(2,5)
>>> print x
32.0
>>> math.log(x, 2)
5.0
link|improve this answer
Cheers Vezult... – Premasagar Oct 25 '10 at 16:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.