Induction proof: $2^n + 3^n ≡ 5^n (mod 6)$

2.3k Views Asked by At

I'm trying to prove that $2^n + 3^n ≡ 5^n\ (mod\ 6)$ using induction.

$n=1$:
$2+3≡5\ (mod\ 6)$

$n=k$:
$2^k + 3^k ≡ 5^k\ (mod\ 6)$

$n=k+1$:
$2^{k+1} + 3^{k+1} ≡ 5^{k+1}\ (mod\ 6)$
$2*2^k + 3*3^k ≡ 5*5^k\ (mod\ 6)$
$6\ |\ 5*5^k - 2*2^k - 3*3^k$
$6\ |\ (2+3)*5^k - 2*2^k - 3*3^k$
$6\ |\ 2*5^k + 3*5^k - 2*2^k - 3*3^k$
$6\ |\ 2*(5^k - 2^k) + 3*(5^k - 3^k)$

Not quite sure if I'm going in the right direction or where to go from here...

4

There are 4 best solutions below

0
On BEST ANSWER

Once you check for $n=1$, you want to show: for $k\geq 1$, $$ 2^k + 3^k ≡ 5^k\pmod{6}\quad\text{implies}\quad 2^{k+1} + 3^{k+1} ≡ 5^{k+1}\pmod{6}. $$ So start with $2^k + 3^k ≡ 5^k\pmod{6}$. This implies we can write $5^k=2^k+3^k-6m $ for some integer $m$. Proceeding from here, we have \begin{align*} 5^{k+1}=5(2^k+3^k-6m)&=2^{k+1}+3\cdot2^k+3^{k+1}+2\cdot 3^k-30m\\ &=2^{k+1}+3^{k+1}+6(2^{k-1}+3^{k-1}-5m) \end{align*} which indeed implies $2^{k+1} + 3^{k+1} ≡ 5^{k+1}\pmod{6}$.

0
On

To do the inductive case:

$5^k \equiv 2^k + 3^k \mod 6$ is true. So now we must look at $5^{k+1}$, which we know is $5 \times 5^k$, therefore is congruent to $5(2^k + 3^k) \mod 6$. Note that: $$ 2^{k+1} + 2^k + 3^{k+1} + 3^k = 3(2^k + 3^k + 3^{k-1}) $$

therefore, $2^{k+1} + 3^{k+1} \equiv -(2^k+3^k) \equiv 5(2^k+3^k) \mod 6$. Combining what we have, $5^{k+1} \equiv 2^{k+1} + 3^{k+1} \mod 6$, completing the inductive step.

Alternately, note that $5^k -2^k-3^k= \sum_{k=1}^{n-1} \binom nk 2^k3^{n-k}$ is a multiple of $6$ as each term on the summation is a multiple of $6$.

0
On

Multiply both sides of $$a^k+b^k\equiv(a+b)^k\pmod{ab},$$ by $a+b$ to find $$(a+b)^{k+1}\equiv(a+b)(a^k+b^k)\equiv a^{k+1}+b^{k+1}+a\cdot b^k+b\cdot a^k\pmod{ab}$$

Use the face $a\cdot b^k,b\cdot a^k,$ are both divisible by $ab$ for $k\ge1$

0
On

Without induction: $$5^n=(2+3)^n=2^n+3^n+6k.$$