As you can see from problem 10, the equation
$$\displaystyle \sum_{1 \leq k \leq n} k(k+1) = \frac{n(n+1)(n+2)}{3}$$
contains a variable $n$. So, it doesn't make sense to ask if the equation is true or not, right? However, it does make sense to ask whether or not the equation is true for specific values of $n$. The problem wants us to show that it's actually true for every $n = 1, 2, 3, ...$. For problems like these, induction is often useful to use.
You start with showing the base case. This is to show the equation, or statement, is true for some first value of your induction variable (in our case, the induction variable is $n$). From what you've said, it looks like you comfortable with that step already. Now the next step in induction proofs is usually called the inductive step. It's where you assume the equation, or statement, is true for some arbitrary positive whole number $n = m$, and then try to show that the equation would also be true for $n = m+1$. If you think about it for a second, those two steps combined would mean the equation is true for all $n = 1, 2, 3, ...$.
You may use any variable name instead of $m$ as you like, so long as it doesn't clash with other notation or cause potential confusion. In the process of trying to show that the equation is true for $n = m+1$, we may use our assumption that is was true for $n = m$. For our case, we would assume that the following is true
$$\displaystyle \sum_{1 \leq k \leq m} k(k+1) = \frac{m(m+1)(m+2)}{3}$$
Then, we would try to calculate $\displaystyle \sum_{1 \leq k \leq m+1} k(k+1)$ by using the fact that the equality above is true:
$\displaystyle \sum_{1 \leq k \leq m+1} k(k+1)
\\
= \displaystyle \sum_{1 \leq k \leq m} k(k+1) + (m+1)((m+1)+1)
\\
= \frac{m(m+1)(m+2)}{3} + (m+1)(m+2)
\\
= \frac{m(m+1)(m+2)}{3} + \frac{3(m+1)(m+2)}{3}
\\
= \frac{m(m+1)(m+2) + 3(m+1)(m+2)}{3}
\\
= \frac{(m+1)(m+2)(m+3)}{3}
$
But, this is exactly what we wanted it to be because, it means our original equation is true for $n = m+1$. Therefore, by induction,
$$\displaystyle \sum_{1 \leq k \leq n} k(k+1) = \frac{n(n+1)(n+2)}{3}$$
is true for all $n = 1, 2, 3, ...$.