Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Kind of a math question, but very programming related. Doing some Big-O problems and I have an algorithm where a for loop will run n times, where k = input size, n = max power of 4 where (k)/(4^n) >= 1. How can I represent max power of 4 where (k)/(4^n) >= 1 in one mathematic statement?

share|improve this question
As you say, this is really a Mathematics question. I agree that it's programming related, but that isn't sufficient to make it a programming question. That said, once you've established the expression you wish to evaluate, asking "how do I calculate expression using {some language/library}", that's a programming question, so do come back and ask that here if you need to :) – AakashM Feb 1 '12 at 9:22

4 Answers

up vote 2 down vote accepted
floor ( (log k)/(log 4) ).

Or something along those lines.

share|improve this answer

Mathematic statement: [log_4(k)]

Code: floor( log(k) / log(4) )

share|improve this answer
i think you mean log_4(k) – Mitch Wheat Feb 1 '12 at 2:46
yes, of course. Thanks! – Petar Ivanov Feb 1 '12 at 7:10

log base 4 of k? Can take the floor if you only care about integer n.

share|improve this answer

Taking (k)/(4^n) >= 1, multiply both sides by 4^n to get k >= 4^n, and then take the log base 4 (log_4) of both sides to get log_4 k >= n, or n <= log_4 k. (Equivalently, take log of both sides and get log k >= log(4^n), then note log(4^n) = n log(4), and divide to get (log k)/(log 4) >= n). Choose the largest integer n satisfying this inequality, which is floor(log_4 k).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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