vote up 0 vote down star
1

1) Reorder the following efficiency from smallest to largest: 2^n, n!, n^5, 10000, nlog2(n)

My Ans-> 10000 < nlog2(n) < n^5 < 2^n < n! Correct ?

2) Efficiency of an algo. is n^3, if a step in this algo. takes 1 nanosec. (10^-9 sec.). How long does it take the algo. to process an input of size 1000?

I don't know ... Is it (1000)^3 * 10^-9 ?

flag

5  
Is this homework? – Martin v. Löwis Jul 27 at 14:37
If it is homework, they are terrible questions. – Brian Ramsay Jul 27 at 14:45
both your answers are correct. – Mitch Wheat Jul 27 at 14:46

3 Answers

vote up 2 vote down check

Question one is fine. Question two, I would guess your answer is what they're looking for, but if by n^3 you mean O(n^3), you can't actually answer it (unless this is a use of "algorithmic efficiency" I'm unfamiliar with).

Big-O complexity gives an asymptotic bound on the behavior of the algorithm. We know, for "large" n, that O(n^3) is larger than the time taken to execute the algorithm on input of size n. Note the two caveats - "large n" and "asymptotic bound". There's nothing to stop an input of size 1000 taking twice as long as an input of size 2000, as long as there exists some m such that for all n > m, n^3 bounds the runtime. Also, there's nothing to stop the algorithm taking 1 nanosecond on every input, as n^3 is still a bound on the runtime - it's just very pessimistic.

This is why big O notation is often of limited use in practical situations. It gives a fair "worst case" overview, but does not speak to any given usage scenario. For a more practically useful (but often overlooked) complexity class set, google for "Big theta".

link|flag
In the definition of big-O the scaling factor is also important; it'd more technically correct to say "as long as there exist constants m and k such that for all n > m, *k n*³ bounds the runtime." Big-theta is great, but I don't think the practical use of big-O is limited by the fact that it's usually used to refer to a tight bound even though it doesn't strictly require it. It's easier, and sometimes the math on a true theta bound is too hairy to be worth it. – jtb Jul 27 at 15:33
good point, #2 is technically unanswerable from the information given, although I'd guess the writers of the question wanted just the answer he provided. :-/ – Kip Jul 27 at 15:51
Yes, there is a scaling factor - I left it out deliberately, to avoid even more confusion for the questioner, but thanks for mentioning it :) – Adam Wright Jul 27 at 16:39
I was asked a similar question to #2 in a tutorial some years ago. I was in the group that answered the same was as Thura did ... and we were gently corrected by the tutor :-) +1 – John Fouhy Aug 3 at 4:01
vote up 1 vote down

Both answers are correct

link|flag
vote up 1 vote down

1) Yes, that's correct.

2) That is also correct. Dimensional analysis: (1000^3 steps) * 10^(-9) seconds/step

link|flag

Your Answer

Get an OpenID
or

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