[Math] Choosing toppings for pizza

probability

Problem: Ordering a "deluxe" pizza means you have four choices from 15 available toppings. How many combinations are possible if toppings cannot be repeated? If they can be repeated? Assume the order in which the toppings are selected does not matter.

If the toppings cannot be repeated, then we have $C_4^{15}$ choices.

I am having difficulty with the toppings can be repeated problem. It feels like this isn't solvable with the stars and bars method because we only care about "4" of the "15" toppings and not all 15.

What I think: Use "14" bars to then have "15" categories, each responding to a possible topping. Have 4 stars to represent choosing a topping from that category. Then we should get $C^{18}_{4}$?

Best Answer

This may not be the most efficient way of doing this, but you can consider it as separate cases.

  1. If all toppings are distinct, then you have $C_4^{15}$ combinations.

  2. If there are three distinct toppings, you have $3 \cdot C_3^{15}$ combinations (because we have $C_3^{15}$ choices for toppings and then $3$ choices for which of those three toppings is doubled).

  3. If there are two distinct toppings, you have $3 \cdot C_2^{15}$ combinations (because there are $C_2^{15}$ choices for topping and $3$ possibilities: either both toppings doubled, the first is tripled, or the second is tripled).

  4. If there is only one distinct topping, you have $15$ possibilities.

Add these up to get your total.


Let's enumerate them with $5$ options instead of $15$ for illustrative purposes

Case 1:

ABCD
ABCE
ABDE
ACDE
BCDE

Case 2:

AABC  ABBC  ABCC
AABD  ABBD  ACDD
AABE  ABBE  ABEE
AACD  ACCD  ACDD
AACE  ACCE  ACEE
AADE  ADDE  ADEE
BBCD  BCCD  BCDD
BBCE  BCCE  BCEE
BBDE  BDDE  BDEE
CCDE  CDDE  CDEE

Case 3:

AABB
AACC  BBCC
AADD  BBDD  CCDD
AAEE  BBEE  CCEE  DDEE

and

      BBBA  CCCA  DDDA  EEEA
AAAB        CCCB  DDDB  EEEB
AAAC  BBBC        DDDC  EEEC
AAAD  BBBD  CCCD        EEED
AAAE  BBBE  CCCE  DDDE

Case 4:

AAAA
BBBB
CCCC
DDDD
EEEE
Related Question