Aarush asked Soham to take any 2 or 3 digit number and reverse the digits, then subtract the larger number from the smaller number. Soham did the same and concluded that the result is exactly divisible by 9. What Soham concluded is:
True
Let's consider a two digit number ab.Its general form will be 10×a+1×b.
If we reverse the digits, its general form will be 10×b+1×a. If we subtract both of the numbers, we get:
(10×a+1×b)−(10×b+1×a)
= (10a + b) - (10b + a)
= 10a + b -10b - a
= 9a - 9b
= 9 (a-b)
Observe that the result is a multiple of 9 and hence is exactly divisible by 9.
Similarly, for 3 digit numbers, the difference of the number and number obtained by reversing the digits (if abc is the number) will be given by:
(100×a+10×b+c)−(100×c+10×b+a)
=100a + 10b + c - (100c + 10b + a)
= 100a + 10b + c - 100c - 10b - a
= 99a - 99c
= 99 (a-c)
= 9×11(a−c)
which is also divisible by 9.
Note that this happens with any 2 or 3 number.