n
    so we sum n

But What Values of n ?

The values are shown below
and above the Sigma:

 
4
Σ
n=1
n
    it says n goes from 1 to 4,
which is 1, 2, 3 and 4

OK, Let's Go ...

So now we add up 1,2,3 and 4:

 
4
Σ
n=1
n = 1 + 2 + 3 + 4 = 10

Here it is in one diagram:

Anatomy of sigma notation showing upper limit, sigma symbol, formula, and lower limit

More Powerful

But Σ can do more powerful things than that!

We can square n each time and sum the result:
4
Σ
n=1
n2 = 12 + 22 + 32 + 42 = 30

We can add up the first four terms in the sequence 2n+1:

4
Σ
n=1
(2n+1) = 3 + 5 + 7 + 9 = 24

And we can use other letters, here we use i and sum up i × (i+1), going from 1 to 3:

3
Σ
i=1
i(i+1) = 1×2 + 2×3 + 3×4 = 20

And we can start and end with any number. Here we go from 3 to 5:

5
Σ
i=3
ii + 1 = 34 + 45 + 56
 

Properties

Partial Sums have some useful properties that can help us do the calculations.

Multiplying by a Constant Property

Say we have something we want to sum up, let's call it ak

ak could be k2, or k(k-7)+2, or ... anything really

And c is some constant value (like 2, or -9.1, and so on), then:

Sigma

In other words: if every term we are summing is multiplied by a constant, we can "pull" the constant outside the sigma.

Example:

Sigma

So instead of summing 6k2 we can sum k2 and then multiply the whole result by 6

 

Adding or Subtracting Property

Here's another useful fact:

Sigma

Which means that when two terms are added together, and we want to sum them up, we can actually sum them separately and then add the results.

Example:

Sigma

It is going to be easier to do the two sums and then add them at the end.

Note this also works for subtraction:

Sigma

Useful Shortcuts

And here are some useful shortcuts that make the sums a lot easier.

In each case we are trying to sum from 1 to some value n.

Summing 1 equals n:
n
Σ
k=1
1 = n
Summing the constant c equals n × c:
n
Σ
k=1
c = nc
A shortcut when summing k:
n
Σ
k=1
k = n(n + 1)2
A shortcut when summing k2:
n
Σ
k=1
k2 = n(n + 1)(2n + 1)6
A shortcut when summing k3:
n
Σ
k=1
k3 = (n(n + 1)2)2
Also true when summing k3:
n
Σ
k=1
k3 = (
n
Σ
k=1
k )2
Summing odd numbers:
n
Σ
k=1
(2k - 1) = n2
n
Σ
k=1
ark = ar
1−rn1−r
  (r≠1)
or starting at k=0:
n−1
Σ
k=0
ark = a
1−rn1−r
  (r≠1)

Let's use some of those:

Example 1: You sell concrete blocks for landscaping.

A customer says they will buy the entire "pyramid" of blocks you keep out front. The stack is 14 blocks high.

How many blocks are in there?

Sigma

Each layer is a square, so the calculation is:

12 + 22 + 32 + ... + 142

But this can be written much more easily as:

Sigma

We can use the formula for k2 from above:

Sigma

That was a lot easier than adding up 12 + 22 + 32 + ... + 142.

And here's a more complicated example:

Example 2: The customer wants a better price.

The customer says the blocks on the outside of the pyramid should be cheaper, as they need cleaning.

You agree to:

What's the total cost?

Sigma

You can calculate how many "inner" and "outer" blocks in any layer (except the first) using

And so the cost per layer is:

So all layers together (except first) will cost:

Sigma

Now we have the sum, let's try to make the calculations easier!

Using the "Addition Property" from above:

Sigma

Using the "Multiply by Constant Property" from above:

Sigma

That's good ... but our shortcut formulas only work when the index starts at 1. Since we are starting at i=2 we need to use index shifting to make the formulas fit.

So let's invent two new variables to reset our starting point to 1:

And we have (note we changed 14 to 13 or 12 as needed):

Sigma

(We also dropped the k=0 case, knowing that 02=0)

And now we can use the shortcuts:

Sigma

After a little calculation:

$7 × 364 + $11 × 650 = $9,698.00

Oh! And don't forget the top layer (size=1) which is just one block. Maybe you can give them that one for free, you are so generous!

Note: as a check, when we add the "outer" and "inner" blocks, plus the one on top, we get

364 + 650 + 1 = 1015

Which is the same number we got for the "total blocks" before ... yay!

602, 1249, 3019, 3020, 3021, 603, 1250, 8351, 8352, 8353
Copyright © 2026 Rod Pierce