document.write( "Question 85232: A pizza shop offers the following toppings: 8 different vegetables, 5 different meats, and 4 different cheeses.
\n" );
document.write( "How many ways can 4 toppings be selected where: \r
\n" );
document.write( "\n" );
document.write( "a.All the toppings are vegetables\r
\n" );
document.write( "\n" );
document.write( "b.All the toppings are meat\r
\n" );
document.write( "\n" );
document.write( "c.There is only cheese on the pizza\r
\n" );
document.write( "\n" );
document.write( "d.There are 2 vegetables, 1 meat and 1 cheese\r
\n" );
document.write( "\n" );
document.write( "e.There are 3 meats and 1 cheese.\r
\n" );
document.write( "\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #61428 by stanbon(75887)![]() ![]() ![]() You can put this solution on YOUR website! A pizza shop offers the following toppings: 8 different vegetables, 5 different meats, and 4 different cheeses. \n" ); document.write( "How many ways can 4 toppings be selected where: \n" ); document.write( "a.All the toppings are vegetables \n" ); document.write( "8C4 \n" ); document.write( "---------- \n" ); document.write( "b.All the toppings are meat \n" ); document.write( "5C4 \n" ); document.write( "--------- \n" ); document.write( "c.There is only cheese on the pizza \n" ); document.write( "4C4 \n" ); document.write( "------------ \n" ); document.write( "d.There are 2 vegetables, 1 meat and 1 cheese \n" ); document.write( "8C2 * 5C1 * 4C1 \n" ); document.write( "-------------- \n" ); document.write( "e.There are 3 meats and 1 cheese. \n" ); document.write( "5C3 * 4C1 \n" ); document.write( "---------------- \n" ); document.write( "Cheers, \n" ); document.write( "Stan H.\r \n" ); document.write( "\n" ); document.write( " \n" ); document.write( " |