vote up 0 vote down star

I have the hardest time with Big Oh Notation. I was wondering if you could help me out. Whats the least upper bound of the growth rate using big-Oh notation of these two functions?

n   f(n)
----------
5   18
10  35
15  53
20  70
25  88
30  105
35  123
40  140

n   g(n)
-----------
5   240
10  1990
15  6740
20  15990
25  31240
30  53990
35  85740
40  127990
flag

57% accept rate

2 Answers

vote up 1 vote down

n -> f(n) looks like O(c*n) = O(n)

n -> g(n) ~ O(2*n^3) = O (n^3)

link|flag
vote up 0 vote down

Well the first one looks a lot like o(n), as an 8 fold increase in n results in an approx 8 fold increase in f(n).

The second one looks like roughly n^3

link|flag
1  
exponential? That's a^n, not n^a... – Dutow Jun 16 at 7:55
You're right. I've edited accordingly. – Visage Jun 16 at 7:58

Your Answer

Get an OpenID
or

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