Sum[(i + 1) (n - i), {i, 0, n - 1}]
that is a sum of ( i+1)(n-1) with bounds from i=0 to n-1.
is that O(n^2) or O(n^3)? and can you explain me how you found it? thanks.
|
Sum[(i + 1) (n - i), {i, 0, n - 1}] that is a sum of ( i+1)(n-1) with bounds from i=0 to n-1. is that O(n^2) or O(n^3)? and can you explain me how you found it? thanks.
| |||
|
feedback
|
|
Expand and use the closed-form expressions for sum(i^k). To wit,
so that
In the step "details elided", expand each sum to its closed-form expression and note that the coefficient of | |||||||||||||
feedback
|
|
Wolfram|Alpha eats these for lunch: http://www.wolframalpha.com/input/?i=Sum%5B(i+%2B+1)+(n+-+i),+%7Bi,+0,+n+-+1%7D%5D | ||||
|
feedback
|
|
If you are talking about the time needed to evaluate the sum, then it is O(1) (because it can be reduced to a closed-form formula). If you are talking about the formula itself, then expand it and substitute the power sums, and you'll see that the coefficient of n^3 (which is of the highest degree) is not 0. Anyway, O(n^2) is a subset of O(n^3), so... when asking is it O(n^2) or O(n^3), an easy answer is it is O(n^3) (if you know the answer can never be "neither"). | ||||
|
feedback
|
(i+1)(n-i)or(i+1)(n-1)? – Matt Ball Dec 8 '10 at 1:47