How sigma notation works
Sigma notation expresses a sum concisely: the capital Greek letter sigma (Σ) followed by a formula, a variable, and lower and upper bounds. The calculator evaluates the formula at each integer value of the variable from the lower bound to the upper bound and sums the results.
For example, Σ(n, 1, 5) of n^2 means 1^2 + 2^2 + 3^2 + 4^2 + 5^2 = 55. This added context connects the displayed result to the assumptions, method, and practical interpretation shown elsewhere on the page.
The lower bound tells you where the index starts. The upper bound tells you where it stops. The expression to the right of Σ defines the value of each term. Changing any of those three pieces changes the final sum.