math-sigma-notation.html
* created: 2025-06-17T17:23
* modified: 2025-07-26T20:06
title
Sigma Notation
description
The sigma notation is used as a short form of iterating expressions. It is represented by a start, end and an expression.
Summing stuff
It's basically a for loop with a starting and a end condition that executes a predefined logic n times.
\sum_{j=1}^{200} j = 20100
The Little Gauss
\sum_{j=1}^{200} j = \frac{200(200+1)}{2} = \frac{40200}{2} = 20100