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.

link|improve this question

50% accept rate
1  
Your question is inconsistently stated, I think. Is the summand (i+1)(n-i) or (i+1)(n-1)? – Matt Ball Dec 8 '10 at 1:47
possible duplicate of i need to find the upper bound of this: or the tight bound: – Beta Dec 8 '10 at 4:11
1  
If you weren't satisfied with the answer to i-need-to-find-the-upper-bound-of-this-or-the-tight-bound, you shouldn't have accepted it. Anyway, it's O(n^3). – Beta Dec 8 '10 at 4:13
by formula calculate O(1) and by use the circle for to write a code that calculate this problem your code is O(n),and if you question what is the order of resolve sum functions ?,it's O(n^3)...which one is in your mind? – amin k Apr 19 at 7:47
feedback

3 Answers

Expand and use the closed-form expressions for sum(i^k). To wit,

(i + 1)(n - i) = n * i - i * i + n - i

so that

sum[(i + 1)(n - i)] = sum(n * i) - sum(i * i) + sum(n) - sum(i)
                    = n * sum(i) - sum(i * i) + n * n - sum(i)
                    = (details elided)
                    = O(n^3).

In the step "details elided", expand each sum to its closed-form expression and note that the coefficient of n^3 is not zero (it's 1 / 6).

link|improve this answer
there's a problem with the reasoning cos the first two terms are nO(n^2) - O(n^3) instead of +. – lijie Dec 8 '10 at 1:53
@lijie: No. The n^3 terms don't cancel. We never write a * O(f(n)) where a is a constant and not 1. – Jason Dec 8 '10 at 1:54
1  
yes they don't cancel in this case, but if talking about tight bounds (I guess theta is more appropriate), Theta(n^3) - Theta(n^3) may be something other than Theta(n^3). I don't really get the other part (about not writing a * O(f(n))). For e.g. n^3 - n^3 = 0, n^3 - (n^3 - n^2) = n^2, etc. So the details of the function are important when performing subtraction – lijie Dec 8 '10 at 1:59
@lijie: As soon as you write O(f(n)) you drop the constants. It is not the case that 2 * O(f(n)) - 2 * O(f(n)) = 0 so that signs and constants are irrelevant; (the space of O(f(n)) over all f is not a ring over the real numbers). Thus, you drop them as soon as you pull out O. – Jason Dec 8 '10 at 6:34
@Jason: I am not disputing that (dropping constants). What I disagree with is replacing -sum(i*i) with + O(n^3). If we are talking about O (as in upper bounds), -sum(i*i) is O(1), which is O(n^3), admittedly. If we are using O to talk about tight bounds, then there is a problem with computing such bounds using the notation where subtraction occurs. – lijie Dec 8 '10 at 10:10
show 9 more comments
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

link|improve this answer
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").

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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