document.write( "Question 965341: On Friday, a local hamburger shop sold a combined total of
\n" );
document.write( "328
\n" );
document.write( " hamburgers and cheeseburgers. The number of cheeseburgers sold was three times the number of hamburgers sold. How many hamburgers were sold on Friday? \n" );
document.write( "
Algebra.Com's Answer #590062 by rm29924(97)![]() ![]() You can put this solution on YOUR website! let X = the number of hamburgers sold \n" ); document.write( "let Y = the number of cheeseburgers sold \n" ); document.write( "a combined total of 328 were sold \n" ); document.write( "so: X + Y = 328 \n" ); document.write( "cheeseburgers = 3 times the number of hamburgers sold \n" ); document.write( "so: Y = 3X \n" ); document.write( "substitute 3X into the equation for Y \n" ); document.write( "X + 3X = 328 \n" ); document.write( "4X = 328 \n" ); document.write( "divide both sides by 4 to get the variable X by itself \n" ); document.write( "X = 82 \n" ); document.write( "so: 82 hamburgers were sold Friday \n" ); document.write( " |