This formula is given:
$$ n + (n-1) + (n-2) + (n-3) + (n-4) + \ldots + 1 \geq 100. $$
In the textbook it is written, the above is reduced using the triangular formula to
$$ n (n+1) / 2 \geq 100. $$
But why can we reduce it? The general triangular formula is:
$$ T_n = \sum^n_{k=1} k = 1 + 2 + 3 + \ldots + n = \frac{n(n+1)}{2}. $$
In my case the formula would look like this:
$$ T_n = \sum^1_{k=n} k = n + (n-1) + (n-2) + \ldots + 1 = \frac{n(n+1)}{2}. $$
Can I just say that it is equivalent?