Proof formula with induction

59 Views Asked by At

How can I prove by induction that $\forall n\in\mathbb{N}: \ 3^{2n} - 1$ is divisible by $8$.

Proof for $n=1$: $\displaystyle3^{2\cdot1} - 1 = 8$ which is divisible by $8$.

How can I prove it for $n+1$? this is where I got so far: $3^{2(n+1)} - 1 = 3^{2n+2} -1$

3

There are 3 best solutions below

1
On BEST ANSWER

$3^{2n+2}-1=3^{2n}\cdot{3^2}-1=9\cdot{3^{2n}}-1=8\cdot{3^{2n}}+(3^{2n}-1)$

Proof with no induction: $3^{2n}-1=9^n-1^n=(9-1)(9^{n-1}+9^{n-2}+...+1)=8(9^{n-1}+9^{n-2}+...+1)$ which is of course divisible by 8.

1
On

First note $3^{2n} = 9^n$

Then note $9^0 - 1$ is divisible by eight and $9^{n+1} - 9^n = 8*9^n$

0
On

Assume $3^{2n}-1$ is divisible by $8$. $$3^{2(n+1)}-1=3^{2n}3^{2}-1=9*3^{2n}-1=9*3^{2n}-9+8=9\big(3^{2n}-1\big)+8$$ $3^{2n}-1$ and $8$ are both divisible by $8$, therefore the sum is also divisible by $8$. This along with the proof that the statement holds true for $n=1$ proves this statement by induction.