document.write( "Question 60772: If Sally bought three chocolate bars and a pack of gum and paid $1.75. Jake bought two chocolate bars and four packs of gum and paid $2.00. How will I find the cost of a chocolate bar and the cost of a pack of gum \n" ); document.write( "
Algebra.Com's Answer #41737 by josmiceli(19441)![]() ![]() You can put this solution on YOUR website! c = cost of chocolate bar \n" ); document.write( "g = cost of a pack of gum \n" ); document.write( "3c + g = 1.75 \n" ); document.write( "2c + 4g = 2.00 \n" ); document.write( "multiply 1st by 4 \n" ); document.write( "and subtract the 2nd \n" ); document.write( "12c + 4g = 7.00 \n" ); document.write( "-2c - 4g = -2.00 \n" ); document.write( "10c = 5.00 \n" ); document.write( "c = .50 \n" ); document.write( "so, cost of a chocolate bar is $.50 \n" ); document.write( "2(.50) + 4g = 2.00 \n" ); document.write( "1.00 + 4g = 2.00 \n" ); document.write( "4g = 1.00 \n" ); document.write( "g = .25 \n" ); document.write( "so, cost of pack of gum is $.25 \n" ); document.write( "check \n" ); document.write( "3(.50) + .25 = 1.75 \n" ); document.write( "1.50 + .25 = 1.75 \n" ); document.write( "OK \n" ); document.write( " |