document.write( "Question 1124455: A restaurant offers a choice of 6 appetizers, 15 entrees, and 5 desserts. How many meals consisting of one appetizer, two DIFFERENT entrees, and one dessert are possible?
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #740776 by Alex.33(110) You can put this solution on YOUR website! choose 1 appetizer: 6c1=6 ways. \n" ); document.write( "choose 2 DIFFERENT entrees: 15c2=105 ways. \n" ); document.write( "choose 1 dessert: 5c1=5 ways. \n" ); document.write( "multiply all: 3150 ways.\r \n" ); document.write( "\n" ); document.write( "#Basic combination approach is the most applicable way when it comes to calculating number of possible outcomes. \n" ); document.write( " |