document.write( "Question 697044: The difference between the digits of a 2 digit number is 1. The number itself is 1 more than 5 times the sum of its digits. If the unit digit is greater than the tens digit. Find the number. \n" ); document.write( "
Algebra.Com's Answer #429605 by lwsshak3(11628)![]() ![]() ![]() You can put this solution on YOUR website! The difference between the digits of a 2 digit number is 1. The number itself is 1 more than 5 times the sum of its digits. If the unit digit is greater than the tens digit. Find the number. \n" ); document.write( "** \n" ); document.write( "let u=units digit \n" ); document.write( "let t=tens digit \n" ); document.write( "10t+u=number \n" ); document.write( ".. \n" ); document.write( "u-t=1 \n" ); document.write( "u=t+1 \n" ); document.write( "10t+u=5(u+t)+1 \n" ); document.write( "10t+(t+1)=5(t+1+t)+1 \n" ); document.write( "11t+1=5(2t+1)+1 \n" ); document.write( "11t+1=10t+5+1 \n" ); document.write( "11t+1=10t+6 \n" ); document.write( "t=5 \n" ); document.write( "u=t+1 \n" ); document.write( "u=6 \n" ); document.write( "number: 56\r \n" ); document.write( "\n" ); document.write( " \n" ); document.write( " |