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
...? 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:04Sum[i=0..n](N[i] * (N[0] - N[i] + 1)), whereN[0] = nandN[i] = N[i-1] - 1– Franci Penov Dec 7 '10 at 22:10nwheren>=-500ANDn<=+1000. – Jim Fell Dec 7 '10 at 22:16