How could I simplify the following ?
$$ {\large\sum_{k_{1} = z}^{n}\sum_{k_{2} = k_{1}}^{n}\sum_{k_{3} = k_{2}}^{n} 1}\qquad \mbox{for natural numbers}\ z, n $$
How could I simplify the following ?
$$ {\large\sum_{k_{1} = z}^{n}\sum_{k_{2} = k_{1}}^{n}\sum_{k_{3} = k_{2}}^{n} 1}\qquad \mbox{for natural numbers}\ z, n $$
On
HINT
You have $$ \begin{split} S &= \sum_{k = 3}^n \sum_{j = k}^n \sum_{i = j}^n 1 \\ &= \sum_{k = 3}^n \sum_{j = k}^n (n-j+1) \\ &= \sum_{k = 3}^n \left(\sum_{j = k}^n (n+1) - \sum_{j = k}^n j\right) \\ &= \sum_{k = 3}^n \left((n+1) (n-k+1) - \sum_{j = k}^n j\right) \end{split} $$
Can you apply std summation formulae and finish the problem?
We consider at first the special case $z=1$ and generalise it in a second step.
Now we consider the generalisation $k_1=z$.
Comment
In (3) - (5) we successively shift the index $k_j$ to start as we did in (1).
In (6) we apply (1) with $n$ substituted by $n-z+1$.