Question:medium

In a cafeteria, there are 5 breads. One can choose 1 bread from the available breads, either small or large sized, and can choose up to 2 sauces from 6 available sauces. What is the number of different ways one can place an order?

Show Hint

When a problem states "at most k" or "up to k" items can be chosen, you must sum the combinations for choosing 0, 1, 2, ..., up to k items.
Updated On: Jul 4, 2026
Show Solution

Correct Answer: 220

Solution and Explanation

Step 1: Number of bread options: each of the \(5\) breads can be small or large, giving \(5\times2=10\) choices.
Step 2: Number of sauce combinations, choosing up to \(2\) from \(6\): none \((1)\), exactly one \((6)\), or exactly two \(\left(\binom{6}{2}=15\right)\), totaling \(1+6+15=22\).
Step 3: Multiply the independent choices: \[ 10\times22=\boxed{220} \]
Was this answer helpful?
0

Top Questions on Permutations and Combinations