I have this question:
Show, using mathematical induction, that for all natural numbers $n$,
$$6 + 11 + 16 + 21 + \cdots + (5n-4) = \frac{n(5n-3)-2}{2}$$
I am confused in that that question states for all $natural$ $numbers$... yet if you take $1$ (for example as the base case) which is a $natural$ $number$ it does not work:
LHS: $(5n-4) = (5(1)-4) = 1$
RHS: $\frac{n(5n-3)-2}{2} = \frac{1(5(1)-3)-2}{2} = 0$
Am I understaning/doing something wrong? Should I just take $S(2)$ as the base step? How would I go about solving this problem?
As the comments have indicated, the equation is actually valid for $n = 1$, after a fashion. It is clearer when written as a summation:
$$ \sum_{k=2}^n (5k-4) = \frac{n(5n-3)-2}{2} $$
Spelled out in words, the above equation reads, "The sum of $(5k-4)$, from $k = 2$ to $n$, equals $\ldots$" When $n = 1$, the summation on the left is empty, and an empty sum is by definition equal to zero (which equals the fraction on the right). For a more familiar identity, we might write
$$ \sum_{k=1}^n k = 1+2+3+\cdots+n = \frac{n(n+1)}{2} $$
When $n = 0$, the summation on the left is empty, so the sum is zero (which, again, equals the fraction on the right). The confusing part of your question is that the summand (the $(5k-4)$ you're adding up) is not actually zero for $n = 1$, so it is easy to make the mistake of using it in the sum. But in fact the limits of the sum dictate that it not be included.
Anyway, to prove by induction: The above will serve as the basis case. The induction step is to assume that
$$ \sum_{k=2}^{n-1} (5k-4) = \frac{(n-1)[5(n-1)-3]-2}{2} $$
and show that adding $5n-4$ to both sides of the equation yields
$$ \sum_{k=2}^n (5k-4) = \frac{n(5n-3)-2}{2} $$
Can you take it from here?