I must prove that $7^n-1$ $(n \in \mathbb{N})$ is divisible by $6$.
My "inductive step" is as follows:
$7^{n+1}-1 = 7\times 7^n-1 = (6+1)\times 7^n-1 = 6\times 7^n+7^n-1$
So now, $6\times7^n$ is divisible by 6, that's obvious. But what about the other part, the $7^n-1$ ? How do we know that it's also divisible by 6? For that's the one I was supposed to prove isn't it? Or have I just done it? How's that? I'm confused..
According to some resources it is a complete proof, however, it's not clear for me why. Could someone please explain?
Ahmed Hussein: $7^n-1$ is divisible by $6$ according to the induction hypothesis.
But as its name indicates, it's only a hypothesis and not a known fact, that's what's bugging me.
Elliot G: Since $6|7^k−1$ ...
How do we know?
Sir Jective: Then we can assume that ...
We're just assuming...
I think now you get what I don't understand. I seem to be missing the point of induction, what I don't understand is: Where do we prove during the process that $6|7^n−1$ so that at the last step we can regard it as a known, proven fact?
The first step of induction is a base case. This is what allows us to make further assumptions. Before we can even begin to use induction, we first have to show the statement for a specific value. In this case since we are trying to show a statement for all $n\in\mathbb{N}$, let's start with $1$. It is clear that $7^1-1=6$ so $$6|7^1-1.$$ Since we now have that fact in hand, we know the property holds for $n=1$. If we can show that $$6|7^1-1\implies 6|7^2-1$$ then we will know that the property holds for $n=2$ since we have proven through other means that it is true for $n=1$. Furthermore, if in addition to proving the above we prove that $$6|7^2-1\implies 6|7^3-1$$ we will know that the property holds for $n=3$ and we could continue in this fashion for however long we wanted. The nice thing about induction is that we can do the cases of $n=2$, $n=3$ and even all $n\geq 4$ at once by proving the statement $$6|7^k-1\implies 6|7^{k+1}-1$$ for all $k\geq 1$ since this statement IN ADDITION to our base case $n=1$ gives us that the statement is true for $n=2$ by using our base case and the statement when $k=1$, for $n=3$ by using the fact that it is true for $n=2$ and our statement when $k=2$, and similarly for any $n\in\mathbb{N}$.
One thing to keep in mind is that an induction must always have BOTH a base case and an inductive step, but many times if the base case is obvious(as is the case here) it may be left out of writing for the sake of brevity. Hopefully this helps.