document.write( "Question 849774: A two-digit number is four times the sum of its digits. The tens digit is 3 less than the units digit. What is the number? \n" ); document.write( "
Algebra.Com's Answer #511758 by lwsshak3(11628)![]() ![]() ![]() You can put this solution on YOUR website! A two-digit number is four times the sum of its digits. The tens digit is 3 less than the units digit. What is the number? \n" ); document.write( "*** \n" ); document.write( "let u=units digit \n" ); document.write( "let t=tens digit \n" ); document.write( "number: 10t+u \n" ); document.write( ".. \n" ); document.write( "t=u-3 \n" ); document.write( "10t+u=4(u+t) \n" ); document.write( "sub(u-3) for t \n" ); document.write( "10(u-3)+u=4u+4(u-3) \n" ); document.write( "10u-30+u=4u+4u-12 \n" ); document.write( "3u=18 \n" ); document.write( "u=6 \n" ); document.write( "t=u-3=3 \n" ); document.write( "number: 10t+u=36 \n" ); document.write( " |