document.write( "Question 211801: How do I write a algebric expression for
\n" );
document.write( "seven times the sum of a number and six \n" );
document.write( "
Algebra.Com's Answer #160027 by Theo(13342)![]() ![]() You can put this solution on YOUR website! let x = the number \n" ); document.write( "----- \n" ); document.write( "the sum of a number and 6 is the same as: \n" ); document.write( "x + 6 \n" ); document.write( "----- \n" ); document.write( "7 times the sum of a number and 6 is the same as: \n" ); document.write( "7 * (x+6) \n" ); document.write( "----- \n" ); document.write( "* means multiply which is the same as times \n" ); document.write( "a * b means a times b which is the same as a multiplied by b \n" ); document.write( "----- \n" ); document.write( " \n" ); document.write( " |