I have the following induction problem:
$8^n-2^n$ is a multiple of $6$ for all integers $n\geq 0$.
So far this is what I've done:
Base case: $n = 0$
$8^0-2^0 = 6$
$1 - 1 = 6$
$0 = 6$
This means that it's a multiple of $6$.
Assume $n = k\colon 8^k - 2^k = 6m$
Where I'm getting stuck now is factoring out $8^k - 2^k = 6m$. The example I'm following on YouTube was $6^k + 4 = 5m$, which factored out nicely to $(5m-4) \cdot 6 + 4$. Where do I go from here?
First of all, your base case should be $0=6\times0$, thus it is a multiple of $6$.
Now as @Brenton said, our inductive step is as follows:
Assume $6$ divides $8^k-2^k$, for some $k$ (we write this $6\mid8^k-2^k$).
We want to show that $6\mid8^{k+1}-2^{k+1}$, using this assumption.
Ok so $$6\mid8^k-2^k$$ so $$6\mid8(8^k-2^k)=8^{k+1}-8\times2^k=8^{k+1}-4\times2^{k+1}$$
Can you finish the proof from here?