From repeated addition to the sum of any sequence — discover the pattern yourself
You add the number $6$ exactly $10$ times: $$6 + 6 + 6 + 6 + 6 + 6 + 6 + 6 + 6 + 6 = \;?$$
$= 60$
$$7 + 7 + 7 + 7 + 7 + 7 = \;?$$
$= 42$
Write a single formula for: $$\underbrace{k + k + k + \cdots + k}_{n \text{ times}} = \;?$$
$$\underbrace{k + k + \cdots + k}_{n} = n \times k$$
This works because multiplication is repeated addition. We will need this fact in Section C.
Add the first five positive integers: $$1 + 2 + 3 + 4 + 5 = \;?$$
$= 15$
Notice: $1 + 5 = 6$, $\;2 + 4 = 6$, $\;3 = 3$ (the middle). Three groups of 6 minus one 3? Or five terms averaging $3$? Keep this in mind.
Add all integers from 1 to 10: $$1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 = \;?$$
$= 55$
Here is a slicker way to see the same idea. Write the sum $S$ twice: once forwards, once backwards. Stack them and add column by column.
Each column sums to the same value: $(\text{first} + \text{last}) = 1 + 6 = 7$. There are $6$ columns (one per number). So $2S = 6 \times 7$, giving $S = 21$.
You don't need to list all the pairs. You just need to know how many numbers there are and what the first and last are.
Add all integers from 1 to 20: $$1 + 2 + 3 + \cdots + 20 = \;?$$
$1 + 2 + \cdots + 20 = 210$
Add all integers from 1 to 50. No calculator needed — use the trick.
$1 + 2 + \cdots + 50 = 1275$
Add all integers from 1 to 100. Legend has it a young student named Gauss solved this in seconds as a school task. Can you match him?
$1 + 2 + \cdots + 100 = 5050$
This is the answer Gauss supposedly gave instantly as a child. The trick is elegant: no matter how large $n$ is, the computation stays just as simple.
Add all integers from 1 to 1000. A direct sum would take a very long time — but with the trick, it takes three steps.
$1 + 2 + \cdots + 1000 = 500\,500$
Let $S = 1 + 2 + 3 + \cdots + n$ where $n$ is any positive integer. Apply the forwards-and-backwards trick to derive a closed formula for $S$.
$$1 + 2 + 3 + \cdots + n = \frac{n(n+1)}{2}$$
You derived this — not memorised it. The formula works because: $n$ terms, average value $\dfrac{n+1}{2}$, total $= n \times \dfrac{n+1}{2}$.
Use the formula $S = \dfrac{n(n+1)}{2}$ to recompute the answers from exercises B1 through B6. Do they match?
All match.
Use your formula to find $1 + 2 + 3 + \cdots + 500$. You should be able to write the answer in one line.
$= 125\,250$
Add up this sequence: $3 + 7 + 11 + 15 + 19 + 23$. Each term is 4 more than the previous one. Can you use the same pairing trick?
$3 + 7 + 11 + 15 + 19 + 23 = 78$
The pairing trick works even when the sequence doesn't start at 1! The key observation: every pair summed to the same value — the first term plus the last term.
An arithmetic sequence starts at value $a$, ends at value $\ell$, and has $n$ terms in total (each step increases by the same amount $d$): $$S = a + (a+d) + (a+2d) + \cdots + (\ell - d) + \ell$$ Apply the forwards-and-backwards trick to find a formula for $S$ in terms of $a$, $\ell$, and $n$.
$$S = \frac{n}{2}(a + \ell) = \frac{n}{2}(\text{first} + \text{last})$$
This is the most general form of the sum formula for an arithmetic sequence. When $a = 1$ and $\ell = n$, it reduces to $\dfrac{n}{2}(1 + n) = \dfrac{n(n+1)}{2}$, which is exactly what you derived in C1.
Find the sum of multiples of 5 from 5 to 100: $$5 + 10 + 15 + \cdots + 100$$ First work out how many terms there are, then apply the formula from C5.
$5 + 10 + \cdots + 100 = 1050$
Alternatively: $5 + 10 + \cdots + 100 = 5(1 + 2 + \cdots + 20) = 5 \times 210 = 1050$ ✓
In C5 you found $S = \dfrac{n}{2}(a + \ell)$. But sometimes you don't know the last term $\ell$ — you only know the first term $a$, the common difference $d$, and the number of terms $n$. Express $\ell$ in terms of $a$, $d$, and $n$, and substitute into the formula.
$$S = \frac{n}{2}\bigl(2a + (n-1)d\bigr)$$
Quick check: For $a=1$, $d=1$, $n$ terms: $S = \dfrac{n}{2}(2 + n - 1) = \dfrac{n(n+1)}{2}$ ✓
The sequence $4, 7, 10, 13, \ldots$ has first term $a = 4$ and common difference $d = 3$. Find the sum of the first 15 terms.
Sum of first 15 terms $= 375$
Check: last term $= 4 + 14 \times 3 = 46$. Using the other formula: $S = \dfrac{15}{2}(4 + 46) = \dfrac{15 \times 50}{2} = 375$ ✓