TelusPig
- 15
- 0
Homework Statement
How can I compute the sum
An example to calculate
\sum_{i=1}^n\sum_{j=i+1}^n(i+2j)?? I only have an example where n=1 and it gives a sum of 0 (why?)
Maybe with n=3, what would the expanded form look like?
Homework Equations
I know how to do double sums, but when I have indexes ranging from a constant to a constant. But I haven't encountered one where the index is dependent on the other sum's index.
The Attempt at a Solution
I tried computing the inner sum first:
\sum_{i=1}^3 \left( \sum_{j=i+1}^{3}i +2\sum_{j=i+1}^{3}j \right)
=\sum_{i=1}^3 \left(i(3-(i+1)+1) +2\sum_{j=i+1}^{3}j \right)
=\sum_{i=1}^3 \left(3i-i^2 +2\sum_{j=i+1}^{3}j \right)
=3(1+2+3)-1^2-2^2-3^2+2\sum_{i=1}^3\sum_{j=i+1}^{3}j
I don't know what to do about the summation of j, since it's indexed at j but it starts at i+1?
I only know that the answer is 20 because of Wolfram for when n = 3
http://www.wolframalpha.com/input/?i=Sum[i+2j,+{i,+1,+3},+{j,+i+1,+3}]
Last edited: