lets say i have an expression:

(n)+((n-1)*2)+((n-2)*3)+((n-3)*4)+...+(3*(n-2))+(2*(n-1))+(1*(n))

what is the tight bound of this? or the upper bound? is this n^3? is this n^4? the maximum amount of number i can get out of this? thanks

EDIT: so: for i=1 then: the ans is 1.

i=2: (1*2 + 2*1) 1=3: (1*3 + 2*2 + 3*1) i=4: (1*4 + 2*3 + 3*2 + 4*1 )

and so on

link|improve this question

50% accept rate
2  
homework? probably a question for: math.stackexchange.com – Drakosha Dec 7 '10 at 21:59
What goes in the ...? You are counting up the multiplicand, then suddenly you are counting down. At what point do you switch? – BlueRaja - Danny Pflughoeft Dec 7 '10 at 22:04
1  
@BlueRaja - Danny Pflughoeft - if I got it right, it's a Sum[i=0..n](N[i] * (N[0] - N[i] + 1)), where N[0] = n and N[i] = N[i-1] - 1 – Franci Penov Dec 7 '10 at 22:10
The equation you provided doesn't have any inherent bounds, like an asymptote, or something like that. Bounds need to be set by the context of the problem. For example, you may want to do the summation for all values of n where n>=-500 AND n<=+1000. – Jim Fell Dec 7 '10 at 22:16
It's, \sum_{i=0}^{n-1} {(n-i)^{i+1}} – nlucaroni Dec 7 '10 at 22:18
show 1 more comment
feedback

1 Answer

up vote 1 down vote accepted

Try Wolfram Alpha ...

Sum[(i + 1) (n - i), {i, 0, n - 1}]

link|improve this answer
i am truly impressed by your answer. this is truly correct , grats – sam Dec 7 '10 at 23:50
is: question: is this O(n^3)? or O(n^2)? – sam Dec 8 '10 at 1:39
@Sam The max exponent is n^3 – belisarius Dec 8 '10 at 1:48
feedback

Your Answer

 
or
required, but never shown

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