1

the question goes as follows: Use proof by induction to show that $2^{n+1} + 5 \times 9^n$ is divisible by $7$.

I did a few things like $f(k+1)-f(k)$ to get to $2^{k+1} + 5 \times 9^k \times 8$ but I dont understand what to do next

SummerAtlas
  • 1,042

1 Answers1

0

Let $P(n)$ be the statement that $2^{n+1}+5\times 9^n$ is divisible by $7$.

Base case: $n=0$, trivial.

Inductive Step: assume the statement is true for some $n = k\in\mathbb N$, we want to show the statement for $n=k+1$.

Then

\begin{align*} 2^{k+2} + 5\times 9^{k+1} &= 2\times 2^{k+1} + 5\times 9^k\times 9\\ &= 2\times (2^{k+1}+5\times 9^k) + (5\times 9^k)\times 7\\&=\cdots \end{align*}

SummerAtlas
  • 1,042