What matters here is how many of each type of pastry are selected. Selecting three pecan pies, two apple strudel, one croissant, and one baklava is different from selecting four baklava, two apple strudels, and one pecan pie.
Let's label the types of pastries 1, 2, 3, and 4. Let $x_i$, $1 \leq i \leq 4$, be the number of pastries of type $i$ that are selected. Since a total of seven pastries are selected from the four types,
$$x_1 + x_2 + x_3 + x_4 = 7 \tag{1}$$
The number of ways the pastries can be selected is the number of solutions of equation 1 in the nonnegative integers. A particular solution of equation 1 corresponds to the placement of three addition signs in a row of seven ones. For instance,
$$1 1 + 1 1 1 + 1 + 1$$
corresponds to the solution $x_1 = 2$, $x_2 = 3$, $x_3 = 1$, $x_4 = 1$, while
$$1 + + 1 1 1 1 + 1 1$$
corresponds to the solution $x_1 = 1$, $x_2 = 0$, $x_3 = 4$, $x_4 = 2$.
The number of solutions of equation 1 in the nonnegative integers is the number of ways $4 - 1 = 3$ addition signs can be placed in a row of $7$ ones, which is
$$\binom{7 + 4 - 1}{4 - 1} = \binom{10}{3}$$
since we must select which three of the ten positions required for seven ones and three addition signs will be filled with addition signs.
What was wrong with your attempt?
The partitions of $7$ into at most four parts are
\begin{align*}
7 & = 7\\
& = 6 + 1\\
& = 5 + 2\\
& = 5 + 1 + 1\\
& = 4 + 3\\
& = 4 + 2 + 1\\
& = 4 + 1 + 1 + 1\\
& = 3 + 3 + 1\\
& = 3 + 2 + 2\\
& = 3 + 2 + 1 + 1\\
& = 2 + 2 + 2 + 1
\end{align*}
Your counts are correct for the cases in which a different number of each type of pastry is selected. However, they are incorrect when the same number of pastries are selected from two or more types.
$5 + 1 + 1$: There are four ways to select the type of pastry from which five pieces of pastry will be selected. There are $\binom{3}{2}$ ways to select the two types of pastry from which one piece of pastry each will be selected. Hence, there are
$$\binom{4}{1}\binom{3}{2}$$
such selections.
$3 + 3 + 1$: There are $\binom{4}{2}$ ways to select the two types of pastries from which three pieces of pastry will be drawn and two ways to select the type of pastry from which one piece of pastry will be drawn. Hence, there are
$$\binom{4}{2}\binom{2}{1}$$
such selections.
Notice that
$$\binom{4}{1}\binom{3}{2} = \binom{4}{2}\binom{2}{1}$$
This is because in both the $5 + 1 + 1$ case and the $3 + 3 + 1$ case, there are three types of pastry drawn, with equal amounts of exactly two of them. We could have done the $3 + 3 + 1$ case by first selecting the type of pastry from which one piece of pastry will be drawn, then selecting from which two of the three types of pastry three pieces of pastry each would be drawn, which would have yielded the count
$$\binom{4}{3}\binom{3}{2}$$
$3 + 2 + 2$: The argument above shows that there are also
$$\binom{4}{1}\binom{3}{2}$$
such cases.
$4 + 1 + 1 + 1$: There are four ways to select the type of pastry from which four pieces will be selected. We must select one of each the other types. Hence, there are
$$\binom{4}{1}$$
such selections.
$2 + 2 + 2 + 1$: There are four ways to select the type of pastry from which one piece will be selected. We must select two pieces each from each of the remaining types of pastry. Hence, there are
$$\binom{4}{1}$$
such selections.
$3 + 2 + 1 + 1$: There are four ways to select the type of pastry from which three pieces will be drawn and three ways to select the type of pastry from which two pieces will be drawn. We must select one piece each from each of the remaining types of pastry. Hence, there are
$$\binom{4}{1}\binom{3}{1}$$
such selections.
With these corrections, we obtain a total of
$$\binom{4}{1} + \binom{4}{1}\binom{3}{1} + \binom{4}{1}\binom{3}{1} + \binom{4}{1}\binom{3}{2} + \binom{4}{1}\binom{3}{1} + \binom{4}{1}\binom{3}{1}\binom{2}{1} + \binom{4}{1} + \binom{4}{2}\binom{2}{1} + \binom{4}{1}\binom{3}{2} + \binom{4}{1}\binom{3}{1} + \binom{4}{1} = \binom{10}{3}$$
ways to select seven pastries of four types.
What type of problem is this?
This is a combination with repetition problem since we are selecting $k$ objects from $n$ types of objects, where we may take the same type of object repeatedly.
What are the distinct objects here ? pastry?? What odes this mean in this pastry context "combinations count subsets of distinct objects".
– Saumyojit Das Jan 21 '20 at 14:37C1 C2 C3 C4
7 0 0 0
As we can see ordering of cakes matter . If ordering did not matter first 3 arrangements should be considered as one . Ordering means permutation.
– Saumyojit Das Jan 21 '20 at 16:21