[Math] Arithmetic series question help

sequences-and-series

An arithmetic series has first term $5$ and the tenth term is equal to $26$. Find the common difference hence find the least value of $n$ for which the sum of the first $n$ terms of the series exceeds $1000$.

Best Answer

Recall that the explicit formula for an arithmetic series is: $$a_n = a_0 + nd \tag{1}$$ ... where $d$ is the common difference.

So, you're given that $a_{9} = 26$ and that $a_0 = 5$. With that information, can you solve equation $(1)$ for $d$?

For the sum question, what you want is the first $n$ such that: $$\sum_{k=0}^{n}a_k \gt 1000 \tag{2}$$

This can be done brute-force with a calculator (or pencil and paper with a lot of patience), or with formulas.

We know that $\sum_{k=0}^{n} k = \frac{n(n+1)}{2}$, and that $\sum_{k=0}^{n}1 = n+1$. Thus, plugging equation $(1)$ in to equation $(2)$: $$\sum_{k=0}^{n} a_0 + kd \gt 1000 $$ $$\sum_{k=0}^{n} a_0 + \sum_{k=0}^{n}kd \gt 1000$$ $$a_0\sum_{k=0}^{n} 1 + d\sum_{k=0}^{n}k \gt 1000$$ $$a_0(n+1) + d\frac{n(n+1)}{2}\gt 1000\tag{3}$$

So, all you need to do is solve $(3)$ for the smallest integer $n$ for which the equality holds.

Related Question