0

Hi I'm quite new to induction so I don't really know how I should tackle this problem.

I took out a calculator and checked the results

2,16,167,1667 I sort of see a pattern but how would I start the induction?

J.Hao
  • 13
  • 1

3 Answers3

1

HINT: Let $a_n$ be the number of this form with $n$ zeroes in the middle, so that $a_0=36$, $a_1=306$, and so on.

  • Show that $a_{n+1}=10(a_n-6)+6=10a_n-54$.

Once you’ve done that, showing by induction on $n$ that $a_n$ is always divisible by $18$ should be pretty straightforward.

Brian M. Scott
  • 616,228
1

A number is divisible by $18$ iff it is even and is divisible by $9$.

Now $3000\cdots006$ is clearly even and is divisible by $9$ because the sums of its digits is $9$.

lhf
  • 216,483
0

Each of those numbers can be expressed in the form $3(10^{n})+6$.

As you have already demonstrated, it is true for the case $n=1$.

Assume it holds for some natural number $k$ so that for $n=k$:

18|$3(10^{k})+6$.

Now for $n=k+1$ we have:

$3(10^{k+1})+6= 30(10^{k})+6=[3(10^{k})+6]+27(10^{k})=[3(10^{k})+6]+27(2^{k})(5^{k})=[3(10^{k})+6]+18(3)(2^{k-1})(5^{k})$

Since both of the last two terms are divisible by 18, the inductive proof is complete.

J.Gudal
  • 1,313