A positive integer is divisible by 9 if and only if the sum of its digits is divisible by 9.
If n is a positive integer, for which of the following values of k is 25 x 10n + k x 102n divisible by 9 ?
9
16
23
35
47
题目分析:
最简单的方法就是带入具体值法,假设 n=1 或者 n=2;我们假设 n=1, 25 ×~$10^n$~+ k × ~$10^{2n}$~=250+100K
k=9, 式子=250+900=1150, 1+1+5=7,不能被 9 整除; k=16, 式子=250+1600=1850, 1+8+5=14,不能被 9 整除;
k=23,式子=250+1300=1550, 1+5+5=11,不能被 9 整除;
k=35, 式子=250+3500=3750, 3+7+5=15, 不能被 9 整除;
k=47, 式子=250+4700=4950, 4+9+5=18,18 能被 9 整除,4950 能被 9 整除。
n=2 时,25 × ~$10^n$~+ k × ~$10^{2n}$~=2500+k*10000=k2500.2+5=7,再根据选项看,只有 k=47 时, 25 × ~$10^n$~ + k × ~$10^{2n}$~ = 472500, 4+7+2+5=18,可以被 9 整除。
n>2, 25 × ~$10^n$~ + k × ~$10^{2n}$~=25(后面 n 个 0)+k(后面 2n 个0)=2500….+k0000….=k00..2500..的形式,k 的各个位数字之和加上 2 和 5 能被 9 整除,式子就能被 9 整除。
综上:答案就是 E.
直接排除10的影响,2+5=7,k+7可以divisible by 9
我当时假设n=1,得出的等式是K00+250,将K带入(K+2+5)/9都不能得到正确答案。当时真的是鬼迷心窍了啊,哭……
7+k=9n
带入选项试试,47+7=54=6*9
将n=1带入其中!