document.write( "Question 772368: A two digit number, whose sum of digits is ten, will be 36 less than the original number when the digits are reversed. What is the original number? \n" ); document.write( "
Algebra.Com's Answer #470808 by lwsshak3(11628)![]() ![]() ![]() You can put this solution on YOUR website! A two digit number, whose sum of digits is ten, will be 36 less than the original number when the digits are reversed. What is the original number? \n" ); document.write( "*** \n" ); document.write( "let u=units digit \n" ); document.write( "let t=tens digit \n" ); document.write( "u+t=10 \n" ); document.write( "u=10-t \n" ); document.write( ".. \n" ); document.write( "10t+u=10u+t+36 \n" ); document.write( "10t+10-t=10(10-t)+t+36 \n" ); document.write( "10t+10-t=100-10t+t+36 \n" ); document.write( "10t+10-t=100-10t+t+36 \n" ); document.write( "18t=126 \n" ); document.write( "t=7 \n" ); document.write( "u=10-t=3 \n" ); document.write( "original number=73 \n" ); document.write( " |