vote up 1 vote down star
2

Consider the equation below:

2 ** n = A

Let us assume A=64.

What is the easiest way to find the value of n?

I am currently using following two approaches

A= 64; n = 1; n+=1 while (A >> n) > 0; n-1

A= 64; n = 0; n+=1 until (A == ( 2 ** n));n

Is there a better approach?

Other way of stating the same problem:

2 = nth root A If I know the value of A, how do I determine the value of n?

flag

60% accept rate
I did a simple benchmark on three approaches. As expected logarithmic approach is the fastest. user system total real bit-wise right shift 0.235000 0.000000 0.235000 ( 0.235000) sequential compare 1.484000 0.000000 1.484000 ( 1.500000) logarithmic 0.141000 0.000000 0.141000 ( 0.140000) – KandadaBoggu Oct 14 at 1:34
1  
I changed the logic of bit shift shift method ( i.e my first approach) and got the best performance compared to other three methods. A= 64; n = 0; n+=1 until ((A >>= 1) == 0); n; So I am going with the bit shift approach. – KandadaBoggu Oct 14 at 2:01

4 Answers

vote up 3 vote down check

Neither of the above answers is better than your first approach:

A= 64; n = 1; n+=1 while (A >> n) > 0; n-1

Evaluating Math.log(x) takes a lot longer than doing a dozen bit-shifts, and will also give you an answer like 5.99999999999980235 to make sense of.

See this SO question for some better ideas.

link|flag
vote up 9 vote down

Try this:

def exp_value(n)
  Math.log(n) / Math.log(2)
end
link|flag
Stuff like this makes me wish that I comprehended logarithms well, know of any good/simple online references? – The Wicked Flea Oct 14 at 0:45
1  
This is not complex mathematics - they teach this in high school: en.wikipedia.org/wiki/Logarithm – duffymo Oct 14 at 0:59
2  
@Duffymo: fair enough but (1) complex (or not) is a relative term here and (2) not all of us paid attention during high school math classes. There's no sense in telling someone, "this is trivial," if he or she asks for references to more information. – Telemachus Oct 14 at 1:08
vote up 3 vote down

log2n = ln n / ln 2

hence

log_2_64 = Math.log(64) / Math.log(2)
link|flag
vote up 1 vote down

If you care about the problems mentioned by mobrule. How about this? It is the same as your own method but use built-in function to communicate the idea explictly.

    def exp_value a 
       (1..a).to_a.detect {|n| 2**n >=a}
    end

    exp_value 64
    => 6
link|flag

Your Answer

Get an OpenID
or

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