document.write( "Question 148905: Show the difference between a four-digit number and its reverse is divisible by 9 \n" ); document.write( "
Algebra.Com's Answer #109219 by Edwin McCravy(20056)\"\" \"About 
You can put this solution on YOUR website!
Show the difference between a four-digit number and its reverse is divisible by 9\r
\n" ); document.write( "\n" ); document.write( "
\r\n" );
document.write( "Suppose the number is \"ABCD\".\r\n" );
document.write( "\r\n" );
document.write( "Then the value of the number is \r\n" );
document.write( "\r\n" );
document.write( "1000A + 100B + 10C + D\r\n" );
document.write( "\r\n" );
document.write( "and its reverse is \"DCBA\" with value\r\n" );
document.write( "\r\n" );
document.write( "1000D + 100C + 10B + A\r\n" );
document.write( "\r\n" );
document.write( "Now suppose \"ABCD\" is larger than \"DCBA\", then if we subtract them,\r\n" );
document.write( "\r\n" );
document.write( "(1000A + 100B + 10C + D) - (1000D + 100C + 10B + A)\r\n" );
document.write( "\r\n" );
document.write( "Remove the parentheses:\r\n" );
document.write( "\r\n" );
document.write( "1000A + 100B + 10C + D - 1000D - 100C - 10B - A\r\n" );
document.write( "\r\n" );
document.write( "999A + 90B - 90C - 999D\r\n" );
document.write( " \r\n" );
document.write( "Factor out 9\r\n" );
document.write( "\r\n" );
document.write( "9(111A + 10B - 10C - 111D)\r\n" );
document.write( "\r\n" );
document.write( "This is a multiple of 9.\r\n" );
document.write( "\r\n" );
document.write( "If \"DCBA\" is larger than \"ABCD\" we'll end up with\r\n" );
document.write( "\r\n" );
document.write( "9(111D + 10C - 10B - 111A) \r\n" );
document.write( "\r\n" );
document.write( "This is also a multiple of 9.\r\n" );
document.write( "\r\n" );
document.write( "Edwin
\n" ); document.write( "
\n" );