If the digits of a 3 digit number abc is reversed, then the difference of original and reversed number is not divisible by 9.
False
Let the number be abc.
abc = 100a + 10b + c
After reversing the digits: cba = 100c + 10b + a
abc - cba = (100a + 10b + c) - (100c + 10b + a)
= 100a + 10b + c - 100c - 10b - a
= 100a + c - 100c - a
= 100a - a - 100c + c
= 99a - 99c
= 99(a - c)
∴ 99(a−c)=9×11(a−c)
Dividend=divisor×quotient+remainder
99(a−c)=9×[11×(a−c)]+remainder
Remainder = 0; so the number is divisible by 9. Hence the statement is incorrect.