document.write( "Question 694692: The sum of the digits of a two-digit number is 12. If the digits are reversed, the new number is 18 less than the original number. Find the original number. \n" ); document.write( "
Algebra.Com's Answer #428129 by sachi(548)![]() ![]() You can put this solution on YOUR website! The sum of the digits of a two-digit number is 12. \n" ); document.write( " let the ones digit is x then tens digit is 12-x \n" ); document.write( " then the no is 10(12-x)+x........original no \n" ); document.write( " If the digits are reversed, \n" ); document.write( " the no is 10x+(12-x)...........new no \n" ); document.write( " the new number is 18 less than the original number. \n" ); document.write( " so 10x+(12-x)=10(12-x)+x-18 \n" ); document.write( " or 9x+12=102-9x \n" ); document.write( " or 18x=102-12=90 \n" ); document.write( " or x=5 is the ones digit \n" ); document.write( " so the tens digit ig 12-5=7 \n" ); document.write( " so the original number is 75 \n" ); document.write( " |