The sigma symbol Σ is shorthand for adding many terms together, one by one.
When you add 1 to n, sums like the naturals or the squares appear so often that a short formula gives the answer at once.
Once you see where these formulas come from, any messy series breaks into sums of k, k², and k³.
Here a bar chart and a triangle of dots let you watch the sums build and see why the formula holds.
Meaning of the Sigma (Σ) Notation
seegongsik.com
Visualize partial sums as a bar chart
5
💡 Σ means 'add them all up'
①Σ(k=1 to n) a_k = a₁ + a₂ + ... + a_n
②Bottom: start, top: end, right: rule
③Sum of bar heights = the value of Σ
Sum of Naturals — Triangular Numbers
seegongsik.com
1+2+...+n as a triangular dot array
5
Sum of Naturals
n(n+1)2
1 + 2 + 3 + ... + n = n(n+1)/2
Three Key Formulas
Σk
n(n+1)2
1 + 2 + ... + n
Σk²
n(n+1)(2n+1)6
1² + 2² + ... + n²
Σk³
[n(n+1)2]² = (Σk)²
1³ + 2³ + ... + n³ = (1+2+...+n)²
🔗 Surprising Identity
①Σk³ = (Σk)² — sum of cubes is the square of the sum!