Formula For Summing A Sequence of Squares
Suppose you want to find the sum of the squares of all integers from 1 up to 200. Doing it manually would be boring a take a lot of time. Instead you can use the formula below: S = 1/6 * n * (n + 1) * (2n + 1) So in our case the […]