I've been trying to prove using mathematical induction the following statement :
"Prove that for all integers n ≥ 1 we have 8|9^n − 1 ."
What I did and where I struggled :
Verify :
if n=1
9^1 -1 = 8 TRUE
Assumption :
9^n -1 = 8m
9^(n+1) - 1 = 9*9^n - 1
When I arrived I did not know what to do anymore, I checked the solution, but I cannot understand how come there are a "-1" and "-1" that pop up for apparently no reason ; solution :
9*9^n-1 +0 = 9*9^n-1+1-1 = 9(9^n-1)+8 = 9(8m) + 8 = 9*8m+8 = 8(9m+1)
So my questions are :
- Why did he added the +1-1 ? (and how come we can add numbers like that)
- why did he use 8m to define 9^n -1 , couldn't it have been another variable, i.e : only the letter "k"
- Where does the "8" come from ?
In conclusion I do not understand the whole procedure...
9^n
as8m+1
, which it is, in the last line of your second box and expanding, you will see an expression that is a multiple of 8. – Andrew Lazarus Sep 22 '17 at 20:56