Math Fundamentals18 sections · 814 units
Open in Course

Summation Notation

Sigma notation basics

Summation notation uses the Greek letter sigma (Σ\Sigma) to represent adding up terms. You write i=1nai\sum_{i=1}^{n} a_i to mean a1+a2+a3+...+ana_1 + a_2 + a_3 + ... + a_n.

The i=1i = 1 below sigma tells you where to start. The nn above sigma tells you where to stop. The expression after sigma tells you what to add.

For example, i=15i=1+2+3+4+5=15\sum_{i=1}^{5} i = 1 + 2 + 3 + 4 + 5 = 15. And i=142i=2+4+8+16=30\sum_{i=1}^{4} 2^i = 2 + 4 + 8 + 16 = 30.