0

I am searching for a mathematical proof of this statement: It's impossible to find a pair of consecutive natural numbers whom digit sums would divide without reminder by 3.

I have tried:

To make a system of linear equations where $\overline{xy} = 10x + y$

$x + y = 3k$ (A number should be divisible by 3)

$x + y + 1 = 3k + 3$ (A number that goes after it should be divisible by 3)

However, this proof is wrong, when considered two numbers $29$ and $30$ $x = 2$ $y = 9$ because $2 + 9 + 1 = 12$, however, $3 + 0 = 3$.

Zyberg
  • 381

1 Answers1

1

The classic divisibility test for divisibility by $3$ is that a number is divisible by $3$ iff its sum of digits is divisible by $3$. Since two successive numbers cannot both be divisible by $3$, neither can their digit sums. In your example, though the digit sum of $30$ is not one more than the digit sum of $29$, it is so $\bmod 3$, because $2+9=11 \equiv 2 \pmod 3, 2+9+1=12 \equiv 0 \pmod 3$

Ross Millikan
  • 374,822