A tray holds 3 cheese burgers, 5 bacon burgers and 6 egg burgers.
How many ways to choose at least one of each type of burger to a total of 4 burgers?
This is my method: ($3 \choose 1 $* $5 \choose 1 $* $6 \choose 1$) * $11\choose1$ = 990 I was thinking choosing 1 of cheese ($3\choose1$), one of bacon ($5\choose1$), one of egg ($6\choose1$) then $11\choose1$ for the last(random burger).
The solution was doing it case by case: ($3\choose1$ * $5\choose2$ * $6\choose1$) + ($3\choose2$ * $5\choose1$ * $6\choose1$) + ( $3\choose1$ * $5\choose1$ * $6\choose2$) = 495
Now I understand how the solution works, but I don't understand why my original method can't work though...