0

If there is a nested summation with n layers, each layer having the same starting and ending value as every other layer, and the innermost layer containing some expression, how would I express this nested summation without expressing every individual layer of the nested summation?

1 Answers1

1

Write it as follows $$\sum_{k_1=a}^b\,\sum_{k_2=a}^b\,\dots\,\sum_{k_n=a}^b\,=\sum_{a\,\leq\, k_1,\,k_2,\,\dots,\,k_n\leq\, b}$$

Fimpellizzeri
  • 23,126