document.write( "Question 766286: 6. If twenty-seven is added to a two digit number, the original number will be reversed. The number is four more than three times the sum of its digits. What is the number?\r
\n" );
document.write( "\n" );
document.write( "10. The tens digit of a two digit number is five less than three times the ones digit. The number is twenty less than nine times the sum of the digits. What is the number? \n" );
document.write( "
Algebra.Com's Answer #466812 by lwsshak3(11628)![]() ![]() ![]() You can put this solution on YOUR website! 6. If twenty-seven is added to a two digit number, the original number will be reversed. The number is four more than three times the sum of its digits. What is the number? \n" ); document.write( "let u=ones digit \n" ); document.write( "let t=tens digit \n" ); document.write( "27+10t+u=10u+t \n" ); document.write( "10t+u=3(t+u)+4 \n" ); document.write( ".. \n" ); document.write( "27=-9t+9u \n" ); document.write( "4=7t-2u \n" ); document.write( ".. \n" ); document.write( "-18t+18u=54 \n" ); document.write( "63t-18u=36 \n" ); document.write( "add \n" ); document.write( "45t=90 \n" ); document.write( "t=2 \n" ); document.write( "2u=7t-4=14-4=10 \n" ); document.write( "u=5 \n" ); document.write( "number: 25 \n" ); document.write( " \n" ); document.write( "10. The tens digit of a two digit number is five less than three times the ones digit. The number is twenty less than nine times the sum of the digits. What is the number? \n" ); document.write( "t=3u-5 \n" ); document.write( "10t+u=9(t+u)-20 \n" ); document.write( ".. \n" ); document.write( "10(3u-5)+u=9(3u-5+u)-20 \n" ); document.write( "30u-50+u=36u-45-20 \n" ); document.write( "-5u=-15 \n" ); document.write( "u=3 \n" ); document.write( "t=3u-5=4 \n" ); document.write( "number: 43 \n" ); document.write( " |