-5

I know that I have to get to a point where an summation is multiplied by $133$ but I don't know how to get there. I tried formating the equation like $11^2\times11^n + 12 \times 12^ {2n}$ but I got stuck there and I don't really know how to prove it with induction. I really need to solve this.

Thank you for your help and sorry if I misspelled anything. Also sorry that you have to edit it, I don't really know how to make superscripts.

WAT
  • 31

2 Answers2

1

Seeing as you don't seem to be familiar with induction, I'll give a quick explanation.

We begin by checking the base case for the statement, ie for the first value we are interested in- in your case, check for when $n=1$. Next, we assume the statement is true for some $n=k$.

Next, we use our assumption to show that if the assumption is true then the statement is also true for $n=k+1$. But we already know the statement is true for $n=1$ (in your case), so it must be true for $n=2,3,4,...$ and so on.

I can provide a proof by induction in this case if you feel you are ready for it?

Proof by induction I will make this proof quite explicit as this is your first proof by induction. First, let $f(n)=11^{n+2}+12^{2n+1}$.

Base case

Check for $f(1)$: $$11^3+12^3=133\times23$$ which is certainly divisible by $133$!

Assumption

Assume true for $n=k$: $$f(k)=11^{k+2}+12^{2k+1}\text{is divisible by $133$ for all $k\in\mathbb N$}$$

Inductive step

Now to prove that the assumption implies the truth of the statement for $n=k+1$:

$$f(k+1)=11^{k+3}+12^{2(k+1)+1}=11^{k+3}+12^{2k+3}=11(11^{k+2})+144(12^{2k+1})$$ $$=11(11^{k+2}+12^{2k+1})+133(12^{2k+1})=11f(k)+133(12^{2k+1})$$ Now, $133(12^{2k+1})$ is certainly divisible by $133$, but by the assumption, $f(k)$ is also divisible by $133$. Hence we have proved that $f(k+1)$ is divisible by $133$ if $f(k)$ is divisible by $133$. But by the base case, we know it to be true for $n=1$. Hence the result follows for all $n\in\mathbb N$. I'll just formally write the conclusion below.

Conclusion

If $f(n)$ is divisible by $133$ for $n=k$ and this implies $f(k+1)$ is divisible by $133$, as $f(1)$ is divisible by $133$ then $f(n)$ is divisible by $133$ for all $n\in\mathbb N$ by the principle of mathematical induction.

1

If you know modular arithmetic, it's easy:

$$11^{n+2}+12^{2n+1}=121\cdot11^{n}+12\cdot144^{n}\equiv121\cdot11^{n}+12\cdot11^{n}=133\cdot 11^{n}\equiv0\bmod133.$$

J. W. Tanner
  • 60,406