Respuesta :

Problem statement:  The menu at a pizza place lets you pick one of two crust types, one of three sauces, one of five types of cheese, and any number of seven different toppings. How many possible different pizzas can you order that have exactly three different toppings?

 

Be very careful to read this question critically and to enumerate the number of items correctly:

 "one of two crust types"      2 possibilities

 "one of three sauces"   3 possibilities

 "one of five types of cheese"  5 possibilities

 "any number of seven different toppings"    

      many possibilities (none, any combination of {a,b,c,d,e,f or g})

 

However, "exactly three different toppings" (not cheeses or sauces) means that you are choosing 3 of 7 toppings (and that's all that this problem asks you).

 

So, nCr = n! / ((n-r)!r!)        ["n choose r";  n=7; r=3]

    7C3 = 7! / (4!3!)

    7C3 = 5040/144

    7C3 = 35

ACCESS MORE