2

I did most of it but I stuck here I attached my working tell me if I did correct or not thanks

My working: My working

EDITED: I wrote the notes as TEX Prove using induction that $2^{3n} - 3^n \mod{5} = 0$.

Statement is true for $n = 1$: $$2^{3 * 1} - 3^1 = 2^3 - 3 = 8 - 3 = 5$$ $$5 \mod{5} = 0$$

Now for $n = p$ and $n = p + 1$: $$2^{3(k+1)} - 3{k + 1} = 2 * 2^p - 3$$ $$=2(5n + 3) - 3=10n + 6 - 3 = 10n+3$$

5 Answers5

2

Hint: $2^{3(n+1)}-3^{n+1} = 8(2^{3n}-3^{n})+3^n(8-3).$

Math Lover
  • 15,153
1

we have $$2^{3n}-3^{n}=8^n-3^n\equiv 3^n-3^n\equiv 0\mod 5$$

1

We first show for the $n=1$ case:

$2^3-3 = 8-3 = 5$

which is clearly divisible by 5. Next is the inductive step where we assume

$2^{3n} - 3^n=5m $ for some integer $m$.

We can rewrite this as

$2^{3n}=5m+3^n$.

Now we want to prove that $2^{3(n+1)}-3^{n+1}$ is divisible by 5. We first can simplify this a bit:

$2^{3(n+1)}-3^{n+1} = 2^{3n+3}-3^{n+1}=2^3\cdot2^{3n}-3\cdot 3^n$.

We can now make the substitution from the previous statement to write this as

$2^3(5m+3^n)-3\cdot 3^n=5(8m)+8\cdot 3^n-3\cdot 3^n = 5(8m)+5\cdot3^n=5(8m+3^n)$

which is clearly divisible by 5 and proves the statement.

0

By I.H. we have $2^{3n}-3^{n}=5k$ for some integer $k$ and thus $2^{3n}=3^{n}+5k$.

Now we have:

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

and we are done.

nonuser
  • 90,026
  • Very interesting, I put my solution at least 5 minutes before TheStrangeQuark and his solution is accepted, which is the same as mine, while my is not even useful. – nonuser Nov 16 '17 at 18:03
0

It's hard to read your handwriting but it looks like you have the right idea but were sloppy in your execution and made so distributive error.

Assume if $n=k$ then statement is true and

$2^{3k} - 3^k = 5P$ for some integer $P$. (Always a good idea to specify what a variable is whenever you introduce it.)

$2^{3k+1} -3^{k+1}= 2*2^{3k} - 3$.

Theres two errors here: $2^{3(k+1)} \ne 2^{3k+1}$ and ... why did the $3^{k+1}$ turn into a $3$.

You should have:

$2^{3(k+1)} - 3^{k+1} = 2^{3k + 3} - 3^{k+1} = 8*2^{3k} - 3*3^{k}$

Can you go from there?

$8*2^{3k} - 3*3^{k} = 5*2^{3k} + 3*2^{3k} - 3*3^k = 5*2^{3k} + 3(2^{3k} - 3^k) = 5*2^{3k} + 3(5P) = 5(2^{3k} + 3P)$

fleablood
  • 124,253