There are 15 available toppings and 5 different pizza sizes in a pizza restaurant. If Maria wants to order a 4-topping pizza, how many different pizzas could she order?

My solution: 15C4/5!
4 topping 15C4=1365 Is this correct?
Thank you.

No.

You are simply choosing 4 of 15 things, and since the order of placing the order does not change, it is simply C(15,4) to order the pizza.
Now for the size, you will choose 1 of the 5 sizes
or C(5,1) = 5
so number of ways = C(15,4) x C(5,1)
= (1365)(5)
= 6825

Thank you so much for your help.

Yes, your solution is on the right track! To find the number of different pizzas Maria could order with 4 toppings, we can use the combination formula.

The number of ways to choose 4 toppings out of 15 available toppings is given by the expression 15C4, which represents "15 choose 4".

The value of 15C4 can be calculated as follows:

15C4 = 15! / (4! * (15-4)!)

Where "!" denotes factorial, which means multiplying a number by all the positive integers less than it up to 1. So, in this case:

15! = 15 * 14 * 13 * 12 * 11 * 10 * 9 * 8 * 7 * 6 * 5 * 4 * 3 * 2 * 1

4! = 4 * 3 * 2 * 1

(15-4)! = 11 * 10 * 9 * 8 * 7 * 6 * 5 * 4 * 3 * 2 * 1

Simplifying the expression, we get:

15C4 = 15 * 14 * 13 * 12 / (4 * 3 * 2 * 1) = 1365

So there are 1365 different possible combinations of 4 toppings from the 15 available toppings.

However, to consider the different pizza sizes, we need to divide this number by the factorial of the number of pizza sizes (5!). This allows us to account for the fact that each topping combination can be matched with any of the 5 different pizza sizes.

Therefore, the total number of different pizzas Maria could order would be:

1365 / (5!) = 1365 / (5 * 4 * 3 * 2 * 1) = 27

So, there are a total of 27 different pizzas that Maria could order with 4 toppings when considering the 5 different pizza sizes.